:root {
  --ink: #17211f;
  --muted: #61706b;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --sea: #126269;
  --sea-dark: #0b3d42;
  --bronze: #b18643;
  --coral: #c45c43;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 24px 60px rgba(9, 29, 31, 0.17);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 20, 22, 0.76), rgba(5, 20, 22, 0));
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 12px 32px rgba(12, 28, 26, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  min-width: 86px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.brand span {
  font-size: 2rem;
  font-weight: 700;
}

.brand small {
  margin-top: 4px;
  font-family: inherit;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a,
.ghost-link,
.lang-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.ghost-link {
  border: 1px solid currentColor;
  border-radius: var(--radius);
  padding: 0 14px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(20px, 4vw, 46px);
  padding: clamp(130px, 18vh, 210px) clamp(18px, 5vw, 72px) 44px;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 23, 0.9) 0%, rgba(6, 21, 23, 0.62) 44%, rgba(6, 21, 23, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 21, 23, 0.82) 0%, rgba(6, 21, 23, 0) 46%);
}

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

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

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 810px;
}

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

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

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 12vw, 9.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2.2vw, 1.36rem);
}

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

.primary-action,
.secondary-action,
.text-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 900;
}

.primary-action {
  background: var(--bronze);
  color: #111;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.text-action {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(8, 31, 33, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel dl {
  margin: 0;
}

.hero-panel div + div {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--sea-dark);
  color: #fff;
}

.quick-strip div {
  min-height: 120px;
  padding: 28px clamp(18px, 4vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bronze);
  font-size: 1.7rem;
  line-height: 1;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.split,
.cuisine,
.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy p,
.cuisine-copy p,
.visit-card p,
.hours-note p {
  max-width: 680px;
  color: var(--muted);
}

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

.menu-tile {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(22, 42, 39, 0.06);
}

.menu-tile.strong {
  grid-row: span 2;
  min-height: 296px;
  background: var(--sea);
  color: #fff;
}

.menu-tile span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.menu-tile small {
  color: currentColor;
  opacity: 0.68;
  font-weight: 800;
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 8px;
  padding: 8px;
  background: #0f2525;
}

.image-band img {
  width: 100%;
  height: clamp(240px, 30vw, 430px);
  object-fit: cover;
  border-radius: var(--radius);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--surface);
}

.story-columns {
  columns: 2 280px;
  column-gap: clamp(24px, 4vw, 52px);
  color: var(--muted);
}

.story-columns p {
  margin-top: 0;
}

.cuisine {
  background: #edf4f1;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: inset 0 0 0 4px #edf4f1;
  border: 1px solid var(--coral);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dish-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(21, 43, 40, 0.16);
}

.dish-grid img:nth-child(2) {
  margin-top: 42px;
}

.visit {
  background: var(--sea-dark);
  color: #fff;
}

.visit-card p,
.hours-note p {
  color: rgba(255, 255, 255, 0.72);
}

.visit .secondary-action {
  border-color: rgba(255, 255, 255, 0.3);
}

.hours-note {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  padding: 46px clamp(18px, 5vw, 72px) 90px;
  color: #fff;
  background: #111817;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  margin-bottom: 8px !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1.1;
}

.footer-links {
  display: grid;
  gap: 9px;
  justify-items: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-cta {
  display: none;
}

@media (hover: hover) {
  a:hover,
  button:hover {
    filter: brightness(1.05);
  }

  .menu-tile:hover {
    transform: translateY(-2px);
    transition: transform 160ms ease;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    color: var(--ink);
    background: rgba(251, 250, 246, 0.96);
    box-shadow: 0 12px 32px rgba(12, 28, 26, 0.12);
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 122px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(6, 21, 23, 0.32) 0%, rgba(6, 21, 23, 0.78) 48%, rgba(6, 21, 23, 0.94) 100%);
  }

  .hero-panel {
    max-width: 520px;
  }

  .quick-strip,
  .split,
  .story,
  .cuisine,
  .visit,
  .footer {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .image-band img {
    height: 260px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand span {
    font-size: 1.55rem;
  }

  .ghost-link {
    display: none;
  }

  .hero {
    padding: 104px 16px 28px;
  }

  h1 {
    font-size: clamp(4.1rem, 26vw, 6.4rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

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

  .primary-action,
  .secondary-action,
  .text-action {
    width: 100%;
  }

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

  .menu-tile.strong {
    min-height: 174px;
  }

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

  .dish-grid img {
    aspect-ratio: 16 / 11;
  }

  .dish-grid img:nth-child(2) {
    margin-top: 0;
  }

  .section {
    padding: 62px 16px;
  }

  .footer {
    padding: 38px 16px 96px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    padding: 6px;
    background: rgba(17, 24, 23, 0.94);
    box-shadow: 0 16px 36px rgba(7, 18, 18, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
  }

  .mobile-cta a:nth-child(2) {
    background: var(--bronze);
    color: #111;
  }
}
