:root {
  --green-950: #082d25;
  --green-900: #0c3d31;
  --green-800: #006f4f;
  --green-700: #087a57;
  --cream: #f5f2c9;
  --paper: #faf7e8;
  --ink: #10231f;
  --muted: #5b665a;
  --gold: #d9a441;
  --tomato: #c8432b;
  --white: #fffdf2;
  --line: rgba(8, 45, 37, 0.18);
  --shadow: 0 24px 70px rgba(8, 45, 37, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(8, 45, 37, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 45, 37, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(8, 45, 37, 0.86), rgba(8, 45, 37, 0));
  animation: headerSettle 700ms ease both;
}

.brand-mark,
.main-nav,
.hero-actions,
.footer-links,
.social-links,
.menu-list,
.partner-options,
.menu-toggle,
.whatsapp-float {
  display: flex;
  align-items: center;
}

.brand-mark {
  width: clamp(138px, 14vw, 188px);
}

.brand-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.22));
  animation: logoReveal 900ms ease 120ms both;
  transition: transform 220ms ease, filter 220ms ease;
}

.brand-mark:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.main-nav {
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(245, 242, 201, 0.36);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(8, 45, 37, 0.36);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 86px;
  right: 18px;
  left: 18px;
  z-index: 19;
  display: block;
  padding: 22px;
  border: 1px solid rgba(245, 242, 201, 0.24);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(8, 45, 37, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu a {
  display: block;
  padding: 16px 10px;
  border-bottom: 1px solid rgba(245, 242, 201, 0.16);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: var(--cream);
  background: var(--green-950);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 54% 42%;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    radial-gradient(circle at 70% 20%, rgba(216, 164, 65, 0.2), transparent 26%),
    linear-gradient(90deg, rgba(8, 45, 37, 0.96), rgba(8, 45, 37, 0.58) 42%, rgba(8, 45, 37, 0.12)),
    linear-gradient(180deg, rgba(8, 45, 37, 0.3), rgba(8, 45, 37, 0.64));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: clamp(112px, 15vh, 156px) clamp(22px, 7vw, 92px) 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--green-800);
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8vw, 6.6rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 253, 242, 0.88);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 0 rgba(8, 45, 37, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 45, 37, 0.2);
}

.button.primary {
  color: var(--green-950);
  background: var(--cream);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(245, 242, 201, 0.48);
  background: rgba(8, 45, 37, 0.25);
}

.button.secondary:hover {
  border-color: rgba(245, 242, 201, 0.78);
  background: rgba(8, 45, 37, 0.38);
}

.button.dark-button {
  width: fit-content;
  color: var(--cream);
  background: var(--green-900);
}

.button.dark-button:hover {
  background: var(--green-800);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.js .reveal-stagger > *,
.js .is-visible .menu-list span,
.js .is-visible .partner-options span {
  opacity: 0;
  transform: translateY(10px);
}

.js .reveal-stagger.is-visible > *,
.js .is-visible .menu-list span,
.js .is-visible .partner-options span {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: calc(var(--stagger, 0) * 80ms);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-800);
}

.stats-band article {
  min-height: 168px;
  padding: clamp(22px, 4vw, 42px);
  color: var(--cream);
  border-right: 1px solid rgba(245, 242, 201, 0.46);
  transition: background-color 180ms ease;
}

.stats-band article:hover {
  background: rgba(245, 242, 201, 0.06);
}

.stats-band article:last-child {
  border-right: 0;
}

.stats-band strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.82;
}

.stats-band span {
  display: block;
  margin-top: 20px;
  font-weight: 700;
}

.section,
.audience,
.partners,
.closing,
.location {
  padding: clamp(72px, 10vw, 132px) clamp(22px, 7vw, 92px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
}

.intro h2 {
  max-width: 760px;
  color: var(--green-900);
}

.intro p {
  max-width: 690px;
}

.callout {
  padding: clamp(26px, 4vw, 46px);
  color: var(--cream);
  background: var(--green-900);
  box-shadow: var(--shadow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  line-height: 1.2;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.callout:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 80px rgba(8, 45, 37, 0.28);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.values article {
  padding: clamp(34px, 5vw, 76px);
  border-right: 1px solid rgba(8, 45, 37, 0.2);
}

.values article:last-child {
  border-right: 0;
}

.values h3 {
  color: var(--green-800);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  min-height: 720px;
  color: var(--cream);
  background: var(--green-950);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.experience-copy {
  align-self: center;
  padding: clamp(46px, 7vw, 90px);
}

.experience-copy h2,
.experience-copy p {
  color: var(--cream);
}

.experience-copy p {
  color: rgba(245, 242, 201, 0.8);
}

.menu-list {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.menu-list span,
.partner-options span {
  padding: 10px 14px;
  border: 1px solid rgba(245, 242, 201, 0.24);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.menu-list span:hover,
.partner-options span:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 242, 201, 0.62);
  background: rgba(245, 242, 201, 0.12);
}

.audience {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.audience h2 {
  color: var(--green-900);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.audience-grid article {
  min-height: 230px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(250, 247, 232, 0.92);
}

.audience-grid h3 {
  color: var(--green-800);
}

.partners {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.partners::after {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(18px, 4vw, 60px);
  width: clamp(170px, 22vw, 320px);
  aspect-ratio: 2250 / 1941;
  content: "";
  background: url("./assets/logo-bird.png") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
  transform: rotate(-5deg);
}

.partners-copy h2 {
  color: var(--green-900);
}

.partners > * {
  position: relative;
  z-index: 1;
}

.partner-options {
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.partner-options span {
  border-color: rgba(8, 45, 37, 0.22);
  color: var(--green-900);
  background: rgba(255, 253, 242, 0.58);
}

.partner-options span:hover {
  border-color: rgba(8, 45, 37, 0.36);
  color: var(--cream);
  background: var(--green-900);
}

.menu-page {
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 12%, rgba(217, 164, 65, 0.15), transparent 28%),
    linear-gradient(180deg, var(--green-950), var(--green-900) 44%, var(--paper) 44%);
}

.menu-page::before {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(245, 242, 201, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 201, 0.07) 1px, transparent 1px);
}

.menu-header {
  position: sticky;
  top: 0;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(245, 242, 201, 0.12);
  background: rgba(8, 45, 37, 0.9);
  backdrop-filter: blur(18px);
  animation: headerSettle 700ms ease both;
}

.menu-header-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(245, 242, 201, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-header-nav a:hover {
  color: var(--cream);
}

.menu-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: clamp(78px, 10vw, 122px) clamp(22px, 7vw, 92px) clamp(44px, 8vw, 84px);
  text-align: center;
  overflow: hidden;
}

.menu-hero::after {
  position: absolute;
  right: 50%;
  bottom: -52px;
  width: min(58vw, 420px);
  aspect-ratio: 2250 / 1941;
  content: "";
  background: url("./assets/logo-bird.png") center / contain no-repeat;
  opacity: 0.055;
  transform: translateX(50%) rotate(-7deg);
  pointer-events: none;
}

.menu-hero > * {
  position: relative;
  z-index: 1;
}

.menu-hero h1 {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: clamp(4.8rem, 11vw, 9rem);
}

.menu-hero p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(245, 242, 201, 0.78);
}

.menu-tabs {
  position: sticky;
  top: 82px;
  z-index: 16;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 14px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(245, 242, 201, 0.12);
  border-bottom: 1px solid rgba(245, 242, 201, 0.12);
  background: rgba(8, 45, 37, 0.88);
  backdrop-filter: blur(18px);
  overflow-x: auto;
}

.menu-tabs a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(245, 242, 201, 0.24);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.menu-tabs a:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 242, 201, 0.52);
  background: rgba(245, 242, 201, 0.1);
}

.menu-section {
  padding: clamp(68px, 9vw, 116px) clamp(22px, 7vw, 92px);
  color: var(--ink);
  background: var(--paper);
}

.menu-section:nth-of-type(even) {
  background: var(--cream);
}

.menu-section-heading {
  max-width: 1020px;
  margin: 0 auto clamp(30px, 5vw, 58px);
  text-align: center;
}

.menu-section-heading h2 {
  margin-bottom: 0;
  color: var(--green-900);
}

.menu-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  border: 1px solid rgba(8, 45, 37, 0.14);
  background: rgba(255, 253, 242, 0.66);
  box-shadow: 0 18px 44px rgba(8, 45, 37, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.menu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 45, 37, 0.28);
  box-shadow: 0 26px 60px rgba(8, 45, 37, 0.14);
}

.feature-dish {
  grid-column: span 2;
}

.dish-photo {
  position: relative;
  width: 100%;
  min-height: 260px;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(8, 122, 87, 0.16), rgba(217, 164, 65, 0.16)),
    var(--cream);
  overflow: hidden;
}

.dish-photo::before {
  position: absolute;
  inset: 22%;
  content: "";
  background: url("./assets/logo-bird.png") center / contain no-repeat;
  opacity: 0.16;
}

.dish-photo.has-image::before,
.dish-photo.has-image::after {
  display: none;
}

.dish-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.dish-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 253, 242, 0.38), transparent 42%),
    linear-gradient(rgba(8, 45, 37, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 45, 37, 0.07) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.dish-photo span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: rgba(8, 45, 37, 0.64);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dish-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
}

.dish-title {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dish-title h3 {
  min-width: 0;
  margin-bottom: 0;
  color: var(--green-900);
  overflow-wrap: anywhere;
}

.dish-title strong {
  flex: 0 0 auto;
  color: var(--green-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1;
}

.dish-info p {
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-size: 0.98rem;
}

.dish-info small,
.price-list small {
  color: rgba(16, 35, 31, 0.62);
  font-weight: 800;
  line-height: 1.5;
}

.price-list-grid {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-list {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(8, 45, 37, 0.14);
  background: rgba(255, 253, 242, 0.66);
  box-shadow: 0 18px 44px rgba(8, 45, 37, 0.08);
}

.price-list h3 {
  margin-bottom: 24px;
  color: var(--green-900);
}

.price-list p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(8, 45, 37, 0.12);
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.price-list p:last-child {
  border-bottom: 0;
}

.price-list span {
  min-width: 0;
}

.price-list strong {
  flex: 0 0 auto;
  color: var(--green-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
}

@keyframes headerSettle {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.06) translate3d(-0.8%, -0.4%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

.closing {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  background: var(--green-900);
}

.closing img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.closing h2,
.closing p {
  color: var(--cream);
}

.closing p {
  color: rgba(245, 242, 201, 0.82);
}

.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background: var(--paper);
}

.location h2 {
  color: var(--green-900);
}

.location-copy p {
  max-width: 590px;
}

.location-details {
  display: grid;
  gap: 10px;
  max-width: 590px;
  margin: 28px 0 30px;
}

.location-details p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(8, 45, 37, 0.14);
}

.location-details span {
  color: rgba(8, 45, 37, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-details strong {
  color: var(--green-900);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: right;
}

.map-panel {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(8, 45, 37, 0.18);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.82) contrast(1.04);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 7vw, 92px);
  color: var(--cream);
  background: var(--green-950);
}

.footer-logo {
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--cream);
}

.footer strong,
.footer span {
  display: block;
}

.footer span {
  margin-top: 5px;
  color: rgba(245, 242, 201, 0.74);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 800;
}

.social-section {
  padding: clamp(42px, 7vw, 76px) clamp(20px, 7vw, 92px);
  text-align: center;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 0, rgba(217, 164, 65, 0.18), transparent 44%),
    var(--green-900);
}

.social-section h2 {
  margin: 8px 0 24px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
}

.social-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 148px;
  min-height: 52px;
  padding: 11px 18px;
  border: 1px solid rgba(245, 242, 201, 0.34);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(245, 242, 201, 0.08);
  font-size: 0.86rem;
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-links path {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--green-950);
  background: var(--cream);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  gap: 11px;
  min-height: 58px;
  padding: 9px 18px 9px 9px;
  border: 1px solid rgba(245, 242, 201, 0.34);
  border-radius: 999px;
  color: var(--cream);
  background:
    linear-gradient(135deg, #128c5c, #0a6e4b),
    var(--green-800);
  box-shadow: 0 18px 44px rgba(8, 45, 37, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(8, 45, 37, 0.42);
}

.whatsapp-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #0f7f55;
  background: var(--cream);
}

.whatsapp-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.whatsapp-float strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-page {
  color: var(--ink);
  background: var(--paper);
}

.legal-content {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 54px);
}

.legal-content h1 {
  margin-bottom: 16px;
  color: var(--green-900);
  font-size: clamp(3rem, 9vw, 6.4rem);
}

.legal-content h2 {
  margin-top: 46px;
  margin-bottom: 14px;
  color: var(--green-800);
  font-size: clamp(1.7rem, 4vw, 2.55rem);
}

.legal-content p,
.legal-content li {
  color: rgba(8, 45, 37, 0.72);
  font-size: 1.03rem;
}

.legal-content a {
  color: var(--green-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 1.15rem;
}

.legal-updated {
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: center;
    justify-content: center;
  }

  .brand-mark {
    width: 152px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    right: 18px;
    display: flex;
  }

  .stats-band,
  .intro-grid,
  .experience,
  .audience,
  .partners,
  .closing,
  .location {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .section,
  .experience-copy,
  .audience,
  .partners,
  .closing,
  .location,
  .values article,
  .stats-band article,
  .audience-grid article {
    text-align: center;
  }

  .hero-content,
  .intro h2,
  .intro p,
  .hero-copy,
  .partners-copy,
  .location-copy,
  .location-copy p,
  .closing > div,
  .audience > div:first-child {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .menu-list,
  .partner-options {
    justify-content: center;
  }

  .button.dark-button {
    margin-right: auto;
    margin-left: auto;
  }

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

  .stats-band article:nth-child(2) {
    border-right: 0;
  }

  .stats-band article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(245, 242, 201, 0.46);
  }

  .experience-copy {
    order: -1;
  }

  .image-panel img {
    min-height: 420px;
  }

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

  .values article {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 48px;
    padding-bottom: 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 45, 37, 0.2);
  }

  .audience-grid article {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .values h3,
  .audience-grid h3 {
    margin-bottom: 18px;
  }

  .values p,
  .audience-grid p {
    max-width: 34rem;
    margin-right: auto;
    margin-left: auto;
  }

  .values article:last-child {
    border-bottom: 0;
  }

  .footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .partners::after {
    right: 50%;
    bottom: 28px;
    width: min(62vw, 230px);
    transform: translateX(50%) rotate(-5deg);
    opacity: 0.045;
  }

  .menu-header {
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 14px;
  }

  .menu-header .brand-mark {
    width: 162px;
  }

  .menu-header-nav {
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .menu-tabs {
    top: 126px;
    justify-content: flex-start;
  }

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

  .feature-dish {
    grid-column: span 1;
  }

  .menu-card,
  .feature-dish {
    min-height: 0;
  }

  .dish-photo {
    width: 100%;
    min-height: 250px;
    aspect-ratio: 16 / 10;
  }

  .dish-photo span {
    right: 18px;
    text-align: center;
  }

  .dish-info {
    align-items: center;
    padding: 26px 24px 30px;
    text-align: center;
  }

  .dish-title {
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .dish-info p {
    margin-bottom: 0;
  }

  .location-details {
    margin-right: auto;
    margin-left: auto;
  }

  .location-details p {
    align-items: center;
    flex-direction: column;
    gap: 6px;
  }

  .location-details strong {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 92vh;
  }

  .hero-content {
    display: flex;
    min-height: 92vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 132px 20px 66px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.65rem);
  }

  .hero-copy {
    max-width: 22rem;
  }

  .hero-actions {
    width: min(100%, 350px);
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .stats-band article {
    min-height: 136px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 242, 201, 0.46);
  }

  .stats-band article:last-child {
    border-bottom: 0;
  }

  .button {
    width: 100%;
  }

  .section,
  .audience,
  .partners,
  .closing,
  .location {
    padding-right: 20px;
    padding-left: 20px;
  }

  .callout {
    margin-right: auto;
    margin-left: auto;
  }

  .image-panel img {
    min-height: 360px;
  }

  .values article,
  .audience-grid article {
    min-height: 280px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 340px;
  }

  .footer {
    padding-bottom: 96px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 82px;
    min-height: 52px;
    padding: 8px;
  }

  .whatsapp-icon {
    width: 36px;
    height: 36px;
  }

  .whatsapp-icon svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-float strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .menu-page .whatsapp-float strong {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .menu-page .whatsapp-float {
    right: 12px;
    bottom: 16px;
    min-height: 48px;
    gap: 8px;
    padding: 7px 12px 7px 7px;
  }

  .menu-page .whatsapp-icon {
    width: 34px;
    height: 34px;
  }

  .menu-header {
    position: relative;
  }

  .menu-header-nav {
    gap: 12px;
    justify-content: flex-start;
    padding-right: 4px;
    padding-left: 4px;
    font-size: 0.72rem;
  }

  .menu-hero {
    min-height: 360px;
    padding: 72px 20px 48px;
  }

  .menu-hero h1 {
    font-size: clamp(4rem, 23vw, 6rem);
  }

  .menu-tabs {
    top: 0;
    padding: 12px 20px;
  }

  .menu-section {
    padding: 62px 20px;
    text-align: center;
  }

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

  .dish-photo {
    min-height: 220px;
    aspect-ratio: 16 / 11;
  }

  .dish-info {
    padding: 24px 22px 28px;
  }

  .price-list {
    padding: 26px 20px;
    text-align: left;
  }

  .price-list h3 {
    text-align: center;
  }

  .price-list p {
    align-items: flex-start;
  }
}
