:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #61706b;
  --paper: #fbfaf6;
  --shell: #f1ece2;
  --line: rgba(20, 33, 31, 0.14);
  --teal: #0d6f73;
  --coral: #e15f4f;
  --gold: #c58b35;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(10, 30, 28, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 28px));
  min-height: 64px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(16, 28, 26, 0.68);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.nav a {
  padding: 10px 0;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.primary-button {
  background: var(--coral);
  color: var(--white);
}

.header-cta {
  padding: 0 18px;
}

.primary-button {
  padding: 0 22px;
  box-shadow: 0 16px 42px rgba(225, 95, 79, 0.28);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--white);
  padding: 0 20px;
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px max(22px, calc((100vw - 1120px) / 2)) 76px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 22, 20, 0.88) 0%, rgba(5, 22, 20, 0.54) 48%, rgba(5, 22, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 22, 20, 0.52), rgba(5, 22, 20, 0.08));
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.7;
}

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

.hero-panel {
  position: absolute;
  right: max(22px, calc((100vw - 1120px) / 2));
  bottom: 76px;
  width: min(260px, calc(100vw - 44px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.hero-panel strong {
  display: block;
  margin: 6px 0;
  font-size: 2.3rem;
}

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

.proof-strip div {
  min-height: 128px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  color: var(--teal);
  font-size: 2rem;
}

.proof-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.section,
.feature-band {
  padding: 96px max(22px, calc((100vw - 1120px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

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

.dish-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(12, 28, 25, 0.08);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.dish-body {
  padding: 18px;
}

.dish-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.dish-top h3 {
  margin: 0;
  font-size: 1.08rem;
}

.dish-top strong {
  color: var(--coral);
}

.dish-body p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
  background: var(--shell);
}

.feature-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: #283a36;
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  min-height: 520px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery img:first-child {
  grid-row: span 2;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 420px);
  gap: 42px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(12, 28, 25, 0.08);
}

dl {
  margin: 0;
}

dl div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 7px 0 0;
  font-weight: 800;
}

.full {
  width: 100%;
  margin-top: 22px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(22px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(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;
  }
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 120px;
    padding-bottom: 34px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
  }

  .proof-strip,
  .menu-grid,
  .feature-band,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery {
    min-height: 0;
  }

  .gallery img {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 18px);
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-actions a {
    width: 100%;
  }

  .section,
  .feature-band {
    padding-top: 70px;
    padding-bottom: 70px;
  }

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

  .footer {
    flex-direction: column;
  }
}
