/* ==========================================================================
   LEOPARD — Design tokens
   Palette: near-black ground, deep dried-burgundy, antique gold (used
   sparingly, like a glint), warm ivory white for type.
   Display type: Bodoni Moda (high-contrast didone — the fine-dining signal)
   UI/body type: Jost (quiet geometric sans, lets the serif carry the voice)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;1,6..96,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --black:        #0a0908;
  --black-soft:   #121110;
  --burgundy-deep:#2c070b;
  --burgundy:     #5e1420;
  --burgundy-lit: #7c1c29;
  --gold:         #b8912f;
  --gold-bright:  #d9b65c;
  --white:        #f3eee6;
  --white-dim:    rgba(243, 238, 230, 0.62);
  --white-faint:  rgba(243, 238, 230, 0.14);

  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --container: 1180px;
  --edge: clamp(24px, 6vw, 96px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--burgundy); color: var(--white); }

/* Focus visibility — kept elegant, not default blue */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
}

/* ---- Type scale ------------------------------------------------------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--white);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.3; }

p { max-width: 60ch; color: var(--white-dim); }

.label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 400;
}

.rule {
  width: 46px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 22px 0;
}

/* ---- Nav ---------------------------------------------------------------- */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--edge);
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.is-scrolled {
  background: rgba(10, 9, 8, 0.86);
  backdrop-filter: blur(10px);
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-faint);
}

.site-nav__mark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav__links a {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--white-dim);
  position: relative;
  padding-bottom: 4px;
}

.site-nav__links a:hover,
.site-nav__links a.is-active { color: var(--white); }

.site-nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
}

.site-nav__cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 9px 20px;
  border-radius: 2px;
  font-size: 0.82rem !important;
  transition: background 0.3s ease, color 0.3s ease;
}
.site-nav__cta:hover { background: var(--gold); color: var(--black) !important; }

.site-nav__toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Mobile nav */
@media (max-width: 780px) {
  .site-nav__links {
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  }
  .site-nav__links.is-open { transform: translateY(0); }
  .site-nav__links a { font-size: 1.4rem; }
  .site-nav__toggle { display: block; z-index: 60; }
}

/* ---- Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.15) 32%, rgba(10,9,8,0.35) 62%, var(--black) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--edge) 90px;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 1.3s 0.2s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  margin-bottom: 18px;
  display: block;
}

.hero h1 {
  font-size: clamp(3.4rem, 11vw, 8rem);
  font-style: italic;
}

.hero__sub {
  max-width: 480px;
  margin-top: 20px;
  color: var(--white-dim);
  font-size: 1.02rem;
}

.hero__scroll {
  position: absolute;
  right: var(--edge);
  bottom: 40px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 46px;
  background: var(--white-dim);
}

@media (max-width: 780px) {
  .hero__scroll { display: none; }
}

/* ---- Sections ---------------------------------------------------------------- */

section { padding: 128px 0; }

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 860px) {
  .intro { grid-template-columns: 1fr; gap: 40px; }
}

.intro__lede {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-style: italic;
  color: var(--white);
  max-width: 46ch;
}

/* Signature dishes */
.dishes {
  background: var(--black-soft);
  border-top: 1px solid var(--white-faint);
  border-bottom: 1px solid var(--white-faint);
}

.dishes__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 64px;
}

.dishes__head p { margin: 0; }

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--white-faint);
}

@media (max-width: 860px) {
  .dish-grid { grid-template-columns: 1fr; }
}

.dish-card {
  background: var(--black-soft);
  padding: 44px 36px;
  position: relative;
  transition: background 0.4s ease;
}

.dish-card:hover { background: var(--burgundy-deep); }

.dish-card__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 26px;
}

.dish-card h3 { margin-bottom: 10px; }
.dish-card p { font-size: 0.92rem; margin-bottom: 0; }
.dish-card__price {
  display: block;
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-bright);
}

/* Ambiance / gallery strip */
.ambiance__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

@media (max-width: 860px) {
  .ambiance__grid { grid-template-columns: 1fr; }
}

.ambiance__panel {
  background: linear-gradient(155deg, var(--burgundy-deep), var(--black) 70%);
  border: 1px solid var(--white-faint);
  min-height: 340px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.ambiance__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 22% 28%, rgba(184,145,47,0.16) 0, transparent 40%),
                     radial-gradient(circle at 78% 68%, rgba(184,145,47,0.10) 0, transparent 38%);
}

.ambiance__panel h3 { position: relative; font-style: italic; }
.ambiance__panel p  { position: relative; font-size: 0.92rem; }

/* Location / hours */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

@media (max-width: 860px) {
  .location { grid-template-columns: 1fr; gap: 48px; }
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--white-faint);
  gap: 20px;
}
.info-row:first-child { border-top: 1px solid var(--white-faint); }
.info-row span:first-child { color: var(--white-dim); font-size: 0.9rem; }
.info-row span:last-child { text-align: right; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  background: transparent;
}
.btn:hover { background: var(--gold); color: var(--black); }

.btn--solid {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}
.btn--solid:hover { background: var(--burgundy-lit); border-color: var(--burgundy-lit); color: var(--white); }

/* CTA band */
.cta-band {
  text-align: center;
  background: var(--burgundy-deep);
  border-top: 1px solid var(--white-faint);
  border-bottom: 1px solid var(--white-faint);
}
.cta-band h2 { font-style: italic; margin-bottom: 30px; }
.cta-band .container { display: flex; flex-direction: column; align-items: center; }

/* Footer */
footer {
  padding: 70px 0 34px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--white-faint);
}
@media (max-width: 780px) {
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
}
.footer__mark { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; margin-bottom: 14px; }
.footer h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; font-weight: 400; }
.footer a, .footer span { display: block; font-size: 0.9rem; color: var(--white-dim); margin-bottom: 8px; }
.footer a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.78rem;
  color: var(--white-dim);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---- Page header (menu / reservations) ---------------------------------- */

.page-hero {
  padding: 200px 0 70px;
  background: linear-gradient(180deg, var(--burgundy-deep), var(--black));
  border-bottom: 1px solid var(--white-faint);
}
.page-hero h1 { font-style: italic; font-size: clamp(2.6rem, 7vw, 4.6rem); }

/* Menu page */
.menu-section { padding: 90px 0; }
.menu-section + .menu-section { padding-top: 0; }
.menu-section__head { margin-bottom: 40px; }
.menu-list { display: flex; flex-direction: column; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--white-faint);
}
.menu-item__name { font-family: var(--font-display); font-size: 1.15rem; }
.menu-item__desc { font-size: 0.88rem; margin-top: 6px; margin-bottom: 0; }
.menu-item__price {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-bright);
  white-space: nowrap;
  padding-top: 2px;
}
.menu-note {
  margin-top: 60px;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--white-dim);
  border-top: 1px solid var(--white-faint);
  padding-top: 30px;
}

/* Reservations page */
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .reserve-grid { grid-template-columns: 1fr; gap: 50px; }
}

.whatsapp-card {
  border: 1px solid var(--gold);
  padding: 40px;
}
.whatsapp-card h3 { margin-bottom: 12px; }
.whatsapp-card p { font-size: 0.92rem; }
.whatsapp-card .btn { margin-top: 22px; width: 100%; justify-content: center; }

.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--white-dim);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--white-faint);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 2px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-bottom-color: var(--gold);
}
.form-field select option { background: var(--black); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.form-status {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--gold-bright);
  display: none;
}
.form-status.is-visible { display: block; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__content { animation: none; opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
