/* ============================================================
   Bonnie Doon Grooming — main.css
   Single bundle: @font-face + tokens + base + components.
   Direction: "Calm Editorial".
   ============================================================ */

/* ===== self-hosted fonts (woff2 only; modern browsers) ===== */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/newsreader/newsreader-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/newsreader/newsreader-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/newsreader/newsreader-latin-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/mulish/mulish-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/hanken-grotesk/hanken-grotesk-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/hanken-grotesk/hanken-grotesk-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/hanken-grotesk/hanken-grotesk-latin-700-normal.woff2') format('woff2');
}

/* ===== tokens ===== */
:root {
  /* warm neutrals */
  --cream:      #F6F0E6;
  --paper:      #FCF8F1;
  --paper-2:    #F1E8DA;
  --line:       #E6DBC9;
  --line-soft:  #EFE7D8;

  /* ink */
  --ink:        #2C231C;
  --ink-soft:   #5A4D42;
  --ink-mute:   #8B7D6E;

  /* terracotta / brown brand */
  --brown:      #4A3527;
  --terra:      #B65C3A;
  --terra-deep: #9A4A2C;
  --terra-soft: #F0DDCD;

  /* slate-blue trust accent */
  --blue:       #4F7CAC;
  --blue-deep:  #3C6593;
  --blue-soft:  #DEE8F2;

  /* gold (sparing) */
  --gold:       #E0A23D;
  --gold-soft:  #F6E6C8;

  /* type */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body:    'Mulish', system-ui, -apple-system, sans-serif;
  --font-ui:      'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* shadow */
  --shadow-sm: 0 2px 8px rgba(74,53,39,.06);
  --shadow-md: 0 14px 34px rgba(74,53,39,.10);
  --shadow-lg: 0 26px 60px rgba(74,53,39,.16);

  /* layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ===== resets ===== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: -.01em;
  line-height: 1.05;
}
p { margin: 0; text-wrap: pretty; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== shared labels / type ===== */
.kicker {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--terra); font-size: clamp(19px, 2vw, 22px);
}
.lead { font-size: clamp(18px, 2vw, 20px); line-height: 1.6; color: var(--ink-soft); }
.muted { color: var(--ink-mute); }

/* ===== buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-ui); font-weight: 700; font-size: 16px;
  border-radius: var(--r-pill); padding: 15px 26px; border: 1.6px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--terra); color: #fff; }
.btn-primary:hover { background: var(--terra-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: #CDBFAE; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(74,53,39,.04); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn .ico { width: 18px; height: 18px; flex: none; }

.textlink { font-family: var(--font-ui); font-weight: 700; color: var(--terra); display: inline-flex; align-items: center; gap: 7px; }
.textlink:hover { color: var(--terra-deep); }
.textlink .ico { width: 16px; height: 16px; transition: transform .15s ease; }
.textlink:hover .ico { transform: translateX(3px); }

/* ===== photo placeholders ===== */
.ph {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: repeating-linear-gradient(135deg, #E8DAC6 0 15px, #E2D1BA 15px 30px);
}
.ph[data-label]::after {
  content: attr(data-label); position: absolute; left: 14px; bottom: 13px; right: 14px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .01em;
  color: #82705A; background: rgba(252,248,241,.86);
  padding: 7px 10px; border-radius: 8px; line-height: 1.35;
}
.ph:has(img.fill)[data-label]::after { display: none; }
.ph.dark { background: repeating-linear-gradient(135deg, #5B4636 0 16px, #503E2F 16px 32px); }
.ph.dark[data-label]::after { color: #EADFCB; background: rgba(40,30,22,.6); }
.ph.blue { background: repeating-linear-gradient(135deg, #CBD9E8 0 15px, #BFD0E2 15px 30px); }
.ph.fill { width: 100%; height: 100%; position: absolute; inset: 0; border-radius: 0; }
.ph img.fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Header / navigation
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 50%; background: var(--terra); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 20px; flex: none;
}
.brand .name { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--brown); letter-spacing: -.01em; white-space: nowrap; }
.brand .name small { display: block; font-family: var(--font-ui); font-weight: 600; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--font-ui); font-weight: 600; font-size: 15.5px; color: var(--ink-soft); transition: color .15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--font-ui); font-weight: 700; font-size: 15.5px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.nav-phone .ico { width: 16px; height: 16px; color: var(--terra); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--paper); border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center;
}
.mobile-menu { display: none; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px; position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top:  6px; }

/* ============================================================
   CTA band (bottom of every page) + hours card
   ============================================================ */
.cta-band {
  background: var(--brown); color: #fff;
  border-radius: var(--r-lg); padding: clamp(36px, 5vw, 64px);
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: clamp(28px, 5vw, 56px); align-items: center;
}
.cta-band h2 { color: #fff; font-size: clamp(30px, 3.6vw, 44px); }
.cta-band p  { color: rgba(255,255,255,.82); font-size: 18px; margin-top: 14px; max-width: 40ch; }
.cta-band .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hours-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md); padding: 26px 28px;
}
.hours-card h4 {
  font-family: var(--font-ui); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 16px;
}
.hours-row {
  display: flex; justify-content: space-between; gap: 16px; padding: 9px 0;
  font-family: var(--font-ui); font-size: 15.5px;
  border-top: 1px solid rgba(255,255,255,.1); white-space: nowrap;
}
.hours-row:first-of-type { border-top: 0; }
.hours-row span:first-child { color: rgba(255,255,255,.82); font-weight: 600; }
.hours-row span:last-child  { color: #fff; font-weight: 700; }
.hours-row.closed span:last-child { color: rgba(255,255,255,.5); }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero { padding-block: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 32px); }
.page-hero h1 { font-size: clamp(38px, 5vw, 58px); max-width: 18ch; }
.page-hero p  { margin-top: 18px; max-width: 54ch; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; padding-block: 64px 40px;
}
.footer-grid h5 {
  font-family: var(--font-ui); font-weight: 700; font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 16px;
}
.footer-grid a, .footer-grid p {
  font-family: var(--font-ui); font-size: 15px; color: var(--ink-soft);
  display: block; margin-bottom: 9px;
}
.footer-grid a:hover { color: var(--terra); }
.footer-brand .name { font-family: var(--font-display); font-size: 22px; color: var(--brown); margin-bottom: 10px; }
.footer-brand p { max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-block: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center;
}
.footer-bottom p { font-family: var(--font-ui); font-size: 13.5px; color: var(--ink-mute); margin: 0; }
.disclaimer { font-style: italic; }
.foot-credits {
  font-family: var(--font-ui); font-size: 12px; color: var(--ink-mute);
  margin: 0 0 18px; line-height: 1.7;
}
.foot-credits a { color: var(--ink-mute); text-decoration: underline; text-underline-offset: 2px; }
.foot-credits a:hover { color: var(--terra); }

/* ============================================================
   Responsive — chrome breakpoints
   (Component-specific breakpoints added in their respective sections.)
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav-links, .nav-actions .nav-phone, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-toggle span { background: transparent; }
  .site-header.open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
  .site-header.open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu { display: none; }
  .site-header.open + .mobile-menu { display: block; }
  .mobile-menu {
    border-top: 1px solid var(--line); background: var(--paper);
    padding: 14px var(--gutter) 22px;
  }
  .mobile-menu a {
    display: block; font-family: var(--font-ui); font-weight: 700; font-size: 18px;
    color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line-soft);
  }
  .mobile-menu .mm-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
  .mobile-menu .btn { width: 100%; }

  .cta-band { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .cta-row .btn { width: 100%; }
  .nav-actions .btn-primary { display: none; }
}

/* ============================================================
   Home — hero
   ============================================================ */
.hero { padding-top: clamp(24px, 4vw, 48px); padding-bottom: clamp(40px, 5vw, 64px); }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 56px); align-items: center;
}
.hero h1 { font-size: clamp(40px, 5.2vw, 64px); margin: 16px 0 22px; }
.hero h1 em { font-style: italic; color: var(--terra); }
.hero .lead { max-width: 42ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-meta {
  margin-top: 26px; font-family: var(--font-ui); font-size: 14.5px;
  color: var(--ink-mute); display: flex; align-items: center; gap: 10px;
}
.hero-meta b { color: var(--ink); font-weight: 700; }
.hero-art { position: relative; }
.hero-art .ph { aspect-ratio: 5/4.4; }
.hero-badge {
  position: absolute; left: -18px; bottom: 34px; background: var(--paper);
  border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px; max-width: 248px;
}
.hero-badge .ic {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue-deep);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.hero-badge .ic .ico { width: 20px; height: 20px; }
.hero-badge span { font-family: var(--font-ui); font-weight: 600; font-size: 13.5px; line-height: 1.3; color: var(--ink-soft); }

/* services strip under hero */
.svc-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.svc-strip .row { display: flex; }
.svc-strip .item {
  flex: 1; padding: 18px 22px;
  font-family: var(--font-ui); font-weight: 600; font-size: 15.5px;
  color: var(--ink-soft); border-right: 1px solid var(--line);
  display: flex; align-items: center; gap: 11px;
}
.svc-strip .item:last-child { border-right: 0; }
.svc-strip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--terra); flex: none; }

/* ============================================================
   Section heading block
   ============================================================ */
.head-block { max-width: 62ch; }
.head-block.center { margin-inline: auto; }
.head-block h2 { font-size: clamp(30px, 3.6vw, 44px); margin: 12px 0 16px; }
.head-block p { font-size: clamp(17px, 1.8vw, 19px); color: var(--ink-soft); }

/* ============================================================
   Service cards (home)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-card .ico-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--terra-soft); color: var(--terra-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-card .ico-wrap .ico { width: 26px; height: 26px; }
.svc-card h3 { font-size: 23px; margin-bottom: 8px; }
.svc-card p  { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
.svc-card .from { margin-top: 16px; font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--ink-mute); }
.svc-card .from b { color: var(--terra); font-size: 16px; }
.svc-card.not-sure { display: flex; flex-direction: column; justify-content: center; background: var(--terra-soft); border-color: #E6C8B4; }
.svc-card.not-sure h3 { font-size: 25px; }
.svc-card.not-sure p { color: #6e4a33; }
.svc-card.not-sure .textlink { margin-top: 16px; }

/* ============================================================
   Pricing teaser / matrix
   ============================================================ */
.price-cols { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.price-panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  padding: clamp(24px, 3vw, 36px);
}
.size-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.size-tab {
  font-family: var(--font-ui); font-weight: 700; font-size: 14.5px; color: var(--ink-soft);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-pill);
  padding: 10px 18px; cursor: pointer; transition: all .14s ease;
  display: flex; flex-direction: column; align-items: center; line-height: 1.15;
}
.size-tab small { font-weight: 600; font-size: 11px; color: var(--ink-mute); }
.size-tab:hover { border-color: var(--terra); }
.size-tab.active { background: var(--terra); border-color: var(--terra); color: #fff; }
.size-tab.active small { color: rgba(255,255,255,.85); }

.price-list { margin-top: 0; display: flex; flex-direction: column; }
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 4px; border-top: 1px solid var(--line);
}
.price-row:first-child { border-top: 0; }
.price-row .pn { font-family: var(--font-ui); font-weight: 700; font-size: 17px; color: var(--ink); }
.price-row .pd { font-size: 14px; color: var(--ink-mute); margin-top: 2px; }
.price-row .pv { font-family: var(--font-display); font-size: 26px; color: var(--terra); white-space: nowrap; }
.price-row .pv small { font-family: var(--font-ui); font-size: 12px; font-weight: 700; color: var(--ink-mute); display: block; text-align: right; letter-spacing: .04em; text-transform: uppercase; }

.price-note {
  margin-top: 16px; display: flex; gap: 11px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-soft);
  background: var(--blue-soft); border-radius: var(--r-md); padding: 14px 16px;
}
.price-note .ico { width: 18px; height: 18px; color: var(--blue-deep); flex: none; margin-top: 2px; }

/* ============================================================
   Callout (anxious dogs) — blue accent moment
   ============================================================ */
.callout { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.callout-card { background: var(--blue-soft); border-radius: var(--r-lg); padding: clamp(32px, 4vw, 52px); }
.callout-card h2 { color: var(--blue-deep); font-size: clamp(28px, 3.4vw, 40px); margin: 12px 0 16px; }
.callout-card p  { color: #36506C; font-size: 18px; }
.callout-card ul { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.callout-card li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--font-ui); font-weight: 600; color: #33485f;
}
.callout-card li .ico { width: 20px; height: 20px; color: var(--blue-deep); flex: none; margin-top: 1px; }
.callout-art .ph { aspect-ratio: 4/4.6; height: 100%; }

/* ============================================================
   Quote
   ============================================================ */
.quote { max-width: 46ch; margin-inline: auto; text-align: center; }
.quote blockquote {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.25;
  color: var(--brown); margin: 0;
}
.quote .by { margin-top: 24px; font-family: var(--font-ui); font-weight: 700; color: var(--ink); }
.quote .by small { display: block; font-weight: 600; color: var(--ink-mute); margin-top: 2px; }

/* ============================================================
   Responsive — home page
   ============================================================ */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { order: -1; }
  .hero-art .ph { aspect-ratio: 16/11; }
  .hero-badge { left: auto; right: 16px; bottom: 16px; }
  .svc-strip .row { flex-wrap: wrap; }
  .svc-strip .item { flex: 1 1 50%; border-bottom: 1px solid var(--line); }
  .svc-strip .item:nth-child(2) { border-right: 0; }
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .callout { grid-template-columns: 1fr; }
  .callout-art { order: -1; }
  .callout-art .ph { aspect-ratio: 16/10; }
  .price-cols { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .hero-cta .btn { width: 100%; }
  .price-row .pv { font-size: 22px; }
}

/* ============================================================
   Services page — detail list + pricing matrix + add-ons + steps
   ============================================================ */
.svc-list { display: flex; flex-direction: column; gap: 18px; margin-top: 46px; }
.svc-row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 24px; align-items: start;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 32px;
  transition: box-shadow .15s ease;
}
.svc-row:hover { box-shadow: var(--shadow-sm); }
.svc-row .ico-wrap {
  margin-bottom: 0; width: 54px; height: 54px; border-radius: 15px;
  background: var(--terra-soft); color: var(--terra-deep);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.svc-row .ico-wrap .ico { width: 27px; height: 27px; }
.svc-row h3 { font-size: 25px; }
.svc-row .desc { color: var(--ink-soft); font-size: 15.5px; margin-top: 8px; max-width: 54ch; }
.svc-row .inc { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.inc-chip {
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  color: var(--ink-soft); background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 6px 12px; display: inline-flex; align-items: center; gap: 6px;
}
.inc-chip .ico { width: 13px; height: 13px; color: var(--terra); }
.svc-row .price-col { text-align: right; white-space: nowrap; }
.svc-row .price-col .pv2 { font-family: var(--font-display); font-size: 30px; color: var(--terra); line-height: 1.1; }
.svc-row .price-col small {
  display: block; font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute);
}

/* full pricing matrix */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--line);
  border-radius: var(--r-lg); background: var(--paper); box-shadow: var(--shadow-sm);
}
.price-table { width: 100%; min-width: 640px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 20px 22px; text-align: right; }
.price-table th:first-child, .price-table td:first-child { text-align: left; }
.price-table thead th {
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute);
  border-bottom: 1.5px solid var(--line); background: var(--paper-2);
}
.price-table thead th small { display: block; font-weight: 600; font-size: 11px; color: var(--ink-mute); text-transform: none; letter-spacing: 0; margin-top: 2px; }
.price-table tbody td { border-bottom: 1px solid var(--line-soft); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover td { background: #FBF6EE; }
.price-table .svc-name { font-family: var(--font-ui); font-weight: 700; font-size: 16.5px; color: var(--ink); }
.price-table .svc-sub  { font-family: var(--font-ui); font-weight: 600; font-size: 13px;  color: var(--ink-mute); margin-top: 2px; }
.price-table .amt2 { font-family: var(--font-display); font-size: 21px; color: var(--terra); }
.price-table .amt2.flat { color: var(--ink); }

/* add-ons */
.addons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; }
.addon { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.addon .an { font-family: var(--font-ui); font-weight: 600; font-size: 15.5px; color: var(--ink); }
.addon .av { font-family: var(--font-ui); font-weight: 700; color: var(--terra); }

/* "what to expect" steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.step .num { font-family: var(--font-display); font-size: 40px; color: var(--terra); line-height: 1; }
.step h3 { font-size: 21px; margin: 14px 0 8px; }
.step p  { color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   About — story, bios
   ============================================================ */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.story .ph { aspect-ratio: 4/3.4; }
.story-text p { color: var(--ink-soft); font-size: 18px; margin-bottom: 18px; }

.bios { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 46px; }
.bio { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.bio .ph { aspect-ratio: 4/3.2; border-radius: 0; }
.bio .body { padding: 28px; }
.bio h3 { font-size: 26px; }
.bio .role {
  font-family: var(--font-ui); font-weight: 700; font-size: 13.5px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--terra); margin: 6px 0 14px;
}
.bio p { color: var(--ink-soft); font-size: 15.5px; }
.bio .own {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 14px; color: var(--ink-mute);
}
.bio .own .ico { width: 18px; height: 18px; color: var(--terra); flex: none; }

/* ============================================================
   Book page — form, sidebar
   ============================================================ */
.book-grid { display: grid; grid-template-columns: 1.5fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 22px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label, .field > .lbl {
  display: block; font-family: var(--font-ui); font-weight: 700;
  font-size: 14px; color: var(--ink); margin-bottom: 8px;
}
.field label .opt { font-weight: 600; color: var(--ink-mute); }
.input, .select, .textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color .15s ease, box-shadow .15s ease;
}
.input::placeholder, .textarea::placeholder { color: #A99B8B; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px var(--terra-soft);
}
.input.error, .select.error, .textarea.error { border-color: #C0463A; box-shadow: 0 0 0 3px rgba(192,70,58,.18); }
.field-error { margin-top: 6px; font-family: var(--font-ui); font-size: 13px; color: #9A2F25; }
.textarea { resize: vertical; min-height: 104px; line-height: 1.5; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%238B7D6E' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-radio { position: relative; }
.chip-radio input { position: absolute; opacity: 0; pointer-events: none; }
.chip-radio span {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-weight: 600; font-size: 14.5px;
  color: var(--ink-soft); background: var(--cream);
  border: 1.5px solid var(--line); border-radius: var(--r-pill);
  padding: 10px 16px; cursor: pointer; transition: all .14s ease;
}
.chip-radio span:hover { border-color: var(--terra); }
.chip-radio input:checked + span { background: var(--terra); border-color: var(--terra); color: #fff; }
.chip-radio input:focus-visible + span { outline: 2px solid var(--terra); outline-offset: 2px; }

.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 8px; }
.form-foot .note { font-family: var(--font-ui); font-size: 13.5px; color: var(--ink-mute); }

/* book sidebar */
.book-side > * + * { margin-top: 20px; }
.side-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 28px; }
.side-card.call { background: var(--terra-soft); border-color: #E6C8B4; }
.side-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; }
.side-card .big-phone { font-family: var(--font-display); font-size: 30px; color: var(--terra-deep); margin: 6px 0 4px; }
.side-card p { font-size: 15px; color: var(--ink-soft); }
.side-card .matted {
  display: flex; gap: 11px; align-items: flex-start; margin-top: 14px; padding-top: 16px;
  border-top: 1px solid #E6C8B4; font-size: 14.5px; color: #7A4B33;
}
.side-card .matted .ico { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--terra-deep); }
.side-card.numbered { padding-left: 28px; }
.side-card.numbered ol { list-style: decimal; padding-left: 20px; margin: 12px 0 0; }
.side-card.numbered li { font-family: var(--font-ui); font-size: 15px; color: var(--ink-soft); padding-left: 4px; margin-bottom: 8px; line-height: 1.5; }
.side-card.numbered li strong { color: var(--ink); font-weight: 700; }
.side-card.visit { background: var(--blue-soft); border-color: #BFD0E2; }
.side-card.visit h3 { color: var(--blue-deep); }
.side-card.visit p { color: #36506C; }

/* success block (book page) */
.success-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm);
}
.success-card .success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #DFEFD9; color: #2E6B25;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.success-card .success-icon .ico { width: 30px; height: 30px; }
.success-card h2 { color: var(--brown); font-size: clamp(26px, 3vw, 32px); margin-bottom: 12px; }
.success-card p  { color: var(--ink-soft); margin-bottom: 16px; }
.success-card ol { padding-left: 20px; margin: 8px 0 0; }
.success-card li { font-family: var(--font-ui); font-size: 15px; color: var(--ink-soft); margin-bottom: 8px; }

/* ============================================================
   Responsive — services + about + book
   ============================================================ */
@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; }
  .story .ph { aspect-ratio: 16/10; }
  .bios { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .book-side { order: -1; }
  .field.row2 { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 14px; }
  .svc-row .price-col { text-align: left; }
}
