/* ═════════════════════════════════════════════════════════════════════
   DR. NISHANT CHOVATIYA — EDITORIAL DENTAL PRACTICE
   Single-page brand site. Bone + ink, with a quiet champagne accent.
═══════════════════════════════════════════════════════════════════════ */

:root {
  --bone:        #F4EFE6;
  --bone-soft:   #EDE6D8;
  --ink:         #14110F;
  --ink-soft:    #2A2520;
  --char:        #3A332C;
  --mid:         #877966;
  --mid-soft:    #B6A892;
  --sand:        #C9A96E;       /* champagne accent, sparingly */
  --sand-deep:   #A6864F;
  --hair:        rgba(20,17,15,.12);
  --hair-strong: rgba(20,17,15,.28);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --max:    1440px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease:    cubic-bezier(.22,.61,.36,1);
  --ease-io: cubic-bezier(.65,0,.35,1);
}

* { box-sizing: border-box; }
*::selection { background: var(--ink); color: var(--bone); }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

html, body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* Subtle bone-grain texture (purely visual, single radial gradient) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at 18% 0%,  rgba(255,255,255,.42), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(135,121,102,.10), transparent 60%);
  mix-blend-mode: normal;
}

/* ─── tiny utility ────────────────────────────────────────────── */
.cap {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}
.rule {
  display: block;
  width: 56px; height: 1px;
  background: var(--ink);
  opacity: .5;
}
.serif { font-family: var(--serif); font-weight: 400; }

/* ════════════════════ NAV ════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .6s var(--ease), backdrop-filter .6s var(--ease), border-color .6s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(244,239,230,.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--hair);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.005em;
  color: var(--ink);
  white-space: nowrap;
}
.brand .mono {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mid);
  font-weight: 500;
}

.nav-menu {
  display: flex; align-items: center; gap: 36px;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .4s var(--ease);
}
.nav-menu a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .55s var(--ease);
}
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .4s var(--ease), color .4s var(--ease);
  font-family: var(--mono);
  font-weight: 500;
}
.nav-cta:hover { background: var(--ink); color: var(--bone); }

@media (max-width: 880px) {
  .nav-menu { display: none; }
  .nav { padding: 18px var(--gutter); }
}

/* ════════════════════ HERO ════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 140px var(--gutter) 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  isolation: isolate;
}

.hero-meta {
  position: absolute;
  top: 110px; right: var(--gutter);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid);
}
.hero-meta .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 4px rgba(201,169,110,.18);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1);   opacity: 1;   }
  50%     { transform: scale(1.4); opacity: .55; }
}

.hero-text { max-width: 720px; padding-bottom: 20px; }
.hero-eyebrow { margin: 0 0 28px; }
.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 9.4vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.012em;
  margin: 0 0 36px;
  color: var(--ink);
  text-wrap: balance;
}
.hero-headline .em {
  font-style: italic;
  font-weight: 300;
  color: var(--char);
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--char);
  max-width: 540px;
  margin: 0 0 56px;
}
.hero-cta-row {
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
}
.btn {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 1px solid var(--ink);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 12px;
  transition: background .45s var(--ease), color .45s var(--ease), padding .45s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--bone); padding-right: 32px; }
.btn .arrow {
  width: 18px; height: 1px; background: currentColor;
  position: relative;
  transition: width .45s var(--ease);
}
.btn .arrow::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { width: 26px; }
.link-quiet {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--char);
  border-bottom: 1px solid var(--hair-strong);
  padding-bottom: 4px;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.link-quiet:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* portrait card */
.hero-portrait {
  position: relative;
  align-self: stretch;
  margin-top: 60px;
}
.hero-portrait .frame {
  position: relative;
  width: 100%;
  height: clamp(440px, 72vh, 760px);
  overflow: hidden;
  background: var(--ink);
}
.hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 30% 30%;
  filter: contrast(1.02) saturate(0.95);
  transition: transform 1.6s var(--ease);
}
.hero-portrait:hover img { transform: scale(1.025); }

.hero-portrait .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,17,15,0.42));
  pointer-events: none;
}

.hero-portrait .corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--sand);
  pointer-events: none;
}
.hero-portrait .corner.tl { top: -1px; left: -1px;   border-right: none; border-bottom: none; }
.hero-portrait .corner.br { bottom: -1px; right: -1px; border-left:  none; border-top:    none; }

.hero-portrait .caption {
  position: absolute;
  left: 0; bottom: 0;
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 4px;
  color: var(--bone);
  font-family: var(--mono);
}
.hero-portrait .caption .who {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.78;
}
.hero-portrait .caption .name-it {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; letter-spacing: 0.005em;
  color: var(--bone);
}

.hero-portrait .frame-no {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,239,230,.72);
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 28px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mid);
}
.scroll-cue .line {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, var(--ink), transparent);
  position: relative;
}
.scroll-cue .line::after {
  content: ""; position: absolute; left: -10px; top: 0;
  width: 10px; height: 1px; background: var(--ink);
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: translateX(0);    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(64px); opacity: 0; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; gap: 40px; }
  .hero-portrait { margin-top: 0; }
  .hero-meta { display: none; }
  .scroll-cue { display: none; }
}

/* ════════════════════ MARQUEE / LOCKUP ════════════════════ */
.lockup {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bone-soft);
  position: relative;
  z-index: 2;
}
.lockup-track {
  display: flex; gap: 56px; align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.lockup-track span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--char);
  letter-spacing: 0.01em;
}
.lockup-track .sep {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sand);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ════════════════════ CHAPTER (generic editorial) ════════════════════ */
.chapter {
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.chapter-head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 56px);
  margin-bottom: clamp(40px, 6vh, 88px);
  align-items: baseline;
}
.chapter-no {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand-deep);
  padding-top: 10px;
}
.chapter-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.chapter-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--char);
}

/* ════════════════════ PHILOSOPHY ════════════════════ */
.philosophy-body {
  display: grid;
  grid-template-columns: 80px 1.1fr 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
}
.philosophy-body .cap-note { padding-top: 8px; }
.philosophy-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.philosophy-quote em { font-style: italic; }

.philosophy-body .bio-eyebrow {
  padding-top: clamp(28px, 4vw, 48px);
  margin-top: clamp(20px, 2.6vw, 32px);
  border-top: 1px solid var(--hair);
}
.bio-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.5;
  color: var(--char);
  letter-spacing: 0.002em;
  margin: clamp(20px, 2.6vw, 32px) 0 0;
  padding-top: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--hair);
  max-width: 60ch;
}
.bio-quote em { font-style: italic; color: var(--ink); }

@media (max-width: 880px) {
  .philosophy-body .bio-eyebrow {
    padding-top: 28px;
    margin-top: 12px;
  }
  .bio-quote {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 0;
    font-size: 17px;
    line-height: 1.55;
  }
}
.philosophy-aside {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--char);
  max-width: 46ch;
}
.philosophy-aside p + p { margin-top: 1.1em; }

@media (max-width: 880px) {
  .chapter-head { grid-template-columns: 1fr; gap: 16px; }
  .philosophy-body { grid-template-columns: 1fr; gap: 32px; }
}

/* ════════════════════ TRAINING GRID ════════════════════ */
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
}
.training-card {
  padding: 40px 36px 56px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.training-card:last-child { border-right: none; }
.training-card .deg {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 18px;
}
.training-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}
.training-card .place {
  font-size: 14px;
  color: var(--mid);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.training-card .focus {
  font-size: 15px;
  line-height: 1.7;
  color: var(--char);
  font-weight: 300;
  max-width: 36ch;
}
.training-card .yr {
  position: absolute;
  top: 36px; right: 36px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mid-soft);
}

@media (max-width: 980px) {
  .training-grid { grid-template-columns: 1fr; }
  .training-card { border-right: none; }
}

/* ════════════════════ SPLIT (used by specialties / technology) ════════════════════ */
.split {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
}
.split .cap-note { padding-top: 8px; }

.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
  transition: padding-left .55s var(--ease);
}
.spec-list li:hover { padding-left: 8px; }
.spec-list .num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; color: var(--mid);
}
.spec-list .name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.spec-list .desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--char);
  letter-spacing: 0.005em;
  font-style: italic;
}

.spec-aside {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--char);
}
.spec-aside p + p { margin-top: 1em; }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .spec-list .name { font-size: 22px; }
}

/* ════════════════════ TECHNOLOGY ════════════════════ */
.tech-section { background: var(--ink); color: var(--bone); position: relative; z-index: 2; }
.tech-section .chapter-no  { color: var(--sand); }
.tech-section .chapter-title { color: var(--bone); }
.tech-section .chapter-title em { color: var(--mid-soft); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244,239,230,0.10);
}
.tech-card {
  padding: 40px 32px 56px;
  border-right: 1px solid rgba(244,239,230,0.10);
  border-bottom: 1px solid rgba(244,239,230,0.10);
}
.tech-card:last-child { border-right: none; }
.tech-card .label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
}
.tech-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--bone);
}
.tech-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244,239,230,.74);
  margin: 0;
  max-width: 34ch;
  font-weight: 300;
}
.tech-after {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
  padding: 36px 0 0;
  flex-wrap: wrap;
}
.tech-after p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(244,239,230,.85);
  margin: 0;
  max-width: 64ch;
}
.tech-after .cap-light {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand);
}

@media (max-width: 980px) {
  .tech-grid { grid-template-columns: 1fr; }
  .tech-card { border-right: none; }
}

/* ════════════════════ SELECTED WORK ════════════════════ */
.work-intro {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--char);
  max-width: 60ch;
  margin: 0 0 clamp(40px, 6vh, 72px) 80px;
}
@media (max-width: 880px) { .work-intro { margin-left: 0; } }

.work-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 0 clamp(40px, 6vh, 80px);
  padding: 0;
}
.work-pair .shot {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  aspect-ratio: 3 / 2;
}
.work-pair .shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.6s var(--ease);
}
.work-pair:hover .shot img { transform: scale(1.02); }
.work-pair .shot .badge {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bone);
  padding: 6px 10px;
  background: rgba(20,17,15,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.work-caption {
  grid-column: 1 / -1;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
  margin-top: 4px;
  flex-wrap: wrap;
}
.work-caption .lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink);
  margin: 0;
  max-width: 56ch;
}
.work-caption .meta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .work-pair { grid-template-columns: 1fr; gap: 4px; }
  .work-pair .shot { aspect-ratio: 3 / 2; }
}

.work-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin: clamp(60px, 8vh, 100px) 0 clamp(40px, 6vh, 80px);
  padding: 0;
}
.work-feature .shot {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 10;
}
.work-feature .shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.6s var(--ease);
}
.work-feature:hover .shot img { transform: scale(1.025); }
.work-feature .text {
  padding-bottom: 8px;
  display: flex; flex-direction: column; gap: 14px;
}
.work-feature .text .cap-mini {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand-deep);
}
.work-feature .text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.work-feature .text p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--char);
  font-weight: 300;
  margin: 0;
  max-width: 38ch;
}

@media (max-width: 880px) {
  .work-feature { grid-template-columns: 1fr; gap: 24px; }
  .work-feature .text { order: 2; }
}

/* bare variant — image alone, no side text */
.work-feature--bare {
  grid-template-columns: 1fr;
}
.work-feature--bare .shot {
  aspect-ratio: 16 / 9;
}

.work-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 0 0 clamp(20px, 3vh, 40px);
}
.work-strip .shot {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  aspect-ratio: 4 / 5;
}
.work-strip .shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.6s var(--ease);
}
.work-strip .shot:hover img { transform: scale(1.04); }
.work-strip .shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(20,17,15,.78));
  color: var(--bone);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.work-strip .shot:hover figcaption { opacity: 1; transform: none; }

@media (max-width: 720px) {
  .work-strip { grid-template-columns: 1fr; }
  .work-strip .shot { aspect-ratio: 4 / 3; }
  .work-strip .shot figcaption { opacity: 1; transform: none; }
}

.work-foot {
  margin-top: clamp(36px, 5vh, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--hair);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid);
}
.work-foot em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--char);
}

/* ── treatment sub-section header ─────────────────────────────── */
.work-section {
  margin-top: clamp(56px, 8vh, 104px);
}
.work-section:first-of-type {
  margin-top: clamp(8px, 2vh, 24px);
}
.work-cat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: baseline;
  margin: 0 0 clamp(28px, 4vh, 48px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hair);
}
.work-cat .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand-deep);
}
.work-cat h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.work-cat h3 em {
  font-style: italic;
  color: var(--char);
}
.work-cat .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .work-cat { grid-template-columns: 1fr; gap: 8px; }
  .work-cat .meta { white-space: normal; }
}

/* ── tight dense procedure grid (4-up on desktop) ─────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 0 0 clamp(20px, 3vh, 36px);
}
.work-grid .shot {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  aspect-ratio: 1 / 1;
  margin: 0;
}
.work-grid .shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.6s var(--ease);
}
.work-grid .shot:hover img { transform: scale(1.04); }
.work-grid .shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(20,17,15,.78));
  color: var(--bone);
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.work-grid .shot:hover figcaption { opacity: 1; transform: none; }
@media (max-width: 980px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid .shot figcaption { opacity: 1; transform: none; }
}

/* keep clinical photos truly as-shot — no render-time filters */
.work-feature .shot img,
.work-strip .shot img,
.work-grid .shot img {
  filter: none;
}

/* ════════════════════ PRACTICE / CONTACT ════════════════════ */
.practice-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.practice-card {
  padding: 0;
}
.practice-card .place {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 0 0 18px;
}
.practice-card .place em { font-style: italic; color: var(--char); }
.practice-card .body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--char);
  font-weight: 300;
  max-width: 50ch;
  margin: 0 0 32px;
}

.practice-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hair);
}
.practice-meta .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}
.practice-meta .row .lbl {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid);
}
.practice-meta .row .val {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--ink);
  letter-spacing: 0.002em;
}
.practice-meta .row .val a {
  border-bottom: 1px solid var(--hair-strong);
  padding-bottom: 2px;
  transition: border-color .35s var(--ease);
}
.practice-meta .row .val a:hover { border-bottom-color: var(--ink); }

.practice-meta .hours-row { align-items: start; }
.practice-meta .hours-row .val.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 28px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.4;
}
.practice-meta .hours-row .val.hours .d { color: var(--mid); white-space: nowrap; }
.practice-meta .hours-row .val.hours .t {
  color: var(--ink);
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.practice-meta .row .val .rating {
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: 0.01em;
}
.practice-meta .row .val .rating .star {
  color: var(--sand-deep);
  font-size: 0.92em;
  margin-left: 1px;
}

.practice-cta-row {
  margin-top: 32px;
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
}

@media (max-width: 980px) {
  .practice-grid { grid-template-columns: 1fr; }
}

/* ════════════════════ FOOTER ════════════════════ */
footer {
  border-top: 1px solid var(--hair);
  padding: 56px var(--gutter) 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: end;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid);
}
footer .ft-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .ft-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.005em;
  text-transform: none;
}
footer .ft-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}
footer .ft-social svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
footer .ft-center {
  text-align: center;
}
footer .ft-right {
  text-align: right;
}
footer a { color: inherit; transition: color .35s var(--ease); }
footer a:hover { color: var(--ink); }

@media (max-width: 720px) {
  footer { grid-template-columns: 1fr; text-align: left; gap: 8px; }
  footer .ft-center, footer .ft-right { text-align: left; }
}

/* ════════════════════ REVEAL MOTION ════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-line {
  display: inline-block;
  position: relative;
}
.reveal-line::after {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 100%;
  background: var(--bone);
  transform-origin: right center;
  transition: transform 1.2s var(--ease) .15s;
}
.reveal-line.is-in::after { transform: scaleX(0); }

/* fixed side rail for chapter dot */
.side-rail {
  position: fixed;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex; flex-direction: column; gap: 14px;
  pointer-events: none;
}
.side-rail .tick {
  width: 14px; height: 1px;
  background: var(--ink-soft);
  opacity: .35;
  transition: width .55s var(--ease), opacity .55s var(--ease), background .4s var(--ease);
}
.side-rail .tick.active {
  width: 32px;
  opacity: 1;
  background: var(--sand-deep);
}
@media (max-width: 980px) { .side-rail { display: none; } }
.tech-section ~ .side-rail .tick.active { background: var(--sand); }

/* progress hairline */
.progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 1px;
  background: var(--ink);
  z-index: 60;
  transition: width .15s linear;
}

/* ───────────────── RESPONSIVE TWEAKS ───────────────── */
@media (max-width: 600px) {
  .hero { padding-top: 110px; }
  .hero-headline { font-size: clamp(48px, 14vw, 96px); }
  .nav-cta { padding: 8px 14px; font-size: 11px; }
  .lockup-track span { font-size: 18px; }
}

/* ═════════════════════════════════════════════════════════════════
   LANDING PAGE — page hero, prose, FAQ, related, breadcrumb
═════════════════════════════════════════════════════════════════ */

/* breadcrumbs */
.crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 110px var(--gutter) 0;
  max-width: var(--max);
  margin: 0 auto;
}
.crumbs a { color: var(--mid); border-bottom: 1px solid transparent; transition: color .35s var(--ease), border-color .35s var(--ease); }
.crumbs a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.crumbs .sep { margin: 0 12px; color: var(--mid-soft); }
.crumbs .here { color: var(--ink); }

/* page hero — two-column editorial header */
.page-hero {
  padding: clamp(40px, 6vh, 80px) var(--gutter) clamp(40px, 6vh, 80px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: end;
  position: relative;
}
.page-hero .eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-deep);
  padding-top: 8px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: balance;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--char);
}
.page-hero .lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  color: var(--char);
  max-width: 56ch;
  margin: 0 0 32px;
}
.page-hero .meta-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.page-hero .meta-row strong {
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 880px) {
  .page-hero { grid-template-columns: 1fr; gap: 16px; padding-top: 32px; }
  .crumbs { padding-top: 100px; }
}

/* hero shot below page-hero */
.hero-shot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero-shot .frame {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  aspect-ratio: 16 / 9;
}
.hero-shot .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* editorial prose blocks */
.prose-block {
  padding: clamp(60px, 8vh, 120px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.prose-grid {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
}
.prose-grid .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-deep);
  padding-top: 8px;
}
.prose-grid h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.prose-grid h2 em { font-style: italic; font-weight: 300; color: var(--char); }
.prose-grid .body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--char);
  font-weight: 300;
  margin: 0 0 1.1em;
  max-width: 56ch;
}
.prose-grid .body p:last-child { margin-bottom: 0; }
.prose-grid .body p strong { color: var(--ink); font-weight: 500; }
.prose-grid .body a {
  color: var(--ink);
  border-bottom: 1px solid var(--hair-strong);
  transition: border-color .35s var(--ease);
}
.prose-grid .body a:hover { border-bottom-color: var(--ink); }

@media (max-width: 880px) {
  .prose-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* method list (numbered protocol, editorial) */
.method-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--hair);
}
.method-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
  transition: padding-left .55s var(--ease);
}
.method-list li:hover { padding-left: 8px; }
.method-list .step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mid);
}
.method-list .what {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.method-list .why {
  font-size: 14px;
  line-height: 1.65;
  color: var(--char);
  font-weight: 300;
  margin: 6px 0 0;
  font-style: italic;
}

/* FAQ — disclosure rows */
.faq {
  padding: clamp(60px, 8vh, 120px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--hair);
}
.faq-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
}
.faq h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.faq h2 em { font-style: italic; color: var(--char); }
.faq .list { margin-top: 8px; }
.faq details {
  border-top: 1px solid var(--hair);
  padding: 22px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--hair); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.35;
  color: var(--ink);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
  position: relative;
  padding-right: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 300;
  color: var(--mid);
  transition: transform .4s var(--ease), color .4s var(--ease);
}
.faq details[open] summary::after { content: "−"; color: var(--ink); }
.faq details > div {
  padding: 16px 24px 4px 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--char);
  font-weight: 300;
  max-width: 64ch;
}
.faq details > div p { margin: 0 0 1em; }
.faq details > div p:last-child { margin: 0; }
@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* related — service link grid */
.related {
  padding: clamp(60px, 8vh, 120px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--hair);
}
.related h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  margin: 0 0 36px;
  color: var(--ink);
  text-wrap: balance;
}
.related h2 em { font-style: italic; color: var(--char); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
}
.related-grid a {
  display: block;
  padding: 28px 24px 36px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  transition: background .4s var(--ease);
}
.related-grid a:last-child { border-right: none; }
.related-grid a:hover { background: var(--bone-soft); }
.related-grid .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 12px;
}
.related-grid .ttl {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.related-grid .ttl em { font-style: italic; color: var(--char); }
@media (max-width: 980px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } .related-grid a { border-right: none; } }

/* CTA strip */
.cta-strip {
  padding: clamp(60px, 8vh, 100px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--hair);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
}
.cta-strip .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-deep);
}
.cta-strip h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.cta-strip h2 em { font-style: italic; color: var(--char); }
.cta-strip .actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 880px) {
  .cta-strip { grid-template-columns: 1fr; gap: 20px; }
  .cta-strip .actions { width: 100%; }
}

/* gallery — re-uses .work-grid base; no overrides needed */

/* ═════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION — ≤ 760px (phones)
   Touch targets, typography, spacing, image sizing, button stacking.
   No content changes. CSS-only adjustments.
═════════════════════════════════════════════════════════════════ */

/* Prevent iOS Safari's text size auto-adjustment on rotate */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Stop horizontal scroll caused by any overflowing element */
html, body { max-width: 100vw; }

/* iOS zoom prevention — body default is 16px, so already safe.
   Just enforce on form inputs (none currently, but futureproof). */
input, select, textarea, button { font-size: max(16px, 1em); }

/* ─────────────────── ≤ 760px (general mobile) ─────────────────── */
@media (max-width: 760px) {
  :root {
    --gutter: 22px;
  }

  /* Long-word breaking so giant serif words never overflow narrow viewports */
  .hero-headline,
  .chapter-title,
  .page-hero h1,
  .prose-grid h2,
  .faq h2,
  .related h2,
  .cta-strip h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  /* Body paragraphs read better with slightly tighter line-height on phones */
  .philosophy-aside,
  .spec-aside,
  .work-feature .text p,
  .prose-grid .body p,
  .faq details > div {
    line-height: 1.65;
  }

  /* ── Nav: tighter, ensure tap target ≥ 44px ─────────────── */
  .nav { padding: 14px var(--gutter); }
  .nav.is-scrolled { padding: 10px var(--gutter); }
  .brand { font-size: 19px; gap: 8px; }
  .brand .mono { font-size: 9px; letter-spacing: 0.2em; }
  .nav-cta {
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* ── Hero ─────────────────────────────────────────────── */
  .hero {
    padding: 96px var(--gutter) 40px;
    gap: 28px;
  }
  .hero-eyebrow { margin-bottom: 18px; font-size: 10px; letter-spacing: 0.2em; }
  .hero-headline {
    font-size: clamp(44px, 13vw, 72px);
    line-height: 0.96;
    margin-bottom: 24px;
  }
  .hero-sub {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 32px;
  }
  .hero-cta-row { gap: 16px; flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn {
    justify-content: center;
    width: 100%;
    padding: 16px 18px;
  }
  .hero-cta-row .link-quiet {
    align-self: flex-start;
    margin-top: 4px;
  }

  /* Hero portrait: shorter on phones so it doesn't dominate the viewport */
  .hero-portrait .frame {
    height: clamp(360px, 60vh, 520px);
  }
  .hero-portrait .caption { padding: 14px 16px; }
  .hero-portrait .caption .name-it { font-size: 19px; }

  /* ── Marquee: tighter spacing, smaller dots ─────────────── */
  .lockup { padding: 16px 0; }
  .lockup-track { gap: 32px; }
  .lockup-track span { font-size: 17px; }
  .lockup-track .sep { width: 4px; height: 4px; }

  /* ── Chapter sections: tighter vertical rhythm ──────────── */
  .chapter { padding: 64px var(--gutter); }
  .chapter-head { gap: 12px; margin-bottom: 32px; }
  .chapter-no { padding-top: 0; font-size: 11px; }
  .chapter-title { font-size: clamp(30px, 7.6vw, 44px); }

  /* Philosophy quote: scale down on phones */
  .philosophy-quote { font-size: clamp(22px, 5.6vw, 28px); line-height: 1.34; }

  /* ── Training cards: less padding, single-column already ─ */
  .training-card { padding: 28px 22px 36px; }
  .training-card .yr { top: 24px; right: 22px; }
  .training-card h3 { font-size: 22px; }

  /* ── Specialties / split sections ──────────────────────── */
  .spec-list li { padding: 18px 0; gap: 12px; grid-template-columns: 24px 1fr; }
  .spec-list .name { font-size: 20px; line-height: 1.25; gap: 10px; }
  .spec-list .desc { font-size: 13px; }

  /* ── Tech section: lighter padding ─────────────────────── */
  .tech-card { padding: 28px 22px 36px; }
  .tech-card h3 { font-size: 22px; }

  /* ── Work pair / strip / grid: gap & captions ──────────── */
  .work-pair { gap: 6px; }
  .work-pair .shot .badge { top: 12px; left: 12px; padding: 5px 8px; font-size: 9px; }
  .work-caption { padding-top: 14px; }
  .work-caption .lede { font-size: 16px; }

  .work-feature { margin: 56px 0 32px; gap: 18px; }
  .work-feature .text h3 { font-size: 22px; }

  .work-strip .shot { aspect-ratio: 4 / 3; }
  .work-strip .shot figcaption { padding: 12px 14px; font-size: 9px; }

  /* Treatment work-grid: 2 columns, slightly tighter gap */
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  .work-cat { padding-bottom: 12px; margin-bottom: 24px; }
  .work-cat h3 { font-size: 22px; }
  .work-cat .meta { font-size: 9px; letter-spacing: 0.22em; }

  .work-foot { padding-top: 18px; gap: 14px; }
  .work-foot em { font-size: 15px; }

  /* ── Practice / contact ────────────────────────────────── */
  .practice-card .place { font-size: 28px; line-height: 1.18; }
  .practice-card .body { font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
  .practice-meta .row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
  .practice-meta .row .lbl { font-size: 10px; }
  .practice-meta .row .val { font-size: 17px; }
  .practice-cta-row { gap: 14px; flex-direction: column; align-items: stretch; }
  .practice-cta-row .btn { justify-content: center; width: 100%; }

  /* ── Footer: single column already at 720px, tighten ──── */
  footer {
    padding: 36px var(--gutter) 28px;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  footer .ft-mark { font-size: 17px; }

  /* ═════════════════ LANDING PAGES (mobile) ═════════════════ */

  /* Crumbs — pull tighter to nav */
  .crumbs { padding-top: 84px; font-size: 10px; letter-spacing: 0.16em; }
  .crumbs .sep { margin: 0 8px; }

  /* Page hero on landing pages */
  .page-hero { padding: 24px var(--gutter) 36px; gap: 14px; }
  .page-hero .eyebrow { padding-top: 0; font-size: 11px; }
  .page-hero h1 {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 0.98;
    margin-bottom: 20px;
  }
  .page-hero .lede {
    font-size: 18px;
    line-height: 1.42;
    margin-bottom: 22px;
  }
  .page-hero .meta-row {
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  /* Hero shot — taller aspect on mobile (vertical phone ergonomics) */
  .hero-shot .frame { aspect-ratio: 4 / 3; }

  /* Prose blocks */
  .prose-block { padding: 56px var(--gutter); }
  .prose-grid { gap: 18px; }
  .prose-grid .num { padding-top: 0; font-size: 11px; }
  .prose-grid h2 {
    font-size: clamp(28px, 7.4vw, 40px);
    margin-bottom: 18px;
  }
  .prose-grid .body p { font-size: 15px; line-height: 1.72; }

  /* Method list — slightly larger step number, tighter padding */
  .method-list li { grid-template-columns: 28px 1fr; gap: 14px; padding: 18px 0; }
  .method-list .step { font-size: 10px; }
  .method-list .what { font-size: 17px; line-height: 1.32; }
  .method-list .why { font-size: 13px; line-height: 1.6; margin-top: 4px; }

  /* FAQ — bigger tap target on summary */
  .faq { padding: 56px var(--gutter); }
  .faq-grid { gap: 22px; }
  .faq h2 { font-size: clamp(26px, 7.4vw, 36px); }
  .faq details { padding: 18px 0; }
  .faq summary {
    font-size: 17px;
    line-height: 1.32;
    padding: 6px 24px 6px 0;
    min-height: 44px;
    align-items: center;
  }
  .faq summary::after { font-size: 18px; }
  .faq details > div { padding: 12px 0 4px; font-size: 14.5px; line-height: 1.7; }

  /* Related-grid — single column, full-width tap rows */
  .related { padding: 56px var(--gutter); }
  .related h2 {
    font-size: clamp(26px, 7.4vw, 36px);
    margin-bottom: 24px;
  }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a { padding: 22px var(--gutter) 26px; border-right: none; }
  .related-grid .ttl { font-size: 20px; }

  /* CTA strip — stacks, full-width primary */
  .cta-strip {
    padding: 48px var(--gutter);
    gap: 18px;
    grid-template-columns: 1fr;
  }
  .cta-strip .lbl { font-size: 11px; }
  .cta-strip h2 { font-size: clamp(26px, 7.4vw, 36px); }
  .cta-strip .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
  }
  .cta-strip .actions .btn {
    justify-content: center;
    width: 100%;
    padding: 16px 18px;
  }
  .cta-strip .actions .link-quiet {
    align-self: center;
    text-align: center;
    padding: 8px 0;
  }

  /* Buttons (universal): minimum 44px, no shrink-on-hover-padding (no hover on mobile) */
  .btn { min-height: 44px; }
  .btn:hover { padding-right: 18px; }
  .btn:hover .arrow { width: 18px; }
}

/* ─────────────────── ≤ 380px (small phones) ─────────────────── */
@media (max-width: 380px) {
  :root { --gutter: 18px; }

  .hero { padding-top: 88px; }
  .hero-headline { font-size: clamp(40px, 12.5vw, 60px); }
  .hero-sub { font-size: 16px; }

  .chapter { padding: 56px var(--gutter); }
  .chapter-title { font-size: clamp(28px, 7.6vw, 40px); }

  .page-hero h1 { font-size: clamp(36px, 10.4vw, 56px); }
  .page-hero .lede { font-size: 17px; }

  .lockup-track span { font-size: 16px; }
  .lockup-track { gap: 24px; }

  .nav { padding: 12px var(--gutter); }
  .brand { font-size: 18px; }
  .nav-cta { padding: 11px 12px; font-size: 10px; letter-spacing: 0.1em; }

  .training-card,
  .tech-card { padding: 24px 18px 30px; }

  .work-grid { gap: 4px; }
}

/* ─────────────────── Reduced-motion respect ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-portrait img,
  .work-pair .shot img,
  .work-feature .shot img,
  .work-strip .shot img,
  .work-grid .shot img { transition: none; }
  .lockup-track { animation: none; }
}

/* ═════════════════════════════════════════════════════════════════
   STICKY MOBILE CTA BAR — Schedule + Call (≤ 760px)
   Injected by site.js. Hidden on desktop. Slides up after scroll.
═════════════════════════════════════════════════════════════════ */
.cta-bar { display: none; }

@media (max-width: 760px) {
  .cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 80;
    display: flex;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(244, 239, 230, 0.92);
    -webkit-backdrop-filter: saturate(140%) blur(20px);
    backdrop-filter: saturate(140%) blur(20px);
    border-top: 1px solid var(--hair-strong);
    transform: translateY(110%);
    transition: transform .45s var(--ease);
    pointer-events: none;
  }
  .cta-bar.is-visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .cta-bar-btn {
    flex: 1 1 0;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    text-decoration: none;
    transition: opacity .2s var(--ease);
  }
  .cta-bar-btn.primary {
    background: var(--ink);
    color: var(--bone);
  }
  .cta-bar-btn:active { opacity: 0.72; }

  /* Reserve space at bottom of body so the footer/last content
     isn't covered by the bar */
  body.has-cta-bar {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

@media print {
  .cta-bar { display: none !important; }
  body.has-cta-bar { padding-bottom: 0 !important; }
}

/* ═════════════════════════════════════════════════════════════════
   PRACTICE MAP — embedded Google Maps, bone-toned editorial frame
═════════════════════════════════════════════════════════════════ */
.practice-map {
  margin: clamp(48px, 6vw, 96px) 0 0;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--hair);
}
.practice-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--mid-soft);
  border: 1px solid var(--hair-strong);
}
.practice-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.85) sepia(0.18) contrast(0.92) brightness(1.04);
  pointer-events: none;
  transition: filter .6s var(--ease);
}
.practice-map .map-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 18px 20px;
  text-decoration: none;
  z-index: 2;
}
.practice-map .map-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244,239,230,0) 65%, rgba(244,239,230,0.45) 100%);
  pointer-events: none;
  transition: opacity .5s var(--ease);
}
.practice-map .map-cta {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(244, 239, 230, 0.94);
  border: 1px solid var(--ink);
  padding: 10px 14px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.practice-map .map-cover:hover .map-cta {
  background: var(--ink);
  color: var(--bone);
}
.practice-map:hover iframe {
  filter: grayscale(0.65) sepia(0.10) contrast(0.96) brightness(1.02);
}

.practice-map-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}

@media (max-width: 760px) {
  .practice-map-frame { aspect-ratio: 4 / 3; }
  .practice-map .map-cta {
    font-size: 10px;
    padding: 9px 12px;
    letter-spacing: 0.14em;
  }
  .practice-map .map-cover { padding: 14px 14px; }
  .practice-map-caption {
    font-size: 10px;
    letter-spacing: 0.18em;
    flex-wrap: wrap;
  }
}

/* ═════════════════════════════════════════════════════════════════
   404 — quiet editorial fallback
═════════════════════════════════════════════════════════════════ */
.not-found-main {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
}
.not-found {
  width: 100%;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
}
.not-found-inner {
  max-width: 720px;
  margin: 0 auto;
}
.not-found-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 18px 0 22px;
  color: var(--ink);
}
.not-found-title em {
  font-style: italic;
  color: var(--ink);
}
.not-found-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--mid);
  max-width: 560px;
  margin: 0 0 56px;
}
.not-found-paths {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hair);
}
.not-found-link {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 28px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
  text-decoration: none;
  transition: background .35s var(--ease);
}
.not-found-link:hover {
  background: rgba(28, 28, 28, 0.025);
}
.not-found-link .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}
.not-found-link .val {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink);
}
.not-found-link .arrow {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  position: relative;
  align-self: center;
  transition: width .35s var(--ease);
}
.not-found-link .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  transform: rotate(45deg);
}
.not-found-link:hover .arrow { width: 36px; }

@media (max-width: 760px) {
  .not-found-link {
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    padding: 18px 0;
  }
  .not-found-link .lbl { grid-column: 1 / -1; font-size: 10px; }
  .not-found-link .val { font-size: 17px; }
  .not-found-link .arrow { align-self: end; }
}

/* ═════════════════════════════════════════════════════════════════
   INTERNAL LINKS — quiet hairline treatments
═════════════════════════════════════════════════════════════════ */

/* Scope-of-care list: subtle hairline under linked names */
.spec-list li.has-link .name {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), color .35s var(--ease);
}
.spec-list li.has-link:hover .name {
  border-bottom-color: var(--hair-strong);
}
.spec-list li.has-link .name .desc { border-bottom: 0; }

/* Work-cat heading link: quiet — same color, subtle hairline */
.work-cat h3 .cat-link {
  color: inherit;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .35s var(--ease);
}
.work-cat h3 .cat-link:hover {
  border-bottom-color: var(--hair-strong);
}

/* ═════════════════════════════════════════════════════════════════
   INDEX BAND — quiet site index before footer
═════════════════════════════════════════════════════════════════ */
.index-band {
  padding: clamp(72px, 10vw, 140px) var(--gutter);
  border-top: 1px solid var(--hair);
  background: var(--bone);
}
.index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: 1280px;
  margin: 0 auto;
}
.index-col { display: flex; flex-direction: column; gap: 22px; }
.index-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0 0 6px;
}
.index-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hair);
}
.index-list li {
  border-bottom: 1px solid var(--hair);
}
.index-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink);
  text-decoration: none;
  transition: padding .35s var(--ease), color .35s var(--ease);
}
.index-list a::after {
  content: "↗";
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mid);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), color .35s var(--ease);
}
.index-list a:hover {
  padding-left: 6px;
}
.index-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--ink);
}
.index-foot {
  margin: 8px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .index-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .index-list a { font-size: 17px; padding: 14px 0; }
}

/* ═════════════════════════════════════════════════════════════════
   HERO RATING — quiet social proof chip below the CTA row
═════════════════════════════════════════════════════════════════ */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 6px 0;
  text-decoration: none;
  color: var(--mid);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: color .35s var(--ease);
  flex-wrap: wrap;
  width: fit-content;
}
.hero-rating .rating-num {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0;
  color: var(--ink);
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.hero-rating .rating-star {
  color: var(--sand-deep);
  font-size: 16px;
  margin-right: 2px;
  margin-top: -2px;
}
.hero-rating .rating-sep {
  color: var(--mid);
  margin: 0 2px;
}
.hero-rating .rating-lbl {
  text-transform: uppercase;
  color: var(--mid);
  letter-spacing: 0.18em;
  font-size: 10.5px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .35s var(--ease), color .35s var(--ease);
}
.hero-rating .rating-arr {
  color: var(--mid);
  font-size: 11px;
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.hero-rating:hover { color: var(--ink); }
.hero-rating:hover .rating-lbl {
  border-bottom-color: var(--hair-strong);
  color: var(--ink);
}
.hero-rating:hover .rating-arr {
  color: var(--ink);
  transform: translate(2px, -2px);
}

@media (max-width: 760px) {
  .hero-rating { margin-top: 22px; gap: 6px; }
  .hero-rating .rating-num { font-size: 17px; }
  .hero-rating .rating-star { font-size: 14px; }
  .hero-rating .rating-lbl { font-size: 10px; letter-spacing: 0.15em; }
}

/* ═════════════════════════════════════════════════════════════════
   VOICES — patient testimonials, editorial pull-quotes
═════════════════════════════════════════════════════════════════ */
.voices-band {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  border-top: 1px solid var(--hair);
  position: relative;
}
.voices-head {
  max-width: 1280px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: baseline;
}
.voices-head .cap { padding-top: 8px; }
.voices-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.voices-title em { font-style: italic; }

.voices-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 64px);
}

.voice {
  margin: 0;
  position: relative;
  padding-top: 56px;
  border-top: 1px solid var(--hair);
}
.voice::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  left: -2px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--sand-deep);
  pointer-events: none;
}
.voice blockquote { margin: 0; }
.voice blockquote p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.42;
  letter-spacing: 0.002em;
  color: var(--ink);
  margin: 0 0 28px;
}
.voice blockquote p em {
  font-style: italic;
  color: var(--ink);
}
.voice figcaption {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.voice .voice-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.voice .voice-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}

.voices-foot {
  max-width: 1280px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  text-align: center;
}
.voices-foot a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--hair-strong);
  padding-bottom: 4px;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.voices-foot a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

@media (max-width: 980px) {
  .voices-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .voice { padding-top: 48px; }
  .voice::before { font-size: 56px; top: 8px; }
  .voice blockquote p { font-size: 19px; line-height: 1.45; }
}
@media (max-width: 760px) {
  .voices-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ═════════════════════════════════════════════════════════════════
   FIRST VISIT — 4-step process strip
═════════════════════════════════════════════════════════════════ */
.first-visit {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  border-top: 1px solid var(--hair);
}
.first-visit-head {
  max-width: 1280px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: baseline;
}
.first-visit-head .cap { padding-top: 8px; }
.first-visit-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.first-visit-title em { font-style: italic; }

.first-visit-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 56px);
}
.step {
  border-top: 1px solid var(--hair-strong);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mid);
}
.step-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.step-body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.5;
  color: var(--char);
  margin: 0;
}

@media (max-width: 980px) {
  .first-visit-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }
}
@media (max-width: 600px) {
  .first-visit-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .first-visit-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .step { padding-top: 22px; }
  .step-title { font-size: 22px; }
  .step-body { font-size: 16px; }
}

/* ═════════════════════════════════════════════════════════════════
   INSTAGRAM — quiet "follow along" panel
═════════════════════════════════════════════════════════════════ */
.ig-panel {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  border-top: 1px solid var(--hair);
}
.ig-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 56px);
  background: var(--ink);
  color: var(--bone);
  text-decoration: none;
  position: relative;
  transition: background .45s var(--ease);
}
.ig-card:hover { background: #0e0e0e; }

.ig-card-l { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.ig-card .ig-eyebrow {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.22em;
}
.ig-card .ig-handle {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.0;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--bone);
}
.ig-card .ig-handle em {
  font-style: italic;
}
.ig-card .ig-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0 0;
  max-width: 48ch;
}

.ig-card-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.ig-glyph {
  width: 36px; height: 36px;
  fill: none; stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .35s var(--ease);
}
.ig-glyph line { stroke-width: 2.4; }
.ig-card:hover .ig-glyph { stroke: var(--bone); }
.ig-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .35s var(--ease);
}
.ig-card:hover .ig-cta { border-bottom-color: var(--bone); }
.ig-cta .arr {
  display: inline-block;
  font-size: 12px;
  transition: transform .35s var(--ease);
}
.ig-card:hover .ig-cta .arr { transform: translate(2px, -2px); }

@media (max-width: 760px) {
  .ig-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
  }
  .ig-card-r {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .ig-card .ig-handle { font-size: 36px; }
  .ig-card .ig-sub { font-size: 15px; }
}

/* ════════════════════ skip-to-content (a11y) ════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone, #f4efe6);
  background: var(--ink, #0f0f0f);
  border: 1px solid var(--ink, #0f0f0f);
  border-radius: 2px;
  text-decoration: none;
  transition: top .25s var(--ease, cubic-bezier(.22,1,.36,1));
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
  outline: 2px solid var(--champagne, #c9a96b);
  outline-offset: 3px;
}
