:root {
  --green-950: #081c14;
  --green-900: #0d2a1f;
  --green-800: #123728;
  --cream: #fff8e8;
  --cream-soft: #f5ead0;
  --gold: #d9ad54;
  --gold-deep: #a77125;
  --ink: #1f170d;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--green-950);
}

body {
  min-height: auto;
  margin: 0;
  color: var(--cream);
  font-family: "Trebuchet MS", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 8%, rgba(217, 173, 84, 0.12), transparent 26rem),
    linear-gradient(140deg, var(--green-950), var(--green-900) 54%, #06140f);
}

html:has(.home-shell),
body:has(.home-shell) {
  height: auto;
  min-height: 0;
}

body:has(.home-shell) {
  display: block;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.home-shell,
.menu-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.home-shell {
  min-height: 0;
  display: grid;
  align-items: center;
  padding: 34px 0 10px;
}

.hero-section {
  display: grid;
  gap: 24px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.brand-mark,
.brand-link {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 7vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
}

.hero-text {
  display: grid;
  gap: 10px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

h1 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 10vw, 4.75rem);
}

.support-line {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--cream-soft);
  font-size: clamp(1rem, 4.3vw, 1.2rem);
  line-height: 1.55;
}

.hero-image {
  overflow: hidden;
  border: 1px solid rgba(217, 173, 84, 0.35);
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: var(--green-800);
}

.mobile-hero-image {
  aspect-ratio: 4 / 3;
}

.desktop-hero-image {
  display: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 15px;
  font-size: 0.9rem;
  font-weight: 800;
}

.mobile-teaser-image {
  width: min(56%, 220px);
  aspect-ratio: 16 / 9;
  margin: 2px auto 0;
  overflow: hidden;
  border: 1px solid rgba(217, 173, 84, 0.3);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  background: var(--green-800);
}

.primary-button {
  color: var(--ink);
  background: var(--gold);
}

.ghost-button {
  border: 1px solid rgba(255, 248, 232, 0.32);
  color: var(--cream);
  background: rgba(255, 248, 232, 0.08);
}

.menu-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 8px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 42px;
}

.top-nav .brand-link {
  font-size: clamp(1.35rem, 5vw, 1.85rem);
}

.top-nav div {
  display: flex;
  gap: 16px;
  color: var(--cream-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.top-nav a[aria-current="page"] {
  color: var(--gold);
}

.menu-intro {
  max-width: 650px;
}

.menu-intro h1 {
  max-width: none;
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 9vw, 4.4rem);
}

.menu-intro p:last-child {
  margin-bottom: 0;
  color: var(--cream-soft);
  font-size: clamp(1rem, 3.8vw, 1.18rem);
  line-height: 1.5;
}

.menu-shell {
  padding: 28px 0 36px;
}

.menu-section {
  padding: 22px 0;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.65rem, 6vw, 2.45rem);
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.dish-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(217, 173, 84, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 28, 20, 0.58);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.dish-card img {
  flex: 0 0 auto;
  height: auto;
  border-bottom: 1px solid rgba(217, 173, 84, 0.18);
}

.landscape-card img {
  aspect-ratio: 16 / 10;
}

.portrait-card img {
  aspect-ratio: 4 / 5;
}

.dish-card h3 {
  flex: 0 0 auto;
  margin: 0;
  padding: 9px 12px 10px;
  color: var(--cream);
  font-size: clamp(0.86rem, 3.3vw, 0.96rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 248, 232, 0.16);
  padding: 16px 0 18px;
  color: rgba(255, 248, 232, 0.76);
  font-size: 0.88rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cream);
  font-weight: 700;
}

.footer-credit,
.footer-phone {
  display: block;
}

.footer-separator {
  display: none;
}

.footer-phone {
  white-space: nowrap;
}

body:has(.home-shell) .site-footer {
  margin-bottom: 0;
  padding-bottom: 16px;
}

@media (min-width: 560px) {
  .landscape-grid,
  .side-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 840px) {
  html:has(.home-shell) {
    min-height: 100%;
  }

  body:has(.home-shell) {
    min-height: 100vh;
    display: block;
  }

  .home-shell {
    min-height: calc(100vh - 72px);
    padding: 40px 0;
  }

  .hero-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 56px;
    align-items: center;
  }

  .hero-copy {
    gap: 24px;
  }

  .mobile-hero-image {
    display: none;
  }

  .desktop-hero-image {
    display: block;
    aspect-ratio: 3 / 2;
  }

  .mobile-teaser-image {
    display: none;
  }

  .desktop-hero-image img {
    object-position: center center;
  }

  .brand-mark {
    font-size: 2.15rem;
  }

  h1 {
    font-size: clamp(3.75rem, 6vw, 5.4rem);
  }

  .support-line {
    font-size: 1.17rem;
  }

  .button {
    min-height: 50px;
    padding: 0 22px;
  }

  .button-row {
    justify-content: flex-start;
  }

  body:has(.home-shell) .site-footer {
    padding-bottom: 18px;
  }

  .footer-credit,
  .footer-separator,
  .footer-phone {
    display: inline;
  }

  .menu-header {
    padding-top: 26px;
  }

  .menu-shell {
    padding-top: 38px;
  }

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

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

  .menu-section {
    padding: 28px 0;
  }
}
