:root {
  --font-body: "DM Sans";
  --font-display: "Oswald";
  --navy: #06254b;
  --blue: #0d4f83;
  --sky: #b9ddec;
  --pale: #e9f4f8;
  --foam: #f8f6f0;
  --white: #ffffff;
  --ink: #0b2642;
  --muted: #617184;
  --gold: #e5a83f;
  --line: rgba(6, 37, 75, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--foam);
  font-family: var(--font-body), Arial, sans-serif;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 9px clamp(22px, 5vw, 72px);
  color: var(--white);
  background: rgba(6, 37, 75, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.wordmark { display: inline-flex; flex-direction: column; gap: 3px; position: relative; padding-left: 18px; }
.wordmark-rule { position: absolute; left: 0; top: 2px; bottom: 2px; width: 4px; background: var(--sky); }
.wordmark-text { font: 800 1.32rem/1 var(--font-display), Impact, sans-serif; letter-spacing: .045em; }
.wordmark-text span { color: var(--sky); }
.wordmark small { color: #cbdbe7; font-size: .55rem; font-weight: 800; letter-spacing: .25em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); font-size: .88rem; font-weight: 800; }
.desktop-nav a { padding: 12px 0 9px; border-bottom: 2px solid transparent; }
.desktop-nav a:hover { border-color: var(--sky); }
.desktop-nav .header-call { padding: 11px 17px; border: 1px solid rgba(255, 255, 255, .7); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; padding: 11px 16px; border: 1px solid rgba(255,255,255,.6); font-weight: 800; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-nav { position: absolute; top: calc(100% + 13px); right: 0; width: min(78vw, 300px); display: grid; padding: 12px; background: var(--white); color: var(--navy); box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.mobile-nav a { padding: 14px 12px; font-weight: 800; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: 0; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(68px, 8vw, 124px) clamp(28px, 7vw, 110px);
  position: relative;
}
.hero-copy::before { content: ""; width: 58px; height: 5px; margin-bottom: 27px; background: var(--sky); }
.eyebrow, .section-kicker, .card-kicker { margin: 0; font-size: .74rem; font-weight: 900; letter-spacing: .19em; }
.eyebrow { margin-bottom: 23px; color: var(--sky); }
h1, h2, h3 { margin: 0; font-family: var(--font-display), Impact, sans-serif; text-transform: uppercase; }
h1 { max-width: 780px; font-size: clamp(3.5rem, 6.2vw, 7rem); line-height: .94; letter-spacing: -.028em; }
h1 em, h2 em { color: var(--sky); font-style: normal; }
.hero-intro { max-width: 610px; margin: 29px 0 30px; color: #d9e5ef; font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 14px 22px; border: 2px solid currentColor; font-weight: 900; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.button-light { color: var(--navy); background: var(--white); border-color: var(--white); }
.button-light:hover { background: var(--sky); border-color: var(--sky); }
.button-outline { color: var(--white); background: transparent; }
.button-outline:hover { color: var(--navy); background: var(--white); }
.promise { margin: 32px 0 0; color: var(--gold); font-size: 1.08rem; font-weight: 900; transform: rotate(-1deg); }

.hero-visual { min-width: 0; min-height: 650px; margin: 0; position: relative; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(6,37,75,.62) 0%, transparent 35%), linear-gradient(0deg, rgba(6,37,75,.55), transparent 48%); }
.hero-visual::after { content: ""; position: absolute; z-index: 2; inset: 25px; border: 1px solid rgba(255,255,255,.38); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-visual figcaption { position: absolute; z-index: 3; left: clamp(42px, 5vw, 78px); bottom: clamp(42px, 6vw, 82px); display: grid; gap: 8px; }
.hero-visual figcaption span { color: var(--sky); font-size: .7rem; font-weight: 900; letter-spacing: .2em; }
.hero-visual figcaption strong { font: 700 clamp(2rem, 3.2vw, 3.6rem)/.95 var(--font-display), Impact, sans-serif; text-transform: uppercase; }

.quick-strip { min-height: 68px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(18px, 3vw, 46px); padding: 16px 25px; color: var(--navy); background: var(--sky); font-size: .69rem; font-weight: 900; letter-spacing: .17em; }
.quick-strip i { width: 5px; height: 5px; background: var(--navy); transform: rotate(45deg); }

.platters-section { padding: clamp(82px, 10vw, 145px) clamp(20px, 5vw, 76px); background: var(--foam); }
.section-heading { max-width: 1320px; margin-inline: auto; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 53px; }
.section-kicker { margin-bottom: 17px; color: var(--blue); }
.section-heading h2, .about-copy h2, .contact-intro h2 { font-size: clamp(3rem, 5vw, 5.5rem); line-height: .94; letter-spacing: -.02em; }
.section-heading h2 em, .about-copy h2 em, .contact-intro h2 em { color: var(--blue); }
.split-heading > p, .menu-heading > p { max-width: 540px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.platter-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(17px, 2vw, 30px); }
.platter-card { min-width: 0; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); }
.photo-placeholder { aspect-ratio: 1.42; padding: 25px; display: flex; align-items: flex-end; justify-content: space-between; color: var(--white); background-color: var(--navy); position: relative; overflow: hidden; }
.photo-placeholder::before, .photo-placeholder::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.2); }
.photo-placeholder::before { width: 230px; height: 230px; border-radius: 50%; right: -45px; top: -75px; }
.photo-placeholder::after { inset: 16px; }
.placeholder-1 { background: linear-gradient(140deg, #073566, #0b2548 74%); }
.placeholder-2 { background: linear-gradient(140deg, #194f77, #061f3d 74%); }
.placeholder-3 { background: linear-gradient(140deg, #0f6585, #06254b 74%); }
.placeholder-number { align-self: flex-start; position: relative; z-index: 1; color: var(--sky); font: 700 3.2rem/1 var(--font-display), Impact, sans-serif; }
.photo-placeholder > div:last-child { position: relative; z-index: 1; display: grid; text-align: right; }
.photo-placeholder strong { font: 700 clamp(2rem, 3.2vw, 3.5rem)/1 var(--font-display), Impact, sans-serif; text-transform: uppercase; }
.platter-content { flex: 1; display: flex; flex-direction: column; padding: clamp(24px, 3vw, 38px); }
.card-kicker { margin-bottom: 12px; color: var(--blue); }
.platter-content h3 { font-size: clamp(1.8rem, 2.5vw, 2.7rem); line-height: 1; }
.ingredients { min-height: 74px; margin: 18px 0 22px; color: var(--muted); line-height: 1.55; }
.portion-table { margin-top: auto; border-top: 2px solid var(--navy); }
.portion-row { min-height: 69px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.portion-row > div { display: grid; gap: 3px; }
.portion-row strong { font-size: .97rem; }
.portion-row span { color: var(--muted); font-size: .8rem; }
.portion-row b { white-space: nowrap; font: 700 1.28rem var(--font-display), Impact, sans-serif; }

.menu-section { padding: clamp(82px, 10vw, 145px) clamp(20px, 5vw, 76px); color: var(--white); background: var(--navy); }
.menu-shell { max-width: 1320px; margin-inline: auto; }
.menu-heading { text-align: center; }
.menu-heading .section-kicker { color: var(--sky); }
.menu-heading h2 { font-size: clamp(3.3rem, 6vw, 6.3rem); }
.menu-heading > p { margin: 24px auto 0; color: #cbdbe7; }
.category-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 45px auto 64px; }
.category-nav a { min-height: 49px; display: flex; align-items: center; gap: 10px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.34); font-size: .78rem; font-weight: 900; }
.category-nav a:hover { color: var(--navy); background: var(--sky); border-color: var(--sky); }
.category-nav span { color: var(--sky); }
.category-nav a:hover span { color: var(--navy); }
.menu-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 76px); }
.menu-category { min-width: 0; scroll-margin-top: 100px; }
.menu-category > header { display: flex; align-items: end; gap: 18px; padding-bottom: 26px; border-bottom: 3px solid var(--sky); }
.menu-category > header > span { color: var(--sky); font: 700 3rem/1 var(--font-display), Impact, sans-serif; }
.menu-category header p { margin: 0 0 5px; color: var(--sky); font-size: .6rem; font-weight: 900; letter-spacing: .16em; }
.menu-category h3 { font-size: clamp(2.4rem, 4vw, 3.7rem); line-height: .9; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { min-height: 62px; display: flex; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.menu-list li > span:first-child { max-width: 77%; font-size: .95rem; font-weight: 700; line-height: 1.35; }
.menu-list li > span:first-child small { display: block; margin-top: 3px; color: #9fb2c2; font-size: .72rem; font-weight: 600; }
.menu-dots { min-width: 12px; flex: 1; height: 1px; border-bottom: 1px dotted rgba(255,255,255,.35); }
.menu-list strong { white-space: nowrap; color: var(--sky); font: 700 1.2rem var(--font-display), Impact, sans-serif; }
.menu-category-extras { grid-column: 1 / -1; width: 100%; max-width: 622px; margin: 4px auto 0; }
.category-sides { display: grid; gap: 7px; margin: 25px 0 0; padding: 18px 20px; color: var(--navy); background: var(--sky); font-weight: 800; }
.category-sides span { font-size: .62rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }

.about-section { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); min-height: 650px; background: var(--white); }
.about-photo { min-height: 460px; margin: 0; overflow: hidden; background: var(--blue); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-copy { max-width: 840px; align-self: center; padding: clamp(68px, 9vw, 130px); }
.about-copy > p:not(.section-kicker) { max-width: 690px; margin: 28px 0 31px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.text-link { display: inline-flex; gap: 30px; padding-bottom: 8px; color: var(--blue); border-bottom: 2px solid var(--blue); font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.contact-section { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(45px, 8vw, 130px); padding: clamp(82px, 10vw, 145px) clamp(24px, 7vw, 110px); background: var(--pale); }
.contact-intro { max-width: 620px; }
.contact-intro > p:not(.section-kicker) { margin: 28px 0 0; color: var(--muted); line-height: 1.7; }
.contact-panel { align-self: center; padding: clamp(25px, 4vw, 48px); color: var(--white); background: var(--navy); }
.contact-panel dl { margin: 0; }
.contact-panel dl > div { display: grid; grid-template-columns: minmax(100px, .42fr) 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-panel dl > div:first-child { padding-top: 0; }
.contact-panel dt { color: var(--sky); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-panel dd { margin: 0; display: grid; gap: 5px; }
.missing-value { color: #c9d5de; font-style: italic; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }

.site-footer { position: relative; min-height: 280px; display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: start; padding: 86px clamp(24px, 7vw, 110px) 42px; color: var(--white); background: #041b36; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; left: -3%; right: -3%; top: -65px; height: 100px; border: 3px solid rgba(185,221,236,.35); border-radius: 50%; }
.footer-brand { display: grid; gap: 9px; }
.footer-brand .wordmark-text { font-size: 2.2rem; }
.footer-brand p { margin: 0; color: var(--sky); font-size: .75rem; font-weight: 900; letter-spacing: .25em; text-transform: uppercase; }
.footer-brand strong { margin-top: 12px; color: var(--gold); }
.site-footer nav { display: grid; grid-template-columns: repeat(2, minmax(90px, 1fr)); gap: 15px 30px; font-size: .83rem; font-weight: 800; }
.site-footer nav a:hover { color: var(--sky); }
.copyright { grid-column: 1 / -1; margin: 25px 0 0; padding-top: 24px; color: #8195a8; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); }
  .hero-copy { padding-inline: clamp(28px, 5vw, 64px); }
  .platter-grid { grid-template-columns: 1fr; max-width: 760px; }
  .photo-placeholder { aspect-ratio: 2.1; }
  .ingredients { min-height: auto; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 72px; }
  .site-header { min-height: 70px; padding: 8px 18px; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 60px 24px 58px; }
  h1 { font-size: clamp(3.35rem, 15vw, 5.2rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 460px; }
  .hero-visual::before { background: linear-gradient(0deg, rgba(6,37,75,.68), transparent 58%); }
  .hero-visual::after { inset: 15px; }
  .hero-visual figcaption { left: 32px; bottom: 36px; }
  .quick-strip { justify-content: flex-start; gap: 11px 17px; }
  .quick-strip i { display: none; }
  .quick-strip span { width: calc(50% - 10px); }
  .split-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 37px; }
  .section-heading h2, .about-copy h2, .contact-intro h2 { font-size: clamp(2.9rem, 13vw, 4.6rem); }
  .photo-placeholder { aspect-ratio: 1.45; padding: 22px; }
  .photo-placeholder strong { font-size: clamp(2rem, 10vw, 3rem); }
  .platter-content { padding: 27px 23px; }
  .menu-columns { grid-template-columns: 1fr; gap: 72px; }
  .category-nav { flex-direction: column; margin-bottom: 55px; }
  .category-nav a { width: 100%; }
  .menu-list li > span:first-child { max-width: 72%; }
  .about-section { grid-template-columns: 1fr; }
  .about-photo { min-height: 0; aspect-ratio: 4 / 5; }
  .about-copy { padding: 68px 24px 76px; }
  .contact-section { grid-template-columns: 1fr; padding-inline: 24px; }
  .contact-panel { padding: 30px 23px; }
  .contact-panel dl > div { grid-template-columns: 1fr; gap: 8px; }
  .site-footer { grid-template-columns: 1fr; padding-top: 75px; }
  .site-footer nav { grid-template-columns: repeat(2, 1fr); }
  .copyright { grid-column: 1; }
}

@media (max-width: 390px) {
  .wordmark-text { font-size: 1.08rem; }
  .wordmark small { font-size: .46rem; }
  .hero-copy { padding-inline: 20px; }
  .platter-card { margin-inline: -2px; }
  .photo-placeholder { padding: 19px; }
  .placeholder-number { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
