:root {
  --deep: #0f2c3d;
  --reef: #16384a;
  --kelp: #3d6f80;
  --sand: #28bccc;
  --foam: #f4f8fa;
  --stone: #e8f3f6;
  --ink: #1a2d38;
  --drift: #1a8fa0;
  --line: rgba(232, 243, 246, .22);
  --serif: Georgia, Palatino, "Palatino Linotype", "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, .8, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--foam); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.55; overflow-x: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; background: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }
.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 { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; background: var(--sand); color: var(--deep); transform: translateY(-150%); }
.skip:focus { transform: none; }


.site-header {
  height: 92px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  color: var(--foam);
  border-bottom: 1px solid var(--line);
}
.brand { width: 156px; display: flex; align-items: center; }
.brand img { width: 148px; height: auto; }
.site-header nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); font-size: 17px; font-weight: 500; letter-spacing: .01em; }
.site-header nav a, .link-button { color: var(--foam); background: transparent; padding: 12px 0; position: relative; }
.site-header nav a:not(.book-button)::after, .link-button::after {
  content: '';
  height: 1px;
  background: var(--sand);
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  transition: right .35s var(--ease);
}
.site-header nav a:not(.book-button):hover::after,
.site-header nav a:not(.book-button):focus-visible::after,
.link-button:hover::after,
.link-button:focus-visible::after { right: 0; }
.site-header nav a.book-button,
.book-button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #28bccc;
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .3s, transform .3s var(--ease), color .3s;
}
.site-header nav a.book-button:hover,
.site-header nav a.book-button:focus-visible,
.book-button:hover, .book-button:focus-visible { background: #0f2c3d; color: #fff; transform: translateY(-2px); }
.menu-toggle { display: none; background: transparent; color: var(--foam); padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 28px; height: 2px; margin: 5px 0; background: currentColor; }

.hero {
  min-height: 700px;
  height: min(100svh, 860px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
  color: var(--foam);
}
.hero-photo, .hero-wash { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; filter: saturate(.88) contrast(1.04); }
.hero-wash {
  background:
    linear-gradient(90deg, rgba(15,44,61,.9) 0%, rgba(15,44,61,.62) 38%, rgba(15,44,61,.1) 76%),
    linear-gradient(0deg, rgba(15,44,61,.32), transparent 38%);
}
.hero-copy { position: relative; z-index: 1; width: min(640px, 56vw); margin-left: 10vw; padding-top: 46px; }
.eyebrow { margin: 0 0 18px; color: var(--sand); font-size: 12px; font-weight: 600; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: 0; line-height: 1.02; color: var(--deep); }
.hero h1, .dishes h2, .visit h2 { color: var(--foam); }
h1 { font-size: clamp(52px, 6.6vw, 92px); color: var(--foam); }
h2 { font-size: clamp(36px, 4.6vw, 62px); }
em { color: var(--sand); font-style: italic; }
.hero-intro { max-width: 420px; margin: 24px 0 28px; font-size: 17px; line-height: 1.65; color: rgba(244,248,250,.84); }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.text-action, .arrow-link { padding: 8px 0; background: transparent; color: inherit; font-weight: 600; text-align: left; }
.text-action span, .arrow-link span { display: inline-block; margin-left: 10px; color: var(--sand); font-size: 20px; transition: transform .3s var(--ease); }
.text-action:hover span, .arrow-link:hover span, .text-action:focus-visible span, .arrow-link:focus-visible span { transform: translateX(5px); }
.hero-note {
  position: absolute;
  z-index: 1;
  right: 5vw;
  bottom: 62px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--sand);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: right;
}
.hero-note strong { color: var(--foam); font: 28px var(--serif); letter-spacing: 0; text-transform: none; }
.scroll-cue {
  position: absolute;
  z-index: 1;
  left: 5vw;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--foam);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.scroll-cue i { width: 40px; height: 1px; background: var(--sand); position: relative; }
.scroll-cue i::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  transform: rotate(45deg);
}

.welcome {
  padding: 64px 8vw 56px;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(300px, .95fr);
  grid-template-areas:
    "main copy"
    "shot-a shot-b";
  gap: 18px 48px;
  background: var(--foam);
  align-items: center;
}
.welcome-main { grid-area: main; margin: 0; height: 340px; overflow: hidden; }
.welcome-main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.welcome-copy { grid-area: copy; max-width: 540px; }
.welcome-copy h2 { max-width: 16ch; }
.welcome-copy .lead { margin: 18px 0 14px; font-family: var(--serif); font-size: 24px; line-height: 1.28; color: var(--deep); }
.welcome-copy p:not(.lead):not(.eyebrow) { margin: 0 0 18px; color: rgba(26,45,56,.72); }
.welcome-points { margin: 0 0 22px; padding: 0; list-style: none; display: grid; gap: 8px; color: var(--reef); font-size: 15px; }
.welcome-points li { padding-left: 16px; position: relative; }
.welcome-points li::before { content: ''; position: absolute; left: 0; top: .55em; width: 7px; height: 1px; background: var(--drift); }
.arrow-link { color: var(--deep); border-bottom: 1px solid rgba(15,44,61,.28); }
.welcome-shot { margin: 0; height: 168px; overflow: hidden; }
.welcome-shot:nth-of-type(2) { grid-area: shot-a; }
.welcome-shot:nth-of-type(3) { grid-area: shot-b; }
.welcome-shot img { width: 100%; height: 100%; object-fit: cover; }

.dishes { padding: 56px 8vw 60px; background: var(--deep); color: var(--foam); }
.dishes-intro { max-width: 620px; margin-bottom: 32px; }
.dishes-intro p:not(.eyebrow) { margin: 16px 0 0; color: rgba(244,248,250,.72); max-width: 520px; }
.dishes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 20px; }
.dish { background: #143447; display: flex; flex-direction: column; min-width: 0; }
.dish img { width: 100%; aspect-ratio: 3 / 2; height: auto; object-fit: cover; }
.dish-copy { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dish-copy h3 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--foam); }
.dish-copy p { margin: 0; color: rgba(244,248,250,.7); font-size: 15px; line-height: 1.5; }

.visit {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--stone);
  overflow: hidden;
}
.visit-photo { min-height: 0; height: 520px; overflow: hidden; }
.visit-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.visit-panel { padding: 56px 7vw 48px; color: var(--deep); align-self: center; }
.visit-panel h2 { color: var(--deep); max-width: 14ch; }
.visit-panel h2 em { color: var(--drift); }
.visit-panel > p:not(.eyebrow):not(.visit-lines) { max-width: 400px; margin: 18px 0 20px; color: rgba(26,45,56,.72); }
.visit-panel .eyebrow { color: var(--drift); }
address { margin: 0 0 16px; line-height: 1.7; color: var(--ink); }
.visit-lines { margin: 0 0 22px; line-height: 1.7; }
.visit-lines a { border-bottom: 1px solid rgba(15,44,61,.2); }
.visit-lines a:hover, .visit-lines a:focus-visible { border-bottom-color: var(--drift); }
.contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.visit .book-button { background: #28bccc; color: #fff; opacity: 1; }
.visit .book-button:hover, .visit .book-button:focus-visible { background: #0f2c3d; color: #fff; }

footer {
  min-height: 200px;
  padding: 40px 5vw 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 24px;
  background: var(--reef);
  color: var(--foam);
}
.footer-brand img { width: 140px; height: auto; }
footer p { margin: 3px 0; color: rgba(244,248,250,.74); font-family: var(--serif); font-size: 22px; line-height: 1.25; }
.socials { display: flex; justify-content: flex-end; gap: 12px; }
.socials a {
  width: 47px;
  height: 47px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--sand);
  transition: color .3s, background .3s, transform .35s var(--ease);
}
.socials svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.socials svg path { fill: currentColor; stroke: none; }
.socials .dot { fill: currentColor; stroke: none; }
.socials a:hover, .socials a:focus-visible { color: var(--deep); background: var(--sand); transform: translateY(-5px) rotate(-4deg); }
footer small { grid-column: 1 / -1; align-self: end; color: rgba(244,248,250,.5); font-size: 11px; letter-spacing: .04em; }

.toast {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 26px;
  width: min(520px, calc(100vw - 28px));
  padding: 17px 18px 17px 21px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  background: var(--sand);
  color: var(--deep);
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
  transform: translate(-50%, calc(100% + 5rem));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .5s var(--ease), opacity .3s, visibility 0s linear .5s;
}
.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform .5s var(--ease), opacity .3s, visibility 0s;
}
.toast strong, .toast span { display: block; }
.toast strong { font-size: 13px; }
.toast span { margin-top: 2px; font-size: 12px; }
.toast button { flex: 0 0 auto; background: transparent; color: var(--deep); font-size: 24px; line-height: 1; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--sand); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .socials a:hover, .socials a:focus-visible { transform: none; }
  .book-button:hover, .book-button:focus-visible { transform: none; }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .site-header nav { gap: 14px; font-size: 16px; }
  .book-button { padding: 0 16px; font-size: 15px; }
}

@media (max-width: 900px) {
  .site-header { height: 84px; padding: 0 6vw; }
  .brand { width: 132px; }
  .brand img { width: 124px; }
  .menu-toggle { display: block; }
  .site-header nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 6vw 18px;
    background: var(--deep);
    border-top: 1px solid var(--line);
    max-height: min(70svh, calc(100svh - 84px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s, transform .3s var(--ease), visibility 0s linear .3s;
  }
  .site-header nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .3s, transform .3s var(--ease), visibility 0s;
  }
  .site-header nav a, .link-button { width: 100%; padding: 14px 0; text-align: left; }
  .book-button { width: 100%; margin-top: 10px; white-space: normal; }
  .hero { min-height: 640px; height: 100svh; max-height: 840px; align-items: flex-end; }
  .hero-photo img { object-position: 55% 48%; }
  .hero-wash { background: linear-gradient(0deg, rgba(15,44,61,.92) 0%, rgba(15,44,61,.5) 48%, rgba(15,44,61,.12) 100%); }
  .hero-copy { width: auto; margin: 0 7vw; padding: 0 0 108px; }
  h1 { font-size: clamp(46px, 13vw, 78px); }
  .hero-intro { margin: 20px 0; font-size: 15px; }
  .hero-note { right: 7vw; bottom: 50px; }
  .scroll-cue { left: 7vw; bottom: 28px; }
  .welcome {
    padding: 52px 7vw 48px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .welcome-main { height: 280px; }
  .welcome-shot { height: 160px; }
  .dishes { padding: 48px 7vw 52px; }
  .dishes-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .visit { display: flex; flex-direction: column; }
  .visit-photo { height: 320px; }
  .visit-panel { padding: 48px 7vw 52px; }
  footer { padding: 36px 7vw 22px; grid-template-columns: 1fr auto; }
  footer p { grid-column: 1 / -1; grid-row: 2; }
  .socials { grid-column: 2; grid-row: 1; }
  footer small { grid-row: 3; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero-copy { padding-bottom: 104px; }
  .eyebrow { font-size: 10px; letter-spacing: .14em; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .welcome-main { height: 220px; }
  .welcome-shot { height: 140px; }
  .dishes-grid { grid-template-columns: 1fr; }
  .dish-copy h3 { font-size: 22px; }
  .visit-photo { height: 240px; }
  .contact-actions { align-items: stretch; }
}
