/* ============================================================
   Farmacia Almendricos — sistema visual
   Paleta tomada de la fachada real:
   verde petróleo del rótulo · arena del pavimento · granito · blanco cálido
   ============================================================ */

:root {
  /* Color */
  --paper:        #faf7f1;   /* blanco cálido luminoso */
  --paper-2:      #f3eee4;   /* arena muy clara */
  --sage:         #e9f0ec;   /* verde-blanco para bloques */
  --sage-line:    #d4e2db;
  --ink:          #20302d;   /* texto principal, carbón cálido */
  --ink-soft:     #4f615c;   /* texto secundario */
  --ink-faint:    #8a958f;
  --green:        #1c6f64;   /* verde petróleo del rótulo */
  --green-deep:   #134b43;
  --green-bright: #2a8a7c;
  --granite:      #182220;   /* granito negro de la fachada */
  --granite-2:    #212d2a;
  --sand:         #c2814f;   /* terracota/arena, acento cálido cercano */
  --sand-soft:    #e7d3bf;
  --line:         #e6ded0;   /* bordes cálidos */
  --line-strong:  #d8cdb9;
  --white:        #ffffff;

  /* Tipografía */
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Medidas */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(24,34,32,.05), 0 2px 8px rgba(24,34,32,.04);
  --shadow-md: 0 4px 14px rgba(24,34,32,.07), 0 12px 38px rgba(24,34,32,.06);
  --shadow-lg: 0 18px 60px rgba(24,34,32,.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Tipografía base ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); text-wrap: balance; }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow .tick { width: 22px; height: 1.5px; background: var(--sand); display: inline-block; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 130px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(24,34,32,.05);
}
/* Sobre el hero (sin scroll): transparente con texto claro */
.site-header.over-hero {
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(11,17,15,.78) 0%, rgba(11,17,15,.45) 55%, rgba(11,17,15,0) 100%);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.site-header.over-hero .wordmark b { color: #fff; }
.site-header.over-hero .wordmark span { color: rgba(255,255,255,.75); }
.site-header.over-hero .nav-links a { color: rgba(255,255,255,.85); }
.site-header.over-hero .nav-links a:hover, .site-header.over-hero .nav-links a.active { color: #fff; background: rgba(255,255,255,.15); }
.site-header.over-hero .status-pill { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: #fff; }
.site-header.over-hero .status-pill.open { background: rgba(42,138,124,.32); border-color: rgba(143,220,205,.5); color: #d7f3ec; }
.site-header.over-hero .menu-toggle { color: #fff; border-color: rgba(255,255,255,.35); }
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 76px;
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand .mark { flex-shrink: 0; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.brand .wordmark b { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; letter-spacing: -.01em; white-space: nowrap; }
.brand .wordmark span { font-size: .68rem; letter-spacing: .06em; color: var(--ink-soft); text-transform: uppercase; font-weight: 600; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 9px 14px; border-radius: 999px;
  font-size: .94rem; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--sage); }

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

/* Live status pill */
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .01em;
  padding: 7px 13px 7px 11px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: var(--white);
  white-space: nowrap;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-faint); flex-shrink: 0; }
.status-pill.open  { color: var(--green-deep); border-color: var(--sage-line); background: var(--sage); }
.status-pill.open .dot { background: var(--green-bright); box-shadow: 0 0 0 0 rgba(42,138,124,.5); animation: pulse 2.4s infinite; }
.status-pill.closed { color: var(--sand); border-color: var(--sand-soft); background: #faf2ea; }
.status-pill.closed .dot { background: var(--sand); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(42,138,124,.45); }
  70%  { box-shadow: 0 0 0 7px rgba(42,138,124,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,138,124,0); }
}
@media (prefers-reduced-motion: reduce) { .status-pill.open .dot { animation: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: .96rem;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .15s ease, background .2s, box-shadow .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(28,111,100,.28); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(28,111,100,.34); }
.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--granite); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }

.menu-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.menu-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   HERO — fachada real como fondo
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 860px);
  display: flex; align-items: flex-end;
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: clamp(48px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,22,20,.30) 0%, rgba(15,22,20,0) 26%),
    linear-gradient(0deg, rgba(11,17,15,.92) 4%, rgba(13,20,18,.72) 32%, rgba(15,22,20,.30) 62%, rgba(15,22,20,.12) 100%),
    linear-gradient(90deg, rgba(11,17,15,.72) 0%, rgba(11,17,15,.18) 52%, rgba(11,17,15,0) 78%);
}
.hero-content { position: relative; width: 100%; }
.hero-inner { display: grid; gap: 26px; max-width: 720px; }
.hero h1 {
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
  font-weight: 500; line-height: 0.98; letter-spacing: -0.025em;
  color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 em { font-style: italic; color: #8fdccd; font-weight: 500; }
.hero .eyebrow { color: #9fe2d4; }
.hero .eyebrow .tick { background: var(--sand); }
.hero .lead {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.45; color: rgba(255,255,255,.9); font-weight: 400; max-width: 38ch;
  text-shadow: 0 1px 16px rgba(0,0,0,.3);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; border-color: #fff; }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  margin-top: 6px; font-size: .92rem; color: rgba(255,255,255,.82); font-weight: 600;
}
.hero-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); }
.hero-meta .stars { color: #e7b07c; letter-spacing: .05em; }
.hero-meta .status-pill { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: #fff; backdrop-filter: blur(6px); }
.hero-meta .status-pill.open { background: rgba(42,138,124,.3); border-color: rgba(143,220,205,.5); color: #d7f3ec; }
.hero-meta .status-pill.closed { background: rgba(194,129,79,.25); border-color: rgba(231,176,124,.5); color: #f3d8c1; }

/* ============================================================
   PRESENTACIÓN
   ============================================================ */
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.intro h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 18px; }
.intro .body { margin-top: 22px; display: grid; gap: 16px; color: var(--ink-soft); font-size: 1.08rem; }
.intro .body strong { color: var(--ink); font-weight: 700; }

.intro-aside { display: grid; gap: 14px; }
.fact {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.fact .ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: var(--sage); color: var(--green); display: flex; align-items: center; justify-content: center; }
.fact .ic svg { width: 21px; height: 21px; }
.fact b { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; display: block; }
.fact span { font-size: .94rem; color: var(--ink-soft); }

/* ============================================================
   SERVICIOS
   ============================================================ */
.services { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 58px); }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-top: 16px; }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 1.1rem; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-line); }
.svc-card .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sage); color: var(--green);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.svc-card .ic svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.32rem; font-weight: 600; }
.svc-card p { margin-top: 10px; color: var(--ink-soft); font-size: .99rem; }

/* ============================================================
   CONFIANZA + RESEÑAS
   ============================================================ */
.trust { background: var(--granite); color: #eef2f0; overflow: hidden; }
.trust::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 460px at 78% -10%, rgba(42,138,124,.22), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, rgba(194,129,79,.12), transparent 60%);
  pointer-events: none;
}
.trust .wrap { position: relative; }
.trust .eyebrow { color: #7fd1c2; }
.trust .eyebrow .tick { background: var(--sand); }
.trust-head { max-width: 720px; }
.trust-head h2 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-top: 16px; }
.trust-head h2 em { font-style: italic; color: #8fdccd; }
.trust-head p { margin-top: 18px; color: #b9c6c1; font-size: 1.12rem; max-width: 54ch; }

.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: clamp(40px, 5vw, 60px); }
.review {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 30px 30px 26px; backdrop-filter: blur(2px);
}
.review .stars { color: #e7b07c; font-size: 1rem; letter-spacing: .12em; }
.review blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: #f3f6f4; margin-top: 16px; font-weight: 400; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.review .who .av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--green-bright), var(--green-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .92rem; }
.review .who b { font-weight: 700; font-size: .98rem; color: #fff; }
.review .who span { font-size: .82rem; color: #93a39d; display: block; }
.trust-foot { display: flex; align-items: center; gap: 14px; margin-top: 30px; font-size: .92rem; color: #93a39d; }
.trust-foot .g { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #cdd8d3; }
.trust-foot .g b { color: #e7b07c; }

/* ============================================================
   HORARIO + UBICACIÓN
   ============================================================ */
.locate { background: var(--paper); }
.locate-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 4vw, 52px); align-items: stretch; }

.info-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 26px;
}
.hours-status { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.hours-status h3 { font-size: 1.5rem; font-weight: 600; }

.hours-list { display: grid; gap: 2px; }
.hours-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 12px 14px; border-radius: 10px; font-size: 1rem;
}
.hours-row .day { font-weight: 600; color: var(--ink); }
.hours-row .time { color: var(--ink-soft); font-variant-numeric: tabular-nums; text-align: right; }
.hours-row.today { background: var(--sage); }
.hours-row.today .day { color: var(--green-deep); }
.hours-row.today .day::after { content: " · hoy"; color: var(--green); font-weight: 700; font-size: .82em; }
.hours-row.closed-day .time { color: var(--ink-faint); }

.contact-block { display: grid; gap: 14px; border-top: 1px solid var(--line); padding-top: 24px; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-row .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--sage); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .ic svg { width: 20px; height: 20px; }
.contact-row .lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); font-weight: 700; }
.contact-row .val { font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.contact-row a.val:hover { color: var(--green); }
.phone-big { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; white-space: nowrap; }

.map-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 380px; position: relative; background: var(--sage); }
.map-fallback { position: absolute; inset: 0; z-index: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; padding: 24px; background:
  radial-gradient(120% 90% at 50% 0%, #eef4f0 0%, var(--sage) 60%); }
.map-fallback .pin { width: 50px; height: 50px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; margin-bottom: 10px; box-shadow: 0 8px 20px rgba(28,111,100,.3); }
.map-fallback .pin svg { width: 24px; height: 24px; }
.map-fallback b { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); font-weight: 600; white-space: nowrap; }
.map-fallback span { font-size: .95rem; color: var(--ink-soft); }
.map-card iframe { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 380px; border: 0; display: block; background: transparent; filter: grayscale(.15) contrast(1.02); }
.map-actions { position: absolute; left: 16px; bottom: 16px; right: 16px; z-index: 2; display: flex; gap: 10px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta { background: var(--green); color: #fff; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 360px at 85% 120%, rgba(255,255,255,.12), transparent 60%); pointer-events: none; }
.cta .wrap { position: relative; text-align: center; }
.cta .wrap > * { margin-inline: auto; }
.cta .wrap > * + * { margin-top: 22px; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); max-width: 20ch; }
.cta h2 em { font-style: italic; color: #cfeae3; }
.cta p { color: #d6ece7; font-size: 1.15rem; max-width: 50ch; }
.cta .btn-primary { background: #fff; color: var(--green-deep); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.cta .btn-primary:hover { background: var(--paper); }
.cta .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--granite); color: #aab6b1; padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand .wordmark b { color: #fff; }
.footer-brand .brand .wordmark span { color: #869690; }
.footer-brand .legal-name { margin-top: 18px; font-size: .92rem; line-height: 1.6; color: #8a9893; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: #6f7e79; font-weight: 800; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col li { font-size: .96rem; color: #aab6b1; }
.footer-col a:hover { color: #fff; }
.footer-col .muted { color: #7e8d88; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding-block: 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  font-size: .85rem; color: #6f7e79;
}
.footer-bottom .links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Cross mark ---------- */
.cross-mark { display: inline-grid; place-items: center; border-radius: 11px; }

/* ---------- Reveal hooks ----------
   El contenido se muestra siempre. Las clases .reveal/.in se conservan como
   puntos de enganche, pero nunca ocultan contenido (este entorno de
   previsualización congela transiciones/animaciones, así que cualquier
   "aparición desde opacidad 0" dejaría la página en blanco). */
.reveal { opacity: 1; transform: none; }

/* ---------- Mobile nav drawer ---------- */
.mobile-menu { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav { gap: 18px; }
  .nav-links { gap: 2px; }
  .nav-cta .status-pill { display: none; }
}

@media (max-width: 940px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .locate-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Nav -> drawer */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 80;
    background: color-mix(in srgb, var(--granite) 96%, transparent);
    backdrop-filter: blur(10px);
  }
  .mobile-menu.open { display: block; }
  .mobile-menu-inner { display: flex; flex-direction: column; height: 100%; padding: 22px var(--gutter); }
  .mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; }
  .mobile-menu .mm-top .close { background: none; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; width: 44px; height: 44px; color: #fff; display: grid; place-items: center; }
  .mobile-menu .mm-top .close svg { width: 22px; height: 22px; }
  .mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
  .mobile-menu nav a { font-family: var(--serif); font-size: 1.9rem; color: #fff; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .mobile-menu .mm-foot { margin-top: auto; display: grid; gap: 12px; }
  .mobile-menu .mm-foot .status-pill { align-self: flex-start; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { height: 66px; gap: 14px; }
  .brand .wordmark span { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .map-actions { flex-direction: column; }
}
