/* ---------- Tokens ---------- */
:root {
  --red: #DD4917;
  --red-dark: #B83A10;
  --navy: #1F2C4A;
  --wine: #8E2D34;
  --cream: #F4EFE6;
  --cream-2: #EAE3D6;
  --ink: #1B1A18;
  --muted: #6E6A63;
  --line: rgba(27, 26, 24, .14);

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-weight: 400; margin: 0 0 .5em; }
h2 { font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: -.01em; }
h3 { font-size: 26px; }
p { margin: 0 0 1em; }
.mono { font-family: var(--mono); font-size: 13px; letter-spacing: .02em; text-transform: uppercase; }
.eyebrow { color: var(--red); margin-bottom: 14px; }
.muted { color: var(--muted); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.lede { font-size: 24px; max-width: 60ch; }
.lede a { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  padding: 15px 24px;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  transition: background .15s, color .15s, transform .15s;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--ghost.btn--dark { color: var(--ink); border-color: var(--ink); }
.btn--ghost.btn--dark:hover { background: var(--ink); color: var(--cream); }
.btn--small { padding: 10px 18px; font-size: 12px; }
.link { color: var(--red); text-decoration: none; border-bottom: 1px solid currentColor; }
.link:hover { color: var(--red-dark); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--pad);
  background: rgba(244, 239, 230, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-family: var(--mono); font-size: 13px; text-transform: uppercase; letter-spacing: .04em;
  text-decoration: none; color: var(--ink);
}
.nav__links a:not(.btn):hover { color: var(--red); }
.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero__bg, .hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,.35) 0%, rgba(20,12,8,.55) 60%, rgba(20,12,8,.8) 100%);
}
.hero__content { position: relative; padding: 120px var(--pad) 80px; }
.hero__logo { width: min(420px, 70vw); height: auto; margin: 0 auto 28px; filter: drop-shadow(0 6px 24px rgba(0,0,0,.35)); }
.hero__tag { font-size: clamp(30px, 4.5vw, 52px); font-style: italic; line-height: 1.1; margin-bottom: 10px; }
.hero__sub { opacity: .9; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  padding: 16px var(--pad);
  border-top: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.25);
}

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.about__text p { max-width: 54ch; }
.about__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about__imgs img { aspect-ratio: 3 / 4; object-fit: cover; border-radius: 6px; }
.about__imgs img:nth-child(2) { margin-top: 48px; }

/* ---------- Carta ---------- */
.carta { background: var(--cream-2); }
.carta__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.carta__head h2 { max-width: 16ch; margin-bottom: 0; }
.carta__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 64px; }
.menu-block--wide { grid-column: 1 / -1; }
.menu-block h3 { color: var(--red); border-bottom: 1.5px solid var(--red); padding-bottom: 10px; margin-bottom: 14px; }
.menu { list-style: none; margin: 0; padding: 0; }
.menu li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 11px 0; border-bottom: 1px dotted var(--line);
  font-size: 19px;
}
.menu li:last-child { border-bottom: 0; }
.menu li em { display: block; font-size: 15px; color: var(--muted); font-style: italic; }
.menu li b { font-family: var(--mono); font-weight: 500; font-size: 14px; white-space: nowrap; }
.menu li b small { font-size: 11px; color: var(--muted); }
.menu-block--wide .menu { columns: 2; column-gap: 64px; }
.menu-block--wide .menu li { break-inside: avoid; }
.menu__note { margin-top: 18px; color: var(--muted); text-transform: none; }
.carta__foot { margin-top: 48px; color: var(--muted); text-transform: none; text-align: center; }

/* ---------- Strip ---------- */
.strip { display: grid; grid-template-columns: repeat(6, 1fr); }
.strip img { aspect-ratio: 1; object-fit: cover; width: 100%; }

/* ---------- Vinos ---------- */
.vinos { background: var(--navy); color: var(--cream); }
.vinos .eyebrow { color: #F0A583; }
.vinos__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.vinos__img img { aspect-ratio: 3 / 4; object-fit: cover; border-radius: 6px; }
.vinos__img figcaption { margin-top: 12px; opacity: .7; text-transform: none; }
.vinos__text p { max-width: 56ch; }
.sign { font-style: italic; opacity: .85; }
.tags { list-style: none; padding: 0; margin: 28px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tags li { border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 7px 12px; text-transform: none; }
.vinos .link { color: #F0A583; }

/* ---------- Etcéteras ---------- */
.etc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.card { background: #fff; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.card img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.card__body { padding: 20px 22px 24px; }
.card__body h3 { margin-bottom: 6px; }
.card__body p { margin: 0; color: var(--muted); text-transform: none; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 4px; }
.gallery img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }

/* ---------- Visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.info { margin: 32px 0 0; display: grid; gap: 26px; }
.info dt { color: var(--red); margin-bottom: 6px; }
.info dd { margin: 0; }
.info .btn { margin-top: 14px; }
.visit__map { position: sticky; top: 90px; }
.visit__map iframe { width: 100%; aspect-ratio: 4 / 5; border: 0; border-radius: 6px; filter: grayscale(.2) contrast(1.05); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: 56px 0 40px; }
.footer__grid { display: grid; grid-template-columns: auto 1fr 1fr; gap: 32px; align-items: center; }
.footer .mono { text-transform: none; opacity: .8; margin: 0; line-height: 1.6; }
.footer__logo { height: 56px; width: auto; }
.footer__small { grid-column: 1 / -1; opacity: .5; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about__grid, .vinos__grid, .visit__grid { grid-template-columns: 1fr; }
  .carta__grid { grid-template-columns: 1fr; gap: 36px; }
  .menu-block--wide .menu { columns: 1; }
  .etc__grid { grid-template-columns: 1fr 1fr; }
  .strip { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 20px; }
  .visit__map { position: static; }
  .vinos__img img { aspect-ratio: 4 / 3; }
}
@media (max-width: 700px) {
  body { font-size: 18px; }
  .nav__toggle {
    display: block; background: none; border: 0; padding: 8px; cursor: pointer;
  }
  .nav__toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; transition: transform .2s, opacity .2s; }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-8px) rotate(-45deg); }
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px var(--pad) 20px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 10px 0; font-size: 15px; }
  .nav__links .btn { margin-top: 8px; padding: 12px 20px; }
  .hero { min-height: 88vh; }
  .hero__content { padding: 90px var(--pad) 110px; }
  .hero__strip { flex-direction: column; align-items: center; gap: 4px; padding: 14px var(--pad); }
  .hero__strip span[aria-hidden] { display: none; }
  .about__imgs img:nth-child(2) { margin-top: 28px; }
  .etc__grid { grid-template-columns: 1fr; }
  .menu li { font-size: 17px; }
  .lede { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ---------- GEO additions ---------- */
.hero__desc { max-width: 52ch; margin: 0 auto 8px; font-size: 19px; line-height: 1.45; opacity: .92; }
.copas { margin-top: clamp(48px, 7vw, 96px); padding-top: 40px; border-top: 1px solid rgba(255,255,255,.18); }
.copas__title { color: #F0A583; margin-bottom: 24px; }
.copas__label { opacity: .6; margin-bottom: 6px; }
.copas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 64px; }
.menu--light li { border-bottom-color: rgba(255,255,255,.14); }
.menu--light li em { color: rgba(244,239,230,.6); }
.copas .menu__note { color: rgba(244,239,230,.6); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list details:first-child { border-top: 1px solid var(--line); }
.faq__list summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; font-size: 24px; position: relative; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; position: absolute; right: 4px; top: 16px; font-family: var(--mono); font-size: 22px; color: var(--red); }
.faq__list details[open] summary::after { content: "–"; }
.faq__list details p { margin: 0 0 22px; max-width: 60ch; }
.faq__list details a { color: var(--red); }
@media (max-width: 960px) { .faq__grid, .copas__grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .hero__desc { font-size: 17px; } .faq__list summary { font-size: 20px; } }

/* ---------- Editorial refinements ---------- */
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow__n { color: var(--ink); opacity: .45; }
.eyebrow::after { content: ""; flex: 0 0 40px; height: 1px; background: currentColor; opacity: .5; }
.vinos .eyebrow__n { color: var(--cream); }
.people { text-transform: none; color: var(--muted); margin-top: 8px; max-width: 54ch; }

.featured { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: clamp(48px, 6vw, 80px); }
.dish { display: block; text-decoration: none; color: inherit; background: var(--cream); border-radius: 6px; overflow: hidden; border: 1px solid var(--line); transition: transform .2s; }
.dish:hover { transform: translateY(-3px); }
.dish img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.dish__body { padding: 14px 16px 18px; }
.dish__tag { color: var(--red); display: block; margin-bottom: 6px; font-size: 11px; }
.dish__body h3 { font-size: 24px; margin-bottom: 4px; }
.dish__body p { margin: 0; color: var(--muted); text-transform: none; font-size: 12px; line-height: 1.5; }

.statement { position: relative; min-height: 70vh; display: grid; place-items: center; overflow: hidden; color: #fff; text-align: center; }
.statement img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.45); }
.statement p { position: relative; margin: 0; padding: 80px var(--pad); font-size: clamp(44px, 9vw, 128px); line-height: .95; font-style: italic; letter-spacing: -.02em; display: flex; flex-direction: column; }
.statement p span:nth-child(even) { font-style: normal; }

.float-cta { position: fixed; right: 20px; bottom: 20px; z-index: 40; box-shadow: 0 8px 28px rgba(0,0,0,.25); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .25s, transform .25s; }
.float-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }

.footer__top { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer__tag { font-size: 28px; font-style: italic; margin: 0; opacity: .9; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 40px 0; }
.footer__cols p { margin: 0 0 10px; font-size: 17px; line-height: 1.55; }
.footer__cols a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.footer__cols a:hover { border-color: #fff; }
.footer__cols .link { color: #F0A583; border-color: currentColor; }
.footer .footer__label { color: #F0A583; text-transform: uppercase; opacity: 1; margin-bottom: 12px; }
.footer .footer__small { text-transform: none; opacity: .5; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); margin: 0; }
@media (max-width: 960px) { .featured { grid-template-columns: repeat(2, 1fr); } .footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .featured { grid-template-columns: 1fr 1fr; gap: 10px; } .dish__body h3 { font-size: 20px; } .footer__cols { grid-template-columns: 1fr; } .statement { min-height: 60vh; } .float-cta { right: 14px; bottom: 14px; } }

/* ---------- Story, quote, press ---------- */
.quote { margin: 28px 0 0; padding-left: 20px; border-left: 2px solid var(--red); }
.quote p { font-size: 26px; font-style: italic; line-height: 1.25; margin-bottom: 8px; }
.quote cite { font-style: normal; color: var(--muted); }
.philosophy { margin-top: clamp(48px, 7vw, 96px); padding-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.philosophy__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 5vw, 80px); }
.philosophy h3 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; }
.philosophy p { max-width: 60ch; }
.press { background: var(--cream-2); }
.press__list { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.press__list a { display: flex; flex-direction: column; gap: 8px; height: 100%; padding: 26px 28px; background: var(--cream); border: 1px solid var(--line); border-radius: 6px; text-decoration: none; color: inherit; transition: transform .2s, border-color .2s; }
.press__list a:hover { transform: translateY(-3px); border-color: var(--red); }
.press__src { color: var(--red); }
.press__title { font-size: 26px; line-height: 1.15; }
.press__blurb { font-size: 16px; color: var(--muted); }
@media (max-width: 960px) { .philosophy__grid, .press__list { grid-template-columns: 1fr; } }

/* ---------- Language switcher ---------- */
.lang { display: flex; gap: 2px; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang a { padding: 5px 9px !important; border-radius: 999px; font-size: 11px !important; color: var(--muted); }
.lang a.is-active { background: var(--ink); color: var(--cream); }
.lang a:not(.is-active):hover { color: var(--ink); }
@media (max-width: 700px) { .lang { margin: 8px 0 4px; align-self: flex-start; } }
@media (min-width: 701px) and (max-width: 1100px) { .nav__links { gap: 16px; } .nav__links a { font-size: 12px; } .lang { margin-left: 4px; } }

/* ---------- Open-now indicator ---------- */
.open-now { display: inline-flex; align-items: center; gap: 8px; }
.open-now[hidden] { display: none; }
.open-now::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #E24B3C; box-shadow: 0 0 0 3px rgba(226,75,60,.25); }
.open-now.is-open::before { background: #3FBF6F; box-shadow: 0 0 0 3px rgba(63,191,111,.25); }
.open-now.is-soon::before { background: #F0B429; box-shadow: 0 0 0 3px rgba(240,180,41,.25); }

/* ---------- Playlist ---------- */
.music { background: var(--ink); color: var(--cream); padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
.music .eyebrow { color: #F0A583; }
.music .eyebrow__n { color: var(--cream); }
.music__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.music__grid p { max-width: 44ch; }
.music .link { color: #F0A583; }
.music__embed { border-radius: 12px; display: block; }
@media (max-width: 960px) { .music__grid { grid-template-columns: 1fr; } }

/* Fix: images with width/height attributes must not keep the attribute height */
.about__imgs img, .vinos__img img { height: auto; }
