/* ==========================================================================
   C&C Outdoor Services — Stylesheet
   Brand palette sourced from the formal C&C OUTDOOR SERVICES sign:
     - Sign black (deep, near-pure black)
     - Sign blue (sky / cornflower band)
     - Sign red (accent dots in the wordmark)
     - White (positive contrast)
   ========================================================================== */

:root {
  /* Brand — sky blue (from the OUTDOOR SERVICES band) */
  --blue-50:  #e6f2fb;
  --blue-100: #c9e3f6;
  --blue-200: #9ccdef;
  --blue-300: #7fbfe8;
  --blue-400: #4fa3e0;  /* core brand blue */
  --blue-500: #2a85c6;
  --blue-600: #1e6faa;
  --blue-700: #155389;
  --blue-800: #0f3c66;
  --blue-900: #082544;

  /* Brand — red (accent dots / "&" symbol) */
  --red-300: #f06262;
  --red-400: #e84a4a;
  --red-500: #d33a3a;  /* core brand red */
  --red-600: #b02e2e;
  --red-700: #872222;

  /* Brand — sign black / ink */
  --ink-50:  #f7f8fa;
  --ink-100: #e9ecef;
  --ink-200: #c9cfd6;
  --ink-300: #8a929c;
  --ink-400: #5d646e;
  --ink-500: #4a4f57;
  --ink-700: #2a2d33;
  --ink-800: #1a1b1f;
  --ink-900: #0e0f12;  /* core brand black */

  /* Legacy aliases (kept so existing rules don't break) */
  --gray-100: var(--ink-50);
  --gray-200: var(--ink-100);
  --gray-300: var(--ink-200);
  --gray-400: var(--ink-300);
  --gray-500: var(--ink-400);
  --gray-700: var(--ink-700);
  --char-900: var(--ink-900);
  --char-800: var(--ink-800);
  --char-700: var(--ink-700);

  /* Semantic */
  --bg: #ffffff;
  --bg-alt: var(--ink-50);
  --bg-dark: var(--ink-900);
  --text: var(--ink-900);
  --text-soft: var(--ink-500);
  --text-on-dark: #ffffff;
  --primary: var(--blue-400);
  --primary-dark: var(--blue-600);
  --primary-darker: var(--blue-800);
  --accent: var(--red-500);
  --accent-dark: var(--red-700);

  /* Layout */
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.18);
  --header-h: 80px;

  /* Type */
  --font-display: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin: 0 0 .5em;
  text-transform: uppercase;
}
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.accent { color: var(--blue-300); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(211, 58, 58, 0.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); color: #fff; box-shadow: 0 8px 24px rgba(211, 58, 58, 0.45); }

.btn-secondary {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 6px 20px rgba(42, 133, 198, 0.35);
}
.btn-secondary:hover { background: var(--blue-700); transform: translateY(-2px); color: #fff; box-shadow: 0 8px 24px rgba(21, 83, 137, 0.45); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.btn-full { width: 100%; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 15, 18, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(79, 163, 224, 0.18);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(14, 15, 18, 0.97);
  border-bottom-color: var(--blue-400);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.brand-logo {
  width: auto;
  height: 56px;
  max-width: 140px;
  object-fit: contain;
  border-radius: 4px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.brand-text { display: none; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.brand-tag {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-top: 2px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.primary-nav a {
  display: inline-block;
  padding: 10px 16px;
  color: #f5f5f0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}
.primary-nav a:hover { color: var(--accent); background: rgba(255,255,255,0.05); }
.primary-nav .nav-cta {
  background: var(--accent);
  color: #fff;
  margin-left: 8px;
}
.primary-nav .nav-cta:hover { background: var(--accent-dark); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  padding: calc(var(--header-h) + 60px) 0 80px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14,15,18,0.92) 0%, rgba(15,60,102,0.82) 100%),
    url('assets/images/gallery-1.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(79,163,224,0.28), transparent 60%),
    radial-gradient(circle at 78% 72%, rgba(211,58,58,0.14), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(92vh - var(--header-h) - 140px);
}

.hero-content { max-width: 640px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(245,245,240,0.9);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(245,245,240,0.75);
}
.hero-trust li {
  padding-left: 22px;
  position: relative;
}
.hero-trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--red-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(211,58,58,0.22);
}
.hero-trust strong { color: var(--blue-300); font-weight: 700; }

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo {
  width: 100%;
  max-width: 460px;
  border-radius: 10px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(79,163,224,0.25);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ==========================================================================
   BRAND BANNER STRIP — full-width "real sign" between hero and services
   ========================================================================== */
.brand-strip {
  background: var(--ink-900);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.brand-strip::before,
.brand-strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--blue-400) 20%, var(--blue-400) 80%, transparent);
}
.brand-strip::before { top: 0; }
.brand-strip::after { bottom: 0; }
.brand-strip-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(79,163,224,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
  max-width: 1100px;
  margin: 0 auto;
}
.brand-strip-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.6), 0 0 0 1px var(--blue-400);
}
.brand-strip-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   SECTION DEFAULTS
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--char-900);
}
.section-head p {
  font-size: 1.1rem;
  color: var(--text-soft);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--bg-alt); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleY(1); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ink-900), var(--blue-700));
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(14, 15, 18, 0.3);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  box-shadow: 0 6px 16px rgba(42, 133, 198, 0.4);
}
.service-card h3 {
  font-size: 1.4rem;
  color: var(--char-900);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-soft);
  margin: 0;
  font-size: .98rem;
}

/* ==========================================================================
   ABOUT (+ Facebook feed)
   ========================================================================== */
.about { background: #fff; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-media img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-fb-note {
  margin-top: 22px;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 1rem;
}
.about-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
  z-index: 2;
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}
.about-badge span {
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--char-900);
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-soft);
  font-size: 1.05rem;
}
.about-points {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.about-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  color: var(--text);
}
.about-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-500);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--gray-200);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-fit { background: #0e0f12; }
.gallery-fit img { object-fit: contain; }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 18px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: .95rem;
  transform: translateY(20%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-wide {
  grid-column: span 2;
}

.gallery-placeholder { cursor: default; }
.gallery-placeholder:hover img { transform: none; }
.placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: repeating-linear-gradient(
    45deg,
    var(--gray-200),
    var(--gray-200) 12px,
    var(--gray-300) 12px,
    var(--gray-300) 24px
  );
  color: var(--gray-500);
  text-align: center;
  padding: 16px;
}
.placeholder-inner span {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 1rem;
}
.placeholder-inner small {
  font-size: .75rem;
  color: var(--gray-500);
}

/* ==========================================================================
   FACEBOOK EMBED (now nested inside About)
   ========================================================================== */
.facebook-embed {
  display: flex;
  justify-content: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
  margin: 0;
  overflow: hidden;
}
.facebook-embed iframe {
  width: 100%;
  max-width: 500px;
  height: 640px;
  border: 0;
  display: block;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--char-900);
  margin-bottom: 16px;
}
.contact-info p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 32px; }

.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  box-shadow: 0 4px 12px rgba(21, 83, 137, 0.25);
}
.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--char-900);
  font-size: .85rem;
  margin-bottom: 4px;
}
.contact-list a, .contact-list span {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
}
.contact-list a:hover { color: var(--blue-600); }

.contact-form {
  background: var(--bg-alt);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-row label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--char-900);
}
.req { color: var(--accent); }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(79, 163, 224, 0.22);
}
.form-row textarea { resize: vertical; min-height: 120px; }

.form-note {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: .9rem;
  min-height: 1.2em;
}
.form-note.success { color: var(--blue-600); font-weight: 600; }
.form-note.error { color: var(--red-600); font-weight: 600; }

/* Netlify honeypot field — visually hidden but still in the DOM for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-200);
  padding-top: 70px;
  border-top: 4px solid var(--blue-400);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-logo {
  width: 200px;
  max-width: 100%;
  margin-bottom: 16px;
  border-radius: 4px;
}
.footer-brand p { color: var(--ink-300); max-width: 360px; }
.footer-col h4 {
  color: var(--blue-300);
  font-size: .95rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: var(--ink-200);
  font-size: .95rem;
}
.footer-col a:hover { color: var(--blue-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: .85rem;
  color: var(--gray-500);
}
.footer-bottom p { margin: 0; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, visibility .25s ease;
  z-index: 90;
}
.back-to-top:hover { background: var(--accent-dark); color: #fff; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-trust { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-logo { max-width: 360px; }

  .brand-strip { padding: 24px 0; }

  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-badge { right: 20px; bottom: -25px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-large { grid-column: span 2; grid-row: span 2; }
  .gallery-wide { grid-column: span 2; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--ink-900);
    border-left: 3px solid var(--blue-400);
    padding: calc(var(--header-h) + 20px) 24px 40px;
    transition: right .3s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.4);
  }
  .primary-nav.open { right: 0; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .primary-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 1.05rem;
  }
  .primary-nav .nav-cta {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }

  .brand-tag { display: none; }
  .brand-name { font-size: 1rem; }
  .brand-logo { height: 44px; max-width: 110px; }

  .section { padding: 70px 0; }
  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; min-height: auto; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1.05rem; }

  .form-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-large { grid-column: span 1; grid-row: span 1; }
  .gallery-wide { grid-column: span 1; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }

  .contact-form { padding: 24px; }
}

@media (max-width: 420px) {
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 14px; font-size: .8rem; }
  .back-to-top { right: 16px; bottom: 16px; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .site-header, .nav-toggle, .back-to-top, .facebook-embed, .contact-form { display: none; }
  .hero { min-height: auto; padding: 30px 0; }
  body { color: #000; background: #fff; }
}
