/* ============================================================
   Hospital Veterinário da Bicuda — Design System
   Direction: premium · calm-clinical · institutional
   Palette: bordeaux #651F17 + warm white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --bordeaux:       #651F17;
  --bordeaux-deep:  #4A140E;
  --bordeaux-700:   #7C2A20;
  --bordeaux-tint:  #F4EAE7;
  --bordeaux-wash:  #FBF3F0;

  /* Neutrals */
  --paper:   #FBF8F5;
  --paper-2: #F4EDE7;
  --white:   #FFFFFF;
  --ink:     #2B211E;
  --ink-2:   #5E524D;
  --ink-3:   #8C807A;
  --line:    #E8DFD8;
  --line-2:  #D9CDC4;

  /* Whisper accent (from the logo's bird / orange) */
  --accent:      #C9821F;
  --accent-soft: #F0DCBB;

  /* Radius — controlled live by the Tweaks panel */
  --radius-base: 4px;
  --radius:    var(--radius-base);
  --radius-lg: calc(var(--radius-base) * 2.5);
  --radius-pill: 999px;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 130px);

  --shadow-sm: 0 1px 2px rgba(43,33,30,.05), 0 2px 8px rgba(43,33,30,.04);
  --shadow-md: 0 8px 30px rgba(74,20,14,.08), 0 2px 8px rgba(74,20,14,.05);
  --shadow-lg: 0 26px 60px rgba(74,20,14,.16);

  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: .002em;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; color: var(--ink); margin: 0; line-height: 1.08; letter-spacing: -.01em; }
.display { font-size: clamp(2.7rem, 5.4vw, 4.5rem); font-weight: 500; line-height: 1.02; letter-spacing: -.02em; text-wrap: balance; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.6rem); }
.lead { font-size: clamp(1.12rem, 1.5vw, 1.32rem); line-height: 1.6; color: var(--ink-2); font-weight: 400; }
em, .it { font-style: italic; }

.kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-sans);
  font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bordeaux); margin: 0 0 1.1rem;
}
.kicker::before { content: ""; width: 26px; height: 1.5px; background: var(--accent); display: inline-block; }
.kicker.center { justify-content: center; }

.muted { color: var(--ink-2); }
.serif-quote { font-family: var(--font-serif); font-weight: 400; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }
.eyebrow-row { display:flex; align-items:baseline; justify-content:space-between; gap:24px; flex-wrap:wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .92em 1.6em; border-radius: var(--radius);
  border: 1px solid transparent; transition: all .22s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--bordeaux); color: #fff; }
.btn-primary:hover { background: var(--bordeaux-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--bordeaux); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--bordeaux); background: var(--white); }
.btn-light { background: #fff; color: var(--bordeaux); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline-light { background: transparent; color:#fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { border-color:#fff; background: rgba(255,255,255,.08); }
.btn-lg { padding: 1.05em 1.9em; font-size: 1.05rem; }

.link-arrow { display:inline-flex; align-items:center; gap:.5em; font-weight:600; color:var(--bordeaux); font-size:.95rem; }
.link-arrow svg { width:16px; height:16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow span { background-image: linear-gradient(var(--accent),var(--accent)); background-size:0% 1.5px; background-repeat:no-repeat; background-position:0 100%; transition: background-size .25s ease; padding-bottom:2px; }
.link-arrow:hover span { background-size:100% 1.5px; }

/* ---------- Top utility bar ---------- */
.utility {
  background: var(--bordeaux-deep); color: rgba(255,255,255,.86);
  font-size: .82rem; letter-spacing: .01em;
}
.utility .wrap { display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:42px; flex-wrap:wrap; }
.utility a { color: rgba(255,255,255,.86); transition: color .2s; }
.utility a:hover { color:#fff; }
.utility .u-left { display:flex; gap:26px; align-items:center; flex-wrap:wrap; }
.utility .u-item { display:inline-flex; align-items:center; gap:.5em; }
.utility .u-item svg { width:15px; height:15px; opacity:.85; }
.utility .u-emph { color:#fff; font-weight:600; }
.utility .u-emph .dot { width:7px;height:7px;border-radius:50%;background:var(--accent); display:inline-block; box-shadow:0 0 0 3px rgba(201,130,31,.28); }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(251,248,245,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); transition: background .35s ease, border-color .35s ease, transform .35s ease; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 88px; }
.brand { display:flex; align-items:center; gap: 15px; }
.brand img { height: 52px; width:auto; transition: opacity .3s; }
.brand img.brand-white { display:none; }
.brand .bt { display:flex; flex-direction:column; line-height:1; white-space:nowrap; padding-left:15px; border-left:1px solid var(--line-2); transition: border-color .35s; }
.brand .bt .b1 { font-size:.66rem; letter-spacing:.13em; text-transform:uppercase; color:var(--ink-3); font-weight:600; transition: color .35s; }
.brand .bt .b2 { font-family:var(--font-serif); font-size:1.3rem; color:var(--bordeaux); font-weight:600; letter-spacing:-.01em; margin-top:3px; transition: color .35s; }
@media (max-width:440px){ .brand .bt{ display:none; } }

.nav-links { display:flex; align-items:center; gap: 4px; }
.nav-links a { position:relative; padding:.6em .9em; font-weight:500; font-size:.98rem; color:var(--ink); border-radius: var(--radius); transition: color .2s, background .2s; white-space:nowrap; }
.nav-links a:hover { color: var(--bordeaux); }
.nav-links a.active { color: var(--bordeaux); }
.nav-links a.active::after { content:""; position:absolute; left:.95em; right:.95em; bottom:.35em; height:2px; background:var(--accent); border-radius:2px; }
.nav-cta { display:flex; align-items:center; gap:10px; }

.nav-toggle { display:none; width:46px;height:46px; border:1px solid var(--line-2); background:#fff; border-radius:var(--radius); align-items:center;justify-content:center; }
.nav-toggle svg{width:22px;height:22px;color:var(--bordeaux);}

/* Overlay header — transparent over a full-bleed hero, white text */
.site-header.overlay { position: fixed; top:0; left:0; right:0; background: transparent; backdrop-filter:none; border-bottom-color: transparent; }
.site-header.overlay .brand img.brand-color { display:none; }
.site-header.overlay .brand img.brand-white { display:block; }
.site-header.overlay .brand .bt { border-left-color: rgba(255,255,255,.4); }
.site-header.overlay .brand .bt .b1 { color: rgba(255,255,255,.72); }
.site-header.overlay .brand .bt .b2 { color:#fff; }
.site-header.overlay .nav-links a { color: rgba(255,255,255,.88); }
.site-header.overlay .nav-links a:hover, .site-header.overlay .nav-links a.active { color:#fff; }
.site-header.overlay .nav-links a.active::after { background:#fff; }
.site-header.overlay .nav-toggle { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.site-header.overlay .nav-toggle svg { color:#fff; }
.site-header.overlay .btn-primary { background:#fff; color:var(--bordeaux); }
.site-header.overlay .btn-primary:hover { background:var(--bordeaux-tint); }
/* When scrolled, overlay reverts to the solid light header (default rules apply) */
.site-header.overlay.solid { position: fixed; background: rgba(251,248,245,.92); backdrop-filter: blur(14px); border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(74,20,14,.06); }
.site-header.overlay.solid .brand img.brand-color { display:block; }
.site-header.overlay.solid .brand img.brand-white { display:none; }
.site-header.overlay.solid .brand .bt { border-left-color: var(--line-2); }
.site-header.overlay.solid .brand .bt .b1 { color: var(--ink-3); }
.site-header.overlay.solid .brand .bt .b2 { color: var(--bordeaux); }
.site-header.overlay.solid .nav-links a { color: var(--ink); }
.site-header.overlay.solid .nav-links a:hover, .site-header.overlay.solid .nav-links a.active { color: var(--bordeaux); }
.site-header.overlay.solid .nav-links a.active::after { background: var(--accent); }
.site-header.overlay.solid .nav-toggle { background:#fff; border-color: var(--line-2); }
.site-header.overlay.solid .nav-toggle svg { color: var(--bordeaux); }
.site-header.overlay.solid .btn-primary { background: var(--bordeaux); color:#fff; }

/* ---------- Immersive full-bleed hero ---------- */
.hero-full { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--bordeaux-deep); isolation: isolate; }
.hero-full .hero-slot, .hero-full image-slot { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-full .hero-slot { display:block; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(35,11,7,.55) 0%, rgba(35,11,7,0) 26%, rgba(35,11,7,0) 48%, rgba(45,13,8,.62) 82%, rgba(45,13,8,.82) 100%),
    linear-gradient(90deg, rgba(45,13,8,.55) 0%, rgba(45,13,8,.12) 46%, transparent 70%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: 168px clamp(56px, 8vh, 104px); }
.hero-full .kicker { color: #fff; }
.hero-full .kicker::before { background: var(--accent); width: 34px; }
.hero-display { font-family: var(--font-serif); color: #fff; font-weight: 500; font-size: clamp(2.9rem, 6.6vw, 6rem); line-height: .98; letter-spacing: -.022em; max-width: 16ch; text-wrap: balance; text-shadow: 0 2px 40px rgba(20,6,3,.4); }
.hero-display em { font-style: italic; font-weight: 400; }
.hero-lead { color: rgba(255,255,255,.9); font-size: clamp(1.1rem, 1.55vw, 1.4rem); line-height: 1.55; max-width: 50ch; margin: clamp(20px,3vh,30px) 0 clamp(28px,4vh,40px); font-weight: 400; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta { display:flex; gap: clamp(20px,4vw,56px); flex-wrap:wrap; margin-top: clamp(40px,6vh,72px); padding-top: 28px; border-top: 1px solid rgba(255,255,255,.22); }
.hero-meta .hm { color:#fff; }
.hero-meta .hm .hm-n { font-family: var(--font-serif); font-size: clamp(1.7rem,2.6vw,2.4rem); line-height:1; font-weight:500; }
.hero-meta .hm .hm-n small { font-size:.5em; color: var(--accent); vertical-align:.4em; }
.hero-meta .hm .hm-l { display:block; margin-top:.5rem; font-size:.84rem; color: rgba(255,255,255,.72); letter-spacing:.01em; }
.hero-scroll { position:absolute; right: var(--gutter); bottom: clamp(40px,7vh,72px); z-index:2; display:flex; align-items:center; gap:12px; color:rgba(255,255,255,.8); font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; font-weight:600; }
.hero-scroll .hs-ring { width:50px; height:50px; border-radius:50%; border:1px solid rgba(255,255,255,.4); display:flex; align-items:center; justify-content:center; }
.hero-scroll .hs-ring svg { width:20px; height:20px; animation: hsbob 1.8s ease-in-out infinite; }
@keyframes hsbob { 0%,100%{ transform: translateY(-3px); } 50%{ transform: translateY(3px); } }
@media (max-width: 900px){ .hero-scroll{ display:none; } .hero-inner{ padding-top: 130px; } }
@media (prefers-reduced-motion: reduce){ .hero-scroll .hs-ring svg{ animation:none; } }

/* circular icon CTA (Harvard-style) */
.btn-round { width: 58px; height: 58px; border-radius: 50%; padding: 0; flex: none; }
.btn-round svg { width: 22px; height: 22px; }

/* ---------- Full-bleed split band ---------- */
.split-full { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 86vh; background: var(--bordeaux-deep); }
.split-media { position: relative; min-height: 58vh; overflow: hidden; }
.split-media image-slot, .split-media .split-ph { position: absolute; inset: 0; width: 100%; height: 100%; }
.split-copy { display: flex; align-items: center; padding: clamp(48px,7vw,112px) clamp(28px,6vw,92px); background: linear-gradient(155deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%); }
.split-copy-inner { max-width: 32rem; }
.split-copy .kicker { color: #fff; }
.split-copy h2 { color: #fff; }
.split-copy .lead { color: rgba(255,255,255,.84); margin: 1.4rem 0 2.2rem; }
.split-copy .fl-ic { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #fff; }
.split-copy .fl-item strong { color: #fff; }
.split-copy .fl-item p { color: rgba(255,255,255,.7); }
@media (max-width: 880px){ .split-full{ grid-template-columns: 1fr; } .split-media{ min-height: 54vh; } }

/* ---------- Google reviews band ---------- */
.reviews { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.reviews-grid { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.rv-head h2 { margin-top: .2rem; }
.rating-summary { display: flex; align-items: center; gap: 18px; margin: clamp(20px,3vw,28px) 0 22px; }
.rs-score { font-family: var(--font-serif); font-size: clamp(3.2rem, 6vw, 4.4rem); line-height: .9; color: var(--bordeaux); font-weight: 500; }
.rs-meta .stars { margin-bottom: 6px; }
.rs-meta p { margin: 0; font-size: .95rem; color: var(--ink-2); }
.gmark { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; color: var(--ink); vertical-align: -2px; }
.gmark svg { width: 17px; height: 17px; }
.stars { display: inline-flex; gap: 2px; color: #E8A100; }
.stars svg { width: 18px; height: 18px; }
.stars.lg svg { width: 21px; height: 21px; }

.rv-controls { display: flex; gap: 10px; margin-top: 6px; }
.rv-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff; color: var(--bordeaux); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.rv-btn:hover { border-color: var(--bordeaux); background: var(--bordeaux); color: #fff; }
.rv-btn svg { width: 20px; height: 20px; }
.rv-btn[disabled] { opacity: .35; cursor: default; pointer-events: none; }

.reviews-viewport { position: relative; min-width: 0; }
.reviews-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 18px; scrollbar-width: none; -ms-overflow-style: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review { scroll-snap-align: start; flex: 0 0 clamp(280px, 30vw, 340px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 24px 26px; display: flex; flex-direction: column; transition: border-color .25s, box-shadow .25s, transform .25s; }
.review:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.r-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.r-av { width: 44px; height: 44px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 1.05rem; }
.r-id { flex: 1; min-width: 0; }
.r-id strong { display: block; font-size: 1rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.r-id span { font-size: .82rem; color: var(--ink-3); }
.r-g { width: 20px; height: 20px; flex: none; }
.review .stars { margin-bottom: 12px; }
.r-text { margin: 0; font-size: .96rem; color: var(--ink-2); line-height: 1.6; }
.r-text::before { content: "\201C"; }
.r-text::after { content: "\201D"; }

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 24px; }
  .rv-controls { display: none; }
}

/* ---------- Placeholder images ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% 10%, var(--bordeaux-wash) 0%, transparent 55%),
    linear-gradient(150deg, var(--paper-2) 0%, var(--bordeaux-tint) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display:flex; align-items:flex-end;
}
.ph::before {
  content:""; position:absolute; inset:0;
  background: url('assets/logo-mark.png') center/min(46%,180px) no-repeat;
  opacity:.07; filter: grayscale(.2);
}
.ph .ph-label {
  position: relative; z-index:1; margin: 16px; padding: 6px 12px;
  background: rgba(251,248,245,.82); backdrop-filter: blur(4px);
  border:1px solid var(--line); border-radius: var(--radius-pill);
  font-size:.74rem; font-weight:600; letter-spacing:.04em; color: var(--ink-2);
  display:inline-flex; align-items:center; gap:.5em;
}
.ph .ph-label svg { width:14px; height:14px; color: var(--accent); }
.ph.dark { background: linear-gradient(150deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%); border-color:rgba(255,255,255,.12); }
.ph.dark::before { background-image: url('assets/logo-mark-white.png'); opacity:.12; }
.ph.dark .ph-label { background: rgba(0,0,0,.22); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.92); }

/* ---------- Cards & misc components ---------- */
.surface { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); }

/* stats */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; }
.stat { background: var(--white); padding: clamp(22px,3vw,38px) clamp(18px,2.4vw,30px); }
.stat .num { font-family:var(--font-serif); font-size: clamp(2.2rem,4vw,3.1rem); color:var(--bordeaux); font-weight:500; line-height:1; }
.stat .num small { font-size:.5em; vertical-align:.35em; margin-left:.05em; color:var(--accent); }
.stat .lbl { margin-top:.6rem; font-size:.92rem; color:var(--ink-2); line-height:1.4; }

/* footer */
.site-footer { background: var(--bordeaux-deep); color: rgba(255,255,255,.72); padding-block: clamp(56px,7vw,88px) 32px; }
.site-footer a { color: rgba(255,255,255,.72); transition: color .2s; }
.site-footer a:hover { color:#fff; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px,4vw,56px); }
.footer-grid h4 { color:#fff; font-family:var(--font-sans); font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; font-weight:700; margin-bottom:1.2rem; }
.footer-grid ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.7rem; font-size:.95rem; }
.footer-brand img { height:84px; margin-bottom:18px; }
.footer-brand p { font-size:.95rem; max-width:34ch; }
.social { display:flex; gap:10px; margin-top:22px; }
.social a { width:42px; height:42px; border-radius:var(--radius); display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); color:#fff; transition:background .2s, border-color .2s, transform .2s, color .2s; }
.social a:hover { background:var(--accent); border-color:var(--accent); color:var(--bordeaux-deep); transform:translateY(-2px); }
.social svg { width:19px; height:19px; }
.footer-bottom { margin-top: clamp(40px,5vw,64px); padding-top:26px; border-top:1px solid rgba(255,255,255,.14); display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; font-size:.85rem; color:rgba(255,255,255,.55); }
.f-contact { display:flex; flex-direction:column; gap:.85rem; font-size:.95rem; }
.f-contact .fc { display:flex; gap:.7em; align-items:flex-start; }
.f-contact .fc svg { width:17px;height:17px; margin-top:3px; color:var(--accent); flex:none; }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js-reveal [data-reveal] { opacity:0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
  html.js-reveal [data-reveal].in { opacity:1; transform:none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
/* nav collapses earlier now that there are 5 items */
@media (max-width: 1040px) {
  .nav-links, .nav-cta .btn { display:none; }
  .nav-toggle { display:flex; }
  .mobile-menu { position:fixed; inset:0 0 0 auto; width:min(86vw,360px); background:var(--paper); z-index:80; transform:translateX(100%); transition:transform .32s cubic-bezier(.2,.7,.2,1); box-shadow:var(--shadow-lg); display:flex; flex-direction:column; padding:24px; }
  .mobile-menu.open { transform:none; }
}
@media (min-width: 1041px){ .mobile-menu, .scrim { display:none !important; } }
@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2,1fr); }
  body { font-size: 16px; }
}
.scrim { position:fixed; inset:0; background:rgba(43,33,30,.4); z-index:70; opacity:0; pointer-events:none; transition:opacity .3s; }
.scrim.open { opacity:1; pointer-events:auto; }
.mobile-menu .mm-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; }
.mobile-menu a { padding:.85em 0; font-size:1.15rem; font-family:var(--font-serif); color:var(--ink); border-bottom:1px solid var(--line); }
.mobile-menu a.active { color:var(--bordeaux); }
.mobile-menu .btn { margin-top:20px; }
.mm-close { width:44px;height:44px;border:1px solid var(--line-2);background:#fff;border-radius:var(--radius);display:flex;align-items:center;justify-content:center; }
.mm-close svg{width:22px;height:22px;}
@media (max-width:560px){ .stats{grid-template-columns:1fr 1fr;} }
