:root {
  color-scheme: light;
  --ink: #102421;
  --muted: #5e6862;
  --paper: #f7f3ea;
  --shell: #fffaf0;
  --sea: #12312f;
  --teal: #2b6c67;
  --coral: #c65b3b;
  --gold: #d9b45f;
  --line: rgba(16, 36, 33, 0.16);
  --shadow: 0 22px 60px rgba(16, 36, 33, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sea);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

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

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--sea);
}

.lang-toggle {
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--shell);
  color: var(--sea);
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(16px, 5vw, 72px) 52px;
  overflow: clip;
  background: var(--sea);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 27, 25, 0.86), rgba(10, 27, 25, 0.46) 48%, rgba(10, 27, 25, 0.08)),
    linear-gradient(0deg, rgba(10, 27, 25, 0.92), rgba(10, 27, 25, 0.08) 58%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  color: white;
}

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

.hero .eyebrow {
  color: #f6cf7a;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 700;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.05rem;
}

.lede {
  width: min(650px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
}

.button.primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 14px 28px rgba(198, 91, 59, 0.26);
}

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

.contact-panel .button.secondary {
  border-color: var(--line);
  color: var(--sea);
}

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

.quick-strip div {
  min-width: 0;
  padding: 22px clamp(16px, 4vw, 44px);
  background: var(--shell);
}

.quick-strip span,
.contact-list dt {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-strip strong,
.contact-list dd {
  display: block;
  margin-top: 5px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.section {
  padding: clamp(64px, 9vw, 124px) clamp(16px, 5vw, 72px);
}

.intro,
.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-grid,
.proof-grid {
  display: grid;
  gap: 14px;
}

.info-card,
.proof-stat,
.proof-note {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
}

.info-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 900;
}

.info-card p,
.proof-note p {
  margin: 12px 0 0;
  color: var(--muted);
}

.menu-section {
  background: var(--sea);
  color: white;
}

.menu-section .eyebrow {
  color: #f6cf7a;
}

.menu-section .section-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.dish-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
  margin-top: 44px;
}

.photo-panel,
.gallery-band figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #1c3936;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 30%;
}

figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(16, 36, 33, 0.78);
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
}

.menu-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.menu-list div {
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.06);
}

.menu-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px;
  background: var(--sea);
}

.gallery-band img {
  width: 100%;
  height: clamp(230px, 32vw, 390px);
  object-fit: cover;
  object-position: center 28%;
}

.proof-stat strong {
  display: block;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.proof-stat span {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(18px, 4vw, 38px);
  padding: clamp(64px, 9vw, 116px) clamp(16px, 5vw, 72px);
  background: #e5eee9;
}

.contact-panel,
.hours-panel {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 0;
}

.contact-list dd {
  margin-left: 0;
  color: var(--sea);
  font-weight: 800;
}

.hours-panel p {
  color: var(--muted);
}

.hours-panel a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--coral);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(16px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 6px;
  background: var(--coral);
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.mobile-cta a + a {
  background: var(--sea);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .quick-strip,
  .intro,
  .proof,
  .dish-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: 70px;
  }

  .site-header {
    min-height: 64px;
  }

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

  .hero {
    min-height: 100svh;
    padding-top: 108px;
    padding-bottom: 92px;
  }

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

  .gallery-band,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .gallery-band {
    padding: 8px;
  }

  .gallery-band img {
    height: 270px;
  }

  .site-footer {
    padding-bottom: 24px;
  }

  .mobile-cta {
    display: grid;
  }
}

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