/* ============================================================
   INSTITUTO ARKHE — folha de estilo compartilhada
   Respeita o manual de marca: Terracota / Pergaminho / Grafite,
   Fraunces + Inter + JetBrains Mono. Tema claro e escuro.
   ============================================================ */

:root {
  --bg: #F5EFE6;
  --surface: #FFFCF7;
  --surface-2: #EFE7DA;
  --surface-3: #E5DBC8;
  --text: #1F1B16;
  --text-soft: #4A4036;
  --text-faint: #8A7E70;
  --primary: #C8593A;
  --primary-dark: #A8472D;
  --primary-soft: rgba(200,89,58,0.10);
  --accent: #C8593A;
  --gold: #D9A441;
  --olive: #5C6B47;
  --border: rgba(31,27,22,0.10);
  --border-strong: rgba(31,27,22,0.18);
  --shadow-sm: 0 1px 3px rgba(31,27,22,0.06);
  --shadow: 0 4px 16px rgba(31,27,22,0.08);
  --shadow-lg: 0 16px 48px rgba(31,27,22,0.14);
  --inverse-bg: #1F1B16;
  --inverse-text: #F5EFE6;
  --inverse-text-soft: rgba(245,239,230,0.70);
  --inverse-border: rgba(245,239,230,0.12);
  --header-bg: rgba(245,239,230,0.80);
  --grain-opacity: 0.04;
}
html[data-theme="dark"] {
  --bg: #16120E;
  --surface: #211B15;
  --surface-2: #2A231B;
  --surface-3: #332B21;
  --text: #F5EFE6;
  --text-soft: rgba(245,239,230,0.78);
  --text-faint: rgba(245,239,230,0.50);
  --primary: #DC6B4B;
  --primary-dark: #C8593A;
  --primary-soft: rgba(220,107,75,0.14);
  --accent: #E08763;
  --gold: #E0B25A;
  --olive: #87996B;
  --border: rgba(245,239,230,0.12);
  --border-strong: rgba(245,239,230,0.22);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.55);
  --inverse-bg: #0D0A07;
  --inverse-text: #F5EFE6;
  --inverse-text-soft: rgba(245,239,230,0.70);
  --inverse-border: rgba(245,239,230,0.10);
  --header-bg: rgba(22,18,14,0.80);
  --grain-opacity: 0.05;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
section[id] { scroll-margin-top: 90px; }
img { max-width: 100%; }

body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--primary), var(--gold)); z-index: 150; transition: width 0.1s linear; }

/* ---------- Botões ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 100px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14.5px; cursor: pointer; border: none; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease; text-decoration: none; white-space: nowrap; position: relative; overflow: hidden; }
.btn-primary { background: var(--primary); color: #FFF; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px var(--primary-soft); }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -120%; width: 80%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent); transition: left 0.6s ease; }
.btn-primary:hover::before { left: 140%; }
/* No tema escuro o terracota clareia: texto grafite garante contraste AA */
html[data-theme="dark"] .btn-primary { color: #1F1B16; }
html[data-theme="dark"] .btn-primary::before { background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent); }

/* Foco de teclado visível e consistente em todo o site */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible, .theme-toggle:focus-visible, .faq-item summary:focus-visible,
.persona-tab:focus-visible, .pay-option:focus-visible, .mascot-fixed:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.field input:focus, .field select:focus, .field textarea:focus,
.modal-form input:focus, .modal-form textarea:focus, .modal-form select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-large { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
header.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; background: var(--header-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: padding 0.3s ease, border-color 0.3s ease, background 0.4s ease; }
header.site-header.scrolled { border-bottom-color: var(--border); padding: 10px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-symbol { width: 30px; height: 30px; flex-shrink: 0; }
.logo-text { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: var(--text); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--text-soft); transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--primary); transition: width 0.25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s ease; flex-shrink: 0; }
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); transform: rotate(15deg); }
.theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text); border-radius: 8px; align-items: center; justify-content: center; }
.menu-toggle:hover { background: var(--surface-2); }

/* ---------- Seções ---------- */
section.block { padding: 100px 0; }
section.block + section.block { border-top: 1px solid var(--border); }
.page-top { padding-top: 150px; }
.block-header { text-align: center; margin-bottom: 60px; max-width: 760px; margin-left: auto; margin-right: auto; }
.block-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--primary); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 14px; font-weight: 500; }
.block-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(30px, 4.2vw, 50px); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--text); }
.block-title em { color: var(--accent); font-style: italic; }
.block-sub { font-size: 19px; color: var(--text-soft); }

/* ---------- Inverse blocks ---------- */
.inverse-section { background: var(--inverse-bg); color: var(--inverse-text); border-radius: 28px; padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
.inverse-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at center, rgba(200,89,58,0.16), transparent 50%); pointer-events: none; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px 26px; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; position: relative; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.price-card.featured { border-color: var(--primary); box-shadow: 0 12px 40px var(--primary-soft); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #FFF; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; white-space: nowrap; }
.price-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: var(--text); margin-bottom: 6px; }
.price-tagline { font-size: 13.5px; color: var(--text-faint); margin-bottom: 22px; min-height: 38px; }
.price-value { font-family: 'Fraunces', serif; font-weight: 600; font-size: 40px; line-height: 1; color: var(--text); letter-spacing: -0.02em; }
.price-value .cents, .price-value .per { font-size: 16px; color: var(--text-faint); font-weight: 400; }
.price-cond { font-size: 12.5px; color: var(--text-soft); margin-top: 8px; min-height: 36px; }
.price-cond .pix { color: var(--olive); font-weight: 600; }
.price-divider { height: 1px; background: var(--border); margin: 22px 0; }
.price-features { list-style: none; flex: 1; margin-bottom: 24px; }
.price-features li { font-size: 13.5px; color: var(--text-soft); padding: 7px 0 7px 24px; position: relative; line-height: 1.4; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--olive); font-weight: 700; }
.price-features li.off { color: var(--text-faint); }
.price-features li.off::before { content: '—'; color: var(--text-faint); }

/* ---------- Tabela do que inclui ---------- */
.includes-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 14.5px; }
.includes-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.includes-table td:first-child { color: var(--text); }
.includes-table td:last-child { text-align: right; color: var(--olive); font-weight: 600; }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: start; }
.checkout-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.checkout-panel h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; margin-bottom: 20px; color: var(--text); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; font-family: 'Inter', sans-serif; font-size: 15px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); color: var(--text); transition: border-color 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-methods { display: grid; gap: 10px; margin: 8px 0 4px; }
.pay-option { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: 12px; padding: 16px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.pay-option:hover { border-color: var(--border-strong); }
.pay-option.selected { border-color: var(--primary); background: var(--primary-soft); }
.pay-option input { accent-color: var(--primary); width: 18px; height: 18px; }
.pay-option .pm-title { font-weight: 600; font-size: 15px; color: var(--text); }
.pay-option .pm-desc { font-size: 12.5px; color: var(--text-faint); }
.pay-option .pm-tag { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--olive); font-weight: 600; }

.order-summary { background: var(--inverse-bg); color: var(--inverse-text); border-radius: 20px; padding: 32px; position: sticky; top: 100px; overflow: hidden; }
.order-summary::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(217,164,65,0.14), transparent 55%); pointer-events: none; }
.order-summary .os-label { position: relative; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--inverse-text-soft); margin-bottom: 10px; }
.order-summary .os-name { position: relative; font-family: 'Fraunces', serif; font-weight: 600; font-size: 26px; color: var(--inverse-text); margin-bottom: 16px; }
.order-summary .os-row { position: relative; display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--inverse-border); font-size: 14px; color: var(--inverse-text-soft); }
.order-summary .os-total { position: relative; display: flex; justify-content: space-between; align-items: baseline; padding-top: 18px; margin-top: 8px; }
.order-summary .os-total .lbl { font-size: 14px; color: var(--inverse-text-soft); }
.order-summary .os-total .val { font-family: 'Fraunces', serif; font-weight: 600; font-size: 32px; color: var(--gold); }
.order-summary .os-note { position: relative; font-size: 12px; color: var(--inverse-text-soft); margin-top: 16px; line-height: 1.5; }
.trust-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-faint); }
.trust-item svg { color: var(--olive); flex-shrink: 0; }

/* ---------- Agenda ---------- */
.agenda-embed { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; min-height: 640px; box-shadow: var(--shadow-sm); }
.agenda-embed iframe { width: 100%; min-height: 640px; border: 0; display: block; }
.agenda-fallback { padding: 48px; text-align: center; }
.agenda-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 8px; }
.agenda-step { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.agenda-step .n { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--primary); margin-bottom: 8px; }
.agenda-step h4 { font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 6px; color: var(--text); }
.agenda-step p { font-size: 13.5px; color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: border-color 0.2s ease; }
.faq-item:hover { border-color: var(--border-strong); }
.faq-item summary { cursor: pointer; list-style: none; padding: 22px 28px; font-weight: 500; font-size: 16.5px; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--surface-2); display: flex; align-items: center; justify-content: center; color: var(--primary); font-family: 'JetBrains Mono', monospace; font-size: 16px; flex-shrink: 0; transition: all 0.25s; }
.faq-item[open] .faq-icon { background: var(--primary); color: #FFF; transform: rotate(135deg); }
.faq-answer { padding: 0 28px 24px; color: var(--text-soft); line-height: 1.7; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--inverse-bg); color: var(--inverse-text-soft); padding: 60px 0 32px; border-top: 1px solid var(--inverse-border); font-size: 13.5px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-text { color: var(--inverse-text); }
.footer-brand p { font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: var(--inverse-text-soft); margin-top: 8px; }
.footer-col h5 { font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a { color: var(--inverse-text-soft); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--inverse-text); }
.footer-bottom { border-top: 1px solid var(--inverse-border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--inverse-text-soft); }

/* ---------- Mascote fixo ---------- */
.mascot-fixed { position: fixed; bottom: 24px; right: 24px; z-index: 80; background: var(--surface); border: 1px solid var(--border); border-radius: 50%; width: 62px; height: 62px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.mascot-fixed:hover { transform: scale(1.1) translateY(-2px); box-shadow: var(--shadow-lg); }
.mascot-fixed svg { animation: bob 3s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.mascot-tip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: var(--inverse-bg); color: var(--inverse-text); padding: 8px 14px; border-radius: 10px; font-size: 13px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; box-shadow: var(--shadow); }
.mascot-fixed:hover .mascot-tip { opacity: 1; }

/* ---------- Cachorro ANDANDO (faixa de chão) ---------- */
.dog-ground { position: relative; height: 90px; border-top: 2px dashed var(--border); background: var(--surface-2); overflow: hidden; }
.dog-ground .ground-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }
.dog-walker { position: absolute; bottom: 8px; left: 0; animation: trot 16s linear infinite; will-change: transform; }
.dog-walker svg { display: block; animation: bobwalk 0.5s steps(2) infinite; }
@keyframes trot { from { transform: translateX(-90px); } to { transform: translateX(calc(100vw + 30px)); } }
@keyframes bobwalk { 0% { transform: translateY(0); } 50% { transform: translateY(-3px); } 100% { transform: translateY(0); } }
.dog-ground:hover .dog-walker { animation-play-state: paused; }
.dog-walker .dog-tip { position: absolute; left: 50%; bottom: calc(100% + 6px); transform: translateX(-50%); background: var(--inverse-bg); color: var(--inverse-text); font-size: 11px; padding: 4px 10px; border-radius: 8px; white-space: nowrap; opacity: 0; transition: opacity 0.2s; }
.dog-walker:hover .dog-tip { opacity: 1; }

/* ---------- Modal ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,12,9,0.6); backdrop-filter: blur(8px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; animation: fadeIn 0.2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal { background: var(--surface); border-radius: 20px; padding: 40px; max-width: 460px; width: 100%; position: relative; box-shadow: var(--shadow-lg); animation: modalUp 0.3s cubic-bezier(.2,.8,.2,1); }
@keyframes modalUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; color: var(--text-soft); font-size: 20px; transition: background 0.2s; }
.modal-close:hover { background: var(--surface-2); }
.modal h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 28px; line-height: 1.2; margin-bottom: 8px; color: var(--text); }
.modal h3 em { color: var(--accent); font-style: italic; }
.modal p { color: var(--text-soft); font-size: 15px; margin-bottom: 20px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input, .modal-form textarea, .modal-form select { font-family: 'Inter', sans-serif; font-size: 15px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); color: var(--text); transition: border-color 0.2s; }
.modal-form input:focus, .modal-form textarea:focus, .modal-form select:focus { outline: none; border-color: var(--primary); }
.modal-form textarea { resize: vertical; min-height: 80px; }
.modal-form button { margin-top: 8px; width: 100%; justify-content: center; }
.modal-success { text-align: center; padding: 30px 0; }
.modal-success .check { width: 56px; height: 56px; background: var(--olive); color: #FFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Teste A/B ---------- */
/* A variante A é o padrão; a B é revelada pela classe no <html> (definida no head, sem flash) */
[data-ab] .ab-b { display: none; }
html.ab-hero-b [data-ab="hero"] .ab-a { display: none; }
html.ab-hero-b [data-ab="hero"] .ab-b { display: inline; }

/* ---------- CTA fixo mobile ---------- */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 85; display: none; padding: 12px 16px; background: var(--header-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--border); }
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--header-bg); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); padding: 8px 24px 20px; }
  .nav-links.open a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
  .nav-links.open a::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .agenda-steps { grid-template-columns: 1fr; }
  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }
  .mascot-fixed { bottom: 84px; }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  section.block { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .dog-walker { animation: none !important; left: 24px; }
}
