:root {
  --ink: #18221c;
  --muted: #68736c;
  --cream: #f6f1e8;
  --paper: #fffdf9;
  --green: #183d2f;
  --green-2: #4c765e;
  --gold: #e4b56f;
  --terracotta: #b96f48;
  --line: #ded8cc;
  --white: #ffffff;

  --container: 1180px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;

  --shadow-soft: 0 20px 60px rgba(24, 34, 28, .08);

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-pad {
  padding: 90px 0 110px;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 216, 204, .7);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--serif);
  font-size: 21px;
}

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

.brand-copy strong {
  font-size: 15px;
  letter-spacing: -.02em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: #465149;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--green);
  transition: transform .25s ease;
}

.nav-links > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.nav-cta span {
  font-size: 15px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: white;
}


/* =========================
   HERO
========================= */

.hero {
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  padding: 25px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 108px);
  line-height: .91;
  letter-spacing: -.055em;
  font-weight: 600;
}

.hero h1 em {
  color: var(--terracotta);
  font-weight: 500;
}

.hero-text {
  max-width: 510px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 35px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  background: #102f23;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .5);
}

.btn-secondary:hover {
  background: white;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 600px;
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.hero-meta span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-visual {
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #ddd;
}

.hero-photo {
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 220px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 253, 249, .95);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .15);
}

.floating-label {
  display: block;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}

.hero-floating-card strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.03;
}

.floating-arrow {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 18px;
}

.hero-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  padding: 0 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}


/* =========================
   STATS
========================= */

.stats-ribbon {
  background: var(--green);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 25px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.stat:first-child {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.stat strong {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 29px;
  font-weight: 500;
}

.stat span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .84;
}


/* =========================
   SECTIONS
========================= */

.section-cream {
  background: var(--cream);
}

.section-paper {
  background: var(--paper);
}

.section-green {
  background: var(--green);
  color: white;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1fr .62fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.faq-intro h2,
.location-copy h2,
.final-cta h2 {
  margin-top: 13px;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 600;
}

.section-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: .16em;
}

.section-kicker.light {
  color: var(--gold);
}

.section-heading-side {
  padding-bottom: 4px;
}

.section-heading-side p {
  max-width: 450px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.centered {
  text-align: center;
}

.centered.section-heading {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 55px;
}

.light-heading .section-heading-side p,
.section-green .section-heading-side p {
  color: rgba(255,255,255,.72);
}


/* =========================
   MENU
========================= */

.menu-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 34px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}

.filter-group,
.category-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-btn,
.category-tab {
  border: 0;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.filter-btn.active,
.category-tab.active {
  background: var(--green);
  color: white;
}

.veg-dot,
.nonveg-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 2px;
  border: 1px solid currentColor;
  vertical-align: middle;
}

.veg-dot {
  color: #2c7950;
}

.nonveg-dot {
  color: #a64e3c;
}

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

.dish-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(24,34,28,.09);
}

.dish-image {
  position: relative;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #e9e3d9;
}

.dish-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.dish-type {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dish-content {
  padding: 21px;
}

.dish-topline {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.dish-name {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.05;
}

.dish-price {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--terracotta);
}

.dish-description {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.menu-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
}


/* =========================
   FEATURED
========================= */

.featured-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: stretch;
  gap: 60px;
}

.featured-image {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.featured-image img {
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  top: 23px;
  left: 23px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,253,249,.94);
  color: var(--ink);
}

.image-badge span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

.image-badge strong {
  font-size: 12px;
  letter-spacing: .08em;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
}

.featured-copy h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 80px);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 600;
}

.featured-copy p {
  max-width: 470px;
  margin-top: 28px;
  color: rgba(255,255,255,.73);
  line-height: 1.75;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 700;
}

.light-link {
  color: var(--gold);
}

.light-link span,
.final-link span {
  transition: transform .2s ease;
}

.light-link:hover span,
.final-link:hover span {
  transform: translateX(4px);
}


/* =========================
   GALLERY
========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  background: #e6e1d7;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}


/* =========================
   EXPERIENCE
========================= */

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journey-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.42);
}

.journey-number {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.journey-card h3 {
  font-family: var(--serif);
  font-size: 31px;
}

.journey-card p {
  max-width: 330px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}


/* =========================
   REVIEWS
========================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.review-card-dark {
  background: var(--green);
  color: white;
}

.quote-mark {
  font-family: var(--serif);
  color: var(--terracotta);
  font-size: 62px;
  line-height: .6;
}

.review-card p {
  max-width: 550px;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.28;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid rgba(104,115,108,.18);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.review-card-dark .review-footer {
  border-top-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.62);
}


/* =========================
   PERKS
========================= */

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.perk-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.045);
}

.perk-icon {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.perk-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.perk-card p {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.7;
}


/* =========================
   FAQ
========================= */

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 100px;
}

.faq-intro p {
  max-width: 320px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.faq-plus {
  font-size: 21px;
  font-weight: 400;
  transition: transform .25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer p {
  max-width: 650px;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-item.open .faq-answer {
  max-height: 180px;
}


/* =========================
   LOCATION
========================= */

.location-section {
  padding: 115px 0;
  background: #ebe5da;
}

.location-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.address-block {
  margin-top: 40px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.address-block span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
}

.address-block p {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.location-map-card {
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.map-placeholder {
  position: relative;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 47%, rgba(24,61,47,.18) 48%, rgba(24,61,47,.18) 49%, transparent 50%),
    linear-gradient(18deg, transparent 54%, rgba(185,111,72,.16) 55%, rgba(185,111,72,.16) 56%, transparent 57%),
    #ded8cc;
}

.map-label {
  position: absolute;
  top: 21px;
  left: 21px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,253,249,.9);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.map-pin {
  position: absolute;
  left: 51%;
  top: 48%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--green);
  box-shadow: 0 16px 25px rgba(24,34,28,.2);
}

.map-pin span {
  transform: rotate(45deg);
  color: white;
  font-family: var(--serif);
  font-size: 19px;
}

.map-road {
  position: absolute;
  height: 13px;
  border-radius: 999px;
  background: rgba(255,253,249,.8);
  transform: rotate(-15deg);
}

.road-one {
  width: 90%;
  top: 58%;
  left: -15%;
}

.road-two {
  width: 75%;
  top: 32%;
  left: 17%;
  transform: rotate(13deg);
}

.road-three {
  width: 72%;
  top: 75%;
  left: 42%;
  transform: rotate(-37deg);
}

.map-caption {
  position: absolute;
  left: 23px;
  right: 23px;
  bottom: 23px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,253,249,.9);
}

.map-caption strong {
  font-family: var(--serif);
  font-size: 23px;
}

.map-caption span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
  padding: 125px 0;
  background: var(--terracotta);
  color: white;
}

.final-cta-inner {
  text-align: center;
}

.final-cta h2 {
  margin-top: 15px;
  font-size: clamp(62px, 8vw, 115px);
}

.final-cta p {
  margin: 28px auto 0;
  max-width: 470px;
  color: rgba(255,255,255,.8);
  font-size: 15px;
}

.final-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.btn-light {
  background: white;
  color: var(--green);
}

.final-link {
  margin-top: 0;
  color: white;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  background: #102c22;
  color: white;
  padding: 65px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 50px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 30px;
}

.footer-grid p {
  margin-top: 8px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255,255,255,.66);
  font-size: 11px;
}

.footer-contact a {
  color: var(--gold);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.38);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-photo-wrap,
  .hero-photo {
    min-height: 550px;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .featured-copy {
    padding: 10px 0 20px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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


@media (max-width: 850px) {

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 85px 0;
  }

  .section-pad {
    padding: 65px 0 80px;
  }

  .nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    padding: 18px;

    border: 1px solid var(--line);
    border-radius: 20px;

    background: rgba(255,253,249,.98);
    box-shadow: var(--shadow-soft);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity .2s ease,
      visibility .2s ease,
      transform .2s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links > a:not(.nav-cta) {
    padding: 10px 4px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 5px;
  }

  .hero h1 {
    font-size: clamp(56px, 14vw, 95px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .dish-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-controls {
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group,
  .category-tabs {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .filter-btn,
  .category-tab {
    white-space: nowrap;
  }

  .journey-grid,
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-large {
    grid-row: span 1;
  }

  .gallery-wide {
    grid-column: span 2;
  }

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

  .footer-contact {
    grid-column: span 2;
  }
}


@media (max-width: 600px) {

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .hero-photo-wrap,
  .hero-photo {
    min-height: 440px;
  }

  .hero-floating-card {
    width: 190px;
    left: 17px;
    bottom: 17px;
  }

  .stats-grid,
  .dish-grid,
  .journey-grid,
  .perks-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
  }

  .stat:nth-child(2),
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .section-heading h2,
  .faq-intro h2,
  .location-copy h2 {
    font-size: 51px;
  }

  .featured-image {
    min-height: 390px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .faq-layout {
    gap: 40px;
  }

  .location-map-card,
  .map-placeholder {
    min-height: 390px;
  }

  .final-cta {
    padding: 90px 0;
  }

  .final-cta h2 {
    font-size: 66px;
  }

  .final-actions {
    flex-direction: column;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.hero-slogan {
  white-space: nowrap;
}

.hero-slogan em {
  margin-left: 18px;
}

@media (max-width: 700px) {
  .hero-slogan {
    white-space: normal;
  }

  .hero-slogan em {
    margin-left: 10px;
  }
}

.hero-slogan {
  display: block;
  white-space: normal;
}

.hero-slogan em {
  display: block;
  margin-left: 0;
  color: var(--terracotta);
}


.hero-slogan {
  display: block;
  white-space: normal;
  line-height: .91;
}

.hero-slogan em {
  display: block;
  margin: 0;
  color: var(--terracotta);
}

@media (max-width: 700px) {
  .hero-slogan {
    font-size: clamp(52px, 13vw, 82px);
  }
}


.hero-slogan {
  line-height: 0.91;
}

.hero-slogan em {
  display: inline;
  color: var(--terracotta);
}

.hero-slogan {
  display: block;
  line-height: .88;
}

.hero-slogan span,
.hero-slogan em {
  display: block;
  width: max-content;
  white-space: nowrap;
}

.hero-slogan em {
  color: var(--terracotta);
  margin-top: 4px;
}


.hero-floating-card {
  left: 45px;
  bottom: 42px;
}


/* =========================================
   NEW TYPOGRAPHY SYSTEM
========================================= */

:root {
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

/* Global */
body {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: -0.01em;
}

/* Brand / navigation */
.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.nav-links > a:not(.nav-cta),
.nav-cta {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

/* Main headings */
.hero h1,
.section-heading h2,
.featured-copy h2,
.faq-intro h2,
.location-copy h2,
.final-cta h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

/* Hero */
.hero h1 {
  line-height: 0.88;
}

/* Keep the two hero phrases intact */
.hero-slogan span,
.hero-slogan em {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

/* Section kickers */
.section-kicker,
.eyebrow,
.floating-label,
.stat span,
.hero-meta span,
.map-label {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* Menu */
.dish-name,
.journey-card h3,
.perk-card h3,
.review-card p,
.map-caption strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* Buttons */
.btn,
.filter-btn,
.category-tab {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

/* Body copy */
.hero-text,
.section-heading-side p,
.featured-copy p,
.journey-card p,
.perk-card p,
.faq-intro p,
.faq-answer p,
.final-cta p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}


:root {
  --serif: "Space Grotesk", sans-serif;
  --sans: "Space Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

body {
  font-family: "Space Grotesk", sans-serif;
}

.hero h1,
.section-heading h2,
.featured-copy h2,
.faq-intro h2,
.location-copy h2,
.final-cta h2,
.dish-name,
.journey-card h3,
.perk-card h3,
.review-card p,
.map-caption strong {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.eyebrow,
.section-kicker,
.floating-label,
.stat span,
.hero-meta span,
.map-label {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: .08em;
  font-size: 9px;
}


/* =========================================
   MILES & MEALS — MODERN TYPE SYSTEM
   Space Grotesk + JetBrains Mono
========================================= */

:root {
  --serif: "Space Grotesk", sans-serif;
  --sans: "Space Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

/* Global */
html,
body {
  font-family: "Space Grotesk", sans-serif;
}

/* Main display typography */
.hero h1,
.section-heading h2,
.featured-copy h2,
.faq-intro h2,
.location-copy h2,
.final-cta h2,
.dish-name,
.journey-card h3,
.perk-card h3,
.review-card p,
.map-caption strong,
.hero-floating-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
}

/* Hero */
.hero h1 {
  line-height: 0.9;
}

/* Keep each hero phrase intact */
.hero-slogan span,
.hero-slogan em {
  display: block;
  width: max-content;
  white-space: nowrap;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

/* Utility / technical details */
.eyebrow,
.section-kicker,
.floating-label,
.stat span,
.hero-meta span,
.map-label,
.dish-type,
.address-block span,
.review-footer,
.menu-note,
.footer-bottom {
  font-family: "JetBrains Mono", monospace;
}

/* Navigation */
.nav-links > a:not(.nav-cta),
.nav-cta,
.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
}

/* Buttons / filters */
.btn,
.filter-btn,
.category-tab {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

/* Body copy */
.hero-text,
.section-heading-side p,
.featured-copy p,
.journey-card p,
.perk-card p,
.faq-intro p,
.faq-answer p,
.final-cta p,
.map-caption span {
  font-family: "Space Grotesk", sans-serif;
}

/* Brand */
.brand-copy strong {
  font-weight: 700;
  letter-spacing: -0.04em;
}


/* =========================================
   TYPE TEST — PLUS JAKARTA SANS + DM MONO
========================================= */

:root {
  --serif: "Plus Jakarta Sans", sans-serif;
  --sans: "Plus Jakarta Sans", sans-serif;
  --mono: "DM Mono", monospace;
}

html,
body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Primary headings */
.hero h1,
.section-heading h2,
.featured-copy h2,
.faq-intro h2,
.location-copy h2,
.final-cta h2,
.dish-name,
.journey-card h3,
.perk-card h3,
.review-card p,
.map-caption strong,
.hero-floating-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
}

/* Hero */
.hero-slogan span,
.hero-slogan em {
  display: block;
  width: max-content;
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

/* Small labels / metadata */
.eyebrow,
.section-kicker,
.floating-label,
.stat span,
.hero-meta span,
.map-label,
.dish-type,
.address-block span,
.review-footer,
.menu-note,
.footer-bottom {
  font-family: "DM Mono", monospace;
}

/* Navigation + controls */
.nav-links > a:not(.nav-cta),
.nav-cta,
.brand-copy strong,
.btn,
.filter-btn,
.category-tab {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Body */
.hero-text,
.section-heading-side p,
.featured-copy p,
.journey-card p,
.perk-card p,
.faq-intro p,
.faq-answer p,
.final-cta p,
.map-caption span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
}


/* Slightly larger landing hero card */

.hero-photo-wrap {
  min-height: 700px;
}

.hero-photo {
  min-height: 700px;
}

@media (max-width: 1050px) {
  .hero-photo-wrap,
  .hero-photo {
    min-height: 600px;
  }
}

@media (max-width: 600px) {
  .hero-photo-wrap,
  .hero-photo {
    min-height: 470px;
  }
}


/* Revert hero height */
.hero-photo-wrap,
.hero-photo {
  min-height: 650px;
}

/* Make the landing card wider on the right */
.hero-grid {
  grid-template-columns: .78fr 1.22fr;
  gap: 55px;
}

.hero-photo-wrap {
  width: 100%;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-photo-wrap,
  .hero-photo {
    min-height: 550px;
  }
}

@media (max-width: 600px) {
  .hero-photo-wrap,
  .hero-photo {
    min-height: 440px;
  }
}


/* =========================================
   EXPERIENCE — IMAGE CARDS
========================================= */

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journey-card {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(24, 34, 28, .10);
}

.journey-image {
  position: relative;
  height: 255px;
  overflow: hidden;
  background: #ddd8cd;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.journey-card:hover .journey-image img {
  transform: scale(1.035);
}

.journey-image .journey-number {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, .94);
  color: var(--terracotta);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
}

.journey-content {
  padding: 22px 22px 24px;
}

.journey-content h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1;
}

.journey-content p {
  max-width: 340px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

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

  .journey-image {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .journey-image {
    height: 240px;
  }
}


/* =========================================
   EXPERIENCE — ASYMMETRIC IMAGE LAYOUT
========================================= */

.journey-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.journey-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.journey-card-small {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 245px;
}

.journey-card-large {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
}

.journey-card-small:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.journey-card-small:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.journey-image {
  position: relative;
  overflow: hidden;
  background: #ddd8cd;
}

.journey-card-small .journey-image {
  min-height: 245px;
}

.journey-card-large .journey-image {
  flex: 1;
  min-height: 440px;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.journey-card:hover .journey-image img {
  transform: scale(1.035);
}

.journey-image .journey-number {
  position: absolute;
  top: 14px;
  left: 14px;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(255, 253, 249, .94);

  color: var(--terracotta);

  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.journey-content {
  padding: 20px 22px 22px;
}

.journey-card-small .journey-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-card-large .journey-content {
  padding: 22px 25px 25px;
}

.journey-content h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1;
}

.journey-content p {
  margin-top: 10px;
  max-width: 390px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}


/* Tablet */

@media (max-width: 850px) {

  .journey-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .journey-card-small {
    display: flex;
    flex-direction: column;
  }

  .journey-card-small .journey-image {
    min-height: 230px;
  }

  .journey-card-large {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .journey-card-large .journey-image {
    min-height: 360px;
    flex: none;
  }

}


/* Mobile */

@media (max-width: 600px) {

  .journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .journey-card-small:nth-child(1),
  .journey-card-small:nth-child(2),
  .journey-card-large {
    grid-column: 1;
    grid-row: auto;
  }

  .journey-card-small {
    display: flex;
    flex-direction: column;
  }

  .journey-card-small .journey-image,
  .journey-card-large .journey-image {
    min-height: 240px;
  }

}


/* =========================================
   EXPERIENCE SECTION — IMAGE GRID ONLY
   Scoped strictly to #experience
========================================= */

#experience .experience-heading {
  margin-bottom: 42px;
}

#experience .experience-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  height: 620px;
}

#experience .experience-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-width: 0;
}

#experience .experience-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #ddd8cd;
  border: 1px solid var(--line);
}

#experience .experience-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

#experience .experience-image:hover img {
  transform: scale(1.035);
}

#experience .experience-image-large {
  min-width: 0;
  height: 100%;
}

#experience .experience-image-small {
  min-height: 0;
}

@media (max-width: 850px) {

  #experience .experience-layout {
    height: 700px;
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 600px) {

  #experience .experience-layout {
    height: auto;
    grid-template-columns: 1fr;
  }

  #experience .experience-left {
    grid-template-rows: 260px 260px;
  }

  #experience .experience-image-large {
    height: 420px;
  }

}


/* =========================================
   EXPERIENCE — COMPACT ASYMMETRIC LAYOUT
   ONLY affects #experience
========================================= */

#experience {
  padding-top: 85px;
  padding-bottom: 85px;
}

#experience .experience-heading {
  margin-bottom: 30px;
}

#experience .experience-heading h2 {
  font-size: clamp(46px, 4.8vw, 68px);
  line-height: .94;
}

#experience .experience-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 14px;
  height: 410px;
}

#experience .experience-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 0;
}

#experience .experience-image {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #ddd8cd;
}

#experience .experience-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

#experience .experience-image:hover img {
  transform: scale(1.025);
}

#experience .experience-image-small,
#experience .experience-image-large {
  min-height: 0;
}

@media (max-width: 850px) {

  #experience {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  #experience .experience-layout {
    height: 520px;
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 600px) {

  #experience .experience-layout {
    height: auto;
    grid-template-columns: 1fr;
  }

  #experience .experience-left {
    grid-template-rows: 210px 210px;
  }

  #experience .experience-image-large {
    height: 300px;
  }

}


/* =========================================
   HERO — SLIGHTLY WIDER RIGHT CARD ONLY
========================================= */

@media (min-width: 1051px) {
  .hero-grid {
    grid-template-columns: .72fr 1.28fr;
    gap: 48px;
  }

  .hero-photo-wrap {
    width: 100%;
  }
}


@media (min-width: 1051px) {
  .hero-grid {
    grid-template-columns: .66fr 1.34fr;
    gap: 42px;
  }
}


/* Signature image — warm food photography against green section */
.featured-image img {
  object-fit: cover;
  object-position: center;
}


/* Special food image */
.featured-image img {
  object-fit: cover;
  object-position: center;
}


/* =========================================
   GALLERY — SLOW HORIZONTAL MARQUEE
========================================= */

#gallery {
  overflow: hidden;
}

#gallery .gallery-heading {
  margin-bottom: 38px;
}

#gallery .gallery-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#gallery .gallery-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 18px;
  animation: milesMealsGallery 46s linear infinite;
  will-change: transform;
}

#gallery .gallery-card {
  width: 360px;
  height: 300px;
  flex: 0 0 360px;
  overflow: hidden;
  border-radius: 22px;
  background: #e6e1d7;
  border: 1px solid var(--line);
}

#gallery .gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

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

@keyframes milesMealsGallery {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

/* Pause while hovering */
#gallery .gallery-marquee:hover .gallery-track {
  animation-play-state: paused;
}

/* Mobile */

@media (max-width: 700px) {

  #gallery .gallery-track {
    gap: 14px;
    animation-duration: 38s;
  }

  #gallery .gallery-card {
    width: 285px;
    height: 235px;
    flex-basis: 285px;
    border-radius: 18px;
  }

}

@media (prefers-reduced-motion: reduce) {

  #gallery .gallery-track {
    animation: none;
    transform: none;
  }

}


/* =========================================
   GALLERY — LARGER CONTINUOUS MARQUEE
========================================= */

#gallery .gallery-track {
  gap: 20px;
  animation: milesMealsGallery 46s linear infinite !important;
}

#gallery .gallery-card {
  width: 430px;
  height: 340px;
  flex: 0 0 430px;
  border-radius: 24px;
}

/* Never pause on hover */
#gallery .gallery-marquee:hover .gallery-track {
  animation-play-state: running !important;
}

@media (max-width: 700px) {

  #gallery .gallery-card {
    width: 330px;
    height: 260px;
    flex-basis: 330px;
  }

}


/* =========================================
   GALLERY — SMOOTH CONTINUOUS MARQUEE
   Scoped ONLY to #gallery
========================================= */

#gallery {
  overflow: hidden;
}

#gallery .gallery-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  contain: layout paint;
}

#gallery .gallery-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  align-items: stretch;
  transform: translate3d(0, 0, 0);
  animation: gallerySmoothLoop 55s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

#gallery .gallery-group {
  display: flex;
  flex: 0 0 auto;
  gap: 20px;
  padding-right: 20px;
}

#gallery .gallery-card {
  width: 430px;
  height: 340px;
  flex: 0 0 430px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #e6e1d7;
  transform: translateZ(0);
  backface-visibility: hidden;
}

#gallery .gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/*
  Each group is identical.
  Moving exactly one group width creates
  a seamless loop.
*/
@keyframes gallerySmoothLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Keep it moving on hover */
#gallery .gallery-marquee:hover .gallery-track {
  animation-play-state: running;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  #gallery .gallery-track {
    animation-duration: 48s;
  }

  #gallery .gallery-group {
    gap: 16px;
    padding-right: 16px;
  }

  #gallery .gallery-card {
    width: 360px;
    height: 285px;
    flex-basis: 360px;
    border-radius: 21px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  #gallery .gallery-track {
    animation-duration: 42s;
  }

  #gallery .gallery-group {
    gap: 12px;
    padding-right: 12px;
  }

  #gallery .gallery-card {
    width: 285px;
    height: 235px;
    flex-basis: 285px;
    border-radius: 18px;
  }

}


/* Respect accessibility without affecting normal users */

@media (prefers-reduced-motion: reduce) {

  #gallery .gallery-track {
    animation: none;
    transform: none;
  }

}


/* =========================================
   GALLERY — ULTRA SMOOTH MARQUEE
========================================= */

#gallery .gallery-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

#gallery .gallery-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  align-items: stretch;

  animation-name: galleryUltraSmooth;
  animation-duration: 70s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;

  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

#gallery .gallery-group {
  display: flex;
  flex: 0 0 auto;
  gap: 20px;
  padding-right: 20px;
}

#gallery .gallery-card {
  flex: 0 0 430px;
  width: 430px;
  height: 340px;
  overflow: hidden;
  border-radius: 24px;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

#gallery .gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/*
  The two groups are identical.
  Moving exactly 50% gives a seamless handoff.
*/
@keyframes galleryUltraSmooth {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Never pause */
#gallery .gallery-marquee:hover .gallery-track {
  animation-play-state: running;
}


/* Tablet */
@media (max-width: 1000px) {

  #gallery .gallery-track {
    animation-duration: 62s;
  }

  #gallery .gallery-group {
    gap: 16px;
    padding-right: 16px;
  }

  #gallery .gallery-card {
    width: 360px;
    flex-basis: 360px;
    height: 285px;
  }

}


/* Mobile */
@media (max-width: 700px) {

  #gallery .gallery-track {
    animation-duration: 54s;
  }

  #gallery .gallery-group {
    gap: 12px;
    padding-right: 12px;
  }

  #gallery .gallery-card {
    width: 285px;
    flex-basis: 285px;
    height: 235px;
  }

}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  #gallery .gallery-track {
    animation: none;
    transform: none;
  }

}


/* =========================================
   REAL GOOGLE MAP — LOCATION ONLY
========================================= */

.location-map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.real-map {
  width: 100%;
  height: 100%;
  min-height: 460px;
}

.real-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

@media (max-width: 600px) {
  .real-map,
  .real-map iframe {
    min-height: 390px;
  }
}


/* =========================================
   LOCATION — LANDMARK
========================================= */

.address-block .location-landmark {
  display: block;
  margin-top: 10px;
  color: var(--terracotta);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.real-map {
  position: relative;
  overflow: hidden;
}

.map-landmark {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 4px;

  max-width: 280px;
  padding: 15px 17px;

  border-radius: 16px;
  background: rgba(255, 253, 249, .96);
  box-shadow: 0 12px 35px rgba(24, 34, 28, .14);
}

.map-landmark span {
  color: var(--terracotta);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .1em;
}

.map-landmark strong {
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.map-landmark small {
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 600px) {
  .map-landmark {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}


/* Actual restaurant logo */
.brand-mark.logo-mark {
  width: 46px;
  height: 46px;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 46px;
}

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


.brand-mark.logo-mark {
  width: 46px;
  height: 46px;
  display: block;
  flex: 0 0 46px;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
}

.brand-mark.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* =========================================
   NAV BRAND — REFINED WORDMARK
========================================= */

.brand-copy strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-copy strong::first-letter {
  color: var(--ink);
}

/* Royal accent for the ampersand */
.brand-copy strong {
  color: var(--ink);
}

/* Wrap & separately in HTML for precise styling */
.brand-copy .brand-amp {
  color: #3157d5;
  font-weight: 500;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  margin: 0 2px;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: .13em;
}


/* Navbar cleanup */
.site-header {
  height: 82px;
}

.nav {
  min-height: 82px;
  height: 82px;
}

.brand {
  height: 82px;
}

.brand-copy {
  line-height: 1;
}

.brand-copy strong {
  font-size: 18px;
}

.brand-copy small {
  margin-top: 5px;
}


/* Remove the unwanted hero stats strip only */
.stats-ribbon {
  display: none !important;
}


/* Remove leaked map-road decorations */
.map-road,
.road-one,
.road-two,
.road-three {
  display: none !important;
}

/* Keep the menu directly after the hero */
#menu {
  padding-top: 72px;
  padding-bottom: 90px;
}

#menu .section-heading {
  margin-bottom: 34px;
}


.menu-empty {
  grid-column: 1 / -1;
  padding: 48px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.menu-empty span {
  display: block;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

.menu-empty strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
}

.menu-empty p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}


/* =========================================
   MENU — REFINED HOSPITALITY LAYOUT
   Scoped ONLY to #menu
========================================= */

#menu {
  padding-top: 78px;
  padding-bottom: 92px;
}

#menu .section-heading-split {
  grid-template-columns: .9fr .55fr;
  gap: 70px;
  margin-bottom: 36px;
}

#menu .section-heading h2 {
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: .93;
  letter-spacing: -0.06em;
}

#menu .section-heading-side {
  padding-bottom: 5px;
}

#menu .section-heading-side p {
  max-width: 410px;
  font-size: 13px;
  line-height: 1.7;
}


/* Controls */

#menu .menu-controls {
  margin-bottom: 24px;
  padding: 8px;
  min-height: 62px;
  border-radius: 18px;
  background: rgba(255,255,255,.58);
}

#menu .filter-group,
#menu .category-tabs {
  gap: 4px;
}

#menu .filter-btn,
#menu .category-tab {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 10px;
}

#menu .filter-btn.active,
#menu .category-tab.active {
  background: var(--green);
}


/* Temporary showcase */

#menu .dish-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#menu .menu-preview-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

#menu .menu-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(24,34,28,.08);
}

#menu .menu-preview-image {
  height: 245px;
  background-size: cover;
  background-position: center;
}

#menu .menu-preview-breakfast {
  background:
    linear-gradient(
      135deg,
      rgba(24,61,47,.12),
      rgba(185,111,72,.10)
    ),
    url("../images/experience-place.jpg") center / cover;
}

#menu .menu-preview-lunch {
  background:
    linear-gradient(
      135deg,
      rgba(24,61,47,.10),
      rgba(228,181,111,.10)
    ),
    url("../images/special.jpg") center / cover;
}

#menu .menu-preview-dinner {
  background:
    linear-gradient(
      135deg,
      rgba(24,61,47,.14),
      rgba(185,111,72,.08)
    ),
    url("../images/landing.jpg") center / cover;
}

#menu .menu-preview-content {
  padding: 20px 21px 22px;
}

#menu .menu-preview-content > span {
  display: block;
  margin-bottom: 11px;
  color: var(--terracotta);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

#menu .menu-preview-content h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
}

#menu .menu-preview-content p {
  margin-top: 10px;
  max-width: 330px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}


/* Footer note */

#menu .menu-note {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(222,216,204,.75);
  font-size: 9px;
}


/* Tablet */

@media (max-width: 850px) {

  #menu .section-heading-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  #menu .menu-preview-image {
    height: 220px;
  }

}


/* Mobile */

@media (max-width: 600px) {

  #menu {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  #menu .section-heading h2 {
    font-size: 49px;
  }

  #menu .menu-controls {
    border-radius: 16px;
    padding: 7px;
  }

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

  #menu .menu-preview-image {
    height: 240px;
  }

  #menu .menu-note {
    flex-direction: column;
    gap: 4px;
  }

}


/* =========================================
   MENU — REAL BENTO SYSTEM
   Scoped ONLY to #menu + #menuModal
========================================= */

#menu {
  padding-top: 78px;
  padding-bottom: 92px;
}

#menu .menu-heading {
  max-width: 1180px;
  margin-bottom: 35px;
}

#menu .menu-heading h2 {
  margin-top: 12px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: .92;
  letter-spacing: -.06em;
}

#menu .menu-intro {
  max-width: 470px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

#menu .menu-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 15px;
}

#menu .menu-bento-card,
#menu .menu-brand-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

#menu .menu-bento-card {
  display: block;
  padding: 0;
  background: #d9d2c5;
  color: white;
  cursor: pointer;
  text-align: left;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

#menu .menu-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(24,34,28,.12);
}

#menu .menu-bento-card img,
#menu .menu-brand-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#menu .menu-bento-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.04) 0%,
      rgba(0,0,0,.05) 30%,
      rgba(10,20,15,.84) 100%
    );
}

#menu .menu-bento-copy {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#menu .menu-bento-copy small {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: .11em;
  opacity: .82;
}

#menu .menu-bento-copy strong {
  margin-top: 6px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.045em;
}

#menu .menu-bento-copy em {
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
}


/* Asymmetric Bento composition */

#menu .menu-bento-breakfast {
  grid-column: span 2;
}

#menu .menu-bento-nonveg {
  grid-column: span 1;
  grid-row: span 2;
}

#menu .menu-bento-veg {
  grid-column: span 1;
}

#menu .menu-bento-chinese {
  grid-column: span 1;
}

#menu .menu-bento-rice {
  grid-column: span 1;
}

#menu .menu-bento-seafood {
  grid-column: span 1;
}

#menu .menu-bento-extras {
  grid-column: span 1;
}


/* Brand card */

#menu .menu-brand-card {
  background: var(--green);
  color: white;
}

#menu .menu-brand-card img {
  opacity: .76;
  object-position: center;
}

#menu .menu-brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24,61,47,.08),
    rgba(24,61,47,.88)
  );
}

#menu .menu-brand-card div {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
}

#menu .menu-brand-card span {
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

#menu .menu-brand-card strong {
  margin-top: 7px;
  font-size: 19px;
  letter-spacing: -.04em;
}

#menu .menu-brand-card small {
  margin-top: 5px;
  color: rgba(255,255,255,.68);
  font-size: 9px;
}


/* Menu footer note */

#menu .menu-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(222,216,204,.75);
  font-size: 9px;
}


/* =========================================
   MENU MODAL
========================================= */

/* =========================================================
   NEW MENU VIEWER — RIGHT SIDE DRAWER
========================================================= */

body.menu-viewer-open {
  overflow: hidden;
}

.menu-viewer {
  position: fixed;
  inset: 0;
  z-index: 5000;

  visibility: hidden;
  pointer-events: none;
}

.menu-viewer.open {
  visibility: visible;
  pointer-events: auto;
}


/* Background */

.menu-viewer-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(19, 29, 24, .68);

  backdrop-filter: blur(7px);

  opacity: 0;

  transition: opacity .28s ease;
}

.menu-viewer.open .menu-viewer-backdrop {
  opacity: 1;
}


/* Drawer */

.menu-viewer-panel {
  position: absolute;

  top: 16px;
  right: 16px;
  bottom: 16px;

  width: min(720px, calc(100vw - 32px));

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border-radius: 28px;

  background: var(--paper);

  box-shadow:
    0 30px 100px rgba(0,0,0,.24);

  transform: translateX(105%);

  transition:
    transform .38s cubic-bezier(.22,.61,.36,1);
}

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


/* Close */

.menu-viewer-close {
  position: absolute;

  top: 16px;
  right: 16px;

  z-index: 20;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;

  background: rgba(255,253,249,.94);

  color: var(--ink);

  font-size: 25px;

  cursor: pointer;

  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.menu-viewer-close:hover {
  background: var(--green);
  color: white;
}


/* Image */

.menu-viewer-image {
  flex: 0 0 330px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: var(--cream);

  border-bottom: 1px solid var(--line);

  overflow: hidden;
}

.menu-viewer-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
  object-position: center;
}


/* Body */

.menu-viewer-body {
  flex: 1 1 auto;

  min-height: 0;

  overflow-y: auto;
  overscroll-behavior: contain;

  padding: 32px 34px 40px;
}


/* Header */

.menu-viewer-kicker {
  display: block;

  color: var(--terracotta);

  font-family: "DM Mono", monospace;

  font-size: 9px;
  line-height: 1;

  letter-spacing: .12em;
}

.menu-viewer-body h3 {
  margin: 12px 0 0;

  color: var(--ink);

  font-size: clamp(44px, 5vw, 64px);

  line-height: .92;

  letter-spacing: -.06em;
}

.menu-viewer-body > p {
  max-width: 500px;

  margin: 15px 0 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.7;
}


/* Menu items */

.menu-viewer-list {
  margin-top: 28px;

  border-top: 1px solid var(--line);
}

.menu-viewer-row {
  display: grid;

  grid-template-columns: minmax(0,1fr) 84px;

  gap: 18px;

  align-items: start;

  padding: 14px 0;

  border-bottom: 1px solid rgba(222,216,204,.72);
}

.menu-viewer-row span {
  min-width: 0;

  color: var(--ink);

  font-size: 12px;
  line-height: 1.5;

  overflow-wrap: anywhere;
}

.menu-viewer-row strong {
  width: 84px;
  min-width: 84px;

  color: var(--terracotta);

  font-family: "DM Mono", monospace;

  font-size: 11px;

  text-align: right;

  white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .menu-viewer-panel {
    top: 10px;
    right: 10px;
    bottom: 10px;

    width: min(680px, calc(100vw - 20px));
  }

  .menu-viewer-image {
    flex-basis: 290px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .menu-viewer-panel {
    top: 7px;
    right: 7px;
    bottom: 7px;
    left: 7px;

    width: auto;

    border-radius: 21px;
  }

  .menu-viewer-image {
    flex-basis: 220px;

    padding: 12px;
  }

  .menu-viewer-body {
    padding: 25px 18px 32px;
  }

  .menu-viewer-body h3 {
    font-size: 42px;
  }

  .menu-viewer-row {
    grid-template-columns: minmax(0,1fr) 72px;
    gap: 12px;
  }

  .menu-viewer-row strong {
    width: 72px;
    min-width: 72px;
  }

}


/* =========================================================
   SPECIAL — ALIGNMENT ONLY
========================================================= */

.section-green .featured {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.section-green .feature-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
}

.section-green .feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.section-green .feature-copy {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-green .feature-copy h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(54px, 5.5vw, 82px);
  line-height: .9;
  letter-spacing: -.06em;
}

.section-green .feature-copy p {
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.section-green .light-link {
  margin-top: 26px;
}

@media (max-width: 900px) {
  .section-green .featured {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-green .feature-image,
  .section-green .feature-image img {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .section-green .feature-image,
  .section-green .feature-image img {
    min-height: 340px;
  }

  .section-green .feature-copy h2 {
    font-size: 56px;
  }
}


/* =========================================================
   GALLERY — SMOOTH MOVING STRIP
========================================================= */

#gallery {
  overflow: hidden;
}

#gallery .gallery-heading {
  margin-bottom: 32px;
}

#gallery .gallery-heading h2 {
  white-space: nowrap;
  font-size: clamp(48px, 5.5vw, 82px);
  line-height: .95;
  letter-spacing: -.055em;
}

#gallery .gallery-heading h2 span {
  color: var(--terracotta);
}

#gallery .gallery-marquee {
  width: 100%;
  overflow: hidden;
}

#gallery .gallery-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  transform: translate3d(0,0,0);
  animation: milesMealsGallery 68s linear infinite;
  will-change: transform;
}

#gallery .gallery-group {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
}

#gallery .gallery-card {
  width: 420px;
  height: 330px;
  flex: 0 0 420px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #ddd8cd;
}

#gallery .gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes milesMealsGallery {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    transform: translate3d(-50%,0,0);
  }
}

#gallery .gallery-marquee:hover .gallery-track {
  animation-play-state: running;
}

@media (max-width: 900px) {

  #gallery .gallery-track {
    animation-duration: 58s;
  }

  #gallery .gallery-card {
    width: 350px;
    height: 275px;
    flex-basis: 350px;
  }

}

@media (max-width: 600px) {

  #gallery .gallery-heading h2 {
    white-space: normal;
  }

  #gallery .gallery-track {
    animation-duration: 48s;
  }

  #gallery .gallery-card {
    width: 290px;
    height: 235px;
    flex-basis: 290px;
  }

}



/* MENU VIEWER — scrolling/interaction repair only */
.menu-viewer-panel {
  overflow: hidden;
}

.menu-viewer-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.menu-viewer-image {
  flex: 0 0 330px;
}

@media (max-width: 600px) {
  .menu-viewer-image {
    flex-basis: 220px;
  }
}


/* MILES & MEALS — HOURS + GOOGLE RATING */

.visit-hours {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.visit-hours > span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--green);
}

.visit-hours strong {
  font-size: 18px;
  line-height: 1.2;
  color: var(--ink);
}

.visit-hours small {
  font-size: 10px;
  color: var(--muted);
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 8px;
}

.reviews-rating strong {
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--ink);
}

.reviews-stars {
  color: var(--terracotta);
  font-size: 13px;
  letter-spacing: .08em;
}

.reviews-rating small {
  font-size: 10px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .reviews-rating {
    flex-wrap: wrap;
  }
}


/* =========================================================
   MILES & MEALS — REVIEW CAROUSEL FINAL
========================================================= */

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-viewport {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transition: transform .42s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.reviews-track .review-card {
  flex: 0 0 calc((min(100vw - 80px, 1180px) - 18px) / 2);
  width: calc((min(100vw - 80px, 1180px) - 18px) / 2);
}

.reviews-arrow {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition:
    background .2s ease,
    color .2s ease,
    opacity .2s ease,
    transform .2s ease;
}

.reviews-arrow:hover:not(:disabled) {
  background: var(--green);
  color: white;
  transform: translateY(-1px);
}

.reviews-arrow:disabled {
  opacity: .28;
  cursor: default;
}

.reviewer-name {
  display: block;
  margin: 0;
  max-width: 72%;
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -.02em;
  text-transform: none;
}

.review-card-dark .reviewer-name {
  color: white;
}

.review-card .review-footer {
  align-items: flex-end;
}

.visit-hours {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.34);
  display: grid;
  gap: 5px;
}

.visit-hours > span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--green);
}

.visit-hours strong {
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
}

.visit-hours small {
  font-size: 10px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .reviews-track .review-card {
    flex-basis: calc(100vw - 116px);
    width: calc(100vw - 116px);
  }
}

@media (max-width: 600px) {
  .reviews-carousel {
    gap: 9px;
  }

  .reviews-arrow {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .reviews-track {
    gap: 12px;
  }

  .reviews-track .review-card {
    flex-basis: calc(100vw - 100px);
    width: calc(100vw - 100px);
    min-height: 290px;
    padding: 25px;
  }

  .reviewer-name {
    font-size: 11px;
    max-width: 70%;
  }

  .review-card p {
    font-size: 20px;
    line-height: 1.35;
  }

  .visit-hours {
    padding: 16px 17px;
  }

  .visit-hours strong {
    font-size: 18px;
  }
}

/* VISIT — MAKE OPENING HOURS PROMINENT */
.visit-hours {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(23,61,45,.16);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 10px 28px rgba(20,20,20,.06);
}

.visit-hours > span {
  display: block;
  margin-bottom: 7px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--terracotta);
}

.visit-hours strong {
  display: block;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 700;
}

.visit-hours small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 700px) {
  .visit-hours {
    max-width: none;
    margin-top: 20px;
    padding: 17px 18px;
  }

  .visit-hours strong {
    font-size: 18px;
  }
}

/* VISIT HOURS — TRANSPARENT + SUBTLE ATTENTION */
.visit-hours {
  background: rgba(255, 253, 248, 0.22);
  border: 1px solid rgba(23, 61, 45, 0.18);
  box-shadow: none;
  backdrop-filter: blur(4px);
  animation: visitHoursPulse 3.8s ease-in-out infinite;
}

.visit-hours > span {
  color: var(--terracotta);
}

.visit-hours strong {
  color: var(--green);
}

@keyframes visitHoursPulse {
  0%, 100% {
    border-color: rgba(23, 61, 45, 0.14);
    box-shadow: 0 0 0 0 rgba(182, 107, 70, 0);
  }

  50% {
    border-color: rgba(182, 107, 70, 0.36);
    box-shadow: 0 0 0 6px rgba(182, 107, 70, 0.055);
  }
}

@media (prefers-reduced-motion: reduce) {
  .visit-hours {
    animation: none;
  }
}

/* VISIT HOURS — FINAL POSITION + CLEARER PULSE */
.visit-hours {
  transform: translateX(-6px);
  background: transparent;
  border-color: rgba(23, 61, 45, 0.22);
  animation: visitHoursPulseStrong 2.4s ease-in-out infinite;
}

.visit-hours small::after {
  content: "  •  Bijni • Chirang";
  color: var(--muted);
  font-size: 10px;
}

@keyframes visitHoursPulseStrong {
  0%, 100% {
    border-color: rgba(182, 107, 70, 0.18);
    box-shadow: 0 0 0 0 rgba(182, 107, 70, 0);
  }

  50% {
    border-color: rgba(182, 107, 70, 0.62);
    box-shadow:
      0 0 0 5px rgba(182, 107, 70, 0.10),
      0 0 24px rgba(182, 107, 70, 0.12);
  }
}

@media (max-width: 700px) {
  .visit-hours {
    transform: translateX(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .visit-hours {
    animation: none;
  }
}


/* =========================================================
   FOOTER — LEGAL + IMPERIALCYBERX
========================================================= */

.footer-bottom {
  align-items: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: none;
  opacity: .72;
  transition: opacity .2s ease;
}

.footer-legal-links a:hover {
  opacity: 1;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  font-family: "DM Mono", monospace;
  letter-spacing: .08em;
  transition: opacity .2s ease;
}

.footer-credit:hover {
  opacity: .7;
}

.footer-credit span {
  font-size: 11px;
}

@media (max-width: 700px) {
  .footer-bottom {
    align-items: flex-start;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .footer-legal-links {
    gap: 10px 14px;
  }

  .footer-credit {
    margin-top: 8px;
  }
}

.hero-location {
  margin-bottom: 10px;
}

.hero-location strong {
  display: inline-block;
  font-size: clamp(42px, 5vw, 58px);
  letter-spacing: -.07em;
}



/* =========================================================
   HERO + PRE-MENU ALIGNMENT
========================================================= */

.hero-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-meta {
  margin-top: auto;
}

.pre-menu-card {
  width: 100%;
  min-height: 82px;
  margin: 0 0 8px;
  padding: 15px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(20,20,20,.10);
  border-radius: 18px;
  background: rgba(255,253,248,.62);
  backdrop-filter: blur(8px);
}

.pre-menu-item {
  display: grid;
  gap: 4px;
}

.pre-menu-item > span {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  line-height: 1;
  letter-spacing: .15em;
  color: var(--muted);
}

.pre-menu-item strong {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
}

.pre-menu-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.pre-menu-action {
  justify-self: end;
}

.pre-menu-action a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

.pre-menu-action a:hover {
  transform: translateY(-1px);
  opacity: .92;
}

.pre-menu-action a span {
  font-size: 12px;
}

@media (max-width: 800px) {
  .pre-menu-card {
    grid-template-columns: 1fr auto;
    gap: 13px 16px;
    min-height: auto;
    padding: 15px 16px;
  }

  .pre-menu-divider {
    display: none;
  }

  .pre-menu-action {
    justify-self: start;
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .pre-menu-item:nth-of-type(2) {
    grid-column: 1;
  }

  .pre-menu-action a {
    padding: 9px 12px;
  }
}

@media (max-width: 600px) {
  .pre-menu-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pre-menu-action {
    grid-column: auto;
    grid-row: auto;
  }

  .pre-menu-action a {
    width: 100%;
    justify-content: center;
  }
}

/* PRE-MENU CARD — SOLID GREEN TREATMENT */
.pre-menu-card {
  background: var(--green);
  border: 0;
  border-radius: 14px;
  box-shadow: none;
}

.pre-menu-item > span {
  color: rgba(255,255,255,.58);
}

.pre-menu-item strong {
  color: #fff;
}

.pre-menu-divider {
  background: rgba(255,255,255,.18);
}

.pre-menu-action a {
  background: transparent;
  border: 1px solid rgba(217,171,98,.72);
  color: var(--gold);
}

.pre-menu-action a:hover {
  background: rgba(217,171,98,.10);
  border-color: var(--gold);
  opacity: 1;
}

/* HERO — REMOVE GREY BOTTOM EXTENSION ONLY */
.hero-photo-wrap {
  background: transparent;
}

.hero-photo {
  display: block;
  width: 100%;
}

/* FOOTER — LEGAL UNDER COPYRIGHT + DEVELOPMENT CREDIT */
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-credit-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.footer-credit-label {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  line-height: 1;
  letter-spacing: .13em;
  color: rgba(255,255,255,.48);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 700px) {
  .footer-credit-wrap {
    align-items: flex-start;
  }
}

/* FOOTER — LEGAL LINKS UNDER TAGLINE */
.footer-copy .footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
}

.footer-copy .footer-legal-links a {
  color: inherit;
  text-decoration: none;
  font-size: 9px;
  opacity: .62;
  transition: opacity .2s ease;
}

.footer-copy .footer-legal-links a:hover {
  opacity: 1;
}

/* FOOTER LEGAL LINKS — STACKED */
.footer-copy .footer-legal-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 11px;
}

.footer-copy .footer-legal-links a {
  font-size: 8px;
  line-height: 1.35;
  letter-spacing: .02em;
}


/* FOOTER LEGAL — ACTUAL FOOTER STRUCTURE */
.footer-grid > div:first-child .footer-legal-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 10px;
}

.footer-grid > div:first-child .footer-legal-links a {
  font-size: 8px;
  line-height: 1.35;
  letter-spacing: .02em;
  color: inherit;
  text-decoration: none;
  opacity: .58;
  transition: opacity .2s ease;
}

.footer-grid > div:first-child .footer-legal-links a:hover {
  opacity: 1;
}


/* PRE-MENU STRIP — MATCH SURROUNDING CREAM ONLY */
main > .container:has(.pre-menu-card) {
  position: relative;
  isolation: isolate;
  background: var(--cream);
  box-shadow: 0 0 0 100vmax var(--cream);
  clip-path: inset(0 -100vmax);
}

/* PRE-MENU — REMOVE THE LAST WHITE GAP ONLY */
.pre-menu-card {
  margin-bottom: 0;
}

/* HERO NH27 — COLOR + BLINK ONLY */
.hero-location strong {
  color: var(--terracotta);
  animation: nh27Blink 1.9s ease-in-out infinite;
}

@keyframes nh27Blink {
  0%, 100% {
    opacity: .72;
    text-shadow: 0 0 0 rgba(182,107,70,0);
  }

  50% {
    opacity: 1;
    text-shadow:
      0 0 14px rgba(182,107,70,.42),
      0 0 30px rgba(217,171,98,.20);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-location strong {
    animation: none;
    opacity: 1;
  }
}

/* HERO NH27 — ROYAL BLUE, NO ANIMATION */
.hero-location strong {
  color: #2457c5;
  animation: none !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

/* HERO — LIFT MAIN SLOGAN ONLY */
.hero-copy .hero-slogan {
  transform: translateY(-18px);
  margin-bottom: -18px;
}

@media (max-width: 700px) {
  .hero-copy .hero-slogan {
    transform: translateY(-10px);
    margin-bottom: -10px;
  }
}

/* HERO — EDITORIAL BLANK-SPACE TREATMENT */
.hero-editorial {
  margin-top: 48px;
  margin-bottom: 34px;
}

.hero-editorial-copy {
  max-width: 540px;
}

.hero-editorial-kicker {
  display: block;
  margin-bottom: 10px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .17em;
  color: var(--terracotta);
}

.hero-editorial-copy h2 {
  margin: 0;
  max-width: 540px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 500;
  color: var(--ink);
}

.hero-editorial-copy p {
  max-width: 500px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.hero-editorial-rule {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

.hero-editorial-rule::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.hero-editorial-rule span {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  margin-left: 11px;
  border-radius: 50%;
  background: var(--terracotta);
}

@media (max-width: 700px) {
  .hero-editorial {
    margin-top: 34px;
    margin-bottom: 26px;
  }

  .hero-editorial-copy h2 {
    font-size: 29px;
  }
}

/* HERO EDITORIAL — REMOVE RULE ONLY */
.hero-editorial-rule {
  display: none !important;
}

/* HERO FLOATING CARD — TRANSPARENT + FOREST GREEN */
.hero-floating-card {
  background: rgba(255, 253, 249, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-floating-card strong {
  color: var(--green);
}

.floating-label {
  color: rgba(23, 61, 45, 0.68);
}

/* HERO FLOATING CARD — BETTER CONTRAST */
.hero-floating-card {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
}

.hero-floating-card strong {
  color: var(--ink);
}

.floating-label {
  color: var(--muted);
}


.menu-bento-copy .menu-view-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: var(--green);
  border: 1px solid rgba(255,255,255,.16);

  color: #fff;
  font-style: normal;
  font-size: 17px;
  line-height: 1;

  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

/* MENU CARD CTA — VIEW MENU + ROUND ARROW */
#menu .menu-bento-copy em {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  color: rgba(255,255,255,.82);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
}

#menu .menu-bento-copy em::after {
  content: "↗";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--green);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 7px 16px rgba(0,0,0,.18);
}

#menu .menu-bento-card:hover .menu-bento-copy em::after {
  transform: translateY(-1px);
}

#menu .menu-bento-copy em::after {
  transition: transform .2s ease;
}

/* =========================================================
   MOBILE REFINEMENT — MILES & MEALS
   Desktop styles are intentionally untouched.
========================================================= */

@media (max-width: 700px) {

  /* ---------- HERO ---------- */

  .hero {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-slogan {
    font-size: clamp(50px, 14vw, 64px);
    line-height: .88;
    letter-spacing: -.065em;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .hero-editorial {
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .hero-editorial-copy h2 {
    font-size: 29px;
    line-height: 1.02;
  }

  .hero-editorial-copy p {
    font-size: 11px;
    line-height: 1.65;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 18px;
  }

  .hero-photo-wrap,
  .hero-photo {
    min-height: 400px;
  }

  .hero-floating-card {
    left: 14px;
    bottom: 14px;
    width: 185px;
    padding: 19px;
    border-radius: 18px;
  }

  .hero-floating-card strong {
    font-size: 24px;
  }

  /* ---------- PRE-MENU STRIP ---------- */

  .pre-menu-card {
    margin-top: 4px;
    margin-bottom: 0;
    padding: 15px;
    border-radius: 14px;
    gap: 11px;
  }

  .pre-menu-item strong {
    font-size: 11px;
  }

  .pre-menu-action a {
    min-height: 42px;
  }

  /* ---------- MENU ---------- */

  #menu .menu-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 11px;
  }

  #menu .menu-bento-card,
  #menu .menu-bento-breakfast,
  #menu .menu-bento-nonveg,
  #menu .menu-bento-veg,
  #menu .menu-bento-chinese,
  #menu .menu-bento-rice,
  #menu .menu-bento-seafood,
  #menu .menu-bento-extras,
  #menu .menu-brand-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 205px;
  }

  #menu .menu-bento-breakfast {
    min-height: 245px;
  }

  #menu .menu-bento-copy {
    inset: auto 15px 15px;
  }

  #menu .menu-bento-copy strong {
    font-size: 22px;
  }

  #menu .menu-bento-copy em {
    margin-top: 8px;
    font-size: 9px;
  }

  #menu .menu-bento-copy em::after {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  /* ---------- SPECIAL ---------- */

  .section-green .featured,
  .special,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .section-green .feature-image,
  .special img {
    min-height: 210px;
    height: 210px;
  }

  /* ---------- GALLERY ---------- */

  .marquee img {
    width: 145px;
    height: 170px;
  }

  /* ---------- EXPERIENCE ---------- */

  .experience-layout,
  .experience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .experience-layout .big,
  .experience-grid .big {
    min-height: 290px;
  }

  /* ---------- REVIEWS ---------- */

  .reviews-carousel {
    gap: 7px;
  }

  .reviews-viewport {
    overflow: hidden;
  }

  .reviews-track {
    gap: 10px;
  }

  .reviews-track .review-card {
    flex-basis: calc(100vw - 92px);
    width: calc(100vw - 92px);
    min-height: 285px;
    padding: 22px;
    border-radius: 19px;
  }

  .reviews-arrow {
    flex: 0 0 37px;
    width: 37px;
    height: 37px;
    font-size: 15px;
  }

  .review-card p {
    font-size: 19px;
    line-height: 1.34;
  }

  .reviewer-name {
    font-size: 10px;
    max-width: 68%;
  }

  /* ---------- PERKS ---------- */

  .perks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .perk-card {
    min-height: 190px;
    padding: 18px;
  }

  .perk-card h3 {
    font-size: 22px;
  }

  .perk-card p {
    font-size: 10px;
    line-height: 1.6;
  }

  /* ---------- FAQ ---------- */

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* ---------- LOCATION ---------- */

  .location-section {
    padding: 72px 0;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .address-block {
    margin-top: 26px;
    padding-top: 18px;
  }

  .address-block p {
    font-size: 20px;
  }

  .visit-hours {
    width: 100%;
    max-width: none;
    margin-top: 18px;
    padding: 15px 16px;
    border-radius: 15px;
  }

  .visit-hours strong {
    font-size: 18px;
  }

  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  .location-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .location-map-card {
    min-height: 340px;
  }

  /* ---------- FOOTER ---------- */

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

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
  }

  .footer-contact {
    gap: 7px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-credit-wrap {
    align-items: flex-start;
  }

  /* ---------- GENERAL TOUCH TARGETS ---------- */

  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }

  .nav-cta,
  .btn,
  .reviews-arrow,
  .menu-viewer-close {
    min-height: 42px;
  }
}

@media (max-width: 390px) {

  .hero-slogan {
    font-size: 47px;
  }

  .hero-photo-wrap,
  .hero-photo {
    min-height: 370px;
  }

  .hero-floating-card {
    width: 172px;
    padding: 17px;
  }

  .hero-floating-card strong {
    font-size: 22px;
  }

  .pre-menu-card {
    padding: 13px;
  }

  .reviews-track .review-card {
    flex-basis: calc(100vw - 84px);
    width: calc(100vw - 84px);
  }
}

/* MENU — RESTORE DESKTOP BRAND CARD POSITION */
@media (min-width: 901px) {
  #menu .menu-brand-card {
    grid-column: 3;
    grid-row: 2;
  }
}

/* MENU — RESTORE COMPLETE DESKTOP 3-ROW BENTO */
@media (min-width: 901px) {

  #menu .menu-bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, 235px);
    gap: 15px;
  }

  #menu .menu-bento-breakfast {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  #menu .menu-bento-nonveg {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  #menu .menu-bento-veg {
    grid-column: 4;
    grid-row: 1;
  }

  #menu .menu-bento-chinese {
    grid-column: 1;
    grid-row: 2;
  }

  #menu .menu-bento-rice {
    grid-column: 2;
    grid-row: 2;
  }

  #menu .menu-bento-seafood {
    grid-column: 4;
    grid-row: 2 / span 2;
  }

  #menu .menu-bento-extras {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  #menu .menu-brand-card {
    grid-column: 3;
    grid-row: 3;
  }

}

/* SPECIAL CTA — ROUNDED ACTION CONTROL */
.light-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(217,171,98,.75);
  border-radius: 999px;
  background: rgba(217,171,98,.06);
  color: var(--gold);
  text-decoration: none;
  line-height: 1;
  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.light-link:hover {
  background: rgba(217,171,98,.12);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.light-link span {
  display: inline-grid;
  place-items: center;
  font-size: 13px;
}

/* REVIEW CARDS — LARGER GOLD STARS */
.review-footer > span:last-child {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: .08em;
  line-height: 1;
}

.review-card-dark .review-footer > span:last-child {
  color: var(--gold);
}

@media (max-width: 600px) {
  .review-footer > span:last-child {
    font-size: 14px;
  }
}
