/* ============================================================
   SHAMARDI DENTAL — Editorial Luxury System
   ============================================================ */

:root {
  --ivory: #f6f1ea;
  --ivory-deep: #efe7d8;
  --cream: #ebe2d2;
  --blush: #ebd6cc;
  --blush-deep: #e0c1b3;
  --champagne: #c9ae82;
  --champagne-soft: #ddc7a5;
  --crimson: #a23e3b;
  --crimson-deep: #7e2b29;
  --charcoal: #262320;
  --ink: #1a1816;
  --warm-gray: #7a7066;
  --warm-gray-light: #a89e92;
  --line: rgba(38, 35, 32, 0.14);
  --line-soft: rgba(38, 35, 32, 0.08);

  --serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quiet: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--charcoal); color: var(--ivory); }

/* ---------- Typography primitives ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--crimson);
  margin: 0 0.8em 0.15em 0;
  vertical-align: middle;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 300; color: var(--crimson); letter-spacing: -0.01em; }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.4;
  color: var(--charcoal);
  text-wrap: pretty;
}

.body-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  text-wrap: pretty;
}
.body-text--muted { color: var(--warm-gray); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.container--narrow { max-width: 1100px; }

section { position: relative; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--ease-luxe), transform 1.2s var(--ease-luxe);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line {
  overflow: hidden;
  display: block;
}
.reveal-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease-luxe);
  transition-delay: var(--reveal-delay, 0ms);
}
.in .reveal-line > span,
.reveal-line.in > span { transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px clamp(24px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.6s var(--ease-luxe), padding 0.6s var(--ease-luxe), border-color 0.6s var(--ease-luxe), box-shadow 0.6s var(--ease-luxe);
  background: rgba(246, 241, 234, 0.72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--line-soft);
}
.nav.scrolled {
  background: rgba(246, 241, 234, 0.92);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(38, 35, 32, 0.18);
}
.nav__brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav__brand img {
  height: 44px;
  width: auto;
  transition: opacity 0.4s var(--ease-luxe), height 0.4s var(--ease-luxe);
}
.nav__brand:hover img { opacity: 0.78; }
.nav.scrolled .nav__brand img { height: 36px; }
@media (max-width: 640px) {
  .nav__brand img { height: 36px; }
  .nav.scrolled .nav__brand img { height: 30px; }
}

.nav__links {
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav__links a {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-luxe);
}
.nav__links a:hover { color: var(--crimson); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  color: var(--charcoal);
  transition: all 0.4s var(--ease-luxe);
  font-weight: 500;
}
.nav__cta:hover {
  background: var(--charcoal);
  color: var(--ivory);
}
.nav__cta .arrow { transition: transform 0.4s var(--ease-luxe); }
.nav__cta:hover .arrow { transform: translateX(4px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav__burger span {
  width: 22px; height: 1px;
  background: var(--charcoal);
  transition: all 0.4s var(--ease-luxe);
}
.nav.open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--ivory);
  padding: 110px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease-luxe);
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.mobile-menu a em { font-style: italic; color: var(--crimson); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 140px clamp(24px, 5vw, 80px) clamp(40px, 6vw, 80px);
  overflow: hidden;
  background: #f6f1ea;
}
.hero__newport {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}
.hero__wash {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(246, 241, 234, 0.35) 0%, rgba(246, 241, 234, 0.15) 30%, rgba(246, 241, 234, 0.5) 70%, rgba(236, 223, 202, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__inner,
.hero__base,
.hero__grain { z-index: 2; }

.hero__grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__watercolor-1 {
  position: absolute;
  right: -8%;
  top: 8%;
  width: 56%;
  max-width: 760px;
  opacity: 0.85;
  mix-blend-mode: multiply;
  filter: saturate(0.85) brightness(1.05);
}
.hero__watercolor-2 {
  position: absolute;
  left: -6%;
  bottom: -8%;
  width: 38%;
  max-width: 480px;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.hero__inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}

.hero__eyebrow-row {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
}
.hero__eyebrow-row .line {
  height: 1px;
  width: 60px;
  background: var(--charcoal);
  opacity: 0.4;
}

.hero h1.display {
  font-size: clamp(44px, 6.4vw, 108px);
  line-height: 0.98;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.hero h1.display .reveal-line { white-space: nowrap; }
@media (max-width: 720px) {
  .hero h1.display .reveal-line { white-space: normal; }
}
.hero h1.display .ital {
  font-style: italic;
  color: var(--crimson);
  display: block;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(8px, 2vw, 24px);
}
.hero__meta .lede {
  max-width: 380px;
  font-style: italic;
  color: var(--charcoal);
}
.hero__meta-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__location {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.hero__location .label { color: var(--warm-gray); display: block; margin-bottom: 6px; font-size: 10px; }
.hero__location .val { font-family: var(--serif); font-size: 18px; letter-spacing: 0; text-transform: none; font-style: italic; color: var(--ink); }

.hero__cta-group { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease-luxe);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.5s var(--ease-luxe); }
.btn:hover .arrow { transform: translateX(6px); }

.btn--primary {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn--primary:hover { background: var(--ink); transform: translateY(-1px); }

.btn--ghost {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn--ghost:hover { background: var(--charcoal); color: var(--ivory); }

.btn--crimson {
  background: var(--crimson);
  color: var(--ivory);
}
.btn--crimson:hover { background: var(--crimson-deep); transform: translateY(-1px); }

/* Hero bottom marquee */
.hero__base {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  right: clamp(24px, 5vw, 80px);
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  pointer-events: none;
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  pointer-events: auto;
}
.hero__scroll .bar {
  width: 1px; height: 32px;
  background: var(--charcoal);
  opacity: 0.5;
  transform-origin: top;
  animation: scrollPulse 2.4s var(--ease-luxe) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.2; }
  50% { transform: scaleY(1); opacity: 0.7; }
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: var(--ivory);
}
.ticker__track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 300;
  color: var(--ink);
}
.ticker__track span em { font-style: italic; color: var(--crimson); }
.ticker__track .sep { color: var(--champagne); font-style: italic; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   PHILOSOPHY / INTRO
   ============================================================ */
.philosophy {
  padding: clamp(80px, 12vw, 180px) 0;
  position: relative;
}
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.philosophy__images {
  position: relative;
  aspect-ratio: 5 / 6;
}
.philosophy__images img {
  position: absolute;
  border-radius: 2px;
  box-shadow: 0 30px 80px -30px rgba(38, 35, 32, 0.3);
}
.philosophy__images .ph-main {
  width: 78%;
  height: 78%;
  top: 0; left: 0;
  object-fit: cover;
  object-position: center top;
}
.philosophy__images .ph-sub {
  width: 46%;
  height: 50%;
  bottom: 0; right: 0;
  object-fit: cover;
  z-index: 2;
}
.philosophy__images .ph-tag {
  position: absolute;
  left: -8px; bottom: 14%;
  background: var(--ivory);
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm-gray);
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.philosophy__copy h2 {
  font-size: clamp(40px, 5.2vw, 78px);
  margin: 28px 0 36px;
}
.philosophy__copy h2 em { font-style: italic; color: var(--crimson); }

.philosophy__copy .body-text { margin-bottom: 22px; max-width: 480px; font-size: 16px; }
.philosophy__signature {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--charcoal);
}
.philosophy__signature .line { width: 36px; height: 1px; background: var(--charcoal); opacity: 0.4; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: clamp(80px, 12vw, 160px) 0;
  background: linear-gradient(180deg, #f6f1ea 0%, #f0e7d6 100%);
  position: relative;
  overflow: hidden;
}
.services__bg-wash {
  position: absolute;
  right: -10%; top: -5%;
  width: 50%;
  opacity: 0.25;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.services__bg-wash--2 {
  position: absolute;
  left: -8%; bottom: -10%;
  width: 38%;
  opacity: 0.2;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.services__header h2 {
  font-size: clamp(48px, 6.5vw, 104px);
}
.services__header h2 em { font-style: italic; color: var(--crimson); }
.services__header p {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}

.service-card {
  position: relative;
  background: rgba(255, 253, 248, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  transition: transform 0.7s var(--ease-luxe), box-shadow 0.7s var(--ease-luxe), background 0.7s var(--ease-luxe);
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px var(--line-soft);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -40px rgba(38, 35, 32, 0.25);
  background: rgba(255, 253, 248, 0.95);
}
.service-card .idx {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: var(--warm-gray);
  font-weight: 500;
}
.service-card .ill {
  width: 88px; height: 88px;
  margin-bottom: 4px;
  align-self: flex-start;
  filter: saturate(0.85);
}
.service-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-card h3 em { font-style: italic; color: var(--crimson); }
.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--warm-gray);
  flex: 1;
}
.service-card .more {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}
.service-card .more::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.4s var(--ease-luxe);
}
.service-card:hover .more::after { transform: translateX(4px); }

/* Service variants: editorial sizes */
.service-card--feature { grid-column: span 6; min-height: 420px; padding: 48px 44px; }
.service-card--feature h3 { font-size: 44px; line-height: 1.0; }
.service-card--feature .ill { width: 140px; height: 140px; position: absolute; right: 28px; top: 28px; opacity: 0.85; }
.service-card--feature p { max-width: 360px; font-size: 15.5px; }

.service-card--wide { grid-column: span 8; }
.service-card--standard { grid-column: span 4; }
.service-card--half { grid-column: span 6; }
.service-card--third { grid-column: span 4; }

.service-card--dark {
  background: var(--charcoal);
  color: var(--ivory);
}
.service-card--dark::before { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.service-card--dark h3 { color: var(--ivory); }
.service-card--dark h3 em { color: var(--champagne); }
.service-card--dark p { color: rgba(255, 246, 230, 0.65); }
.service-card--dark .idx { color: var(--champagne); }
.service-card--dark .more { color: var(--champagne); }
.service-card--dark:hover { background: var(--ink); }

/* ============================================================
   TECHNOLOGY (dark cinematic)
   ============================================================ */
.tech {
  background: radial-gradient(ellipse at 70% 30%, #2e2a26 0%, #1a1816 70%);
  color: var(--ivory);
  padding: clamp(100px, 14vw, 200px) 0;
  position: relative;
  overflow: hidden;
}
.tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.06;
  pointer-events: none;
}
.tech__glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 174, 130, 0.18) 0%, transparent 60%);
  right: -200px; top: -200px;
  pointer-events: none;
  filter: blur(20px);
}

.tech__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.tech__copy .eyebrow { color: var(--champagne); }
.tech__copy .eyebrow .dot { background: var(--champagne); }
.tech__copy h2 {
  color: var(--ivory);
  font-size: clamp(44px, 6vw, 88px);
  margin: 28px 0 32px;
}
.tech__copy h2 em { color: var(--champagne); font-style: italic; }
.tech__copy p {
  color: rgba(255, 246, 230, 0.7);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 24px;
}

.tech__stack {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 246, 230, 0.12);
}
.tech__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 246, 230, 0.12);
  align-items: center;
}
.tech__row .num {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--champagne);
}
.tech__row .name {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ivory);
}
.tech__row .desc {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 246, 230, 0.5);
}

.tech__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.tech__visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 174, 130, 0.3);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tech__visual-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 174, 130, 0.18);
  border-radius: 6px;
  pointer-events: none;
}
.tech__visual img {
  width: 84%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  animation: floaty 8s var(--ease-luxe) infinite alternate;
}
@keyframes floaty {
  0% { transform: translateY(-8px) rotate(-1deg); }
  100% { transform: translateY(8px) rotate(1deg); }
}
.tech__visual-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--champagne);
}
.tech__visual-corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.tech__visual-corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.tech__visual-corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.tech__visual-corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.tech__caption {
  position: absolute;
  bottom: -36px; left: 0;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
}
.tech__caption .live {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--champagne);
  margin-right: 8px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   DOCTORS
   ============================================================ */
.doctors {
  padding: clamp(80px, 12vw, 180px) 0;
  position: relative;
}
.doctors__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(60px, 8vw, 120px);
  align-items: end;
}
.doctors__intro h2 {
  font-size: clamp(48px, 6.5vw, 104px);
}
.doctors__intro h2 em { font-style: italic; color: var(--crimson); }
.doctors__intro p {
  font-size: 17px;
  max-width: 440px;
  color: var(--charcoal);
  line-height: 1.65;
}

.doctor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}
.doctor + .doctor { border-top: 1px solid var(--line); }
.doctor--reverse > :first-child { order: 2; }

.doctor__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
}
.doctor__portrait img.primary {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: 0 30px 80px -40px rgba(38, 35, 32, 0.3);
}
.doctor__portrait .accent {
  position: absolute;
  width: 50%;
  aspect-ratio: 1;
  bottom: -8%;
  right: -8%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 80px -30px rgba(38, 35, 32, 0.4);
  border: 6px solid var(--ivory);
}
.doctor--reverse .doctor__portrait .accent {
  right: auto; left: -8%;
}
.doctor__portrait .stamp {
  position: absolute;
  top: 20px; left: -10px;
  background: var(--ivory);
  padding: 12px 18px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--line);
  z-index: 3;
}
.doctor--reverse .doctor__portrait .stamp { left: auto; right: -10px; }

.doctor__copy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 14px 0 6px;
  color: var(--ink);
}
.doctor__copy h3 em { font-style: italic; color: var(--crimson); }
.doctor__copy .role {
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 36px;
  display: block;
}
.doctor__copy .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--charcoal);
  margin: 28px 0;
  padding-left: 24px;
  border-left: 2px solid var(--crimson);
}
.doctor__copy p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 18px;
  max-width: 520px;
}

.doctor__creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.doctor__creds dt {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
}
.doctor__creds dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--charcoal);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(100px, 14vw, 200px) 0;
  position: relative;
  overflow: hidden;
}
.location__watercolor {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: screen;
}
.location::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26, 24, 22, 0.4) 0%, rgba(26, 24, 22, 0.9) 100%);
}
.location__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.location__content h2 {
  color: var(--ivory);
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.92;
}
.location__content h2 em { color: var(--champagne); font-style: italic; }
.location__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 16px;
}
.location__details .label {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
  display: block;
}
.location__details .value {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.4;
}
.location__hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  font-size: 14px;
  color: rgba(255, 246, 230, 0.8);
}
.location__hours .day { color: var(--champagne); font-style: italic; font-family: var(--serif); font-size: 17px; }

/* ============================================================
   TRUST / CREDENTIALS
   ============================================================ */
.trust {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ivory-deep);
  border-top: 1px solid var(--line-soft);
}
.trust__header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 80px);
}
.trust__header h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  max-width: 720px;
  margin: 22px auto 0;
}
.trust__header h2 em { font-style: italic; color: var(--crimson); }

.trust__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 60px);
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  position: relative;
}
.trust__logo + .trust__logo::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60%;
  background: var(--line-soft);
}
.trust__logo img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.5s var(--ease-luxe), opacity 0.5s var(--ease-luxe);
}
.trust__logo:hover img { filter: grayscale(0); opacity: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: clamp(100px, 14vw, 200px) 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.contact__watercolor {
  position: absolute;
  right: -10%; top: 8%;
  width: 38%;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  position: relative;
}
.contact__copy h2 {
  font-size: clamp(48px, 6.5vw, 96px);
  margin: 24px 0 28px;
}
.contact__copy h2 em { font-style: italic; color: var(--crimson); }
.contact__copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 460px;
  margin-bottom: 32px;
}
.contact__quick {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 380px;
}
.contact__quick-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__quick-row .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.contact__quick-row .val {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--charcoal);
}
.contact__quick-row .val a:hover { color: var(--crimson); }

/* form */
.form {
  background: rgba(255, 253, 248, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 40px 100px -40px rgba(38, 35, 32, 0.2), inset 0 0 0 1px var(--line-soft);
  border-radius: 4px;
  padding: clamp(32px, 4vw, 56px);
  position: relative;
}
.form__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.form__header h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  font-style: italic;
  color: var(--ink);
}
.form__header .step {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field--full { grid-column: span 2; }
.field label {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color 0.4s var(--ease-luxe);
  outline: none;
  resize: vertical;
}
.field textarea { min-height: 110px; line-height: 1.55; }
.field input:focus,
.field textarea:focus { border-bottom-color: var(--charcoal); }
.field--error input,
.field--error textarea { border-bottom-color: var(--crimson); }
.field__hint {
  font-size: 11px;
  color: var(--crimson);
  letter-spacing: 0.04em;
  position: absolute;
  bottom: -18px; left: 0;
  opacity: 0;
  transform: translateY(-2px);
  transition: all 0.3s var(--ease-luxe);
}
.field--error .field__hint { opacity: 1; transform: translateY(0); }

.form__footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form__consent {
  font-size: 12px;
  line-height: 1.5;
  color: var(--warm-gray);
  max-width: 340px;
}
.form__submit {
  position: relative;
  min-width: 200px;
  justify-content: center;
}
.form__submit.loading { pointer-events: none; opacity: 0.7; }
.form__submit .spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-top-color: var(--ivory);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form__success {
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 248, 0.97);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: all 0.6s var(--ease-luxe);
}
.form__success.show { opacity: 1; pointer-events: auto; transform: scale(1); }
.form__success .icon {
  width: 64px; height: 64px;
  border: 1px solid var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-size: 28px;
}
.form__success h4 {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 34px;
  color: var(--ink);
  max-width: 380px;
  line-height: 1.2;
}
.form__success p { font-size: 14px; color: var(--warm-gray); max-width: 320px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(60px, 8vw, 100px) 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 246, 230, 0.12);
}
.footer__logo {
  display: inline-block;
  margin-bottom: 24px;
}
.footer__logo img {
  height: 64px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 1024px) { .footer__logo img { height: 56px; } }
@media (max-width: 640px) { .footer__logo img { height: 48px; } }
.footer__brand {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 22px;
}
.footer__brand em { font-style: italic; color: var(--champagne); }
.footer__tag { color: rgba(255, 246, 230, 0.55); font-size: 14px; max-width: 280px; line-height: 1.6; }

.footer__col h5 {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 15px;
  color: rgba(255, 246, 230, 0.7);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--ivory); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 246, 230, 0.4);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__meta { padding-bottom: 0; }

  .philosophy__grid { grid-template-columns: 1fr; gap: 48px; }
  .philosophy__images { aspect-ratio: 4/3; max-width: 560px; }
  .services__header { grid-template-columns: 1fr; gap: 24px; }
  .services__grid { grid-template-columns: repeat(6, 1fr); }
  .service-card--feature, .service-card--half, .service-card--wide { grid-column: span 6; }
  .service-card--third, .service-card--standard { grid-column: span 3; }
  .tech__grid { grid-template-columns: 1fr; gap: 60px; }
  .doctors__intro { grid-template-columns: 1fr; gap: 32px; }
  .doctor { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .doctor--reverse > :first-child { order: 0; }
  .doctor__portrait { max-width: 560px; }
  .location__content { grid-template-columns: 1fr; gap: 40px; }
  .trust__logos { grid-template-columns: repeat(3, 1fr); }
  .trust__logo:nth-child(3n+1) + .trust__logo::before,
  .trust__logo:nth-child(3n+1)::before { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { font-size: 44px; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-top: 120px; padding-bottom: 90px; }
  .hero h1.display { font-size: 56px; }

  .hero__base { display: none; }

  .ticker__track { font-size: 28px; gap: 50px; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card--feature,
  .service-card--half,
  .service-card--wide,
  .service-card--third,
  .service-card--standard { grid-column: span 1; }
  .service-card--feature { min-height: 360px; padding: 36px 28px; }
  .service-card--feature h3 { font-size: 34px; }
  .service-card--feature .ill { width: 100px; height: 100px; right: 16px; top: 16px; }

  .tech__visual { aspect-ratio: 4/5; }

  .doctor__portrait .accent { display: none; }
  .doctor__creds { grid-template-columns: 1fr; }

  .trust__logos { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust__logo + .trust__logo::before { display: none; }

  .form__grid { grid-template-columns: 1fr; }
  .field--full { grid-column: span 1; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { font-size: 38px; }

  .hero__watercolor-1 { width: 90%; right: -20%; }
}


/* ============================================================
   PAGE HERO (non-home pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 180px clamp(24px, 5vw, 80px) clamp(60px, 8vw, 120px);
  overflow: hidden;
  background: linear-gradient(180deg, #f6f1ea 0%, #efe7d8 100%);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero__bg {
  position: absolute;
  right: -8%;
  bottom: -20%;
  width: 50%;
  max-width: 680px;
  opacity: 0.32;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.page-hero__bg--left {
  right: auto;
  left: -8%;
  bottom: auto;
  top: 20%;
}
.page-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: end;
  max-width: 1440px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.94;
  margin-top: 28px;
}
.page-hero h1 em { font-style: italic; color: var(--crimson); }
.page-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: 8px;
}
.page-hero__meta .lede {
  max-width: 420px;
  font-style: italic;
}
.page-hero__crumbs {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.page-hero__crumbs a { color: var(--warm-gray); }
.page-hero__crumbs a:hover { color: var(--crimson); }
.page-hero__crumbs .sep { color: var(--warm-gray-light); }

/* ============================================================
   CALMER EXPERIENCE (Home — architectural building)
   ============================================================ */
.calmer {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}
.calmer__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.calmer__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.calmer__image-wrap img.main {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 50px 100px -50px rgba(38, 35, 32, 0.4);
}
.calmer__image-wrap .marker {
  position: absolute;
  left: -12px; top: 32px;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 12px 18px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--charcoal);
  z-index: 2;
}
.calmer__copy h2 {
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.96;
  margin: 26px 0 32px;
}
.calmer__copy h2 em { font-style: italic; color: var(--crimson); }
.calmer__copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 22px;
  max-width: 500px;
}
.calmer__list {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 32px;
}
.calmer__list-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calmer__list-item .n {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 500;
}
.calmer__list-item .t {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--charcoal);
}

/* ============================================================
   FEATURES (4 watercolor icon modules)
   ============================================================ */
.features {
  padding: clamp(80px, 12vw, 160px) 0;
  background: linear-gradient(180deg, var(--ivory-deep) 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.features__header {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.features__header h2 {
  font-size: clamp(40px, 5vw, 76px);
  max-width: 820px;
  margin: 22px auto 0;
}
.features__header h2 em { font-style: italic; color: var(--crimson); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 20px;
  position: relative;
  transition: transform 0.6s var(--ease-luxe);
}
.feature + .feature::before {
  content: "";
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 1px;
  background: var(--line);
}
.feature:hover { transform: translateY(-4px); }
.feature__icon {
  width: 120px; height: 120px;
  margin: 0 auto 8px;
  filter: saturate(0.9);
  transition: transform 0.7s var(--ease-luxe);
}
.feature:hover .feature__icon { transform: scale(1.04); }
.feature__num {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--crimson);
  text-align: center;
  font-weight: 500;
}
.feature h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
}
.feature h3 em { font-style: italic; color: var(--crimson); }
.feature p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--warm-gray);
  text-align: center;
  text-wrap: pretty;
}

/* ============================================================
   PAGE-LEVEL SERVICE (Services page — alternating editorial)
   ============================================================ */
.svc-page {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 12vw, 160px);
}
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
  padding: clamp(60px, 8vw, 120px) 0;
  border-top: 1px solid var(--line-soft);
}
.svc-block:first-of-type { border-top: 0; }
.svc-block--reverse > :first-child { order: 2; }
.svc-block__visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin: 0 auto;
}
.svc-block__visual img.ic {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: saturate(0.9);
}
.svc-block__visual .ring {
  position: absolute;
  inset: 8%;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
}
.svc-block__visual .ring--2 {
  inset: 14%;
  border-style: dashed;
  border-color: var(--champagne);
  animation: rotate 60s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.svc-block__visual .tag {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.svc-block__visual .tag .num { color: var(--crimson); margin-right: 12px; font-weight: 500; }
.svc-block--reverse .svc-block__visual .tag { left: auto; right: 8px; }

.svc-block__copy .eyebrow { margin-bottom: 18px; display: inline-block; }
.svc-block__copy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.svc-block__copy h2 em { font-style: italic; color: var(--crimson); }
.svc-block__copy > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 18px;
  max-width: 520px;
}
.svc-block__copy > p:last-of-type { margin-bottom: 0; }

.svc-block__detail {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.svc-block__detail .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
  display: block;
}
.svc-block__detail .val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--charcoal);
}

/* Services page — secondary card row */
.svc-additional {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--ivory-deep);
}
.svc-additional h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 40px;
}
.svc-additional h3 em { font-style: italic; color: var(--crimson); }
.svc-additional__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-additional__cell {
  background: var(--ivory);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: background 0.5s var(--ease-luxe);
}
.svc-additional__cell:hover { background: #fff; }
.svc-additional__cell .num {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--crimson);
  font-weight: 500;
}
.svc-additional__cell h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.svc-additional__cell h4 em { font-style: italic; color: var(--crimson); }
.svc-additional__cell p { font-size: 13.5px; line-height: 1.65; color: var(--warm-gray); }

/* ============================================================
   ABOUT PAGE — Michele editorial
   ============================================================ */
.about-portrait {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.about-portrait__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
}
.about-portrait__img {
  position: relative;
  aspect-ratio: 4/5;
}
.about-portrait__img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 2px;
  box-shadow: 0 50px 100px -50px rgba(38, 35, 32, 0.4);
}
.about-portrait__img .frame-tag {
  position: absolute;
  bottom: -10px; right: -10px;
  background: var(--crimson);
  color: var(--ivory);
  padding: 14px 22px;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 2;
}
.about-portrait__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 24px 0;
}
.about-portrait__copy h2 {
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 0.98;
  margin-top: 18px;
}
.about-portrait__copy h2 em { font-style: italic; color: var(--crimson); }
.about-portrait__copy .role {
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.about-portrait__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 540px;
}

.about-portrait__quote {
  margin-top: 8px;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--crimson);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.4;
  color: var(--ink);
}

/* Michele credentials integrated */
.michele-creds {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--ivory-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.michele-creds__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.michele-creds__copy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 20px 0 18px;
}
.michele-creds__copy h3 em { font-style: italic; color: var(--crimson); }
.michele-creds__copy p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 380px;
}
.michele-creds__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.michele-creds__logos .item {
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 130px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  margin: -0.5px;
  transition: background 0.4s var(--ease-luxe);
}
.michele-creds__logos .item:hover { background: #fff; }
.michele-creds__logos .item img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.5s var(--ease-luxe), opacity 0.5s var(--ease-luxe);
}
.michele-creds__logos .item:hover img { filter: grayscale(0); opacity: 1; }

/* Sam supporting block */
.sam-partner {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ivory);
}
.sam-partner__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.sam-partner__img {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 380px;
}
.sam-partner__img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 40px 80px -40px rgba(38, 35, 32, 0.3);
}
.sam-partner__copy .eyebrow { margin-bottom: 14px; display: inline-block; }
.sam-partner__copy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.0;
  margin: 8px 0 8px;
}
.sam-partner__copy h3 em { font-style: italic; color: var(--crimson); }
.sam-partner__copy .role {
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 28px;
  display: block;
}
.sam-partner__copy p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 16px;
  max-width: 540px;
}

/* ============================================================
   HOME DOCTORS PREVIEW (one Michele portrait)
   ============================================================ */
.home-doctor {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.home-doctor__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.home-doctor__img {
  position: relative;
  aspect-ratio: 4/5;
}
.home-doctor__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: 0 50px 100px -50px rgba(38, 35, 32, 0.35);
}
.home-doctor__img .stamp {
  position: absolute;
  bottom: 22px; left: -16px;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 14px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--charcoal);
  z-index: 2;
}
.home-doctor__img .stamp small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 4px;
}
.home-doctor__copy h2 {
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.96;
  margin: 26px 0 28px;
}
.home-doctor__copy h2 em { font-style: italic; color: var(--crimson); }
.home-doctor__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 16px;
  max-width: 520px;
}
.home-doctor__cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   HOME CTA (large editorial)
   ============================================================ */
.home-cta {
  padding: clamp(80px, 12vw, 180px) 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-cta__inner { position: relative; }
.home-cta h2 {
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.95;
  max-width: 900px;
  margin: 24px auto 36px;
}
.home-cta h2 em { font-style: italic; color: var(--crimson); }
.home-cta p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 540px;
  margin: 0 auto 40px;
}
.home-cta__group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE additions
   ============================================================ */
.contact-info {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--ink);
  color: var(--ivory);
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 246, 230, 0.1);
  border: 1px solid rgba(255, 246, 230, 0.1);
}
.contact-info__cell {
  background: var(--ink);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info__cell .label {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
}
.contact-info__cell .value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ivory);
}
.contact-info__cell .value a:hover { color: var(--champagne); }
.contact-info__cell .small {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 246, 230, 0.6);
}

.studio-map {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--ivory);
}
.studio-map__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.studio-map__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 3px;
  overflow: hidden;
  background: var(--ivory-deep);
}
.studio-map__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.studio-map__copy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  margin: 18px 0 28px;
}
.studio-map__copy h3 em { font-style: italic; color: var(--crimson); }
.studio-map__copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 16px;
  max-width: 480px;
}

/* Active nav state */
.nav__links a.active { color: var(--crimson); }
.nav__links a.active::after { transform: scaleX(1); }

/* Page transitions */
.page-fade {
  animation: pageFadeIn 1s var(--ease-luxe);
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================
   RESPONSIVE additions
   ============================================================ */
@media (max-width: 1024px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .calmer__grid { grid-template-columns: 1fr; gap: 48px; }
  .calmer__image-wrap { aspect-ratio: 4/3; max-width: 600px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .feature + .feature::before { display: none; }
  .feature:nth-child(odd) + .feature::before { display: block; }
  .svc-block { grid-template-columns: 1fr; gap: 40px; }
  .svc-block--reverse > :first-child { order: 0; }
  .svc-additional__grid { grid-template-columns: repeat(2, 1fr); }
  .about-portrait__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait__img { max-width: 560px; }
  .michele-creds__grid { grid-template-columns: 1fr; gap: 32px; }
  .michele-creds__logos { grid-template-columns: repeat(2, 1fr); }
  .sam-partner__grid { grid-template-columns: 1fr; gap: 40px; }
  .home-doctor__grid { grid-template-columns: 1fr; gap: 40px; }
  .home-doctor__img { max-width: 560px; }
  .contact-info__grid { grid-template-columns: repeat(2, 1fr); }
  .studio-map__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .features__grid { grid-template-columns: 1fr; }
  .feature + .feature::before { display: none; }
  .feature__icon { width: 100px; height: 100px; }
  .svc-additional__grid { grid-template-columns: 1fr; }
  .michele-creds__logos { grid-template-columns: 1fr 1fr; }
  .michele-creds__logos .item { min-height: 110px; }
  .contact-info__grid { grid-template-columns: 1fr; }
  .home-doctor__img .stamp { left: 0; bottom: 12px; }
  .about-portrait__img .frame-tag { right: 0; }
}


/* ============================================================
   STUDIO INTERLUDE (full-bleed architectural image)
   ============================================================ */
.studio-interlude {
  position: relative;
  width: 100%;
  background: var(--ink);
}
.studio-interlude__visual {
  position: relative;
  width: 100%;
  height: clamp(420px, 70vh, 720px);
  overflow: hidden;
}
.studio-interlude__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.studio-interlude__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(180deg, rgba(38, 35, 32, 0) 30%, rgba(26, 24, 22, 0.7) 100%);
  color: var(--ivory);
}
.studio-interlude__overlay .eyebrow { color: var(--champagne); margin-bottom: 12px; }
.studio-interlude__overlay .eyebrow .dot { background: var(--champagne); }
.studio-interlude__overlay h3 {
  color: var(--ivory);
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  font-weight: 300;
  max-width: 900px;
}
.studio-interlude__overlay h3 em { color: var(--champagne); font-style: italic; }

@media (max-width: 640px) {
  .studio-interlude__visual { height: 380px; }
}


/* Footer socials */
.footer__social {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 246, 230, 0.7);
  font-size: 14px;
  transition: color 0.3s var(--ease-luxe);
}
.footer__social a:hover { color: var(--champagne); }
.footer__social svg { flex-shrink: 0; }

/* Reusable hero with photo background (Services, About, Contact) */
.page-hero--photo {
  padding: 200px clamp(24px, 5vw, 80px) clamp(80px, 10vw, 140px);
  min-height: clamp(560px, 80vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ivory);
}
.page-hero--photo .page-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.page-hero--photo .page-hero__wash {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.25) 0%, rgba(246, 241, 234, 0.3) 30%, rgba(246, 241, 234, 0.92) 100%);
}
.page-hero--photo .page-hero__wash--side {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 241, 234, 0.55) 0%, rgba(246, 241, 234, 0.05) 55%, rgba(246, 241, 234, 0) 100%);
}
.page-hero--photo .page-hero__inner { z-index: 2; }
.page-hero--photo h1 em { color: var(--crimson); }
.page-hero--photo .page-hero__crumbs,
.page-hero--photo .page-hero__crumbs a { color: var(--charcoal); }
.page-hero--photo .page-hero__meta .lede { color: var(--charcoal); }

/* dusk variant (about + contact) — building photos behind white headline */
.page-hero--dusk .page-hero__photo {
  filter: brightness(0.78) saturate(0.95);
}
.page-hero--dusk .page-hero__wash {
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.55) 0%, rgba(20, 18, 16, 0.45) 40%, rgba(20, 18, 16, 0.65) 100%);
}
.page-hero--dusk .page-hero__wash--side {
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.7) 0%, rgba(20, 18, 16, 0.35) 50%, rgba(20, 18, 16, 0.15) 100%);
}
.page-hero--dusk h1,
.page-hero--dusk .page-hero__crumbs,
.page-hero--dusk .page-hero__crumbs a {
  color: var(--ivory);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.page-hero--dusk h1 em { color: var(--champagne); }
.page-hero--dusk .page-hero__meta .lede {
  color: var(--ivory);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.page-hero--dusk .page-hero__crumbs .sep { color: rgba(255, 246, 230, 0.5); }

@media (max-width: 720px) {
  .page-hero--photo { min-height: 540px; padding-top: 160px; }
}

/* Keep old services-specific class as alias */
.page-hero--services { /* legacy */ }


/* ============================================================
   MICHELLE STORY (text-only background panel)
   ============================================================ */
.michelle-story {
  padding: clamp(60px, 9vw, 120px) 0;
  background: var(--ivory);
  border-top: 1px solid var(--line-soft);
}
.michelle-story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.michelle-story h2 {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.98;
  margin-top: 22px;
}
.michelle-story h2 em { font-style: italic; color: var(--crimson); }
.michelle-story__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 18px;
  text-wrap: pretty;
  max-width: 580px;
}
.michelle-story__copy p:last-child { margin-bottom: 0; }
.about-portrait__copy p strong {
  font-weight: 500;
  font-style: italic;
  color: var(--crimson);
}
@media (max-width: 1024px) {
  .michelle-story__grid { grid-template-columns: 1fr; gap: 28px; }
  .michelle-story h2 { margin-top: 14px; }
}


/* ============================================================
   MOBILE QA — final polish (image crops, spacing, readability)
   ============================================================ */

/* Home doctor portrait — face anchored, breathing room on mobile */
.home-doctor__img img {
  object-position: center 20%;
}

/* About portrait — center the face */
.about-portrait__img img {
  object-position: center 25%;
}

/* Calmer building image — show full building on mobile */
.calmer__image-wrap img.main {
  object-position: center center;
}

/* Sam portrait — face anchored */
.sam-partner__img img {
  object-position: center 20%;
}

@media (max-width: 1024px) {
  /* Reduce all hero h1s slightly for tablets */
  .page-hero h1 { font-size: clamp(48px, 7vw, 88px); }
  /* Tablet: building photo aspect-ratio better for the section */
  .calmer__image-wrap { aspect-ratio: 4/5; }
  /* Doctor portraits use 4:5 reliably on tablet */
  .home-doctor__img { aspect-ratio: 4/5; max-width: 480px; margin: 0 auto; }
  .about-portrait__img { aspect-ratio: 4/5; max-width: 520px; margin: 0 auto; }
  .sam-partner__img { aspect-ratio: 4/5; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 720px) {
  /* Page hero — tighter padding, smaller display headlines */
  .page-hero { padding: 140px 24px 56px; }
  .page-hero h1 { font-size: clamp(38px, 11vw, 56px); line-height: 1.0; }
  .page-hero__meta .lede { font-size: 17px; }
  .page-hero__crumbs { font-size: 10px; gap: 10px; }

  /* About: tighter portrait + push the quote down for readability */
  .about-portrait { padding: 40px 0 56px; }
  .about-portrait__img { aspect-ratio: 4/5; max-width: 100%; }
  .about-portrait__img .frame-tag {
    bottom: auto; right: auto; top: -10px; left: -10px;
    font-size: 9.5px; padding: 12px 16px;
  }
  .about-portrait__quote {
    font-size: 20px;
    padding-left: 18px;
    margin: 20px 0 8px;
  }

  /* Michelle story (background panel) */
  .michelle-story { padding: 48px 0; }
  .michelle-story h2 { font-size: clamp(32px, 8vw, 44px); }
  .michelle-story__copy p { font-size: 15px; }

  /* Home doctor preview */
  .home-doctor { padding: 56px 0; }
  .home-doctor__img { max-width: 100%; margin: 0; }
  .home-doctor__img .stamp { left: 12px; bottom: 12px; font-size: 16px; padding: 12px 16px; }

  /* Calmer experience — center, full-width image */
  .calmer { padding: 56px 0; }
  .calmer__image-wrap { max-width: 100%; aspect-ratio: 3/4; }
  .calmer__copy h2 { font-size: clamp(36px, 9vw, 56px); }

  /* Services blocks — tighter section padding */
  .svc-block { padding: 48px 0; gap: 32px; }
  .svc-block__copy h2 { font-size: clamp(36px, 9vw, 56px); }
  .svc-block__visual { max-width: 280px; }
  .svc-block__visual .tag { font-size: 9px; }
  .svc-block__detail { grid-template-columns: 1fr; gap: 14px 24px; }

  /* Services additional */
  .svc-additional h3 { font-size: clamp(32px, 9vw, 48px); }

  /* Features grid — give more vertical room */
  .features { padding: 56px 0; }
  .features__grid { gap: 36px; }
  .feature { padding: 0; gap: 14px; }
  .feature__icon { width: 88px; height: 88px; }
  .feature h3 { font-size: 22px; }

  /* Sam */
  .sam-partner { padding: 56px 0; }
  .sam-partner__img { max-width: 100%; aspect-ratio: 4/5; }
  .sam-partner__copy h3 { font-size: clamp(34px, 9vw, 52px); }

  /* Trust / credential logos */
  .michele-creds { padding: 48px 0; }
  .michele-creds__logos { grid-template-columns: 1fr 1fr; }
  .michele-creds__logos .item { min-height: 100px; padding: 18px; }

  /* Home CTA / page CTAs */
  .home-cta { padding: 64px 0; }
  .home-cta h2 { font-size: clamp(40px, 10vw, 64px); }
  .home-cta__group { flex-direction: column; align-items: stretch; }
  .home-cta__group .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact { padding: 48px 0 64px; }
  .contact__grid { gap: 32px; }
  .contact__copy h2 { font-size: clamp(36px, 9vw, 52px) !important; }
  .form { padding: 28px 22px; }
  .form__footer { flex-direction: column; align-items: stretch; gap: 18px; }
  .form__footer .form__consent { max-width: 100%; }
  .form__submit { width: 100%; justify-content: center; }

  /* Contact info dark grid */
  .contact-info { padding: 48px 0; }
  .contact-info__cell { padding: 28px 22px; }
  .contact-info__cell .value { font-size: 19px; }

  /* Doctor section line breaks */
  .doctor__copy h3 { font-size: clamp(36px, 9vw, 56px); }

  /* Footer */
  .footer__top { gap: 32px; }
  .footer__social { margin-top: 18px; }
}

/* Touch hover suppression — disable hover lift on touch devices */
@media (hover: none) {
  .service-card:hover,
  .feature:hover,
  .home-doctor__img:hover,
  .btn:hover { transform: none; }
  .service-card:hover { box-shadow: none; }
}


/* ============================================================
   MOBILE FIX — portraits with aspect-ratio + absolute children
   need explicit width to compute height on phones
   ============================================================ */
@media (max-width: 1024px) {
  .about-portrait__img,
  .sam-partner__img,
  .home-doctor__img,
  .doctor__portrait,
  .calmer__image-wrap,
  .philosophy__images,
  .studio-map__visual,
  .tech__visual {
    width: 100%;
  }
}
