:root {
  --header-height: 78px;
  --navy-950: #261735;
  --navy-900: #124f61;
  --navy-800: #1b6a74;
  --navy-700: #2b8a8b;
  --ocean-600: #159fa3;
  --ocean-500: #22c3bd;
  --ocean-300: #8ee8dc;
  --teal-200: #c4f3e7;
  --orange-600: #df5f25;
  --orange-500: #f47b2a;
  --sun-400: #ffd45c;
  --coral-500: #e85b77;
  --green-500: #66b64c;
  --purple-500: #8a5adf;
  --sand-100: #fff0ca;
  --sand-50: #fff8e8;
  --ink: #173440;
  --muted: #6f6b61;
  --white: #ffffff;
  --logo-cream: #fff3df;
  --logo-warm: #ffe29a;
  --logo-sunset: #ffb74e;
  --line: rgba(125, 83, 47, 0.16);
  --shadow-soft: 0 18px 44px rgba(113, 76, 44, 0.12);
  --shadow-deep: 0 28px 72px rgba(38, 23, 53, 0.28);
  --space-heading-gap: 14px;
  --space-text-gap: 16px;
  --space-card-pad: 26px;
  --text-measure: 680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--logo-cream), var(--sand-50) 46%, #fffaf0);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.animated-ocean {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 243, 223, 0.98), rgba(255, 248, 232, 0.98) 42%, rgba(255, 238, 196, 0.82));
}

.animated-ocean::before,
.animated-ocean::after {
  position: absolute;
  inset: auto -12% 3%;
  height: 35vh;
  min-height: 230px;
  opacity: 0.26;
  content: "";
  transform: rotate(-3deg);
}

.animated-ocean::before {
  background:
    repeating-linear-gradient(170deg, transparent 0 32px, rgba(34, 195, 189, 0.22) 33px 35px, transparent 36px 72px),
    linear-gradient(90deg, rgba(34, 195, 189, 0.14), rgba(255, 183, 78, 0.18), rgba(232, 91, 119, 0.08));
  animation: waveDrift 24s linear infinite;
}

.animated-ocean::after {
  bottom: -8%;
  background:
    repeating-linear-gradient(12deg, transparent 0 38px, rgba(223, 95, 37, 0.11) 39px 41px, transparent 42px 90px),
    linear-gradient(90deg, rgba(255, 212, 92, 0.2), rgba(34, 195, 189, 0.1));
  animation: waveDriftReverse 32s linear infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: var(--header-height);
  padding: 12px clamp(20px, 5vw, 70px);
  color: var(--ink);
  background: rgba(255, 248, 232, 0.94);
  border-bottom: 1px solid rgba(125, 83, 47, 0.14);
  box-shadow: 0 12px 34px rgba(113, 76, 44, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 2px solid rgba(38, 23, 53, 0.18);
  border-radius: 50%;
  background: var(--logo-cream);
  box-shadow: 0 0 0 4px rgba(255, 212, 92, 0.26);
}

.brand-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 235%;
  max-width: none;
  height: auto;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transform: translate(-49%, -34%);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-text small {
  margin-top: 5px;
  color: var(--orange-500);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-text em {
  margin-top: 5px;
  color: var(--ocean-600);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 4px;
  align-items: center;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  color: rgba(23, 52, 64, 0.78);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  gap: 6px;
}

.nav-trigger::after {
  color: currentColor;
  font-size: 0.72rem;
  content: "▾";
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 240px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 248, 232, 0.98);
  border: 1px solid rgba(125, 83, 47, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  justify-content: flex-start;
  min-height: 42px;
  color: rgba(23, 52, 64, 0.82);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--navy-950);
  background: rgba(255, 212, 92, 0.28);
}

.lang-switch {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-left: 6px;
  padding: 3px;
  background: rgba(23, 52, 64, 0.06);
  border: 1px solid rgba(125, 83, 47, 0.16);
  border-radius: 8px;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 34px;
  padding: 0 10px;
  color: rgba(23, 52, 64, 0.78);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lang-switch a:hover {
  color: var(--navy-950);
  background: rgba(255, 212, 92, 0.28);
}

.lang-switch a.is-active {
  color: var(--white);
  background: var(--navy-950);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 212, 92, 0.22);
  border: 1px solid rgba(125, 83, 47, 0.18);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.button,
.button-outline,
.button-ghost {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  color: #07141f;
  background: linear-gradient(135deg, var(--sun-400), var(--orange-500));
  box-shadow: 0 16px 34px rgba(223, 95, 37, 0.24);
}

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

.button:hover {
  box-shadow: 0 20px 42px rgba(223, 95, 37, 0.32);
}

.button-small {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.button-ghost {
  color: var(--white);
  background: rgba(21, 159, 163, 0.24);
  border: 1px solid rgba(142, 232, 220, 0.38);
}

.site-header .button-ghost {
  color: var(--ink);
  background: rgba(34, 195, 189, 0.16);
  border-color: rgba(21, 159, 163, 0.22);
}

.button-dark,
.light-surface .button-outline {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
  box-shadow: none;
}

.light-surface .button-outline {
  border-color: var(--navy-900);
}

.icon-pill {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: rgba(38, 23, 53, 0.18);
  border-radius: 50%;
  font-size: 0.8rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero {
  min-height: auto;
}

.page-hero {
  min-height: 58svh;
}

.hero-bg,
.section-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 23, 53, 0.82), rgba(223, 95, 37, 0.38) 48%, rgba(255, 212, 92, 0.14)),
    linear-gradient(135deg, var(--navy-950), var(--orange-600) 52%, var(--ocean-500));
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-bg::after,
.section-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(38, 23, 53, 0.04), rgba(38, 23, 53, 0.7)),
    repeating-linear-gradient(172deg, transparent 0 44px, rgba(255, 212, 92, 0.16) 45px 47px, transparent 48px 96px);
  content: "";
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 64px 0 72px;
}

.page-hero-inner {
  min-height: 58svh;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--ocean-300);
  font-size: 0.77rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

p {
  margin-bottom: var(--space-text-gap);
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 5rem);
}

body[data-page="home"] .hero-title-break {
  display: none;
}

@media (min-width: 941px) {
  body[data-page="home"] .hero-title-break {
    display: block;
  }
}

body[data-page="home"] .hero h1 {
  line-height: 1.04;
}

body[data-page="home"] .hero-inner > div:first-child {
  padding-left: clamp(20px, 4vw, 56px);
}

.hero h1 span,
.page-hero h1 span {
  color: var(--orange-500);
}

.hero-lede,
.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
}

.section {
  position: relative;
  padding: 96px clamp(18px, 5vw, 70px);
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.section-tight {
  padding-top: 64px;
  padding-bottom: 64px;
}

.light-surface {
  background: rgba(255, 250, 240, 0.9);
}

.sand-surface {
  background: rgba(255, 240, 202, 0.72);
}

.dark-surface {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(38, 23, 53, 0.98), rgba(18, 79, 97, 0.94)),
    var(--navy-950);
}

.ocean-surface {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 23, 53, 0.95), rgba(223, 95, 37, 0.64), rgba(21, 159, 163, 0.78)),
    var(--navy-900);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(260px, 0.56fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.section-header.compact {
  grid-template-columns: minmax(0, 780px);
}

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

.dark-surface .section-kicker,
.ocean-surface .section-kicker {
  color: var(--sun-400);
}

.section-header h2,
.solo-heading {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.1vw, 3.25rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.solo-heading {
  margin-bottom: var(--space-heading-gap);
}

.section-header p,
.muted {
  max-width: var(--text-measure);
  color: var(--muted);
}

.dark-surface .section-header p,
.ocean-surface .section-header p,
.dark-surface .muted,
.ocean-surface .muted {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 46px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid + p {
  margin-top: 22px;
}

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

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

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

.card,
.feature-card,
.experience-card,
.faq-card,
.contact-card,
.program-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 83, 47, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card,
.feature-card,
.faq-card,
.contact-card,
.program-card {
  padding: var(--space-card-pad);
}

.dark-surface .card,
.dark-surface .feature-card,
.dark-surface .experience-card,
.dark-surface .faq-card,
.dark-surface .contact-card,
.dark-surface .program-card,
.ocean-surface .card,
.ocean-surface .feature-card,
.ocean-surface .experience-card,
.ocean-surface .faq-card,
.ocean-surface .contact-card,
.ocean-surface .program-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.feature-card:hover,
.experience-card:hover,
.program-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(8, 31, 48, 0.14);
}

.dark-surface .feature-card:hover,
.dark-surface .experience-card:hover,
.ocean-surface .feature-card:hover,
.ocean-surface .experience-card:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--accent, var(--ocean-500));
  border-radius: 8px;
  font-weight: 950;
}

.feature-card h3,
.experience-card h3,
.faq-card h3,
.contact-card h3,
.program-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.13;
}

.feature-card p,
.experience-card p,
.faq-card p,
.contact-card p,
.program-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark-surface .feature-card p,
.dark-surface .experience-card p,
.dark-surface .faq-card p,
.dark-surface .contact-card p,
.dark-surface .program-card p,
.ocean-surface .feature-card p,
.ocean-surface .experience-card p,
.ocean-surface .faq-card p,
.ocean-surface .contact-card p,
.ocean-surface .program-card p {
  color: rgba(255, 255, 255, 0.74);
}

.experience-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.experience-card .media-frame {
  height: 260px;
  border-radius: 8px 8px 0 0;
}

/* These cards carry their title in the body, not on the photo, so the bottom scrim
   only needs to seat the image against the card — not to hold text legible. */
.experience-card .media-frame::after {
  background: linear-gradient(180deg, transparent 62%, rgba(38, 23, 53, 0.3));
}

.experience-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  padding: 24px;
}

/* Entry price on the package teasers, so the three packages can be compared
   before opening any of them. Filled from the pricing data at runtime. */
.card-from {
  margin-top: -4px;
  color: var(--sun-400);
  font-size: 0.92rem;
  font-weight: 850;
}

.experience-card-body .button,
.experience-card-body .button-outline {
  justify-self: start;
  margin-top: 4px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(38, 23, 53, 0.86), rgba(244, 123, 42, 0.44), rgba(34, 195, 189, 0.36)),
    var(--navy-900);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.media-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 38%, rgba(38, 23, 53, 0.62));
  content: "";
}

.image-zoom {
  transition: transform 360ms ease, filter 360ms ease;
}

.image-zoom:hover {
  transform: scale(1.015);
  filter: saturate(1.05);
}

.caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: var(--white);
}

/* Sailing Experience card on the homepage and Experiences page: keep the boats and sails visible on a portrait photo. */
body[data-page="home"] .media-frame[data-bg="homeSailingImage"],
body[data-page="experiences"] .media-frame[data-bg="homeSailingImage"] {
  background-size: cover;
  background-position: center 75%;
}

/* Catamaran activity: the source photo is a wide panorama (1063x391), so the frame only ever
   shows a slice of it. Sit that slice on the boat so both hulls, the crew and the sail stay in. */
body[data-page="activities"] .media-frame[data-bg="activityCatamaranImage"] {
  background-size: cover;
  background-position: 85% center;
}

.caption strong {
  display: block;
  font-size: 1.08rem;
}

.caption span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.fact-strip,
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(125, 83, 47, 0.12);
  border-radius: 8px;
  background: rgba(223, 95, 37, 0.12);
  box-shadow: var(--shadow-soft);
}

.fact,
.program-fact {
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.fact span,
.program-fact span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-600);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fact strong,
.program-fact strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.12;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 var(--space-text-gap);
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.04em;
  left: 0;
  color: var(--ocean-500);
  font-weight: 950;
  content: "✓";
}

.plain-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
  content: "";
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 83, 47, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.timeline-step {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--navy-950);
  background: var(--sun-400);
  border-radius: 8px;
  font-weight: 950;
}

.timeline-item h3 {
  margin-bottom: 6px;
  line-height: 1.13;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.package-lede,
.sailing-package-lede {
  max-width: 680px;
  margin-top: 20px;
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 850;
}

.package-facts,
.sailing-package-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.package-facts span,
.sailing-package-facts span {
  min-width: 0;
  padding: 14px 10px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(125, 83, 47, 0.12);
  border-radius: 8px;
}

.package-facts strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-950);
  font-size: 1.1rem;
}

.sailing-package-facts strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-950);
  font-size: 1.04rem;
}

.package-photo,
.sailing-photo {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  background: var(--navy-900);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

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

.sailing-photo img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.package-photo-main {
  aspect-ratio: 1 / 1;
}

.sailing-photo-main {
  aspect-ratio: 3 / 2;
}

.package-photo figcaption,
.sailing-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px 18px 16px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(38, 23, 53, 0.84));
  font-weight: 800;
}

.package-day-grid,
.sailing-day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.package-day,
.sailing-day {
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 83, 47, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.package-day-final,
.sailing-day-final {
  grid-column: 1 / -1;
}

.package-day-number,
.sailing-day-number {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 14px;
  color: var(--navy-950);
  background: var(--sun-400);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.package-day h3,
.sailing-day h3 {
  margin-bottom: 20px;
  font-size: 1.45rem;
}

.schedule-list,
.sailing-schedule {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.schedule-list li,
.sailing-schedule li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(125, 83, 47, 0.12);
}

.schedule-list time,
.sailing-schedule time {
  color: var(--orange-600);
  font-size: 0.83rem;
  font-weight: 950;
}

.schedule-list strong,
.sailing-schedule strong {
  display: block;
}

.schedule-list span,
.sailing-schedule span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
}

.package-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.package-gallery .package-photo {
  min-height: 430px;
}

.sailing-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
}

.sailing-photo-large {
  grid-row: 1 / 3;
}

.package-details-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 24px;
  align-items: stretch;
}

.package-inclusions {
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.package-inclusions h3 {
  font-size: 1.5rem;
}

.package-inclusions .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-inclusions .check-list li::before {
  color: var(--sun-400);
}

/* Stay-length selector above the pricing grid: a pill-shaped segmented control
   with a single indicator that slides between the three options. Three short
   labels stay on one row down to the narrowest phone, so the prices never need
   a scrolling table. --duration-index is set by the script; the default of 2
   matches the seven-day option the markup ships as selected. */
.duration-switch {
  display: grid;
  gap: 13px;
  justify-items: start;
  margin-bottom: 28px;
}

.duration-switch-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.duration-options {
  position: relative;
  display: grid;
  width: min(408px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(38, 23, 53, 0.2);
  backdrop-filter: blur(8px);
}

.duration-options::before {
  position: absolute;
  z-index: 0;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc((100% - 10px) / 3);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-400), var(--orange-500));
  box-shadow: 0 6px 18px rgba(223, 95, 37, 0.34);
  content: "";
  transform: translateX(calc(var(--duration-index, 2) * 100%));
  transition: transform 340ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.duration-options button {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 0 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  transition: color 240ms ease;
}

.duration-options button:hover {
  color: var(--white);
}

.duration-options button[aria-pressed="true"] {
  color: var(--navy-950);
}

.duration-options button:focus-visible {
  outline: 2px solid var(--sun-400);
  outline-offset: 3px;
}

/* The amount is the thing that changes, so let it settle in rather than snap. */
@keyframes priceSwap {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-card strong.is-swapping {
  animation: priceSwap 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .duration-options::before {
    transition: none;
  }

  .price-card strong.is-swapping {
    animation: none;
  }
}

.package-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  container-type: inline-size;
  display: flex;
  min-width: 0;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.price-card.featured {
  background: var(--sun-400);
}

.price-card span {
  min-height: 46px;
  color: var(--muted);
  font-weight: 850;
}

.price-card strong {
  margin-top: 16px;
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  /* Between 940px and 1180px the three cards are at their narrowest relative to
     the viewport, so size the amount against the card instead. */
  font-size: clamp(1.9rem, 30cqi, 3.6rem);
  line-height: 1;
  /* "380 €" is one token — never let the amount and the symbol split. */
  white-space: nowrap;
}

.price-card small {
  margin-top: 8px;
  color: var(--muted);
}

.package-booking {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.package-booking h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.package-booking p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.house-rules-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.rules-poster {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(125, 83, 47, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.rules-poster img {
  width: 100%;
  border-radius: 6px;
}

.rules-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rule-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 96px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 83, 47, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(113, 76, 44, 0.08);
}

.rule-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--ocean-600), var(--navy-900));
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
}

.rule-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-950);
  line-height: 1.16;
}

.rule-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-grid .media-frame {
  min-height: 100%;
}

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

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 23, 53, 0.94), rgba(223, 95, 37, 0.7), rgba(18, 79, 97, 0.78)),
    var(--navy-950);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    repeating-linear-gradient(172deg, transparent 0 48px, rgba(255, 212, 92, 0.24) 49px 51px, transparent 52px 102px);
  content: "";
  animation: waveDrift 24s linear infinite;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-inner h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
}

.cta-inner p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(125, 83, 47, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(8, 31, 48, 0.08);
}

.faq-item summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
}

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

.faq-item summary::after {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--white);
  background: var(--orange-500);
  border-radius: 50%;
  text-align: center;
  content: "+";
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(125, 83, 47, 0.18);
  border-radius: 8px;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ocean-500);
  box-shadow: 0 0 0 4px rgba(34, 195, 189, 0.16);
}

.note {
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 212, 92, 0.18);
  border: 1px solid rgba(223, 95, 37, 0.16);
  border-radius: 8px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, var(--navy-950), #1f2937);
}

.site-footer::before {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  opacity: 0.22;
  background: repeating-linear-gradient(172deg, transparent 0 42px, rgba(255, 212, 92, 0.25) 43px 45px, transparent 46px 88px);
  content: "";
  animation: waveDriftReverse 30s linear infinite;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(160px, 0.6fr));
  gap: 30px;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 58px 0;
}

.footer-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo-crop {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
}

.footer-logo-crop img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 235%;
  max-width: none;
  height: auto;
  transform: translate(-49%, -34%);
}

.footer-inner h2,
.footer-inner h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.footer-inner h2 {
  font-size: 1.45rem;
}

.footer-inner ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #ffffff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 140, 126, 0.42);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #128c7e;
  outline-offset: 3px;
}

body.nav-open .whatsapp-float {
  display: none;
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@keyframes waveDrift {
  from {
    transform: translateX(0) rotate(-3deg);
  }
  to {
    transform: translateX(-120px) rotate(-3deg);
  }
}

@keyframes waveDriftReverse {
  from {
    transform: translateX(-120px) rotate(-3deg);
  }
  to {
    transform: translateX(0) rotate(-3deg);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  body.nav-open .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    justify-self: stretch;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 14px 5vw 18px;
    background: rgba(255, 248, 232, 0.98);
    border-bottom: 1px solid rgba(125, 83, 47, 0.14);
    box-shadow: 0 18px 34px rgba(113, 76, 44, 0.12);
  }

  body.nav-open .site-nav a {
    min-height: 52px;
    border-bottom: 1px solid rgba(125, 83, 47, 0.1);
  }

  body.nav-open .site-nav .lang-switch {
    justify-self: start;
    width: fit-content;
    margin-top: 10px;
    margin-left: 0;
  }

  body.nav-open .site-nav .lang-switch a {
    min-height: 42px;
    border-bottom: none;
  }

  body.nav-open .nav-item {
    display: grid;
  }

  body.nav-open .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 14px;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  body.nav-open .dropdown-menu a {
    min-height: 44px;
    font-size: 0.84rem;
  }
}

@media (max-width: 940px) {
  .section-header,
  .split,
  .split.reverse,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .fact-strip,
.program-grid,
.grid-4,
.grid-3,
.package-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-day-grid,
.package-gallery,
.package-details-grid,
.sailing-day-grid {
    grid-template-columns: 1fr;
  }

  .package-day-final,
  .sailing-day-final {
    grid-column: auto;
    grid-row: auto;
  }

  .package-gallery .package-photo {
    min-height: 360px;
  }

  .sailing-photo-large {
    grid-column: auto;
    grid-row: auto;
  }

  .sailing-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .sailing-gallery .sailing-photo {
    min-height: 330px;
  }

  .package-booking {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .house-rules-layout {
    grid-template-columns: 1fr;
  }

  .rules-poster {
    position: relative;
    top: auto;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-inline: 16px;
  }

  body.nav-open .site-nav {
    inset: var(--header-height) 0 auto;
  }

  .brand {
    min-width: 0;
  }

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

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .brand-text small,
  .brand-text em {
    display: none;
  }

  .hero-inner,
  .page-hero-inner {
    width: min(92vw, 100%);
    padding: 58px 0 64px;
  }

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

  .button,
  .button-outline,
  .button-ghost {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
  }

  .section {
    padding: 62px 4vw;
  }

  body[data-page="home"] .hero h1 {
    line-height: 1.10;
  }

  body[data-page="home"] .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(38, 23, 53, 0.12), rgba(38, 23, 53, 0.76)),
      repeating-linear-gradient(172deg, transparent 0 44px, rgba(255, 211, 92, 0.16) 45px 47px, transparent 48px 96px);
  }

  body[data-page="home"] .hero + section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  body[data-page="home"] .hero + section .section-header {
    margin-bottom: 28px;
  }

  body[data-page="accommodation"] .hero h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 0.95;
  }

  .fact-strip,
.program-grid,
.grid-2,
.grid-3,
.grid-4,
.form-grid,
.footer-inner,
.package-facts,
.package-prices,
.package-inclusions .check-list,
.sailing-package-facts {
    grid-template-columns: 1fr;
  }

  .package-photo-main {
    aspect-ratio: 4 / 5;
  }

  .sailing-photo-main {
    aspect-ratio: 4 / 3;
  }

  .package-gallery .package-photo {
    min-height: 300px;
  }

  .sailing-gallery .sailing-photo {
    min-height: 280px;
  }

  .package-day,
  .sailing-day {
    padding: 22px 18px;
  }

  .schedule-list li,
  .sailing-schedule li {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .price-card {
    min-height: 164px;
  }

  .fact,
  .program-fact {
    min-height: auto;
  }

  .media-frame {
    min-height: 300px;
  }

  /* Narrow phone frame keeps far less of the catamaran panorama, so recentre on the crew. */
  body[data-page="activities"] .media-frame[data-bg="activityCatamaranImage"] {
    background-position: 70% center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-grid .large {
    grid-row: span 1;
  }

  .rules-list {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

  .whatsapp-float {
    transition: none;
  }
}

/* Experience package visual refinement, scoped to Surf and Sailing package sections. */
body[data-page="surf-experience"] .package-day-grid,
body[data-page="sailing-experience"] .sailing-day-grid {
  gap: 16px;
}

body[data-page="surf-experience"] .package-day,
body[data-page="sailing-experience"] .sailing-day {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px 24px;
  background: linear-gradient(145deg, #fffaf0, #f2fbfa);
  border: 1px solid rgba(21, 159, 163, 0.2);
  border-left: 4px solid var(--ocean-600);
  box-shadow: 0 12px 30px rgba(38, 23, 53, 0.1);
}

body[data-page="surf-experience"] .package-day:nth-child(even),
body[data-page="sailing-experience"] .sailing-day:nth-child(even) {
  background: linear-gradient(145deg, #fff8eb, #fff1df);
  border-color: rgba(244, 123, 42, 0.2);
  border-left-color: var(--orange-500);
}

body[data-page="surf-experience"] .package-day-number,
body[data-page="sailing-experience"] .sailing-day-number {
  min-height: 30px;
  padding: 4px 10px;
  margin-bottom: 10px;
  color: var(--white);
  background: var(--ocean-600);
  box-shadow: 0 6px 14px rgba(21, 159, 163, 0.18);
}

body[data-page="surf-experience"] .package-day:nth-child(even) .package-day-number,
body[data-page="sailing-experience"] .sailing-day:nth-child(even) .sailing-day-number {
  color: var(--navy-950);
  background: var(--logo-sunset);
  box-shadow: 0 6px 14px rgba(244, 123, 42, 0.16);
}

body[data-page="surf-experience"] .package-day h3,
body[data-page="sailing-experience"] .sailing-day h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

body[data-page="surf-experience"] .schedule-list li,
body[data-page="sailing-experience"] .sailing-schedule li {
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-color: rgba(21, 159, 163, 0.14);
}

body[data-page="surf-experience"] .package-day:nth-child(even) .schedule-list li,
body[data-page="sailing-experience"] .sailing-day:nth-child(even) .sailing-schedule li {
  border-color: rgba(244, 123, 42, 0.14);
}

body[data-page="surf-experience"] .schedule-list time,
body[data-page="sailing-experience"] .sailing-schedule time {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  color: var(--navy-900);
  background: rgba(21, 159, 163, 0.1);
  border-radius: 4px;
  line-height: 1.2;
}

body[data-page="surf-experience"] .package-day:nth-child(even) .schedule-list time,
body[data-page="sailing-experience"] .sailing-day:nth-child(even) .sailing-schedule time {
  color: var(--navy-950);
  background: rgba(244, 123, 42, 0.11);
}

body[data-page="surf-experience"] .schedule-list span,
body[data-page="sailing-experience"] .sailing-schedule span {
  font-size: 0.88rem;
  line-height: 1.5;
}

.package-prices .price-card:first-child {
  background: linear-gradient(145deg, var(--orange-500), var(--logo-sunset));
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 30px rgba(223, 95, 37, 0.2);
}

.package-prices .price-card:first-child span,
.package-prices .price-card:first-child strong {
  color: var(--navy-950);
}

.package-prices .price-card:last-child {
  background: #d9eff6;
  border-color: #a8d6e4;
  box-shadow: 0 14px 30px rgba(18, 79, 97, 0.14);
}

.package-prices .price-card:last-child span {
  color: #345a67;
}

.package-prices .price-card:last-child strong {
  color: var(--navy-950);
}

@media (max-width: 640px) {
  body[data-page="surf-experience"] .package-day-grid,
body[data-page="sailing-experience"] .sailing-day-grid {
    gap: 12px;
  }

  body[data-page="surf-experience"] .package-day,
body[data-page="sailing-experience"] .sailing-day {
    padding: 18px 16px 16px 18px;
  }

  body[data-page="surf-experience"] .package-day h3,
body[data-page="sailing-experience"] .sailing-day h3 {
    font-size: 1.2rem;
  }

  body[data-page="surf-experience"] .schedule-list li,
body[data-page="sailing-experience"] .sailing-schedule li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px;
    padding: 9px 0;
  }

  body[data-page="surf-experience"] .schedule-list time,
body[data-page="sailing-experience"] .sailing-schedule time {
    padding-inline: 4px;
    font-size: 0.74rem;
  }
}