:root {
  --navy: #08233f;
  --deep: #04182d;
  --blue: #0f6d9e;
  --sky: #79c5df;
  --foam: #f6fbfd;
  --sand: #e8d9b8;
  --gold: #d8a83d;
  --ink: #17314a;
  --muted: #64788b;
  --line: rgba(8, 35, 63, 0.12);
  --shadow: 0 24px 70px rgba(4, 24, 45, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--foam);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(246, 251, 253, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(246, 251, 253, 0.95);
  box-shadow: 0 12px 36px rgba(8, 35, 63, 0.12);
}

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

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: var(--foam);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(8, 35, 63, 0.18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.regional-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  padding: 8px 12px;
  border-left: 1px solid var(--line);
}

.regional-mark span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.regional-mark img {
  display: block;
  width: 156px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 12px;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(15, 109, 158, 0.09);
  outline: none;
}

.main-nav .nav-cta {
  margin-left: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 22px rgba(8, 35, 63, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.section {
  position: relative;
  padding: 96px clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  padding-top: 136px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(121, 197, 223, 0.34), transparent 26%),
    linear-gradient(135deg, #04182d 0%, #08233f 48%, #0e5f88 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.hero-map {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(32deg, transparent 0 24px, rgba(232, 217, 184, 0.55) 25px 26px),
    repeating-radial-gradient(circle at 22% 38%, transparent 0 18px, rgba(246, 251, 253, 0.5) 19px 20px);
}

.hero-content,
.hero-visual,
.date-strip {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(4rem, 11vw, 8.8rem);
}

h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h3 {
  color: var(--navy);
  font-size: 1.08rem;
}

.hero-subtitle {
  margin-bottom: 18px;
  color: var(--sand);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.08rem;
}

.hero-actions,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
}

.btn-primary {
  color: var(--deep);
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(216, 168, 61, 0.24);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
  min-height: 520px;
}

.sailboat {
  position: absolute;
  inset: 64px 0 auto auto;
  width: min(100%, 490px);
  filter: drop-shadow(0 34px 36px rgba(0, 0, 0, 0.28));
}

.sailboat path {
  vector-effect: non-scaling-stroke;
}

.sun {
  fill: var(--gold);
  opacity: 0.9;
}

.mast,
.wave {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 8;
}

.mast {
  stroke-width: 7;
}

.sail-a {
  fill: #fff;
}

.sail-b {
  fill: #d9f1f8;
}

.hull {
  fill: var(--sand);
}

.wave {
  opacity: 0.72;
  animation: drift 5.8s ease-in-out infinite alternate;
}

.wave-two {
  animation-delay: -1.4s;
}

.route-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(232, 217, 184, 0.72);
  stroke-dasharray: 9 14;
  stroke-linecap: round;
  stroke-width: 2.5;
}

.route-line circle {
  fill: var(--gold);
  stroke: #fff;
  stroke-width: 3;
}

.compass {
  position: absolute;
  right: 14px;
  bottom: 74px;
  width: 158px;
  height: 158px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.compass span {
  position: absolute;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 900;
}

.compass span:nth-child(1) { left: 50%; top: 8px; transform: translateX(-50%); }
.compass span:nth-child(2) { right: 10px; top: 50%; transform: translateY(-50%); }
.compass span:nth-child(3) { bottom: 8px; left: 50%; transform: translateX(-50%); }
.compass span:nth-child(4) { left: 10px; top: 50%; transform: translateY(-50%); }

.compass div {
  position: absolute;
  inset: 42px;
  background: conic-gradient(from 45deg, var(--gold), transparent 25%, #fff 25%, transparent 50%, var(--gold) 50%, transparent 75%, #fff 75%);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  animation: pulse 3s ease-in-out infinite;
}

.date-strip {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  left: clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.date-strip article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.date-strip span,
.info-grid span,
.payment-card span,
.approval-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.date-strip span {
  color: rgba(255, 255, 255, 0.7);
}

.date-strip strong {
  display: block;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.32rem);
}

.animated-waves {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 68px;
  overflow: hidden;
}

.animated-waves span {
  position: absolute;
  inset: 0 -60px;
  background:
    radial-gradient(70px 34px at 70px 0, transparent 98%, var(--foam) 100%) 0 18px / 140px 52px repeat-x;
  opacity: 0.98;
  animation: waveSlide 10s linear infinite;
}

.animated-waves span:nth-child(2) {
  opacity: 0.55;
  animation-duration: 15s;
  animation-direction: reverse;
}

.badge-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 78px clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 50%, rgba(216, 168, 61, 0.16), transparent 28%),
    linear-gradient(90deg, #fff 0%, #f1f8fb 100%);
}

.badge-copy {
  max-width: 760px;
}

.badge-copy h2 {
  margin-bottom: 14px;
}

.badge-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.badge-frame {
  position: relative;
  width: min(320px, 76vw);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(15, 109, 158, 0.18), rgba(216, 168, 61, 0.24));
  box-shadow: 0 30px 80px rgba(8, 35, 63, 0.18);
}

.badge-frame::before {
  position: absolute;
  inset: -14px;
  border: 1px dashed rgba(15, 109, 158, 0.35);
  border-radius: inherit;
  content: "";
}

.badge-frame img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.04);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p,
.split p,
.camp-panel p,
.contact-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.feature-grid,
.info-grid,
.approval-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  gap: 18px;
}

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

.feature-card,
.info-grid article,
.approval-grid article,
.payment-card,
.accordion article,
.contact-card,
.camp-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 42px rgba(8, 35, 63, 0.07);
}

.feature-card {
  padding: 24px;
}

.feature-card i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, #d9f1f8, #fff5d9);
  border-radius: 50%;
}

.feature-card svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feature-card p,
.timeline p,
.accordion p {
  color: var(--muted);
}

.info-band {
  background:
    linear-gradient(180deg, rgba(216, 168, 61, 0.1), transparent),
    #fff;
}

.info-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-grid article {
  padding: 20px;
}

.info-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

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

.journey {
  background: linear-gradient(180deg, var(--foam), #eaf6fa);
}

.timeline {
  position: relative;
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline::before {
  position: absolute;
  top: 38px;
  right: 9%;
  left: 9%;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--blue) 0 12px, transparent 12px 22px);
  opacity: 0.42;
}

.timeline article {
  position: relative;
  padding-top: 76px;
}

.timeline span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border: 6px solid #eaf6fa;
  border-radius: 50%;
  font-weight: 900;
}

.signup-layout,
.split,
.camp-panel,
.contact-card {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  gap: 14px;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 64px;
  padding: 18px 18px 18px 74px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 35, 63, 0.06);
}

.steps li::before {
  position: absolute;
  top: 14px;
  left: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  content: counter(steps);
  counter-increment: steps;
  font-weight: 900;
}

.payment-card {
  position: sticky;
  top: 104px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(8, 35, 63, 0.98), rgba(15, 109, 158, 0.96)),
    var(--navy);
  color: #fff;
}

.payment-card span,
.payment-card p {
  color: rgba(255, 255, 255, 0.72);
}

.payment-card strong {
  display: block;
  margin: 10px 0 12px;
  overflow-wrap: anywhere;
  color: var(--sand);
  font-size: 1.35rem;
}

.requirements {
  background: #fff;
}

.split {
  align-items: center;
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 16px 16px 46px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--foam);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 16px;
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}

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

.approval-grid article {
  padding: 30px;
}

.approval-grid span {
  color: var(--blue);
}

.camp {
  background:
    linear-gradient(rgba(8, 35, 63, 0.82), rgba(8, 35, 63, 0.86)),
    repeating-linear-gradient(45deg, rgba(232, 217, 184, 0.18) 0 2px, transparent 2px 18px),
    var(--navy);
}

.camp-panel {
  align-items: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
}

.camp-note {
  padding: 26px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

.camp-note strong {
  color: var(--sand);
  font-size: 1.35rem;
}

.camp-note p {
  color: rgba(255, 255, 255, 0.8);
}

.rules {
  background: #fff;
}

.accordion {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  gap: 12px;
}

.accordion article {
  overflow: hidden;
}

.accordion button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 20px 22px;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.accordion button::after {
  content: "+";
  color: var(--blue);
  font-size: 1.45rem;
}

.accordion article.is-open button::after {
  content: "−";
}

.accordion p {
  display: none;
  margin: 0;
  padding: 0 22px 20px;
}

.accordion article.is-open p {
  display: block;
}

.contact {
  background:
    radial-gradient(circle at 16% 25%, rgba(216, 168, 61, 0.18), transparent 26%),
    linear-gradient(180deg, #eaf6fa, var(--foam));
}

.contact-card {
  align-items: center;
  padding: 34px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-list a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 92% 20%, rgba(216, 168, 61, 0.18), transparent 25%),
    var(--deep);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-region-logo {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin-bottom: 18px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.site-footer strong {
  color: #fff;
}

.site-footer span {
  color: var(--sand);
  font-weight: 700;
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@keyframes drift {
  to {
    transform: translateX(14px);
  }
}

@keyframes waveSlide {
  to {
    transform: translateX(-140px);
  }
}

@keyframes pulse {
  50% {
    transform: scale(0.92) rotate(8deg);
  }
}

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

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(246, 251, 253, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 250px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .date-strip,
  .badge-showcase,
  .feature-grid,
  .info-grid,
  .timeline,
  .signup-layout,
  .split,
  .camp-panel,
  .contact-card {
    grid-template-columns: 1fr 1fr;
  }

  .date-strip {
    bottom: 54px;
  }

  .timeline::before {
    display: none;
  }

  .payment-card {
    position: static;
  }

  .regional-mark {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

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

  .section {
    padding: 72px 18px;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 104px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .sailboat {
    inset: 34px 0 auto;
    width: 100%;
  }

  .compass {
    right: 0;
    bottom: -6px;
    width: 118px;
    height: 118px;
  }

  .compass div {
    inset: 32px;
  }

  .date-strip,
  .badge-showcase,
  .feature-grid,
  .info-grid,
  .timeline,
  .signup-layout,
  .split,
  .approval-grid,
  .camp-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .date-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 6px;
  }

  .info-grid .wide {
    grid-column: auto;
  }

  .section-heading {
    text-align: left;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .steps li {
    padding-right: 14px;
  }

  .camp-panel,
  .contact-card {
    padding: 22px;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.92rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }
}
