:root {
  --blue: #075373;
  --blue-deep: #043f57;
  --cream: #f3ebdc;
  --paper: #fbf7ef;
  --sand: #e7d8bd;
  --coral: #dd6646;
  --ink: #17313a;
  --muted: #586b72;
  --white: #fffdf8;
  --line: rgba(7, 83, 115, .18);
  --font-display: "Bricolage Grotesque", "Arial Narrow", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --max-width: 1280px;
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; max-width: 100%; }
figure, h1, h2, h3, p, dl, dd { margin: 0; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
address { font-style: normal; }
main, section { min-width: 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--blue-deep);
  border: 2px solid var(--blue);
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #f2a65a;
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(243, 235, 220, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(100% - 40px, var(--max-width));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-inner > * { min-width: 0; }
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}
.brand img { width: 124px; height: auto; }
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}
.desktop-nav a,
.mobile-nav a,
.header-link {
  text-decoration: none;
  color: var(--blue-deep);
  font-size: .92rem;
  font-weight: 700;
}
.desktop-nav a,
.header-link { position: relative; }
.desktop-nav a::after,
.header-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--coral);
  transition: right .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.header-link:hover::after,
.header-link:focus-visible::after { right: 0; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.15;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .92rem; }
.button-primary { background: var(--blue); color: var(--white); }
.button-primary:hover { background: var(--blue-deep); }
.button-secondary {
  color: var(--blue-deep);
  border-color: var(--blue);
  background: transparent;
}
.button-secondary:hover { background: rgba(7, 83, 115, .07); }
.button-light { background: var(--white); color: var(--blue-deep); }
.button-light:hover { background: #f7eddb; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--blue-deep);
  transition: transform .2s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { display: none; }
body.menu-open { overflow: hidden; }
.mobile-quick-actions { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  display: grid;
  place-items: center;
  overflow: clip;
  background: var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(243, 235, 220, .42) 0, rgba(243, 235, 220, .24) 28%, rgba(243, 235, 220, .08) 58%, rgba(7, 83, 115, .08) 100%);
  pointer-events: none;
}
.hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.hero-content {
  width: min(100% - 48px, 720px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 72px 0;
  text-align: center;
}
.hero h1,
section h2,
.legal-section h1,
.legal-section h2 {
  font-family: var(--font-display);
  color: var(--blue-deep);
  font-weight: 700;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-logo {
  width: min(48vw, 360px);
  margin: 0;
  line-height: 0;
}
.hero-logo img {
  width: 100%;
  height: auto;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}


.hero-actions .button-secondary {
  background: rgba(255, 250, 242, .88);
  color: var(--blue-deep);
  border-color: rgba(255, 250, 242, .96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-actions .button-secondary:hover {
  background: rgba(255, 250, 242, .96);
  border-color: rgba(255, 250, 242, 1);
}


.section-space { padding: clamp(82px, 9vw, 138px) 0; }
.section-shell { width: min(100% - 48px, var(--max-width)); margin-inline: auto; }
.section-shell > *, .restaurant-layout > *, .cuisine-intro > *, .info-layout > * { min-width: 0; }
section h2 { font-size: clamp(3rem, 5.4vw, 5.9rem); line-height: .94; }

.restaurant-section { background: var(--paper); }
.restaurant-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(46px, 9vw, 130px);
  align-items: center;
}
.restaurant-copy h2 { max-width: 9ch; }
.restaurant-copy p {
  max-width: 34ch;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}
.restaurant-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d9c8a8;
}
.restaurant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.cuisine-section { background: var(--sand); }
.cuisine-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
  gap: clamp(46px, 8vw, 118px);
  align-items: center;
}
.cuisine-copy h2 { max-width: 8ch; }
.cuisine-copy p {
  max-width: 46ch;
  margin-top: 28px;
  color: #3f5157;
  font-size: 1.05rem;
}
.cuisine-copy .button { margin-top: 30px; }
.cuisine-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d9c8a8;
}
.cuisine-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dish-grid {
  margin-top: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 18px);
}
.dish-item {
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8cfbe;
}
.dish-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.dish-item:hover img { transform: scale(1.018); }

.reservation-section { background: var(--blue); }
.reservation-title {
  color: var(--white);
  max-width: none;
  margin-bottom: clamp(38px, 5vw, 62px);
  text-align: center;
}
.booking-frame-wrap {
  width: 100%;
  max-width: 820px;
  min-width: 0;
  margin-inline: auto;
  padding: clamp(8px, 1.2vw, 14px);
  background: var(--white);
  border: 0;
}
.booking-frame {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 700px;
  border: 0;
  background: var(--white);
}

.info-section {
  background: var(--blue-deep);
  color: var(--white);
}
.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(54px, 10vw, 150px);
}
.info-section h2 { color: var(--white); max-width: 8ch; }
.info-main address {
  margin-top: 34px;
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
  color: rgba(255,255,255,.84);
}
.info-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 32px;
}
.plain-link {
  color: var(--white);
  font-weight: 700;
  text-underline-offset: 5px;
}
.phone-link {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
  font-weight: 500;
  text-underline-offset: 4px;
}
.hours h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -.035em;
  margin-bottom: 22px;
}
.hours dl { border-top: 1px solid rgba(255,255,255,.26); }
.hours dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.hours dt { color: rgba(255,255,255,.7); }
.hours dd { text-align: right; font-weight: 600; }

.site-footer {
  min-height: 74px;
  padding: 22px max(24px, calc((100vw - var(--max-width)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #032f41;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}
.site-footer a { color: var(--white); text-underline-offset: 4px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

.legal-page { background: var(--cream); }
.legal-header .header-inner { justify-content: space-between; }
.legal-section { min-height: calc(100svh - 150px); }
.legal-shell { width: min(100% - 48px, 1040px); margin-inline: auto; }
.legal-section h1 {
  max-width: 10ch;
  margin-bottom: 58px;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: .92;
}
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: clamp(40px, 8vw, 92px);
}
.legal-grid > * { min-width: 0; }
.legal-section h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
}
.legal-list { border-top: 1px solid var(--line); }
.legal-list div {
  display: grid;
  grid-template-columns: minmax(150px, .66fr) minmax(0, 1.34fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.legal-list dt { color: var(--muted); }
.legal-list dd { overflow-wrap: anywhere; }
.legal-grid article > p + p { margin-top: 20px; }
.legal-grid a { color: var(--blue); }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .header-link,
  .header-actions .button { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 230;
    display: inline-flex;
  }
  .mobile-nav {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: block;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    padding: calc(var(--header-height) + 28px) 24px calc(28px + env(safe-area-inset-bottom));
    background: var(--cream);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav-inner {
    width: min(100%, 680px);
    min-height: calc(100% - 28px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 28px;
  }
  .mobile-nav a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--blue-deep);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    text-decoration: none;
  }
  .mobile-nav a:first-child { border-top: 1px solid var(--line); }
  .mobile-nav a:hover,
  .mobile-nav a:focus-visible { color: var(--blue); }
  body.menu-open .site-header {
    z-index: 220;
    background: var(--cream);
    border-bottom-color: transparent;
    backdrop-filter: none;
  }
  body.menu-open .mobile-quick-actions { z-index: 210; }
  .dish-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  :root { --header-height: 70px; }
  body { padding-bottom: 66px; }
  .header-inner { width: min(100% - 24px, var(--max-width)); gap: 10px; }
  .brand img { width: 108px; }
  .mobile-quick-actions {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
    border-top: 1px solid var(--line);
  }
  .mobile-quick-actions a {
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    color: var(--blue-deep);
  }
  .mobile-quick-actions a + a {
    background: var(--blue);
    color: var(--white);
  }

  .hero {
    height: calc(100vh - var(--header-height));
    height: calc(100svh - var(--header-height));
    height: calc(100dvh - var(--header-height));
  }
  .hero-background { object-position: 50% 50%; }
  .hero-content {
    width: min(100% - 32px, 620px);
    gap: 28px;
    padding: 54px 0;
  }
  .hero-logo { width: min(66vw, 300px); }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1 1 150px; }

  .section-shell, .legal-shell { width: min(100% - 32px, var(--max-width)); }
  .restaurant-layout,
  .cuisine-intro,
  .info-layout,
  .legal-grid { grid-template-columns: 1fr; }

  .restaurant-layout { gap: 38px; }
  .restaurant-copy p { margin-top: 20px; }
  .restaurant-photo { width: min(100%, 520px); margin-left: auto; }

  .cuisine-intro { gap: 44px; }
  .cuisine-copy h2 { max-width: 10ch; }
  .cuisine-photo { width: min(100%, 600px); margin-left: auto; }
  .dish-grid { margin-top: 44px; gap: 10px; }


  .booking-frame-wrap { padding: 7px; }
  .booking-frame { min-height: 720px; }

  .info-layout { gap: 58px; }
  .site-footer { padding-inline: 20px; }
  .legal-section h1 { margin-bottom: 42px; }
}

@media (max-width: 520px) {
  .section-space { padding: 72px 0; }
  section h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-content { width: min(100% - 28px, 520px); gap: 24px; }
  .hero-logo { width: min(72vw, 280px); }
  .dish-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .booking-frame-wrap { margin-inline: -8px; width: calc(100% + 16px); }
  .info-links { align-items: flex-start; flex-direction: column; }
  .info-links .button { width: 100%; }
  .site-footer {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .legal-list div { grid-template-columns: 1fr; gap: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}
