/* ============================================================
   Fall Creek Chiropractic — design tokens & base
   Athletic-editorial · Big Shoulders Display + Manrope
============================================================ */
:root {
  /* surfaces */
  --bg: #F7F2E8;
  --bg-warm: #EFE7D6;
  --bg-deep: #E0D4BC;
  --paper: #ffffff;

  /* ink / type */
  --ink: #0d1f17;
  --navy: #1f3a2e;
  --navy-2: #2c4a3e;
  --navy-3: #3d5a4c;
  --ink-soft: #2a3d31;
  --muted: #7a7565;

  /* rules */
  --rule: rgba(13,31,23,.12);
  --rule-strong: rgba(13,31,23,.25);
  --rule-on-dark: rgba(255,255,255,.12);
  --rule-on-dark-strong: rgba(255,255,255,.22);

  /* accents */
  --red: #C97444;
  --red-deep: #a55a2f;
  --primary: var(--navy);
  --primary-deep: var(--ink);
  --amber: #F2B544;
  --teal: #5C9999;

  /* type */
  --display: "Big Shoulders Display", "Archivo Black", Impact, sans-serif;
  --sans: "Manrope", "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --serif: "Instrument Serif", Georgia, serif; /* used sparingly for italic flourish */

  --maxw: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

main { position: relative; z-index: 1; }

/* ----- Type ----- */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.mono  { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.88;
  text-wrap: balance;
}
p { margin: 0; }

.h-display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(60px, 10vw, 168px);
  line-height: 0.84;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.h-section {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 6.2vw, 100px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h-display em, .h-section em, h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  letter-spacing: -0.015em;
  text-transform: none;
}

.eyebrow, .meta-row {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--red);
  display: inline-block;
}

/* ----- Layout ----- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { position: relative; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn .arrow { transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--rule); }
.btn-light:hover { background: var(--bg-warm); }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  color: #fff;
  transition: background 280ms ease, padding 240ms ease, border-color 240ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(16,12,48,.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 10px 0;
  border-color: var(--rule-on-dark);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  background: var(--red);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
  border-radius: 2px;
}
.brand-text { display: flex; flex-direction: column; line-height: 0.95; }
.brand-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
}
.nav-phone .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #23d97a;
  box-shadow: 0 0 0 4px rgba(35,217,122,.22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(35,217,122,.22); }
  50%      { box-shadow: 0 0 0 9px rgba(35,217,122,0); }
}
@media (max-width: 880px) { .nav-links, .nav-phone { display: none; } }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding-top: 110px;
  padding-bottom: 130px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 60% at 78% 20%, rgba(201,116,68,.35) 0%, transparent 55%),
    radial-gradient(60% 50% at 10% 90%, rgba(42,37,98,.85) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-2) 0%, var(--ink) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/></svg>");
  opacity: 0.10;
  mix-blend-mode: overlay;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  min-height: calc(100vh - 240px);
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; align-items: start; gap: 40px; }
}

.hero-meta { display: flex; flex-direction: column; gap: 22px; padding-bottom: 6px; }
.hero-tag {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.hero-tag .pill {
  padding: 6px 12px;
  border: 1px solid var(--rule-on-dark-strong);
  color: #fff;
  background: rgba(255,255,255,.04);
  letter-spacing: 0.14em;
}
.hero-tag .bar { width: 32px; height: 1px; background: var(--red); }

.hero-title { margin: 0; color: #fff; }
.hero-title .l1, .hero-title .l2, .hero-title .l3 { display: block; }
.hero-title .l3 em { color: var(--red); }
.hero-sub {
  max-width: 48ch;
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  margin-top: 8px;
  font-weight: 500;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 22px;
  align-items: center;
}
.hero-cta-row .phone-cta {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--rule-on-dark-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: background 200ms ease, border-color 200ms ease;
}
.hero-cta-row .phone-cta:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.4); }
.phone-cta-num { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: 0; }
.hero-cta-row .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.hero-cta-row .btn-ghost:hover { background: #fff; color: var(--ink); }

.hero-right { display: grid; grid-template-rows: 1fr auto; gap: 20px; min-height: 100%; }
.hero-photo {
  position: relative;
  height: clamp(280px, 46vh, 460px);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--rule-on-dark);
}
.hero-photo .placeholder-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 14px, transparent 14px 28px);
  background-color: var(--navy-3);
}
.hero-photo .photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(13,31,23,.85) 100%),
    linear-gradient(95deg, rgba(13,31,23,.3) 0%, transparent 40%);
}
.hero-photo .photo-label {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 18px;
}
.hero-photo .photo-label-l {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero-photo .photo-label-r {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
  opacity: 0.85;
  line-height: 1.5;
}
.hero-photo .placeholder-caption {
  position: absolute;
  left: 22px; top: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero-photo .feature-badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--red); color: #fff;
  padding: 7px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}

.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
}
.stat {
  padding: 22px 18px;
  border-right: 1px solid var(--rule-on-dark);
  color: #fff;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex; align-items: baseline; gap: 8px;
}
.stat-num small {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-transform: lowercase;
  letter-spacing: 0;
}
.stat-label {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 0;
  border-top: 1px solid var(--rule-on-dark);
  background: linear-gradient(180deg, transparent, rgba(13,31,23,.45));
  display: flex; align-items: center; gap: 28px;
  overflow: hidden;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero-marquee .track {
  display: flex; gap: 0;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
}
.hero-marquee .track span {
  display: inline-flex; align-items: center; gap: 14px;
  padding-right: 38px;
}
.hero-marquee .track span::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--red);
  transform: rotate(45deg);
  margin-left: 38px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  right: 32px; bottom: 110px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex; align-items: center; gap: 14px;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.5));
}
@media (max-width: 980px) { .scroll-cue { display: none; } }

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(20px, 4vw, 80px);
  align-items: end;
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (max-width: 880px) {
  .section-header { grid-template-columns: 1fr; padding-top: 90px; padding-bottom: 40px; }
}
.section-header .meta { display: flex; flex-direction: column; gap: 16px; }
.section-header .meta-row {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-header .meta-row .idx {
  padding: 4px 10px;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  background: var(--paper);
}
.section-header .lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 48ch;
}

/* ============================================================
   SERVICES
============================================================ */
.services-section { padding-bottom: 120px; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.svc-card {
  grid-column: span 4;
  padding: 36px 30px 28px;
  background: var(--paper);
  display: flex; flex-direction: column;
  gap: 16px;
  min-height: 360px;
  position: relative;
  cursor: pointer;
  transition: background 280ms ease, color 280ms ease;
}
.svc-card:hover {
  background: var(--ink);
  color: #fff;
}
.svc-card:hover .svc-num,
.svc-card:hover .svc-label,
.svc-card:hover .svc-desc { color: rgba(255,255,255,.7); }
.svc-card:hover .svc-arrow {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translate(4px, -4px);
}
.svc-card.feat {
  grid-column: span 8;
  background: var(--navy);
  color: #fff;
}
.svc-card.feat .svc-num,
.svc-card.feat .svc-label { color: rgba(255,255,255,.55); }
.svc-card.feat .svc-desc { color: rgba(255,255,255,.78); }
.svc-card.feat .svc-arrow { border-color: rgba(255,255,255,.25); color: #fff; }
.svc-card.feat:hover { background: var(--ink); }

@media (max-width: 980px) {
  .svc-card { grid-column: span 6; }
  .svc-card.feat { grid-column: span 6; }
}
@media (max-width: 640px) {
  .svc-card, .svc-card.feat { grid-column: span 12; }
}

.svc-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 6px;
}
.svc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  transition: color 200ms ease;
}
.svc-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--rule);
  background: var(--bg-warm);
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}
.svc-card:hover .svc-label,
.svc-card.feat .svc-label {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
}
.svc-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.svc-card.feat .svc-title { font-size: clamp(40px, 3.8vw, 64px); }
.svc-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: auto;
  max-width: 50ch;
  transition: color 200ms ease;
}
.svc-arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 38px; height: 38px;
  border: 1px solid var(--rule-strong);
  display: grid; place-items: center;
  transition: all 240ms ease;
  background: transparent;
  color: var(--ink);
}

/* ============================================================
   CONDITIONS / METHODS
============================================================ */
.conditions-section {
  background: var(--ink);
  color: #fff;
  padding: 0 0 120px;
  position: relative;
  overflow: hidden;
}
.conditions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 20% 10%, rgba(201,116,68,.12), transparent 55%),
    radial-gradient(60% 50% at 90% 80%, rgba(42,37,98,.6), transparent 60%);
  pointer-events: none;
}
.conditions-section .wrap { position: relative; z-index: 1; }
.conditions-section .meta-row { color: rgba(255,255,255,.55); }
.conditions-section .meta-row .idx {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  color: #fff;
}
.conditions-section .h-section { color: #fff; }
.conditions-section .lead { color: rgba(255,255,255,.72); }

.cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-on-dark);
  border: 1px solid var(--rule-on-dark);
  margin-bottom: 96px;
}
@media (max-width: 980px) { .cond-grid { grid-template-columns: repeat(2, 1fr); } }
.cond-chip {
  padding: 24px 22px;
  background: var(--ink);
  display: flex; flex-direction: column; gap: 12px;
  transition: background 220ms ease, transform 220ms ease;
  cursor: pointer;
}
.cond-chip:hover {
  background: var(--navy-2);
}
.cond-chip .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--red);
}
.cond-chip .name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.cond-chip .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}

/* Methods rows */
.methods-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 20px; flex-wrap: wrap;
}
.methods-head h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 56px);
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
}
.methods-head .h-side {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.methods { border-top: 1px solid var(--rule-on-dark); }
.method-row {
  display: grid;
  grid-template-columns: 80px 1.6fr 2fr 0.6fr;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule-on-dark);
  transition: padding 280ms ease, background 280ms ease;
  cursor: pointer;
}
.method-row:hover { padding-left: 16px; }
.method-row:hover .m-cta { color: var(--red); }
@media (max-width: 880px) {
  .method-row { grid-template-columns: 50px 1fr; gap: 12px; }
  .method-row .m-desc, .method-row .m-cta { grid-column: 1 / -1; padding-left: 50px; }
}
.method-row .m-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.5);
}
.method-row .m-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.method-row .m-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}
.method-row .m-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
  color: rgba(255,255,255,.7);
  transition: color 240ms ease;
}

/* ============================================================
   TEAM
============================================================ */
.team-section { padding: 0 0 120px; background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  grid-column: span 6;
  border: 1px solid var(--rule);
  background: var(--paper);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 48px -28px rgba(13,31,23,.25);
}
.team-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  overflow: hidden;
}
.team-photo.aud {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #6b3325, #2a1612);
}
.team-photo.dw {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--navy-2), var(--ink));
}
.team-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 700ms ease;
}
.team-card:hover .team-portrait { transform: scale(1.03); }
.team-photo::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(13,31,23,.6) 100%);
}
.team-photo .name-overlay {
  position: absolute;
  bottom: 18px; left: 22px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  line-height: 0.9;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(13,31,23,.5);
}
.team-photo .role-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--red);
  color: #fff;
  padding: 7px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.team-body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.team-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.team-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.team-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  line-height: 1.5;
}
.team-bio { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.team-creds { display: flex; flex-wrap: wrap; gap: 6px; }
.team-creds .crd {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  background: var(--bg-warm);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.tst-section { padding-bottom: 120px; background: var(--bg-warm); }
.tst-section .section-header .lead { color: var(--ink-soft); }
.tst-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.tst-card {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 22px;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.tst-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -24px rgba(13,31,23,.18);
}
.tst-card.size-lg { grid-column: span 8; min-height: 320px; }
.tst-card.size-md { grid-column: span 4; min-height: 320px; }
.tst-card.size-sm { grid-column: span 4; min-height: 260px; }
.tst-card.size-wide { grid-column: span 6; }
.tst-card.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.tst-card.dark:hover { box-shadow: 0 24px 40px -24px rgba(13,31,23,.45); }
.tst-card.accent { background: var(--red); color: #fff; border-color: var(--red); }
@media (max-width: 980px) {
  .tst-card, .tst-card.size-lg, .tst-card.size-md, .tst-card.size-wide { grid-column: span 12; }
}
.tst-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.tst-card.dark .tst-meta, .tst-card.accent .tst-meta { color: rgba(255,255,255,.7); }
.tst-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink-soft);
}
.tst-card.dark .tst-quote,
.tst-card.accent .tst-quote { color: rgba(255,255,255,.92); }
.tst-card.size-lg .tst-quote { font-size: clamp(22px, 1.8vw, 28px); line-height: 1.4; }
.tst-card .tst-foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 18px;
}
.tst-author {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.tst-author-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.tst-card.dark .tst-author-meta, .tst-card.accent .tst-author-meta { color: rgba(255,255,255,.7); }

.stars { display: inline-flex; gap: 2px; color: var(--red); }
.stars svg { width: 14px; height: 14px; fill: currentColor; }
.tst-card.accent .stars { color: #fff; }

/* ============================================================
   LOCATION / CTA  (BOOKING strip-style)
============================================================ */
.loc-section { padding: 0 0 0; background: var(--bg); }
.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--rule);
  background: var(--paper);
}
@media (max-width: 980px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-info { padding: 48px 48px 52px; display: flex; flex-direction: column; gap: 22px; }
.loc-info h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.loc-info h3 em { color: var(--red); font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; }
.loc-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 640px) { .loc-rows { grid-template-columns: 1fr; } }
.loc-rows .lr {
  padding: 18px 20px;
  border: 1px solid var(--rule);
  background: var(--bg-warm);
}
.loc-rows .lr .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.loc-rows .lr .val {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  margin-top: 8px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.loc-map {
  position: relative;
  min-height: 460px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.loc-map::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(201,116,68,.18), transparent 70%);
}
.loc-map svg.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.35; }
.map-pin {
  position: absolute; top: 46%; left: 52%;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transform: translate(-50%, -50%);
}
.map-pin .pin-dot {
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201,116,68,.30),
              0 0 0 14px rgba(201,116,68,.12);
  animation: pulse-red 2.4s ease-in-out infinite;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 6px rgba(201,116,68,.3), 0 0 0 14px rgba(201,116,68,.12); }
  50%      { box-shadow: 0 0 0 10px rgba(201,116,68,.18), 0 0 0 22px rgba(201,116,68,0); }
}
.map-pin .pin-card {
  background: var(--paper);
  color: var(--ink);
  padding: 14px 18px;
  border: 1px solid var(--rule);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
  min-width: 220px;
}
.map-pin .pin-card .nm {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}
.map-pin .pin-card .ad { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.map-cap {
  position: absolute;
  bottom: 18px; left: 22px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* Booking — full-width dark CTA */
.booking {
  position: relative;
  margin-top: 0;
  padding: 140px 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 20% 30%, rgba(201,116,68,.18), transparent 55%),
    radial-gradient(50% 50% at 85% 75%, rgba(42,37,98,.6), transparent 55%);
}
.booking .wrap { position: relative; z-index: 1; }
.booking-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .booking-grid { grid-template-columns: 1fr; gap: 40px; } }
.booking h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(64px, 9.5vw, 168px);
  line-height: 0.84;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.booking h2 em { color: var(--red); font-style: italic; font-family: var(--serif); font-weight: 400; text-transform: none; letter-spacing: -0.015em; }
.booking-rhs { display: flex; flex-direction: column; gap: 16px; }
.booking-rhs .lead { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.78); max-width: 42ch; }
.booking-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.booking-card {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--rule-on-dark);
  background: rgba(255,255,255,.03);
  transition: background 200ms ease, border-color 200ms ease;
  color: #fff;
  cursor: pointer;
}
.booking-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.28);
}
.booking-card .ico {
  width: 44px; height: 44px;
  background: var(--red);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.booking-card .copy { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.booking-card .copy .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.booking-card .copy .v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.booking-card .arr {
  color: rgba(255,255,255,.5);
  transition: transform 200ms ease, color 200ms ease;
}
.booking-card:hover .arr { transform: translateX(4px); color: var(--red); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 80px 0 32px;
  border-top: 1px solid var(--rule-on-dark);
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-grid ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,.8);
}
.footer-grid ul a:hover { color: var(--red); }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand .tagline {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.005em;
  max-width: 22ch;
}
.footer-brand .tagline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  text-transform: none;
}
.footer-grid .brand .brand-name { color: #fff; }

.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-on-dark);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.5);
  gap: 18px; flex-wrap: wrap;
}

/* ============================================================
   REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   SERVICES — editorial overlay (matches the indymuscle pattern)
   3px accent bar · oversized outlined number watermark · line glyph
============================================================ */
.svc-card { position: relative; overflow: hidden; isolation: isolate; }
.svc-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); z-index: 4; }
.svc-card[data-cat="soft"]::after { background: var(--amber); }
.svc-card[data-cat="support"]::after { background: var(--teal); }
.svc-bignum {
  position: absolute; right: -14px; bottom: -46px;
  font-family: var(--display); font-weight: 900; font-size: 200px; line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,116,68,.18);
  text-stroke: 1.5px rgba(201,116,68,.18);
  pointer-events: none; user-select: none; z-index: 0;
  transition: -webkit-text-stroke-color .3s, color .3s;
}
.svc-card.feat .svc-bignum,
.svc-card:hover .svc-bignum {
  -webkit-text-stroke-color: rgba(255,255,255,.20);
  text-stroke-color: rgba(255,255,255,.20);
}
.svc-glyph {
  display: inline-flex; width: 22px; height: 22px;
  margin-left: auto; margin-right: 12px;
  color: rgba(201,116,68,.65);
  transition: color .25s, transform .25s;
  flex-shrink: 0; align-self: center;
}
.svc-glyph svg { width: 100%; height: 100%; display: block; }
.svc-card[data-cat="soft"] .svc-glyph { color: rgba(242,181,68,.85); }
.svc-card[data-cat="support"] .svc-glyph { color: rgba(92,153,153,.85); }
.svc-card.feat .svc-glyph,
.svc-card:hover .svc-glyph { color: rgba(255,255,255,.85); transform: scale(1.08); }
/* Lift svc content above the watermark so the bignum sits in the back */
.svc-card .svc-head,
.svc-card .svc-title,
.svc-card .svc-desc,
.svc-card .svc-arrow { position: relative; z-index: 1; }

/* Testimonials CTA + location refinements (override inline-style remnants) */
.tst-cta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; margin-top: 36px; flex-wrap: wrap;
}
.tst-cta p {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(22px, 2vw, 32px); max-width: 46ch;
  line-height: 1.0; text-transform: uppercase; letter-spacing: -0.005em;
}
.tst-cta em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--red); text-transform: none;
}
.loc-info-p { font-size: 15px; color: var(--muted); max-width: 54ch; line-height: 1.6; }
.loc-email { font-size: 17px; text-transform: none; letter-spacing: 0; }
.loc-hours { font-size: 17px; }

/* Replace the SVG placeholder map style with a real iframe-friendly container */
.loc-map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; display: block; z-index: 2;
  filter: saturate(.92) contrast(1.02);
}
.loc-map { background: var(--bg-deep); }

