:root {
  --navy: #082f49;
  --navy-deep: #031f31;
  --ink: #151312;
  --cream: #fff1c7;
  --paper: #fff9ed;
  --orange: #f07524;
  --orange-dark: #b84711;
  --gold: #e8bd32;
  --white: #ffffff;
  --header-height: 84px;
  --shell: min(1240px, calc(100vw - 48px));
  --display: "Barlow Condensed", Arial, sans-serif;
  --body: "Barlow", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.18em; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection { background: var(--gold); color: var(--navy-deep); }

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6.8vw, 7rem);
  max-width: 12ch;
}

section { position: relative; min-width: 0; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.section-shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.legal-header {
  color: var(--navy-deep);
  background: rgba(255, 249, 237, 0.97);
  border-color: rgba(8, 47, 73, 0.18);
  box-shadow: 0 8px 30px rgba(3, 31, 49, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 56px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.24);
}

.brand-mark img { width: 100%; height: 100%; object-fit: contain; }

.brand-name {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  min-width: 0;
}

.main-nav > a {
  position: relative;
  color: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 0;
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-cta { background: var(--orange); color: var(--navy-deep) !important; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }

.nav-toggle { display: none; }

.button-primary { background: var(--orange); color: var(--navy-deep); }
.button-primary:hover { background: var(--gold); }

.button-secondary { border-color: rgba(255,255,255,0.76); color: var(--white); background: transparent; }
.button-secondary:hover { background: var(--white); color: var(--navy-deep); }

.button-dark { background: var(--navy-deep); color: var(--white); }
.button-dark:hover { background: var(--ink); }

.button-outline-dark { border-color: var(--navy-deep); color: var(--navy-deep); background: transparent; }
.button-outline-dark:hover { background: var(--navy-deep); color: var(--white); }

.hero {
  min-height: min(940px, 94svh);
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  background: var(--navy-deep);
  color: var(--white);
  overflow: clip;
}

.hero > * { min-width: 0; }

.hero-copy {
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 64px) clamp(28px, 4vw, 64px) clamp(58px, 8vh, 100px);
  background: var(--navy-deep);
}

.hero-copy-inner { width: min(100%, 590px); }

.hero-place {
  margin-bottom: 1.15rem;
  font-size: clamp(0.92rem, 1.3vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin-bottom: 1.3rem;
  max-width: 100%;
  font-size: clamp(4rem, 5.2vw, 6.6rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 36ch;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

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

.media-frame { position: relative; overflow: clip; }
.media-frame picture, .media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; }
.media-frame img { object-fit: cover; will-change: transform; }

.hero-media { min-height: 100%; background: #5c321d; }
.hero-media img { object-position: 50% 48%; transform: scale(1.035); }

.restaurant-section {
  padding: clamp(72px, 10vw, 150px) 0;
  background: var(--cream);
  color: var(--navy-deep);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.section-grid > * { min-width: 0; }

.restaurant-section h2 { max-width: 12.5ch; }
.keep-word { white-space: nowrap; }

.section-copy {
  max-width: 64ch;
  padding-top: 0.55rem;
}

.section-copy > p {
  margin-bottom: clamp(38px, 5vw, 70px);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.45;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--navy-deep);
}

.facts-grid > div { min-width: 0; padding: 20px 18px 0 0; }
.facts-grid > div + div { border-left: 1px solid rgba(8,47,73,0.3); padding-left: 18px; }
.facts-grid dt { margin-bottom: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.facts-grid dd { margin: 0; font-size: 1.05rem; line-height: 1.35; overflow-wrap: anywhere; }
.facts-grid a { font-weight: 700; }

.service-visual {
  min-height: min(830px, 82svh);
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--ink);
  color: var(--white);
}

.service-image { position: absolute; inset: 0; }
.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,19,28,0.8) 0%, rgba(3,19,28,0.36) 42%, rgba(3,19,28,0.04) 72%);
  pointer-events: none;
}
.service-image img { object-position: 50% 56%; transform: scale(1.05); }

.service-panel {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100vw - 48px));
  margin: 0 0 clamp(50px, 8vw, 110px) max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
}

.service-panel h2 {
  max-width: 9.6ch;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7.2vw, 7.6rem);
}

.text-link {
  display: inline-block;
  font-weight: 700;
  color: var(--white);
  text-decoration-thickness: 2px;
}

.cuisine-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--orange);
  color: var(--navy-deep);
}

.cuisine-section > * { min-width: 0; }
.cuisine-media { min-height: 680px; overflow: clip; }
.cuisine-media picture, .cuisine-media img { width: 100%; height: 100%; }
.cuisine-media img { object-fit: cover; object-position: 50% 61%; }

.cuisine-copy {
  display: flex;
  align-items: center;
  padding: clamp(64px, 8vw, 120px);
}

.copy-narrow { max-width: 58ch; }
.cuisine-copy h2 { margin-bottom: 32px; max-width: 8.5ch; }
.cuisine-copy p { font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.cuisine-copy p:last-of-type { margin-bottom: 32px; }

.menu-band {
  min-height: clamp(470px, 58vw, 650px);
  display: grid;
  place-items: center;
  overflow: clip;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
}

.menu-band-image { position: absolute; inset: 0; }
.menu-band-image::after { content: ""; position: absolute; inset: 0; background: rgba(3,31,49,0.62); }
.menu-band-image img { object-position: 50% 48%; transform: scale(1.05); }

.menu-band-content { position: relative; z-index: 2; width: min(740px, calc(100vw - 48px)); }
.menu-band h2 { max-width: 10ch; margin: 0 auto 30px; font-size: clamp(3.3rem, 7vw, 7rem); }

.gallery-section { background: var(--navy-deep); color: var(--white); }

.gallery-heading {
  display: grid;
  place-items: center;
  padding-block: clamp(70px, 9vw, 130px) clamp(38px, 5vw, 70px);
  text-align: center;
}
.gallery-heading > * { min-width: 0; }
.gallery-heading h2 { max-width: 12ch; margin-inline: auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas:
    "one one one one one one two two two three three three"
    "four four four four five five five five six six six six";
  grid-auto-rows: clamp(280px, 37vw, 560px);
  gap: 0;
}

.gallery-item { min-width: 0; margin: 0; overflow: clip; background: var(--ink); }
.gallery-item picture, .gallery-item img { width: 100%; height: 100%; }
.gallery-item img { object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-one { grid-area: one; }
.gallery-two { grid-area: two; }
.gallery-three { grid-area: three; }
.gallery-four { grid-area: four; }
.gallery-five { grid-area: five; }
.gallery-six { grid-area: six; }
.gallery-one img { object-position: 50% 48%; }
.gallery-two img { object-position: 50% 58%; }
.gallery-three img { object-position: 50% 61%; }
.gallery-four img { object-position: 50% 52%; }
.gallery-five img { object-position: 50% 64%; }
.gallery-six img { object-position: 50% 52%; }

.information-section {
  padding: clamp(72px, 9vw, 130px) 0;
  background: var(--orange);
  color: var(--navy-deep);
}

.information-shell {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.65fr) minmax(0, 0.8fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.information-shell > * { min-width: 0; }
.information-title h2 { max-width: 8ch; margin-bottom: 22px; }
.information-title p { margin: 0; font-size: 1.25rem; font-weight: 600; }
.information-details { padding-top: 0.6rem; font-size: 1.2rem; }
.information-details address { margin-bottom: 24px; font-style: normal; }
.information-details a { font-weight: 700; }
.information-actions { display: grid; gap: 12px; }
.information-actions .button { width: 100%; }

.site-footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
  background: var(--navy-deep);
  color: rgba(255,255,255,0.86);
  font-size: 0.94rem;
}
.site-footer a { color: var(--white); }

.mobile-action-bar { display: none; }

/* Legal page */
.legal-page { background: var(--paper); }
.legal-back { display: inline-flex; }
.legal-hero { padding: calc(var(--header-height) + 90px) 0 90px; background: var(--navy-deep); color: var(--white); }
.legal-shell { width: min(1040px, calc(100vw - 48px)); margin-inline: auto; }
.legal-hero h1 { max-width: 8ch; margin-bottom: 22px; font-size: clamp(4.2rem, 9vw, 8rem); text-transform: uppercase; }
.legal-hero p { margin: 0; max-width: 52ch; color: rgba(255,255,255,0.74); font-size: 1.2rem; }
.legal-content { padding: clamp(62px, 8vw, 110px) 0; background: var(--cream); color: var(--navy-deep); }
.legal-content.legal-host { background: var(--orange); }
.legal-grid { display: grid; grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr); gap: clamp(40px, 8vw, 110px); align-items: start; }
.legal-grid > * { min-width: 0; }
.legal-grid h2 { font-size: clamp(3rem, 6vw, 5.5rem); }
.legal-list { margin: 0; border-top: 2px solid currentColor; }
.legal-list > div { display: grid; grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.35fr); gap: 28px; padding: 16px 0; border-bottom: 1px solid rgba(8,47,73,0.28); }
.legal-list dt { font-weight: 700; }
.legal-list dd { margin: 0; overflow-wrap: anywhere; }
.legal-address { font-size: 1.2rem; }
.legal-address p { margin-bottom: 24px; }

@media (max-width: 1100px) {
  :root { --header-height: 76px; }
  .brand-name { display: none; }
  .main-nav { gap: 18px; }
  .main-nav > a { font-size: 0.9rem; }
  .hero { grid-template-columns: minmax(0, 45fr) minmax(0, 55fr); }
  .hero-copy { padding-inline: 38px; }
  .cuisine-copy { padding: 64px 44px; }
  .information-shell { grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr); }
  .information-actions { grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 36px); --header-height: 72px; }
  body { padding-bottom: 60px; }
  .site-header { color: var(--white); }
  .site-header.is-scrolled { color: var(--navy-deep); }
  .brand-mark { width: 48px; }
  .nav-toggle {
    position: relative;
    z-index: 102;
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 24px 40px;
    color: var(--white);
    background: var(--navy-deep);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 240ms ease, visibility 240ms;
  }
  .main-nav.is-open { transform: translateX(0); visibility: visible; }
  .main-nav > a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    color: var(--white) !important;
    font-family: var(--display);
    font-size: clamp(2.2rem, 9vw, 4rem);
    font-weight: 800;
    line-height: 0.96;
    text-transform: uppercase;
    white-space: normal;
  }
  .main-nav > a::after { display: none; }
  .main-nav .nav-cta { margin-top: 24px; padding: 17px 20px; border: 0; color: var(--navy-deep) !important; font-family: var(--body); font-size: 1rem; line-height: 1; text-transform: none; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(390px, 58svh) auto;
  }
  .hero-media { grid-row: 1; min-height: 390px; }
  .hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,31,49,0.12), rgba(3,31,49,0.46)); }
  .hero-media img { object-position: 50% 46%; transform: none !important; }
  .hero-copy { grid-row: 2; padding: 48px 18px 58px; align-items: center; }
  .hero-copy-inner { width: 100%; }
  .hero h1 { max-width: 100%; font-size: clamp(4rem, 16vw, 5.8rem); }
  .hero-intro { font-size: 1.08rem; }

  .section-grid { grid-template-columns: 1fr; gap: 34px; }
  .restaurant-section h2 { max-width: 11.5ch; font-size: clamp(3rem, 13.8vw, 4.7rem); }
  .section-copy { padding-top: 0; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid > div { padding: 18px 0; border-bottom: 1px solid rgba(8,47,73,0.3); }
  .facts-grid > div + div { border-left: 0; padding-left: 0; }

  .service-visual { min-height: 670px; }
  .service-image img { transform: none !important; object-position: 54% 56%; }
  .service-image::after { background: linear-gradient(0deg, rgba(3,19,28,0.84) 0%, rgba(3,19,28,0.18) 58%, rgba(3,19,28,0.08) 100%); }
  .service-panel { width: var(--shell); margin: 0 auto 50px; }

  .cuisine-section { min-height: auto; grid-template-columns: 1fr; }
  .cuisine-media { min-height: 520px; }
  .cuisine-copy { padding: 62px 18px 70px; }
  .cuisine-copy h2 { max-width: 9ch; }

  .menu-band { min-height: 560px; }
  .menu-band-image img { transform: none !important; object-position: 53% 50%; }

  .gallery-heading { text-align: center; }
  .gallery-heading h2 { max-width: 12ch; }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "one one"
      "two three"
      "four four"
      "five six";
    grid-auto-rows: 52vw;
  }
  .gallery-one, .gallery-four { min-height: 72vw; }

  .information-shell { grid-template-columns: 1fr; gap: 36px; }
  .information-actions { grid-column: auto; grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 24px; }

  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 95;
    height: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--paper);
    border-top: 1px solid rgba(8,47,73,0.22);
    box-shadow: 0 -8px 24px rgba(3,31,49,0.08);
  }
  .mobile-action-bar a { display: grid; place-items: center; font-weight: 700; text-decoration: none; }
  .mobile-action-bar a + a { background: var(--orange); color: var(--navy-deep); }

  .legal-page { padding-bottom: 0; }
  .legal-header .brand-name { display: inline; }
  .legal-grid { grid-template-columns: 1fr; gap: 34px; }
  .legal-list > div { grid-template-columns: 1fr; gap: 4px; }
  .legal-back { min-height: 42px; padding: 0.65rem 0.9rem; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100vw - 32px); }
  h2 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
  .header-inner { width: calc(100vw - 28px); }
  .hero { grid-template-rows: minmax(360px, 54svh) auto; }
  .hero h1 { max-width: 100%; font-size: clamp(3.8rem, 16.5vw, 5.2rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .restaurant-section { padding-block: 72px; }
  .service-panel h2, .menu-band h2 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .cuisine-media { min-height: 440px; }
  .information-title h2 { max-width: 9ch; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .legal-hero { padding-top: calc(var(--header-height) + 72px); }
  .legal-hero h1 { font-size: clamp(3.9rem, 20vw, 5.4rem); }
  .legal-header .brand-name { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-parallax] img { transform: none !important; }
}
