/* =========================================================================
   Every Body's Personal Trainer — revamp
   Aesthetic: editorial-athletic. Warm near-black, elevated logo-red,
   bone type. Fraunces (display serif) × Archivo (grotesque).
   ========================================================================= */

:root {
  --ink:      #15130E;   /* warm near-black base            */
  --ink-1:    #1B1710;   /* raised panel                    */
  --ink-2:    #221D14;   /* card                            */
  --ink-3:    #2B2418;   /* hover card / hairline fill      */
  --bone:     #F3EFE5;   /* primary text on dark            */
  --bone-dim: #CDC5B4;   /* secondary text                  */
  --muted:    #948B7C;   /* tertiary / labels               */
  --line:     rgba(243,239,229,.12);
  --line-2:   rgba(243,239,229,.07);
  --red:      #CB2027;   /* elevated brand red (from logo)  */
  --red-2:    #E64A3F;   /* warm highlight                  */
  --red-deep: #5B0F13;   /* oxblood depth                   */
  --ember:    #B26B2C;   /* warm ember (bg mesh only)       */

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Archivo", system-ui, -apple-system, sans-serif;

  --nav-h: 74px;
  --edge: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1240px;
  --r: 14px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: #15130E; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Grain overlay + warm ember atmosphere ---------------------------------- */
body::before {   /* fine film grain */
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.atmos {   /* soft, warm radial glows fixed behind content */
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 45% at 78% 8%, rgba(203,32,39,.20), transparent 60%),
    radial-gradient(50% 40% at 12% 22%, rgba(178,107,44,.10), transparent 65%),
    radial-gradient(80% 60% at 50% 120%, rgba(203,32,39,.08), transparent 60%);
}
main, footer, .nav { position: relative; z-index: 2; }

/* Typography primitives -------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700; font-size: .74rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red-2);
}
.eyebrow.muted { color: var(--muted); }
h1,h2,h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.02;
  letter-spacing: -.015em; font-optical-sizing: auto; }
.serif-em { font-style: italic; color: var(--red-2); font-weight: 500; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  --pad: .95em 1.5em;
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-sans); font-weight: 600; font-size: .92rem;
  letter-spacing: .01em; padding: var(--pad); border-radius: 999px;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn svg { width: 1em; height: 1em; }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 10px 30px -12px rgba(203,32,39,.8);
}
.btn-primary:hover { background: var(--red-2); transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 18px 40px -14px rgba(230,74,63,.9); }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--bone-dim); background: rgba(243,239,229,.04); transform: translateY(-2px); }
.btn-lg { --pad: 1.1em 1.9em; font-size: 1rem; }

/* Nav -------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--edge); z-index: 60;
  transition: height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 62px; background: rgba(21,19,14,.82);
  backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-2);
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand .seal {
  width: 40px; height: 40px; border-radius: 50%; background: var(--bone);
  display: grid; place-items: center; flex: none;
  box-shadow: 0 4px 14px -6px rgba(0,0,0,.6);
}
.brand .seal img { width: 33px; height: auto; display: block; }
.brand .wm { display: flex; flex-direction: column; line-height: 1; }
.brand .wm b { font-family: var(--font-sans); font-weight: 800; font-size: .82rem;
  letter-spacing: .02em; text-transform: uppercase; }
.brand .wm span { font-family: var(--font-sans); font-weight: 600; font-size: .58rem;
  letter-spacing: .34em; text-transform: uppercase; color: var(--red-2); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a.link {
  font-weight: 500; font-size: .9rem; color: var(--bone-dim); position: relative;
  transition: color .2s;
}
.nav-links a.link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--red); transition: width .3s var(--ease);
}
.nav-links a.link:hover { color: var(--bone); }
.nav-links a.link:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 10px; background: transparent; cursor: pointer; position: relative;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 1.6px;
  background: var(--bone); transform: translate(-50%,-50%); transition: .3s var(--ease);
}
.hamburger span::before { transform: translate(-50%,-7px); }
.hamburger span::after  { transform: translate(-50%, 7px); }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translate(-50%,0) rotate(45deg); }
.hamburger.open span::after  { transform: translate(-50%,0) rotate(-45deg); }

/* Mobile menu (hidden by default; class overrides display) ---------------- */
.mobile-menu {
  display: none;   /* critical: not just [hidden] */
  position: fixed; inset: 0; z-index: 55;
  background: rgba(18,16,11,.97); backdrop-filter: blur(18px);
  flex-direction: column; justify-content: center; gap: 1.4rem;
  padding: var(--edge); padding-top: var(--nav-h);
}
.mobile-menu.open { display: flex; animation: fade .35s var(--ease); }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.mobile-menu a small { font-family: var(--font-sans); font-size: .7rem; letter-spacing:.2em;
  text-transform: uppercase; color: var(--muted); display:block; }
.mobile-menu .btn { margin-top: 1rem; align-self: flex-start; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* Layout helpers --------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--edge); }
section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.7rem); }
.section-head p { color: var(--bone-dim); margin-top: 1.1rem; font-size: 1.06rem; max-width: 60ch; }
.rule { height: 1px; background: var(--line); border: 0; }
/* Prevent grid/flex children from expanding tracks past the viewport */
.visit-grid > *, .model-row > *, .eric-grid > *, .foot-grid > *, .menu-item > * { min-width: 0; }
.info-row .val, .foot-col a, .review p { overflow-wrap: anywhere; }

/* ============================ HERO ====================================== */
.hero {
  min-height: calc(100svh - var(--nav-h));
  margin-top: var(--nav-h);
  display: flex; flex-direction: column; justify-content: center;
  padding-top: clamp(1.5rem, 4vh, 3rem); padding-bottom: clamp(1.5rem, 4vh, 3rem);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; width: 100%;
}
.hero-copy { min-width: 0; }
.hero-grid > * { min-width: 0; }
.hero-eyebrow { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.4rem; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-2);
  box-shadow: 0 0 0 4px rgba(230,74,63,.18); flex: none; }
.hero h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.55rem);
  line-height: .98; letter-spacing: -.02em; font-weight: 600;
}
.hero h1 .l2 { display: block; }
.hero p.lede {
  margin-top: 1.5rem; max-width: 46ch; color: var(--bone-dim);
  font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.6;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero .proof { display: flex; align-items: center; flex-wrap: wrap; gap: .8rem 1.3rem; margin-top: 2rem; }
.stars { color: var(--red-2); letter-spacing: .12em; font-size: 1rem; }
.proof .p-txt { color: var(--bone-dim); font-size: .9rem; }
.proof .p-txt b { color: var(--bone); font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  font-size: .74rem; font-weight: 600; letter-spacing: .04em; color: var(--bone-dim);
  border: 1px solid var(--line); border-radius: 999px; padding: .4em .85em; white-space: nowrap;
}
.chip b { color: var(--red-2); }

/* Hero seal card --------------------------------------------------------- */
.seal-card {
  background: linear-gradient(165deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line); border-radius: 20px;
  padding: 2rem 1.9rem; position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.8);
}
.seal-card::before {   /* corner glow */
  content:""; position:absolute; top:-40%; right:-30%; width:70%; height:70%;
  background: radial-gradient(circle, rgba(203,32,39,.35), transparent 70%); filter: blur(10px);
}
.seal-card .seal-lg {
  width: 128px; height: 128px; border-radius: 50%; background: var(--bone);
  display: grid; place-items: center; margin: 0 auto 1.2rem;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.7), 0 0 0 6px rgba(243,239,229,.06);
  position: relative;
}
.seal-card .seal-lg img { width: 108px; height: auto; }
.seal-card .est { text-align: center; font-family: var(--font-display); font-style: italic;
  color: var(--bone-dim); font-size: 1.05rem; margin-bottom: 1.3rem; position: relative; }
.seal-card .est b { color: var(--bone); font-style: normal; font-weight: 600; }
.fact { display: flex; gap: .8rem; padding: .8rem 0; border-top: 1px solid var(--line-2);
  align-items: baseline; position: relative; }
.fact:last-child { padding-bottom: 0; }
.fact .k { font-family: var(--font-sans); font-weight: 700; color: var(--red-2);
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; flex: none; width: 74px; }
.fact .v { color: var(--bone); font-size: .95rem; line-height: 1.4; }
.fact .v small { color: var(--muted); }

/* ======================= TRAINING / SERVICES =========================== */
.model-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 3rem; }
.model {
  border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem 1.7rem;
  background: linear-gradient(160deg, rgba(43,36,24,.5), rgba(27,23,16,.3));
  display: flex; gap: 1.1rem; align-items: flex-start;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.model:hover { border-color: rgba(230,74,63,.4); transform: translateY(-3px);
  background: linear-gradient(160deg, rgba(43,36,24,.75), rgba(27,23,16,.4)); }
.model .ic { width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center; background: rgba(203,32,39,.12);
  border: 1px solid rgba(230,74,63,.3); color: var(--red-2); }
.model .ic svg { width: 24px; height: 24px; }
.model h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: .3rem; }
.model p { color: var(--bone-dim); font-size: .96rem; }

.menu { border-top: 1px solid var(--line); }
.menu-item {
  display: grid; grid-template-columns: 3.2rem 1fr auto; gap: 1.4rem; align-items: center;
  padding: 1.5rem .5rem; border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), padding .3s var(--ease); position: relative;
}
.menu-item::after { content:""; position:absolute; left:0; top:0; bottom:0; width:2px;
  background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.menu-item:hover { background: linear-gradient(90deg, rgba(203,32,39,.06), transparent 70%); padding-left: 1.2rem; }
.menu-item:hover::after { transform: scaleY(1); }
.menu-item .num { font-family: var(--font-display); font-size: 1.05rem; color: var(--muted);
  font-variant-numeric: tabular-nums; }
.menu-item:hover .num { color: var(--red-2); }
.menu-item .mi-body h3 { font-size: 1.42rem; font-weight: 500; letter-spacing: -.01em; }
.menu-item .mi-body p { color: var(--muted); font-size: .95rem; margin-top: .15rem; max-width: 62ch; }
.menu-item .arw { color: var(--muted); transition: transform .3s var(--ease), color .3s; opacity:.6; }
.menu-item:hover .arw { transform: translateX(4px); color: var(--red-2); opacity: 1; }

.pricing-note {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
  justify-content: space-between;
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.9rem; background: linear-gradient(120deg, rgba(91,15,19,.35), rgba(27,23,16,.2));
}
.pricing-note .pn-txt { max-width: 62ch; }
.pricing-note .pn-txt h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.pricing-note .pn-txt p { color: var(--bone-dim); font-size: .97rem; }
.pricing-note .price { font-family: var(--font-display); line-height: 1; text-align: right; flex: none; }
.pricing-note .price .amt { font-size: 3.2rem; font-weight: 600; color: var(--bone); }
.pricing-note .price .amt sup { font-size: 1.3rem; color: var(--red-2); vertical-align: super; }
.pricing-note .price small { display: block; color: var(--muted); font-family: var(--font-sans);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .4rem; }

/* ============================ APPROACH ================================== */
.approach { background:
  linear-gradient(180deg, transparent, rgba(27,23,16,.5) 30%, rgba(27,23,16,.5) 70%, transparent); }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  margin-bottom: clamp(3rem,6vw,4.5rem); }
.stat { background: var(--ink); padding: 1.8rem 1.4rem; text-align: center; }
.stat .n { font-family: var(--font-display); font-size: clamp(2.3rem,4vw,3.1rem); font-weight: 600;
  color: var(--bone); line-height: 1; }
.stat .n .u { color: var(--red-2); }
.stat .l { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  margin-top: .6rem; font-weight: 600; }

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem 2.2rem; }
.why { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.why .wn { font-family: var(--font-display); color: var(--red-2); font-size: 1rem; font-weight: 600; }
.why h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.08rem; margin: .5rem 0 .5rem;
  letter-spacing: -.01em; }
.why p { color: var(--bone-dim); font-size: .95rem; }

/* ============================ MEET ERIC ================================= */
.eric-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem,5vw,4.5rem);
  align-items: center; }
.eric-photo { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5;
  border: 1px solid var(--line); background: var(--ink-2); }
.eric-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;
  filter: grayscale(1) contrast(1.08) brightness(.92);
  transition: filter .5s var(--ease), transform .8s var(--ease);
}
.eric-photo::after {   /* red duotone wash to hide dated color + unify */
  content:""; position:absolute; inset:0; mix-blend-mode: color;
  background: linear-gradient(180deg, rgba(203,32,39,.42), rgba(91,15,19,.6));
}
.eric-photo::before {  /* bottom vignette + gradient */
  content:""; position:absolute; inset:0; z-index:2;
  background: linear-gradient(180deg, transparent 45%, rgba(21,19,14,.55)); }
.eric-photo:hover img { filter: grayscale(.75) contrast(1.08); transform: scale(1.03); }
.eric-photo .badge { position: absolute; z-index: 3; left: 1rem; bottom: 1rem;
  font-family: var(--font-sans); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--bone); background: rgba(21,19,14,.7); border: 1px solid var(--line);
  padding: .5em .85em; border-radius: 999px; backdrop-filter: blur(6px); }
.eric-copy .eyebrow { display:block; margin-bottom: 1rem; }
.eric-copy h2 { font-size: clamp(2rem,4vw,3rem); }
.eric-copy .role { color: var(--red-2); font-family: var(--font-sans); font-weight: 700;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin: .7rem 0 1.4rem; }
.eric-copy p { color: var(--bone-dim); margin-bottom: 1rem; font-size: 1.02rem; }
.creds { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.cred { display: flex; align-items: center; gap: .5rem; border: 1px solid var(--line);
  border-radius: 10px; padding: .6em .9em; font-size: .82rem; color: var(--bone); background: rgba(43,36,24,.3); }
.cred svg { width: 15px; height: 15px; color: var(--red-2); flex: none; }

/* ============================ REVIEWS ================================== */
.reviews-masonry { columns: 3; column-gap: 1.4rem; }
.review {
  break-inside: avoid; margin-bottom: 1.4rem; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.6rem; background: linear-gradient(165deg, rgba(43,36,24,.4), rgba(27,23,16,.25));
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.review:hover { border-color: rgba(230,74,63,.35); transform: translateY(-3px); }
.review .qm { font-family: var(--font-display); font-size: 2.6rem; line-height: .4; color: var(--red);
  display: block; height: .55em; opacity: .8; }
.review p { color: var(--bone); font-size: .98rem; line-height: 1.62; }
.review .who { margin-top: 1.1rem; display: flex; align-items: center; gap: .7rem; }
.review .av { width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: #fff;
  background: linear-gradient(150deg, var(--red), var(--red-deep)); }
.review .who > span { display: flex; flex-direction: column; gap: 1px; }
.review .who .nm { display: block; font-weight: 600; font-size: .9rem; line-height: 1.2; }
.review .who .lo { display: block; font-size: .76rem; color: var(--muted); letter-spacing: .02em; line-height: 1.2; }
.review .st { color: var(--red-2); font-size: .78rem; letter-spacing: .1em; margin-bottom: .8rem; }

/* ============================ AREAS / VISIT ============================= */
.visit-grid { display: grid; grid-template-columns: 1.25fr .9fr; gap: clamp(2rem,4vw,3.5rem); align-items: stretch; }
.areas-block h3.mini, .info-block h3.mini { font-family: var(--font-sans); font-weight: 700;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red-2); margin-bottom: 1rem; }
.geo { margin-bottom: 2rem; }
.geo .st-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--bone);
  margin-bottom: .7rem; display: flex; align-items: baseline; gap: .6rem; }
.geo .st-name span { font-family: var(--font-sans); font-size: .7rem; letter-spacing:.1em; color: var(--muted);
  text-transform: uppercase; font-weight: 600; }
.cities { display: flex; flex-wrap: wrap; gap: .5rem; }
.cities li { list-style: none; font-size: .85rem; color: var(--bone-dim);
  border: 1px solid var(--line); border-radius: 8px; padding: .35em .7em; transition: .25s var(--ease); }
.cities li:hover { border-color: rgba(230,74,63,.4); color: var(--bone); }

.info-card { border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: linear-gradient(165deg, rgba(43,36,24,.45), rgba(27,23,16,.3)); height: 100%;
  display: flex; flex-direction: column; }
.coverage-viz { position: relative; aspect-ratio: 16/11; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(58% 58% at 50% 46%, rgba(203,32,39,.16), transparent 72%),
    radial-gradient(rgba(243,239,229,.05) 1px, transparent 1.5px) 0 0 / 22px 22px,
    var(--ink-2); }
.coverage-viz .map-tag { position: absolute; left: 1rem; top: 1rem; z-index: 4; font-size: .72rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bone);
  background: rgba(21,19,14,.72); border: 1px solid var(--line); padding: .45em .8em; border-radius: 999px; }
.radar { position: relative; width: min(64%, 232px); aspect-ratio: 1; margin: 1.6rem 0 1rem; }
.radar .ring { position: absolute; left: 50%; top: 50%; border-radius: 50%; transform: translate(-50%,-50%);
  border: 1px solid rgba(230,74,63,.4); }
.radar .ring:nth-child(1){ width: 26%; height: 26%; }
.radar .ring:nth-child(2){ width: 52%; height: 52%; border-color: rgba(230,74,63,.28); }
.radar .ring:nth-child(3){ width: 78%; height: 78%; border-color: rgba(230,74,63,.18); }
.radar .ring:nth-child(4){ width: 104%; height: 104%; border-color: rgba(230,74,63,.11); }
.radar .core { position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; border-radius: 50%;
  transform: translate(-50%,-50%); background: var(--red); z-index: 3;
  box-shadow: 0 0 0 5px rgba(203,32,39,.18), 0 0 18px rgba(230,74,63,.7); }
.radar .node { position: absolute; left: calc(50% + var(--x)); top: calc(50% + var(--y));
  width: 7px; height: 7px; border-radius: 50%; transform: translate(-50%,-50%); z-index: 2;
  background: var(--red-2); box-shadow: 0 0 8px rgba(230,74,63,.85); }
.cov-cap { color: var(--bone-dim); font-size: .85rem; text-align: center; padding: 0 1.3rem 0.2rem; }
.cov-cap b { color: var(--bone); }
@media (prefers-reduced-motion: no-preference) {
  .radar .ring { animation: radar 3.6s var(--ease) infinite; }
  .radar .ring:nth-child(2){ animation-delay: .45s; }
  .radar .ring:nth-child(3){ animation-delay: .9s; }
  .radar .ring:nth-child(4){ animation-delay: 1.35s; }
  .radar .core { animation: corepulse 3.6s var(--ease) infinite; }
}
@keyframes radar { 0%,100% { opacity: .2; } 50% { opacity: 1; } }
@keyframes corepulse { 0%,100% { box-shadow: 0 0 0 4px rgba(203,32,39,.14), 0 0 14px rgba(230,74,63,.6); }
  50% { box-shadow: 0 0 0 8px rgba(203,32,39,.22), 0 0 24px rgba(230,74,63,.85); } }
.info-inner { padding: 1.7rem 1.7rem; display: grid; gap: 1.2rem; }
.info-row { display: flex; gap: .9rem; align-items: flex-start; }
.info-row svg { width: 19px; height: 19px; color: var(--red-2); flex: none; margin-top: 3px; }
.info-row .lbl { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  font-weight: 700; margin-bottom: .2rem; }
.info-row .val { color: var(--bone); font-size: .95rem; line-height: 1.5; }
.info-row .val a:hover { color: var(--red-2); }
.hours-line { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem;
  padding: .3rem 0; border-bottom: 1px dashed var(--line-2); }
.hours-line:last-child { border-bottom: 0; }
.hours-line .d { color: var(--bone-dim); } .hours-line .t { color: var(--bone); font-weight: 500; }
.hours-line.closed .t { color: var(--muted); }

/* ============================ FINAL CTA ================================= */
.final { text-align: center; padding: clamp(4.5rem,10vw,8rem) 0; position: relative; }
.final::before { content:""; position:absolute; inset:0; z-index:-1;
  background: radial-gradient(60% 120% at 50% 0%, rgba(203,32,39,.22), transparent 60%); }
.final .eyebrow { display:block; margin-bottom: 1.2rem; }
.final h2 { font-size: clamp(2.4rem,6vw,4.6rem); max-width: 16ch; margin: 0 auto; }
.final p { color: var(--bone-dim); margin: 1.4rem auto 2.3rem; max-width: 52ch; font-size: 1.08rem; }
.final .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final .callnum { margin-top: 1.8rem; font-family: var(--font-display); font-size: 1.1rem; color: var(--bone-dim); }
.final .callnum a { color: var(--bone); border-bottom: 1px solid var(--red); }

/* ============================ FOOTER =================================== */
footer { border-top: 1px solid var(--line); padding: clamp(3rem,6vw,4.5rem) 0 2.5rem; background: rgba(18,16,11,.6); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.foot-brand .seal { width: 92px; height: 92px; border-radius: 50%; background: var(--bone);
  display: grid; place-items: center; margin-bottom: 1.2rem; }
.foot-brand .seal img { width: 76px; height: auto; }
.foot-brand p { color: var(--bone-dim); font-size: .93rem; max-width: 34ch; }
.foot-col h4 { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.1rem; font-weight: 700; }
.foot-col a, .foot-col p { display: block; color: var(--bone-dim); font-size: .92rem; margin-bottom: .6rem;
  transition: color .2s; }
.foot-col a:hover { color: var(--red-2); }
.socials { display: flex; gap: .6rem; margin-top: .2rem; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px;
  display: grid; place-items: center; color: var(--bone-dim); transition: .25s var(--ease); }
.socials a:hover { border-color: var(--red); color: var(--bone); background: rgba(203,32,39,.12); }
.socials svg { width: 17px; height: 17px; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--line); padding-top: 1.6rem; }
.foot-bottom p { color: var(--muted); font-size: .82rem; }
.foot-bottom .disc { max-width: 60ch; }

/* ============================ REVEAL ANIM =============================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }

/* Hero load-in */
.hero [data-load] { opacity: 0; transform: translateY(22px); animation: rise .9s var(--ease) forwards; }
.hero [data-load="1"]{ animation-delay:.05s } .hero [data-load="2"]{ animation-delay:.16s }
.hero [data-load="3"]{ animation-delay:.28s } .hero [data-load="4"]{ animation-delay:.4s }
.hero [data-load="5"]{ animation-delay:.52s } .hero [data-load="6"]{ animation-delay:.64s }
.hero .seal-card[data-load]{ animation-delay:.5s }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-stagger] > *, .hero [data-load] { opacity: 1 !important; transform: none !important;
    animation: none !important; transition: none !important; }
}

/* ============================ RESPONSIVE =============================== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1.35fr 1fr; }
  .reviews-masonry { columns: 2; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .seal-card { max-width: 460px; }        /* reflows below the fold on mobile */
  .model-row { grid-template-columns: 1fr; }
  .eric-grid { grid-template-columns: 1fr; }
  .eric-photo { max-width: 380px; }
  .visit-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .reviews-masonry { columns: 1; }
  .why-grid { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 2.2rem 1fr; }
  .menu-item .arw { display: none; }
  .pricing-note { flex-direction: column; align-items: flex-start; }
  .pricing-note .price { text-align: left; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero .proof { gap: .7rem; }
}
