/* ============================================================
   Exclusively Classics — ec.css  "The Forge" Edition v1
   Matte Black #0A0A0A · Mustang Red #C40019 · Chrome #C8C8C8
============================================================ */

:root {
  --bg:        #0A0A0A;
  --surface:   #111111;
  --s2:        #1A1A1A;
  --s3:        #242424;
  --red:       #C40019;
  --red-dim:   rgba(196,0,25,.15);
  --chrome:    #C8C8C8;
  --chrome-br: #E4E4E4;
  --bone:      #EDE8DD;
  --muted:     #767676;
  --dim:       #3D3D3D;

  --ff-d: 'Antonio', sans-serif;
  --ff-b: 'Inter Tight', sans-serif;
  --ff-m: 'JetBrains Mono', monospace;

  --r: 4px;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--bone);
  font-family: var(--ff-b);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── TYPE ── */
h1, h2, h3, .display {
  font-family: var(--ff-d);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: .02em;
}
h1 { font-size: clamp(3rem, 9vw, 8rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.9rem); }
.eyebrow {
  font-family: var(--ff-m);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.chrome-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dim) 20%, var(--dim) 80%, transparent);
}

/* ── LAYOUT ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
section { padding: clamp(4rem, 10vw, 7rem) 0; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: #1e1e1e;
}
.nav__logo {
  font-family: var(--ff-d);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bone);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo span { color: var(--red); }
.nav__links {
  display: flex; gap: 2rem; list-style: none;
}
.nav__links a {
  color: var(--chrome);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--ff-m);
  transition: color .2s;
}
.nav__links a:hover { color: var(--bone); }
.nav__cta {
  background: var(--red); color: #fff;
  padding: .55rem 1.35rem;
  font-family: var(--ff-m); font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--r);
  transition: background .2s, transform .2s;
}
.nav__cta:hover { background: #a80015; transform: translateY(-2px); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__burger span {
  display: block; width: 26px; height: 2px;
  background: var(--chrome); transition: .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; flex-direction: column;
  position: fixed; inset: 0; z-index: 99;
  background: var(--s2);
  padding: 6rem 2rem 3rem;
  gap: 1.5rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--ff-d); font-size: 2.8rem;
  color: var(--bone); text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--dim);
  padding-bottom: 1rem;
  transition: color .2s;
}
.nav__mobile a:hover { color: var(--red); }
.nav__mobile .btn--red {
  border-bottom: none; padding-bottom: 0;
  font-size: 1rem; margin-top: 1rem;
  width: fit-content;
}

/* ── BTNS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.9rem;
  font-family: var(--ff-m); font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--r);
  transition: .2s; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: #a80015; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,0,25,.35); }
.btn--ghost { background: transparent; color: var(--chrome); border: 1px solid rgba(200,200,200,.25); }
.btn--ghost:hover { border-color: var(--chrome); color: var(--bone); }
.btn--white { background: #fff; color: var(--red); }
.btn--white:hover { background: var(--bone); transform: translateY(-2px); }
.btn--ghost-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn--ghost-white:hover { border-color: #fff; }

/* ── HERO ── */
.hero {
  min-height: 100svh; position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: 5rem;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1493238792000-8113da705763?w=1800&q=80&fit=crop');
  background-size: cover; background-position: center 35%;
  filter: brightness(.3) contrast(1.1) saturate(.85);
  transform: scale(1.05);
  transition: transform 9s ease-out;
}
.hero--loaded .hero__bg { transform: scale(1.0); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg,
    rgba(10,10,10,.2) 0%,
    rgba(10,10,10,.5) 50%,
    var(--bg) 100%);
}
.hero__content { position: relative; z-index: 2; padding-top: 6rem; }
.hero__eyebrow-wrap { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.75rem; }
.hero__eyebrow-wrap::before { content: ''; display: block; width: 40px; height: 2px; background: var(--red); flex-shrink: 0; }
.hero__title { color: var(--bone); margin-bottom: 1.5rem; }
.hero__title em { color: var(--red); font-style: normal; display: block; }
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--chrome); max-width: 560px;
  margin-bottom: 2.5rem; line-height: 1.6;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 3rem; }
.chip {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: .4rem .95rem; border-radius: 100px;
  font-family: var(--ff-m); font-size: .73rem;
  color: var(--chrome); letter-spacing: .06em;
}
.chip--red { border-color: rgba(196,0,25,.6); color: var(--red); background: rgba(196,0,25,.08); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── HOOK BAND ── */
.hook-band {
  background: var(--surface);
  border-top: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
  padding: 2rem 0;
}
.hook-band__inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hook-band__label {
  font-family: var(--ff-m); font-size: .69rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); flex-shrink: 0;
  white-space: nowrap;
}
.hook-band__text { color: var(--chrome); font-size: clamp(.9rem, 1.4vw, 1.05rem); line-height: 1.6; }
.hook-band__text strong { color: var(--bone); }

/* ── STATS ── */
.stats { background: var(--bg); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid #1e1e1e; border-radius: var(--r);
  overflow: hidden; gap: 1px; background: #1e1e1e;
}
.stat {
  background: var(--surface);
  padding: 2.5rem 2rem; text-align: center;
}
.stat__num {
  font-family: var(--ff-d);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--red); line-height: 1;
  display: flex; align-items: flex-start; justify-content: center;
}
.stat__num .cent { font-size: 50%; color: var(--muted); margin-top: .2em; }
.stat__label {
  font-family: var(--ff-m); font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: .6rem; line-height: 1.4;
}

/* ── MAKES TICKER ── */
.makes {
  background: var(--s2);
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 2rem 0;
  overflow: hidden;
}
.makes__label {
  font-family: var(--ff-m); font-size: .68rem;
  letter-spacing: .18em; color: var(--dim);
  text-transform: uppercase; text-align: center;
  margin-bottom: 1.25rem;
}
.makes__ticker { overflow: hidden; }
.makes__track {
  display: flex; gap: 2.5rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.makes__track:hover { animation-play-state: paused; }
.makes__item {
  font-family: var(--ff-d); font-size: 1.35rem;
  color: var(--dim); text-transform: uppercase;
  letter-spacing: .08em; white-space: nowrap;
  transition: color .25s; cursor: default;
}
.makes__item:hover { color: var(--red); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES ── */
.services { background: var(--s2); }
.section__header { margin-bottom: clamp(2rem, 5vw, 4rem); }
.section__header h2 { margin-top: .5rem; margin-bottom: .75rem; }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.svc-card {
  background: var(--surface);
  border: 1px solid #1e1e1e; border-radius: var(--r);
  padding: 2rem; position: relative;
  transition: border-color .3s, transform .3s;
  overflow: hidden;
}
.svc-card:hover { border-color: var(--red); transform: translateY(-4px); }
.svc-card__bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--red);
  border-radius: var(--r) 0 0 var(--r);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover .svc-card__bar { opacity: 1; }
.svc-card__num {
  font-family: var(--ff-m); font-size: .66rem;
  color: var(--dim); letter-spacing: .15em;
  margin-bottom: .65rem;
}
.svc-card__icon {
  width: 44px; height: 44px;
  margin-bottom: 1.25rem; opacity: .9;
}
.svc-card h3 { font-size: 1.15rem; color: var(--bone); margin-bottom: .65rem; }
.svc-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ── STORY ── */
.story { background: var(--bg); }
.story__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: center;
}
.story__img-wrap { position: relative; }
.story__img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r); filter: brightness(.85) contrast(1.05);
}
.story__badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--red); color: #fff;
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--ff-d); font-size: 1rem;
  line-height: 1.15; text-align: center;
  padding: 1rem; letter-spacing: .04em;
}
.story__badge small {
  font-family: var(--ff-m); font-size: .55rem;
  letter-spacing: .12em; color: rgba(255,255,255,.7);
}
.story__eyebrow { margin-bottom: .5rem; }
.story__quote {
  border-left: 3px solid var(--red);
  padding-left: 1.5rem; margin: 1.75rem 0;
}
.story__quote p {
  font-size: 1.1rem; color: var(--chrome);
  font-style: italic; line-height: 1.75;
}
.story__body { color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; font-size: .97rem; }

/* ── MEMBERSHIP ── */
.membership { background: var(--surface); }
.membership__grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 5rem); align-items: start;
}
.membership__tag {
  display: inline-block;
  background: var(--red); color: #fff;
  font-family: var(--ff-m); font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .85rem; border-radius: 2px;
  margin-bottom: 1.5rem;
}
.membership__price {
  font-family: var(--ff-d);
  font-size: clamp(4rem, 8vw, 6.5rem);
  color: var(--bone); line-height: .9;
  display: flex; align-items: flex-start; gap: .1em;
}
.membership__price .dollar { font-size: 40%; color: var(--muted); margin-top: .25em; }
.membership__price .cents { font-size: 40%; color: var(--muted); align-self: flex-end; margin-bottom: .1em; }
.membership__per {
  font-family: var(--ff-m); font-size: .75rem;
  letter-spacing: .1em; color: var(--muted);
  margin-top: .75rem;
}
.membership__body { color: var(--muted); margin: 1.75rem 0; line-height: 1.85; font-size: .97rem; }
.membership__benefits { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.membership__benefits li {
  display: flex; align-items: flex-start; gap: .9rem;
  color: var(--chrome); font-size: .95rem; line-height: 1.55;
}
.membership__benefits li::before {
  content: '—'; color: var(--red);
  font-family: var(--ff-m); flex-shrink: 0;
}

/* ── REVIEWS ── */
.reviews { background: var(--bg); }
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--surface);
  border: 1px solid #1e1e1e; border-radius: var(--r);
  padding: 2rem;
}
.review-card__stars { color: var(--red); font-size: .85rem; letter-spacing: .08em; margin-bottom: 1rem; }
.review-card blockquote {
  color: var(--chrome); font-size: .94rem;
  line-height: 1.8; font-style: italic; margin-bottom: 1.25rem;
  position: relative; padding-left: 1.5rem;
}
.review-card blockquote::before {
  content: '"';
  position: absolute; left: 0; top: -.2rem;
  font-family: var(--ff-d); font-size: 2.5rem;
  color: var(--red); line-height: 1;
}
.review-card__author {
  font-family: var(--ff-m); font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.review-card__source { color: var(--dim); font-size: .66rem; margin-top: .2rem; }

/* ── CTA BAND ── */
.cta-band { background: var(--red); padding: 5rem 0; }
.cta-band__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }

/* ── FOOTER ── */
.footer {
  background: var(--s2);
  border-top: 1px solid #1e1e1e;
  padding: 4.5rem 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--ff-d); font-size: 1.25rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--bone); margin-bottom: .75rem;
}
.footer__logo span { color: var(--red); }
.footer__desc { color: var(--muted); font-size: .88rem; line-height: 1.75; max-width: 280px; }
.footer__heading {
  font-family: var(--ff-m); font-size: .67rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 1.25rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer__links a {
  color: var(--muted); text-decoration: none;
  font-size: .9rem; transition: color .2s;
}
.footer__links a:hover { color: var(--bone); }
.footer__contact { font-size: .9rem; line-height: 1.9; }
.footer__contact a {
  color: var(--muted); text-decoration: none;
  display: block; transition: color .2s;
}
.footer__contact a:hover { color: var(--red); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #1e1e1e; padding-top: 2rem;
  flex-wrap: wrap; gap: 1rem;
}
.footer__copy { font-family: var(--ff-m); font-size: .69rem; color: var(--dim); letter-spacing: .08em; }
.footer__credit { font-family: var(--ff-m); font-size: .69rem; color: var(--dim); }
.footer__credit a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer__credit a:hover { color: var(--red); }

/* ── ANIMATIONS ── */
.reveal       { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left  { opacity: 0; transform: translateX(-22px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right { opacity: 0; transform: translateX(22px);  transition: opacity .65s ease, transform .65s ease; }
.reveal.in, .reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid #1e1e1e;
  padding: 8.5rem 0 4rem;
}
.page-hero .eyebrow { margin-bottom: .5rem; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); margin-top: .35rem; }
.page-hero p {
  color: var(--muted); font-size: 1.05rem;
  max-width: 580px; margin-top: 1.25rem; line-height: 1.75;
}

/* ── SERVICES PAGE ── */
.svc-deep { padding: clamp(4rem, 8vw, 6rem) 0; }
.svc-deep + .svc-deep { border-top: 1px solid #1e1e1e; }
.svc-deep:nth-child(even) { background: var(--surface); }
.svc-deep__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem); align-items: center;
}
.svc-deep:nth-child(even) .svc-deep__grid { direction: rtl; }
.svc-deep:nth-child(even) .svc-deep__content { direction: ltr; }
.svc-deep:nth-child(even) .svc-deep__img-wrap { direction: ltr; }
.svc-deep__img {
  width: 100%; aspect-ratio: 3/2;
  object-fit: cover; border-radius: var(--r);
  filter: brightness(.8) contrast(1.05);
}
.svc-deep__content .eyebrow { margin-bottom: .5rem; }
.svc-deep__content h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: .5rem 0 1rem; }
.svc-deep__content p { color: var(--muted); line-height: 1.85; font-size: .97rem; margin-bottom: 1rem; }
.svc-deep__list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.svc-deep__list li { display: flex; gap: .85rem; color: var(--chrome); font-size: .93rem; }
.svc-deep__list li::before { content: '—'; color: var(--red); font-family: var(--ff-m); flex-shrink: 0; }

/* ── ABOUT PAGE ── */
.philosophy { background: var(--s2); }
.philosophy__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.phil-card {
  background: var(--surface);
  border: 1px solid #1e1e1e; border-radius: var(--r);
  padding: 2rem;
}
.phil-card__num { font-family: var(--ff-m); font-size: .66rem; color: var(--red); letter-spacing: .15em; margin-bottom: .75rem; }
.phil-card h3 { font-size: 1.1rem; margin-bottom: .65rem; }
.phil-card p { color: var(--muted); font-size: .9rem; line-height: 1.75; }

/* ── MEMBERSHIP PAGE ── */
.membership-page__card {
  background: var(--surface);
  border: 1px solid #1e1e1e; border-radius: var(--r);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: start;
}
.faq { background: var(--s2); }
.faq__grid { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid #1e1e1e;
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid #1e1e1e; }
.faq-item__q {
  font-family: var(--ff-b); font-weight: 600;
  font-size: .97rem; color: var(--bone); margin-bottom: .6rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item__q::after { content: '+'; color: var(--red); font-size: 1.2rem; font-weight: 400; }
.faq-item__a { color: var(--muted); font-size: .93rem; line-height: 1.8; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 5rem); align-items: start;
}
.contact-info__item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-info__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--s2); border-radius: var(--r);
  border: 1px solid #1e1e1e;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.contact-info__label { font-family: var(--ff-m); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem; }
.contact-info__value { color: var(--chrome); font-size: .95rem; line-height: 1.65; }
.contact-info__value a { color: var(--chrome); text-decoration: none; transition: color .2s; }
.contact-info__value a:hover { color: var(--red); }
.form { background: var(--surface); border: 1px solid #1e1e1e; border-radius: var(--r); padding: clamp(2rem, 4vw, 3rem); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: .5rem; }
.form__group.full { grid-column: 1 / -1; }
.form__label { font-family: var(--ff-m); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.form__input, .form__select, .form__textarea {
  background: var(--s2); border: 1px solid #282828;
  border-radius: var(--r); color: var(--bone);
  font-family: var(--ff-b); font-size: .93rem;
  padding: .75rem 1rem; width: 100%;
  transition: border-color .2s;
  outline: none;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: var(--red);
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--dim); }
.form__select { cursor: pointer; appearance: none; }
.form__textarea { resize: vertical; min-height: 120px; }
.map-wrap { margin-top: 4rem; border-radius: var(--r); overflow: hidden; border: 1px solid #1e1e1e; }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: none; filter: grayscale(1) invert(1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .svc-deep__grid { grid-template-columns: 1fr; }
  .svc-deep:nth-child(even) .svc-deep__grid { direction: ltr; }
  .philosophy__grid { grid-template-columns: 1fr; }
  .membership-page__card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .story__grid { grid-template-columns: 1fr; }
  .story__badge { right: 1rem; bottom: -1rem; }
  .membership__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-actions { align-items: center; width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hook-band__inner { flex-direction: column; gap: 1rem; }
  .form__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr; }
}
