:root {
  --navy: #082B55;
  --ink: #0E2338;
  --slate-body: #33506B;
  --slate-muted: #5E7591;
  --slate-faint: #8CA3B8;
  --link-blue: #2E6797;
  --link-blue-hover: #0E2338;
  --page-bg: #EDF1F5;
  --card-bg: #F7FAFC;
  --hairline: #DDE5EE;
  --dashed-border: #CFDBE6;
  --divider: #E2EAF1;
  --neutral-fill: #E4EBF2;
  --gold: #F5B63D;
  --gold-hover: #FFC968;
  --gold-pale: #FBEDD2;
  --gold-dark: #6B4E12;
  --cream: #F7F1E5;
  --on-navy-body: #C6D8E7;
  --on-navy-label: #8FB0CB;
  --on-navy-warm: #E8CD9E;

  --font-body: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-wordmark: 'Newsreader', Georgia, serif;

  --shadow-card: 0 1px 2px rgba(8, 43, 85, .05), 0 12px 28px rgba(8, 43, 85, .07);
  --shadow-raised: 0 1px 2px rgba(8, 43, 85, .06), 0 30px 60px rgba(8, 43, 85, .14);
  --shadow-navy: 0 14px 32px rgba(8, 43, 85, .22);
}

* { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}

h1, h2, h3 { margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

a {
  color: var(--link-blue);
  text-decoration: none;
}
a:hover, a:focus-visible {
  color: var(--link-blue-hover);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--link-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(20px, 3vw, 32px);
}

section[id] {
  scroll-margin-top: 90px;
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Logo lockup */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  white-space: nowrap;
  color: inherit;
}
.logo:hover, .logo:focus-visible { text-decoration: none; }
.logo-tile { width: 34px; height: 34px; flex: 0 0 auto; }
.logo-word {
  font-family: var(--font-wordmark);
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 22px);
  letter-spacing: -.012em;
  line-height: 1.1;
  color: var(--ink);
}
footer .logo-tile { width: 26px; height: 26px; }
footer .logo { gap: 10px; }
footer .logo-word { font-size: 18px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 241, 245, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .wrap {
  padding-block: 14px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 34px);
  flex-wrap: wrap;
}
.site-nav {
  display: flex;
  gap: clamp(16px, 2.4vw, 28px);
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--slate-body);
  font-size: 15px;
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(64px, 8vw, 116px);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: .8;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 43, 85, .82) 0%, rgba(8, 43, 85, .62) 40%, rgba(8, 43, 85, .95) 100%);
}
.hero .wrap {
  position: relative;
}
.hero-content {
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -.028em;
  line-height: 1.04;
  color: #fff;
  max-width: 22ch;
}
.hero-lede {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--on-navy-body);
  max-width: 54ch;
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.btn {
  display: inline-block;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}
.btn:hover, .btn:focus-visible { text-decoration: none; }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 26px;
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--gold-hover); color: var(--navy); }
.btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, .34);
  color: #fff;
  font-weight: 600;
  padding: 14px 24px;
}
.btn-secondary:hover, .btn-secondary:focus-visible { border-color: #fff; color: #fff; }

/* Sections */
main > section {
  padding-top: clamp(56px, 6.5vw, 96px);
}
.lineup { padding-top: clamp(52px, 6vw, 88px); }

.section-head { margin-bottom: clamp(28px, 3vw, 40px); }
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.08;
}

/* Lineup */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
  align-items: stretch;
}
.card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.card-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.card-header img { height: 30px; width: auto; }
.pill {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 5px 10px;
  border-radius: 7px;
}
.card p { font-size: 16px; color: var(--slate-body); }
.card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--link-blue);
}
.card-placeholder {
  background: rgba(247, 250, 252, .55);
  border: 1.5px dashed var(--dashed-border);
  border-radius: 18px;
  padding: 30px;
}
.card-placeholder h3, .card-placeholder p { color: var(--slate-muted); }
.card-placeholder h3 { font-size: 19.5px; font-weight: 700; letter-spacing: -.015em; margin-bottom: 10px; }
.card-placeholder p { font-size: 15.5px; line-height: 1.6; }

/* Lakeday product section */
.product-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  gap: clamp(36px, 4vw, 60px);
  align-items: center;
}
.product-copy h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.08;
}
.product-copy .lede {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--slate-body);
  margin-top: 18px;
}
.product-status {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-body);
  margin-top: 18px;
}
.product-copy .card-link { margin-top: 22px; font-size: 15.5px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
.pillar { background: var(--card-bg); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-card); }
.pillar-rule { width: 34px; height: 6px; border-radius: 3px; background: var(--gold); margin-bottom: 20px; }
.pillar h3 { font-size: 19.5px; font-weight: 700; letter-spacing: -.015em; margin-bottom: 10px; }
.pillar p { font-size: 15.5px; line-height: 1.55; color: var(--slate-body); }

/* Product mock */
.mock-frame {
  background: var(--page-bg);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow-raised);
}
.mock-inner { display: flex; flex-direction: column; gap: 12px; }
.mock-today-row { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px; }
.mock-today-label { font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-faint); }
.mock-dots { display: flex; gap: 6px; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: #D4DFE9; }
.mock-dot.gold { background: var(--gold); }

.mock-navy {
  background: var(--navy);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-navy);
  color: var(--cream);
}
.mock-navy-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.mock-next-label { font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.mock-chip { font-size: 10.5px; font-weight: 700; background: rgba(255, 255, 255, .14); color: #fff; padding: 4px 8px; border-radius: 6px; }
.mock-time-row { display: flex; align-items: baseline; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.mock-time { font-size: 32px; font-weight: 300; font-variant-numeric: tabular-nums; }
.mock-time small { font-size: 17px; }
.mock-title { font-size: 32px; font-weight: 600; letter-spacing: -.02em; }
.mock-meta { margin-top: 12px; font-size: 14.5px; color: #A9C2D8; }
.mock-meta.warm { color: var(--on-navy-warm); margin-top: 4px; }

.mock-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gold-pale);
  border-radius: 14px;
  padding: 13px 16px;
}
.mock-strip-icon { width: 30px; height: 30px; border-radius: 9px; background: var(--gold); flex: 0 0 auto; }
.mock-strip-title { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.mock-strip-meta { font-size: 12.5px; color: var(--slate-muted); }

.mock-menu {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
}
.mock-menu-label { font-size: 10.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--slate-faint); margin-bottom: 10px; }
.mock-menu-row { display: flex; align-items: center; gap: 12px; padding-block: 10px; }
.mock-menu-row + .mock-menu-row { border-top: 1px solid var(--divider); }
.mock-menu-thumb { width: 38px; height: 38px; border-radius: 9px; background: var(--neutral-fill); flex: 0 0 auto; }
.mock-menu-title { font-size: 14.5px; font-weight: 700; }
.mock-menu-meta { font-size: 12px; color: var(--slate-muted); }

/* About */
.about-panel {
  background: var(--card-bg);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
}
.about-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 35% 80%;
}
.about-copy { padding: clamp(32px, 4vw, 52px); }
.about-copy h2 {
  font-size: clamp(27px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.1;
}
.about-copy p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--slate-body);
  margin-top: 16px;
}
.about-copy p:first-of-type { margin-top: 22px; }

/* Support */
.support-head h2 {
  font-size: clamp(27px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.1;
  max-width: 24ch;
}
.support-head .lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate-body);
  max-width: 58ch;
  margin-top: 16px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 24px;
  margin-top: 36px;
}
.support-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.support-label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate-body);
  margin-bottom: 10px;
}
.support-card a { font-size: 16.5px; font-weight: 600; }

/* Contact */
.contact {
  background: var(--navy);
  color: var(--cream);
  border-radius: 22px;
  padding: clamp(32px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 4vw, 56px);
}
.contact-left h2 {
  font-size: clamp(25px, 2.8vw, 34px);
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.15;
  color: #fff;
  margin-top: 14px;
}
.contact address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.7;
  color: var(--on-navy-body);
  margin-top: 16px;
}
.contact-rows { display: flex; flex-direction: column; gap: 20px; }
.contact-row-label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-navy-label);
  margin-bottom: 6px;
}
.contact-rows a {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
.contact-rows a:hover, .contact-rows a:focus-visible { color: var(--gold); }
.contact-rows a:focus-visible { outline-color: var(--gold); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--page-bg);
}
.site-footer .wrap {
  padding-block: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-meta {
  font-size: 13.5px;
  color: var(--slate-muted);
}
.footer-meta a { color: var(--slate-muted); }

.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;
}
