/* ==========================================================================
   GAF — Roofing  |  "Engineered Protection"
   Industrial-editorial system built on GAF's real brand marks:
   GAF Red #D71920 · GAF Black #101820 · GAF Gray #636466
   Type: Archivo (display, engineered) + Barlow (body) + Barlow Condensed (spec labels)
   ========================================================================== */

:root {
  /* Brand — real GAF values, plus elevated/muted extensions */
  --red:        #D71920;
  --red-deep:   #A8121A;
  --red-glow:   rgba(215, 25, 32, .32);
  --ink:        #0E141A;
  --ink-2:      #151D25;
  --slate:      #232E39;
  --slate-2:    #33404D;
  --gray:       #636466;
  --gray-lt:    #9BA1A8;
  --bone:       #F4F2EE;
  --sand:       #E5E0D8;
  --paper:      #FBFAF8;

  --line-d:     rgba(255, 255, 255, .11);
  --line-l:     rgba(14, 20, 26, .13);

  --font-display: "Archivo", "Helvetica Neue", sans-serif;
  --font-body:    "Barlow", "Helvetica Neue", sans-serif;
  --font-spec:    "Barlow Condensed", "Barlow", sans-serif;

  --nav-h: 72px;
  --pad-x: clamp(1.15rem, 4vw, 5rem);
  --maxw: 1280px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .95;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
figure { margin: 0; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }

/* --------------------------------------------------------------------------
   Texture — fine grain over the dark ground, and a roofline chevron motif
   -------------------------------------------------------------------------- */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

/* Shingle-course motif: staggered horizontal rules like laid shingle rows */
.shingle-rule {
  height: 10px;
  width: 100%;
  background:
    repeating-linear-gradient(90deg,
      var(--red) 0 46px,
      transparent 46px 92px);
  opacity: .9;
}

/* --------------------------------------------------------------------------
   Spec label — technical, tracked, with a red tick. Used as every eyebrow.
   -------------------------------------------------------------------------- */

.spec {
  font-family: var(--font-spec);
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gray-lt);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
}

.spec::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  flex: none;
}

.on-light .spec, .spec.is-light { color: var(--gray); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-spec);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 10px 30px -12px var(--red-glow);
}
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--bone); border-color: var(--line-d); }
.btn-ghost:hover { border-color: var(--bone); transform: translateY(-2px); }

.btn-ghost.on-light { color: var(--ink); border-color: var(--line-l); }
.btn-ghost.on-light:hover { border-color: var(--ink); }

.btn-sm { padding: .7rem 1.15rem; font-size: .875rem; }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(14, 20, 26, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-d);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; margin-right: auto; }
.brand img { width: 42px; height: 42px; border-radius: 2px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.0625rem; letter-spacing: -.01em; }
.brand-sub {
  font-family: var(--font-spec); font-size: .6875rem; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase; color: var(--gray-lt);
}

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-links a {
  font-family: var(--font-spec);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone);
  opacity: .82;
  position: relative;
  padding-block: .3rem;
  transition: opacity .25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: .5rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-d);
  border-radius: 2px;
  width: 44px; height: 40px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--bone); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — display:none by default so [hidden] can't be overridden */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 49;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-d);
  padding: 1.25rem var(--pad-x) 1.75rem;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-family: var(--font-spec);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-d);
}
.mobile-menu .btn { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Hero — must fully fit the first viewport on desktop AND mobile.
   container-type on .hero; children size in cqi so nothing can overflow.
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  container-type: inline-size;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: clamp(1.5rem, 4cqi, 4.5rem);
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(1.25rem, 3.4cqi, 3.5rem) var(--pad-x);
  z-index: 2;
}

/* Atmosphere: soft red bloom + architectural grid behind the hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(56% 68% at 78% 30%, rgba(215, 25, 32, .13), transparent 68%),
    radial-gradient(48% 60% at 8% 82%, rgba(51, 64, 77, .5), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line-d) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-d) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(70% 70% at 40% 45%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 70% at 40% 45%, #000 20%, transparent 78%);
  opacity: .5;
  pointer-events: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(.62rem, 1.5cqi, 1.3rem);
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2rem, 7cqi, 5rem);
  line-height: .9;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero h1 .tm {
  font-size: .34em;
  vertical-align: super;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--gray-lt);
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(.95rem, 1.62cqi, 1.2rem);
  color: var(--gray-lt);
  max-width: 46ch;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: clamp(.1rem, .5cqi, .5rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem 1.15rem;
  padding-top: clamp(.6rem, 1.4cqi, 1.15rem);
  border-top: 1px solid var(--line-d);
  font-family: var(--font-spec);
  font-size: clamp(.8rem, 1.16cqi, .9375rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-lt);
}
.hero-proof strong { color: var(--bone); font-weight: 700; }
/* keep each stat and its label on one line so pairs never split across rows */
.hero-proof .pf { white-space: nowrap; }
.hero-proof .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex: none; }

/* Hero photo card — real GAF crew photo, kept near native resolution */
.hero-media { position: relative; min-width: 0; }

.hero-media-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line-d);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .95);
}
.hero-media-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.03);
}
.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 20, 26, .55), transparent 46%);
  pointer-events: none;
}

/* Floating spec badge on the hero photo */
.hero-badge {
  position: absolute;
  left: clamp(-1rem, -2cqi, .5rem);
  bottom: clamp(1rem, 3cqi, 2.2rem);
  background: var(--red);
  color: #fff;
  padding: clamp(.7rem, 1.5cqi, 1.05rem) clamp(.95rem, 2cqi, 1.4rem);
  border-radius: 2px;
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, .9);
  max-width: 78%;
}
.hero-badge .k {
  font-family: var(--font-spec);
  font-size: clamp(.65rem, .95cqi, .75rem);
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  opacity: .88;
  display: block;
}
.hero-badge .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(.95rem, 1.65cqi, 1.25rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-top: .15rem;
}

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.stats {
  position: relative;
  z-index: 2;
  background: var(--ink-2);
  border-block: 1px solid var(--line-d);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.stat {
  padding: clamp(1.75rem, 3.5vw, 2.9rem) clamp(.75rem, 2vw, 1.75rem);
  border-left: 1px solid var(--line-d);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--bone);
}
.stat .n span { color: var(--red); }
.stat .l {
  font-family: var(--font-spec);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-lt);
  margin-top: .6rem;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Generic section scaffolding
   -------------------------------------------------------------------------- */

.section { position: relative; z-index: 2; padding-block: clamp(3.5rem, 8vw, 7.5rem); }
.section-light { background: var(--bone); color: var(--ink); }
.section-paper { background: var(--paper); color: var(--ink); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4.5vw, 3.5rem); }
.section-head h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.5rem);
  margin-top: 1rem;
  letter-spacing: -.035em;
}
.section-head p {
  margin-top: 1.1rem;
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.65;
}
.section-light .section-head p, .section-paper .section-head p { color: var(--gray); }
.section:not(.section-light):not(.section-paper) .section-head p { color: var(--gray-lt); }

/* --------------------------------------------------------------------------
   Systems (product menu)
   -------------------------------------------------------------------------- */

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 1px;
  background: var(--line-l);
  border: 1px solid var(--line-l);
}

.sys {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  position: relative;
  transition: background-color .35s var(--ease), transform .35s var(--ease);
}
.sys::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.sys:hover { background: #fff; }
.sys:hover::before { transform: scaleY(1); }

.sys-tag {
  font-family: var(--font-spec);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--red);
}
.sys h3 { font-size: 1.4rem; letter-spacing: -.025em; line-height: 1.08; }
.sys h3 .tm { font-size: .5em; vertical-align: super; font-weight: 600; color: var(--gray); letter-spacing: 0; }
.sys p { color: var(--gray); font-size: .9875rem; line-height: 1.6; }

.sys-specs {
  margin: .35rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  border-top: 1px solid var(--line-l);
  padding-top: .9rem;
}
.sys-specs li {
  font-family: var(--font-spec);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  gap: .55rem;
  align-items: baseline;
}
.sys-specs li::before { content: "—"; color: var(--red); flex: none; }

.sys-cta {
  margin-top: auto;
  padding-top: 1.1rem;
  font-family: var(--font-spec);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.sys-cta:hover { gap: .9rem; color: var(--red); }
.sys-cta::after { content: "→"; }

.price-note {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.25rem, 2.6vw, 1.9rem);
  background: var(--ink);
  color: var(--bone);
  border-radius: 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.price-note p { font-size: 1rem; color: var(--gray-lt); max-width: 62ch; }
.price-note strong { color: var(--bone); font-weight: 600; }

/* --------------------------------------------------------------------------
   Warranty / proof
   -------------------------------------------------------------------------- */

.warranty { background: var(--ink); }
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
}
.war {
  border: 1px solid var(--line-d);
  border-radius: 2px;
  padding: clamp(1.35rem, 2.8vw, 2rem);
  background: linear-gradient(160deg, rgba(255, 255, 255, .035), transparent 62%);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.war:hover { border-color: rgba(215, 25, 32, .55); transform: translateY(-3px); }
.war h3 { font-size: 1.28rem; letter-spacing: -.02em; line-height: 1.12; }
.war h3 .tm { font-size: .5em; vertical-align: super; font-weight: 600; color: var(--gray-lt); letter-spacing: 0; }
.war p { color: var(--gray-lt); font-size: .95rem; }
.war .war-figure {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--red);
}

.elite {
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid var(--line-d);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  background: var(--ink-2);
}
.elite-badge {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: .9;
  letter-spacing: -.05em;
  color: var(--red);
  white-space: nowrap;
}
.elite h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.elite p { color: var(--gray-lt); font-size: .975rem; }

/* --------------------------------------------------------------------------
   Gallery — real photos from the GAF Facebook page
   -------------------------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(.6rem, 1.4vw, 1rem);
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--slate);
  border: 1px solid var(--line-d);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.shot:hover img { transform: scale(1.045); filter: saturate(1.1); }
.shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 20, 26, .5), transparent 45%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.shot:hover::after { opacity: 1; }

.shot-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  font-family: var(--font-spec);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
  z-index: 1;
}
.shot:hover .shot-cap { transform: none; opacity: 1; }

/* --------------------------------------------------------------------------
   Heritage timeline
   -------------------------------------------------------------------------- */

.timeline {
  display: grid;
  /* six milestones — explicit counts so a row never orphans a single item */
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 2px solid var(--line-l);
}
.mile {
  padding: clamp(1.4rem, 3vw, 2.1rem) clamp(1rem, 2vw, 1.6rem) clamp(1.4rem, 3vw, 2rem) 0;
  position: relative;
}
.mile::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 46%; height: 2px;
  background: var(--red);
}
.mile .yr {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
}
.mile p { margin-top: .7rem; color: var(--gray); font-size: .95rem; line-height: 1.55; }

/* --------------------------------------------------------------------------
   Visit / contact block
   -------------------------------------------------------------------------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4.5vw, 4.5rem);
  align-items: start;
}

.info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.75rem; }
.info-row { display: grid; grid-template-columns: 118px 1fr; gap: 1.1rem; align-items: baseline; }
.info-row dt {
  font-family: var(--font-spec);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gray-lt);
  padding-top: .18rem;
}
.info-row dd { margin: 0; font-size: 1.03rem; line-height: 1.5; }
.info-row dd a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(215, 25, 32, .5); transition: border-color .25s, color .25s; }
.info-row dd a:hover { color: var(--red); border-color: var(--red); }
.info-row dd .sub { display: block; color: var(--gray-lt); font-size: .875rem; margin-top: .12rem; }

.map-card {
  border: 1px solid var(--line-d);
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink-2);
}
.map-card .map-body { padding: clamp(1.4rem, 3vw, 2.1rem); }
.map-card h3 { font-size: 1.35rem; margin-bottom: .7rem; }
.map-card p { color: var(--gray-lt); font-size: .975rem; }
.map-card .btn { margin-top: 1.35rem; }

.seal {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.75rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-d);
}
.seal img { width: 54px; height: 54px; border-radius: 2px; flex: none; }
.seal-txt { font-family: var(--font-spec); font-size: .875rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-lt); line-height: 1.45; }
.seal-txt strong { display: block; color: var(--bone); font-weight: 700; letter-spacing: .13em; }

/* --------------------------------------------------------------------------
   Final CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  z-index: 2;
  background: var(--red);
  color: #fff;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .07) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5.75rem) var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.cta-inner h2 { font-size: clamp(1.85rem, 4.6vw, 3.5rem); letter-spacing: -.035em; color: #fff; }
.cta-inner p { margin-top: 1rem; font-size: 1.0625rem; color: rgba(255, 255, 255, .9); max-width: 52ch; }
.cta-actions { display: flex; flex-direction: column; gap: .75rem; }
.cta-actions .btn { background: #fff; color: var(--ink); border-color: #fff; }
.cta-actions .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta-actions .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.cta-actions .btn-outline:hover { background: #fff; color: var(--red); border-color: #fff; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer { position: relative; z-index: 2; background: var(--ink); border-top: 1px solid var(--line-d); }
.footer-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x) 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}
.footer h4 {
  font-family: var(--font-spec);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-lt);
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { text-decoration: none; color: var(--bone); opacity: .8; font-size: .975rem; transition: opacity .25s, color .25s; }
.footer-links a:hover { opacity: 1; color: var(--red); }
.footer-blurb { color: var(--gray-lt); font-size: .95rem; margin-top: 1rem; max-width: 42ch; }
.footer-brand { display: flex; align-items: center; gap: .85rem; }
.footer-brand img { width: 46px; height: 46px; border-radius: 2px; }
.footer-brand .brand-name { font-size: 1.15rem; }

.footer-bottom {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.5rem var(--pad-x) 2.5rem;
  border-top: 1px solid var(--line-d);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  font-family: var(--font-spec);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.page-head {
  position: relative;
  z-index: 2;
  padding: clamp(2.75rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-d);
}
.page-head h1 { font-size: clamp(2.2rem, 6vw, 4.25rem); margin-top: 1rem; letter-spacing: -.04em; }
.page-head p { margin-top: 1.15rem; color: var(--gray-lt); font-size: 1.0625rem; max-width: 56ch; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.form-card {
  background: var(--ink-2);
  border: 1px solid var(--line-d);
  border-top: 3px solid var(--red);
  border-radius: 2px;
  padding: clamp(1.5rem, 3.4vw, 2.6rem);
}

.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.field label {
  font-family: var(--font-spec);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-lt);
}
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 1.03rem;
  color: var(--bone);
  background: var(--ink);
  border: 1px solid var(--line-d);
  border-radius: 2px;
  padding: .85rem 1rem;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
  width: 100%;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #0B1015;
}
.field input::placeholder, .field textarea::placeholder { color: #5D666F; }
.field textarea { resize: vertical; min-height: 128px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.turnstile-box { margin-bottom: 1.25rem; min-height: 65px; }

.form-card .btn { width: 100%; margin-top: .35rem; }
.form-card .btn[disabled] { opacity: 1; background: #1E7A44; border-color: #1E7A44; }

.form-status {
  margin-top: 1rem;
  font-family: var(--font-spec);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.5;
  color: var(--gray-lt);
}
.form-status.is-error { color: #FF8A8A; }
.form-status.is-ok { color: #7FD8A0; }

.form-fine { margin-top: 1.1rem; font-size: .8125rem; color: var(--gray); line-height: 1.5; }

.contact-aside .info-list { margin-top: 1.5rem; }
.contact-aside .quick {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-d);
}

/* --------------------------------------------------------------------------
   Scroll reveal — BELOW THE FOLD ONLY (never on nav/hero)
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat { border-top: 1px solid var(--line-d); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: clamp(1.25rem, 4cqi, 2rem);
    padding-block: clamp(1.5rem, 5cqi, 2.75rem);
  }
  .hero h1 { font-size: clamp(2rem, 9.4cqi, 3.6rem); }
  .hero-sub { font-size: clamp(.95rem, 2.5cqi, 1.08rem); max-width: 52ch; }
  .hero-proof { font-size: clamp(.75rem, 1.9cqi, .875rem); }

  /* Photo reflows below the copy and is capped so the core block still fits */
  .hero-media { max-width: 460px; width: 100%; }
  .hero-media-frame img { aspect-ratio: 16 / 10; }
  .hero-badge { position: static; max-width: none; margin-top: .75rem; display: inline-block; }

  .visit-grid, .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* Short viewports: drop the hero photo so headline + CTAs + proof always fit */
@media (max-width: 960px) and (max-height: 760px) {
  .hero-media { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-d); }
  .stat:first-child { border-top: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .info-row { grid-template-columns: 1fr; gap: .3rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .elite { grid-template-columns: 1fr; gap: 1rem; }
  .price-note { flex-direction: column; align-items: flex-start; }
  .price-note .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
