/* ============================================================
   La Gitana — Cinematic Adriatic
   Stari Grad, Hvar
   ============================================================ */

:root {
  color-scheme: dark;

  /* palette */
  --bg: #06121a;          /* deep sea-night */
  --bg-soft: #0b1f2b;     /* navy slate */
  --bg-elev: #102b3a;     /* elevated card */
  --cream: #f6f1e7;       /* warm sand */
  --cream-95: rgba(246, 241, 231, 0.95);
  --cream-65: rgba(246, 241, 231, 0.65);
  --cream-40: rgba(246, 241, 231, 0.4);
  --cream-25: rgba(246, 241, 231, 0.25);
  --cream-15: rgba(246, 241, 231, 0.15);
  --cream-10: rgba(246, 241, 231, 0.10);
  --cream-06: rgba(246, 241, 231, 0.06);

  --sunset: #ff6b3d;      /* terracotta */
  --sunset-deep: #d94a22; /* deep terracotta */
  --gold: #f2c46d;        /* warm gold */
  --sea: #3dd6c6;         /* Adriatic teal */
  --olive: #a6c36f;       /* island olive */
  --live: var(--sea);

  /* type */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", system-ui, sans-serif;

  /* layout */
  --max: 1600px;
  --pad: clamp(1.25rem, 4vw, 3rem);

  /* misc */
  --shadow-card: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--sunset);
  color: var(--bg);
}

/* ===== Layout helpers ===== */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunset);
  margin: 0 0 1.4rem;
}

.section-label::before {
  content: "—";
  color: var(--sunset);
  letter-spacing: 0;
}

/* ===== Reveal animation ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Top nav ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(13, 10, 8, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-10);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 76px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream-65);
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--cream);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sunset);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--cream-15);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.brand small {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-40);
  margin-top: 4px;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  margin-left: 0.25rem;
}

.nav-phone {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--cream-15);
  color: var(--cream-65);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-phone:hover,
.nav-phone:focus-visible {
  color: var(--bg);
  background: var(--cream);
  border-color: var(--cream);
  outline: none;
}

.nav-phone svg { width: 16px; height: 16px; }

.lang-toggle {
  display: inline-flex;
  background: var(--cream-06);
  border: 1px solid var(--cream-10);
  padding: 3px;
  border-radius: var(--radius-pill);
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream-65);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.is-active {
  background: var(--cream);
  color: var(--bg);
}

.lang-btn:hover:not(.is-active) {
  color: var(--cream);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  color: var(--bg);
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(244, 234, 215, 0.18);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--cream-15);
  color: var(--cream);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { width: 18px; height: 18px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease,
              color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--cream);
  color: var(--bg);
  box-shadow: 0 18px 32px rgba(244, 234, 215, 0.16);
}

.btn-primary:hover {
  box-shadow: 0 22px 36px rgba(244, 234, 215, 0.24);
}

.btn-sunset {
  background: var(--sunset);
  color: var(--bg);
  box-shadow: 0 18px 32px rgba(232, 123, 60, 0.28);
}

.btn-sunset:hover {
  background: #ee8a4c;
  box-shadow: 0 22px 38px rgba(232, 123, 60, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  border-color: var(--cream-25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cream-65);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: clamp(720px, 92vh, 920px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-image: url('assets/hero-courtyard-dusk.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,18,26,0.55) 0%, rgba(6,18,26,0.08) 28%, rgba(6,18,26,0.94) 100%),
    radial-gradient(ellipse 90% 60% at 75% 65%, rgba(255,107,61,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 18% 40%, rgba(61,214,198,0.14) 0%, transparent 62%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding-top: 6rem;
  padding-bottom: clamp(3rem, 8vh, 5.5rem);
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.6rem;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: ca-pulse 2.4s infinite;
}

@keyframes ca-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 11vw, 11.5rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--cream);
}

.hero h1 .it {
  font-style: italic;
  font-weight: 400;
}

.hero-copy {
  margin: 1.6rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.45;
  color: var(--cream-65);
}

.hero-primary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.hero-brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--cream-15);
  background: var(--bg-soft);
  flex-shrink: 0;
}

.hero-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.hero-brand-text strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-brand-text small {
  margin-top: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-40);
}

.hero-hook {
  margin: 1.15rem 0 0;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.35;
  font-weight: 600;
  color: var(--sunset);
  max-width: 30rem;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.25rem;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
}

.live-card {
  background: rgba(13, 10, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--cream-15);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  width: 280px;
}

.live-card .label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--live);
  margin-bottom: 0.65rem;
}

.live-card .label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
}

.live-card.is-gold .label { color: var(--gold); }
.live-card.is-gold .label .dot { background: var(--gold); }

.live-card .title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.live-card .sub {
  font-size: 0.78rem;
  color: var(--cream-65);
}

/* ===== Ticker ===== */
.ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--cream-10);
}

.ticker-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ticker-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-40);
}

.ticker-val {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.ticker-val a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.ticker-val a:hover { border-bottom-color: var(--sunset); }

/* ===== Section ===== */
.section {
  padding: clamp(4.5rem, 11vh, 9rem) 0;
}

#home,
#story,
#signatures,
#menu,
#gallery,
#reserve,
#visit {
  scroll-margin-top: 88px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 7.5vw, 7rem);
  line-height: 0.93;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 18ch;
  color: var(--cream);
}

.section-title .it { font-style: italic; font-weight: 400; }

/* ===== About / Story ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  margin-top: clamp(3rem, 6vh, 5rem);
}

.about-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
}

.about-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,10,8,0) 60%, rgba(13,10,8,0.3) 100%);
  pointer-events: none;
}

.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-narrative p {
  margin: 0 0 1.1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cream-65);
}

.about-quote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--sunset);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.25;
  color: var(--gold);
}

.about-quote-caption {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-40);
}

/* ===== Signatures ===== */
.signatures-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.signatures {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: var(--max);
  margin: clamp(2.5rem, 5vh, 4rem) auto 0;
  padding: 0 var(--pad);
}

.sig-card {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 380px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  background-color: var(--bg-soft);
  border: 0;
  padding: 0;
  font-family: inherit;
  text-align: left;
  transition: transform 0.6s var(--ease);
}

.sig-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.4s ease;
}

.sig-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 45%,
    rgba(13, 10, 8, 0.55) 70%,
    rgba(13, 10, 8, 0.95) 100%);
  transition: background 0.4s ease;
  pointer-events: none;
}

.sig-card:hover {
  transform: translateY(-3px);
}

.sig-card:hover .sig-img {
  transform: scale(1.04);
}

.sig-card:hover::after {
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 35%,
    rgba(13, 10, 8, 0.7) 62%,
    rgba(13, 10, 8, 0.97) 100%);
}

.sig-price {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(13, 10, 8, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  border: 1px solid var(--cream-15);
  z-index: 1;
}

.sig-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.25rem 1.65rem;
  z-index: 1;
  text-align: center;
}

.sig-tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.sig-name {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.8vw, 1.85rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--cream);
}

.sig-desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--cream-65);
}

/* ===== Gallery ===== */
.gallery-head {
  max-width: var(--max);
  margin: 0 auto 2.75rem;
  padding: 0 var(--pad);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-hint {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-40);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  font-family: inherit;
  isolation: isolate;
  transition: transform 0.5s var(--ease);
}

.gallery-grid .gallery-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(7n+5) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--sunset);
  outline-offset: 3px;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.4rem 1.25rem;
  text-align: left;
  background: linear-gradient(180deg, rgba(13,10,8,0) 0%, rgba(13,10,8,0.92) 100%);
  transform: translateY(40%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption-label {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.gallery-caption h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.gallery-caption p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--cream-65);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(13, 10, 8, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0 auto;
  max-width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  transform: scale(0.97);
  transition: transform 0.4s var(--ease);
}

.lightbox.is-open .lightbox-figure {
  transform: scale(1);
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
}

.lightbox-figure figcaption {
  text-align: center;
  color: var(--cream);
}

.lightbox-figure h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.6rem;
}

.lightbox-figure p {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  color: var(--cream-65);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--cream-15);
  color: var(--cream);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background 0.25s, transform 0.25s var(--ease);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,0.14);
  transform: scale(1.05);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

/* ===== Menu preview cards ===== */
.menu-preview {
  background: var(--bg-soft);
  border-top: 1px solid var(--cream-10);
  border-bottom: 1px solid var(--cream-10);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: clamp(2rem, 4vh, 3rem);
}

.menu-card {
  padding: 2.4rem 2.2rem;
  background: var(--bg-elev);
  border: 1px solid var(--cream-10);
  border-radius: var(--radius);
}

.menu-card-eyebrow {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.66rem;
  color: var(--sunset);
  font-weight: 600;
}

.menu-card h3 {
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.85rem;
  color: var(--cream);
  border-bottom: 1px solid var(--cream-10);
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-card ul li {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed var(--cream-10);
}

.menu-card ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.item-name {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--cream);
}

.item-price {
  color: var(--sunset);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

.menu-card ul li p {
  grid-column: 1 / -1;
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--cream-65);
}

.menu-cta {
  margin-top: clamp(2.5rem, 5vh, 3.5rem);
  text-align: center;
}

.menu-cta-text {
  margin: 0 auto 1.5rem;
  max-width: 52ch;
  color: var(--cream-65);
  font-size: 1rem;
}

.menu-cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.menu-cta-btn:hover svg { transform: translateX(3px); }

/* ===== Reserve ===== */
.reserve {
  position: relative;
  padding: clamp(4rem, 9vh, 7rem) 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, var(--bg-soft) 0%, var(--bg) 70%);
  border-top: 1px solid var(--cream-10);
}

.reserve-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.reserve-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-15);
}

.meta-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-40);
  margin-bottom: 0.45rem;
}

.meta-val {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.55;
}

.meta-val a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.meta-val a:hover { border-bottom-color: var(--sunset); }

.reserve-text {
  margin: 1.4rem 0 0;
  max-width: 30rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream-65);
}

/* ===== Reservation form ===== */
.reservation-form {
  background: var(--bg-soft);
  border: 1px solid var(--cream-15);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-row-full { grid-column: 1 / -1; }

.form-row label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-40);
}

.form-row label .optional {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--cream-40);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--cream-15);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--cream-40);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--sunset);
  background: rgba(232, 123, 60, 0.06);
  box-shadow: 0 0 0 4px rgba(232, 123, 60, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row 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 fill='none' stroke='%23f4ead7' stroke-opacity='0.55' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-row select option {
  background: var(--bg);
  color: var(--cream);
}

.form-row input.has-error {
  border-color: var(--sunset-deep);
  box-shadow: 0 0 0 4px rgba(197, 74, 26, 0.15);
}

.form-row input[type="date"],
.form-row input[type="time"],
.form-row input[type="number"] {
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
  min-height: 48px;
  line-height: 1.3;
  display: block;
}

.form-row input[type="date"]::-webkit-date-and-time-value,
.form-row input[type="time"]::-webkit-date-and-time-value {
  text-align: left;
}

.form-row input[type="date"]::-webkit-calendar-picker-indicator,
.form-row input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(0.2);
  cursor: pointer;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-10);
  flex-wrap: wrap;
}

.form-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--cream-40);
  letter-spacing: 0.02em;
}

.form-footer .btn { min-width: 200px; }

.form-success {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: rgba(126, 214, 165, 0.1);
  border: 1px solid rgba(126, 214, 165, 0.3);
  border-radius: 8px;
  color: var(--live);
  font-size: 0.92rem;
  font-weight: 500;
}

.form-error {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: rgba(197, 74, 26, 0.1);
  border: 1px solid rgba(197, 74, 26, 0.3);
  border-radius: 8px;
  color: #f0a06f;
  font-size: 0.92rem;
  font-weight: 500;
}

/* ===== Footer ===== */
.footer {
  padding: clamp(3rem, 6vh, 4.5rem) 0 2.5rem;
  border-top: 1px solid var(--cream-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.footer-brand {
  margin: 0 0 0.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 4.5vw, 3.6rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--cream);
}

.footer-tagline {
  margin: 0;
  max-width: 26rem;
  font-size: 0.92rem;
  color: var(--cream-65);
  line-height: 1.6;
}

.footer-h {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.footer-col {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--cream-65);
}

.footer-col a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.footer-col a:hover {
  color: var(--cream);
  border-bottom-color: var(--sunset);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: clamp(2rem, 4vh, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-10);
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--cream-40);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ===== Map ===== */
.map-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-10);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(165deg) saturate(0.55) contrast(1.05) brightness(0.82);
}

/* ===== Mobile menu drawer ===== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(13, 10, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--cream-15);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mobile-drawer-close svg { width: 18px; height: 18px; }

.mobile-drawer a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--cream);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--cream-10);
}

.mobile-drawer a .it { font-style: italic; }

.mobile-drawer-foot {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-drawer-foot .btn { width: 100%; }

.mobile-drawer-meta {
  font-size: 0.78rem;
  color: var(--cream-40);
  letter-spacing: 0.06em;
  display: flex;
  justify-content: space-between;
}

body.is-locked { overflow: hidden; }

/* ===== Responsive ===== */
@media (max-width: 1180px) {
  .signatures { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid .gallery-item:nth-child(7n+1),
  .gallery-grid .gallery-item:nth-child(7n+5) { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .gallery-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-container { justify-content: space-between; }

  .hero { min-height: 88vh; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2.75rem;
  }
  .hero-side {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
  .live-card { width: 100%; max-width: 320px; }

  .ticker { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .about-figure { aspect-ratio: 4 / 3; max-height: 480px; }

  .reserve-inner { grid-template-columns: 1fr; gap: 2.25rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  /* Signatures become a horizontal scroll-snap carousel:
     one card visible at a time with a peek of the next. */
  .signatures {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding: 0 var(--pad);
    margin-top: clamp(2rem, 5vh, 3rem);
  }
  .signatures::-webkit-scrollbar { display: none; }

  .sig-card {
    flex: 0 0 86%;
    aspect-ratio: 4 / 5;
    min-height: 0;
    scroll-snap-align: start;
  }
  .sig-card:hover { transform: none; }
  .sig-card:hover .sig-img { transform: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
  }
  .gallery-grid .gallery-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 1; }

  .gallery-caption { transform: translateY(0); opacity: 1; }

  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .reserve-meta { grid-template-columns: 1fr; }

  .ticker { grid-template-columns: 1fr 1fr; }

  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
}

@media (max-width: 480px) {
  .container { padding-left: 1.1rem; padding-right: 1.1rem; }

  .nav-container { min-height: 64px; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-text { font-size: 1.2rem; }
  .brand small { display: none; }

  .lightbox-close, .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-close { top: 0.85rem; right: 0.85rem; }
  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:nth-child(7n+1) { grid-column: span 1; }

  .ticker { grid-template-columns: 1fr; }

  .menu-card { padding: 1.6rem 1.4rem; }
  .reservation-form { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   Don Quijote-inspired Professional Refactor (Light Editorial)
   ============================================================ */
:root {
  color-scheme: light;
  --bg: #f7f2ea;
  --bg-soft: #ffffff;
  --bg-elev: #fffdf9;
  --cream: #26201b;
  --cream-95: rgba(38, 32, 27, 0.95);
  --cream-65: rgba(38, 32, 27, 0.68);
  --cream-40: rgba(38, 32, 27, 0.42);
  --cream-25: rgba(38, 32, 27, 0.25);
  --cream-15: rgba(38, 32, 27, 0.15);
  --cream-10: rgba(38, 32, 27, 0.10);
  --cream-06: rgba(38, 32, 27, 0.06);
  --sunset: #c7643f;
  --sunset-deep: #a94b2a;
  --gold: #d09a42;
  --live: #287a6e;
}

body {
  color: var(--cream);
  background: linear-gradient(180deg, #fbf7f1 0%, #f7f2ea 48%, #f3ede2 100%);
}

.topbar {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(38, 32, 27, 0.08);
  box-shadow: 0 8px 30px rgba(38, 32, 27, 0.07);
}

.logo-mark { background: #fff; }
.nav-links { color: var(--cream-65); }
.nav-links a:hover,
.nav-links a.is-active { color: var(--cream); }

.nav-phone { border-color: var(--cream-25); color: var(--cream-65); }
.nav-phone:hover,
.nav-phone:focus-visible { background: var(--sunset); color: #fff; border-color: var(--sunset); }

.lang-toggle {
  background: rgba(38, 32, 27, 0.04);
  border-color: rgba(38, 32, 27, 0.12);
}
.lang-btn { color: var(--cream-65); }
.lang-btn.is-active { background: var(--cream); color: #fff; }

.nav-cta {
  background: var(--sunset);
  color: #fff;
}
.nav-cta:hover { box-shadow: 0 12px 24px rgba(199, 100, 63, 0.28); }

.btn-primary {
  background: var(--sunset);
  color: #fff;
  box-shadow: 0 14px 28px rgba(199, 100, 63, 0.24);
}
.btn-primary:hover { box-shadow: 0 18px 34px rgba(199, 100, 63, 0.32); }

.btn-sunset {
  background: var(--cream);
  color: #fff;
  box-shadow: 0 14px 28px rgba(38, 32, 27, 0.2);
}
.btn-sunset:hover {
  background: #1f1a15;
  box-shadow: 0 18px 34px rgba(38, 32, 27, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.66);
  color: var(--cream);
  border-color: rgba(38, 32, 27, 0.2);
}

.hero {
  min-height: clamp(640px, 82vh, 820px);
  align-items: center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(247,242,234,0.4) 0%, rgba(247,242,234,0.1) 40%, rgba(247,242,234,0.62) 100%),
    radial-gradient(ellipse 80% 60% at 70% 25%, rgba(199,100,63,0.22) 0%, transparent 62%);
}

.hero-primary {
  background: rgba(255, 253, 249, 0.85);
  border: 1px solid rgba(38, 32, 27, 0.10);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(38, 32, 27, 0.14);
  padding: clamp(1.2rem, 2.3vw, 2.2rem);
}

.hero h1,
.hero-copy,
.section-title,
.ticker-val,
.menu-card h3,
.item-name,
.meta-val,
.form-row input,
.form-row textarea,
.form-row select,
.footer-brand {
  color: var(--cream);
}

.hero-copy,
.about-narrative p,
.reserve-text,
.menu-cta-text,
.footer-tagline,
.footer-col,
.form-note,
.ticker-label,
.meta-label {
  color: var(--cream-65);
}

.live-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(38, 32, 27, 0.12);
}

.ticker {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(38, 32, 27, 0.08);
  border-radius: 14px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.menu-preview {
  background: #fdf9f3;
  border-top-color: rgba(38, 32, 27, 0.08);
  border-bottom-color: rgba(38, 32, 27, 0.08);
}

.menu-card,
.reservation-form {
  background: #fff;
  border-color: rgba(38, 32, 27, 0.12);
  box-shadow: 0 14px 34px rgba(38, 32, 27, 0.08);
}

.form-row input,
.form-row textarea,
.form-row select {
  background: #fff;
  border-color: rgba(38, 32, 27, 0.18);
}

.reserve {
  background: radial-gradient(ellipse 90% 75% at 50% 50%, #fdf9f3 0%, #f7f2ea 72%);
  border-top-color: rgba(38, 32, 27, 0.08);
}

.map-frame { border-color: rgba(38, 32, 27, 0.15); }

.footer {
  background: #171310;
  border-top: none;
}
.footer-brand,
.footer-h,
.footer-col a:hover { color: #fff; }
.footer-tagline,
.footer-col,
.footer-bottom { color: rgba(255, 255, 255, 0.68); }
.footer-bottom { border-top-color: rgba(255, 255, 255, 0.16); }

.mobile-drawer {
  background: rgba(247, 242, 234, 0.98);
}

.mobile-drawer a {
  color: var(--cream);
  border-bottom-color: rgba(38, 32, 27, 0.14);
}

.mobile-drawer-close {
  background: rgba(38, 32, 27, 0.06);
  border-color: rgba(38, 32, 27, 0.2);
  color: var(--cream);
}

.mobile-drawer-foot .btn {
  background: var(--sunset);
  color: #fff;
  border-color: var(--sunset);
}

.mobile-drawer-meta {
  color: var(--cream-65);
}

.mobile-drawer-meta a {
  color: var(--cream);
  border-bottom-color: transparent;
}

/* Hero v2: stronger hook + cleaner conversion layout */
.hero-content {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: stretch;
}

.hero-primary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(38, 32, 27, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 52px rgba(38, 32, 27, 0.14);
  padding: clamp(1.25rem, 2.3vw, 2.3rem);
}

.hero-intro-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sunset);
  border: 1px solid rgba(199, 100, 63, 0.35);
  background: rgba(199, 100, 63, 0.08);
  font-weight: 700;
}

.hero-rating {
  font-size: 0.76rem;
  color: var(--cream-65);
  letter-spacing: 0.04em;
}
.hero-rating strong {
  color: var(--cream);
  font-size: 0.95rem;
  margin-right: 0.3rem;
}

.hero-hook {
  margin: 1.15rem 0 0.15rem;
  font-size: clamp(1.04rem, 1.42vw, 1.26rem);
  line-height: 1.35;
  font-weight: 700;
  color: var(--sunset-deep);
  max-width: 33rem;
}

.hero-copy { margin-top: 0.55rem; }

.hero-side {
  min-width: 0;
  justify-content: stretch;
}

.hero-booking-card {
  height: 100%;
  background: linear-gradient(180deg, rgba(38, 32, 27, 0.97) 0%, rgba(26, 22, 19, 0.97) 100%);
  color: #fdf7ef;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 52px rgba(20, 16, 13, 0.36);
  padding: clamp(1.2rem, 2vw, 1.7rem);
  display: flex;
  flex-direction: column;
}

.hero-booking-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-booking-title {
  margin: 0.7rem 0 0;
  color: #fff;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.52rem, 2.15vw, 2rem);
  line-height: 1.1;
}

.hero-booking-copy {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-booking-meta {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.hero-booking-meta span {
  display: block;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0.2rem;
}

.hero-booking-meta strong {
  color: #fff;
  font-size: 0.97rem;
  font-weight: 600;
}

.hero-booking-btn {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .hero-intro-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

/* Keep signature card text visible over dark image gradients */
.sig-name {
  color: #fff;
}

.sig-desc {
  color: rgba(255, 255, 255, 0.86);
}

.sig-tag {
  color: #f2c46d;
}

/* Hero simplified per latest feedback */
.hero-content {
  grid-template-columns: 1fr;
  align-items: end;
}

.hero-main {
  max-width: 760px;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(38, 32, 27, 0.1);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(38, 32, 27, 0.12);
  padding: clamp(1.2rem, 2.2vw, 2rem);
}
