/* ==========================================================================
   Restaurant Argentina — White Apple-minimal design system (2026-06-14)
   Single white theme. No dark mode, no WebGL fire, no FUEGO knob, no grain.
   Shared across the homepage + 3000+ pages: keep every class name.
   ========================================================================== */

:root {
  color-scheme: light;

  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --surface: #ffffff;
  --border: #d2d2d7;
  --hairline: #e8e8ed;

  --text: #1d1d1f;
  --text-2: #6e6e73;
  --text-3: #86868b;

  --link: #0066cc;
  --cta: #1d1d1f;
  --cta-text: #ffffff;
  --ember: #c8553d;

  --radius: 18px;
  --max: 1080px;

  /* Back-compat aliases for shared pages that still use the old token names */
  --panel: var(--surface);
  --panel-strong: var(--surface);
  --muted: var(--text-2);
  --text-soft: var(--text-2);
  --accent: var(--link);
  --accent-2: var(--ember);
  --success: #1a7f37;
  --shadow: 0 1px 3px rgba(0, 0, 0, .04);
  --max-width: var(--max);
  --surface-2: var(--bg-alt);
  --border-strong: var(--border);
  --card-bg: var(--surface);
  --card-solid: var(--surface);
  --nav-bg: rgba(255, 255, 255, .8);
  --heading-shadow: none;
  --btn-from: var(--cta);
  --btn-to: var(--cta);
  --btn-text: var(--cta-text);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", system-ui, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 .5em;
  text-shadow: none;
}

p { margin: 0 0 1em; color: var(--text-2); }

strong { color: var(--text); font-weight: 600; }

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--link) 55%, transparent);
  outline-offset: 2px;
}

/* Legacy fire/knob/grain artifacts hard-disabled in case any page still ships them */
#bg-canvas,
.grain,
.knob-container,
.theme-toggle,
.theme-toggle-floating { display: none !important; }

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta);
  color: var(--cta-text);
  padding: 12px 24px;
  border-radius: 980px;
  font-weight: 500;
  z-index: 10000;
  text-decoration: none;
  transition: top .25s ease;
}
.skip-to-content:focus { top: 12px; }

.page { position: relative; }

/* ==========================================================================
   Header / nav  (shared)
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 100%;
  margin: 0;
  padding: 0 max(22px, calc((100% - var(--max)) / 2));
  height: 56px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline);
}

.logo {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--text-3); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  font-size: 0.92rem;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links a.active { color: var(--text); }

.desktop-cta { margin-left: auto; }

/* Nav dropdown (shared on some pages) */
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  list-style: none; cursor: pointer; color: var(--text-2);
  font-size: 0.92rem; display: inline-flex; align-items: center; gap: 4px;
}
.nav-dropdown summary::-webkit-details-marker,
.nav-dropdown summary::marker { display: none; content: ''; }
.nav-dropdown summary::after { content: '⌄'; font-size: 0.9em; color: var(--text-3); }
.nav-dropdown summary:hover,
.nav-dropdown[open] summary { color: var(--text); }
.nav-dropdown-menu {
  position: absolute; top: 130%; left: 0; min-width: 220px;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 8px; box-shadow: 0 8px 30px rgba(0,0,0,.08);
  z-index: 120;
}
.nav-dropdown-menu a {
  display: block; padding: 8px 12px; border-radius: 9px;
  color: var(--text); font-size: 0.9rem; text-decoration: none;
}
.nav-dropdown-menu a:hover { background: var(--bg-alt); text-decoration: none; }
.nav-dropdown-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); padding: 8px 12px 4px; }
.nav-dropdown-sep { height: 1px; background: var(--hairline); margin: 6px 4px; border: 0; }

/* ==========================================================================
   Buttons  (shared)
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cta);
  color: var(--cta-text);
  border: 1px solid var(--cta);
  border-radius: 980px;
  padding: .8em 1.4em;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, opacity .2s ease, background .2s ease;
}
.button:hover { opacity: .88; text-decoration: none; transform: translateY(-1px); }
.button:active { transform: translateY(0); }

.button-lg { padding: 1em 1.8em; font-size: 1.05rem; }

/* keep the gold class name; it is now the same black pill */
.button-gold { background: var(--cta); color: var(--cta-text); border-color: var(--cta); }
.button-gold:hover { opacity: .88; }

.button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.button.ghost:hover { background: var(--bg-alt); opacity: 1; }

.button.tertiary {
  background: transparent;
  color: var(--link);
  border: none;
  padding: .4em .2em;
}
.button.tertiary:hover { text-decoration: underline; opacity: 1; transform: none; }

/* ==========================================================================
   Sections / layout primitives
   ========================================================================== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 22px;
}
.section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-head .lede { color: var(--text-2); font-size: 1.12rem; }

.lede { font-size: 1.12rem; line-height: 1.5; color: var(--text-2); }

/* full-bleed alt-background sections via a wrapper class on <section> */
.section.kit-feature,
.section.segment,
.section.checklist-section,
.section.faq,
.section.cta,
.section.newsletter-section { position: relative; }

/* Alternate background bands: self-bleeding tint on a centered .section.
   Paints edge-to-edge without a wrapper via a pseudo-element. */
.section.band-alt { position: relative; }
.section.band-alt::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--bg-alt);
  z-index: -1;
}
.section.band-alt > * { position: relative; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 11vw, 132px) 22px clamp(40px, 6vw, 72px);
  text-align: center;
  overflow: hidden;
}
.hero-video { display: none !important; }
.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }

.hero h1,
.hero-content h1,
.hero-copy h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.07;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: .35em;
}
.hero h1 span,
.hero-content h1 span,
.hero-copy h1 span { color: var(--ember); }

.hero .lede,
.hero-content .lede {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 1.4em;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 1.8em;
  max-width: 720px;
}
.chips span {
  font-size: 0.85rem;
  color: var(--text-2);
  background: var(--bg-alt);
  border: 1px solid var(--hairline);
  border-radius: 980px;
  padding: 7px 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1.2em;
}

.hero-microcopy { font-size: 0.9rem; color: var(--text-3); margin: 0; }

/* GEO entity paragraph block + generic text */
.hero-grid { display: block; }

/* ==========================================================================
   Social proof strip + numbers
   ========================================================================== */
.social-proof-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-2);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--hairline);
}
.social-proof-strip strong { color: var(--text); }
.proof-sep { color: var(--text-3); }

.numbers-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 6vw, 72px);
  max-width: var(--max);
  margin: 0 auto;
}
.number-stat { text-align: center; }
.number-stat strong {
  display: block;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.number-stat span { color: var(--text-2); font-size: 0.95rem; }
.proof-numbers { display: flex; justify-content: center; gap: 40px; }

/* ==========================================================================
   Generic cards / panels  (shared by libros, blog, pseo)
   ========================================================================== */
.panel,
.card,
.shop-card,
.segment-card,
.testimonial-card-v2,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.card { padding: 28px; transition: border-color .2s ease; }
.card:hover { border-color: var(--border); }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.card .tag {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-3); background: var(--bg-alt); padding: 4px 10px; border-radius: 980px;
}
.card-title { font-size: 1.18rem; margin-bottom: 8px; }
.card-copy { color: var(--text-2); font-size: 0.98rem; }
.card-meta { display: flex; gap: 14px; margin-top: 16px; color: var(--text-3); font-size: 0.85rem; }
.card-meta span { color: var(--text-3); }

.panel { padding: 28px; }
.panel-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.panel-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ember); }

/* ==========================================================================
   Segment cards
   ========================================================================== */
.segment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}
.segment-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .2s ease;
}
.segment-card:hover { border-color: var(--border); }
.segment-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.segment-card p { color: var(--text-2); }
.segment-card-bottom { margin-top: 20px; }
.segment-card-bottom .button { width: 100%; }
.segment-upsell { font-size: 0.88rem; color: var(--text-3); margin: 12px 0 0; }

.segment-table {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
  overflow-x: auto;
}
.segment-table h3 { font-size: 1.15rem; margin-bottom: 16px; }
.segment-table table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.segment-table th {
  text-align: left; color: var(--text-3); font-weight: 500;
  padding: 10px 12px; border-bottom: 1px solid var(--border); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.segment-table td { padding: 12px; border-bottom: 1px solid var(--hairline); color: var(--text-2); }
.segment-table tr:last-child td { border-bottom: 0; }

/* ==========================================================================
   Kit feature
   ========================================================================== */
.kit-feature { text-align: center; }
.kit-feature-inner { max-width: 920px; margin: 0 auto; }
.kit-feature-head { max-width: 720px; margin: 0 auto 40px; }
.kit-feature-head h2 { font-size: clamp(30px, 4.4vw, 48px); }

.kit-covers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 44px;
}
.kit-covers img {
  width: 120px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.kit-stack {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 0;
  text-align: left;
}
.kit-stack li {
  position: relative;
  padding: 12px 12px 12px 34px;
  border-bottom: 1px solid var(--hairline);
  color: var(--text);
  font-size: 1rem;
}
.kit-stack li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 11px;
  border: solid var(--ember);
  border-width: 0 2px 2px 0;
  margin-top: -2px;
}
.kit-stack li.kit-bonus { color: var(--text-2); }
.kit-stack li.kit-bonus::before { border-color: var(--text-3); }

.kit-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.kit-price-block { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.price-original {
  color: var(--text-3);
  text-decoration: line-through;
  font-size: 1.05rem;
}
.kit-price {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.02em;
  color: var(--ember);
  line-height: 1;
}
.kit-price-usd { color: var(--text-2); font-size: 0.92rem; }
.kit-individual { color: var(--text-3); font-size: 0.9rem; }

/* ==========================================================================
   Timeline / steps
   ========================================================================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.step {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 30px;
}
.step-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ember); margin: 0 0 10px; }
.step-title { font-size: 1.2rem; color: var(--text); margin: 0 0 8px; font-weight: 600; }
.step-copy { color: var(--text-2); font-size: 0.96rem; margin: 0; }

.shop-actions { text-align: center; margin-top: 40px; }

/* ==========================================================================
   Testimonials v2
   ========================================================================== */
.testimonials-v2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}
.testimonial-card-v2 { padding: 28px; }
.testimonial-featured { grid-column: span 1; }
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.92rem; color: #fff;
  background: var(--text-3);
}
.av-1 { background: #0066cc; } .av-2 { background: #1a7f37; } .av-3 { background: #c8553d; }
.av-4 { background: #6e6e73; } .av-5 { background: #5856d6; } .av-6 { background: #af52de; }
.av-7 { background: #ff9500; } .av-8 { background: #34c759; } .av-9 { background: #ff3b30; }
.av-10 { background: #007aff; } .av-11 { background: #5ac8fa; } .av-12 { background: #ff2d55; }
.testimonial-info { line-height: 1.3; }
.testimonial-name { font-weight: 600; color: var(--text); margin: 0; }
.testimonial-meta { color: var(--text-3); font-size: 0.85rem; margin: 0; }
.testimonial-product { color: var(--text-3); font-size: 0.8rem; margin: 2px 0 0; }
.testimonial-stars-v2 { color: #ff9500; letter-spacing: 2px; margin-bottom: 10px; font-size: 0.95rem; }
.testimonial-text-v2 { color: var(--text); font-size: 0.98rem; line-height: 1.55; }
.testimonial-result { color: var(--text-2); font-size: 0.86rem; border-top: 1px solid var(--hairline); padding-top: 12px; margin: 12px 0 0; }

/* legacy testimonial classes */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; max-width: var(--max); margin: 0 auto; }
.testimonial-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 28px; }
.testimonial-text { color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.author-name { font-weight: 600; color: var(--text); }
.author-role { color: var(--text-3); font-size: 0.85rem; }

/* ==========================================================================
   Checklist lead-magnet
   ========================================================================== */
.checklist-section { text-align: center; }
.checklist-inner {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
}
.checklist-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.checklist-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}
.checklist-form input:focus { outline: none; border-color: var(--link); }
.checklist-note { margin-top: 14px; font-size: 0.92rem; }
.checklist-note.success { color: var(--success); }
.checklist-note.error { color: var(--ember); }

/* ==========================================================================
   Directory teaser
   ========================================================================== */
.dir-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto 28px;
}
.dir-pill {
  font-size: 0.9rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 980px;
  padding: 8px 16px;
  text-decoration: none;
  transition: background .2s ease;
}
.dir-pill:hover { background: var(--bg-alt); text-decoration: none; }
.dir-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { }
.faq-grid { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { padding: 0; overflow: hidden; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--text-3); font-size: 1.4rem; line-height: 1; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; margin: 0; color: var(--text-2); }

/* ==========================================================================
   Final CTA band
   ========================================================================== */
.cta { }
.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-title { font-size: clamp(26px, 3.6vw, 40px); margin: 0 0 .4em; }
.cta-copy { color: var(--text-2); margin: 0; max-width: 540px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   FoodPhoto cross-promo
   ========================================================================== */
.foodphoto-cross-promo {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--bg-alt);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}
.foodphoto-cross-promo strong { display: block; color: var(--text); margin-bottom: 4px; }
.foodphoto-cross-promo p { margin: 0; color: var(--text-2); font-size: 0.92rem; }
.foodphoto-cross-promo a {
  flex-shrink: 0;
  background: var(--cta); color: var(--cta-text);
  padding: .7em 1.3em; border-radius: 980px; font-weight: 500;
  text-decoration: none; white-space: nowrap;
}
.foodphoto-cross-promo a:hover { opacity: .88; text-decoration: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-new,
.footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg-alt);
  padding: 56px 22px 40px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
}
.footer-col h3, .footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-3);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-2); font-size: 0.92rem; text-decoration: none; }
.footer-col a:hover { color: var(--text); text-decoration: none; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: var(--text-2); }
.footer-social a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--text-3);
  font-size: 0.85rem;
  text-align: center;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer-made-with { display: inline-flex; align-items: center; gap: 6px; }
.footer-made-with svg { width: 14px; height: 14px; }

/* ==========================================================================
   Mobile drawer + hamburger
   ========================================================================== */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger:hover { color: var(--text-2); }

.mobile-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .3);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 10000;
}
.mobile-drawer-overlay.active { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed; top: 0; right: 0;
  width: min(82vw, 340px); height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--hairline);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  z-index: 10001;
  display: flex; flex-direction: column;
  padding: 20px;
}
.mobile-drawer.active { transform: translateX(0); }
.mobile-drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-drawer-close { background: transparent; border: none; color: var(--text); cursor: pointer; padding: 6px; }
.mobile-drawer-close:hover { color: var(--text-2); }
.mobile-drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer-nav a {
  padding: 14px 8px;
  color: var(--text);
  font-size: 1.05rem;
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
}
.mobile-drawer-nav a:hover, .mobile-drawer-nav a.active { color: var(--link); text-decoration: none; }
.mobile-drawer-cta { margin-top: auto; padding-top: 20px; }
.mobile-drawer-cta .button { width: 100%; }

body.menu-open { overflow: hidden; }

/* ==========================================================================
   Sticky buy bar (mobile)
   ========================================================================== */
.sticky-buy-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--hairline);
  transform: translateY(120%);
  transition: transform .3s ease;
}
.sticky-buy-bar.visible { transform: translateY(0); }
.sticky-buy-bar .price { font-weight: 600; font-size: 1rem; color: var(--text); }

/* ==========================================================================
   Shop cards (libros)
   ========================================================================== */
.shop-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s ease; }
.shop-card:hover { border-color: var(--border); }
.shop-card-top { padding: 0; }
.shop-cover { width: 100%; display: block; border-bottom: 1px solid var(--hairline); }
.shop-card-featured { border-color: var(--border); }

/* ==========================================================================
   Contact / location / forms (shared)
   ========================================================================== */
.contact-form-section { max-width: 640px; margin: 0 auto; }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px;
}
.form-group { margin-bottom: 18px; }
.form-row { display: flex; gap: 14px; flex-wrap: wrap; }
.form-row .form-group { flex: 1; min-width: 200px; }
.form-group label { display: block; font-size: 0.88rem; color: var(--text-2); margin-bottom: 6px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: none; border-color: var(--link); }
.contact-form .button { width: 100%; }
.form-note { font-size: 0.85rem; color: var(--text-3); }
.form-success { color: var(--success); }

.location { max-width: var(--max); margin: 0 auto; }
.location-inner {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.location-info h3 { font-size: 1.25rem; }
.location-info > p { color: var(--text-2); }
.location-hours { color: var(--text-2); font-size: 0.95rem; }
.location-contact a { color: var(--link); }
.location-contact a:hover { text-decoration: underline; }

/* ==========================================================================
   Newsletter / exit-popup / floating banner
   ========================================================================== */
.newsletter-section { max-width: var(--max); margin: 0 auto; padding: clamp(56px,8vw,96px) 22px; text-align: center; }
.newsletter-section .section-head { margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  flex: 1; min-width: 200px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-family: inherit; font-size: 1rem;
}
.newsletter-form input::placeholder { color: var(--text-3); }
.newsletter-form input:focus { outline: none; border-color: var(--link); }
.newsletter-form .small { font-size: 0.9rem; margin-top: 12px; color: var(--text-2); }
.newsletter-form .small.success { color: var(--success); }
.newsletter-form .small.error { color: var(--ember); }

.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 10002;
  background: rgba(0, 0, 0, .35);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.exit-popup {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 440px; width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  text-align: center;
}
.exit-popup h3 { font-size: 1.4rem; margin-bottom: 8px; }
.exit-popup p { color: var(--text-2); margin-bottom: 16px; }
.exit-popup-close {
  position: absolute; top: 14px; right: 14px;
  background: transparent; border: none; color: var(--text-3);
  font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.exit-popup-form { display: flex; gap: 8px; }
.exit-popup-form input {
  flex: 1; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface); color: var(--text);
  font-family: inherit; font-size: 1rem;
}
.exit-popup-form input:focus { outline: none; border-color: var(--link); }

.floating-blog-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 12px 18px;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  font-size: 0.92rem; color: var(--text-2);
}
.floating-blog-banner .close-banner { background: transparent; border: none; color: var(--text-3); font-size: 1.2rem; cursor: pointer; }

/* ==========================================================================
   WhatsApp float
   ========================================================================== */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 85;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ==========================================================================
   Audio player (blog) — keep neutral
   ========================================================================== */
.audio-section { max-width: var(--max); margin: 0 auto; }
.audio-player-wrap {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px;
}

/* small utilities still referenced */
.full-width { width: 100%; }
.small { font-size: 0.9rem; color: var(--text-2); }
.badge-value { color: var(--ember); font-weight: 600; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .desktop-cta { display: none; }
  .hamburger { display: inline-flex; }
  .location-inner { grid-template-columns: 1fr; padding: 28px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .hero { padding-top: clamp(48px, 9vw, 88px); }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .button { width: 100%; }
  .segment-cards,
  .timeline,
  .card-grid,
  .testimonials-v2-grid { grid-template-columns: 1fr; }
  .social-proof-strip { flex-direction: column; gap: 8px; }
  .proof-sep { display: none; }
  .numbers-bar { gap: 28px; }
  .cta-actions { width: 100%; }
  .cta-actions .button { width: 100%; }
  .kit-covers img { width: 92px; }
}

@media (max-width: 480px) {
  .section { padding-left: 18px; padding-right: 18px; }
  .checklist-form,
  .newsletter-form,
  .exit-popup-form { flex-direction: column; }
  .checklist-form .button,
  .newsletter-form .button { width: 100%; }
  .button { min-height: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Touch target hygiene */
@media (max-width: 900px) {
  .nav-links a,
  .mobile-drawer-close,
  .hamburger { min-height: 44px; }
  .mobile-drawer-close, .hamburger { min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Brand logo (image) — swaps the text wordmark site-wide */
.logo{
  display:inline-block;width:190px;height:34px;padding:0;
  background:url('/wp-content/themes/vault-child/landing/images/brand/logo.png') left center / contain no-repeat;
  text-indent:-9999px;overflow:hidden;white-space:nowrap;
}
.logo span{display:none;}
@media (max-width:520px){.logo{width:158px;height:30px;}}

/* Concept carousel (restaurant renders) */
.ra-carousel{position:relative;max-width:var(--max);margin:0 auto;}
.ra-track{display:flex;gap:18px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;padding:4px;scrollbar-width:none;}
.ra-track::-webkit-scrollbar{display:none;}
.ra-slide{flex:0 0 100%;scroll-snap-align:center;margin:0;position:relative;border-radius:var(--radius);overflow:hidden;border:1px solid var(--hairline);background:var(--bg-alt);}
@media(min-width:720px){.ra-slide{flex-basis:72%;}}
.ra-slide img{display:block;width:100%;height:clamp(240px,42vw,520px);object-fit:cover;}
.ra-slide figcaption{position:absolute;left:0;right:0;bottom:0;padding:28px 22px 16px;color:#fff;font-weight:600;font-size:1.02rem;background:linear-gradient(to top,rgba(8,10,14,.72),rgba(8,10,14,0));}
.ra-nav{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:999px;border:1px solid var(--hairline);background:rgba(255,255,255,.92);color:var(--text);font-size:24px;line-height:1;cursor:pointer;display:none;align-items:center;justify-content:center;box-shadow:0 2px 10px rgba(0,0,0,.08);z-index:2;}
@media(min-width:720px){.ra-nav{display:flex;}}
.ra-prev{left:-6px;} .ra-next{right:-6px;}
.ra-dots{display:flex;gap:8px;justify-content:center;margin-top:18px;}
.ra-dot{width:8px;height:8px;border-radius:999px;border:none;background:var(--border);cursor:pointer;padding:0;}
.ra-dot[aria-selected="true"]{background:var(--cta);width:22px;}
