/* ============================================================
   Taryn Bortz — Registered Dietitian
   Editorial Botanical · Design System
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 2px; }

/* ---------- Tokens ---------- */
:root {
  /* Palette — derived from logo: dusty wine-rose primary,
     warm paper, ink with rose undertone, ochre as warm accent.
     Variable names kept (--forest etc.) so existing inline styles
     don't need to change; values are now rose-family. */
  --paper:       #FAF4EC;
  --paper-warm:  #F2E8DC;
  --cream:       #EBDDD0;
  --ink:         #1F1A1C;
  --ink-soft:    #3D3338;
  --ink-muted:   #6F5F66;
  --ink-faint:   #B0A19F;
  --forest:      #9C3F5C;   /* primary brand rose (was forest green) */
  --forest-deep: #7A2E48;   /* deeper wine-rose for hover/emphasis */
  --moss:        #BF6679;   /* mid rose for soft accents */
  --terracotta:  #B8533A;   /* warm rust — secondary accent, pairs with rose */
  --terracotta-deep: #8E3F2D;
  --ochre:       #C8924A;   /* warm gold — used on dark sections */
  --rule:        rgba(31,26,28,0.12);
  --rule-strong: rgba(31,26,28,0.22);
  --shadow-soft: 0 1px 2px rgba(31,26,28,0.04), 0 8px 24px rgba(31,26,28,0.06);
  --shadow-card: 0 1px 2px rgba(31,26,28,0.04), 0 24px 56px -16px rgba(31,26,28,0.12);

  /* Type */
  --display: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Sizing */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 8px;
}

/* ---------- Base ---------- */
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Subtle paper grain — adds tactile warmth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.106 0 0 0 0 0.122 0 0 0 0 0.102 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

::selection { background: var(--forest); color: var(--paper); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--forest); }

h1.display { font-size: clamp(40px, 5.6vw, 84px); }
h2.display { font-size: clamp(40px, 5.4vw, 80px); }
h3.display { font-size: clamp(28px, 3vw, 44px); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink-muted);
}
.eyebrow.no-rule::before { display: none; }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.body-text { font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 64ch; }
.body-text p + p { margin-top: 1.1em; }
.body-text a { color: var(--terracotta); border-bottom: 1px solid currentColor; }
.body-text a:hover { color: var(--terracotta-deep); }

.section-num {
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* ---------- Layout primitives ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(64px, 10vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(48px, 7vw, 96px) 0; }
.section--cream { background: var(--paper-warm); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .display { color: var(--paper); }
.section--ink .display em { color: var(--ochre); }
.section--ink .eyebrow { color: rgba(250,246,238,0.55); }
.section--ink .eyebrow::before { background: rgba(250,246,238,0.4); }
.section--ink .lead { color: rgba(250,246,238,0.8); }

.divider {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 0;
}
.divider--strong { background: var(--rule-strong); }
.section--ink .divider { background: rgba(250,246,238,0.18); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--forest);
  color: var(--paper);
}
.btn-primary:hover { background: var(--forest-deep); }

.btn-accent {
  background: var(--terracotta);
  color: var(--paper);
}
.btn-accent:hover { background: var(--terracotta-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.section--ink .btn-ghost { color: var(--paper); border-color: rgba(250,246,238,0.3); }
.section--ink .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250,246,238,0.82);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0;
}
.brand-name { font-weight: 400; }
.brand-name em { font-style: italic; color: var(--forest); }
.brand-suffix {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  align-self: center;
}
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 100%;
  transition: opacity .2s ease;
}
.brand:hover .brand-logo { opacity: 0.78; }
@media (max-width: 560px) {
  .brand-logo { height: 36px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(27,31,26,0.05); }
.nav-links a.active { color: var(--ink); background: rgba(27,31,26,0.07); }

.nav-cta { display: flex; gap: 8px; align-items: center; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  position: relative;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  display: block;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after  { top: 5px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px var(--gutter) 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: 12px 16px; font-size: 16px; }
  .nav-cta .btn-secondary-text { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(64px, 9vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero-eyebrow-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.hero-eyebrow-row .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero h1 {
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero-meta-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-meta-block dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  align-self: center;
}
.hero-meta-block dd { color: var(--ink); }

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  display: block;
}
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  pointer-events: none;
}
.portrait-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,83,58,0.18), transparent 55%),
    linear-gradient(180deg, #d6cdb3 0%, #b8a988 60%, #8e7e60 100%);
  position: relative;
  display: grid;
  place-items: end center;
  padding: 28px;
  overflow: hidden;
  border-radius: 24px;
}
.portrait-placeholder::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 56%;
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
  background: linear-gradient(180deg, #BF6679 0%, #9C3F5C 100%);
  opacity: 0.9;
}
.portrait-placeholder::after {
  content: '';
  position: absolute;
  bottom: 56%;
  left: 50%;
  transform: translateX(-50%);
  width: 14%;
  height: 16%;
  border-radius: 50%;
  background: #d8b89a;
  box-shadow: inset 0 -8px 12px rgba(0,0,0,0.15);
}

.portrait-caption {
  position: relative;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(27,31,26,0.55);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-tag {
  position: absolute;
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  box-shadow: var(--shadow-soft);
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3a8a3a;
  box-shadow: 0 0 0 4px rgba(58,138,58,0.18);
}
.hero-tag.tl { top: 24px; left: -20px; }
.hero-tag.br { bottom: 24px; right: -20px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 420px; margin: 0 auto; }
  .hero-tag.tl { left: 8px; }
  .hero-tag.br { right: 8px; }
}

/* ---------- Botanical decorative SVG ---------- */
.botanical {
  position: absolute;
  pointer-events: none;
  color: var(--moss);
  opacity: 0.18;
}
.botanical--tl { top: 60px; left: -40px; width: 180px; transform: rotate(-12deg); }
.botanical--br { bottom: 40px; right: -30px; width: 200px; transform: rotate(160deg); }

/* ---------- Marquee strip ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  background: var(--paper-warm);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-item em { font-style: italic; color: var(--forest); }
.marquee-item .sep {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Specializations grid ---------- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.spec {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  position: relative;
  transition: background .25s ease;
}
.spec:hover { background: var(--paper-warm); }
.spec-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.spec-icon {
  margin: 28px 0 24px;
  width: 44px;
  height: 44px;
  color: var(--forest);
}
.spec-title {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.spec-title em { font-style: italic; color: var(--forest); }
.spec-text {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: auto;
}
@media (max-width: 1100px) {
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
  .spec:nth-child(4), .spec:nth-child(5) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 700px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .specs-grid { grid-template-columns: 1fr; }
}

/* ---------- About preview / Editorial split ---------- */
.editorial {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
.editorial-image {
  aspect-ratio: 4/5;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.editorial-image .portrait-placeholder { aspect-ratio: 4/5; }
.editorial h2 { margin-bottom: 24px; }
.editorial .body-text { margin-bottom: 32px; }

.qual-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.qual-list li {
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.qual-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.qual-list strong { display: block; color: var(--ink); font-weight: 500; }
.qual-list small { font-size: 11px; color: var(--ink-muted); }

@media (max-width: 880px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial-image { max-width: 460px; }
  .qual-list { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--display);
  font-style: italic;
  font-size: 80px;
  line-height: 0.7;
  color: var(--cream);
}
.testimonial blockquote {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.testimonial blockquote em { font-style: italic; color: var(--forest); }
.testimonial cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.testimonial cite strong { color: var(--ink); font-weight: 500; letter-spacing: 0.04em; }

.section--cream .testimonial { background: var(--paper); }

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

/* ---------- Section header (with number + title) ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.section-head-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-head-meta .eyebrow { display: inline-flex; }
.section-head h2 { letter-spacing: -0.02em; }
.section-head-aside {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  align-self: end;
  text-align: right;
}
.section--ink .section-head { border-bottom-color: rgba(250,246,238,0.18); }
.section--ink .section-head-aside { color: rgba(250,246,238,0.6); }

@media (max-width: 640px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head-aside { text-align: left; }
}

/* ---------- Blog filter ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: clamp(32px, 5vw, 56px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.filter-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.filter-btn:hover {
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.filter-btn.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.filter-count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-left: auto;
}
.blog-card.is-hidden { display: none; }
.blog-empty {
  grid-column: 1 / -1;
  padding: 56px 24px;
  text-align: center;
  color: var(--ink-muted);
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  display: none;
}
.blog-empty.is-shown { display: block; }
@media (max-width: 560px) {
  .filter-count { margin-left: 0; flex-basis: 100%; margin-top: 8px; }
}

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-thumb {
  aspect-ratio: 4/3;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.blog-thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.blog-thumb-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
}
.blog-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  gap: 14px;
  align-items: center;
}
.blog-meta .dot { width: 4px; height: 4px; background: var(--ink-faint); border-radius: 50%; }
.blog-card h3 {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.blog-card h3 em { font-style: italic; color: var(--forest); }
.blog-card p { color: var(--ink-soft); font-size: 14px; }
.blog-card .read-more {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}
.blog-card .read-more::after { content: '→'; transition: transform .25s ease; }
.blog-card:hover .read-more::after { transform: translateX(4px); }

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

/* ---------- Practice feature (single location) ---------- */
.practice-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 28px;
  overflow: hidden;
}
.practice-feature__map {
  position: relative;
  min-height: 460px;
  background: var(--cream);
}
.practice-feature__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.practice-feature__body {
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.practice-feature__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.practice-feature__name {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.practice-feature__name em { font-style: italic; color: var(--forest); }
.practice-feature__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.practice-feature__details dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.practice-feature__details dd {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}
.practice-feature__virtual {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--paper-warm);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.practice-feature__virtual-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a8a3a;
  box-shadow: 0 0 0 4px rgba(58,138,58,0.18);
}
.practice-feature__virtual strong { color: var(--ink); font-weight: 500; }
.practice-feature__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}
@media (max-width: 880px) {
  .practice-feature { grid-template-columns: 1fr; }
  .practice-feature__map { min-height: 0; aspect-ratio: 4/3; }
  .practice-feature__details { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .practice-feature__details { grid-template-columns: 1fr; }
}

/* ---------- Locations ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.location-map {
  aspect-ratio: 16/10;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.location-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.location-body { padding: 24px 24px 28px; }
.location-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.location-name {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.location-name em { font-style: italic; color: var(--forest); }
.location-address {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.location-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.location-link:hover { color: var(--terracotta-deep); }

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

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 8vw, 96px) clamp(32px, 5vw, 80px);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--paper); }
.cta-banner h2 em { color: var(--ochre); }
.cta-banner .lead { color: rgba(250,246,238,0.78); margin-top: 18px; }
.cta-banner .cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-banner .cta-actions .btn { justify-content: center; }
.cta-banner .deco {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--moss), transparent 60%);
  opacity: 0.55;
  pointer-events: none;
}
@media (max-width: 880px) {
  .cta-banner { grid-template-columns: 1fr; }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  padding: 36px 32px;
  border: 1px solid var(--rule);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--paper);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.price-card.featured {
  background: var(--ink);
  color: var(--paper);
}
.price-card.featured .price-name,
.price-card.featured .price-amount,
.price-card.featured .price-list strong { color: var(--paper); }
.price-card.featured .price-amount em { color: var(--ochre); }
.price-card.featured .price-tagline,
.price-card.featured .price-list li { color: rgba(250,246,238,0.7); }
.price-card.featured .price-list li::before { background: var(--ochre); }
.price-card.featured .price-divider { background: rgba(250,246,238,0.18); }

.price-name {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.1;
}
.price-name em { font-style: italic; color: var(--forest); }
.price-tagline { font-size: 13px; color: var(--ink-muted); }
.price-amount {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
}
.price-amount em { font-style: italic; color: var(--forest); }
.price-amount .currency {
  font-family: var(--mono);
  font-size: 14px;
  vertical-align: top;
  margin-right: 4px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.price-amount .unit {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 400;
}
.price-divider { height: 1px; background: var(--rule); }
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list li {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  margin-top: 7px;
}
.price-list strong { color: var(--ink); font-weight: 500; }
.price-card .btn { margin-top: auto; align-self: flex-start; }

.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ochre);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

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

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule-strong); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 8px 22px 0;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  transition: color .2s ease;
}
.faq-q em { font-style: italic; color: var(--forest); }
.faq-q:hover { color: var(--terracotta); }
.faq-q .chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.faq-q .chev::before {
  content: '+';
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.faq-item.is-open .faq-q .chev { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: rotate(45deg); }
.faq-item.is-open .faq-q .chev::before { color: var(--paper); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner { padding: 0 8px 24px 0; color: var(--ink-soft); font-size: 15px; line-height: 1.65; max-width: 60ch; }

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

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
}
.contact-aside .info-block { margin-bottom: 32px; }
.contact-aside .info-block:last-child { margin-bottom: 0; }
.contact-aside .info-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.contact-aside .info-value { font-size: 15px; color: var(--ink); }
.contact-aside .info-value a { color: var(--ink); border-bottom: 1px solid var(--rule-strong); }
.contact-aside .info-value a:hover { color: var(--terracotta); border-color: var(--terracotta); }

.form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 22px;
  background: var(--paper-warm);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F1A1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 14px;
  padding-right: 44px;
  cursor: pointer;
}
.field textarea {
  border-radius: 22px;
  padding: 16px 22px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(156,63,92,0.12);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.form .btn { align-self: flex-start; margin-top: 8px; }
.form-foot {
  font-size: 12px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-foot svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--moss); }

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(58,138,58,0.1);
  border-left: 3px solid #3a8a3a;
  border-radius: 16px;
  font-size: 14px;
  color: var(--forest-deep);
}
.form-success.is-shown { display: block; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 8vw, 96px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,246,238,0.16);
}
.footer-brand .display { font-size: 36px; line-height: 1.05; color: var(--paper); margin-bottom: 16px; }
.footer-brand .display em { color: var(--ochre); }
.footer-brand p { color: rgba(250,246,238,0.65); font-size: 14px; max-width: 36ch; }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(250,246,238,0.55);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(250,246,238,0.85); transition: color .2s ease; }
.footer-col a:hover { color: var(--ochre); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(250,246,238,0.5);
}
.footer-bottom a { color: rgba(250,246,238,0.7); }
.footer-bottom a:hover { color: var(--ochre); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Article (blog post) ---------- */
.article {
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 9vw, 128px);
}
.article-header {
  max-width: 780px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.article-header .eyebrow { justify-content: center; margin-bottom: 24px; }
.article-header h1 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.article-header h1 em { font-style: italic; color: var(--forest); }
.article-header .lead { margin: 0 auto 28px; }
.article-meta {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.article-body > * + * { margin-top: 1.4em; }
.article-body h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 2.2em;
}
.article-body h2 em { font-style: italic; color: var(--forest); }
.article-body h3 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-top: 1.8em;
}
.article-body p strong { color: var(--ink); font-weight: 500; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.3;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-left: 3px solid var(--terracotta);
  padding: 8px 0 8px 28px;
  margin: 1.6em 0;
}
.article-body .pull-quote {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.25;
  font-style: italic;
  color: var(--forest);
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 2em 0;
  text-align: center;
}
.article-body .callout {
  background: var(--paper-warm);
  border-left: 3px solid var(--moss);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 2em 0;
  font-size: 16px;
}
.article-body .callout strong { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss); margin-bottom: 8px; }
.article-body .first-letter::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-size: 5em;
  line-height: 0.85;
  float: left;
  padding: 8px 12px 0 0;
  color: var(--forest);
}

/* ---------- Article share ---------- */
.share {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.share-label .eyebrow { display: inline-flex; }
.share-hint {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 6px;
  line-height: 1.5;
}
.share-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.share-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.share-btn svg { width: 16px; height: 16px; }
.share-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.share-btn.is-copied {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}
.share-btn::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.share-btn:hover::after,
.share-btn.show-tip::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 560px) {
  .share { flex-direction: column; align-items: flex-start; gap: 16px; }
}

.article-foot {
  max-width: 720px;
  margin: 32px auto 0;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.article-foot .author {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.article-foot .author strong { color: var(--ink); font-weight: 500; }

/* ---------- Page intro (used on inner pages) ---------- */
.page-intro {
  padding: clamp(56px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.page-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
}
.page-intro h1.display { font-size: clamp(36px, 5vw, 68px); }
.page-intro .lead { margin-top: 24px; }
.page-intro-aside {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: grid;
  gap: 8px;
}
.page-intro-aside p { color: var(--ink-soft); font-size: 13px; line-height: 1.6; letter-spacing: 0; text-transform: none; font-family: var(--body); margin-top: 6px; }
@media (max-width: 880px) {
  .page-intro-grid { grid-template-columns: 1fr; }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat {
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: var(--ink);
}
.stat-num em { font-style: italic; color: var(--forest); }
.stat-num sub {
  font-family: var(--mono);
  font-size: 14px;
  vertical-align: top;
  margin-left: 4px;
  color: var(--ink-muted);
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 12px;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* ---------- Service rows (services.html) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 280px 200px;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}
.service-row:first-child { border-top: 1px solid var(--rule-strong); }
.service-row:last-child { border-bottom: 1px solid var(--rule-strong); }
.service-row .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.service-row h3 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.service-row h3 em { font-style: italic; color: var(--forest); }
.service-row p { font-size: 14px; color: var(--ink-soft); max-width: 56ch; }
.service-row .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.service-row .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-muted);
}
.service-row .price-line {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}
.service-row .price-line .currency { font-family: var(--mono); font-size: 12px; vertical-align: top; margin-right: 4px; color: var(--ink-muted); }
.service-row .price-line small {
  display: block;
  font-family: var(--body);
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 6px;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: none;
}
.service-row .row-cta { display: flex; flex-direction: column; gap: 8px; }
.service-row .row-cta .btn { width: 100%; justify-content: center; padding: 12px 18px; font-size: 13px; }

@media (max-width: 1100px) {
  .service-row { grid-template-columns: 60px 1fr; gap: 16px 24px; }
  .service-row .price-line, .service-row .row-cta { grid-column: 2; }
  .service-row .price-line { margin-top: 8px; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 60ms; }
.reveal-delay-2 { transition-delay: 120ms; }
.reveal-delay-3 { transition-delay: 180ms; }
.reveal-delay-4 { transition-delay: 240ms; }
.reveal-delay-5 { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(27,31,26,0.08), 0 14px 32px -10px rgba(27,31,26,0.35);
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition: opacity .28s cubic-bezier(.2,.7,.2,1),
              transform .28s cubic-bezier(.2,.7,.2,1),
              background .2s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top:hover { background: var(--terracotta); }
.scroll-top:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
.scroll-top svg { width: 18px; height: 18px; }
@media (max-width: 560px) {
  .scroll-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
  .scroll-top svg { width: 16px; height: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-top { transition: opacity .2s ease; transform: none; }
  .scroll-top.is-visible { transform: none; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--forest);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: 4px;
  z-index: 100;
  font-size: 13px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
