/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }

/* ── Variables ── */
:root { --azul: #003566; --linea: rgba(255,255,255,0.15); --hover: rgba(255,255,255,0.07) }

/* ── Base ── */
html { scroll-behavior: smooth }
body { background: var(--azul); color: #fff; font-family: 'bodoni-pt-variable', serif; -webkit-font-smoothing: antialiased; overflow-x: hidden }

/* ── Hero ── */
.hero { min-height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 24px 120px; text-align: center; position: relative }
.pretitle { font-size: 10px; letter-spacing: .38em; text-transform: uppercase; opacity: .5; margin-bottom: 52px }
.logo-wrap { width: min(440px, 82vw); margin-bottom: 56px }
.logo-wrap svg { width: 100%; height: auto }
.logo-wrap svg path { fill: #fff }
.hero-cta { display: inline-block; border: 1px solid rgba(255,255,255,.4); padding: 15px 44px; font-family: 'bodoni-pt-variable', serif; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: #fff; text-decoration: none; background: transparent; transition: background .28s, color .28s; cursor: pointer }
.hero-cta:hover { background: #fff; color: var(--azul) }

/* ── Scroll indicator ── */
.scroll { position: absolute; bottom: 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: .3 }
.scroll span { font-size: 9px; letter-spacing: .25em; text-transform: uppercase }
.scroll-line { width: 1px; height: 44px; background: #fff; animation: sl 1.8s ease-in-out infinite }
@keyframes sl { 0%, 100% { transform: scaleY(1); opacity: 1 } 50% { transform: scaleY(.4); opacity: .2 } }

/* ── Hero entrance ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px) } }
.hero .pretitle { animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both }
.hero .logo-wrap { animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both }
.hero .hero-cta  { animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both }

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none }
[data-reveal-delay="1"] { transition-delay: 0.12s }
[data-reveal-delay="2"] { transition-delay: 0.24s }
[data-reveal-delay="3"] { transition-delay: 0.36s }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none }
  .hero .pretitle, .hero .logo-wrap, .hero .hero-cta { animation: none }
}

/* ── Layout ── */
.vline { width: 1px; height: 64px; background: rgba(255,255,255,.28); margin: 0 auto 64px }
.section { padding: 80px 24px; max-width: 960px; margin: 0 auto }

/* ── About ── */
.about-section { padding: 80px 24px; display: flex; align-items: center; justify-content: center;}
.about-text { font-size: clamp(17px, 2.4vw, 21px); line-height: 1.5em; text-align: center; font-style: italic; max-width: 560px; margin: 0 auto; }

/* ── Menu section ── */
.menu-section { padding: 72px 24px 96px; max-width: 1080px; margin: 0 auto }
.eyebrow { text-align: center; font-size: 9px; letter-spacing: .42em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px }
.section-title { text-align: center; font-size: clamp(28px, 5vw, 44px); font-weight: 400; margin-bottom: 64px }

/* ── Menu grid ── */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 72px }
@media (max-width: 680px) { .menu-grid { grid-template-columns: 1fr; gap: 40px } }
.col-title { font-size: 9px; letter-spacing: .4em; text-transform: uppercase; color: rgba(255,255,255,.45); text-align: center; padding: 0 16px 18px; border-bottom: 1px solid var(--linea);}

/* ── Menu options ── */
.opt { position: relative }
.opt input { position: absolute; opacity: 0; width: 0; height: 0 }
.opt label { display: flex; align-items: center; gap: 10px; padding: 13px 16px; cursor: pointer; font-size: 14px; font-style: italic; font-family: 'bodoni-pt-variable', serif; line-height: 1.45; color: rgba(255,255,255,.72); transition: all .18s; border-bottom: 1px solid rgba(255,255,255,.05) }
.dot { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); flex-shrink: 0; margin-top: 2px; transition: all .18s }
.opt label:hover { background: var(--hover); color: #fff }
.opt input:checked + label { background: #fff; color: var(--azul); font-weight: 600 }
.opt input:checked + label .dot { background: var(--azul); border-color: var(--azul) }
.opt input:checked + label:hover { background: #fff }

/* ── Custom / other option ── */
.opt-other-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
  font-family: 'bodoni-pt-variable', serif;
  font-size: 14px;
  line-height: 1.45;
  font-style: italic;
  padding: 13px 16px;
  outline: none;
  transition: background .18s, color .18s, border-color .18s;
  -webkit-appearance: none;
}
.opt-other-input::placeholder { color: rgba(255,255,255,.26) }
.opt-other-input:focus {
  border-bottom-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.9);
}
.opt-other-input:not(:placeholder-shown) {
  font-weight: 600;
}

/* ── Selection preview ── */
.preview { border: 1px solid var(--linea); padding: 40px 48px; text-align: center; margin-bottom: 32px; min-height: 112px; display: flex; align-items: center; justify-content: center; transition: all .3s }
.prev-empty { font-size: 12px; opacity: .32; letter-spacing: .15em; text-transform: uppercase; }
.prev-cat { font-size: 9px; letter-spacing: .35em; text-transform: uppercase; opacity: .42; margin-bottom: 5px }
.prev-dish { font-size: 20px; font-style: italic; margin-bottom: 22px }
.prev-dish:last-child { margin-bottom: 0 }

/* ── Buttons ── */
.btn-area { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap }
.btn-p { background: #fff; color: var(--azul); border: none; padding: 16px 40px; font-family: 'bodoni-pt-variable', serif; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; cursor: not-allowed; opacity: .25; transition: all .25s }
.btn-p.on { opacity: 1; cursor: pointer }
.btn-p.on:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22) }
.btn-s { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); padding: 16px 32px; font-family: 'bodoni-pt-variable', serif; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; cursor: not-allowed; opacity: .25; transition: all .25s; text-decoration: none; display: inline-block }
.btn-s.on { opacity: 1; cursor: pointer }
.btn-s.on:hover { background: rgba(255,255,255,.08) }

/* ── Details ── */
.details-wrap { max-width: 960px; margin: 0 auto; padding: 0 24px 96px }
.details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1px; background: var(--linea); border: 1px solid var(--linea) }
.d-card { background: var(--azul); padding: 40px 28px; text-align: center }
.d-label { font-size: 9px; letter-spacing: .38em; text-transform: uppercase; opacity: .38; margin-bottom: 12px }
.d-main { font-size: 24px; font-style: italic; margin-bottom: 8px }
.d-note { font-size: 12px; opacity: .48; line-height: 1.5 }

/* ── Footer ── */
footer { border-top: 1px solid var(--linea); padding: 56px 24px; text-align: center }
footer p { font-size: 12px; color: rgba(255,255,255,.35); font-style: italic; line-height: 2; letter-spacing: .04em }

/* ── Mobile ── */
@media (max-width: 680px) {
  .hero { padding: 60px 20px 96px }
  .pretitle { margin-bottom: 36px }
  .logo-wrap { margin-bottom: 44px }
  .hero-cta { padding: 16px 40px; width: 100%; max-width: 280px; text-align: center }

  .section { padding: 52px 20px }

  .menu-section { padding: 52px 20px 64px }
  .section-title { margin-bottom: 40px }
  .menu-grid { gap: 32px }
  .col-title { padding: 0 12px 14px }

  .opt label { padding: 14px 14px; min-height: 48px; font-size: 14.5px }

  .preview { padding: 28px 20px; margin-bottom: 24px }
  .prev-dish { font-size: 17px; margin-bottom: 18px }

  .btn-area { flex-direction: column; gap: 10px }
  .btn-p, .btn-s { width: 100%; padding: 18px 20px; text-align: center; display: block }

  .details-wrap { padding: 0 20px 64px }
  .details-grid { grid-template-columns: repeat(2, 1fr) }
  .d-card { padding: 28px 14px }
  .d-main { font-size: 19px }
  .d-note { font-size: 11px }

  footer { padding: 40px 20px }
}

/* ── Export card (capturado por html2canvas) ── */
#ec { display: none; position: fixed; left: -9999px; top: 0; width: 620px; background: #fff; font-family: 'bodoni-pt-variable', serif; color: #fff }
.ec-in { background: var(--azul); margin: 40px 24px; }
.ec-hd { padding: 52px 100px 44px; text-align: center }
.ec-hd * { fill: #fff }
.ec-line { margin: 0 48px; height: 1px; background: rgba(255,255,255,.35) }
.ec-bd { padding: 52px 48px 44px }
.ec-ey { font-size: 8px; letter-spacing: .45em; text-transform: uppercase; opacity: .35; text-align: center; margin-bottom: 44px }
.ec-item { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.35) }
.ec-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0 }
.ec-cat { font-size: 8px; letter-spacing: .4em; text-transform: uppercase; opacity: .38; margin-bottom: 7px }
.ec-name { font-size: 26px; font-style: italic; color: #fff }
.ec-ft { padding: 28px 60px; text-align: center;}
.ec-ft p { font-size: 11px; opacity: .45; line-height: 1.7; color: #fff }
