/* ─────────────────────────────────────────────
   CREAMY BITES — Web corporativa
   Display: Instrument Serif (italic)
   Body:    Bricolage Grotesque
   Labels:  JetBrains Mono
───────────────────────────────────────────── */

:root{
  --paper:        oklch(96% 0.018 78);
  --paper-2:      oklch(93% 0.025 70);
  --ink:          oklch(22% 0.045 25);
  --ink-soft:     oklch(40% 0.04 25);
  --ink-mute:     oklch(58% 0.03 30);
  --straw:        oklch(60% 0.20 25);
  --straw-d:      oklch(48% 0.18 22);
  --butter:       oklch(83% 0.13 88);
  --rose:         oklch(86% 0.05 20);
  --line:         oklch(80% 0.02 60);
  --line-strong:  oklch(60% 0.03 30);

  --serif: 'Instrument Serif', 'Cormorant Garamond', serif;
  --sans:  'Bricolage Grotesque', system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body{
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.05  0 0 0 0 0.08  0 0 0 .14 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: oklch(96% 0.018 78 / .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
}
.brand img{
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.nav-links{
  display: flex;
  gap: 36px;
  justify-content: center;
}
.nav-links a{
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover{ color: var(--straw-d); border-bottom-color: var(--straw-d); }

.nav-cta-wrap{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* Botón menú hamburguesa */
.menu-btn{
  display: none;
  background: none;
  border: none;
  padding: 4px;
  color: var(--ink);
}

/* Botón carrito */
.cart-btn{
  position: relative;
  background: none;
  border: 1px solid var(--ink);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.cart-btn:hover{ background: var(--ink); color: var(--paper); }
.cart-count{
  background: var(--straw);
  color: var(--paper);
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform .2s;
}
.cart-count.bump{ transform: scale(1.4); }

.nav-cta{
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background .2s, color .2s;
}
.nav-cta:hover{ background: var(--ink); color: var(--paper); }

/* ══════════════════════════════════════════
   MENÚ LATERAL (DRAWER)
══════════════════════════════════════════ */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: oklch(0% 0 0 / .45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.menu-overlay.open{
  opacity: 1;
  pointer-events: all;
}
.menu-drawer{
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 95vw);
  height: 100dvh;
  background: var(--ink);
  color: var(--paper);
  z-index: 210;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.menu-drawer.open{ transform: translateX(0); }

.drawer-head{
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid oklch(96% 0.018 78 / .12);
}
.drawer-logo{
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--paper);
}
.drawer-logo span{ color: var(--straw); }
.drawer-close{
  background: none;
  border: 1px solid oklch(96% 0.018 78 / .2);
  color: var(--paper);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.drawer-close:hover{ border-color: var(--straw); }

.drawer-nav{
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid oklch(96% 0.018 78 / .12);
}
.drawer-nav a{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 6vw, 48px);
  color: oklch(96% 0.018 78 / .7);
  line-height: 1.15;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 16px;
}
.drawer-nav a .dn-num{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--straw);
  font-style: normal;
  margin-top: 6px;
}
.drawer-nav a:hover{ color: var(--paper); }

/* Secciones info dentro del menú */
.drawer-info{
  padding: 36px 36px 30px;
  border-bottom: 1px solid oklch(96% 0.018 78 / .12);
}
.drawer-info h4{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--straw);
  margin-bottom: 18px;
}
.di-block{
  margin-bottom: 22px;
}
.di-block h5{
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 8px;
}
.di-block p{
  font-size: 13.5px;
  line-height: 1.65;
  color: oklch(96% 0.018 78 / .6);
}

.drawer-valores{
  padding: 28px 36px 30px;
  border-bottom: 1px solid oklch(96% 0.018 78 / .12);
}
.drawer-valores h4{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--straw);
  margin-bottom: 16px;
}
.dv-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dv-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dotted oklch(96% 0.018 78 / .1);
}
.dv-item:last-child{ border-bottom: none; }
.dv-num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--straw);
  min-width: 28px;
}
.dv-item b{
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--paper);
  display: block;
  margin-bottom: 2px;
}
.dv-item span{
  font-size: 12.5px;
  color: oklch(96% 0.018 78 / .55);
  line-height: 1.5;
}

/* ─── ACORDEÓN ─── */
.drawer-accordion{
  border-bottom: 1px solid oklch(96% 0.018 78 / .1);
}
.acc-btn{
  width: 100%;
  background: none;
  border: none;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: oklch(96% 0.018 78 / .65);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .25em;
  transition: color .2s;
  text-align: left;
}
.acc-btn:hover, .acc-btn.active{ color: var(--straw); }
.acc-arrow{
  flex-shrink: 0;
  transition: transform .25s;
}
.acc-btn.active .acc-arrow{ transform: rotate(180deg); }

.acc-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,1,.36,1);
}
.acc-panel.open{ max-height: 600px; }

.acc-panel .di-block,
.acc-panel .dv-list{
  padding: 0 36px 24px;
}
.acc-panel .di-block{ margin-bottom: 0; }

.drawer-social{
  padding: 28px 36px 36px;
}
.drawer-social h4{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--straw);
  margin-bottom: 18px;
}
.social-icons{
  display: flex;
  gap: 14px;
}
.si-link{
  width: 46px; height: 46px;
  border: 1px solid oklch(96% 0.018 78 / .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: oklch(96% 0.018 78 / .65);
  transition: border-color .2s, color .2s, background .2s;
}
.si-link:hover{
  border-color: var(--straw);
  color: var(--straw);
}
.si-link.whatsapp:hover{ border-color: #25D366; color: #25D366; }
.si-link.instagram:hover{ border-color: #E1306C; color: #E1306C; }
.si-link.facebook:hover{ border-color: #1877F2; color: #1877F2; }
.si-link.tiktok:hover{ border-color: #69C9D0; color: #69C9D0; }

/* ══════════════════════════════════════════
   CARRITO LATERAL
══════════════════════════════════════════ */
.cart-overlay{
  position: fixed;
  inset: 0;
  background: oklch(0% 0 0 / .45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open{
  opacity: 1;
  pointer-events: all;
}
.cart-drawer{
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 95vw);
  height: 100dvh;
  background: var(--paper);
  z-index: 210;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line-strong);
}
.cart-drawer.open{ transform: translateX(0); }

.cart-head{
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.cart-head h2{
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
}
.cart-close{
  background: none;
  border: 1px solid var(--line-strong);
  padding: 8px;
  display: flex;
  color: var(--ink);
  transition: border-color .2s;
}
.cart-close:hover{ border-color: var(--straw-d); }

.cart-body{
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.cart-empty{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--ink-mute);
  text-align: center;
}
.cart-empty-icon{
  width: 60px; height: 60px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--line-strong);
}
.cart-empty p{
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-mute);
}
.cart-empty small{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--line-strong);
}

.cart-item{
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dotted var(--line);
  align-items: start;
}
.cart-item:last-child{ border-bottom: none; }
.ci-img{
  width: 72px; height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.ci-info{}
.ci-name{
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.ci-qty-row{
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn{
  background: none;
  border: 1px solid var(--line-strong);
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink);
  transition: background .15s, color .15s;
  line-height: 1;
}
.qty-btn:hover{ background: var(--ink); color: var(--paper); }
.qty-num{
  font-family: var(--mono);
  font-size: 13px;
  min-width: 18px;
  text-align: center;
}
.ci-price{
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--straw-d);
  white-space: nowrap;
  padding-top: 4px;
}
.ci-remove{
  background: none;
  border: none;
  color: var(--ink-mute);
  padding: 4px;
  display: flex;
  transition: color .15s;
}
.ci-remove:hover{ color: var(--straw-d); }

.cart-foot{
  padding: 20px 30px 28px;
  border-top: 1px solid var(--line);
}
.cart-total-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.cart-total-row span:first-child{
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-mute);
}
.cart-total-amount{
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
}
.cart-checkout-btn{
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background .2s, color .2s;
}
.cart-checkout-btn:hover{ background: var(--straw-d); border-color: var(--straw-d); }
.cart-checkout-btn span{
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  text-transform: none;
  letter-spacing: 0;
}
.cart-wsp-btn{
  width: 100%;
  margin-top: 10px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s, color .2s, border-color .2s;
}
.cart-wsp-btn:hover{ background: #25D366; color: #fff; border-color: #25D366; }
.cart-wsp-btn svg{ color: #25D366; }
.cart-wsp-btn:hover svg{ color: #fff; }

/* ══════════════════════════════════════════
   MODAL PAGO
══════════════════════════════════════════ */
.pay-overlay{
  position: fixed;
  inset: 0;
  background: oklch(0% 0 0 / .6);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pay-overlay.open{
  opacity: 1;
  pointer-events: all;
}
.pay-modal{
  background: var(--ink);
  color: var(--paper);
  width: min(540px, 100%);
  max-height: 90dvh;
  overflow-y: auto;
  padding: 48px 44px;
  position: relative;
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.pay-overlay.open .pay-modal{ transform: translateY(0); }

.pay-close{
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: 1px solid oklch(96% 0.018 78 / .2);
  padding: 8px;
  color: var(--paper);
  display: flex;
  transition: border-color .2s;
}
.pay-close:hover{ border-color: var(--straw); }

.pay-title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
  margin-bottom: 8px;
}
.pay-title em{ font-style: italic; color: var(--butter); }
.pay-sub{
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: oklch(96% 0.018 78 / .6);
  margin-bottom: 30px;
}

/* Resumen pedido en modal */
.pay-summary{
  background: oklch(96% 0.018 78 / .06);
  border: 1px solid oklch(96% 0.018 78 / .12);
  padding: 16px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pay-summary-item{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: oklch(96% 0.018 78 / .75);
  padding: 4px 0;
  border-bottom: 1px dotted oklch(96% 0.018 78 / .1);
}
.pay-summary-item:last-child{ border-bottom: none; }
.pay-summary-total{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid oklch(96% 0.018 78 / .2);
}
.pay-summary-total span:first-child{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: oklch(96% 0.018 78 / .5);
}
.pay-summary-total span:last-child{
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--butter);
}

/* Pay form */
.pay-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.pay-form .full{ grid-column: 1 / -1; }
.pay-form .field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pay-form label{
  font-family: var(--mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: oklch(96% 0.018 78 / .55);
}
.pay-form input,
.pay-form select,
.pay-form textarea{
  background: transparent;
  border: none;
  border-bottom: 1px solid oklch(96% 0.018 78 / .25);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
  padding: 6px 0 8px;
  width: 100%;
  outline: none;
  transition: border-color .2s;
}
.pay-form input::placeholder,
.pay-form textarea::placeholder{
  color: oklch(96% 0.018 78 / .35);
  font-style: italic;
}
.pay-form input:focus,
.pay-form select:focus,
.pay-form textarea:focus{
  border-bottom-color: var(--butter);
}
.pay-form select{
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23f3ead9' fill='none' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.pay-form select option{
  background: var(--ink);
  color: var(--paper);
}
.pay-form input[type="date"]{
  color-scheme: dark;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .05em;
}
.pay-divider{
  grid-column: 1 / -1;
  border: none;
  border-top: 1px solid oklch(96% 0.018 78 / .12);
  margin: 8px 0;
}
.pay-section-label{
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--straw);
  margin-bottom: -4px;
}
.pay-submit{
  grid-column: 1 / -1;
  margin-top: 16px;
  background: var(--butter);
  color: var(--ink);
  border: 1px solid var(--butter);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background .2s, color .2s;
}
.pay-submit:hover{ background: var(--straw); border-color: var(--straw); color: var(--paper); }
.pay-submit span{
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  text-transform: none;
  letter-spacing: 0;
}
.pay-disclaimer{
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: oklch(96% 0.018 78 / .35);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

section{ padding: 120px 0; }
section + section{ border-top: 1px solid var(--line); }

.sec-head{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: baseline;
  margin-bottom: 64px;
}
.sec-kicker{
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--straw-d);
  border: 1px solid var(--straw-d);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  align-self: center;
}
.sec-title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.01em;
}
.sec-title em{ font-style: italic; color: var(--straw-d); }
.sec-deck{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 14px;
  text-wrap: pretty;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero{
  padding: 30px 0 90px;
  border-top: none;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: start;
}

.hero-eyebrow{
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow::before{
  content:'';
  width: 28px; height: 1px;
  background: var(--ink-soft);
  display: inline-block;
}

.hero-title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 10.5vw, 168px);
  line-height: .9;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-title em{
  font-style: italic;
  color: var(--straw-d);
  display: block;
}
.hero-title .dot{ color: var(--straw); }

.hero-deck{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 28ch;
  margin-bottom: 44px;
  text-wrap: pretty;
}

.hero-ctas{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  padding: 18px 28px;
  transition: background .25s, color .25s, transform .25s;
}
.btn span{ transition: transform .25s; }
.btn-dark{
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
}
.btn-dark:hover{ background: var(--straw-d); border-color: var(--straw-d); }
.btn-dark:hover span{ transform: translateX(4px); }

.btn-link{
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--straw-d);
  border-bottom: 1px solid var(--straw-d);
  padding: 0 0 3px;
  transition: color .2s, border-color .2s;
}
.btn-link:hover{ color: var(--ink); border-color: var(--ink); }

.hero-feature{ position: relative; }
.feature-card{
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 30px 60px -30px oklch(22% 0.045 25 / .25);
  transition: transform .4s ease;
}
.feature-card:hover{ transform: rotate(0deg); }

.feature-photo{
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, oklch(60% 0.20 25 / .85) 0%, oklch(48% 0.18 22 / .85) 100%);
  display: grid;
  place-items: center;
  position: relative;
  color: oklch(96% 0.018 78 / .85);
  overflow: hidden;
}
.feature-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}

.feature-meta{
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  background: var(--paper);
}
.feature-meta .fm-name{
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
}
.feature-meta .fm-tag{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--straw-d);
}

.feature-badge{
  margin: 20px 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  background: var(--butter);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  width: max-content;
  transform: rotate(-2deg);
}
.feature-badge b{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--straw-d);
  letter-spacing: 0;
  text-transform: none;
}

.hero-strip{
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-strip > div{
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.hero-strip > div:last-child{ border-right: none; }
.hs-num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.hs-num em{ color: var(--straw-d); font-style: italic; }
.hs-label{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-mute);
}

/* ══════════════════════════════════════════
   NOSOTROS
══════════════════════════════════════════ */
.about-body{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lede{
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}
.lede em{ font-style: italic; color: var(--straw-d); }
.lede-drop{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1em;
  color: var(--straw);
}
.lede-after{
  margin-top: 28px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 52ch;
}

.mv-stack{ display: flex; flex-direction: column; gap: 24px; }
.mv-card{
  background: var(--paper);
  border: 1px solid var(--line-strong);
  padding: 32px 32px 36px;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.mv-card:hover{
  transform: translateY(-4px);
  background: var(--paper-2);
  box-shadow: 0 24px 50px -30px oklch(22% 0 0 / .3);
}
.mv-card .mv-tag{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--straw-d);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}
.mv-card .mv-tag span:last-child{ color: var(--ink-mute); }
.mv-card h3{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}
.mv-card p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ══════════════════════════════════════════
   VALORES
══════════════════════════════════════════ */
.valores-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.valor{
  padding: 36px 28px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .25s;
}
.valor:last-child{ border-right: none; }
.valor:hover{ background: var(--paper-2); }
.valor .v-num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--straw);
  margin-bottom: 22px;
}
.valor h4{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}
.valor p{
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ══════════════════════════════════════════
   POSTRES + BOTÓN AGREGAR
══════════════════════════════════════════ */
.postres-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.postre{
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.postre:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px oklch(22% 0 0 / .35);
}
.postre-photo{
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  position: relative;
  color: oklch(96% 0.018 78 / .9);
  overflow: hidden;
}
.postre-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .5s ease;
}
.postre:hover .postre-photo img{ transform: scale(1.05); }

.p-1 .postre-photo{ background: linear-gradient(135deg, oklch(62% 0.20 22), oklch(46% 0.18 18)); }
.p-2 .postre-photo{ background: linear-gradient(135deg, oklch(82% 0.13 88), oklch(60% 0.14 65)); }
.p-3 .postre-photo{ background: linear-gradient(135deg, oklch(70% 0.10 350), oklch(50% 0.14 340)); }
.p-4 .postre-photo{ background: linear-gradient(135deg, oklch(78% 0.08 70), oklch(60% 0.10 50)); }
.p-5 .postre-photo{ background: linear-gradient(135deg, oklch(60% 0.18 0),  oklch(40% 0.18 340)); }
.p-6 .postre-photo{ background: linear-gradient(135deg, oklch(50% 0.10 50), oklch(32% 0.08 40)); }
.p-7 .postre-photo{ background: linear-gradient(135deg, oklch(70% 0.12 65),  oklch(50% 0.10 55)); }
.p-8 .postre-photo{ background: linear-gradient(135deg, oklch(40% 0.08 50),  oklch(25% 0.06 40)); }
.p-9 .postre-photo{ background: linear-gradient(135deg, oklch(75% 0.08 80),  oklch(55% 0.08 60)); }

.postre-body{
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.postre-body .pb-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dotted var(--line);
  padding-bottom: 10px;
}
.postre-body h3{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}
.postre-body .pb-no{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--ink-mute);
}
.postre-body p{
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
}
.postre-body .pb-tag{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--straw-d);
  padding-top: 4px;
}

/* Fila precio + botón agregar */
.postre-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  gap: 12px;
}
.postre-price{
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--straw-d);
}
.add-btn{
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, color .2s;
}
.add-btn:hover{ background: var(--straw-d); border-color: var(--straw-d); }

/* ══════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════ */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-info{ padding: 8px 0; }
.contact-lede{
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 38ch;
}
.contact-list{ display: flex; flex-direction: column; gap: 0; }
.contact-row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px dotted var(--line);
  align-items: baseline;
}
.contact-row:first-child{ border-top: 1px solid var(--line-strong); }
.contact-row:last-child{ border-bottom: 1px solid var(--line-strong); }
.contact-row .cr-k{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--ink-mute);
}
.contact-row .cr-v{
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.contact-row .cr-v em{ font-style: italic; color: var(--straw-d); }
.contact-row .cr-v a{ color: inherit; transition: color .2s; }
.contact-row .cr-v a:hover{ color: var(--straw-d); }

.contact-cta{
  background: var(--ink);
  color: var(--paper);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  overflow: hidden;
}
.contact-cta::before{
  content:'';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: oklch(60% 0.20 25 / .25);
  filter: blur(2px);
  z-index: 0;
}
.contact-cta > *{ position: relative; z-index: 1; }
.contact-cta h3{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  text-wrap: balance;
}
.contact-cta h3 em{ font-style: italic; color: var(--butter); }
.contact-cta .cta-sub{
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: oklch(96% 0.018 78 / .75);
  max-width: 38ch;
}

/* Order form */
.order-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.order-form .full{ grid-column: 1 / -1; }
.order-form .field{ display: flex; flex-direction: column; gap: 6px; }
.order-form label{
  font-family: var(--mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: oklch(96% 0.018 78 / .55);
}
.order-form input,
.order-form select,
.order-form textarea{
  background: transparent;
  border: none;
  border-bottom: 1px solid oklch(96% 0.018 78 / .25);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
  padding: 6px 0 8px;
  width: 100%;
  outline: none;
  transition: border-color .2s;
}
.order-form input::placeholder,
.order-form textarea::placeholder{
  color: oklch(96% 0.018 78 / .35);
  font-style: italic;
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus{ border-bottom-color: var(--butter); }
.order-form select{
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23f3ead9' fill='none' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.order-form select option{ background: var(--ink); color: var(--paper); }
.order-form textarea{ resize: vertical; min-height: 60px; font-size: 16px; font-style: italic; }
.order-form input[type="date"]{ color-scheme: dark; font-family: var(--mono); font-size: 14px; letter-spacing: .05em; }
.order-submit{
  grid-column: 1 / -1;
  margin-top: 16px;
  background: var(--butter);
  color: var(--ink);
  border: 1px solid var(--butter);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  padding: 18px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background .2s, color .2s;
}
.order-submit:hover{ background: var(--straw); border-color: var(--straw); color: var(--paper); }
.order-submit span{ font-family: var(--serif); font-style: italic; font-size: 22px; text-transform: none; letter-spacing: 0; }
.order-disclaimer{
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: oklch(96% 0.018 78 / .45);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer.foot{
  border-top: 1px solid var(--line-strong);
  padding: 70px 0 30px;
}
.foot-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.foot-brand{
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: .9;
  color: var(--ink);
}
.foot-brand .dot{ color: var(--straw); }
.foot-brand .tagline{
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin-top: 14px;
}
.foot-col h5{
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--ink-mute);
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.foot-col p, .foot-col a{
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.85;
  display: block;
}
.foot-col a:hover{ color: var(--straw-d); }
.foot-col em{
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 17px;
}

/* Iconos sociales en footer */
.foot-social{
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.foot-si{
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: border-color .2s, color .2s;
}
.foot-si:hover{ border-color: var(--straw-d); color: var(--straw-d); }

.foot-bottom{
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-mute);
}
.foot-bottom .heart{ color: var(--straw); font-style: normal; }

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast{
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 14px 24px;
  border: 1px solid var(--straw);
  z-index: 500;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px){
  .hero-grid{ grid-template-columns: 1fr; gap: 50px; }
  .hero-feature{ max-width: 460px; }
  .about-body{ grid-template-columns: 1fr; gap: 50px; }
  .valores-grid{ grid-template-columns: repeat(2, 1fr); }
  .valor{ border-bottom: 1px solid var(--line); }
  .valor:nth-child(odd){ border-right: 1px solid var(--line); }
  .valor:nth-child(even){ border-right: none; }
  .valor:last-child{ grid-column: 1 / -1; border-right: none; }
  .postres-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .foot-top{ grid-template-columns: 1fr 1fr; }
  .hero-strip{ grid-template-columns: repeat(2, 1fr); }
  .hero-strip > div:nth-child(2){ border-right: none; }
  .hero-strip > div:nth-child(-n+2){ border-bottom: 1px solid var(--line); }
}
@media (max-width: 700px){
  .nav{ grid-template-columns: 1fr auto; padding: 14px 22px; }
  .nav-links{ display: none; }
  .menu-btn{ display: flex; }
  .nav-cta{ display: none; }
  .container{ padding: 0 22px; }
  section{ padding: 80px 0; }
  .hero{ padding: 20px 0 60px; }
  .sec-head{ grid-template-columns: 1fr; gap: 14px; }
  .sec-kicker{ justify-self: start; }
  .postres-grid{ grid-template-columns: 1fr; }
  .valores-grid{ grid-template-columns: 1fr; }
  .valor{ border-right: none !important; border-bottom: 1px solid var(--line); }
  .valor:last-child{ border-bottom: none; }
  .contact-row{ grid-template-columns: 1fr; gap: 4px; }
  .contact-cta{ padding: 40px 28px; }
  .foot-top{ grid-template-columns: 1fr; }
  .foot-bottom{ flex-direction: column; gap: 10px; text-align: center; }
  .hero-strip{ grid-template-columns: 1fr; }
  .hero-strip > div{ border-right: none; border-bottom: 1px solid var(--line); }
  .hero-strip > div:last-child{ border-bottom: none; }
  .pay-modal{ padding: 36px 24px; }
}

/* ── BOTÓN MOSTRAR NOSOTROS ── */
.nosotros-toggle-wrap{
  margin-bottom: 48px;
}
.nosotros-toggle-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-soft);
  padding: 14px 22px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.nosotros-toggle-btn:hover{
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.nt-arrow{ transition: transform .25s; flex-shrink:0; }

/* ── ACORDEÓN MENÚ ── */
.drawer-accordion{
  border-bottom: 1px solid oklch(96% 0.018 78 / .1);
}
.acc-btn{
  width: 100%;
  background: none;
  border: none;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: oklch(96% 0.018 78 / .65);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .25em;
  cursor: pointer;
  transition: color .2s;
  text-align: left;
}
.acc-btn:hover, .acc-btn.active{ color: var(--straw); }
.acc-arrow{ flex-shrink: 0; transition: transform .25s; }
.acc-btn.active .acc-arrow{ transform: rotate(180deg); }

.acc-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,1,.36,1);
}
.acc-panel.open{ max-height: 700px; }

.acc-inner{
  padding: 4px 36px 24px;
}
.acc-inner h5{
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--paper);
  margin-bottom: 8px;
}
.acc-inner p{
  font-size: 13px;
  line-height: 1.65;
  color: oklch(96% 0.018 78 / .6);
  margin-bottom: 6px;
}
