:root {
  --navy: #082447;
  --navy-2: #0c3768;
  --blue: #136fbd;
  --cyan: #31b7df;
  --ink: #112033;
  --muted: #5f6f82;
  --line: #dfe8f2;
  --soft: #f3f7fb;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 18px 42px rgba(8, 36, 71, .13);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(8, 36, 71, .06);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  position: relative;
}

.brand {
  width: 202px;
  flex: 0 0 202px;
}

.brand img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 13px;
}

.main-nav a {
  color: #243b57;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: .02em;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible { color: var(--blue); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 13px;
  color: #fff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 850;
  border-radius: var(--radius);
}

.icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: block;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle::before {
  content: "";
}

@media (min-width: 1001px) {
  body > .menu-toggle { display: none !important; }
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  color: #fff;
  isolation: isolate;
}

.hero > picture,
.hero > picture img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > picture img {
  object-fit: cover;
  object-position: center 36%;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 22, 45, .94) 0%, rgba(4, 22, 45, .84) 42%, rgba(4, 22, 45, .38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-block: 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #9fe5ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.hero p:not(.eyebrow) {
  max-width: 690px;
  color: #e5eef8;
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.btn.primary {
  color: #062543;
  background: var(--cyan);
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .08);
}

.btn.light {
  color: var(--navy);
  background: #fff;
}

.btn:hover,
.header-cta:hover,
.text-link:hover,
.footer-social:hover { filter: brightness(.96); }

.section { padding: 92px 0; }
.section.soft { background: var(--soft); }
.narrow { max-width: 940px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, .96fr);
  gap: 58px;
  align-items: center;
}

.split > *,
.hero-content,
.cta-inner > *,
.footer-grid > * {
  min-width: 0;
}

.split.reverse {
  grid-template-columns: minmax(300px, .96fr) minmax(0, 1.04fr);
}

.note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.note-row span {
  padding: 7px 10px;
  color: var(--navy);
  background: #eef7fd;
  border: 1px solid #cfe7f4;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 750;
}

.photo-card,
.feature-image,
.benefit-panel {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card picture {
  display: block;
}

.photo-card {
  max-width: 460px;
  justify-self: end;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 12%;
}

.photo-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-image.compact img { object-position: center; }

.value-grid,
.activity-grid {
  display: grid;
  margin-top: 34px;
  gap: 16px;
}

.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.activity-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.value-grid article,
.activity-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(8, 36, 71, .06);
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--blue);
  background: #e9f6fc;
  border-radius: var(--radius);
  font-weight: 850;
  font-size: 12px;
}

.activity-card.with-image {
  padding: 0;
}

.activity-card.with-image picture,
.activity-card.with-image img {
  width: 100%;
}

.activity-card.with-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.activity-card.with-image div { padding: 22px; }
.activity-card p, .value-grid p { margin-bottom: 0; }

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #30445c;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .56em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.benefit-panel {
  padding: 30px;
  background: linear-gradient(180deg, #fff, #f7fbfe);
}

.benefit-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-panel li {
  padding: 10px 12px;
  background: #eef6fb;
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  color: #253b55;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 850;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.gallery button {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #dfe8f2;
  cursor: zoom-in;
  box-shadow: 0 12px 26px rgba(8, 36, 71, .08);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .22s ease;
}

.gallery button:hover img,
.gallery button:focus-visible img { transform: scale(1.035); }

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-list article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  text-align: left;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.faq-list button span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.faq-list article > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .2s ease;
}

.faq-list article > div > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
}

.faq-list article.open > div { grid-template-rows: 1fr; }
.faq-list article.open > div > p { padding-bottom: 18px; }

.cta {
  padding: 66px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.cta-inner {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.cta-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
}

.cta-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.cta h2 {
  margin-bottom: 8px;
  font-size: clamp(27px, 3vw, 40px);
}

.cta p { color: #dceaf7; }

.site-footer {
  color: #d8e6f6;
  background: #051b35;
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(170px, .7fr) minmax(190px, .8fr);
  gap: 34px;
  align-items: start;
}

.footer-grid img {
  width: 210px;
  height: 92px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-tags span {
  padding: 6px 9px;
  color: #dff4ff;
  background: rgba(153, 221, 255, .12);
  border: 1px solid rgba(153, 221, 255, .22);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 750;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.footer-grid p {
  max-width: 430px;
  color: #bfd1e4;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: #99ddff;
  font-weight: 750;
}

.footer-note {
  margin-top: 16px;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding: 18px max(20px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: 13px;
}

.instagram-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #6d38d8, #d93288, #f28d28);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(20, 18, 55, .28);
}

.instagram-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 26px;
  background: rgba(3, 15, 31, .93);
}

.lightbox.open { display: grid; }

.lightbox img {
  max-width: min(980px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  color: var(--navy);
  background: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

:focus-visible {
  outline: 3px solid rgba(49, 183, 223, .65);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .brand {
    width: 176px;
    flex-basis: 176px;
  }

  .main-nav { gap: 10px; }
  .main-nav a { font-size: 10.5px; }
}

@media (max-width: 1000px) {
  html { scroll-padding-top: 82px; }

  .nav-wrap { min-height: 78px; }
  .site-header .nav-wrap {
    width: auto;
    margin-inline: 14px;
  }

  .brand {
    width: 176px;
    flex-basis: 176px;
  }

  .brand img { height: 62px; }

  .menu-toggle { display: block; }
  .menu-toggle {
    position: fixed;
    right: 14px;
    top: 17px;
    z-index: 70;
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 6px 16px rgba(8, 36, 71, .12);
  }

  .menu-toggle span {
    background: #fff;
  }
  .header-cta { display: none; }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 78px);
    margin: 0;
    padding: 12px 20px 18px;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 36px rgba(8, 36, 71, .13);
  }

  .main-nav.open {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid #edf3f8;
    font-size: 13px;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .photo-card { justify-self: start; }
  .value-grid, .activity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

  .cta-inner .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), 1180px); }

  .hero {
    min-height: 590px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(4, 22, 45, .76), rgba(4, 22, 45, .95));
  }

  .hero > picture img {
    object-position: center;
  }

  .hero-content { padding-block: 70px; }

  .hero-content,
  .hero-content h1,
  .hero-content p,
  .split h2,
  .split p {
    max-width: calc(100vw - 28px);
    white-space: normal;
  }

  .hero-content h1 {
    max-width: 12.5em;
  }

  .hero-content p:not(.eyebrow) {
    max-width: 34ch;
  }

  .split h2 {
    max-width: 14em;
  }

  .split p {
    max-width: 36ch;
  }

  .hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.58;
  }

  .eyebrow,
  .section-kicker {
    font-size: 11px;
    line-height: 1.45;
  }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 14px;
  }

  .section { padding: 70px 0; }

  .value-grid,
  .activity-grid,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .activity-card,
  .value-grid article,
  .benefit-panel {
    padding: 20px;
  }

  .activity-card.with-image { padding: 0; }
  .activity-card.with-image div { padding: 20px; }

  .photo-card {
    max-width: 100%;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-icon {
    width: 58px;
    height: 58px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-bottom: 86px;
  }

  .instagram-float {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 138px;
    flex-basis: 138px;
  }

  .brand img { height: 52px; }
  .nav-wrap { gap: 10px; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    right: 14px;
  }
  h1 { font-size: 25px; }
  h2 { font-size: 23px; }
  h3 { font-size: 18px; }
}
