/* ============================================================
   TIYT FITNESS : site styles
   Palette: black background, grey + white text and accents
   ============================================================ */

:root {
  --black:      #0a0a0a;
  --panel:      #141414;
  --panel-2:    #1c1c1c;
  --border:     #2a2a2a;
  --grey:       #8a8a8a;
  --grey-light: #b8b8b8;
  --white:      #f2f2f2;
  --accent:     #d0d0d0;
  --max:        1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--grey-light);
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* --- Display / heading font stack (tough, condensed) --- */
h1, h2, h3, .logo-word, .btn, .nav-links a, .eyebrow {
  font-family: "Arial Narrow", "Oswald", "Impact", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); line-height: 1.02; color: var(--white); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--white); font-weight: 800; }
h3 { font-size: 1.25rem; color: var(--white); font-weight: 700; }

p { margin-bottom: 1rem; }
a { color: var(--white); text-decoration: none; }

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

.eyebrow {
  color: var(--grey);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  margin-bottom: 1rem;
  display: block;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav-logo img { height: 46px; width: auto; display: block; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--grey-light);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover { color: var(--white); border-color: var(--grey); }
.nav-links a.active { color: var(--white); border-color: var(--white); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  width: 44px;
  height: 40px;
  border-radius: 4px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: transparent; color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--grey); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 2rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  /* Target one screenful, minus the 76px sticky header, so the headline, copy,
     buttons and photo all land above the fold. min-height (never height) so
     tall content grows the section instead of being crushed. The svh line wins
     where supported and stops mobile browser chrome from pushing content off. */
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(24px, 3.5vw, 48px) 0;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.05), transparent 55%),
    linear-gradient(180deg, #0d0d0d, #060606);
  overflow: hidden;
}
.hero > .container { width: 100%; }
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
/* Tighter than the site default so the hero block stays compact */
.hero .eyebrow { margin-bottom: 0.45rem; }
.hero p.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--grey-light);
  max-width: 640px;
  margin-top: clamp(14px, 1.6vw, 20px);
}
.hero .btn-row { margin-top: clamp(16px, 2.2vw, 26px); }
.hero-watermark {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: min(46%, 460px);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}
/* Big, but sized so the whole statement clears the fold on a laptop.
   Caps at 4.75rem (76px): the text column stops growing once .container
   hits its 1180px max, so a larger cap only adds wrapped lines. */
.hero h1 {
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  line-height: 0.88;
  letter-spacing: 0.005em;
}
.hero h1 .flare {
  display: inline-block;
  color: var(--black);
  background: var(--white);
  padding: 0 0.14em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 9px;
  background: var(--white);
  margin-top: clamp(14px, 1.8vw, 20px);
  box-shadow: 0 0 30px rgba(255,255,255,0.25);
}

/* ============================================================
   AGE BRACKET CARDS
   ============================================================ */
.bracket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.bracket-card {
  position: relative;
  background: linear-gradient(180deg, #171717, #0e0e0e);
  border: 1px solid var(--border);
  padding: 30px 24px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.bracket-card:hover { border-color: var(--white); transform: translateY(-4px); }
.bracket-card .age {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.01em;
  display: block;
}
.bracket-card .bname {
  font-family: "Arial Narrow", "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  font-size: 1.15rem;
  margin: 0.6rem 0 0.7rem;
  padding-top: 0.7rem;
  border-top: 2px solid var(--border);
}
.bracket-card p { color: var(--grey); margin: 0; font-size: 0.95rem; }
.bracket-card .ghost-num {
  position: absolute;
  right: -6px;
  bottom: -22px;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 6rem;
  line-height: 1;
  color: #fff;
  opacity: 0.04;
  pointer-events: none;
}

/* ============================================================
   LABELED DIVIDER  (bold text between hazard stripes)
   ============================================================ */
.divider-label {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 22px;
}
.divider-label::before,
.divider-label::after {
  content: "";
  flex: 1;
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--grey) 0, var(--grey) 12px, transparent 12px, transparent 24px);
  opacity: 0.5;
}
.divider-label span {
  font-family: "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--white);
  font-size: 1.1rem;
  white-space: nowrap;
}

/* ============================================================
   SECTIONS / GENERIC PAGE HEADER
   ============================================================ */
.section { padding: clamp(56px, 9vw, 96px) 0; }
.section.alt { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.page-head {
  padding: clamp(60px, 9vw, 110px) 0 clamp(36px, 5vw, 60px);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #0d0d0d, #070707);
}
.page-head p { max-width: 620px; color: var(--grey-light); }

.lead-block { max-width: 720px; }

/* Placeholder note styling so user knows what to swap */
.placeholder-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px dashed var(--border);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 1rem;
}

/* ============================================================
   CARDS / GRID
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.card:hover { border-color: var(--grey); transform: translateY(-3px); }
.card .num {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 2.4rem;
  color: var(--grey);
  line-height: 1;
  margin-bottom: 0.6rem;
  display: block;
}
.card h3 { margin-bottom: 0.35rem; }
.card p { margin-bottom: 0; color: var(--grey-light); }
.card .price {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(2.7rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  display: block;
  margin: 0.4rem 0 1.1rem;
  padding-top: 0.9rem;
  border-top: 3px solid var(--border);
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.card .price span {
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
/* accent bar that lights up on hover */
.card {
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.card:hover::before { transform: scaleX(1); }

/* ============================================================
   BOOKING EMBED  (GymMaster calendar)
   ============================================================ */
.booking-panel {
  position: relative;
  border: 1px solid var(--border);
  border-top: 4px solid var(--white);
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.booking-panel iframe {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
}
.booking-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.booking-fallback {
  margin-top: 1.3rem;
  color: var(--grey);
  font-size: 0.9rem;
}
.booking-fallback a { color: var(--white); text-decoration: underline; }

.reassure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 2.2rem;
}
.reassure .item {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 22px 20px;
}
.reassure .item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.reassure .item p { margin: 0; color: var(--grey); font-size: 0.92rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  border-radius: 3px;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--white); }
.field textarea { resize: vertical; min-height: 150px; }

.info-block { margin-bottom: 30px; }
/* No trailing gap under the final block, so the column stays balanced
   regardless of how many info blocks the page carries. */
.info-block:last-child { margin-bottom: 0; }
.info-block h3 { margin-bottom: 8px; }
.info-block p { margin-bottom: 0; color: var(--grey-light); }

/* Address link (opens Google Maps) and inline body links in the info column */
.map-link,
.inline-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.map-link { display: inline-block; }
.map-link:hover,
.inline-link:hover { color: var(--grey-light); }

.form-note { font-size: 0.85rem; color: var(--grey); margin-top: 14px; }

/* Netlify honeypot. Must stay invisible to people and to screen readers,
   while remaining a real, fillable field in the DOM for bots to take the bait. */
.hp-field { display: none; }

/* ============================================================
   TESTIMONIALS  (success stories)
   ============================================================ */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 4vw, 46px);
  margin-top: 2.6rem;
}
.testimonial {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  background: linear-gradient(180deg, #151515, #0d0d0d);
  border: 1px solid var(--border);
  border-left: 5px solid var(--white);
  padding: clamp(22px, 3vw, 34px);
}
/* alternate the photo side for rhythm */
.testimonial:nth-child(even) { direction: rtl; }
.testimonial:nth-child(even) > * { direction: ltr; }

.t-name {
  font-family: "Arial Narrow", "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  line-height: 1;
}
.t-meta {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--grey);
  font-size: 0.78rem;
  margin: 0.5rem 0 1.2rem;
}
.t-quote {
  border-left: 3px solid var(--grey);
  padding-left: 18px;
  margin: 0 0 1.5rem;
  color: var(--grey-light);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.55;
}
.t-results { display: flex; flex-wrap: wrap; gap: 12px; }
.t-results .r {
  border: 1px solid var(--border);
  background: var(--panel-2);
  padding: 12px 16px;
  min-width: 104px;
}
.t-results .r .v {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--white);
  display: block;
}
.t-results .r .l {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 5px;
}

/* Compact story cards (Home teaser) */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2.4rem;
}
.story-card {
  border: 1px solid var(--border);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.story-card:hover { border-color: var(--grey); transform: translateY(-3px); }
.story-card .photo-slot { border: 0; border-bottom: 1px solid var(--border); border-radius: 0; }
.story-card .sc-body { padding: 24px 26px 26px; }
.story-card .t-name { font-size: 1.45rem; }
.story-card .t-meta { margin: 0.4rem 0 1rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  text-align: center;
  padding: clamp(56px, 9vw, 90px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 60%),
    var(--panel);
  border-top: 1px solid var(--border);
}
.cta-band p { max-width: 560px; margin: 1rem auto 0; color: var(--grey-light); }

/* ============================================================
   EMAIL SIGNUP  (lead magnet: Age Your Act Starter Guide)
   ============================================================ */
/* Prominent opt-in block : full-width band, edge to edge (Home, Programs, Stories) */
.signup {
  padding: clamp(52px, 8vw, 84px) 0;
  background: linear-gradient(180deg, #161616, #0c0c0c);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
/* stretch the content the full width of the page : no narrow centered column */
.signup > .container {
  max-width: none;
  padding-left: clamp(16px, 4vw, 44px);
  padding-right: clamp(16px, 4vw, 44px);
}
.signup-card {
  max-width: none;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: center;            /* headline + description sit centered in the band */
}
.signup-card .eyebrow { color: var(--grey); }
.signup-card h2 { margin-bottom: 0.6rem; }
/* keep the wording readable and centered within the full-width band */
.signup-card h2,
.signup-card p.sub,
.signup-card .fine {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.signup-card p.sub { color: var(--grey-light); margin-bottom: 0.4rem; }
.signup-card .fine { font-size: 0.82rem; color: var(--grey); margin-top: 10px; }

/* MailerLite embedded form wrapper */
.ml-embed-wrap {
margin-top: 1.6rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.ml-embed-wrap .ml-form-embedContainer {
max-width: 400px;
margin-left: auto;
margin-right: auto;
}

/* Compact footer signup (every page) */
.footer-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.footer-signup .fs-copy { flex: 1 1 260px; }
.footer-signup h3 { color: var(--white); margin-bottom: 4px; }
.footer-signup p { margin: 0; color: var(--grey); font-size: 0.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 46px 0 30px;
  color: var(--grey);
  font-size: 0.9rem;
}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: center; }
.footer-grid img { height: 42px; opacity: 0.9; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--grey); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.82rem; color: #666; }

/* ============================================================
   SECTION WATERMARK  (large faded rhino behind the background)
   Add class "watermark" to a <section>. Text stays above it.
   ============================================================ */
.watermark { position: relative; overflow: hidden; }
.watermark::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: min(680px, 70%);
  aspect-ratio: 1 / 1.25;
  background: url("icononly_transparent_nobuffer.png") center / contain no-repeat;
  /* darken the light-grey rhino so it reads as dark grey on black */
  filter: grayscale(1) brightness(0.42);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
/* placement variants */
.watermark.wm-left::before  { right: auto; left: -8%; }
.watermark.wm-center::before{ right: auto; left: 50%; transform: translate(-50%, -50%); width: min(760px, 82%); opacity: 0.4; }
/* keep all real content above the watermark */
.watermark > .container,
.watermark > .stripe-top,
.watermark > .stripe-bottom { position: relative; z-index: 1; }

/* ============================================================
   REAL PHOTOS
   Source shots are 4:3 and very dark. The 1px dark-grey border keeps
   the near-black edges from bleeding into the near-black page.
   ============================================================ */
/* The frame owns the shape; the image fills it edge to edge and crops.
   Keeping the ratio on a wrapper (not the img) stops grid/flex parents
   from forcing a height and squashing the aspect-ratio. */
.photo-frame {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 4px;
  background: #0d0d0d;
}
.photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Landscape hero. 3/2 rather than 16/9: the source is 4:3, so 3/2 trims
   only ~11% of the height and keeps the painted logo well inside frame. */
.photo-frame.photo-hero { aspect-ratio: 3 / 2; }
/* Full-width bands */
.photo-frame.photo-band { aspect-ratio: 16 / 7; }

/* ============================================================
   PHOTO SLOTS  (remaining placeholder : about.html portrait)
   ============================================================ */
.photo-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(45deg, #101010 0, #101010 14px, #161616 14px, #161616 28px);
  border: 2px dashed #3a3a3a;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.photo-slot.wide       { aspect-ratio: 16 / 7; }
.photo-slot.tall       { aspect-ratio: 3 / 4; }

.photo-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("icononly_transparent_nobuffer.png") center 40% / 42% no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.photo-slot .ps-icon {
  font-size: 1.8rem;
  color: var(--grey);
  margin-bottom: 10px;
  position: relative;
}
.photo-slot .ps-label {
  font-family: "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--white);
  font-size: 1.05rem;
  position: relative;
}
.photo-slot .ps-desc {
  color: var(--grey);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-top: 6px;
  max-width: 30ch;
  position: relative;
}
/* corner ticks */
.photo-slot .ps-corner {
  position: absolute; width: 16px; height: 16px; border: 2px solid var(--grey);
}
.photo-slot .ps-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.photo-slot .ps-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.photo-slot .ps-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.photo-slot .ps-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

/* ============================================================
   SPLIT LAYOUT  (text beside a photo slot)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.split.media-left { direction: rtl; }
.split.media-left > * { direction: ltr; }

/* ============================================================
   STRONG SECTION DIVIDERS
   ============================================================ */
/* Industrial hazard-style stripe band */
.divider-stripes {
  height: 20px;
  background: repeating-linear-gradient(
    -45deg, #d0d0d0 0, #d0d0d0 22px, #0a0a0a 22px, #0a0a0a 44px);
  opacity: 0.9;
}
/* Divider with the rhino icon centered on a rule */
.divider-mark {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 22px;
}
.divider-mark::before,
.divider-mark::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.divider-mark img { height: 40px; opacity: 0.65; }

/* ============================================================
   BOLD WHITE BAND (inverted, high-contrast)
   ============================================================ */
.band-white {
  background: var(--white);
  color: var(--black);
  text-align: center;
  padding: clamp(54px, 8vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.band-white h2 { color: var(--black); font-size: clamp(2rem, 6vw, 3.4rem); }
.band-white p { color: #333; max-width: 620px; margin: 1rem auto 0; font-size: 1.1rem; }
.band-white .eyebrow { color: #666; }
.band-white .stripe-top,
.band-white .stripe-bottom {
  position: absolute; left: 0; right: 0; height: 10px;
  background: repeating-linear-gradient(-45deg, #0a0a0a 0, #0a0a0a 16px, transparent 16px, transparent 32px);
  opacity: 0.85;
}
.band-white .stripe-top { top: 0; }
.band-white .stripe-bottom { bottom: 0; }

/* ============================================================
   BOLD GREY QUOTE / STATEMENT BLOCK
   ============================================================ */
.statement {
  border-left: 6px solid var(--white);
  padding: 6px 0 6px 28px;
  margin: 2rem 0;
}
.statement p {
  font-family: "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.15;
  color: var(--white);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { width: 100%; border-top: 1px solid var(--border); }
  .nav-links a { display: block; padding: 16px 22px; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats { grid-template-columns: 1fr; gap: 30px; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.media-left { direction: ltr; }
  /* Phone: headline + buttons own the first screen, photo peeks in below them
     so it is obvious there is more to scroll to. */
  .hero { align-items: flex-start; }
  .hero .split { gap: 20px; }

  .bracket-grid { grid-template-columns: 1fr; }
  .reassure { grid-template-columns: 1fr; }

  .testimonial { grid-template-columns: 1fr; }
  .testimonial:nth-child(even) { direction: ltr; }
  .story-grid { grid-template-columns: 1fr; }
}

@media (min-width: 861px) and (max-width: 1040px) {
  .bracket-grid { grid-template-columns: repeat(2, 1fr); }
}
