:root {
  --ink: #1f1a17;
  --muted: #6d625b;
  --paper: #fffaf3;
  --panel: #ffffff;
  --line: #e7d8c5;
  --olive: #56633f;
  --olive-dark: #344024;
  --tomato: #b7432f;
  --gold: #c99a4b;
  --shadow: 0 22px 60px rgba(46, 34, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: var(--olive-dark);
  border-radius: 50%;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.language-control span,
.section-kicker,
.eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf9;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--olive-dark);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--ink);
  background: #f4eadb;
}

.language-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
}

.language-control select {
  min-width: 118px;
  padding: 8px 10px;
}

.hero {
  min-height: min(760px, calc(100vh - 72px));
  display: flex;
  align-items: end;
  padding: clamp(90px, 14vw, 150px) clamp(18px, 5vw, 72px) clamp(70px, 10vw, 110px);
  color: white;
  background:
    linear-gradient(90deg, rgba(20, 18, 15, 0.78), rgba(20, 18, 15, 0.36), rgba(20, 18, 15, 0.08)),
    url("https://images.unsplash.com/photo-1577219491135-ce391730fb2c?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.hero-content {
  width: min(760px, 100%);
}

.hero h1,
.section-grid h2,
.experience h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(3rem, 9vw, 7.5rem);
}

.hero-subtitle {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--tomato);
}

.button.primary:hover {
  background: #963523;
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(56px, 9vw, 96px) clamp(18px, 5vw, 72px);
}

.section-grid h2,
.experience h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.copy-block p,
.cuisines-section > div > p,
.experience-copy p,
.enquiry p {
  color: var(--muted);
  font-size: 1.03rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stats-band div {
  padding: clamp(24px, 5vw, 44px);
  background: #fbf1e2;
  text-align: center;
}

.stats-band strong {
  display: block;
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
  font-weight: 700;
}

.cuisines-section {
  align-items: start;
}

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

.cuisine-grid article {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(46, 34, 24, 0.08);
}

.cuisine-grid img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.cuisine-grid h3,
.cuisine-grid p {
  margin-inline: 18px;
}

.cuisine-grid h3 {
  margin-top: 16px;
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.cuisine-grid p {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--muted);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 560px;
  background: var(--olive-dark);
  color: white;
}

.experience-image {
  min-height: 360px;
  background: url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1200&q=85") center / cover;
}

.experience-copy {
  align-self: center;
  padding: clamp(44px, 8vw, 84px);
}

.experience .section-kicker,
.experience-copy p {
  color: #e4dacb;
}

.enquiry {
  align-items: start;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  color: var(--olive-dark);
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  min-height: 46px;
  padding: 10px 12px;
}

.form-row textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--olive-dark);
  font-weight: 700;
}

.form-status.error {
  color: var(--tomato);
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 72px);
  color: #f7efe4;
  background: #1f1a17;
  text-align: center;
}

.site-footer p {
  margin: 0 auto;
  max-width: 760px;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

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

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    display: none;
    justify-content: flex-start;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .language-control {
    grid-column: 1 / -1;
    order: 2;
    justify-content: space-between;
    width: 100%;
  }

  .section-grid,
  .experience {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
    background-position: 58% center;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .language-control {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .language-control select {
    min-width: 132px;
  }

  .hero {
    min-height: 610px;
    padding: 120px 16px 56px;
    background-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 18vw, 4.5rem);
  }

  .button {
    width: 100%;
  }

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

  .section-grid {
    padding-inline: 16px;
  }

  .enquiry-form {
    padding: 18px;
  }
}
