:root {
  --ink: #06252c;
  --ink-soft: #0d3c45;
  --lake: #08697a;
  --aqua: #55ded3;
  --aqua-soft: #b6f1e9;
  --sun: #ff825c;
  --gold: #f4c86b;
  --paper: #f4f0e7;
  --paper-deep: #e7e1d5;
  --white: #fffdf8;
  --muted: #5d6b6c;
  --line: rgba(6, 37, 44, 0.16);
  --shadow: 0 24px 70px rgba(0, 31, 39, 0.16);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 48px));
  --display: "Arial Narrow", "Avenir Next Condensed", "Franklin Gothic Condensed", Impact, sans-serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

body.menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
}

.section-kicker,
.eyebrow {
  margin: 0 0 22px;
  color: var(--lake);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.25;
  text-transform: uppercase;
}

.display-title,
.section-heading h2,
.coaching h2,
.boat-details h2,
.faq h2,
.contact h2,
.photo-package h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.2vw, 7.25rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.84;
  text-transform: uppercase;
}

.section-lede {
  max-width: 690px;
  margin: 0;
  color: #385154;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 18px 0;
  color: var(--white);
  transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1, 20, 25, 0.55), transparent);
  content: "";
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding: 10px 0;
  background: rgba(4, 35, 42, 0.94);
  box-shadow: 0 8px 30px rgba(0, 10, 15, 0.25);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after,
.site-header.is-open::after {
  opacity: 0;
}

.nav-shell {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.055em;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.21em;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-menu > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.site-menu > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--aqua);
  content: "";
  transition: transform 180ms ease;
}

.site-menu > a:not(.nav-cta):hover::after,
.site-menu > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  color: var(--ink);
  border-color: var(--aqua);
  background: var(--aqua);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  animation: hero-breathe 14s ease-out both;
}

@keyframes hero-breathe {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

.hero-wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 22, 27, 0.9) 0%, rgba(0, 22, 27, 0.6) 43%, rgba(0, 22, 27, 0.05) 75%),
    linear-gradient(0deg, rgba(0, 22, 27, 0.72) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: clamp(90px, 11vh, 140px);
}

.hero .eyebrow {
  color: var(--aqua-soft);
}

.hero h1 {
  max-width: 970px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 10.5vw, 10.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.76;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 20, 26, 0.2);
}

.hero h1 em,
.photo-package h2 em,
.contact h2 em {
  color: var(--aqua);
  font-style: normal;
}

.hero-lede {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-bright {
  color: var(--ink);
  background: var(--aqua);
  box-shadow: 0 12px 32px rgba(85, 222, 211, 0.22);
}

.button-bright:hover {
  background: var(--white);
  box-shadow: 0 15px 36px rgba(0, 20, 26, 0.3);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(0, 20, 25, 0.12);
  backdrop-filter: blur(7px);
}

.button-ghost:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  animation: cue-bob 1.8s ease-in-out infinite;
}

@keyframes cue-bob {
  50% { transform: translateY(5px); }
}

.credential-bar {
  color: var(--white);
  background: var(--ink);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.credential-grid > div {
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(12px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.credential-grid > div:first-child {
  padding-left: 0;
}

.credential-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.credential-icon {
  color: var(--aqua);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.credential-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.credential-grid strong {
  color: var(--white);
  font-size: 0.96rem;
}

.intro {
  background:
    radial-gradient(circle at 10% 20%, rgba(85, 222, 211, 0.13), transparent 25%),
    var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 2fr);
  gap: 56px;
}

.intro .section-lede {
  margin-top: 46px;
  margin-left: auto;
}

.experiences {
  padding-top: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 50px;
}

.section-heading h2 {
  max-width: 800px;
  font-size: clamp(3.3rem, 7vw, 6.5rem);
}

.section-heading > p {
  max-width: 330px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.experience-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.35);
  transition: color 260ms ease, background 260ms ease, transform 260ms ease;
}

.experience-card::before {
  position: absolute;
  inset: auto -30% -70% 20%;
  width: 120%;
  aspect-ratio: 1;
  border: 1px solid rgba(85, 222, 211, 0.3);
  border-radius: 50%;
  content: "";
  transition: transform 500ms ease;
}

.experience-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--ink-soft);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.experience-card:hover::before {
  transform: translate(-15%, -15%) scale(1.2);
}

.card-number {
  color: var(--lake);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.experience-card:hover .card-number {
  color: var(--aqua);
}

.card-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 40px 0 30px;
  color: var(--lake);
}

.card-icon-silhouette {
  width: 108px;
  height: 94px;
  margin: 27px 0 21px;
  background-color: currentColor;
  -webkit-mask-image: var(--activity-icon);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: var(--activity-icon);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.icon-wakesurfing { --activity-icon: url("icons-20260815-v3/wakesurfing.png"); }
.icon-wakeboarding { --activity-icon: url("icons-20260815-v3/wakeboarding.png"); }
.icon-slalom-skiing { --activity-icon: url("icons-20260815-v3/slalom-skiing.png"); }
.icon-tubing { --activity-icon: url("icons-20260815-v3/tubing.png"); }
.icon-production { --activity-icon: url("icons-20260815-v3/production.png"); }
.icon-scenic-cruise { --activity-icon: url("icons-20260815-v3/scenic-cruise.png"); }

.card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.experience-card:hover .card-icon {
  color: var(--aqua);
}

.experience-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.experience-card p {
  position: relative;
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.experience-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.coaching {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.coaching-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
}

.coaching-grid > * {
  min-width: 0;
}

.coaching-photo {
  position: relative;
}

.coaching-photo::before {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: -18px;
  width: 46%;
  height: 40%;
  border-top: 2px solid var(--aqua);
  border-left: 2px solid var(--aqua);
  content: "";
}

.coaching-photo picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
}

.coaching-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.photo-stamp {
  position: absolute;
  z-index: 3;
  right: -36px;
  bottom: 30px;
  width: 144px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--aqua);
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.photo-stamp span {
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.photo-stamp strong {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 0.82;
}

.coaching .section-kicker {
  color: var(--aqua);
}

.coaching h2 {
  font-size: clamp(3.2rem, 4.8vw, 4.7rem);
}

.coaching-copy > p:not(.section-kicker) {
  max-width: 580px;
  margin: 36px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.coaching-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.coaching-steps li {
  display: grid;
  grid-template-columns: 42px 150px 1fr;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.coaching-steps span {
  color: var(--aqua);
  font-size: 0.68rem;
  font-weight: 900;
}

.coaching-steps strong {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coaching-steps small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.boat {
  background: var(--paper);
}

.boat-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8.2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.boat-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 63%;
}

.boat-visual::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(0, 22, 27, 0.72));
  content: "";
}

.boat-label {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 36px;
  color: var(--white);
}

.boat-label span {
  display: block;
  margin-bottom: 3px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.boat-label strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  letter-spacing: -0.05em;
  line-height: 0.85;
  text-transform: uppercase;
}

.boat-details {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 70px;
  margin-top: 66px;
}

.boat-details h2 {
  font-size: clamp(3.5rem, 6.4vw, 6.4rem);
}

.boat-performance-copy {
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.boat-performance-copy strong {
  color: var(--ink);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.tech-grid > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tech-grid strong {
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

.tech-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gear-panel {
  align-self: start;
  padding: 8px 0 0;
}

.autowake-note {
  margin-bottom: 24px;
  padding: 26px;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink-soft);
}

.autowake-note > span {
  color: var(--aqua);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.autowake-note h3 {
  margin: 10px 0 12px;
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.autowake-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}

.gear-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.gear-list li {
  position: relative;
  padding: 14px 12px 14px 32px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 700;
}

.gear-list li::before {
  position: absolute;
  top: 20px;
  left: 5px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--lake);
  border-left: 2px solid var(--lake);
  content: "";
  transform: rotate(-45deg);
}

.fine-print {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.photo-package {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.photo-package-media,
.photo-package-wash {
  position: absolute;
  inset: 0;
}

.photo-package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-package-wash {
  background: linear-gradient(90deg, rgba(1, 25, 31, 0.94) 0%, rgba(1, 25, 31, 0.72) 48%, rgba(1, 25, 31, 0.15) 100%);
}

.photo-package-content {
  position: relative;
  z-index: 2;
}

.photo-package .section-kicker {
  color: var(--aqua);
}

.photo-package h2 {
  font-size: clamp(4.4rem, 9.5vw, 9rem);
}

.photo-package-content > p:not(.section-kicker) {
  max-width: 590px;
  margin: 34px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.7;
}

.occasions {
  background: var(--paper);
}

.occasions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
}

.occasion-list {
  border-top: 1px solid var(--line);
}

.occasion-list article {
  display: grid;
  grid-template-columns: 38px minmax(160px, 0.75fr) 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.occasion-list span {
  color: var(--lake);
  font-size: 0.66rem;
  font-weight: 900;
}

.occasion-list h3 {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.occasion-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 32px;
}

.package-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.lakes {
  background: var(--paper);
}

.lakes-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 60px;
}

.lakes-heading .section-lede {
  padding-bottom: 8px;
}

.lake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lake-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 16px 45px rgba(1, 31, 38, 0.1);
}

.lake-card::after {
  position: absolute;
  right: -60px;
  bottom: -130px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.035), 0 0 0 80px rgba(255, 255, 255, 0.025);
  content: "";
}

.lake-primary { background: var(--lake); }
.lake-travel { background: var(--ink-soft); }
.lake-custom { color: var(--ink); background: var(--aqua); }

.lake-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lake-card-top strong {
  color: var(--gold);
}

.lake-custom .lake-card-top strong {
  color: var(--ink);
}

.lake-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 20px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.lake-card h3.lake-long-name {
  font-size: clamp(2.35rem, 3.7vw, 3.75rem);
}

.lake-card h3 i {
  color: var(--aqua);
  font-style: normal;
}

.lake-custom h3 i {
  color: var(--lake);
}

.lake-card p {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.lake-custom p {
  color: rgba(6, 37, 44, 0.68);
}

.conditions-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.pricing {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(85, 222, 211, 0.13), transparent 28%),
    var(--ink);
}

.pricing .section-kicker {
  color: var(--aqua);
}

.pricing-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.pricing-heading .section-kicker {
  align-self: start;
  grid-row: span 2;
}

.pricing-heading > p:last-child {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.pricing-heading > p strong {
  color: var(--white);
}

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

.rate-card {
  min-height: 610px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
}

.rate-action {
  color: var(--ink);
  background: var(--aqua);
}

.rate-production {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.rate-label {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rate-price {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: start;
  margin-top: 28px;
}

.rate-price > span {
  margin-top: 12px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
}

.rate-price strong {
  font-family: var(--display);
  font-size: clamp(6rem, 10vw, 9rem);
  letter-spacing: -0.07em;
  line-height: 0.75;
}

.rate-price small {
  grid-column: 2;
  margin-top: 12px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.additional-rate {
  margin-top: 22px;
  padding: 11px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.74rem;
  text-align: center;
}

.rate-card > p {
  max-width: 490px;
  margin: 28px 0;
  color: inherit;
  font-size: 0.92rem;
  opacity: 0.78;
}

.rate-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid currentColor;
}

.rate-card li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
}

.rate-card li span { opacity: 0.7; }

.day-rate {
  margin-top: 38px;
  padding: 24px;
  border-left: 3px solid var(--aqua);
  background: rgba(0, 0, 0, 0.14);
}

.day-rate span,
.day-rate small {
  display: block;
}

.day-rate span {
  color: var(--aqua-soft);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.day-rate strong {
  display: block;
  margin: 7px 0;
  font-family: var(--display);
  font-size: 3.7rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.day-rate small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
}

.booking-terms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.booking-terms > div {
  padding: 30px;
}

.booking-terms > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.booking-terms span {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-terms strong {
  font-size: 1rem;
}

.booking-terms p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.rate-footnote {
  max-width: 900px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  text-align: center;
}

.gallery {
  color: var(--white);
  background: var(--ink);
}

.gallery .section-kicker {
  color: var(--aqua);
}

.gallery-heading > p {
  color: rgba(255, 255, 255, 0.6);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 270px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.gallery-item button {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  padding: 0;
  border: 0;
  color: var(--white);
  background: #0c3942;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 250ms ease;
}

.gallery-tall img {
  object-position: center 62%;
}

.gallery-item button::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(0, 20, 25, 0.8));
  content: "";
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 17px;
  left: 20px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}

.gallery-item button:hover img {
  filter: saturate(1.12);
  transform: scale(1.045);
}

.lightbox {
  width: min(94vw, 1280px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 16, 20, 0.94);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox figcaption {
  padding: 12px 50px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.25);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-grid > * {
  min-width: 0;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  max-width: 100%;
  font-size: clamp(3.2rem, 5.2vw, 5.25rem);
  line-height: 0.9;
}

.faq-intro > p:last-child {
  max-width: 420px;
  margin: 42px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-size: 1.02rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 60px 26px 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 13vw, 170px) 0;
  color: var(--white);
  background: var(--lake);
}

.contact-art span {
  position: absolute;
  top: -0.2em;
  right: -0.05em;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--display);
  font-size: min(42vw, 38rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.contact-art svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 190px;
  fill: rgba(6, 37, 44, 0.16);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
}

.contact .section-kicker {
  color: var(--aqua-soft);
}

.contact h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.contact-panel {
  align-self: center;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(0, 29, 36, 0.24);
  backdrop-filter: blur(12px);
}

.contact-panel > p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.contact-links {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-links a {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-links span {
  color: var(--aqua-soft);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links strong {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.contact-button {
  width: 100%;
  margin-top: 26px;
}

.site-footer {
  padding: 60px 0 24px;
  color: rgba(255, 255, 255, 0.75);
  background: #03191e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: start;
  gap: 60px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid > p {
  max-width: 440px;
  margin: 0;
  font-size: 0.84rem;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 4px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  :root { --container: min(100% - 36px, 900px); }

  .menu-toggle { display: block; }

  .site-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    display: grid;
    gap: 0;
    padding: 0 calc((100vw - var(--container)) / 2);
    background: rgba(4, 35, 42, 0.98);
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease, padding 260ms ease;
    backdrop-filter: blur(18px);
  }

  .site-header.is-open .site-menu {
    max-height: 560px;
    padding-top: 12px;
    padding-bottom: 24px;
    opacity: 1;
  }

  .site-menu > a,
  .site-menu > a:not(.nav-cta) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-menu > a:not(.nav-cta)::after { display: none; }

  .site-menu .nav-cta {
    margin-top: 14px;
    padding-inline: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
  }

  .credential-grid > div {
    padding-inline: 18px;
  }

  .experience-grid { grid-template-columns: repeat(2, 1fr); }

  .coaching-grid,
  .boat-details,
  .faq-grid,
  .occasions-grid {
    grid-template-columns: 1fr;
  }

  .coaching-photo {
    width: min(82%, 640px);
  }

  .coaching-photo picture { aspect-ratio: 5 / 4; }

  .photo-stamp { right: -58px; }

  .boat-details { gap: 48px; }

  .gear-panel { max-width: 690px; }

  .pricing-heading {
    grid-template-columns: 1fr;
  }

  .pricing-heading .section-kicker { grid-row: auto; }

  .gallery-grid {
    grid-auto-rows: 240px;
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-intro { position: static; }

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

  .contact-panel { max-width: 650px; }

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

  .footer-grid > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 30px); --radius: 18px; }

  html { scroll-padding-top: 72px; }

  .section { padding: 84px 0; }

  .brand-mark { width: 40px; height: 40px; }

  .site-header { padding: 12px 0; }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-media img { object-position: 58% 52%; }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(0, 22, 27, 0.92) 0%, rgba(0, 22, 27, 0.64) 58%, rgba(0, 22, 27, 0.15) 100%),
      linear-gradient(90deg, rgba(0, 22, 27, 0.55), transparent);
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 94px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 21vw, 7rem);
    line-height: 0.78;
  }

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

  .hero-actions { display: grid; grid-template-columns: 1fr; }

  .scroll-cue { right: 18px; bottom: 22px; }

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

  .credential-grid > div,
  .credential-grid > div:first-child,
  .credential-grid > div:last-child {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .credential-grid > div:last-child { border-bottom: 0; }

  .intro-grid,
  .lakes-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro .section-lede { margin-top: 32px; margin-left: 0; }

  .display-title,
  .section-heading h2,
  .coaching h2,
  .boat-details h2,
  .faq h2,
  .contact h2,
  .photo-package h2 {
    font-size: clamp(3.2rem, 16vw, 5rem);
    line-height: 0.87;
  }

  .coaching h2 {
    font-size: clamp(3rem, 12.5vw, 4.2rem);
  }

  .faq h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .section-heading {
    display: grid;
    align-items: start;
    gap: 24px;
    margin-bottom: 34px;
  }

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

  .experience-card {
    min-height: 320px;
    padding: 28px;
  }

  .card-icon { margin-block: 28px 20px; }

  .coaching-grid { gap: 60px; }

  .coaching-photo { width: calc(100% - 14px); }

  .coaching-photo picture { aspect-ratio: 4 / 5; }

  .coaching-photo img { object-position: 56% 50%; }

  .photo-stamp {
    right: -14px;
    bottom: -42px;
    width: 112px;
  }

  .photo-stamp strong { font-size: 1.5rem; }

  .coaching-copy > p:not(.section-kicker) { margin-block: 28px; }

  .coaching-steps li {
    grid-template-columns: 34px 1fr;
    gap: 8px;
  }

  .coaching-steps small { grid-column: 2; }

  .boat-visual { aspect-ratio: 4 / 5; }

  .boat-visual img { object-position: 55% 58%; }

  .boat-label { bottom: 22px; left: 22px; }

  .boat-details { margin-top: 48px; }

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

  .tech-grid > div {
    min-height: auto;
    padding: 14px 16px;
  }

  .occasion-list article {
    grid-template-columns: 34px 1fr;
  }

  .occasion-list p { grid-column: 2; }

  .photo-package {
    min-height: 760px;
    align-items: end;
    padding: 90px 0;
  }

  .photo-package-media img { object-position: 55% center; }

  .photo-package-wash {
    background: linear-gradient(0deg, rgba(1, 25, 31, 0.97) 0%, rgba(1, 25, 31, 0.7) 60%, rgba(1, 25, 31, 0.2) 100%);
  }

  .lakes-heading { margin-bottom: 38px; }

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

  .lake-card { min-height: 360px; }

  .pricing-heading { margin-bottom: 38px; }

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

  .rate-card { min-height: auto; }

  .booking-terms { grid-template-columns: 1fr; }

  .booking-terms > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-wide { grid-column: span 2; }

  .gallery-tall { grid-row: span 2; }

  .faq-grid { gap: 50px; }

  .faq-list summary { padding-block: 22px; }

  .contact-grid { gap: 46px; }

  .contact-panel { padding: 25px; }

  .contact-links a { grid-template-columns: 58px 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-grid > p { grid-column: auto; grid-row: auto; }

  .footer-contact { justify-items: start; }

  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 470px) {
  .gallery-grid { grid-auto-rows: 210px; grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
  .gallery-tall { grid-row: span 2; }
  .contact-links a { grid-template-columns: 1fr; gap: 2px; }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
