/* ============================================================
   ΩHM PHYSICAL THERAPY — Complete Stylesheet v2
   Palette: Parchment · Sage · Clay · Ink · Warm Gray
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ── Variables ── */
:root {
  --ink:        #1A1916;
  --parchment:  #F2EDE4;
  --warm-white: #FAF8F4;
  --sage:       #6E7D6A;
  --sage-lt:    #A8B8A4;
  --clay:       #A67C52;
  --clay-lt:    #C9A47A;
  --clay-dk:    #7A5830;
  --warm-gray:  #E2DDD5;
  --muted:      #7A776E;
  --border:     #D8D2C8;
  --shadow:     rgba(26,25,22,0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:   3px;
  --radius-lg: 6px;
  --gap:      clamp(60px, 8vw, 110px);
  --wrap:     1200px;
  --wrap-s:   760px;

  --nav-h: 68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 500; }
p  { font-size: 0.95rem; color: var(--muted); max-width: 58ch; line-height: 1.75; }
.lead { font-size: 1.05rem; color: var(--ink); line-height: 1.7; max-width: 62ch; }

/* ── Layout ── */
.wrap   { max-width: var(--wrap);  margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.wrap-s { max-width: var(--wrap-s); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
section { padding: var(--gap) 0; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--clay);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-dark  { background: var(--ink);   color: var(--warm-white); }
.btn-dark:hover  { background: var(--clay-dk); }
.btn-clay  { background: var(--clay);  color: white; }
.btn-clay:hover  { background: var(--clay-dk); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--warm-white); }
.btn-white { background: white; color: var(--ink); }
.btn-white:hover { background: var(--clay); color: white; }

/* ── Section header ── */
.sec-head { margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head h2 { margin-top: 8px; margin-bottom: 12px; }
.sec-head p  { max-width: 54ch; }
.sec-head.center { text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center p { margin: 0 auto; }

/* ── Fade-in animations ── */
.fade { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade.in { opacity: 1; transform: none; }
.fade-d1 { transition-delay: 0.1s; }
.fade-d2 { transition-delay: 0.2s; }
.fade-d3 { transition-delay: 0.3s; }
.fade-d4 { transition-delay: 0.4s; }

/* ================================================================
   NAV
   ================================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 48px);
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav-logo .omega { color: var(--clay); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links .cta-link {
  padding: 9px 20px;
  background: var(--ink);
  color: white;
  opacity: 1;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-links .cta-link:hover { background: var(--clay); }

/* Burger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all 0.25s; }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px clamp(28px,8vw,60px);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.3;
  transition: color 0.2s;
  display: block;
  margin-bottom: 8px;
}
.mobile-nav a:hover { color: var(--clay-lt); }
.close-btn {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.close-btn:hover { color: white; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px,8vw,100px) clamp(28px,5vw,72px) clamp(60px,8vw,100px) clamp(28px,6vw,80px);
  background: var(--warm-white);
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-left h1 { margin-bottom: 22px; }
.hero-left h1 em { font-style: italic; color: var(--clay); }
.hero-desc { font-size: 1rem; margin-bottom: 36px; max-width: 46ch; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--ink); line-height: 1; }
.stat-lbl { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

/* Hero right — photo background */
.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #C8B89C 0%, #A88A68 30%, #8A6C4E 60%, #6A4E34 100%);
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 55% 35%, rgba(200,160,100,0.25) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(100,80,50,0.3) 0%, transparent 50%);
}
.hero-photo-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: luminosity;
  opacity: 0.7;
}
.hero-overlay-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
}
.hero-overlay-mark {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  letter-spacing: 0.1em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 16px;
  border-radius: var(--radius);
}
.hero-tag p {
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: none;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay-lt);
  flex-shrink: 0;
}

/* ================================================================
   TICKER
   ================================================================ */
.ticker {
  overflow: hidden;
  background: var(--ink);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.t-item {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 28px;
  white-space: nowrap;
}
.t-item::after {
  content: '·';
  margin-left: 28px;
  color: var(--clay);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ================================================================
   WHY OHM
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.why-text h2 { margin-bottom: 18px; }
.why-text .lead { margin-bottom: 16px; }
.why-text p { margin-bottom: 24px; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.why-card {
  background: var(--parchment);
  padding: 28px 24px;
  transition: background 0.25s;
}
.why-card:hover { background: var(--warm-gray); }
.why-card-h {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.85rem; max-width: none; }

/* ================================================================
   SERVICES GRID
   ================================================================ */
.svc-bg { background: var(--parchment); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.svc-card {
  background: var(--warm-white);
  padding: 36px 28px;
  position: relative;
  transition: background 0.25s, color 0.25s;
  cursor: default;
}
.svc-card:hover { background: var(--ink); }
.svc-card:hover h3,
.svc-card:hover p,
.svc-card:hover .svc-lnk { color: rgba(255,255,255,0.85); }
.svc-card:hover .svc-icon { color: var(--clay-lt); }
.svc-card:hover .svc-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.svc-icon { font-size: 1.2rem; color: var(--clay); margin-bottom: 18px; display: block; }
.svc-card h3 { margin-bottom: 12px; font-size: 1.2rem; transition: color 0.25s; }
.svc-card p { font-size: 0.87rem; margin-bottom: 18px; transition: color 0.25s; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.svc-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--parchment);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.svc-lnk {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-lnk::after { content: '→'; }

/* ================================================================
   PROCESS
   ================================================================ */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.proc-item {
  background: var(--parchment);
  padding: 36px 28px;
}
.proc-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--clay-lt);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}
.proc-h {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.proc-item p { font-size: 0.87rem; max-width: none; }

/* ================================================================
   ABOUT PREVIEW
   ================================================================ */
.about-preview-bg { background: var(--warm-white); }
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px,6vw,80px);
  align-items: center;
}
.about-preview-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(165deg, #C8B49A 0%, #A88A6A 45%, #7A6040 100%);
  position: relative;
}
.about-preview-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-preview-photo-bg {
  width: 100%; height: 100%; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.about-preview-photo-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.2em;
}
.about-content h2 { margin-bottom: 18px; }
.about-content .lead { margin-bottom: 16px; }
.about-content p { margin-bottom: 14px; }
.cred-list { margin: 24px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.cred-row { display: flex; align-items: center; gap: 12px; }
.cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); flex-shrink: 0; }
.cred-row span { font-size: 0.88rem; color: var(--ink); font-weight: 400; }

/* ================================================================
   PULL QUOTE
   ================================================================ */
.pullquote-section {
  background: var(--ink);
  padding: clamp(48px,7vw,80px) 0;
}
.pullquote-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px,5vw,48px);
  text-align: center;
}
.pullquote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  margin-bottom: 20px;
}
.pullquote-section cite {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay-lt);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-section { background: var(--parchment); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.testi-card { background: var(--warm-white); padding: 36px 28px; }
.testi-q { font-family: var(--font-display); font-size: 4rem; color: var(--clay-lt); line-height: 0.6; margin-bottom: 20px; display: block; }
.testi-text { font-size: 0.92rem; color: var(--ink); line-height: 1.75; margin-bottom: 22px; max-width: none; }
.testi-name { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--ink); }
.testi-role { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: var(--gap) 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { margin: 0 auto 30px; max-width: 48ch; }
.cta-note { font-size: 0.78rem; color: var(--muted); margin-top: 16px; margin-bottom: 0; max-width: none; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--ink);
  padding: calc(var(--nav-h) + clamp(48px,7vw,80px)) 0 clamp(48px,7vw,80px);
}
.page-hero .eyebrow { color: var(--clay-lt); }
.page-hero .eyebrow::before { background: var(--clay-lt); }
.page-hero h1 { color: white; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 56ch; }

/* ================================================================
   SERVICES PAGE — Full list
   ================================================================ */
.svc-full-list { background: var(--warm-white); }
.svc-full-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px,4vw,60px);
  padding: clamp(36px,5vw,56px) 0;
  border-bottom: 1px solid var(--border);
}
.svc-full-item:first-child { border-top: 1px solid var(--border); }
.svc-full-label { padding-right: 24px; }
.svc-full-label .eyebrow { margin-bottom: 12px; }
.svc-full-label h3 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 8px; }
.price-note {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clay);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.svc-full-body .lead { margin-bottom: 14px; }
.svc-full-body p { margin-bottom: 12px; }
.for-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--parchment);
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.cond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0 24px;
}
.cond-item {
  font-size: 0.82rem;
  color: var(--ink);
  padding: 8px 12px;
  background: var(--parchment);
  border-radius: var(--radius);
}

/* Photo strips for services */
.svc-photo-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  height: 280px;
}
.svc-photo-item {
  position: relative;
  overflow: hidden;
}
.svc-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.svc-photo-item:hover img { transform: scale(1.04); }
.svc-photo-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.svc-photo-bg-1 { background-image: url('images/services-manual-1600.jpg'); background-size: cover; background-position: center; }
.svc-photo-bg-2 { background-image: url('images/services-needling-1600.jpg'); background-size: cover; background-position: center; }
.svc-photo-bg-3 { background-image: url('images/services-cupping-1600.jpg'); background-size: cover; background-position: center; }
.svc-photo-caption {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-full-grid {
  display: grid;
  grid-template-columns: minmax(420px, 46%) 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
}
.about-img-wrap { position: sticky; top: calc(var(--nav-h) + 24px); }
.about-img-main {
  aspect-ratio: 4/5;
  min-height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  background: linear-gradient(162deg, #C8B49A 0%, #A88A6A 45%, #7A6040 100%);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-img-main-bg {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
}
.about-img-caption {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}
.about-full-text h2 { margin-bottom: 24px; }
.about-full-text p { margin-bottom: 18px; color: var(--muted); }
.about-pullquote {
  border-left: 3px solid var(--clay);
  padding: 20px 0 20px 24px;
  margin: 28px 0;
}
.about-pullquote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  max-width: none;
  margin-bottom: 8px;
}
.about-pullquote cite {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
}

/* Secondary about split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: stretch;
}
.about-split-photo {
  min-height: 420px;
  background: linear-gradient(148deg, #9AB0A4 0%, #6A8878 50%, #3E5E50 100%);
  display: block;
  overflow: hidden;
}
.about-split-photo picture,
.about-split-photo img { width: 100%; height: 100%; display:block; object-fit: cover; }
.about-split-text {
  background: var(--ink);
  padding: clamp(36px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.about-split-text h2 { color: white; font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.about-split-text p { color: rgba(255,255,255,0.6); max-width: none; }
.btn-clay-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--clay-lt);
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  transition: all 0.2s;
  width: fit-content;
}
.btn-clay-outline:hover { background: var(--clay); color: white; }

/* ================================================================
   WHO I TREAT
   ================================================================ */
.treat-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  margin-top: clamp(32px,4vw,48px);
}
.treat-card {
  background: var(--parchment);
  padding: 36px 28px;
  transition: background 0.25s;
}
.treat-card:hover { background: var(--warm-gray); }
.treat-icon {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}
.treat-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.treat-card p { font-size: 0.87rem; max-width: none; margin-bottom: 14px; }
.treat-list { display: flex; flex-wrap: wrap; gap: 6px; }
.treat-tag {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--warm-white);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 2px;
}

.treat-full-list { margin-top: clamp(32px,4vw,48px); }
.treat-section { margin-bottom: clamp(36px,5vw,56px); }
.treat-section h3 {
  font-size: 1.4rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.treat-conditions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.treat-condition {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink);
  padding: 10px 14px;
  background: var(--parchment);
  border-radius: var(--radius);
}
.treat-condition::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}

/* ================================================================
   PRICING PAGE
   ================================================================ */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(32px,4vw,56px);
  align-items: start;
}
.price-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  gap: 20px;
  transition: background 0.2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--parchment); }
.price-row-name { font-weight: 600; font-size: 0.92rem; color: var(--ink); margin-bottom: 3px; }
.price-row-sub { font-size: 0.78rem; color: var(--muted); }
.price-amt {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.price-aside {
  background: var(--parchment);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-aside h3 { font-size: 1.4rem; margin-bottom: 12px; }
.price-aside p { font-size: 0.88rem; max-width: none; margin-bottom: 12px; }
.pricing-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.pricing-note a { color: var(--clay); text-decoration: underline; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-col { padding: 32px 28px; }
.compare-col-light { background: var(--warm-white); border: 1px solid var(--border); }
.compare-col-dark { background: var(--ink); }
.compare-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.compare-col-light .compare-label { color: var(--muted); }
.compare-col-dark .compare-label  { color: var(--clay-lt); }
.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid;
  font-size: 0.87rem;
}
.compare-col-light .compare-item { color: var(--muted); border-color: var(--border); }
.compare-col-dark .compare-item  { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); }
.compare-item:last-child { border-bottom: none; }
.compare-x { color: #C04040; font-weight: 700; flex-shrink: 0; }
.compare-check { color: var(--clay-lt); font-weight: 700; flex-shrink: 0; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px,5vw,72px);
  align-items: start;
}
.contact-form h2 { margin-bottom: 8px; }
.contact-form > p { margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(166,124,82,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; }

.contact-info-block {
  background: var(--parchment);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.info-section { padding: 28px; border-bottom: 1px solid var(--border); }
.info-section:last-child { border-bottom: none; }
.info-section h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.info-section p { font-size: 0.9rem; color: var(--ink); max-width: none; margin-bottom: 4px; }
.info-section .sub { font-size: 0.78rem; color: var(--muted); margin: 0; }
.process-steps { display: flex; flex-direction: column; gap: 14px; padding: 28px; }
.process-step { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--clay);
  flex-shrink: 0;
  line-height: 1.2;
  width: 24px;
}
.process-step p { font-size: 0.87rem; color: var(--ink); max-width: none; margin: 0; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--ink);
  padding: clamp(48px,6vw,72px) 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px,4vw,48px);
  margin-bottom: 48px;
}
.foot-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  display: inline-block;
  margin-bottom: 14px;
}
.foot-logo .omega { color: var(--clay-lt); }
.foot-about { font-size: 0.85rem; color: rgba(255,255,255,0.4); max-width: 28ch; line-height: 1.7; }
.foot-col h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--clay-lt); }
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); max-width: none; margin: 0; }

/* ================================================================
   SECTION DIVIDER
   ================================================================ */
.section-header {
  padding: 44px 0 0;
  margin-bottom: 28px;
}
.section-header h2 { font-size: 2rem; margin-bottom: 6px; }
.section-header p { margin: 0; }

/* ================================================================
   UTILITY
   ================================================================ */
.text-center { text-align: center; }
.ink-bg { background: var(--ink); }
.parchment-bg { background: var(--parchment); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0  { margin-bottom: 0; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 50vw; max-height: 500px; }
  .why-grid { grid-template-columns: 1fr; }
  .about-full-grid { grid-template-columns: 1fr; }
  .about-img-wrap { position: static; }
  .about-img-main { aspect-ratio: 16/11; min-height: 0; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-full-item { grid-template-columns: 1fr; }
  .svc-full-label { padding-right: 0; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .treat-grid { grid-template-columns: 1fr 1fr; }
  .svc-photo-strip { height: 200px; }
  .about-preview-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .svc-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .treat-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .cond-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

/* ============================================================
   ACCESSIBILITY + PERFORMANCE PATCHES
   ============================================================ */
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:var(--ink);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  z-index:9999;
}
.skip-link:focus{ left:10px; }

.nav-logo img, .foot-logo img{
  height: 34px;
  width: auto;
  display:block;
}
@media (max-width:768px){
  .nav-logo img{ height: 32px; }
}

.hero-right img.hero-art{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius: clamp(18px,2.4vw,24px);
  filter: saturate(1.05) contrast(1.03);
}
.about-preview-photo img.about-art{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius: 18px;
  filter: saturate(1.02) contrast(1.02);
}

/* Improve focus visibility */
:focus-visible{
  outline: 3px solid rgba(166, 129, 99, 0.55);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  .ticker-track{ animation: none !important; transform:none !important; }
  .fade{ opacity:1 !important; transform:none !important; }
}


/* Image utilities */
.photo-fill { width: 100%; height: 100%; display:block; object-fit: cover; }
.banner-img { width:100%; height:auto; border-radius: var(--radius-lg); display:block; }

.cta-band.photo-bg { position: relative; overflow: hidden; }
.cta-band.photo-bg::before {
  content:"";
  position:absolute; inset:0;
  background-image: url('images/bg-blur-1920.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.72) saturate(1.05);
  transform: scale(1.05);
}
.cta-band.photo-bg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(16,16,16,0.55), rgba(16,16,16,0.25));
}
.cta-band.photo-bg > * { position: relative; z-index: 1; }
.cta-band.photo-bg h2, .cta-band.photo-bg p { color: rgba(255,255,255,0.95); }
.cta-band.photo-bg .eyebrow { color: rgba(255,255,255,0.9); }

.svc-photo-bg{ position:relative; overflow:hidden; }
.svc-photo-bg::before{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55)); }
.svc-photo-caption{ position:relative; z-index:1; }


/* --- About page gallery --- */
.about-gallery {
  background: var(--bg);
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.about-gallery-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  margin-top: 28px;
}
.about-gallery-text h3{ margin-top: 0; }
.check-list{
  list-style:none;
  padding:0;
  margin:16px 0 22px;
}
.check-list li{
  position:relative;
  padding-left: 26px;
  margin: 10px 0;
  color: var(--text);
  line-height: 1.55;
}
.check-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--accent);
  font-weight: 700;
}
.about-mini-callout{
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin: 18px 0 18px;
}
.about-mini-callout p{ margin: 0; color: var(--muted); }
.about-gallery-photos{
  display:grid;
  gap: 16px;
}
.about-photo-card{
  margin:0;
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}
.about-photo-card picture,
.about-photo-card img{
  display:block;
  width:100%;
  height:auto;
}
.about-photo-card .photo-fill{ aspect-ratio: 16/10; object-fit: cover; }
.about-photo-card figcaption{
  padding: 12px 14px 14px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 900px){
  .about-gallery-grid{ grid-template-columns: 1fr; }
  .about-photo-card .photo-fill{ aspect-ratio: 16/11; }
}


/* Contact direct email */
.contact-direct-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.contact-direct-actions .btn,
.contact-direct-actions .btn-clay-outline{
  min-width: 200px;
  justify-content:center;
}


.local-seo-section {
  background: linear-gradient(180deg, #f7f4ef 0%, #f2ede4 100%);
  padding: 92px 0;
}
.local-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}
.local-seo-copy h2 { max-width: 14ch; }
.local-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.local-badge {
  border: 1px solid rgba(31,58,95,0.16);
  background: rgba(255,255,255,0.78);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.93rem;
}
.local-seo-card {
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(31,58,95,0.10);
  border-radius: 28px;
  padding: 30px 28px;
  box-shadow: 0 18px 48px rgba(19, 28, 38, 0.08);
}
.local-seo-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
}
.local-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}
.local-list li { color: var(--muted); }
.local-note {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(31,58,95,0.10);
}
@media (max-width: 900px) {
  .local-seo-section { padding: 72px 0; }
  .local-seo-grid { grid-template-columns: 1fr; }
  .local-seo-copy h2 { max-width: none; }
}
