:root {
  --navy: #303d99;
  --royal: #2e429b;
  --sky: #9ecaec;
  --muted: #5862ad;
  --red: #ed1f24;
  --yellow: #f3ec19;
  --line: #dfe4ea;
  --ink: #172033;
  --wash: #f5f8fc;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 16px 45px rgba(26, 43, 87, 0.1);
  --font: "Manrope", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}
.skip-link {
  position: fixed;
  z-index: 99;
  top: -4rem;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.utility {
  background: var(--sky);
  color: #163167;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.utility .container {
  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility a {
  color: #193772;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  box-shadow: 0 3px 20px rgba(23, 32, 51, 0.08);
  border-color: rgba(48, 61, 153, 0.08);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 84px;
  gap: 1.2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
}
.brand-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
}
.brand-name {
  display: grid;
  line-height: 1.05;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-name strong {
  font-size: 1.4rem;
  letter-spacing: -0.07em;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.28rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}
.nav-list a {
  display: block;
  position: relative;
  padding: 1.85rem 0;
}
.nav-list a.active:after {
  content: "";
  position: absolute;
  bottom: 1.3rem;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 9px;
  background: var(--sky);
}
.nav-cta {
  padding: 0.68rem 1rem !important;
  background: var(--navy);
  color: #fff;
  border-radius: 99px !important;
}
.nav-cta.active:after {
  display: none;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.45rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 99px;
  padding: 0.8rem 1.15rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--royal);
  transform: translateY(-2px);
  box-shadow: 0 8px 17px rgba(48, 61, 153, 0.26);
}
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-white:hover {
  background: #fff;
  color: var(--navy);
}
.btn-large {
  padding: 1rem 1.4rem;
}
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 117px));
  display: grid;
  align-items: end;
  background: #18336b center/cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 24, 59, 0.83) 0%,
      rgba(14, 30, 67, 0.55) 42%,
      rgba(15, 34, 70, 0.07) 80%
    ),
    linear-gradient(0deg, rgba(8, 20, 51, 0.45), transparent 48%);
}
.hero:after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: -5vw;
  width: 38vw;
  height: 14vw;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: rotate(-11deg);
  z-index: -1;
}
.hero-inner {
  color: #fff;
  padding: 0 0 78px;
}
.hero .eyebrow {
  color: var(--sky);
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.25rem, 7.2vw, 6.55rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 800;
}
.hero-copy {
  max-width: 495px;
  margin: 1.3rem 0 2rem;
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.hero-stamp {
  position: absolute;
  bottom: 62px;
  right: max(24px, calc((100vw - 1180px) / 2));
  max-width: 230px;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--yellow);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
}
.hero-stamp strong {
  display: block;
  font-size: 1.05rem;
}
.section {
  padding: 108px 0;
}
.section-wash {
  background: var(--wash);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}
.section-intro {
  max-width: 490px;
  color: #45516c;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.38fr;
  gap: 11vw;
  align-items: start;
}
.intro-mark {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  line-height: 0.72;
  color: var(--sky);
}
.intro-body p {
  font-size: 1.15rem;
  max-width: 670px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.offer-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #123575 center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: end;
  isolation: isolate;
  box-shadow: 0 1px 0 rgba(48, 61, 153, 0.1);
  transition: 0.3s ease;
}
.offer-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 26, 62, 0.9),
    rgba(9, 33, 82, 0.03) 65%
  );
  z-index: -1;
}
.offer-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.offer-content {
  padding: 1.35rem;
}
.offer-index {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 800;
}
.offer-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  line-height: 1.08;
}
.offer-card p {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.text-link {
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.events-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3vw;
  align-items: start;
}
.event-list {
  border-top: 1px solid var(--line);
}
.event-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1.35rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  transition: 0.2s;
}
.event-row:hover {
  padding-left: 0.55rem;
  background: rgba(158, 202, 236, 0.14);
}
.event-date {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}
.event-date strong {
  display: block;
  font-size: 1.65rem;
  letter-spacing: -0.06em;
}
.event-info h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}
.event-info p {
  margin: 0.13rem 0 0;
  color: #5d6780;
  font-size: 0.82rem;
}
.badge {
  display: inline-flex;
  padding: 0.23rem 0.55rem;
  border-radius: 99px;
  background: #edf5fb;
  color: var(--royal);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge.social {
  background: #fdebed;
  color: #aa1a20;
}
.badge.powerboating {
  background: #e8ebfb;
}
.badge.training {
  background: #e8f6ff;
}
.feature-event {
  position: relative;
  min-height: 510px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #25478f center/cover no-repeat;
  color: #fff;
  padding: 2rem;
  display: flex;
  align-items: end;
  isolation: isolate;
}
.feature-event:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 24, 62, 0.9),
    rgba(17, 40, 86, 0.05)
  );
  z-index: -1;
}
.feature-event h3 {
  margin: 0.65rem 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}
.feature-event p {
  margin: 0;
  max-width: 330px;
  font-size: 0.87rem;
}
.photo-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 590px;
}
.photo-story-image {
  min-height: 390px;
  background: #1d548d center/cover no-repeat;
}
.photo-story-content {
  background: var(--navy);
  color: #fff;
  padding: clamp(2rem, 6vw, 6rem);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.photo-story-content h2 {
  color: #fff;
}
.photo-story-content .eyebrow {
  color: var(--sky);
}
.photo-story-content p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.85);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.news-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.25s;
}
.news-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.news-image {
  height: 185px;
  background: #2e4c91 center/cover no-repeat;
}
.news-body {
  padding: 1.2rem;
}
.news-card h3 {
  margin: 0.45rem 0 0.7rem;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.13;
  letter-spacing: -0.04em;
}
.news-card p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #586174;
}
.meta {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.social-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
  border-radius: var(--radius);
  background: var(--sky);
  overflow: hidden;
}
.social-banner h2 {
  max-width: 610px;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}
.social-banner p {
  max-width: 620px;
  margin-bottom: 0;
  color: #293f70;
}
.page-hero {
  padding: 108px 0 76px;
  background: linear-gradient(120deg, #f5f8fc 0%, #fff 55%, #eaf5fc 100%);
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  width: 33vw;
  height: 33vw;
  border: 1px solid var(--sky);
  border-radius: 50%;
  right: -9vw;
  top: -17vw;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.1rem, 6.7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}
.page-hero p {
  max-width: 590px;
  margin: 1.45rem 0 0;
  color: #4f5d76;
  font-size: 1.08rem;
}
.page-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 6vw;
  align-items: center;
}
.page-grid img {
  width: 100%;
  height: 490px;
  border-radius: var(--radius);
  object-fit: cover;
}
.checks {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}
.checks li {
  display: flex;
  gap: 0.7rem;
  align-items: start;
}
.checks li:before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--navy);
  font-weight: 800;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.info-card .num {
  color: var(--sky);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
}
.info-card h3 {
  margin: 0.65rem 0;
  color: var(--navy);
  font-size: 1.2rem;
}
.info-card p {
  margin: 0;
  color: #59647c;
  font-size: 0.88rem;
}
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
}
.gallery button {
  border: 0;
  padding: 0;
  background: #214782 center/cover no-repeat;
  border-radius: 17px;
  position: relative;
  overflow: hidden;
}
.gallery button:first-child {
  grid-row: span 2;
}
.gallery button:after {
  content: "View photo";
  position: absolute;
  inset: auto 12px 12px auto;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.25rem 0.55rem;
  border-radius: 99px;
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(7px);
  transition: 0.2s;
}
.gallery button:hover:after,
.gallery button:focus-visible:after {
  opacity: 1;
  transform: none;
}
.course-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
}
.course-prompt h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  max-width: 700px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 5vw;
}
.contact-details {
  padding: 2rem;
  background: var(--wash);
  border-radius: var(--radius);
}
.contact-details h2 {
  font-size: 2rem;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
}
.contact-form label.full {
  grid-column: 1/-1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.78rem;
  border: 1px solid #cdd6e3;
  border-radius: 8px;
  background: white;
  color: var(--ink);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.form-note {
  margin: 1rem 0 0;
  color: #667085;
  font-size: 0.77rem;
}
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr;
  gap: 4rem;
}
.footer-logo {
  height: 86px;
  width: 86px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}
.site-footer h2 {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
}
.footer-blurb {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.85rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 1rem;
  font-size: 0.83rem;
}
.footer-links a:hover,
.footer-social a:hover {
  text-decoration: underline;
  color: var(--sky);
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.83rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.69rem;
}
.lightbox {
  position: fixed;
  z-index: 99;
  inset: 0;
  padding: 2rem;
  display: grid;
  place-items: center;
  background: rgba(6, 16, 42, 0.92);
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  display: block;
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 10px;
}
.lightbox button {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  border: 0;
  background: #fff;
  color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
}
.toast {
  position: fixed;
  z-index: 60;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: 360px;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: #172033;
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}
.empty {
  padding: 2.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: #657089;
}
@media (max-width: 1000px) {
  .nav-list {
    gap: 0.8rem;
  }
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-wrap {
    grid-template-columns: 1fr;
  }
  .feature-event {
    min-height: 360px;
  }
  .footer-grid {
    gap: 2rem;
  }
  .page-grid {
    gap: 3rem;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1180px);
  }
  .utility .container {
    font-size: 0.62rem;
  }
  .utility .container span:last-child {
    display: none;
  }
  .nav {
    min-height: 68px;
  }
  .brand {
    min-width: 0;
  }
  .brand-logo {
    width: 44px;
    height: 44px;
  }
  .brand-name {
    font-size: 0.55rem;
  }
  .brand-name strong {
    font-size: 1.17rem;
  }
  .menu-toggle {
    display: block;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 0.6rem 1rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(23, 32, 51, 0.08);
    align-items: stretch;
    gap: 0;
  }
  .nav-list.open {
    display: grid;
  }
  .nav-list a {
    padding: 0.72rem 0.4rem;
  }
  .nav-list a.active:after {
    display: none;
  }
  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }
  .hero {
    min-height: 660px;
  }
  .hero-inner {
    padding-bottom: 56px;
  }
  .hero-stamp {
    display: none;
  }
  .hero h1 {
    font-size: clamp(3.15rem, 14vw, 5rem);
  }
  .section {
    padding: 74px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 1.75rem;
  }
  .section-heading .section-intro {
    margin-top: 1rem;
  }
  .intro-grid,
  .photo-story,
  .page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .intro-mark {
    font-size: 4rem;
  }
  .offer-grid,
  .news-grid,
  .info-cards {
    grid-template-columns: 1fr;
  }
  .offer-card {
    min-height: 300px;
  }
  .offer-index {
    margin-bottom: 2rem;
  }
  .event-row {
    grid-template-columns: 60px 1fr;
    gap: 0.85rem;
  }
  .event-row .text-link {
    grid-column: 2;
  }
  .photo-story-content {
    padding: 3rem 1.5rem;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 150px 150px;
  }
  .gallery button:first-child {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .social-banner,
  .course-prompt {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    display: grid;
    margin-top: 2.4rem;
  }
  .page-hero {
    padding: 75px 0 58px;
  }
  .page-grid img {
    height: 360px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form label.full {
    grid-column: auto;
  }
  .hide-mobile {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.nav-list {
  gap: 1.1rem;
  font-size: 0.875rem;
}
@media (max-width: 760px) {
  .intro-mark {
    display: none;
  }
  .nav-list {
    font-size: 0.9rem;
  }
}
/* Keep the desktop navigation comfortably within its measure; tablets use the same accessible menu pattern as mobile. */
@media (max-width: 1200px) {
  .menu-toggle {
    display: block;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 0.6rem 1.5rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(23, 32, 51, 0.08);
    align-items: stretch;
    gap: 0;
  }
  .nav-list.open {
    display: grid;
  }
  .nav-list a {
    padding: 0.72rem 0.4rem;
  }
  .nav-list a.active:after {
    display: none;
  }
  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}
.site-footer .brand-logo {
  display: block;
  width: 86px;
  height: 86px;
  padding: 3px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  overflow: hidden;
}
@media (max-width: 760px) {
  .nav-list {
    top: 68px;
  }
}
.hero h1 {
  max-width: 730px;
  max-width: min(730px, 100%);
  font-size: clamp(3.25rem, 7.2vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
@media (max-width: 1200px) {
  .menu-toggle {
    order: 3;
  }
  .nav {
    position: relative;
  }
  .nav > nav {
    display: contents;
  }
}

/* 2026 visual refinement: photographic, light, and quietly kinetic. */
body {
  background: linear-gradient(180deg, #fff 0%, #fff 72%, #f7fbff 100%);
}
.site-header {
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.nav-list a:not(.nav-cta) {
  transition: color 0.2s ease;
}
.nav-list a:not(.nav-cta):hover {
  color: var(--royal);
}
.nav-list a.active:after {
  height: 2px;
  bottom: 1.22rem;
  box-shadow: 0 2px 8px rgba(158, 202, 236, 0.8);
}
.hero {
  min-height: min(790px, calc(100vh - 117px));
  background-position: center 52%;
}
.hero:before {
  background:
    linear-gradient(
      92deg,
      rgba(9, 23, 56, 0.88) 0%,
      rgba(14, 30, 67, 0.58) 44%,
      rgba(15, 34, 70, 0.1) 86%
    ),
    linear-gradient(0deg, rgba(8, 20, 51, 0.48), transparent 53%);
}
.hero-orbit {
  position: absolute;
  right: -9vw;
  bottom: -12vw;
  width: min(52vw, 770px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.31);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit:after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(158, 202, 236, 0.46);
  border-radius: 50%;
}
.hero h1 {
  max-width: 780px;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(5, 16, 43, 0.18);
}
.hero-copy {
  font-size: 1.08rem;
  line-height: 1.65;
}
.hero-stamp {
  border-left-color: var(--yellow);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 30px rgba(5, 16, 43, 0.13);
}
.section {
  position: relative;
}
.section-wash {
  background: linear-gradient(135deg, #f5f8fc 0%, #f9fcff 100%);
}
.section-heading h2,
.photo-story h2 {
  max-width: 650px;
}
.intro-grid {
  gap: 9vw;
  align-items: center;
}
.intro-grid > div:first-child {
  position: relative;
  padding-bottom: 1.7rem;
}
.intro-grid > div:first-child:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--sky), transparent);
}
.intro-mark {
  display: none;
}
.intro-body p:first-child {
  margin-top: 0;
}
.offer-grid {
  gap: 20px;
}
.offer-card {
  min-height: 410px;
  background-position: center;
  box-shadow: 0 9px 28px rgba(26, 43, 87, 0.08);
}
.offer-card:before {
  background: linear-gradient(
    0deg,
    rgba(8, 25, 63, 0.92) 0%,
    rgba(16, 43, 94, 0.38) 52%,
    rgba(17, 49, 107, 0.02) 100%
  );
}
.offer-card:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  pointer-events: none;
}
.offer-content {
  width: 100%;
  padding: 1.4rem;
  background: linear-gradient(
    90deg,
    rgba(10, 27, 65, 0.48),
    rgba(10, 27, 65, 0.03)
  );
  backdrop-filter: blur(1px);
}
.offer-index {
  margin-bottom: 6.3rem;
  color: #d7edff;
}
.offer-card:hover {
  transform: translateY(-8px) scale(1.008);
  box-shadow: 0 22px 46px rgba(22, 44, 95, 0.18);
}
.offer-card h3 {
  font-size: 1.5rem;
}
.offer-card .text-link {
  color: #fff;
}
.events-wrap {
  gap: 4vw;
}
.event-row {
  position: relative;
  padding: 1.35rem 0.15rem;
}
.event-row:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--sky);
  opacity: 0;
  transition: 0.2s;
}
.event-row:hover {
  padding-left: 0.8rem;
  background: linear-gradient(90deg, rgba(158, 202, 236, 0.18), transparent);
}
.event-row:hover:before {
  opacity: 1;
}
.feature-event {
  min-height: 540px;
  box-shadow: var(--shadow);
}
.feature-event:after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 14px;
  pointer-events: none;
}
.photo-story {
  margin-block: 14px;
}
.photo-story-image {
  background-position: center;
}
.photo-story-content {
  position: relative;
  overflow: hidden;
}
.photo-story-content:after {
  content: "ESSC";
  position: absolute;
  right: -0.08em;
  bottom: -0.38em;
  color: rgba(158, 202, 236, 0.13);
  font-size: clamp(7rem, 17vw, 16rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
  pointer-events: none;
}
.photo-story-content > * {
  position: relative;
  z-index: 1;
}
.news-card {
  border-color: rgba(48, 61, 153, 0.13);
}
.news-image {
  height: 205px;
  transition: transform 0.45s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.news-card:hover .news-image {
  transform: scale(1.04);
}
.news-card {
  isolation: isolate;
}
.news-body {
  position: relative;
  background: #fff;
  z-index: 1;
}
.social-banner {
  position: relative;
  background: linear-gradient(112deg, #9ecaec 0%, #dceffc 100%);
  box-shadow: 0 10px 35px rgba(50, 91, 143, 0.08);
}
.social-banner:after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  border: 28px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}
.page-hero {
  padding-block: 118px 86px;
  background: linear-gradient(125deg, #f4f8fc 0%, #fff 56%, #e2f2fd 100%);
}
.page-hero:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky), transparent);
}
.page-hero h1 {
  letter-spacing: -0.065em;
  text-wrap: balance;
}
.page-grid img {
  box-shadow: 0 24px 52px rgba(27, 52, 107, 0.16);
}
.info-card {
  border-color: rgba(48, 61, 153, 0.12);
  box-shadow: 0 4px 20px rgba(29, 49, 91, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(29, 49, 91, 0.1);
}
.info-card .num {
  font-size: 2.8rem;
}
.gallery {
  gap: 16px;
}
.gallery button {
  outline-offset: 5px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
.gallery button:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
}
.course-prompt {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #303d99, #2e429b);
}
.course-prompt:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -95px;
  top: -130px;
  border: 1px solid rgba(158, 202, 236, 0.6);
  border-radius: 50%;
}
.course-prompt > * {
  position: relative;
  z-index: 1;
}
.site-footer {
  position: relative;
  overflow: hidden;
}
.site-footer:before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  right: -240px;
  top: -390px;
  border: 1px solid rgba(158, 202, 236, 0.25);
  border-radius: 50%;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) {
  .offer-card {
    min-height: 350px;
  }
  .offer-index {
    margin-bottom: 3.8rem;
  }
  .page-hero {
    padding-block: 92px 68px;
  }
  .feature-event {
    min-height: 410px;
  }
}
@media (max-width: 760px) {
  .hero {
    min-height: 680px;
    background-position: 56% center;
  }
  .hero-orbit {
    width: 88vw;
    right: -38vw;
    bottom: -26vw;
  }
  .hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.7rem);
    line-height: 1;
  }
  .hero-copy {
    font-size: 1rem;
  }
  .offer-card {
    min-height: 330px;
  }
  .offer-index {
    margin-bottom: 3.2rem;
  }
  .offer-content {
    padding: 1.2rem;
  }
  .page-hero {
    padding-block: 82px 60px;
  }
  .social-banner:after {
    width: 180px;
    height: 180px;
  }
  .news-image {
    height: 220px;
  }
}
.powerboat-scene {
  padding-top: 34px;
}
.powerboat-image {
  min-height: 430px;
  border-radius: var(--radius);
  background: #1f528e center/cover no-repeat;
  box-shadow: 0 24px 52px rgba(27, 52, 107, 0.16);
}
.page-grid img[src*="powerboat-"] {
  object-position: 50% 50%;
}
.offer-card[style*="powerboat-"] {
  background-position: 50% 50%;
}
.eyebrow {
  margin: 0 0 0.85rem;
}
.text-link {
  font-size: 0.79rem;
}
.meta {
  font-size: 0.7rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.info-card .num {
  color: var(--muted);
}
:focus-visible {
  outline-color: var(--navy);
  outline-offset: 4px;
}
.hero :focus-visible,
.offer-card :focus-visible,
.feature-event :focus-visible,
.photo-story-content :focus-visible,
.course-prompt :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--yellow);
}
@media (prefers-reduced-motion: no-preference) {
  .motion-ready .offer-card.reveal.reveal-in:hover {
    transform: translateY(-8px) scale(1.008);
  }
  .motion-ready .info-card.reveal.reveal-in:hover {
    transform: translateY(-4px);
  }
  .motion-ready .news-card.reveal.reveal-in:hover {
    transform: translateY(-5px);
  }
}
.pb2-details {
  padding-top: 58px;
}
.pb2-lower {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 20px;
  margin-top: 22px;
}
.course-pack {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(140deg, #dceefa, #fff);
}
.course-pack h3 {
  margin: 0.4rem 0 0.7rem;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.15;
}
.course-pack p:last-child {
  margin: 0;
  color: #4c5b76;
  font-size: 0.89rem;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(48, 61, 153, 0.15);
  border-radius: 14px;
  background: #fff;
}
.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}
.faq-list p {
  margin: 0.65rem 0 0;
  color: #536077;
  font-size: 0.85rem;
}
.progression {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(48, 61, 153, 0.14);
  border: 1px solid rgba(48, 61, 153, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}
.progress-step {
  min-height: 230px;
  padding: 1.75rem;
  background: #fff;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.progress-step:hover {
  background: #f1f8fd;
  transform: translateY(-3px);
}
.progress-step span {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--sky);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.progress-step strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
}
.progress-step p {
  margin: 0.5rem 0 0;
  color: #58647c;
  font-size: 0.86rem;
}
@media (max-width: 760px) {
  .pb2-lower,
  .progression {
    grid-template-columns: 1fr;
  }
  .progress-step {
    min-height: 0;
  }
  .progress-step span {
    margin-bottom: 1rem;
  }
}
@media (max-width: 760px) {
  .powerboat-image {
    min-height: 330px;
  }
}
#site-shell {
  position: sticky;
  top: -33px;
  z-index: 30;
}
.site-header {
  position: static;
}
@media (max-width: 1200px) {
  .nav-list {
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
  }
}
@media (max-width: 760px) {
  .nav-list {
    max-height: calc(100dvh - 68px);
  }
}

.progress-step > span {
  color: var(--muted);
}

.photo-story-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}
.photo-story-content .btn {
  align-self: flex-start;
}
.feature-event .btn {
  margin-top: 1.3rem;
}
.course-prompt .eyebrow {
  color: var(--sky);
}
/* About gallery and accessible photo viewer */
.gallery-photo {
  isolation: isolate;
}

.gallery-photo::before {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(8, 21, 52, 0.74), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-label {
  position: absolute;
  z-index: 1;
  bottom: 0.9rem;
  left: 0.9rem;
  right: 3.8rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: left;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.gallery-photo:hover::before,
.gallery-photo:focus-visible::before,
.gallery-photo:hover .gallery-label,
.gallery-photo:focus-visible .gallery-label {
  opacity: 1;
}

.gallery-photo:hover .gallery-label,
.gallery-photo:focus-visible .gallery-label {
  transform: none;
}

.essc-lightbox-open {
  overflow: hidden;
}

.lightbox {
  padding: clamp(1rem, 3vw, 2.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(6, 16, 42, 0.94);
}

.lightbox-frame {
  width: min(100%, 1120px);
  margin: auto;
  color: #fff;
}

.lightbox-toolbar,
.lightbox-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lightbox-toolbar {
  margin: 0 auto 0.8rem;
}

.lightbox-count {
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lightbox button {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-height: 2.65rem;
  padding: 0.58rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.lightbox button:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}

.lightbox figure {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.lightbox img.lightbox-image {
  width: 100%;
  max-width: 100%;
  max-height: min(68vh, 720px);
  margin: 0;
  object-fit: contain;
  border-radius: 12px;
  background: #101f44;
}

.lightbox figcaption {
  max-width: 58rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
}

.lightbox-controls {
  margin-top: 1rem;
}

.lightbox:focus-visible,
.lightbox button:focus-visible,
.gallery-photo:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 560px) {
  .lightbox {
    padding: 0.9rem;
  }

  .lightbox img.lightbox-image {
    max-height: 61vh;
  }

  .lightbox-controls {
    gap: 0.45rem;
  }

  .lightbox button {
    padding: 0.58rem 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-photo::before,
  .gallery-label,
  .lightbox button {
    transition: none;
  }
}
.lightbox button {
  gap: 0.4rem;
}
