:root {
  --blue: #0066b3;
  --deep-blue: #053b68;
  --sky: #e7f6fb;
  --foam: #f7fbf8;
  --sand: #f3eadb;
  --ink: #102232;
  --muted: #5f7080;
  --line: #d8e7ed;
  --white: #ffffff;
  --sun: #e8a036;
  --shadow: 0 18px 50px rgba(5, 59, 104, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--foam);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(247, 251, 248, 0.9);
  border-bottom: 1px solid rgba(216, 231, 237, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  width: max-content;
  color: var(--blue);
  text-decoration: none;
  line-height: 1;
}

.brand span,
h1,
h2,
h3 {
  font-family: "Amatic SC", Inter, sans-serif;
  letter-spacing: 0;
}

.brand span {
  display: block;
  font-size: 40px;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--deep-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 4px;
  justify-content: center;
}

nav a,
.reserve-link {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

nav a:hover,
.reserve-link:hover {
  background: var(--sky);
}

.reserve-link {
  justify-self: end;
  border: 1px solid var(--line);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 36, 0.8), rgba(5, 24, 36, 0.24) 58%, rgba(5, 24, 36, 0.08)),
    linear-gradient(0deg, rgba(5, 24, 36, 0.6), transparent 62%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  padding: 0 0 clamp(52px, 10vw, 110px) clamp(18px, 6vw, 76px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8f8ff;
}

h1 {
  margin: 0;
  font-size: clamp(90px, 16vw, 178px);
  line-height: 0.8;
}

h2 {
  margin: 0;
  color: var(--deep-blue);
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.88;
}

h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 42px;
  line-height: 0.94;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(21px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0, 102, 179, 0.28);
}

.button.secondary {
  background: var(--sand);
  color: var(--deep-blue);
}

.button.glass {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button.outline {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--deep-blue);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 106px) 0;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.7fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.story-text > p:last-child,
.feature-copy p,
.menu-intro {
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 27px);
  font-weight: 700;
  line-height: 1.36;
}

.story-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-card div {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.story-card strong {
  color: var(--deep-blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.feature-section {
  background: linear-gradient(180deg, var(--sky), #f8fcff);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.feature-copy .button {
  margin-top: 12px;
}

.food-mosaic {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.food-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.food-mosaic .tall {
  grid-row: span 2;
  min-height: 560px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.menu-section {
  width: min(1240px, calc(100% - 36px));
}

.menu-intro {
  max-width: 880px;
  margin: 0 0 24px;
}

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

.menu-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.menu-panel.large {
  grid-column: span 2;
  background: var(--sand);
}

.menu-panel.blue {
  background: var(--deep-blue);
  color: var(--white);
}

.menu-panel.blue h3,
.menu-panel.blue p {
  color: var(--white);
}

.menu-panel p {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.two-column-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.menu-panel li {
  display: flex;
  gap: 10px;
  line-height: 1.35;
}

.menu-panel li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.44;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-grid .span-2 {
  grid-column: span 2;
  grid-row: span 2;
}

.visit-section {
  background:
    linear-gradient(90deg, rgba(5, 59, 104, 0.88), rgba(5, 59, 104, 0.46)),
    url("assets/parasols-ocean.png") center / cover;
  color: var(--white);
}

.visit {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.visit h2,
.visit .eyebrow {
  color: var(--white);
}

.visit-card {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

dl {
  display: grid;
  gap: 22px;
  margin: 0;
}

dt {
  margin-bottom: 6px;
  color: #d9f5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

dd a {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 58px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  nav {
    justify-content: start;
    overflow-x: auto;
  }

  .reserve-link {
    justify-self: start;
  }

  .hero {
    min-height: 690px;
  }

  .story,
  .feature-grid,
  .visit {
    grid-template-columns: 1fr;
  }

  .food-mosaic,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-panel.large {
    grid-column: span 2;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand span {
    font-size: 35px;
  }

  .hero-content {
    width: min(100% - 28px, 680px);
    padding-left: 14px;
  }

  .food-mosaic,
  .menu-grid,
  .gallery-grid,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .food-mosaic .tall,
  .menu-panel.large,
  .gallery-grid .span-2 {
    grid-column: auto;
    grid-row: auto;
  }

  .food-mosaic .tall {
    min-height: 360px;
  }

  .gallery-grid {
    grid-auto-rows: 310px;
  }

  .menu-panel {
    padding: 18px;
  }
}
