: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/site-images-v3/raw-footage-hero-boat-sunrise-v2.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);
}

.theme-download {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 560px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(248, 211, 122, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(248, 211, 122, 0.25), rgba(255, 255, 255, 0.12)),
    rgba(5, 20, 19, 0.62);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.theme-download:hover,
.theme-download:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(248, 211, 122, 0.82);
  background:
    linear-gradient(135deg, rgba(248, 211, 122, 0.36), rgba(255, 255, 255, 0.16)),
    rgba(5, 20, 19, 0.72);
}

.theme-download-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--graphite);
}

.theme-download-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-download strong,
.theme-download small {
  display: block;
}

.theme-download strong {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.theme-download small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.theme-sound-prompt {
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: 20px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto 38px;
  gap: 14px;
  align-items: center;
  width: min(700px, calc(100% - 28px));
  padding: 12px;
  border: 1px solid rgba(248, 211, 122, 0.55);
  border-radius: var(--radius);
  background: rgba(5, 25, 24, 0.96);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translate(-50%, calc(100% + 42px));
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.theme-sound-prompt[hidden] {
  display: none;
}

.theme-sound-prompt.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.theme-sound-prompt[data-mode="playing"] {
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.theme-sound-prompt[data-mode="playing"] .theme-sound-dismiss {
  display: none;
}

.theme-sound-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 7px rgba(242, 178, 74, 0.12);
}

.theme-sound-mark::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--graphite);
  content: "";
  transform: translate(-50%, -50%);
}

.theme-sound-copy,
.theme-sound-copy strong,
.theme-sound-copy span {
  display: block;
  min-width: 0;
}

.theme-sound-copy strong {
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}

.theme-sound-copy span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.theme-sound-start,
.theme-sound-dismiss {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.theme-sound-start {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--graphite);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.theme-sound-start:hover,
.theme-sound-start:focus-visible {
  background: var(--sun);
}

.theme-sound-start:disabled {
  cursor: wait;
  opacity: 0.72;
}

.theme-sound-start-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
}

.theme-sound-prompt[data-mode="playing"] .theme-sound-start-icon {
  width: 11px;
  height: 11px;
  border: 0;
  background: currentColor;
}

.theme-sound-dismiss {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 28px;
  line-height: 1;
}

.theme-sound-dismiss:hover,
.theme-sound-dismiss:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.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(118px, 11vw, 148px) 0 clamp(76px, 8vw, 110px);
  background:
    linear-gradient(145deg, rgba(94, 199, 232, 0.15), transparent 36%),
    linear-gradient(320deg, rgba(242, 178, 74, 0.14), transparent 34%),
    #071b1d;
  color: var(--white);
}

body.game-page-active .theme-sound-prompt {
  right: auto;
  bottom: 14px;
  left: 14px;
  width: min(470px, calc(100% - 28px));
}

.game-shell {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}

.game-titlebar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.game-titlebar h1 {
  margin: 6px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.game-titlebar p:not(.section-kicker) {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
}

.game-tools {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.game-tool {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.game-tool:hover,
.game-tool:focus-visible,
.game-tool[aria-pressed="true"] {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--graphite);
}

.game-tool:disabled {
  cursor: not-allowed;
  opacity: 0.34;
}

.game-tool svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.game-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: #071514;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42);
}

.game-playbar {
  display: none;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 7px 9px 7px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #061615;
}

.game-playbar > div:first-child {
  display: grid;
  min-width: 0;
  margin-right: auto;
}

.game-playbar small {
  color: var(--amber);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.game-playbar strong {
  margin-top: 3px;
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-playbar-chart {
  display: grid;
  min-width: 76px;
  text-align: right;
}

.game-playbar-actions {
  display: flex;
  gap: 5px;
}

.game-playbar-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
}

.game-playbar-button:hover,
.game-playbar-button:focus-visible,
.game-playbar-button[aria-pressed="true"] {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--graphite);
}

.game-playbar-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

html.game-play-mode,
body.game-play-mode {
  overflow: hidden;
  overscroll-behavior: none;
}

body.game-play-mode {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.game-play-mode .theme-sound-prompt {
  display: none;
}

body.game-play-mode .game-console {
  position: fixed;
  inset: 10px;
  z-index: 120;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  width: auto;
  height: calc(100dvh - 20px);
  max-height: none;
  margin: 0;
  border-color: rgba(255, 255, 255, 0.28);
  background: #061615;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.72);
}

body.game-play-mode .game-playbar {
  display: flex;
}

body.game-play-mode .game-stage {
  min-height: 0;
  aspect-ratio: auto;
}

body.game-play-mode .game-hud > div {
  min-height: 62px;
  padding: 8px 12px;
}

body.game-play-mode .game-hud strong {
  margin-top: 3px;
  font-size: 1.55rem;
}

body.game-play-mode .game-hud-location strong,
body.game-play-mode .game-hud-mission strong {
  font-size: 1.22rem;
}

body.game-play-mode .game-hud small {
  margin-top: 3px;
}

body.game-play-mode .game-readout,
body.game-play-mode .game-drag-readout,
body.game-play-mode .game-prompt {
  padding: 8px 12px;
}

body.game-play-mode .game-bar,
body.game-play-mode .game-drag-dots {
  margin-top: 6px;
}

body.game-play-mode .game-command-deck {
  gap: 8px;
  padding: 8px;
}

body.game-play-mode .game-lure-picker button,
body.game-play-mode .game-action {
  min-height: 54px;
}

.game-hud {
  display: grid;
  grid-template-columns: minmax(190px, 1.25fr) minmax(260px, 1.8fr) repeat(4, minmax(88px, 0.58fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.game-hud > div {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 82px;
  padding: 13px 16px;
  background: #0a2221;
}

.game-hud span,
.game-readout > span,
.game-drag-readout > span {
  color: var(--amber);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.game-hud strong {
  overflow: hidden;
  margin-top: 6px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 0.94;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-hud-location strong,
.game-hud-mission strong {
  font-size: clamp(1.2rem, 2vw, 1.72rem);
}

.game-hud small {
  overflow: hidden;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  background: #092b3a;
  isolation: isolate;
}

.game-canvas-host {
  position: absolute;
  inset: 0;
  overflow: hidden;
  outline: none;
  touch-action: pan-y pinch-zoom;
}

.game-canvas-host canvas {
  display: block;
  margin: auto;
}

.game-stage-score {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(4, 18, 18, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.game-stage-score span {
  display: grid;
  gap: 2px;
  min-width: 82px;
  padding: 8px 11px;
}

.game-stage-score span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.game-stage-score small {
  color: var(--amber);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.game-stage-score strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1;
}

.game-callout {
  position: absolute;
  left: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 5;
  display: grid;
  gap: 2px;
  max-width: min(420px, calc(100% - 24px));
  padding: 12px 16px;
  border-left: 5px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(4, 18, 18, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transform-origin: left bottom;
  animation: game-callout-in 180ms ease-out both;
}

.game-callout span {
  color: var(--amber);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.game-callout strong {
  color: var(--white);
  font-size: clamp(0.86rem, 1.5vw, 1.03rem);
  line-height: 1.3;
}

@keyframes game-callout-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.game-toast {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 6;
  max-width: calc(100% - 36px);
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(4, 18, 18, 0.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.game-modal {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  overflow-y: auto;
  background:
    linear-gradient(90deg, rgba(3, 16, 18, 0.9), rgba(3, 16, 18, 0.55), rgba(3, 16, 18, 0.9)),
    url("assets/site-images-v3/raw-footage-hero-boat-sunrise-v2.jpg") center / cover;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.game-modal[data-mode="start"] {
  overflow-y: hidden;
  touch-action: pan-y pinch-zoom;
}

.game-modal:not([data-mode="start"]) {
  position: fixed;
  z-index: 80;
  background: rgba(3, 16, 18, 0.84);
}

.game-modal.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.game-modal-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(700px, 100%);
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(5, 23, 23, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  text-align: center;
  backdrop-filter: blur(16px);
}

.game-modal-logo {
  width: min(280px, 72%);
  max-height: 84px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
}

.game-modal-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.game-modal-panel > p:not(.section-kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.game-lake-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}

.game-lake-picker button {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.game-lake-picker button:hover,
.game-lake-picker button:focus-visible,
.game-lake-picker button[aria-selected="true"] {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--graphite);
}

.game-lake-picker button span {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.game-lake-picker button small {
  color: inherit;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0.68;
}

.game-lake-detail {
  min-height: 46px;
}

.game-result-mark {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: rgba(242, 178, 74, 0.12);
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.game-result-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}

.game-result-stats div {
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.game-result-stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.game-result-stats strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.game-perk-heading {
  width: 100%;
  margin: 4px 0 -4px;
  color: var(--amber);
  font-size: 10px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.game-perk-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}

.game-perk-picker button {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease;
}

.game-perk-picker button:hover,
.game-perk-picker button:focus-visible {
  border-color: var(--sky);
  background: rgba(94, 199, 232, 0.13);
}

.game-perk-picker strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.game-perk-picker small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  line-height: 1.35;
}

.game-guide-list {
  display: grid;
  gap: 7px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.game-guide-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.game-guide-list b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--graphite);
  font-family: var(--font-heading);
  line-height: 1;
}

.game-readouts {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) minmax(120px, 0.6fr) minmax(280px, 1.7fr);
  gap: 1px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.12);
}

.game-readout,
.game-drag-readout,
.game-prompt {
  min-width: 0;
  margin: 0;
  padding: 12px 16px;
  background: #0a2221;
}

.game-bar {
  position: relative;
  height: 10px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.game-bar::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 68%;
  width: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.62);
}

.game-bar i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #54d6aa, var(--amber), #e65d52);
  transition: width 100ms linear;
}

.game-bar-stamina::after {
  display: none;
}

.game-bar-stamina i {
  background: linear-gradient(90deg, #e65d52, var(--amber), #54d6aa);
}

.game-drag-readout {
  display: grid;
  align-content: center;
}

.game-drag-dots {
  display: flex;
  gap: 5px;
  margin-top: 9px;
}

.game-drag-dots i {
  width: 18px;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.game-drag-dots i.is-active {
  background: var(--amber);
}

.game-prompt {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.game-command-deck {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 126px 190px;
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  background: #061615;
}

.game-lure-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.game-lure-picker button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 66px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease;
}

.game-lure-picker button:hover,
.game-lure-picker button:focus-visible,
.game-lure-picker button[aria-checked="true"] {
  border-color: var(--sky);
  background: rgba(94, 199, 232, 0.13);
}

.game-lure-picker button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.game-lure-picker button > span:last-child {
  display: grid;
  min-width: 0;
}

.game-lure-picker strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.game-lure-picker small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.game-lure-mark {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}

.game-lure-jig::before {
  position: absolute;
  top: 3px;
  left: 8px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--amber);
  border-radius: 50%;
  content: "";
}

.game-lure-jig::after {
  position: absolute;
  top: 15px;
  left: 14px;
  width: 10px;
  height: 12px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  transform: skewX(-18deg);
}

.game-lure-spoon::before {
  position: absolute;
  top: 4px;
  left: 8px;
  width: 14px;
  height: 22px;
  border: 2px solid var(--sky);
  border-radius: 50%;
  content: "";
  transform: rotate(24deg);
}

.game-lure-crank::before {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 22px;
  height: 13px;
  border-radius: 55% 45% 48% 52%;
  background: #e65d52;
  content: "";
}

.game-lure-crank::after {
  position: absolute;
  top: 19px;
  left: 17px;
  width: 10px;
  height: 7px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
}

.game-dpad {
  display: grid;
  grid-template-columns: repeat(3, 38px);
  grid-template-rows: repeat(2, 32px);
  gap: 4px;
  align-content: center;
  justify-content: center;
  width: 126px;
}

.game-dpad button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
  touch-action: manipulation;
}

.game-dpad button:hover,
.game-dpad button:focus-visible,
.game-dpad button.is-pressed {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--graphite);
}

.game-dpad button[data-game-direction="up"] {
  grid-column: 2;
}

.game-dpad button[data-game-direction="left"] {
  grid-column: 1;
  grid-row: 2;
}

.game-dpad button[data-game-direction="down"] {
  grid-column: 2;
  grid-row: 2;
}

.game-dpad button[data-game-direction="right"] {
  grid-column: 3;
  grid-row: 2;
}

.game-dpad svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.game-action {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 66px;
  padding: 8px 16px;
  border: 0;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--graphite);
  cursor: pointer;
  touch-action: manipulation;
  transition: background 140ms ease, transform 140ms ease;
}

.game-action:hover,
.game-action:focus-visible,
.game-action.is-pressed {
  background: var(--sun);
  transform: translateY(-1px);
}

.game-action:disabled {
  cursor: not-allowed;
  opacity: 0.36;
  transform: none;
}

.game-action span {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.game-action small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0.58;
}

.game-progress {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.58fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  margin-top: clamp(54px, 7vw, 86px);
}

.game-catchbook > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.game-catchbook h2,
.game-record-board h2 {
  margin: 5px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.game-catch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.game-catch-entry {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.game-catch-silhouette {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.26);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.game-catch-entry.is-caught .game-catch-silhouette {
  background: rgba(242, 178, 74, 0.14);
  color: var(--amber);
}

.game-catch-entry strong,
.game-catch-entry small {
  display: block;
}

.game-catch-entry strong {
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-catch-entry small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.game-record-board dl {
  margin: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.game-record-board dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.game-record-board dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.game-record-board dd {
  margin: 0;
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

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

.section-youtube-home {
  padding: clamp(72px, 8vw, 102px) 0;
  background:
    linear-gradient(120deg, rgba(13, 47, 47, 0.98), rgba(5, 25, 24, 0.98)),
    var(--deep-water);
  color: var(--white);
}

.youtube-feed-shell,
.youtube-player-shell,
.youtube-feed-heading {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.youtube-feed-header,
.youtube-feed-heading,
.youtube-player-bar {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
}

.youtube-feed-header .section-heading {
  width: min(760px, 100%);
  margin: 0;
  text-align: left;
}

.youtube-feed-header .section-heading h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.youtube-feed-header .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.youtube-feed-grid {
  width: 100%;
  margin-top: 30px;
  transition: opacity 180ms ease;
}

.youtube-feed-grid[aria-busy="true"] {
  opacity: 0.8;
}

.youtube-feed-card .video-body {
  min-height: 220px;
}

.youtube-feed-home .video-body {
  min-height: 190px;
}

.youtube-feed-card .video-body strong {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.youtube-newest-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: #e62117;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.youtube-feed-status {
  margin: 10px 0 0;
  color: rgba(12, 21, 20, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.section-youtube-home .youtube-feed-status {
  color: rgba(255, 255, 255, 0.68);
}

.youtube-player-shell {
  margin-bottom: 58px;
}

.youtube-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(13, 47, 47, 0.16);
  border-radius: var(--radius);
  background: #061918;
  box-shadow: 0 30px 80px rgba(13, 47, 47, 0.2);
}

.youtube-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-player-bar {
  align-items: center;
  padding-top: 18px;
}

.youtube-player-copy {
  display: grid;
  gap: 5px;
}

.youtube-player-copy strong {
  color: var(--graphite);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.youtube-feed-heading {
  align-items: end;
  margin-bottom: 24px;
}

.youtube-feed-heading h2 {
  margin: 5px 0 0;
  color: var(--graphite);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.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-socials {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

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

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(12, 21, 20, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--graphite);
  font-size: 13px;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.footer-social-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  border-radius: 4px;
  background: var(--deep-water);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.footer-social-link[data-social="instagram"] .footer-social-mark {
  background: #b62a74;
}

.footer-social-link[data-social="tiktok"] .footer-social-mark,
.footer-social-link[data-social="x"] .footer-social-mark {
  background: #111;
}

.footer-social-link[data-social="facebook"] .footer-social-mark {
  background: #1877f2;
  font-size: 15px;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible {
  border-color: rgba(12, 21, 20, 0.34);
  background: var(--white);
  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;
  }

  .game-shell {
    width: calc(100% - 32px);
  }

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

  .game-hud-location,
  .game-hud-mission {
    grid-column: span 2;
  }

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

  .game-prompt {
    grid-column: 1 / -1;
    min-height: 52px;
  }

  .game-command-deck {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .game-lure-picker {
    grid-column: 1 / -1;
  }

  .game-dpad {
    justify-self: start;
  }

  .game-progress {
    grid-template-columns: 1fr;
  }

  .game-record-board {
    max-width: 620px;
  }

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

  .youtube-feed-header,
  .youtube-feed-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .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,
    .youtube-feed-shell,
    .youtube-player-shell,
    .youtube-feed-heading,
    .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);
  }

  .youtube-player-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .youtube-feed-card .video-body,
  .youtube-feed-home .video-body {
    min-height: auto;
  }

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

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

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

  .theme-sound-prompt {
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    gap: 11px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 12px;
  }

  .theme-sound-prompt[data-mode="playing"] {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .theme-sound-mark {
    width: 42px;
    height: 42px;
  }

  .theme-sound-copy strong {
    font-size: 20px;
  }

  .theme-sound-copy span {
    font-size: 12px;
  }

  .theme-sound-start {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .theme-sound-dismiss {
    width: 34px;
    height: 34px;
  }

  .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: 100px 0 58px;
  }

  .game-shell {
    width: calc(100% - 24px);
  }

  body.game-play-mode .game-console {
    inset: 0;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  body.game-play-mode .game-playbar {
    min-height: 48px;
    padding: 6px 7px 6px 10px;
  }

  body.game-play-mode .game-playbar-chart {
    min-width: 58px;
  }

  body.game-play-mode .game-playbar-button {
    width: 34px;
    height: 34px;
  }

  body.game-play-mode .game-hud {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.game-play-mode .game-hud-location,
  body.game-play-mode .game-hud-mission {
    grid-column: span 2;
  }

  body.game-play-mode .game-hud > div {
    min-height: 49px;
    padding: 6px 8px;
  }

  body.game-play-mode .game-hud strong {
    font-size: 1.18rem;
  }

  body.game-play-mode .game-hud small {
    display: none;
  }

  body.game-play-mode .game-readouts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.game-play-mode .game-drag-readout {
    grid-column: auto;
  }

  body.game-play-mode .game-prompt {
    grid-column: 1 / -1;
    min-height: 34px;
    padding-block: 6px;
  }

  body.game-play-mode .game-command-deck {
    grid-template-columns: 126px minmax(0, 1fr);
  }

  body.game-play-mode .game-action {
    min-height: 62px;
  }

  .game-titlebar {
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .game-titlebar h1 {
    font-size: clamp(3.1rem, 15vw, 4.35rem);
  }

  .game-titlebar p:not(.section-kicker) {
    max-width: 230px;
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .game-tools {
    gap: 5px;
  }

  .game-tool {
    width: 40px;
    height: 40px;
  }

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

  .game-hud-location,
  .game-hud-mission {
    grid-column: 1 / -1;
  }

  .game-hud > div {
    min-height: 60px;
    padding: 10px 12px;
  }

  .game-hud strong {
    font-size: 1.45rem;
  }

  .game-hud-location strong,
  .game-hud-mission strong {
    font-size: 1.25rem;
  }

  .game-stage {
    aspect-ratio: auto;
    min-height: 480px;
  }

  .game-modal {
    padding: 10px;
  }

  .game-modal-panel {
    gap: 10px;
    padding: 16px;
  }

  .game-modal-logo {
    width: 190px;
    max-height: 48px;
  }

  .game-modal-panel h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .game-lake-picker,
  .game-perk-picker {
    grid-template-columns: 1fr;
  }

  .game-lake-picker button {
    min-height: 52px;
    padding: 8px 10px;
  }

  .game-lake-picker button span {
    font-size: 1.2rem;
  }

  .game-lake-detail {
    min-height: 0;
    font-size: 12px;
  }

  .game-result-mark {
    width: 62px;
    height: 62px;
    font-size: 1.45rem;
  }

  .game-result-stats strong {
    font-size: 1.15rem;
  }

  .game-perk-picker button {
    min-height: 60px;
  }

  .game-callout {
    max-width: calc(100% - 24px);
    padding: 10px 12px;
  }

  .game-stage-score {
    top: 42px;
    right: 10px;
    bottom: auto;
  }

  .game-stage-score span {
    min-width: 66px;
    padding: 7px 9px;
  }

  .game-stage-score strong {
    font-size: 1.2rem;
  }

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

  .game-readout,
  .game-drag-readout,
  .game-prompt {
    padding: 10px 12px;
  }

  .game-drag-readout,
  .game-prompt {
    grid-column: 1 / -1;
  }

  .game-drag-readout {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
  }

  .game-drag-dots {
    margin-top: 0;
  }

  .game-command-deck {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .game-lure-picker {
    grid-column: 1 / -1;
  }

  .game-lure-picker button {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 56px;
    padding: 8px 5px;
    text-align: center;
  }

  .game-lure-mark,
  .game-lure-picker small {
    display: none;
  }

  .game-dpad {
    justify-self: start;
  }

  .game-action {
    min-height: 68px;
  }

  .game-progress {
    gap: 46px;
    margin-top: 54px;
  }

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

  .game-catch-entry {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 80px;
    padding: 10px;
  }

  .game-catch-silhouette {
    width: 34px;
    height: 34px;
  }

  .game-catch-entry strong {
    font-size: 1.05rem;
  }

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