:root {
  --ink: #102033;
  --muted: #52697a;
  --line: #d9e7ef;
  --ice: #e9f8ff;
  --aqua: #23b5c8;
  --blue: #1767b1;
  --navy: #0c2f52;
  --white: #ffffff;
  --soft: #f7fbfd;
  --mist: #eff8fb;
  --shadow: 0 18px 44px rgba(12, 47, 82, 0.12);
  --shadow-soft: 0 10px 24px rgba(12, 47, 82, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfe 100%);
  line-height: 1.55;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 3px solid rgba(35, 181, 200, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.site-shell {
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.94);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 72px;
  overflow: hidden;
}

.brand img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-contact-group {
  display: contents;
}

.top-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
}

.top-actions a:not(.button) {
  padding: 8px 4px;
}

.top-actions a.button {
  color: var(--white);
  padding-inline: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
  box-shadow: 0 10px 22px rgba(23, 103, 177, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.secondary {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(16, 32, 51, 0.18);
  box-shadow: none;
}

.button:hover {
  background: #125d9f;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(23, 103, 177, 0.26);
}

.button.secondary:hover {
  background: var(--mist);
  box-shadow: 0 10px 22px rgba(12, 47, 82, 0.08);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  background: var(--navy);
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroSlide 18s infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 9s;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 33, 56, 0.92) 0%, rgba(8, 33, 56, 0.74) 37%, rgba(8, 33, 56, 0.16) 72%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(12, 47, 82, 0) 0%, rgba(12, 47, 82, 0.42) 100%);
  z-index: -1;
}

@keyframes heroSlide {
  0%,
  44% {
    opacity: 1;
  }

  50%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.hero-inner,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  padding: 96px 0 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #9ee9f5;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  margin: 22px 0 0;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.quick-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-item {
  background: var(--white);
  padding: 24px;
}

.quick-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.quick-item span {
  color: var(--muted);
}

section {
  padding: 88px 0;
}

.soft {
  background:
    radial-gradient(circle at 8% 14%, rgba(35, 181, 200, 0.08), transparent 28%),
    var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: end;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section-lede {
  max-width: 760px;
  font-size: 1.08rem;
  margin: -4px 0 28px;
}

h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

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

.feature-grid,
.benefit-grid,
.steps,
.audience-grid {
  display: grid;
  gap: 18px;
}

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

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

.steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.steps .tile {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.steps .tile h3,
.steps .tile p {
  margin: 0;
}

.steps .tile h3 {
  flex: 0 0 auto;
  color: var(--blue);
}

.session-stories {
  display: grid;
  gap: 34px;
}

.session-story,
.video-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.story-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
}

.story-reverse > div {
  order: 2;
}

.story-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.media-card img,
.media-card video {
  display: block;
  width: 100%;
  height: auto;
  background: #eef6fb;
}

.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.photo-card img {
  background: #eef6fb;
}

.video-feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 40px);
  background:
    radial-gradient(circle at top left, rgba(139, 232, 238, 0.2), transparent 34%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.video-copy {
  max-width: 420px;
}

.video-frame {
  justify-self: center;
  width: min(100%, 300px);
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(12, 47, 82, 0.16);
  border-radius: 8px;
  background: #071f35;
  box-shadow: 0 20px 42px rgba(12, 47, 82, 0.2);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 6px;
  background: #000;
}

.media-card figcaption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 18px rgba(12, 47, 82, 0.05);
}

.feature-grid .tile {
  display: flex;
  min-height: 180px;
  flex-direction: column;
}

.feature-grid .tile p {
  margin-top: auto;
  margin-bottom: 0;
}

.soft .tile {
  background: var(--white);
}

.service-panel {
  background:
    linear-gradient(145deg, rgba(35, 181, 200, 0.14), transparent 42%),
    var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.service-panel p,
.service-panel li,
.service-panel h3 {
  color: rgba(255, 255, 255, 0.86);
}

.service-panel h3 {
  color: var(--white);
}

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

li + li {
  margin-top: 7px;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(35, 181, 200, 0.18), transparent 38%),
    var(--navy);
  color: var(--white);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-layout {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: end;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 4px 0 18px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 18px;
}

.social-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 14px;
  color: var(--blue);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.social-links a:hover {
  border-color: var(--aqua);
  background: var(--mist);
}

.social-icon-link {
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-icon-link svg {
  display: none;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icon-link::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.social-facebook::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%231877F2'/%3E%3Cpath fill='white' d='M13.64 24v-9.28h3.13l.47-3.62h-3.6V8.79c0-1.05.29-1.76 1.8-1.76h1.92V3.8a25.8 25.8 0 0 0-2.8-.14c-2.77 0-4.67 1.69-4.67 4.79v2.67H6.75v3.62h3.14V24h3.75z'/%3E%3C/svg%3E");
}

.social-instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CradialGradient id='g' cx='30%25' cy='100%25' r='120%25'%3E%3Cstop offset='0' stop-color='%23ffd600'/%3E%3Cstop offset='.48' stop-color='%23ff0169'/%3E%3Cstop offset='1' stop-color='%23d300c5'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='24' height='24' rx='6' fill='url(%23g)'/%3E%3Crect x='5.3' y='5.3' width='13.4' height='13.4' rx='4.2' fill='none' stroke='white' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='12' r='3.3' fill='none' stroke='white' stroke-width='1.8'/%3E%3Ccircle cx='17.1' cy='6.9' r='1.1' fill='white'/%3E%3C/svg%3E");
}

.top-actions .social-icon-link {
  color: var(--blue);
}

.top-actions .social-icon-link:hover,
.top-actions .social-icon-link:focus-visible {
  color: var(--aqua);
  background: var(--mist);
}

.social-links a.social-icon-link {
  padding: 10px;
}

form {
  display: grid;
  gap: 10px;
}

form label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9cbd6;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

form .button {
  margin-top: 8px;
  cursor: pointer;
}

.map-card {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.directions-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.directions-link:hover {
  background: var(--mist);
}

.booking-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.booking-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.booking-details div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.booking-details dt {
  color: var(--navy);
  font-weight: 900;
}

.booking-details dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.fine-print {
  font-size: 0.9rem;
  color: #6c7a86;
}

@media (max-width: 880px) {
  .topbar,
  .cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 620px;
  }

  .top-actions {
    gap: 8px 12px;
  }

  .quick-grid,
    .split,
    .benefit-grid,
    .audience-grid,
    .session-story,
    .story-reverse,
    .video-feature,
    .steps,
    .contact-box {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .story-reverse > div {
    order: 0;
  }

  .video-frame {
    width: min(100%, 320px);
  }

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

  section {
    padding: 56px 0;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 156px;
    height: 56px;
    align-self: center;
  }

  .hero {
    min-height: 700px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 33, 56, 0.58) 0%, rgba(8, 33, 56, 0.42) 48%, rgba(8, 33, 56, 0.18) 100%);
  }

  .hero .eyebrow,
  .hero h1,
  .hero-copy {
    text-shadow: 0 2px 10px rgba(2, 17, 30, 0.78);
  }

  .hero-slide {
    object-position: 62% center;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .quick-item,
  .tile,
  .service-panel,
  .contact-card {
    padding: 20px;
  }

  .button {
    width: 100%;
  }

  .topbar {
    gap: 14px;
    padding: 16px;
  }

  .top-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .top-actions > a:not(.button) {
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--soft);
    padding: 8px;
    text-align: center;
  }

  .nav-contact-group {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    gap: 12px;
    order: 3;
    white-space: nowrap;
  }

  .top-actions .button {
    grid-column: 1 / -1;
    order: 4;
  }

  .nav-contact-group .nav-contact {
    order: 1;
  }

  .nav-contact-group .social-icon-link {
    order: 2;
    flex: 0 0 44px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-trust span {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .feature-grid .tile {
    min-height: 0;
  }

  .feature-grid .tile p {
    margin-top: 0;
  }
}
