:root {
  --cream: #fff8e9;
  --ivory: #f7ecd4;
  --linen: #eee0c4;
  --sand: #dcc49b;
  --charcoal: #1e1712;
  --brown: #3a2418;
  --brown-soft: #5e3921;
  --muted: #7b6d5d;
  --gold: #c9953f;
  --gold-light: #f2d58a;
  --gold-dark: #8e5a1f;
  --spice: #d96f2d;
  --saffron: #efac3c;
  --leaf: #526b3f;
  --white: #fffdf7;
  --line: rgba(201, 149, 63, 0.26);
  --shadow: 0 26px 80px rgba(37, 22, 12, 0.18);
  --shadow-soft: 0 18px 44px rgba(37, 22, 12, 0.11);
  --radius: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 10% 10%, rgba(239, 172, 60, 0.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(82, 107, 63, 0.12), transparent 25%),
    linear-gradient(180deg, var(--cream), var(--ivory) 46%, var(--cream));
  overflow-x: hidden;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(142, 90, 31, 0.22) 1px, transparent 1px),
    linear-gradient(180deg, rgba(142, 90, 31, 0.18) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 82%, transparent);
}

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

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

button,
input,
textarea {
  font: inherit;
}


.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(255, 248, 233, 0.10);
  background: rgba(30, 23, 18, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(16, 10, 6, 0.22);
}

.nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 238px;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  /* background: var(--cream); */
  box-shadow: 0 0 0 2px rgba(242, 213, 138, 0.38), 0 14px 26px rgba(0, 0, 0, 0.2);
}

.brand strong,
.brand-location {
  display: block;
}

.brand strong {
  color: var(--white);
  font-size: 17px;
  line-height: 1.16;
  font-weight: 900;
}

.brand-location {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 11px 12px;
  border-radius: 999px;
  color: rgba(255, 248, 233, 0.78);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--spice));
  transition: transform 220ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 248, 233, 0.08);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  isolation: isolate;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -75%;
  z-index: -1;
  width: 55%;
  transform: skewX(-18deg);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.52), transparent);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn:hover::before,
.btn:focus-visible::before {
  animation: shimmer 850ms var(--ease);
}

.btn--gold {
  color: #25170c;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)) !important;
  box-shadow: 0 18px 42px rgba(142, 90, 31, 0.34);
}

.btn--gold:hover,
.btn--gold:focus-visible {    
  box-shadow: 0 24px 52px rgba(142, 90, 31, 0.46);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)) !important;
}

.btn--light {
  color: var(--white);
  border-color: rgba(255, 248, 233, 0.35);
  background: rgba(255, 248, 233, 0.10);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
}

.btn--cream {
  color: var(--charcoal);
  border-color: rgba(201, 149, 63, 0.34);
  background: rgba(255, 253, 247, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  /* background: var(--charcoal); */
  background-image: url("../images/combo.jpg");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(20, 12, 7, 0.86) 0%, rgba(20, 12, 7, 0.62) 42%, rgba(20, 12, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(20, 12, 7, 0.30), rgba(20, 12, 7, 0.94)),
    url("../images/hero-table.jpg") center / cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 20%, rgba(242, 213, 138, 0.28), transparent 26%),
    radial-gradient(circle at 22% 76%, rgba(217, 111, 45, 0.22), transparent 28%);
  animation: softGlow 7s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 112px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.54fr);
  gap: 48px;
  align-items: end;
}

.hero-copy {
  max-width: 780px;
  padding-bottom: 32px;
  animation: fadeUp 820ms var(--ease) both;
}

.hero-logo {
  width: 144px;
  height: 144px;
  margin-bottom: 22px;
  border-radius: 50%;
  object-fit: cover;
  /* background: var(--cream); */
  box-shadow: 0 0 0 1px rgba(242, 213, 138, 0.48), 0 24px 66px rgba(0, 0, 0, 0.34);
  animation: pulseBadge 4.2s ease-in-out infinite;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--spice));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.78;
}

.hero .lead {
  max-width: 670px;
  color: rgba(255, 248, 233, 0.84);
}

.lead {
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.hero-detail {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: 22px;
  background: rgba(255, 248, 233, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-detail strong,
.hero-detail span {
  display: block;
}

.hero-detail strong {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-detail span {
  margin-top: 8px;
  color: rgba(255, 248, 233, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.hero-aside {
  position: relative;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid rgba(242, 213, 138, 0.28);
  border-radius: 34px;
  background: rgba(30, 23, 18, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  animation: fadeUp 940ms var(--ease) 120ms both;
}

.aside-photo {
  height: 360px;
  overflow: hidden;
  border-radius: 26px;
}

.aside-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.hero-aside:hover .aside-photo img {
  transform: scale(1.06);
}

.hero-badge {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 248, 233, 0.62);
  border-radius: 50%;
  color: #24160b;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  animation: pulseBadge 3s ease-in-out infinite;
}

.aside-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 6px 4px;
}

.aside-note strong {
  display: block;
  color: var(--white);
  font-size: 17px;
}

.aside-note span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 248, 233, 0.7);
  font-size: 13px;
}

.mini-ring {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(242, 213, 138, 0.5);
  background:
    radial-gradient(circle, rgba(242, 213, 138, 0.45), transparent 36%),
    conic-gradient(from 70deg, var(--gold-light), transparent, var(--spice), transparent, var(--gold-light));
  animation: softGlow 5s ease-in-out infinite;
}

.spice {
  position: absolute;
  z-index: 2;
  opacity: 0.72;
  animation: floatSpice 6.5s ease-in-out infinite;
}

.spice--seed {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(242, 213, 138, 0.58);
  border-radius: 50%;
  --rotate: 15deg;
}

.spice--seed::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(217, 111, 45, 0.7);
}

.spice--leaf {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(242, 213, 138, 0.52);
  border-radius: 80% 0 80% 0;
  --rotate: 38deg;
}

.spice--dash {
  width: 46px;
  height: 11px;
  border-radius: 999px;
  background: rgba(217, 111, 45, 0.44);
  --rotate: -13deg;
}

.spice-a {
  left: 6%;
  top: 20%;
}

.spice-b {
  right: 11%;
  top: 18%;
  animation-delay: 800ms;
}

.spice-c {
  left: 46%;
  bottom: 18%;
  animation-delay: 1350ms;
}

.quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -36px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(201, 149, 63, 0.24);
  border-radius: 28px;
  background: rgba(201, 149, 63, 0.2);
  box-shadow: var(--shadow);
}

.quick-item {
  position: relative;
  min-height: 130px;
  padding: 25px;
  background: rgba(255, 253, 247, 0.94);
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.quick-item::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--spice));
}

.quick-item:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: var(--white);
}

.quick-item strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.quick-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-head {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head .lead {
  margin-bottom: 0;
}

.ornament-line {
  width: 116px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--spice), transparent);
}

.patterned::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  pointer-events: none;
  opacity: 0.78;
  background:
    radial-gradient(circle at 8px 8px, rgba(201, 149, 63, 0.55) 2px, transparent 3px) 0 0 / 32px 15px,
    linear-gradient(90deg, transparent 0 11px, rgba(217, 111, 45, 0.28) 11px 21px, transparent 21px 32px);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brown);
  box-shadow: var(--shadow-soft);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 640ms var(--ease), filter 640ms var(--ease);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(30, 23, 18, 0.72)),
    radial-gradient(circle at 22% 18%, rgba(242, 213, 138, 0.22), transparent 25%);
}

.image-frame:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.image-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 13px;
  border: 1px solid rgba(255, 248, 233, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(30, 23, 18, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
}

.buffet {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 111, 45, 0.12), transparent 28%),
    linear-gradient(180deg, var(--cream), var(--ivory));
}

.buffet-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.buffet-copy {
  animation: fadeUp 760ms var(--ease) both;
}

.buffet-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.buffet-card,
.menu-card,
.review-card,
.contact-panel {
  border-radius: var(--radius);
}

.buffet-card {
  position: relative;
  min-height: 166px;
  padding: 24px;
  border: 1px solid rgba(201, 149, 63, 0.24);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 16px 36px rgba(37, 22, 12, 0.08);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.buffet-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 17px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 68% 32%, var(--gold-light), transparent 30%),
    linear-gradient(135deg, var(--gold), var(--spice));
  box-shadow: 0 13px 22px rgba(201, 149, 63, 0.2);
}

.buffet-card:hover,
.menu-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 149, 63, 0.5);
  box-shadow: 0 28px 64px rgba(37, 22, 12, 0.16);
}

.buffet-card p,
.menu-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.68;
}

.buffet-media {
  position: relative;
  min-height: 620px;
}

.buffet-main {
  position: absolute;
  inset: 0 0 92px 78px;
  border: 10px solid rgba(255, 253, 247, 0.78);
  border-radius: 36px;
}

.buffet-secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  height: 250px;
  border: 8px solid rgba(255, 253, 247, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.buffet-badge {
  position: absolute;
  right: 28px;
  top: 36px;
  z-index: 4;
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  padding: 17px;
  border: 1px solid rgba(255, 253, 247, 0.68);
  border-radius: 50%;
  color: #28180c;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.36;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 20px 48px rgba(142, 90, 31, 0.34);
  animation: pulseBadge 3s ease-in-out infinite;
}

.about {
  background:
    linear-gradient(180deg, rgba(255, 248, 233, 0.7), rgba(255, 253, 247, 0.94)),
    var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.about-media {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 16px;
}

.about-media .image-frame:first-child {
  grid-row: 1 / 3;
}

.about-copy {
  position: relative;
}

.about-copy::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 9px;
  width: 5px;
  height: 118px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--spice));
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.about-stat {
  min-height: 112px;
  padding: 20px 14px;
  border: 1px solid rgba(201, 149, 63, 0.22);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.78);
  text-align: center;
  box-shadow: 0 14px 30px rgba(37, 22, 12, 0.07);
}

.about-stat strong {
  display: block;
  color: var(--gold-dark);
  font-size: 25px;
  line-height: 1;
}

.about-stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.menu {
  background:
    radial-gradient(circle at 90% 12%, rgba(82, 107, 63, 0.15), transparent 24%),
    linear-gradient(180deg, var(--ivory), var(--cream));
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 149, 63, 0.22);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.menu-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--brown);
}

.menu-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(30, 23, 18, 0.58));
  pointer-events: none;
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms var(--ease), filter 620ms var(--ease);
}

.menu-card:hover .menu-photo img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.dish-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 247, 0.62);
  border-radius: 999px;
  color: #25170c;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.menu-body {
  padding: 23px;
}

.catering {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(30, 23, 18, 0.92), rgba(30, 23, 18, 0.68)),
    url("../images/dining-spread.jpg") center / cover no-repeat;
}

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

.catering p {
  color: rgba(255, 248, 233, 0.78);
}

.catering-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
  gap: 54px;
  align-items: center;
}

.catering-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 32px 0 34px;
  padding: 0;
  list-style: none;
}

.catering-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(242, 213, 138, 0.22);
  border-radius: 18px;
  color: rgba(255, 248, 233, 0.92);
  background: rgba(255, 248, 233, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 800;
}

.catering-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--spice));
  box-shadow: 0 0 0 5px rgba(242, 213, 138, 0.12);
}

.catering-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(242, 213, 138, 0.24);
  border-radius: 34px;
  background: rgba(255, 248, 233, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.catering-panel .image-frame:first-child {
  min-height: 420px;
}

.catering-stack {
  display: grid;
  gap: 16px;
}

.catering-stack .image-frame {
  min-height: 202px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 145px;
  gap: 16px;
}

.gallery-item {
  min-height: auto;
  border: 1px solid rgba(201, 149, 63, 0.22);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.gallery-item:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 149, 63, 0.52);
  box-shadow: 0 28px 64px rgba(37, 22, 12, 0.18);
}

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

.gallery-tall {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-small {
  grid-column: span 2;
  grid-row: span 2;
}

.reviews {
  background:
    radial-gradient(circle at 12% 14%, rgba(217, 111, 45, 0.12), transparent 24%),
    linear-gradient(180deg, var(--cream), var(--ivory));
}

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

.review-card {
  position: relative;
  min-height: 292px;
  padding: 31px;
  border: 1px solid rgba(201, 149, 63, 0.25);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.94), rgba(255, 248, 233, 0.82));
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.review-card::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 0;
  width: 68px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--gold), var(--spice));
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 19px;
  line-height: 1;
}

blockquote {
  margin: 0;
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.76;
  font-weight: 700;
}

cite {
  display: block;
  margin-top: 23px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 38px;
  align-items: start;
}

.contact-panel {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(201, 149, 63, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(255, 248, 233, 0.84));
  box-shadow: var(--shadow-soft);
}

.contact-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  width: 5px;
  height: 118px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--spice));
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 149, 63, 0.18);
}

.contact-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--charcoal);
  font-size: 14px;
}

.contact-list span,
.contact-list a {
  color: var(--muted);
  line-height: 1.7;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(201, 149, 63, 0.28);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 253, 247, 0.94);
  color: var(--charcoal);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

input {
  min-height: 58px;
  padding: 0 16px;
}

textarea {
  min-height: 154px;
  padding: 16px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(142, 90, 31, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 149, 63, 0.15);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 74px 0 30px;
  color: rgba(255, 248, 233, 0.86);
  background:
    radial-gradient(circle at 16% 18%, rgba(201, 149, 63, 0.19), transparent 34%),
    linear-gradient(135deg, #1e1712, #382416 62%, #16100c);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 15px;
  background:
    radial-gradient(circle at 8px 8px, rgba(242, 213, 138, 0.7) 2px, transparent 3px) 0 0 / 32px 15px,
    linear-gradient(90deg, transparent 0 11px, rgba(217, 111, 45, 0.35) 11px 21px, transparent 21px 32px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr 0.8fr;
  gap: 34px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}

.footer-logo strong {
  color: var(--white);
  font-size: 21px;
  line-height: 1.2;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 248, 233, 0.72);
  font-size: 14px;
  line-height: 1.72;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
  transform: translateX(3px);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 213, 138, 0.26);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(255, 248, 233, 0.06);
  font-size: 12px;
  font-weight: 900;
  transition: transform 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease);
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-3px);
  color: var(--charcoal);
  background: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 248, 233, 0.12);
  color: rgba(255, 248, 233, 0.62);
  font-size: 13px;
}

.reveal {
  animation: fadeUp 760ms var(--ease) both;
}

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    animation: fadeUp linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 28%;
  }
}

@keyframes floatSpice {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translate3d(8px, -18px, 0) rotate(calc(var(--rotate, 0deg) + 12deg));
  }
}

@keyframes softGlow {
  0%,
  100% {
    opacity: 0.74;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes heroZoom {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.075);
  }
}

@keyframes shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 140%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 42px rgba(142, 90, 31, 0.28);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 24px 58px rgba(142, 90, 31, 0.42);
  }
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero-grid,
  .buffet-layout,
  .about-grid,
  .catering-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 92px;
  }

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

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

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    background: rgba(30, 23, 18, 0.9);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand span {
    font-size: 10px;
  }

  .nav > .btn {
    min-height: 44px;
    padding: 12px 15px;
    font-size: 13px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    gap: 4px 6px;
    padding-bottom: 12px;
  }

  .nav-links a {
    padding: 9px 10px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-content {
    padding: 68px 0 26px;
  }

  .hero-logo {
    width: 112px;
    height: 112px;
  }

  .hero-actions,
  .contact-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .hero-details,
  .quick-grid,
  .buffet-cards,
  .about-stats,
  .review-grid,
  .catering-list {
    grid-template-columns: 1fr;
  }

  .hero-detail,
  .quick-item {
    min-height: auto;
  }

  .hero-aside {
    padding: 12px;
    border-radius: 26px;
  }

  .aside-photo {
    height: 300px;
    border-radius: 20px;
  }

  .hero-badge {
    width: 116px;
    height: 116px;
    right: 20px;
    top: 20px;
    font-size: 12px;
  }

  .quick-strip {
    margin-top: 0;
  }

  .quick-grid {
    border-radius: 24px;
  }

  .buffet-media {
    min-height: 510px;
  }

  .buffet-main {
    inset: 0 0 84px 28px;
  }

  .buffet-secondary {
    width: 64%;
    height: 214px;
  }

  .buffet-badge {
    width: 128px;
    height: 128px;
    font-size: 12px;
  }

  .about-media {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 240px);
  }

  .about-media .image-frame:first-child {
    grid-row: auto;
  }

  .about-copy::before {
    display: none;
  }

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

  .catering-panel {
    grid-template-columns: 1fr;
  }

  .catering-panel .image-frame:first-child,
  .catering-stack .image-frame {
    min-height: 250px;
  }

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

  .gallery-wide,
  .gallery-tall,
  .gallery-small {
    grid-column: span 2;
    grid-row: span 2;
  }

  .contact-panel {
    padding: 27px;
  }

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

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

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

  .nav > .btn {
    width: 100%;
  }

  .nav-links a {
    padding: 10px;
    font-size: 12px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(20, 12, 7, 0.72), rgba(20, 12, 7, 0.94)),
      url("../images/hero-table.jpg") center / cover no-repeat;
  }

  .lead {
    font-size: 16px;
  }

  .aside-note {
    align-items: flex-start;
  }

  .mini-ring {
    display: none;
  }

  .buffet-media {
    min-height: 430px;
  }

  .buffet-main {
    border-width: 7px;
    border-radius: 26px;
  }

  .buffet-secondary {
    height: 180px;
    border-width: 6px;
  }

  .buffet-badge {
    width: 112px;
    height: 112px;
    right: 14px;
    top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
  }
}

/* ==========================================
   ENHANCED PAGES STYLING (ADDITIONAL STYLES)
   ========================================== */

/* Page Banner Templates */
.page-banner {
  position: relative;
  padding: 110px 0 54px;
  color: var(--white);
  background: var(--charcoal);
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(20, 12, 7, 0.8), rgba(20, 12, 7, 0.96)),
    url("../images/hero-table.jpg") center / cover no-repeat;
  opacity: 0.44;
  z-index: 0;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.05;
  margin-bottom: 12px;
  justify-self: center;
  font-weight: 900;
  color: var(--white);
}

.page-banner .lead {
  color: var(--gold-light);
  max-width: 680px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.6;
}

/* Menu tabs styling for menu.php & <?php echo $orderOnline ?? "order-online.php" ?> */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.menu-tab-btn {
  padding: 10px 22px;
  border: 1px solid rgba(201, 149, 63, 0.28);
  background: rgba(255, 253, 247, 0.78);
  border-radius: 999px;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 220ms var(--ease);
}

.menu-tab-btn.active, 
.menu-tab-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #25170c;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(201, 149, 63, 0.28);
}

/* Order page visual layout */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 36px;
  align-items: start;
}

@media (max-width: 980px) {
  .order-layout {
    grid-template-columns: 1fr;
  }
}

.order-categories-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 30px;
  scrollbar-width: none;
}

.order-categories-strip::-webkit-scrollbar {
  display: none;
}

.order-cat-btn {
  padding: 8px 18px;
  border: 1px solid rgba(201, 149, 63, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(255, 253, 247, 0.78);
  cursor: pointer;
  transition: all 200ms var(--ease);
}

.order-cat-btn.active, 
.order-cat-btn:hover {
  background: var(--gold);
  color: #25170c;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

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

@media (max-width: 640px) {
  .order-items-grid {
    grid-template-columns: 1fr;
  }
}

.order-item-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(201, 149, 63, 0.2);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.84);
  transition: all 240ms var(--ease);
}

.order-item-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 149, 63, 0.44);
  box-shadow: var(--shadow-soft);
}

.order-item-img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--brown);
  flex-shrink: 0;
}

.order-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.order-item-body h4 {
  margin: 0 0 5px;
  font-size: 16px;
  color: var(--charcoal);
  font-weight: 800;
}

.order-item-body p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--muted);
}

.order-item-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-item-price {
  font-weight: 900;
  color: var(--gold-dark);
  font-size: 15px;
}

.order-item-btn {
  padding: 6px 14px;
  border: none;
  border-radius: 999px;
  background: var(--gold-light);
  color: #25170c;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: all 200ms var(--ease);
}

.order-item-btn:hover {
  background: var(--gold);
  transform: scale(1.05);
}

/* Sidebar Cart styling */
.cart-card {
  border: 1px solid rgba(201, 149, 63, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.94);
  padding: 24px;
  position: sticky;
  top: 104px;
  box-shadow: var(--shadow-soft);
}

.cart-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(201, 149, 63, 0.16);
  padding-bottom: 12px;
  color: var(--charcoal);
}

.cart-title .badge {
  background: var(--spice);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 10px;
}

.cart-items {
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 16px;
  padding-right: 4px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(201, 149, 63, 0.14);
}

.cart-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
}

.cart-item-qty {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 900;
  color: var(--gold-dark);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--spice);
  cursor: pointer;
  font-size: 13px;
  padding: 0 4px;
  margin-left: 6px;
  transition: opacity 0.2s;
}

.cart-item-remove:hover {
  opacity: 0.7;
}

.cart-totals {
  border-top: 2px solid rgba(201, 149, 63, 0.16);
  padding-top: 14px;
  margin-bottom: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 13px;
  color: var(--muted);
}

.cart-total-row.grand-total {
  font-size: 16px;
  font-weight: 900;
  color: var(--charcoal);
  margin-top: 10px;
}

.cart-empty {
  text-align: center;
  padding: 38px 0;
  color: var(--muted);
  font-style: italic;
  font-size: 13px;
}

.checkout-btn {
  width: 100%;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 999px;
  font-weight: 900;
}

/* Modal Checkout overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 23, 18, 0.6);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(500px, calc(100% - 32px));
  background: var(--white);
  border: 1px solid rgba(201, 149, 63, 0.3);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  transform: scale(0.9);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
}

.modal-close:hover {
  color: var(--spice);
}

.modal-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.modal-body {
  margin: 18px 0;
}

.modal-body .summary-box {
  background: var(--cream);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(201, 149, 63, 0.14);
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 18px;
}

/* Active navigation highlighted link styling */
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 248, 233, 0.14);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

/* Gallery categorization buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 8px 18px;
  border: 1px solid rgba(201, 149, 63, 0.22);
  background: rgba(255, 253, 247, 0.82);
  border-radius: 999px;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 200ms var(--ease);
}

.gallery-filter-btn.active, 
.gallery-filter-btn:hover {
  background: var(--gold);
  color: #25170c;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

/* Timing schedules card styling */
.timing-highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1.5px solid rgba(217, 111, 45, 0.38);
  background: linear-gradient(135deg, rgba(255, 248, 233, 0.95), rgba(247, 236, 212, 0.85));
  border-radius: 22px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
}

.timing-highlight-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--spice), var(--gold-dark));
  color: var(--white);
  font-size: 20px;
}

.timing-highlight-body {
  flex: 1;
}

.timing-highlight-body h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--spice);
}

.timing-highlight-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--charcoal);
  font-weight: 800;
}

/* Additional responsive navigation + buffet rotation styles */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(242, 213, 138, 0.34);
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(255, 248, 233, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--white);
  background: rgba(255, 248, 233, 0.14);
}

.nav-order-btn.active {
  box-shadow: 0 0 0 2px rgba(242, 213, 138, 0.4), 0 18px 42px rgba(142, 90, 31, 0.34);
}

.buffet-rotation {
  margin-top: 26px;
}

.buffet-rotation-item {
  display: none;
  padding: 22px;
  border: 1px solid rgba(201, 149, 63, 0.24);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 16px 36px rgba(37, 22, 12, 0.08);
}

.buffet-rotation-item h3 {
  margin-bottom: 8px;
  color: var(--charcoal);
}

.buffet-rotation-item p {
  margin-bottom: 0;
}

.buffet-rotation-item.active {
  display: block;
  animation: fadeUp 380ms var(--ease) both;
}

@media (max-width: 760px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    background: rgba(255, 248, 233, 0.05);
    border: 1px solid rgba(255, 248, 233, 0.14);
    border-radius: 16px;
    padding: 10px;
  }

  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    padding: 12px;
  }

  .nav > .nav-order-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   FAB
═══════════════════════════════════════════ */
.cta {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 700;
  animation: fab 4s ease-in-out infinite;
}

.cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brown-soft);
  color: #fff;
  padding: 13px 22px;
  border-radius: 100px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(122, 30, 30, 0.45);
  transition:
    background 0.25s,
    box-shadow 0.25s;
}

.cta a:hover {
  background: var(--brown);
  box-shadow: 0 14px 44px rgba(122, 30, 30, 0.55);
}

@keyframes fab {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}
