:root {
  --graphite: #0c1514;
  --deep-water: #0d2f2f;
  --pine: #15483f;
  --reed: #6c8a60;
  --sky: #5ec7e8;
  --amber: #f2b24a;
  --sun: #f8d37a;
  --mist: #f5f7f1;
  --white: #ffffff;
  --line: rgba(13, 47, 47, 0.14);
  --shadow: 0 24px 70px rgba(5, 20, 19, 0.18);
  --radius: 8px;
  --font-heading: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--mist);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--amber);
  color: var(--graphite);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  min-height: 74px;
  margin: 4px auto -88px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(13, 47, 47, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--graphite);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: clamp(166px, 17vw, 232px);
  height: 62px;
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: var(--radius);
  color: rgba(12, 21, 20, 0.72);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 15px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(13, 47, 47, 0.08);
  color: var(--deep-water);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--deep-water);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto 5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, 84svh);
  padding: 128px 0 40px;
  overflow: hidden;
  background: var(--deep-water);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 18, 19, 0.88), rgba(6, 26, 28, 0.65) 45%, rgba(6, 26, 28, 0.15)),
    linear-gradient(0deg, rgba(13, 47, 47, 0.8), rgba(13, 47, 47, 0.14) 46%, rgba(13, 47, 47, 0.4)),
    url("assets/images/raw-footage-hero-boat-sunrise.jpg") center / cover;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  content: "";
  background: linear-gradient(180deg, rgba(13, 47, 47, 0), var(--mist));
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 700px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(4.1rem, 7.2vw, 6.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--amber);
  color: var(--graphite);
  box-shadow: 0 18px 34px rgba(242, 178, 74, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sun);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.17);
}

.hero-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--white);
  transform: rotate(1.2deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-media:hover,
.hero-media:focus-visible {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 30px 86px rgba(5, 20, 19, 0.32);
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
}

.hero-media img {
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 26, 25, 0) 42%, rgba(7, 26, 25, 0.82)),
    linear-gradient(90deg, rgba(7, 26, 25, 0.24), rgba(7, 26, 25, 0));
}

.play-disc {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--graphite);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.play-disc svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.play-disc.small {
  left: 16px;
  top: 16px;
  width: 46px;
  height: 46px;
}

.play-disc.small svg {
  width: 21px;
  height: 21px;
}

.media-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.media-caption strong {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.media-caption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.hero-river {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: 38px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.hero-river div {
  min-height: 88px;
  padding: 20px;
  background: rgba(7, 26, 25, 0.58);
  backdrop-filter: blur(14px);
}

.hero-river span,
.section-kicker,
.video-meta {
  display: block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-river strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
}

.section {
  padding: clamp(78px, 10vw, 122px) 0;
}

main > .section:first-child,
main > .boat-reveal:first-child,
main > .story:first-child {
  padding-top: clamp(132px, 13vw, 168px);
}

.home-directory {
  padding-top: clamp(58px, 7vw, 88px);
  background:
    linear-gradient(180deg, var(--mist), #ffffff 28%, #ffffff 78%, #eaf4f2);
}

.home-directory .section-heading {
  margin-bottom: 30px;
}

.home-directory .section-heading h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
  line-height: 1;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.directory-card {
  display: grid;
  gap: 12px;
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(13, 47, 47, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.directory-card:hover,
.directory-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(94, 199, 232, 0.5);
  box-shadow: 0 24px 64px rgba(13, 47, 47, 0.15);
}

.directory-meta {
  color: var(--reed);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.directory-card h3 {
  margin: 0;
  color: var(--graphite);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.directory-card p {
  margin: 0;
  color: rgba(12, 21, 20, 0.68);
}

.game-page {
  min-height: 100svh;
  padding: clamp(132px, 13vw, 168px) 0 clamp(70px, 8vw, 104px);
  background:
    radial-gradient(circle at 18% 20%, rgba(94, 199, 232, 0.24), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(242, 178, 74, 0.2), transparent 26%),
    linear-gradient(115deg, rgba(5, 20, 19, 0.98), rgba(13, 47, 47, 0.9));
  color: var(--white);
}

.game-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.game-copy h1 {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 7.6vw, 6.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
}

.game-copy p:not(.section-kicker) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
}

.game-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 20, 19, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.game-hud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(130px, 1.3fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.game-hud div {
  min-height: 78px;
  padding: 16px;
  background: rgba(7, 26, 25, 0.82);
}

.game-hud span {
  display: block;
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.game-hud strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 0.9;
}

.game-target-label {
  font-size: clamp(1.28rem, 2.2vw, 1.9rem);
  line-height: 1;
}

.game-tension meter {
  width: 100%;
  height: 15px;
  margin-top: 13px;
  accent-color: var(--amber);
}

.game-stage {
  position: relative;
  overflow: hidden;
  background: #061b26;
}

.game-stage canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 12 / 7;
  cursor: crosshair;
  touch-action: none;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  padding: clamp(22px, 5vw, 54px);
  text-align: center;
  background:
    radial-gradient(circle at 52% 38%, rgba(242, 178, 74, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(5, 20, 19, 0.78), rgba(5, 20, 19, 0.92));
  transition: opacity 180ms ease, transform 180ms ease;
}

.game-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
}

.game-overlay h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.game-overlay p:not(.section-kicker) {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.game-controls {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 74px;
  gap: 10px;
  padding: 12px;
  background: rgba(7, 26, 25, 0.94);
}

.game-control {
  display: inline-grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.game-control:hover,
.game-control:focus-visible {
  background: var(--amber);
  color: var(--graphite);
  transform: translateY(-1px);
}

.game-control svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.game-control-wide {
  background: var(--amber);
  color: var(--graphite);
}

.boat-reveal {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 128px) 0;
  background:
    radial-gradient(circle at 76% 16%, rgba(242, 178, 74, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(5, 20, 19, 0.98), rgba(13, 47, 47, 0.92));
  color: var(--white);
}

.boat-reveal::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 20, 19, 0.86), rgba(5, 20, 19, 0.52), rgba(5, 20, 19, 0.88)),
    radial-gradient(circle at 78% 18%, rgba(242, 178, 74, 0.28), transparent 28%);
}

.boat-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.boat-copy h1,
.boat-copy h2 {
  max-width: 650px;
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
}

.boat-copy p:not(.section-kicker) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
}

.boat-callout {
  display: grid;
  gap: 8px;
  width: min(100%, 500px);
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(242, 178, 74, 0.42);
  border-radius: var(--radius);
  background: rgba(242, 178, 74, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.boat-callout strong {
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.boat-callout span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.boat-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.boat-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.28);
}

.boat-photo-main {
  min-height: 660px;
}

.boat-photo-secondary {
  min-height: 500px;
  transform: translateY(38px);
}

.boat-photo picture,
.boat-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.boat-photo img {
  min-height: inherit;
  object-fit: cover;
}

.boat-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(5, 20, 19, 0.72);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.shop-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(242, 178, 74, 0.2), transparent 28%),
    linear-gradient(180deg, #0b2828, var(--deep-water));
  color: var(--white);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 330px;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 34px;
}

.shop-intro {
  max-width: 760px;
}

.shop-intro h2 {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.shop-intro p:not(.section-kicker) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.03rem;
}

.shop-note {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.shop-note strong {
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.shop-note span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.merch-lookbook {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.82fr);
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 28px;
}

.lookbook-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.lookbook-card-featured {
  grid-row: span 2;
}

.lookbook-card picture,
.lookbook-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.lookbook-card img {
  object-fit: cover;
  transition: transform 260ms ease;
}

.lookbook-card:hover img,
.lookbook-card:focus-visible img {
  transform: scale(1.025);
}

.lookbook-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(5, 20, 19, 0.74);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--graphite);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.product-card-featured {
  grid-column: span 2;
}

.product-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f6f8f4;
}

.product-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-image img,
.product-card:focus-within .product-image img {
  transform: scale(1.025);
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.product-type {
  color: var(--reed);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.product-info p {
  margin: 0;
  color: rgba(12, 21, 20, 0.68);
  font-size: 15px;
}

.product-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
}

.product-action span {
  color: var(--deep-water);
  font-weight: 900;
}

.paypal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--graphite);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 13px;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.paypal-link:hover,
.paypal-link:focus-visible {
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(242, 178, 74, 0.28);
  transform: translateY(-1px);
}

.section-light {
  background:
    linear-gradient(180deg, var(--mist), #ffffff 36%, #ffffff 72%, #eaf4f2);
}

.section-heading {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  width: auto;
  margin: 0;
  text-align: left;
}

.section-heading h1,
.section-heading h2,
.story-copy h1,
.story-copy h2,
.contact-band h2 {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(2.65rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p:not(.section-kicker),
.story-copy p,
.contact-band p {
  color: rgba(12, 21, 20, 0.72);
  font-size: 1.02rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.video-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(13, 47, 47, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(94, 199, 232, 0.5);
  box-shadow: 0 24px 64px rgba(13, 47, 47, 0.16);
}

.video-card-featured {
  grid-column: span 2;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--deep-water);
}

.video-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 26, 25, 0.04), rgba(7, 26, 25, 0.36));
}

.video-thumb picture,
.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}

.video-thumb img {
  object-fit: cover;
  transition: transform 260ms ease;
}

.video-card:hover .video-thumb img,
.video-card:focus-visible .video-thumb img {
  transform: scale(1.035);
}

.video-body {
  display: grid;
  gap: 9px;
  min-height: 210px;
  padding: 22px;
}

.video-card-featured .video-body {
  min-height: 170px;
}

.video-body strong {
  color: var(--graphite);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.video-body span:last-child {
  color: rgba(12, 21, 20, 0.68);
  font-size: 15px;
}

.section-water {
  background:
    radial-gradient(circle at 14% 18%, rgba(94, 199, 232, 0.22), transparent 30%),
    radial-gradient(circle at 84% 74%, rgba(242, 178, 74, 0.18), transparent 28%),
    linear-gradient(115deg, rgba(13, 47, 47, 0.98), rgba(21, 72, 63, 0.92));
  color: var(--white);
}

.water-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-water .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.water-notes {
  display: grid;
  gap: 14px;
}

.water-notes article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.water-notes article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.water-notes article > span:first-child {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--amber);
  font-weight: 900;
}

.water-notes h3 {
  grid-column: 2;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.water-notes p {
  grid-column: 2;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.water-video-link,
.water-video-note {
  grid-column: 2;
  justify-self: start;
  margin-top: 16px;
}

.water-video-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(248, 211, 122, 0.42);
  border-radius: var(--radius);
  padding: 10px 13px;
  background: rgba(248, 211, 122, 0.12);
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.water-video-link:hover,
.water-video-link:focus-visible {
  border-color: rgba(248, 211, 122, 0.78);
  background: rgba(248, 211, 122, 0.2);
  transform: translateY(-1px);
}

.water-video-note {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  max-width: 100%;
  border: 1px solid rgba(248, 211, 122, 0.34);
  border-radius: var(--radius);
  padding: 10px 13px;
  background: rgba(248, 211, 122, 0.1);
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.story {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 126px) 0;
}

.story-media {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 58px);
  gap: 12px;
}

.story-media picture,
.story-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.story-media picture {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(13, 47, 47, 0.14);
}

.story-media img {
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(13, 47, 47, 0.14);
}

.story-media picture img {
  border-radius: 0;
  box-shadow: none;
}

.story-media > :first-child {
  grid-column: 1 / 6;
  grid-row: 1 / 6;
}

.story-media > :nth-child(2) {
  grid-column: 4 / 8;
  grid-row: 4 / 8;
}

.story-media > :nth-child(3) {
  grid-column: 1 / 4;
  grid-row: 5 / 8;
}

.story-media-single {
  display: block;
}

.story-media-single picture,
.story-media-single img {
  display: block;
  width: 100%;
}

.story-media-single picture {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: 0 22px 64px rgba(13, 47, 47, 0.2);
}

.story-media-single img {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.story-copy {
  max-width: 620px;
}

.story-copy p {
  margin: 20px 0 0;
}

.story-copy .story-tagline {
  color: var(--deep-water);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 900;
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--deep-water);
  font-weight: 900;
}

.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translate(2px, -2px);
}

.fishing-section {
  background:
    radial-gradient(circle at 84% 10%, rgba(94, 199, 232, 0.22), transparent 30%),
    linear-gradient(180deg, #ffffff, var(--mist));
}

.topic-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topic-card,
.faq-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 47, 47, 0.08);
}

.topic-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(13, 47, 47, 0.1);
  color: var(--deep-water);
  font-weight: 900;
}

.topic-card h3,
.faq-card h3 {
  margin: 0;
  color: var(--graphite);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.topic-card p,
.faq-card p {
  margin: 0;
  color: rgba(12, 21, 20, 0.68);
  font-size: 15px;
}

.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto 0;
}

.keyword-strip span {
  border: 1px solid rgba(13, 47, 47, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(12, 21, 20, 0.72);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 12px;
}

.faq-section {
  background:
    linear-gradient(180deg, var(--mist), #ffffff);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(44px, 7vw, 76px);
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 24%, rgba(94, 199, 232, 0.2), transparent 28%),
    linear-gradient(100deg, rgba(13, 47, 47, 0.98), rgba(21, 72, 63, 0.92));
  color: var(--white);
  box-shadow: 0 22px 74px rgba(13, 47, 47, 0.18);
}

.contact-band h2 {
  margin-top: 0;
}

.contact-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 58px) 0 34px;
  border-top: 1px solid var(--line);
  color: rgba(12, 21, 20, 0.66);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--deep-water);
  font-weight: 900;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  max-width: 390px;
}

.footer-logo {
  display: block;
  width: min(260px, 100%);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand-block p {
  color: rgba(12, 21, 20, 0.7);
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  border-radius: var(--radius);
  background: var(--deep-water);
  color: var(--white) !important;
  padding: 12px 16px;
  transition: background 160ms ease, transform 160ms ease;
}

.footer-button:hover,
.footer-button:focus-visible {
  background: var(--pine);
  transform: translateY(-1px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-heading {
  color: var(--graphite);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(12, 21, 20, 0.68);
  font-weight: 800;
  line-height: 1.3;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--deep-water);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(28px, 5vw, 48px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(12, 21, 20, 0.62);
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    margin-top: 6px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 86px 18px auto;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(13, 47, 47, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-shell,
  .game-layout,
  .boat-layout,
  .water-layout,
  .story {
    grid-template-columns: 1fr;
  }

  .game-copy {
    max-width: 720px;
  }

  .boat-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .boat-photo-main,
  .boat-photo-secondary {
    min-height: 520px;
    transform: none;
  }

  .hero-media {
    min-height: 390px;
    transform: none;
  }

  .hero-media picture,
  .hero-media img {
    min-height: 390px;
  }

  .hero-river,
  .directory-grid,
  .video-grid,
  .product-grid,
  .topic-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-river,
  .video-grid,
  .product-grid,
  .topic-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .video-card-featured,
  .product-card-featured {
    grid-column: auto;
  }

  .merch-lookbook {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .lookbook-card-featured {
    grid-row: auto;
    min-height: 430px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .water-layout {
    gap: 28px;
  }

  .story {
    padding-top: 86px;
  }

  .story-media {
    grid-template-rows: repeat(7, 48px);
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    max-width: 620px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    width: calc(100% - 24px);
    min-height: 66px;
    margin-bottom: -78px;
    padding: 9px;
  }

  .brand-logo {
    width: 168px;
    height: 42px;
  }

  .hero {
    padding-top: 106px;
  }

    .hero-shell,
    .hero-river,
    .directory-grid,
    .game-layout,
    .boat-layout,
    .video-grid,
    .product-grid,
  .merch-lookbook,
  .topic-grid,
  .faq-grid,
  .keyword-strip,
  .shop-layout,
  .water-layout,
  .story,
  .contact-band,
  .site-footer,
  .section-heading {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 4.1rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 310px;
  }

  .media-caption strong {
    font-size: 24px;
  }

  .hero-river div {
    min-height: auto;
    padding: 17px;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .game-page {
    padding: 106px 0 60px;
  }

  .game-copy h1 {
    font-size: clamp(3.25rem, 16vw, 4.6rem);
  }

  .game-copy p:not(.section-kicker) {
    font-size: 1rem;
  }

  .game-hud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-hud div {
    min-height: 68px;
    padding: 13px;
  }

  .game-tension {
    grid-column: 1 / -1;
  }

  .game-stage canvas {
    min-height: 306px;
    object-fit: cover;
  }

  .game-controls {
    grid-template-columns: 62px minmax(0, 1fr) 62px;
  }

  .game-control {
    min-height: 56px;
  }

  .section {
    padding: 70px 0;
  }

  .boat-reveal {
    padding: 72px 0 84px;
  }

  .boat-copy h1,
  .boat-copy h2 {
    font-size: clamp(3.1rem, 16vw, 4.6rem);
  }

  .boat-callout {
    padding: 18px;
  }

  .boat-gallery {
    grid-template-columns: 1fr;
  }

  .boat-photo-main,
  .boat-photo-secondary {
    min-height: 430px;
  }

  .shop-note {
    padding: 18px;
  }

  .lookbook-card,
  .lookbook-card-featured {
    min-height: 250px;
  }

  .product-info {
    padding: 18px;
  }

  .topic-card,
  .faq-card {
    padding: 18px;
  }

  .product-action {
    align-items: stretch;
    flex-direction: column;
  }

  .paypal-link {
    width: 100%;
  }

  .video-body,
  .video-card-featured .video-body {
    min-height: auto;
    padding: 18px;
  }

  .water-notes article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .water-notes article > span:first-child {
    width: 42px;
    height: 42px;
  }

  .water-notes h3 {
    grid-column: auto;
    font-size: 28px;
  }

  .water-notes p {
    grid-column: auto;
  }

  .water-video-link,
  .water-video-note {
    grid-column: auto;
  }

  .story {
    gap: 28px;
  }

  .story-media {
    display: block;
    gap: 10px;
  }

  .story-media > * {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 0 0 10px;
  }

  .story-media > picture,
  .story-media > img {
    width: 100%;
    height: auto;
  }

  .story-media > :nth-child(2) {
    aspect-ratio: 4 / 5;
  }

  .contact-band {
    padding: 26px 20px;
  }

  .footer-nav,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
