
:root {
  --ocean: #0a2e52;
  --ocean-mid: #0d4070;
  --ocean-light: #1a6fa8;
  --water: #2196c9;
  --water-pale: #e8f4fc;
  --sand: #f5ede0;
  --sand-dark: #e8d9c4;
  --rust: #c0460e;
  --rust-dark: #9e380a;
  --white: #ffffff;
  --ink: #0f1e2d;
  --ink-mid: #2c3e50;
  --ink-light: #556677;
  --border: #d0dde8;

  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-body: 'Barlow', sans-serif;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2.5vw, 1.75rem);
  --space-lg: clamp(2rem, 5vw, 4rem);
  --space-xl: clamp(3rem, 8vw, 6rem);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-card: 0 4px 24px rgba(10, 46, 82, 0.12);
  --shadow-card-hover: 0 8px 40px rgba(10, 46, 82, 0.22);

  --transition: 0.22s ease;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }


.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}


h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.1;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.8rem); }

p { max-width: 65ch; }

.section-eyebrow {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--water);
  margin-bottom: var(--space-xs);
}

.section-eyebrow--light { color: #7dd3f7; }

.section-header {
  max-width: 750px;
  margin-bottom: var(--space-lg);
}

.section-header h2 { margin-bottom: var(--space-sm); }

.section-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-light);
  max-width: 60ch;
}

.section-lead--light { color: rgba(255,255,255,0.8); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7em 1.6em;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
  border: 2px solid var(--rust);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  box-shadow: 0 4px 20px rgba(192, 70, 14, 0.4);
  outline: none;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  outline: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  outline: none;
}

.btn-nav {
  background: var(--rust);
  color: var(--white);
  border: 2px solid var(--rust);
  padding: 0.45em 1.1em;
  font-size: 0.9rem;
}
.btn-nav:hover, .btn-nav:focus-visible {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  outline: none;
}

.btn-lg { padding: 0.85em 2em; font-size: 1.1rem; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 46, 82, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 0.85rem;
}


.logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo:hover { opacity: 0.85; }

.logo-mark {
  font-size: 2rem;
  line-height: 1;
  color: var(--water);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-top {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.02em;
  color: var(--white);
}
.logo-bottom {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(0.7rem, 1.5vw, 0.82rem);
  letter-spacing: 0.04em;
  color: var(--water);
}


.site-header nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.site-header nav a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  padding-block: 0.25em;
}
.site-header nav a:hover,
.site-header nav a:focus-visible,
.site-header nav a[aria-current="page"] {
  color: var(--white);
  outline: none;
}
.site-header nav a[aria-current="page"] {
  border-bottom: 2px solid var(--water);
}


.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 20, 40, 0.75) 0%,
    rgba(10, 46, 82, 0.55) 50%,
    rgba(5, 20, 40, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7dd3f7;
  background: rgba(10, 64, 112, 0.5);
  border: 1px solid rgba(125, 211, 247, 0.3);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 14ch;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-lg);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); transform-origin: top; }
}


.intro-strip {
  background: var(--ocean);
  padding-block: var(--space-md);
}

.intro-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
}

.intro-stat {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  position: relative;
  color: var(--white);
}

.intro-stat + .intro-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.stat-icon { font-size: 1.6rem; margin-bottom: 0.3rem; }

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: var(--ff-display);
  font-weight: 600;
}

.stat-value {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white);
  margin-top: 0.2rem;
}


.charters {
  padding-block: var(--space-xl);
  background: var(--sand);
}

.charter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.charter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.charter-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.charter-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.charter-img-wrap img {
  transition: transform 0.4s ease;
}
.charter-card:hover .charter-img-wrap img {
  transform: scale(1.04);
}

.charter-body {
  padding: var(--space-md);
}
.charter-body h3 {
  color: var(--ocean);
  margin-bottom: var(--space-xs);
}
.charter-body p {
  font-size: 0.97rem;
  color: var(--ink-mid);
  max-width: none;
}


.species {
  position: relative;
  padding-block: var(--space-xl);
  overflow: hidden;
}

.species-bg {
  position: absolute;
  inset: 0;
}
.species-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.species-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,20,40,0.9) 0%, rgba(10,64,112,0.82) 100%);
}

.species-inner {
  position: relative;
  z-index: 2;
}

.species-inner .section-header--light h2 {
  color: var(--white);
}

.species-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.species-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(125, 211, 247, 0.3);
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition);
}
.species-item:hover {
  background: rgba(33, 150, 201, 0.3);
  border-color: var(--water);
}

.species-name {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white);
  padding: 0.5em 1.4em;
  letter-spacing: 0.04em;
}


.experience {
  padding-block: var(--space-xl);
  background: var(--white);
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .experience-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.experience-img-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.exp-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.exp-img-accent {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 520px) {
  .exp-img-accent { grid-column: 2 / 3; }
  .exp-img-main { grid-column: 1 / 2; grid-row: 1 / 3; aspect-ratio: 3 / 4; }
  .exp-img-accent { grid-row: 1 / 2; aspect-ratio: auto; }
}

.experience-text-col h2 {
  color: var(--ocean);
  margin-bottom: var(--space-md);
}

.experience-text-col p {
  color: var(--ink-mid);
  margin-bottom: var(--space-sm);
}

.include-list {
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.include-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-weight: 500;
  color: var(--ink-mid);
  font-size: 0.97rem;
}

.include-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--water);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}


.gallery-strip {
  overflow: hidden;
  background: var(--ocean);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
  }
  .gallery-item--tall { grid-row: 1 / 3; }
  .gallery-item--wide { grid-column: 2 / 4; }
}

.gallery-item { overflow: hidden; aspect-ratio: 1; }
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

@media (min-width: 640px) {
  .gallery-item { aspect-ratio: unset; }
}


.location {
  padding-block: var(--space-xl);
  background: var(--water-pale);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .location-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.location-text-col h2 {
  color: var(--ocean);
  margin-bottom: var(--space-md);
}

.location-text-col > p {
  color: var(--ink-mid);
  margin-bottom: var(--space-md);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.location-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.loc-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1em;
  color: var(--ocean-light);
}

.location-detail-row div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.location-detail-row strong {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean);
}

.location-detail-row span {
  color: var(--ink-mid);
  font-size: 0.97rem;
}

.location-detail-row a {
  color: var(--ocean-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.location-detail-row a:hover { color: var(--rust); }

.location-img-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}


.cta-band {
  background: var(--ocean);
  background-image: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '&#9875;';
  font-size: 18rem;
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  color: var(--white);
  pointer-events: none;
  font-family: serif;
  line-height: 1;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cta-band-text h2 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.cta-band-text p {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 52ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  flex-shrink: 0;
}


.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-lg);
  border-top: 3px solid var(--rust);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo .logo-mark { font-size: 1.6rem; }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 36ch;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.footer-nav a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.08);
}


:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 3px;
  border-radius: 2px;
}



.about-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: var(--space-xl);
}

.about-hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 18ch;
}

.about-story {
  padding-block: var(--space-xl);
  background: var(--white);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .about-story-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-story-img-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-story-img-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-story-img-accent {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.about-story-text h2 {
  color: var(--ocean);
  margin-bottom: var(--space-md);
}

.about-story-text p {
  color: var(--ink-mid);
  margin-bottom: var(--space-sm);
}

.about-what-we-do {
  padding-block: var(--space-xl);
  background: var(--sand);
}

.about-trip-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-trip-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .about-trip-item {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .about-trip-item--reverse {
    direction: rtl;
  }
  .about-trip-item--reverse > * {
    direction: ltr;
  }
}

.about-trip-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.about-trip-img img {
  transition: transform 0.4s ease;
}

.about-trip-item:hover .about-trip-img img {
  transform: scale(1.04);
}

.about-trip-body {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-trip-body h3 {
  color: var(--ocean);
  margin-bottom: var(--space-sm);
}

.about-trip-body p {
  color: var(--ink-mid);
  font-size: 0.97rem;
  max-width: none;
}

.about-species {
  position: relative;
  padding-block: var(--space-xl);
  overflow: hidden;
}

.about-included {
  padding-block: var(--space-xl);
  background: var(--water-pale);
}

.about-included-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .about-included-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-included-text h2 {
  color: var(--ocean);
  margin-bottom: var(--space-md);
}

.about-included-text p {
  color: var(--ink-mid);
  margin-bottom: var(--space-sm);
}

.about-included-imgs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-inc-img-top {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-card);
}

.about-inc-img-bottom {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  box-shadow: var(--shadow-card);
}

.about-departure {
  padding-block: var(--space-xl);
  background: var(--white);
}



.contact-hero {
  position: relative;
  min-height: clamp(340px, 50vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
}
.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 20, 40, 0.78) 0%,
    rgba(10, 46, 82, 0.58) 60%,
    rgba(5, 20, 40, 0.45) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.contact-hero-content .hero-eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7dd3f7;
  background: rgba(10, 64, 112, 0.5);
  border: 1px solid rgba(125, 211, 247, 0.3);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.contact-hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 16ch;
}

.contact-hero-content .hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
}

.contact-main {
  padding-block: var(--space-xl);
  background: var(--sand);
}

.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 860px) {
  .contact-main-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-details-col h2 {
  color: var(--ocean);
  margin-bottom: var(--space-md);
}

.contact-intro-text {
  color: var(--ink-mid);
  margin-bottom: var(--space-lg);
  max-width: 58ch;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.contact-card--link:hover,
.contact-card--link:focus-visible {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  outline: none;
}
.contact-card--link:hover .contact-card-body span:first-of-type {
  color: var(--rust);
}

.contact-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.1em;
  color: var(--ocean-light);
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-card-body strong {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
}

.contact-card-body span:first-of-type {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--transition);
}

.contact-card-note {
  font-size: 0.82rem;
  color: var(--ink-light);
}

.enquiry-block {
  background: var(--ocean);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
}

.enquiry-block .section-eyebrow {
  color: #7dd3f7;
}

.enquiry-block h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.enquiry-block p {
  color: rgba(255,255,255,0.78);
  font-size: 0.97rem;
  margin-bottom: var(--space-md);
}

.enquiry-btn {
  width: 100%;
  justify-content: center;
}

.contact-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-md);
}

.what-to-bring {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-card);
}

.what-to-bring h3 {
  color: var(--ocean);
  margin-bottom: var(--space-sm);
}

.what-to-bring > p {
  color: var(--ink-mid);
  font-size: 0.97rem;
  margin-bottom: var(--space-md);
}

.bring-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bring-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-weight: 500;
  color: var(--ink-mid);
  font-size: 0.97rem;
}

.bring-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--ocean-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-section {
  padding-block: var(--space-xl);
  background: var(--white);
}

.faq-section .section-header {
  margin-bottom: var(--space-lg);
}

.faq-section .section-header h2 {
  color: var(--ocean);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-item {
  background: var(--sand);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-card);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--space-md);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ocean);
  cursor: pointer;
  list-style: none;
  line-height: 1.25;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--water);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid var(--border);
}

.faq-answer p {
  font-size: 0.97rem;
  color: var(--ink-mid);
  max-width: none;
  padding-top: var(--space-sm);
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
