/* =========================================================
   El Jardín de Teo — Propuesta de rediseño
   Asador con terraza en Torrejón de Ardoz ("la mejor terraza
   de Torrejón" según sus propias reseñas). Estética de jardín
   al aire libre + parrilla: verde botánico oscuro (jardín,
   plantas, nebulización) y cobre/ascua cálido (brasa, carbón),
   sobre papel crudo. Sin fotografía real del local disponible
   (su propia web —eljardindeteo.es— es una plantilla de 4
   páginas casi vacía, sin fotos propias, y en la página "Sobre
   el restaurante" usa por error la foto de la fachada de OTRO
   restaurante, Topolino). Se usa su logo real (icono de árbol +
   rótulo versalita) y, en su ausencia, iconografía de línea de
   jardín/parrilla en vez de fotos de stock.
   ========================================================= */

:root {
  /* Marca — jardín (verde botánico oscuro, no sage/oliva ya usado en
     otras propuestas del sector) + brasa (cobre cálido, parrilla) */
  --garden-900: #0d2622;
  --garden-700: #17453b;
  --garden-500: #2c6c5b;
  --garden-300: #9ec4b6;
  --garden-050: #eaf4f0;

  --ember: #bf6b34;
  --ember-dark: #8f4c22;
  --ember-light: #f6e0c8;

  /* Neutros — papel crudo, no blanco de "app" */
  --ink: #1a2420;
  --ink-soft: #58655e;
  --line: #ddd6c4;
  --paper: #faf7ef;
  --paper-soft: #f1ead9;
  --paper-dark: #0f1a16;
  --white: #ffffff;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(13, 38, 34, .08);
  --shadow: 0 16px 38px rgba(13, 38, 34, .14);
  --shadow-lg: 0 26px 64px rgba(13, 38, 34, .26);

  --maxw: 1160px;
  --ease: cubic-bezier(.2, .74, .24, 1);

  --font-body: 'Karla', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Marcellus', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.16; font-weight: 400; letter-spacing: -.005em; color: var(--ink); }

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

/* Eyebrow: versalitas con línea corta, como una etiqueta de vivero */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ember-dark);
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--ember); border-radius: 2px; }

.section { padding: clamp(58px, 8vw, 108px) 0; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); margin: 16px 0 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.04rem; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: 14px 27px; border-radius: var(--radius-pill);
  cursor: pointer; border: 1.5px solid transparent; transition: transform .3s var(--ease), background .25s var(--ease), color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--garden-700); color: #fff; box-shadow: 0 10px 24px rgba(23, 69, 59, .28); }
.btn-primary:hover { background: var(--garden-900); box-shadow: 0 14px 30px rgba(23, 69, 59, .36); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--garden-500); color: var(--garden-700); }
.btn-ember { background: var(--ember); color: #fff; box-shadow: 0 10px 24px rgba(191, 107, 52, .3); }
.btn-ember:hover { background: var(--ember-dark); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
/* Sin foto en el hero (ver nota arriba), así que la cabecera lleva desde el
   principio un fondo sólido claro con texto oscuro: evita el problema de
   contraste del logo entre estado transparente y "scrolled" (gotcha conocido
   en otras propuestas de este mismo pipeline). */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0; background: rgba(250, 247, 239, .88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), box-shadow .35s, border-color .35s;
}
.header.scrolled { box-shadow: 0 6px 22px rgba(13, 38, 34, .08); padding: 10px 0; border-color: var(--line); }

.header .nav { position: relative; z-index: 5; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 400; font-size: 1.28rem; color: var(--garden-900); }
.brand img { width: 34px; height: 34px; flex-shrink: 0; }
.brand b { font-weight: 400; color: var(--ember-dark); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-weight: 600; font-size: .92rem; color: var(--ink-soft); position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--ember); border-radius: 2px; transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.burger { display: none; position: relative; background: none; border: 0; width: 26px; height: 26px; cursor: pointer; color: var(--garden-900); }
.burger svg { position: absolute; inset: 0; margin: auto; width: 100%; height: 100%; transition: opacity .2s; }
.burger .icon-close { opacity: 0; }
.header.menu-open .burger .icon-menu { opacity: 0; }
.header.menu-open .burger .icon-close { opacity: 1; }

/* El panel exterior anima max-height y NO lleva padding propio: si lo llevara,
   el padding no se comprimiría por debajo de max-height y "cerrado" dejaría
   una barra visible tapando la cabecera. El padding real vive en
   .mobile-menu-inner. z-index por debajo de .header .nav (5) para que la
   marca y la hamburguesa (que también cierra el menú) queden siempre
   visibles y pulsables por encima del panel. */
.mobile-menu {
  display: none;
  position: fixed; left: 0; right: 0; top: 0; z-index: 2;
  background: var(--paper); box-shadow: var(--shadow-lg);
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.mobile-menu.open { max-height: 100vh; overflow-y: auto; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 2px; padding: 84px 24px 24px; }
.mm-link { padding: 14px 6px; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); font-size: 1rem; }
.mm-cta { justify-content: center; margin-top: 16px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .burger { display: block; }
  .mobile-menu { display: flex; }
}

/* ---------- Hero (sin foto: logo real + patrón botánico + tipografía) ---------- */
.hero {
  position: relative; padding: clamp(140px, 18vw, 176px) 0 clamp(64px, 8vw, 96px);
  text-align: center; overflow: hidden;
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, var(--garden-050) 0%, transparent 62%),
    repeating-linear-gradient(135deg, rgba(13,38,34,.035) 0 1px, transparent 1px 24px),
    var(--paper);
}
.hero-inner { max-width: 720px; margin-inline: auto; }
.hero-logo { width: 84px; height: 84px; margin: 0 auto 22px; opacity: .92; }
.hero .eyebrow { justify-content: center; margin-bottom: 4px; }
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.7rem); margin: 16px 0 20px; font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--ember); }
.hero .lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; margin: 0 auto 30px; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 32px; }

/* Ficha de hechos reales (rating, reseñas, recomendación oficial) en vez de
   una foto: credibilidad con datos verificables, no con imágenes que no
   tenemos. */
.hero-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.hero-fact {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 9px 16px 9px 10px; font-size: .85rem; color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
.hero-fact b { color: var(--garden-900); font-weight: 700; }
.hero-fact .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ember); flex-shrink: 0; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Divisor botánico ---------- */
.leaf-strip { padding: 26px 0; background: var(--garden-900); overflow: hidden; }
.leaf-row { display: flex; justify-content: center; gap: clamp(18px, 4vw, 40px); flex-wrap: wrap; }
.leaf-row span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.78); font-size: .82rem; font-weight: 600; letter-spacing: .03em; white-space: nowrap; }
.leaf-row svg { width: 16px; height: 16px; color: var(--ember-light); flex-shrink: 0; }

.zones { background: var(--paper-soft); }

/* ---------- Sobre / terraza (texto + rasgos numerados, sin foto) ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-text > p { color: var(--ink-soft); margin-bottom: 14px; font-size: 1.03rem; }
.trait-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.trait { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.trait .ico {
  width: 42px; height: 42px; border-radius: 12px; background: var(--garden-050); color: var(--garden-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trait .ico svg { width: 21px; height: 21px; }
.trait h4 { font-size: 1.02rem; margin-bottom: 4px; font-weight: 600; font-family: var(--font-body); }
.trait p { color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 30px; } }

/* Cita del propio Ayuntamiento — recuadro destacado, no foto */
.official-quote {
  background: var(--garden-900); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 38px); position: relative; overflow: hidden;
}
.official-quote::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 24px);
}
.official-quote > * { position: relative; z-index: 1; }
.official-quote .tag { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-light); margin-bottom: 12px; }
.official-quote p { font-family: var(--font-display); font-size: clamp(1.1rem, 2.2vw, 1.35rem); line-height: 1.45; margin-bottom: 14px; }
.official-quote a { display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; font-weight: 700; color: var(--ember-light); }
.official-quote a:hover { text-decoration: underline; }

/* ---------- La carta (sin PDF ni precios inventados) ---------- */
.degustacion-card {
  background: linear-gradient(135deg, var(--garden-700), var(--garden-900));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 46px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 40px); align-items: center;
  margin-bottom: 46px; position: relative; overflow: hidden;
}
.degustacion-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 1px, transparent 1px 26px);
}
.degustacion-card > * { position: relative; z-index: 1; }
.degustacion-price { text-align: center; }
.degustacion-price .num { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; color: var(--ember-light); }
.degustacion-price .cur { font-size: 1.1rem; opacity: .85; }
.degustacion-price small { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .75; margin-top: 6px; }
.degustacion-body .tag { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-light); margin-bottom: 8px; }
.degustacion-body h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.degustacion-steps { list-style: none; display: grid; gap: 8px; }
.degustacion-steps li { display: flex; gap: 10px; font-size: .95rem; color: rgba(255,255,255,.9); }
.degustacion-steps b { color: var(--ember-light); font-family: var(--font-display); font-weight: 400; flex-shrink: 0; }
@media (max-width: 640px) { .degustacion-card { grid-template-columns: 1fr; text-align: center; } .degustacion-steps li { justify-content: center; } }

.menu-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-bottom: 46px; }
.menu-cat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 22px; text-align: center; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.menu-cat:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--garden-300); }
.menu-cat .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--ember-light); color: var(--ember-dark); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.menu-cat .ico svg { width: 24px; height: 24px; }
.menu-cat h4 { font-size: 1.02rem; margin-bottom: 6px; font-weight: 600; font-family: var(--font-body); }
.menu-cat p { color: var(--ink-soft); font-size: .86rem; }

.favoritos { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 36px); }
.favoritos-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.favoritos-head h3 { font-size: 1.2rem; }
.favoritos-head span { font-size: .82rem; color: var(--ink-soft); }
.favoritos-list { display: flex; flex-wrap: wrap; gap: 10px; }
.favoritos-list span { background: var(--garden-050); color: var(--garden-900); border-radius: var(--radius-pill); padding: 9px 16px; font-size: .88rem; font-weight: 600; }

.menu-note {
  background: var(--paper-soft); border-left: 3px solid var(--ember);
  padding: 16px 22px; margin-top: 26px; color: var(--ink-soft); font-size: .9rem; border-radius: 0 var(--radius) var(--radius) 0;
}
.menu-note b { color: var(--garden-900); }

/* ---------- Stats ---------- */
.stats { background: var(--garden-900); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 54px) clamp(24px, 4vw, 40px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--ember-light); line-height: 1; }
.stat .lbl { color: rgba(255,255,255,.72); font-size: .86rem; margin-top: 10px; line-height: 1.4; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } .stat { border-right: 0; } .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); } }

/* ---------- Celebraciones / grupos ---------- */
.occasions { background: var(--garden-050); }
.celeb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.celeb-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; }
.celeb-card .ico { width: 44px; height: 44px; border-radius: 13px; background: var(--garden-050); color: var(--garden-700); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.celeb-card .ico svg { width: 21px; height: 21px; }
.celeb-card h4 { font-size: 1.02rem; margin-bottom: 8px; font-weight: 600; font-family: var(--font-body); }
.celeb-card p { color: var(--ink-soft); font-size: .9rem; }

/* ---------- Info práctica ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.info-item { padding: 26px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; gap: 14px; }
.info-item .ico { width: 36px; height: 36px; border-radius: 10px; background: var(--ember-light); color: var(--ember-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item .ico svg { width: 18px; height: 18px; }
.info-item h4 { font-size: .98rem; margin-bottom: 6px; font-weight: 600; font-family: var(--font-body); }
.info-item p { color: var(--ink-soft); font-size: .87rem; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: stretch; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.contact-card h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 8px; }
.contact-card > p { color: var(--ink-soft); margin-bottom: 26px; }
.contact-line { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-top: 1px solid var(--line); }
.contact-line:first-of-type { border-top: 0; }
.contact-line .ico { width: 44px; height: 44px; border-radius: 13px; background: var(--garden-050); color: var(--garden-700); display: grid; place-items: center; flex: 0 0 auto; }
.contact-line .ico svg { width: 20px; height: 20px; }
.contact-line small { display: block; color: var(--ink-soft); font-size: .8rem; }
.contact-line b { font-size: 1.02rem; font-weight: 600; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 22px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--garden-700); transition: background .2s, color .2s, border-color .2s; }
.socials a:hover { background: var(--garden-700); color: #fff; border-color: var(--garden-700); }
.socials svg { width: 17px; height: 17px; }
.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; border: 8px solid #fff; }
.map-card iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-box {
  background: linear-gradient(135deg, var(--ember), var(--ember-dark));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(44px, 7vw, 76px) 24px; position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 26px); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box .eyebrow { color: rgba(255,255,255,.88); justify-content: center; }
.cta-box .eyebrow::before { background: rgba(255,255,255,.7); }
.cta-box h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 2.7rem); margin: 12px 0 14px; }
.cta-box p { font-size: 1.06rem; opacity: .93; max-width: 48ch; margin: 0 auto 28px; }
.cta-box .btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.cta-box .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.22); }

/* ---------- Footer ---------- */
.footer { background: var(--paper-dark); color: rgba(255,255,255,.7); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand b { color: var(--ember-light); }
.footer p { font-size: .92rem; opacity: .76; max-width: 36ch; }
.footer h5 { color: #fff; font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer ul a { font-size: .92rem; opacity: .82; transition: opacity .2s, color .2s; }
.footer ul a:hover { opacity: 1; color: var(--ember-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .84rem; opacity: .66; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Llamar flotante ---------- */
/* Botón de llamada directa, no WhatsApp: no se ha encontrado ningún número
   de WhatsApp Business publicado por el negocio (ni en su web, ni en
   Facebook, ni en directorios) — solo teléfono fijo. El CTA persistente
   debe ser el canal 100% verificado hoy: llamar. */
.call-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--ember); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
  border: 1.5px solid rgba(255,255,255,.3); transition: transform .3s var(--ease), background .3s;
}
.call-float:hover { transform: scale(1.07); background: var(--ember-dark); }
.call-float svg { width: 26px; height: 26px; }

/* ---------- Página secundaria (valor.html) ---------- */
.page-hero { padding: 140px 0 50px; text-align: center; }
.page-hero .eyebrow { margin-bottom: 16px; justify-content: center; }

@media (max-width: 720px) {
  .hero { padding-top: 122px; }
}
