:root {
  --ink: #1c1714;
  --ink-soft: #4a423c;
  --ink-mute: #7d736b;
  --paper: #fbf8f3;
  --paper-2: #f4ede2;
  --line: #e2d7c6;
  --wine: #7b2d26;
  --wine-dark: #5e211c;
  --gold: #b8894a;
  --white: #fff;
  --wrap: 1180px;
  --r: 3px;
  --header-h: 100px;
  --shadow-s: 0 1px 3px rgba(28, 23, 20, .07), 0 6px 18px rgba(28, 23, 20, .05);
  --shadow-m: 0 4px 12px rgba(28, 23, 20, .09), 0 18px 44px rgba(28, 23, 20, .09);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--wine-dark); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
}

h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1.05em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(72px, 9vw, 124px) 0; }

main > section[id] { scroll-margin-top: var(--header-h); }
#inicio { scroll-margin-top: 0; }

.eyebrow {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .85rem;
}

.section-head { max-width: 660px; margin: 0 auto clamp(44px, 5vw, 68px); text-align: center; }
.section-head .eyebrow { margin-bottom: .7rem; }
.section-sub { color: var(--ink-soft); margin: 1.1rem 0 0; font-size: 1.02rem; }

.lead { font-size: 1.16rem; color: var(--ink); font-weight: 500; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--wine); color: #fff; padding: 12px 20px; font-size: .9rem;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sans); font-size: .87rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 30px; border: 1px solid transparent; border-radius: var(--r);
  cursor: pointer; transition: background .22s, color .22s, border-color .22s, transform .22s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); background: var(--paper-2); }
.btn-sm { padding: 11px 22px; font-size: .78rem; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: rgba(251, 248, 243, .96);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 12px rgba(28,23,20,.05);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 11px; color: #fff; }
.brand-mark { width: 34px; height: 34px; flex: none; color: var(--gold); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.16; }
.brand-text strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; letter-spacing: .005em; }
.brand-text em {
  font-style: normal; font-size: .62rem; letter-spacing: .29em;
  text-transform: uppercase; opacity: .72; font-weight: 500;
}
.site-header.solid .brand { color: var(--ink); }
.site-header.solid .brand-mark { color: var(--wine); }

.primary-nav { display: flex; align-items: center; gap: 34px; }
.primary-nav ul { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  color: rgba(255,255,255,.92); font-size: .83rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; position: relative; padding: 4px 0;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: currentColor; transition: width .25s;
}
.primary-nav a:hover::after { width: 100%; }
.site-header.solid .primary-nav a { color: var(--ink-soft); }
.site-header.solid .primary-nav a:hover { color: var(--wine); }
.nav-cta { color: #fff !important; }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 0;
  cursor: pointer; padding: 11px 9px; flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 1.5px; background: #fff; transition: transform .25s, opacity .25s, background .25s; }
.site-header.solid .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: min(100svh, 860px);
  display: flex; align-items: center; overflow: hidden;
  padding: 130px 0 96px;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(20,15,12,.88) 0%, rgba(20,15,12,.66) 46%, rgba(20,15,12,.34) 100%),
    linear-gradient(to top, rgba(20,15,12,.72) 0%, rgba(20,15,12,0) 55%);
}
.hero-content { position: relative; color: #fff; max-width: 680px; }
.hero-eyebrow {
  font-size: .76rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.5rem;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff; margin: 0 0 1.6rem; font-weight: 500;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-lede {
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,.9); max-width: 34em; margin: 0 0 2.3rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  margin: 1.6rem 0 0; font-size: .84rem; letter-spacing: .06em;
  color: rgba(255,255,255,.62); text-transform: uppercase;
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1px solid rgba(255,255,255,.42); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero-scroll span { width: 2px; height: 8px; background: rgba(255,255,255,.8); border-radius: 2px; animation: dot 1.9s infinite; }
@keyframes dot { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(12px); opacity: .25; } }

/* ---------- strip ---------- */
.strip { background: var(--ink); color: rgba(255,255,255,.82); padding: 4px 0; }
.strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  padding: 34px 26px; display: flex; flex-direction: column; gap: .4rem;
  border-left: 1px solid rgba(255,255,255,.1);
}
.strip-item:first-child { border-left: 0; padding-left: 0; }
.strip-key {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: #fff; line-height: 1.2;
}
.strip-key small { font-size: .74rem; font-family: var(--sans); opacity: .55; margin-left: 2px; }
.strip-val { font-size: .87rem; line-height: 1.55; color: rgba(255,255,255,.6); }
.stars { display: flex; gap: 2px; margin-bottom: 3px; }
.stars svg { width: 14px; height: 14px; fill: var(--gold); }
.stars svg.half { opacity: .45; }

/* ---------- about ---------- */
.about-grid {
  display: grid; grid-template-columns: .92fr 1fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.about-media { position: relative; }
.about-fig { margin: 0; overflow: hidden; border-radius: var(--r); }
.about-fig img { width: 100%; height: 100%; object-fit: cover; }
.about-fig-main { aspect-ratio: 3 / 4; box-shadow: var(--shadow-m); }
.about-fig-sub {
  position: absolute; right: -34px; bottom: -40px;
  width: 54%; aspect-ratio: 4 / 3;
  border: 7px solid var(--paper); box-shadow: var(--shadow-m);
}
.about-text h2 { margin-bottom: 1.35rem; }
.about-text p { color: var(--ink-soft); }

.feature-list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: .85rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .96rem; color: var(--ink);
}
.feature-list svg { width: 18px; height: 18px; flex: none; color: var(--wine); margin-top: .3rem; }

/* ---------- dishes ---------- */
.dishes { background: var(--paper-2); }
.dish-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.dish {
  background: var(--white); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-s); display: flex; flex-direction: column;
  transition: transform .28s, box-shadow .28s;
}
.dish:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.dish-lg { grid-column: span 2; grid-row: span 2; }
.dish-img { overflow: hidden; aspect-ratio: 4 / 3; }
.dish-lg .dish-img { aspect-ratio: 16 / 10; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dish:hover .dish-img img { transform: scale(1.045); }
.dish-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.dish-lg .dish-body { padding: 34px 34px 36px; }
.dish-body h3 { font-size: 1.32rem; }
.dish-lg .dish-body h3 { font-size: 1.9rem; }
.dish-zh { font-size: .88rem; color: var(--gold); letter-spacing: .04em; margin: 0; font-weight: 500; }
.dish-body p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.dish-body blockquote {
  margin: .55rem 0 0; padding-left: 15px; border-left: 2px solid var(--gold);
  font-family: var(--serif); font-size: 1.06rem; font-style: italic; color: var(--ink);
}
.dishes-foot {
  margin: 34px auto 0; text-align: center; max-width: 46em;
  font-size: .95rem; color: var(--ink-mute);
}

/* ---------- shot grids ---------- */
.menu-grid, .gal-grid { display: grid; gap: 16px; }
.menu-grid { grid-template-columns: repeat(5, 1fr); }
.gal-grid { grid-template-columns: repeat(4, 1fr); }

.shot {
  padding: 0; border: 0; background: var(--paper-2); cursor: zoom-in;
  overflow: hidden; border-radius: var(--r); box-shadow: var(--shadow-s);
  aspect-ratio: 3 / 4; position: relative; display: block;
}
.gal-grid .shot { aspect-ratio: 1 / 1; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s, opacity .3s; }
.shot:hover img { transform: scale(1.05); opacity: .9; }

/* ---------- reviews ---------- */
.reviews { background: var(--paper-2); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  margin: 0; background: var(--white); border-radius: var(--r);
  padding: 32px 30px; box-shadow: var(--shadow-s);
  display: flex; flex-direction: column; gap: .9rem;
}
.review-stars { color: var(--gold); font-size: .95rem; letter-spacing: .16em; }
.review blockquote {
  margin: 0; font-family: var(--serif); font-size: 1.1rem; line-height: 1.62;
  color: var(--ink); font-style: italic;
}
.review figcaption {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: auto; padding-top: .5rem;
}

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.visit-info h2 { margin-bottom: 2rem; }

.info-list { margin: 0 0 2rem; display: grid; gap: 1.6rem; }
.info-list > div { display: grid; gap: .4rem; }
.info-list dt {
  display: flex; align-items: center; gap: .55rem;
  font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
}
.info-list dt svg { width: 16px; height: 16px; }
.info-list dd { margin: 0; color: var(--ink-soft); font-size: 1rem; }

.hours { border-collapse: collapse; width: 100%; max-width: 330px; }
.hours th, .hours td {
  text-align: left; padding: 7px 0; font-size: .95rem; font-weight: 400;
  border-bottom: 1px solid var(--line);
}
.hours th { color: var(--ink); }
.hours td { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours tr.closed th, .hours tr.closed td { color: var(--wine); font-weight: 500; }

.badges { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.badges li {
  font-size: .8rem; letter-spacing: .04em; padding: 7px 14px;
  border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft); background: var(--white);
}

.visit-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 1.8rem; }
.visit-tip {
  font-size: .92rem; color: var(--ink-soft); background: var(--paper-2);
  border-left: 2px solid var(--gold); padding: 16px 20px; margin: 0; border-radius: 0 var(--r) var(--r) 0;
}
.visit-tip strong { color: var(--ink); }

.visit-map {
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-m);
  background: var(--paper-2); position: sticky; top: 100px;
}
.visit-map iframe { width: 100%; height: 560px; border: 0; display: block; filter: saturate(.88); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 66px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.11);
}
.footer-brand strong { font-family: var(--serif); font-size: 1.4rem; color: #fff; font-weight: 600; }
.footer-brand p { margin: .4rem 0 0; font-size: .9rem; }
.footer-nav { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a { color: rgba(255,255,255,.62); font-size: .92rem; }
.footer-nav a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; font-size: .92rem; }
.footer-contact a { color: #fff; font-size: 1.06rem; font-weight: 500; }
.footer-legal {
  padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 10px; font-size: .8rem; color: rgba(255,255,255,.4);
}
.footer-legal p { margin: 0; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14, 11, 9, .95);
  display: flex; align-items: center; justify-content: center; padding: 60px 20px;
}
.lightbox[hidden] { display: none; }
.lb-img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: 2px; box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.09); border: 0; color: #fff;
  cursor: pointer; border-radius: 50%; transition: background .2s; line-height: 1;
}
.lb-close { top: 22px; right: 24px; width: 46px; height: 46px; font-size: 1.9rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2.1rem; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-count {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  margin: 0; color: rgba(255,255,255,.6); font-size: .85rem; letter-spacing: .12em;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .dish-lg { grid-column: span 2; grid-row: auto; }
  .dish-lg .dish-img { aspect-ratio: 16 / 9; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { position: static; }
  .visit-map iframe { height: 380px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-fig-main { aspect-ratio: 16 / 11; }
  .about-fig-sub { width: 42%; right: -14px; bottom: -28px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item { padding: 26px 22px; }
  .strip-item:nth-child(odd) { border-left: 0; padding-left: 0; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .brand, .nav-toggle { position: relative; z-index: 2; }
  .primary-nav {
    position: fixed; inset: 0 0 auto; top: 0; z-index: 1; padding: 96px 26px 34px;
    background: var(--paper); flex-direction: column; align-items: stretch; gap: 8px;
    box-shadow: var(--shadow-m); transform: translateY(-102%);
    transition: transform .34s cubic-bezier(.4,0,.2,1); max-height: 100svh; overflow-y: auto;
  }
  .primary-nav.open { transform: none; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav ul li { border-bottom: 1px solid var(--line); }
  .primary-nav a, .site-header.solid .primary-nav a {
    color: var(--ink); display: block; padding: 15px 2px; font-size: .95rem; letter-spacing: .06em;
  }
  .primary-nav a::after { display: none; }
  .nav-cta { margin-top: 18px; align-self: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dish-grid { grid-template-columns: 1fr; gap: 20px; }
  .dish-lg { grid-column: auto; }
  .review-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-left: 0; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
  .strip-item:first-child { border-top: 0; }
  .hero { padding: 118px 0 84px; }
  .hero-actions .btn { width: 100%; }
  .about-fig-sub { position: static; width: 100%; border: 0; margin-top: 14px; box-shadow: var(--shadow-s); }
  .lb-nav { width: 42px; height: 42px; font-size: 1.7rem; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .visit-actions .btn { width: 100%; }
}
