/* ============================================================
   Bumblebee Cookies — Production site styles
   Self-contained. Driven by the brand design tokens.
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --milk: #FFFBF2;
  --charcoal: #1C1408;
  --bumble: #FFC907;
  --honey: #D98A00;
  --cream-card: #FFF4DC;
  --line: #EADFC8;

  --fiesta: #F46BA8;  --fiesta-wash: #FDEAF2;
  --cocoa: #3B2A20;   --cocoa-wash: #EFE7E0;
  --velvet: #A6121F;  --velvet-wash: #F6E3E4;
  --limon: #8DC63F;   --limon-wash: #EEF6E2;

  --text-body: #3A2E18;
  --text-muted: #8A7A5C;

  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-accent: "Fraunces", Georgia, serif;
  --font-body: "Figtree", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --max: 1200px;
  --gutter: 24px;
  --radius-pill: 999px;
  --radius-card: 32px;

  --shadow-card: 0 1px 2px rgba(28,20,8,.04), 0 8px 24px rgba(28,20,8,.06);
  --shadow-lift: 0 6px 16px rgba(28,20,8,.08), 0 18px 40px rgba(28,20,8,.10);
  --shadow-button: 0 6px 16px rgba(217,138,0,.28);
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ---- Skip link (a11y) ---- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--charcoal); color: var(--milk); padding: 12px 20px; border-radius: 0 0 var(--radius-pill) 0; font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 0; }

/* ---- Floating WhatsApp ---- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bumble); color: var(--charcoal);
  font-family: var(--font-body); font-weight: 600; font-size: 16px; text-decoration: none;
  padding: 14px 22px 14px 18px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lift);
  transition: background-color .24s var(--ease), transform .16s var(--ease);
}
.wa-float svg { width: 24px; height: 24px; }
.wa-float:hover { background: var(--honey); transform: translateY(-2px); }
.wa-float:focus-visible { outline: 3px solid var(--charcoal); outline-offset: 3px; }
@media (max-width: 620px) {
  .wa-float { right: 16px; bottom: 16px; padding: 14px; }
  .wa-float span { display: none; }
}
@media (prefers-reduced-motion: reduce) { .wa-float:hover { transform: none; } }

/* ---- Reset / base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--milk);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--honey); }
h1, h2, h3 { color: var(--charcoal); margin: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-family: var(--font-accent); font-style: italic; font-weight: 600;
  font-size: 20px; color: var(--honey); margin: 0 0 12px;
}
.kicker {
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted);
}

/* ---- Buttons (The Tin) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 17px; line-height: 1;
  padding: 16px 32px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color .24s var(--ease), color .24s var(--ease),
              transform .16s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: var(--bumble); color: var(--charcoal); }
.btn-primary:hover { background: var(--honey); transform: translateY(-2px); box-shadow: var(--shadow-button); }
.btn-secondary { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-secondary:hover { background: var(--charcoal); color: var(--milk); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 15px; }
.btn-lg { padding: 19px 38px; font-size: 19px; }
.btn:focus-visible { outline: 3px solid var(--honey); outline-offset: 3px; }

/* ---- Badges ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px; line-height: 1;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--charcoal); color: var(--milk); white-space: nowrap;
}
.badge-outline { background: transparent; color: var(--charcoal); box-shadow: inset 0 0 0 1.5px var(--charcoal); }
.badge-eyebrow { background: transparent; padding: 0; letter-spacing: .08em; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--milk) 82%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 13px var(--gutter); max-width: var(--max); margin: 0 auto; }
.nav-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; }
.nav-logo span { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: var(--charcoal); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 500; font-size: 16px; color: var(--charcoal); text-decoration: none; }
.nav-links a:hover { color: var(--honey); }
.nav-toggle { display: none; background: var(--cream-card); border: 1px solid var(--line); width: 44px; height: 44px; border-radius: var(--radius-pill); cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---- Hero ---- */
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 72px var(--gutter) 96px; max-width: var(--max); margin: 0 auto; }
.hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(46px, 6.4vw, 86px); letter-spacing: -.02em; line-height: 1.0; text-wrap: balance; }
.hero h1 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; color: var(--honey); }
.hero p.lead { max-width: 470px; font-size: 19px; margin: 22px 0 0; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-figure { position: relative; justify-self: center; }
.hero-figure .pan { width: min(440px, 82vw); aspect-ratio: 3/4; border-radius: var(--radius-pill); overflow: hidden; border: 1.5px solid var(--line); box-shadow: var(--shadow-lift); background: var(--cream-card); }
.hero-figure .pan img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure .tag-float { position: absolute; bottom: 22px; left: -14px; }

/* ---- Section frame ---- */
.section { padding: 104px 0; }
.section-head { text-align: center; margin: 0 auto 52px; max-width: 620px; }
.section-head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 5vw, 48px); letter-spacing: -.02em; }
.section-head p { margin: 16px 0 0; }
.divider { display: flex; justify-content: center; padding: 8px 0; }
.divider svg { width: 320px; max-width: 80%; }

/* ---- Menu grid ---- */
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { position: relative; display: flex; flex-direction: column; background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 20px 20px 28px; box-shadow: var(--shadow-card); transition: transform .24s var(--ease), box-shadow .24s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card .photo { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-pill); overflow: hidden; background: radial-gradient(120% 90% at 50% 18%, #fff, var(--cream-card)); }
.card .photo img { width: 100%; height: 100%; object-fit: cover; }
.card .tin-tag { position: absolute; top: 12px; left: 12px; z-index: 2; }
.card .flavor { margin-top: 20px; font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -.01em; margin-top: 8px; line-height: 1.2; }
.card .desc { font-family: var(--font-accent); font-style: italic; font-weight: 500; font-size: 16px; line-height: 1.45; margin: 8px 0 0; color: var(--text-body); text-wrap: pretty; }
.card .foot { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card .price { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -.01em; color: var(--charcoal); }
.card .price small { font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--text-muted); margin-left: 4px; }

/* ---- Cómo pedir (steps) ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--milk); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 32px 28px; }
.step .num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius-pill); background: var(--bumble); color: var(--charcoal); font-family: var(--font-display); font-weight: 800; font-size: 22px; margin-bottom: 18px; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.01em; }
.step p { margin: 8px 0 0; font-size: 16px; }

/* ---- Eventos band ---- */
.band { background: var(--charcoal); border-radius: var(--radius-card); padding: 64px 56px; display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.band .eyebrow { color: var(--bumble); }
.band h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4vw, 44px); letter-spacing: -.02em; line-height: 1.05; color: var(--milk); }
.band p { margin: 16px 0 0; color: color-mix(in srgb, var(--milk) 78%, transparent); }

/* ---- Nosotros ---- */
.about { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.about .photo { border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.about h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4.4vw, 46px); letter-spacing: -.02em; }
.about p { margin: 18px 0 0; }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; color: var(--charcoal); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 28px; height: 28px; border-radius: var(--radius-pill); background: var(--cream-card); display: inline-flex; align-items: center; justify-content: center; transition: transform .24s var(--ease); font-size: 16px; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq .answer { padding: 0 4px 22px; max-width: 680px; }

/* ---- Footer ---- */
.footer { background: var(--charcoal); color: var(--milk); margin-top: 96px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 72px var(--gutter) 40px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: flex-start; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 56px; height: 56px; }
.footer-brand .name { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -.02em; }
.footer-brand .tag { font-family: var(--font-accent); font-style: italic; font-size: 16px; color: color-mix(in srgb, var(--milk) 80%, transparent); margin-top: 2px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: color-mix(in srgb, var(--milk) 60%, transparent); margin: 0 0 14px; }
.footer-col a, .footer-col p { color: var(--milk); text-decoration: none; display: block; margin: 0 0 10px; font-size: 15px; }
.footer-col a:hover { color: var(--bumble); }
.socials { display: flex; gap: 12px; margin-top: 4px; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--radius-pill); background: color-mix(in srgb, var(--milk) 10%, transparent); color: var(--milk); }
.socials a:hover { background: var(--bumble); color: var(--charcoal); }
.socials svg { width: 20px; height: 20px; }
.footer hr { border: 0; border-top: 1px solid color-mix(in srgb, var(--milk) 16%, transparent); margin: 40px 0 24px; }
.fineprint { max-width: 760px; font-size: 13px; line-height: 1.6; color: color-mix(in srgb, var(--milk) 64%, transparent); margin: 0; }
.copyright { margin: 20px 0 0; font-size: 13px; color: color-mix(in srgb, var(--milk) 50%, transparent); }

/* ---- Reveal on load / scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 28px; padding-top: 48px; padding-bottom: 64px; }
  .hero-figure { order: -1; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 28px; }
  .about .photo { order: -1; }
  .band { padding: 44px 32px; }
}
@media (max-width: 620px) {
  .section { padding: 72px 0; }
  .menu-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--milk); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 16px; }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 14px 0; border-top: 1px solid var(--line); }
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}
