/* ============================================================
   VARAMMA — Luxury Indian Restaurant
   Palette:
   --green-950 / --green-900  deep emerald backgrounds
   --green-800                mid forest panels
   --cream                    body text
   --gold / --gold-2          champagne typography & accents
   ============================================================ */

:root {
  --green-950: #062B1E;
  --green-900: #073A28;
  --green-800: #0B4A33;
  --green-700: #11583E;
  --green-600: #176B4C;
  --cream: #F3EBDD;
  --cream-dim: #D9CFBD;
  --gold: #D8B866;
  --gold-2: #E6C878;
  --gold-deep: #B89352;
  --line-gold: rgba(216, 184, 102, 0.28);
  --line-soft: rgba(216, 184, 102, 0.14);
  --card-glow: rgba(216, 184, 102, 0.05);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-display-2: "Italiana", "Cormorant Garamond", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --radius: 6px;
  --pad-x: clamp(1.25rem, 5vw, 5.5rem);
  --transition: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  background: var(--green-950);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--green-950); }

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

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

/* ---------- shared typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.15rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  color: var(--gold-2);
  letter-spacing: 0.01em;
}

.section-sub {
  color: var(--cream-dim);
  max-width: 34rem;
  margin-inline: auto;
  font-weight: 300;
  font-size: 1.05rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  color: var(--green-950);
  border: 1px solid transparent;
  box-shadow: 0 10px 30px -12px rgba(216, 184, 102, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(216, 184, 102, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--line-gold);
}

.btn-ghost:hover {
  background: rgba(216, 184, 102, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem var(--pad-x);
  background: linear-gradient(to bottom, rgba(6, 43, 30, 0.92), rgba(6, 43, 30, 0.35));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(6, 43, 30, 0.95);
  box-shadow: 0 12px 40px -18px rgba(0, 0, 0, 0.7);
  padding-block: 0.7rem;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 1440px;
  margin-inline: auto;
}

/* wordmark */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 1.05rem;
}

.wordmark .ornament {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

/* logo tile */
.logo-tile {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: var(--gold-2);
  background:
    radial-gradient(circle at 30% 20%, rgba(230, 200, 120, 0.18), transparent 55%),
    linear-gradient(160deg, rgba(230, 200, 120, 0.1), rgba(6, 43, 30, 0.4));
  border: 1px solid var(--line-gold);
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(230, 200, 120, 0.15);
}

.logo-tile svg { width: 40px; height: 40px; }

/* nav */
.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
}

.nav-link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  padding-block: 0.35rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-link:hover { color: var(--gold-2); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  color: var(--gold);
  margin-left: 0.5rem;
  transition: border-color var(--transition), background var(--transition);
}

.nav-icon svg { width: 19px; height: 19px; }
.nav-icon:hover { border-color: var(--gold); background: rgba(216, 184, 102, 0.08); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--gold-2);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 82vw);
  z-index: 99;
  background: rgba(6, 43, 30, 0.98);
  backdrop-filter: blur(14px);
  border-left: 1px solid var(--line-gold);
  padding: 6.5rem 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(105%);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

.mobile-link {
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid rgba(216, 184, 102, 0.1);
}

.mobile-menu-footer { margin-top: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem var(--pad-x) 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58rem 34rem at 82% 8%, rgba(17, 88, 62, 0.55), transparent 60%),
    radial-gradient(40rem 30rem at 8% 90%, rgba(17, 88, 62, 0.35), transparent 60%),
    linear-gradient(120deg, var(--green-950) 0%, var(--green-900) 60%, var(--green-950) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(216, 184, 102, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(circle at 70% 30%, black, transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1400px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero-title {
  font-family: var(--font-display-2);
  font-weight: 400;
  font-size: clamp(2.9rem, 6.4vw, 5.3rem);
  line-height: 1.05;
  color: var(--gold-2);
  letter-spacing: 0.01em;
}

.hero-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  display: inline-block;
  position: relative;
}

.hero-title em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 8%;
  bottom: 0.04em;
  height: 0.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-sub {
  margin-top: 1.5rem;
  color: var(--cream-dim);
  font-size: 1.06rem;
  max-width: 30rem;
}

.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* hero visual */
.hero-visual {
  position: relative;
}

.hero-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  border: 1px solid var(--line-soft);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.85),
    0 0 90px -30px rgba(216, 184, 102, 0.25);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 43, 30, 0.45), transparent 40%);
}

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

.hero-glow {
  position: absolute;
  inset: -12% -4% auto -4%;
  height: 46%;
  background: radial-gradient(closest-side, rgba(17, 88, 62, 0.65), transparent);
  filter: blur(30px);
  z-index: -1;
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream-dim);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  animation: floatY 2.2s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad-x);
}

.section-head {
  text-align: center;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head .section-sub { margin-top: 1.1rem; }

/* ============================================================
   VALUES
   ============================================================ */
.values {
  background: var(--green-950);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  max-width: 1240px;
  margin-inline: auto;
}

.value-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.6rem 2.2rem;
  background: linear-gradient(160deg, rgba(11, 74, 51, 0.35), rgba(6, 43, 30, 0.55));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-gold);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--card-glow);
}

.value-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gold-2);
  margin-bottom: 0.7rem;
}

.value-card p {
  color: var(--cream-dim);
  font-size: 0.96rem;
}

.value-card-featured {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.8);
}

.value-photo {
  height: 100%;
  min-height: 320px;
}

.value-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 1.2s ease;
}

.value-card-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 43, 30, 0.4), transparent 55%);
  pointer-events: none;
}

.value-card-featured:hover img { transform: scale(1.05); }

/* ============================================================
   STORY
   ============================================================ */
.story {
  background:
    radial-gradient(50rem 34rem at 0% 50%, rgba(11, 74, 51, 0.5), transparent 60%),
    var(--green-900);
  border-block: 1px solid var(--line-soft);
}

.story-inner {
  max-width: 1240px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.story-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: 0 40px 90px -35px rgba(0, 0, 0, 0.85);
  border: 1px solid var(--line-soft);
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 43, 30, 0.4), transparent 45%, rgba(6, 43, 30, 0.25));
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.story-copy .section-sub {
  margin-inline: 0;
  text-align: left;
  margin-top: 1.5rem;
}

.gold-line {
  width: 64px;
  height: 1px;
  margin-top: 1.9rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.story-copy .btn { margin-top: 2.2rem; }

/* ============================================================
   MENU
   ============================================================ */
.menu {
  background: var(--green-950);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.4vw, 2rem);
  max-width: 1280px;
  margin-inline: auto;
}

.dish-card {
  background: linear-gradient(170deg, rgba(11, 74, 51, 0.32), rgba(6, 43, 30, 0.6));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-gold);
  box-shadow: 0 34px 70px -32px rgba(0, 0, 0, 0.8);
}

.dish-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dish-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
  filter: saturate(0.9) brightness(0.92);
}

.dish-card:hover .dish-photo img { transform: scale(1.07); }

.dish-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(6, 43, 30, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.dish-body { padding: 1.6rem 1.5rem 1.8rem; }

.dish-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.dish-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--gold-2);
}

.dish-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}

.dish-price::before {
  content: "\20B9";
  font-size: 0.8em;
  margin-right: 0.15em;
  opacity: 0.9;
}

.dish-body p {
  color: var(--cream-dim);
  font-size: 0.93rem;
  margin-block: 0.9rem 1.3rem;
}

.dish-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}

.dish-link::after {
  content: "→";
  transition: transform 0.35s ease;
}

.dish-link:hover::after { transform: translateX(5px); }

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

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience {
  padding: 0;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 43, 30, 0.35), rgba(6, 43, 30, 0.92)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1800&auto=format&fit=crop") center / cover no-repeat;
}

.experience-inner {
  position: relative;
  z-index: 2;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4.5rem, 10vw, 8rem) var(--pad-x);
}

.experience-title {
  font-family: var(--font-display-2);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--gold-2);
  letter-spacing: 0.02em;
}

.experience-sub {
  max-width: 34rem;
  margin: 1.2rem auto 2.4rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
}

/* ============================================================
   RESERVE
   ============================================================ */
.reserve {
  background:
    radial-gradient(46rem 30rem at 50% 0%, rgba(216, 184, 102, 0.07), transparent 65%),
    var(--green-900);
}

.reserve-card {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2.6rem, 5.5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  background: linear-gradient(160deg, rgba(11, 74, 51, 0.28), rgba(6, 43, 30, 0.5));
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  position: relative;
  box-shadow: inset 0 0 0 1px var(--card-glow), 0 40px 90px -40px rgba(0, 0, 0, 0.8);
}

.reserve-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  pointer-events: none;
}

.reserve-card .section-sub { margin-top: 1.1rem; }

.reserve-actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #041F16;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad-x) 0;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  max-width: 1240px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3.5rem;
}

.footer-wordmark {
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  color: var(--gold-2);
}

.footer-tagline {
  margin: 1rem 0 1.5rem;
  color: var(--cream-dim);
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-style: italic;
}

.socials {
  display: flex;
  gap: 0.9rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  color: var(--cream-dim);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.socials svg { width: 17px; height: 17px; }

.socials a:hover {
  color: var(--gold-2);
  border-color: var(--gold);
  background: rgba(216, 184, 102, 0.08);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--gold-2);
  margin-bottom: 1.3rem;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--cream-dim);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(216, 184, 102, 0.12);
  padding: 1.6rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(217, 207, 189, 0.55);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease var(--reveal-delay, 0s), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll svg { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding-top: 7rem; }
  .hero-title { font-size: clamp(2.6rem, 8vw, 4rem); }
  .hero-visual { max-width: 560px; }
  .hero-photo { aspect-ratio: 4 / 3.2; max-height: none; }
  .hero-scroll { display: none; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card-featured { order: -1; grid-column: 1 / -1; }
  .value-photo { min-height: 260px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-photo { max-width: 520px; aspect-ratio: 4 / 3.4; }
}

@media (max-width: 780px) {
  .header-inner { grid-template-columns: 1fr auto 1fr; }

  .main-nav, .nav-icon { display: none; }
  .hamburger { display: flex; }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .logo-tile { margin-inline: auto; }
  .wordmark { font-size: 1rem; }
  .wordmark .ornament { display: none; }

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

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

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .hero-actions, .reserve-actions { flex-direction: column; }
  .btn { width: 100%; }
}