:root {
  --navy: #062c50;
  --deep: #031d35;
  --turquoise: #10bbb9;
  --sand: #f5f0e6;
  --cream: #fbfaf7;
  --green: #0a4b38;
  --ink: #16354a;
  --muted: #617889;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.95);
  border-bottom: 1px solid rgba(6, 44, 80, 0.09);
}

.topbar img {
  width: 74px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
}

.back-link, .mini-cta {
  font-size: 12px;
  font-weight: 700;
}

.mini-cta {
  justify-self: end;
  padding: 11px 15px;
  color: white;
  border-radius: 999px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: min(78vh, 790px);
  overflow: hidden;
  color: white;
  background: var(--deep);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 24, 42, 0.86), rgba(2, 24, 42, 0.08) 72%),
    linear-gradient(0deg, rgba(2, 24, 42, 0.5), transparent 48%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(92%, 1200px);
  margin: 0 auto;
  padding-top: clamp(120px, 20vh, 220px);
}

.eyebrow, .section-label {
  display: block;
  margin-bottom: 18px;
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.55;
}

.section {
  width: min(92%, 1180px);
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 70px;
}

h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(35px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.intro p, .section-heading p, .closing p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.feature-grid article {
  min-height: 250px;
  padding: 38px;
  background: var(--navy);
}

.feature-grid article:nth-child(2) { background: #0a4464; }
.feature-grid article:nth-child(3) { background: var(--green); }

.feature-grid span {
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 800;
}

.feature-grid h3 {
  margin: 50px 0 12px;
  color: white;
  font-size: 23px;
}

.feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.section-heading {
  grid-column: 1 / -1;
  margin-bottom: 28px;
}

.section-heading p { max-width: 660px; margin-top: 20px; }

.photo {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #dce8e8;
}

.photo-wide { grid-column: 1 / -1; min-height: 620px; }

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.photo:hover img { transform: scale(1.025); }

.photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 18px;
  color: white;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(2, 29, 53, 0.66);
  backdrop-filter: blur(12px);
}

.menus {
  width: 100%;
  padding-right: max(4%, calc((100% - 1180px) / 2));
  padding-left: max(4%, calc((100% - 1180px) / 2));
  background: var(--sand);
}

.menu-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 24px;
}

.menu-grid a {
  overflow: hidden;
  border-radius: 22px;
  background: white;
  box-shadow: 0 16px 40px rgba(6, 44, 80, 0.08);
}

.menu-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.22;
  object-fit: cover;
  object-position: top;
}

.menu-grid a:last-child img { aspect-ratio: 1 / 1; }

.menu-grid span {
  display: block;
  padding: 18px 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.menus small {
  display: block;
  margin-top: 18px;
  color: #7d7a70;
  line-height: 1.5;
}

.closing {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
}

.closing p { max-width: 680px; margin-top: 22px; }

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 280px;
  padding: 20px 24px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), #0b6f8b);
  box-shadow: 0 18px 36px rgba(6, 44, 80, 0.2);
}

.primary-cta span { color: var(--turquoise); font-size: 22px; }

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 130px;
  padding: 25px;
  color: #6d8291;
  font-size: 11px;
  border-top: 1px solid rgba(6, 44, 80, 0.08);
  background: white;
}

footer img { width: 60px; height: 50px; object-fit: contain; }

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 8px 14px;
  }
  .topbar img { display: none; }
  .mini-cta { font-size: 10px; }
  .hero { min-height: 72vh; }
  .hero-copy { padding-top: 140px; }
  .hero h1 { font-size: clamp(45px, 15vw, 68px); }
  .section { padding: 62px 0; }
  .intro, .feature-grid, .gallery, .menu-grid, .closing {
    grid-template-columns: 1fr;
  }
  .intro { gap: 28px; }
  .feature-grid { gap: 2px; }
  .feature-grid article { min-height: 210px; padding: 30px; }
  .feature-grid h3 { margin-top: 40px; }
  .photo, .photo-wide { grid-column: auto; min-height: 360px; }
  .menu-grid img, .menu-grid a:last-child img { aspect-ratio: auto; }
  .closing { align-items: start; }
  .primary-cta { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
