/*
 Theme Name:   Canopy Theme
 Theme URI:    https://canopybythecoast.in
 Description:  Canopy By The Coast child theme, based on GeneratePress.
 Author:       Red Rock India
 Author URI:   https://canopybythecoast.in
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  canopy-theme
*/

/* ─── BRAND VARIABLES ───────────────────────────────────────────────────── */
:root {
  --forest: #1a3a2a;
  --moss:   #3d6b4f;
  --sage:   #7a9e8a;
  --sand:   #e8dcc8;
  --coral:  #c96a3e;
  --cream:  #f7f3ed;
  --ocean:  #1d4e6b;
  --ink:    #1a1a18;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ─── BASE TYPOGRAPHY ───────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* ─── SITE HEADER & NAVIGATION ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--sand);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
}

/* Logo */
.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo:hover {
  text-decoration: none;
}

.logo-img {
  display: block;
  width: auto;
  background: transparent;
}
.logo-img--nav {
  max-height: 65px;
}

/* Primary nav links */
.primary-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--forest);
}

/* CTA button */
.nav-cta {
  background: var(--coral);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-cta:hover {
  background: #b85a30;
  color: #ffffff;
  text-decoration: none;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
}

/* ─── MOBILE NAV (≤768px) ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header {
    position: sticky; /* keep sticky on mobile too */
  }

  .nav-container {
    padding: 0 20px;
    flex-wrap: wrap;
    height: auto;
    min-height: 60px;
  }

  /* Hamburger visible on mobile */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
    order: 3;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  /* Animate to X when open */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Nav links hidden until toggled */
  .primary-nav {
    display: none;
    width: 100%;
    order: 4;
    border-top: 1px solid var(--sand);
  }
  .primary-nav.is-open {
    display: block;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
  }
  .primary-nav li {
    border-bottom: 1px solid var(--sand);
  }
  .primary-nav li:last-child {
    border-bottom: none;
  }
  .primary-nav a {
    display: block;
    padding: 13px 4px;
    font-size: 0.9rem;
  }

  /* Top-bar CTA hidden on mobile — .nav-cta-mobile inside the menu takes over */
  .nav-cta {
    display: none;
  }

  /* Mobile-only CTA link rendered inside the <nav> */
  .nav-cta-mobile {
    display: none;
    margin: 12px 4px 4px;
    background: var(--coral);
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
  }
  .nav-cta-mobile:hover {
    background: #b85a30;
    color: #ffffff;
    text-decoration: none;
  }
  .primary-nav.is-open .nav-cta-mobile {
    display: block;
  }
}

/* Hide mobile CTA on desktop */
@media (min-width: 769px) {
  .nav-cta-mobile {
    display: none;
  }
}

/* ─── LAYOUT RESETS ─────────────────────────────────────────────────────── */
/* Strip GeneratePress and browser defaults that create unwanted gaps */
body {
  margin: 0;
}

.site-main {
  margin: 0;
  padding: 0;
}

/* Prevent any section from leaking margin into adjacent dark sections */
.closing-cta,
.site-footer {
  margin-top: 0;
  margin-bottom: 0;
}

/* Pull footer up 1px to close the sub-pixel rendering seam */
.site-footer {
  margin-top: -1px;
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2a4a36 0%, #1a3a2a 60%, #1d4e6b 100%);
  margin: 0;
  padding-bottom: 0;
  border: none;
  outline: none;
}

/* Background media layer (placeholder gradient + future video) */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* When Nester's photo is available, swap to:
     background: url('assets/hero-poster.jpg') center / cover no-repeat;
     opacity: 0.28;
  */
  background: linear-gradient(135deg, #2a4a36 0%, #1a3a2a 60%, #1d4e6b 100%);
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark overlay — keeps text readable over video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 25, 0.62);
  z-index: 2;
}

/* Content container */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 80px 72px;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Main headline */
.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

/* Italic portion — lighter sage-green */
.hero-h1 em {
  color: #b8d4c2;
  font-style: italic;
}

/* Subheadline */
.hero-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 36px;
}

/* CTA row */
.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* Primary CTA */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.hero-btn-primary:hover {
  background: #b85a30;
  color: #ffffff;
  text-decoration: none;
}

/* Ghost / secondary CTA */
.hero-btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.hero-btn-ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

/* ── Floating stats bar ── */
.hero-stats {
  position: absolute;
  bottom: 32px;
  right: 72px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.stat-lbl {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* ─── CREDIBILITY BAR ───────────────────────────────────────────────────── */
.cred-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  padding: 0 48px;
  /* Flush against hero — no margin, no gap */
  margin: 0;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  flex-shrink: 0;
}

.cred-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.cred-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.cred-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 28px;
  flex-shrink: 0;
}

/* ─── CREDIBILITY BAR — MOBILE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .cred-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 20px 24px;
  }

  /* Hide dividers on mobile — wrapping items create their own visual rhythm */
  .cred-divider {
    display: none;
  }

  .cred-item {
    justify-content: center;
    padding: 10px 16px;
    flex-basis: 45%;
  }

  .cred-text {
    white-space: normal;
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .cred-item {
    flex-basis: 100%;
  }
}

/* ─── HERO — MOBILE ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 140px; /* space for stats bar below */
  }

  .hero-inner {
    padding: 48px 24px 32px;
    max-width: 100%;
  }

  .hero-h1 {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 0.88rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  /* Stats bar moves to bottom, full width on mobile */
  .hero-stats {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    gap: 0;
    justify-content: space-around;
    padding: 14px 16px;
  }

  .hero-stat-divider {
    height: 20px;
  }

  .stat-num {
    font-size: 1.25rem;
  }
}

/* ─── SHARED SECTION UTILITIES ───────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--coral);
  margin: 0 0 10px;
}

.section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin: 0;
}

/* ─── EXPERIENCES SECTION ───────────────────────────────────────────────── */
.exp-section {
  background: var(--cream);
  padding: 72px 0;
}

.exp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Section header row */
.exp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* ── Filter pills ── */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  padding: 7px 18px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  border: 1.5px solid #d8d4ce;
  background: #ffffff;
  color: #888;
  line-height: 1;
}

.pill--active,
.pill:hover {
  background: var(--forest);
  color: #ffffff;
  border-color: var(--forest);
}

/* ── Card grid ── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Base card ── */
.exp-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sand);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

/* ── Card image block ── */
.exp-img {
  flex-shrink: 0;
  overflow: hidden;
}

/* Real photo — fills the block, same heights as placeholders */
.exp-img-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Height for standard (non-featured) cards */
.exp-card:not(.exp-card--featured) .exp-img {
  height: 180px;
}

/* Height for the featured card */
.exp-card--featured .exp-img {
  height: 100%;
  min-height: 280px;
}

.exp-img--placeholder {
  background: #d6cfc3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #9e9488;
}

/* Standard card image height */
.exp-card:not(.exp-card--featured) .exp-img--placeholder {
  height: 180px;
}

.exp-img-icon {
  font-size: 1.4rem;
  opacity: 0.6;
}

.exp-img-caption {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-align: center;
  padding: 0 16px;
  line-height: 1.4;
}

/* ── Card body ── */
.exp-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Tags ── */
.exp-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  background: #f0f7f3;
  color: var(--moss);
}

.exp-tag--heritage { background: #f0f4f7; color: var(--ocean); }
.exp-tag--workshop { background: #fdf5f0; color: var(--coral); }

/* ── Card name & description ── */
.exp-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 8px;
  line-height: 1.25;
}

.exp-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #777;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}

/* ── Meta list ── */
.exp-meta {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.exp-meta li {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #999;
}

/* ── Card footer: price + CTA ── */
.exp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0ede6;
  padding-top: 14px;
  margin-top: auto;
  gap: 12px;
}

.exp-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--forest);
  line-height: 1;
}

.exp-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: #999;
  margin-bottom: 2px;
  font-style: normal;
}

.exp-per {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: #999;
}

/* Book Now button */
.exp-book-btn {
  display: inline-block;
  background: var(--coral);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}

.exp-book-btn:hover {
  background: #b85a30;
  color: #ffffff;
  text-decoration: none;
}

/* Outline variant (groups card) */
.exp-book-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.exp-book-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* ── Featured card (spans 2 cols, side-by-side layout) ── */
.exp-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  flex-direction: unset; /* override base card flex */
}

.exp-card--featured .exp-img--placeholder {
  height: 100%;
  min-height: 280px;
}

.exp-card--featured .exp-name {
  font-size: 1.35rem;
}

.exp-card--featured .exp-desc {
  font-size: 0.82rem;
}

/* ── Groups card ── */
.exp-card--groups {
  background: var(--forest);
  border-color: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  text-align: center;
  gap: 12px;
}

.groups-icon {
  font-size: 2rem;
  display: block;
}

.groups-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.groups-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* ─── EXPERIENCES — MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* 2-col grid on tablet */
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .exp-section {
    padding: 48px 0;
  }

  .exp-container {
    padding: 0 20px;
  }

  .exp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Single column on mobile */
  .exp-grid {
    grid-template-columns: 1fr;
  }

  /* Featured card stacks vertically on mobile */
  .exp-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .exp-card--featured .exp-img--placeholder,
  .exp-card--featured .exp-img {
    height: 200px;
    min-height: unset;
  }

  .filter-pills {
    gap: 6px;
  }

  .pill {
    padding: 6px 14px;
    font-size: 0.72rem;
  }
}

/* ─── MEET THE FOUNDER ──────────────────────────────────────────────────── */
.founder-section {
  background: var(--forest);
  padding: 88px 0;
}

.founder-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

/* ── Left column: photo ── */
.founder-photo-col {
  /* Intentionally no extra styles — wrap handles positioning */
}

.founder-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Portrait — real photo */
.founder-photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Portrait placeholder */
.founder-photo-placeholder {
  aspect-ratio: 3 / 4;
  width: 100%;
  background: #7a8c7e; /* muted field-green placeholder */
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.founder-photo-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

.founder-photo-caption {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.5;
  padding: 0 20px;
}

/* Floating award badge — bottom-right of photo */
.founder-award-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--coral);
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.45;
  max-width: 170px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ── Right column: content ── */
.founder-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--sage);
  margin: 0 0 18px;
}

.founder-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -0.3px;
}

/* "Lifelong" — italic, lighter green */
.founder-h2 em {
  font-style: italic;
  color: #b8d4c2;
}

.founder-bio {
  margin: 0 0 28px;
}

.founder-bio p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin: 0 0 16px;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

/* Credential tags */
.founder-tags {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-tags li {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.06);
}

/* "Read full story" link */
.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--coral);
  text-decoration: none;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
  transition: opacity 0.15s;
}

.founder-link:hover {
  opacity: 0.8;
  color: var(--coral);
  text-decoration: none;
}

/* ─── FOUNDER — TABLET ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .founder-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 40px;
  }

  .founder-award-badge {
    right: -12px;
    bottom: -12px;
    max-width: 150px;
  }
}

/* ─── FOUNDER — MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .founder-section {
    padding: 56px 0 64px;
  }

  .founder-container {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 24px;
  }

  /* Constrain portrait width on mobile so it doesn't fill full screen */
  .founder-photo-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .founder-award-badge {
    right: -12px;
    bottom: -14px;
    font-size: 0.65rem;
    padding: 10px 13px;
    max-width: 155px;
  }

  .founder-h2 {
    font-size: 1.8rem;
  }

  .founder-bio p {
    font-size: 0.84rem;
  }
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.reviews-section {
  background: #ffffff;
  padding: 80px 0;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header row: heading left, aggregate rating right */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Aggregate rating block */
.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}

.reviews-stars {
  color: #e8a820;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.reviews-source {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #999;
  margin: 0;
}

/* Three-column card grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual review card */
.review-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Gold stars on each card */
.review-stars {
  color: #e8a820;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1;
}

/* Quote */
.review-quote {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  flex: 1;
}

/* Reviewer row */
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

/* Avatar circle placeholder */
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--forest);
  margin: 0 0 3px;
}

.reviewer-context {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #999;
  margin: 0;
}

/* ─── TESTIMONIALS — MOBILE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-section {
    padding: 56px 0;
  }

  .reviews-container {
    padding: 0 20px;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

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

  .reviews-score {
    font-size: 2.5rem;
  }
}

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery-section {
  background: var(--cream);
  padding: 80px 0;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header: heading left, Instagram link right */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-instagram-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--coral);
  text-decoration: none;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.gallery-instagram-link:hover {
  opacity: 0.75;
  color: var(--coral);
  text-decoration: none;
}

/*
  Asymmetric grid layout:
  - 3 columns: [tall item] [right-item] [right-item]
  - 2 rows of equal height
  - Item 1 spans both rows in column 1 (portrait)
  - Items 2–5 fill the 2×2 right half
*/
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: repeat(3, 200px);
  gap: 12px;
}

/* Each figure: image + caption stacked */
.gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0; /* allow grid row height to control size */
}

/* Tall item spans all 3 rows */
.gallery-item--tall {
  grid-row: span 3;
}

/* Real photo fills available height */
.gallery-img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Placeholder block (kept for any cards still awaiting photos) */
.gallery-placeholder {
  flex: 1;
  background: #c9c0b4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  opacity: 0.6;
  overflow: hidden;
  min-height: 0;
}

.gallery-caption {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #666;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ─── GALLERY — MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .gallery-section {
    padding: 56px 0;
  }

  .gallery-container {
    padding: 0 20px;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  /* 2-column grid on mobile — tall item spans full width, remaining 6 in 2-col grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px repeat(3, 160px);
  }

  .gallery-item--tall {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-placeholder,
  .gallery-img {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 180px);
  }

  .gallery-item--tall {
    grid-column: span 1;
  }
}

/* ─── CLOSING CTA ────────────────────────────────────────────────────────── */
.closing-cta {
  position: relative;
  background: linear-gradient(180deg, #1a3a2a 0%, #1d4e6b 60%, #121f18 100%);
  padding: 96px 32px;
  text-align: center;
  overflow: hidden;
}

/* Subtle noise/texture overlay for depth */
.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(122, 158, 138, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(29, 78, 107, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.closing-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.closing-cta-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.3px;
}

/* "Marine Biologist" — italic, lighter green */
.closing-cta-h2 em {
  font-style: italic;
  color: #b8d4c2;
}

.closing-cta-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 40px;
}

.closing-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Shared button base */
.closing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s, transform 0.1s;
}

.closing-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  text-decoration: none;
}

.closing-btn--coral {
  background: var(--coral);
  color: #ffffff;
}

.closing-btn--coral:hover {
  color: #ffffff;
}

.closing-btn--whatsapp {
  background: #25d366;
  color: #ffffff;
}

.closing-btn--whatsapp:hover {
  color: #ffffff;
}

/* ─── CLOSING CTA — MOBILE ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .closing-cta {
    padding: 64px 24px;
  }

  .closing-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .closing-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ─── SITE FOOTER ────────────────────────────────────────────────────────── */
.site-footer {
  background: #121f18;
  padding: 56px 0 0;
  margin: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Four-column grid */
.footer-cols {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

/* ── Column 1: Brand ── */
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo:hover {
  text-decoration: none;
}

.logo-img--footer {
  max-height: 80px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0 0 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
}

/* ── Columns 2–3: Nav links ── */
.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 18px;
}

.footer-col ul,
.footer-newsletter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  padding: 5px 0;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ── Column 4: Newsletter ── */
.footer-newsletter-text {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 0 16px;
}

.footer-newsletter-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
}

.footer-newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  outline: none;
  min-width: 0;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter-btn {
  background: var(--coral);
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.footer-newsletter-btn:hover {
  background: #b85a30;
}

/* Contact details */
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact span,
.footer-contact a {
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.footer-contact a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0 24px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── FOOTER — MOBILE ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    padding: 0 20px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ─── FLOATING WHATSAPP BUTTON ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

/* Nudge up slightly on mobile so it clears browser chrome */
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE  (page-about.php)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── HERO: short variant ────────────────────────────────────────────────── */
.page-hero--short {
  min-height: 280px;
  padding: 56px 32px;
}

/* ─── FOUNDER FEATURE SECTION (cream bg) ────────────────────────────────── */
.about-founder-section {
  background: var(--cream);
  padding: 88px 0;
}

.about-founder-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start; /* align to top so long bio doesn't stretch photo */
}

/* Use a lighter placeholder tone on cream background */
.about-founder-photo {
  background: #c0cfc3;
}

.about-founder-content {
  padding-top: 8px;
}

.about-founder-name {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin: 8px 0 10px;
}

.about-founder-subtitle {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--sage);
  margin: 0 0 28px;
  line-height: 1.4;
}

.about-founder-bio {
  margin: 0 0 28px;
}

.about-founder-bio p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #444;
  line-height: 1.8;
  margin: 0 0 16px;
}

.about-founder-bio p:last-child {
  margin-bottom: 0;
}

/* Tags: forest green border on cream */
.about-founder-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-founder-tags li {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  border-radius: 40px;
  padding: 5px 14px;
  background: transparent;
  transition: background 0.15s, color 0.15s;
}

.about-founder-tags li:hover {
  background: var(--forest);
  color: #ffffff;
}

/* ─── AWARD HIGHLIGHT ────────────────────────────────────────────────────── */
.award-highlight-section {
  background: #ffffff;
  padding: 72px 32px;
}

.award-highlight-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* Decorative sand-coloured rules */
.award-highlight-rule {
  height: 1px;
  background: var(--sand);
  margin: 0 auto 40px;
  max-width: 400px;
}

.award-highlight-rule + .award-highlight-rule {
  margin: 40px auto 0;
}

.award-highlight-content {
  margin-bottom: 0;
}

.award-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.award-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 12px;
  line-height: 1.2;
}

.award-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #888;
  line-height: 1.65;
  margin: 0;
}

/* ─── MISSION SECTION ────────────────────────────────────────────────────── */
.mission-section {
  background: var(--forest);
  padding: 88px 0;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 88px;
  align-items: center;
}

.mission-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -0.3px;
}

.mission-body {
  margin: 0;
}

.mission-body p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin: 0 0 16px;
}

.mission-body p:last-child {
  margin-bottom: 0;
}

/* Stats column */
.mission-stats {
  display: flex;
  flex-direction: column;
}

.mission-stat {
  padding: 28px 0;
}

.mission-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  color: #b8d4c2;
  line-height: 1;
  margin-bottom: 6px;
}

.mission-stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.mission-stat-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── TEAM SECTION ───────────────────────────────────────────────────────── */
.team-section {
  background: var(--cream);
  padding: 80px 0;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.team-header {
  text-align: center;
  margin-bottom: 56px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

/* Circular portrait placeholder */
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #c0cfc3;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  opacity: 0.7;
  overflow: hidden;
}

.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 6px;
}

.team-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #888;
  line-height: 1.45;
  margin: 0;
}

/* ─── ABOUT PAGE — MOBILE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-founder-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 40px;
  }

  .mission-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 40px;
  }

  .mission-stats {
    flex-direction: row;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mission-stat {
    flex: 1;
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mission-stat:last-child {
    border-right: none;
  }

  .mission-stat-divider {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .about-founder-section {
    padding: 56px 0 64px;
  }

  .about-founder-container {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 24px;
  }

  .about-founder-container .founder-photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .mission-section {
    padding: 56px 0;
  }

  .mission-container {
    padding: 0 24px;
  }

  .mission-stats {
    flex-direction: column;
    border-top: none;
  }

  .mission-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
  }

  .mission-stat:last-child {
    border-bottom: none;
  }

  .mission-stat-divider {
    display: block;
  }

  .team-section {
    padding: 56px 0;
  }

  .team-container {
    padding: 0 24px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .award-highlight-section {
    padding: 56px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   EXPERIENCES LISTING PAGE  (page-experiences.php)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── PAGE HERO (smaller, centred) ──────────────────────────────────────── */
.page-hero {
  background: var(--forest);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 32px;
}

.page-hero-inner {
  max-width: 640px;
}

.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--sage);
  margin: 0 0 16px;
}

.page-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.page-hero-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
}

/* ─── EXPERIENCE LISTING SECTION ─────────────────────────────────────────── */
.exp-listing-section {
  background: var(--cream);
  padding: 64px 0 80px;
}

.exp-listing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Filter row — centred on listing page */
.exp-listing-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

/* Listing grid — all equal-width columns, no featured card */
.exp-grid--listing {
  grid-template-columns: repeat(3, 1fr);
}

/* Standard image height for all cards on this page */
.exp-grid--listing .exp-img--placeholder,
.exp-grid--listing .exp-img {
  height: 200px;
}

/* Smooth show/hide for filtered cards */
.exp-grid .exp-card[hidden] {
  display: none;
}

/* No-results message */
.exp-no-results {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #888;
  padding: 48px 0 24px;
  grid-column: 1 / -1;
}

.exp-no-results-reset {
  background: none;
  border: none;
  color: var(--coral);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* ─── CARD VARIANTS FOR LISTING PAGE ─────────────────────────────────────── */

/* Education tag colour */
.exp-tag--education {
  background: #f0f5fa;
  color: var(--ocean);
}

/* Groups tag colour */
.exp-tag--groups {
  background: #f5f0f7;
  color: #6b3d6b;
}

/* Forest green "Enquire Now" button */
.exp-book-btn--forest {
  background: var(--forest);
  color: #ffffff;
}

.exp-book-btn--forest:hover {
  background: var(--moss);
  color: #ffffff;
}

/* "Enquire for pricing" price variant */
.exp-price--enquire {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
}

/* ─── GROUPS BANNER ──────────────────────────────────────────────────────── */
.groups-banner {
  background: var(--forest);
  padding: 56px 0;
}

.groups-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.groups-banner-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 12px;
}

.groups-banner-body {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

.groups-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── EXPERIENCES PAGE — MOBILE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .exp-grid--listing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-hero {
    min-height: 260px;
    padding: 56px 24px;
  }

  .exp-listing-section {
    padding: 48px 0 64px;
  }

  .exp-listing-container {
    padding: 0 20px;
  }

  .exp-grid--listing {
    grid-template-columns: 1fr;
  }

  .groups-banner {
    padding: 48px 0;
  }

  .groups-banner-inner {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .groups-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .groups-banner-actions .closing-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BOOK PAGE  (page-book.php)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── BOOKING SECTION — 2-COL LAYOUT ────────────────────────────────────── */
.booking-section {
  background: var(--cream);
  padding: 80px 0 96px;
}

.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ─── TABS ────────────────────────────────────────────────────────────────── */
.booking-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid #e0d9d0;
}

.booking-tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #999;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 24px 12px;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.booking-tab:hover {
  color: var(--forest);
}

.booking-tab--active {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

/* ─── BOOKING PANELS ─────────────────────────────────────────────────────── */
.booking-panel {
  display: block;
}

.booking-panel--hidden {
  display: none;
}

.booking-intro {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 28px;
}

/* ─── FORM ELEMENTS ──────────────────────────────────────────────────────── */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.2px;
}

.form-optional {
  font-weight: 400;
  color: #aaa;
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink);
  background: #ffffff;
  border: 1.5px solid #ddd4c8;
  border-radius: 6px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #bbb;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26, 58, 42, 0.08);
}

/* Custom select arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* Submit buttons */
.form-submit {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  align-self: flex-start;
  letter-spacing: 0.1px;
}

.form-submit:active {
  transform: scale(0.98);
}

.form-submit--coral {
  background: var(--coral);
  color: #ffffff;
}

.form-submit--coral:hover {
  background: #b85a30;
}

.form-submit--forest {
  background: var(--forest);
  color: #ffffff;
}

.form-submit--forest:hover {
  background: #122a1e;
}

.form-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.55;
  margin: 0;
}

/* ─── CONTACT CARD (right column) ────────────────────────────────────────── */
.contact-card {
  background: #ffffff;
  border: 1px solid #e8e0d4;
  border-radius: 12px;
  padding: 36px 32px;
  position: sticky;
  top: 88px; /* clears sticky nav */
}

.contact-card-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 28px;
  line-height: 1.25;
}

/* Contact block — icon + text */
.contact-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-block-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-block-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-block-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.1px;
}

.contact-block-detail {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  text-decoration: none;
}

a.contact-block-detail:hover {
  color: var(--forest);
  text-decoration: underline;
}

.contact-block-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.4;
}

/* WhatsApp block — light green tint */
.contact-block--wa {
  background: #f0faf2;
  border: 1px solid #c4e8cc;
  border-radius: 8px;
  padding: 16px;
}

.contact-wa-btn {
  display: inline-block;
  margin-top: 10px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}

.contact-wa-btn:hover {
  background: #1da851;
  color: #ffffff;
}

/* Dividers between contact blocks */
.contact-divider {
  height: 1px;
  background: #ede8e0;
  margin: 20px 0;
}

.contact-address {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #555;
  font-style: normal;
  line-height: 1.65;
  margin: 0;
}

/* ─── FAQ SECTION ────────────────────────────────────────────────────────── */
.faq-section {
  background: #ffffff;
  padding: 80px 0;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 48px;
}

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e8e0d4;
}

.faq-item {
  border-bottom: 1px solid #e8e0d4;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  gap: 16px;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--forest);
}

.faq-item--open .faq-question {
  color: var(--forest);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--coral);
  flex-shrink: 0;
  line-height: 1;
  width: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.faq-item--open .faq-icon {
  color: var(--forest);
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ─── BOOK PAGE — MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 40px;
  }

  .contact-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .booking-section {
    padding: 56px 0 72px;
  }

  .booking-container {
    padding: 0 24px;
    gap: 40px;
  }

  .booking-tab {
    font-size: 0.82rem;
    padding: 10px 16px 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 28px 24px;
  }

  .faq-section {
    padding: 56px 0;
  }

  .faq-container {
    padding: 0 24px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 18px 0;
  }
}
