/* ============================================
   Blue Buddies — Stylesheet
   Plain CSS, no build step. Design tokens live
   in :root below — change colors/fonts there.
   ============================================ */

:root {
  --font-display: "Fraunces", serif;
  --font-mono: "IBM Plex Mono", monospace;
  --font-sans: "Inter", sans-serif;

  --cream: #f3eee3;
  --cream-dark: #eae3d4;
  --ink: #1c1b18;
  --charcoal: #17181a;
  --sand: #e6b679;
  --sand-dark: #d6a05f;
  --teal: #1e6670;
  --teal-dark: #123e45;
  --stone: #8b8579;

  --max-width: 1280px;
}

/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: center;
}

.btn-sand {
  background: var(--sand);
  color: var(--ink);
}
.btn-sand:hover {
  background: var(--sand-dark);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(28, 27, 24, 0.3);
}
.btn-outline-dark:hover {
  background: rgba(28, 27, 24, 0.06);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--teal-dark);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 24px;
}
.btn-whatsapp:hover {
  filter: brightness(0.95);
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

.site-header .logo img {
  height: 38px;
  width: auto;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: #fff;
}

.header-cta {
  display: none;
}

.nav-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 768px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-block; }
  .nav-toggle { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: #2b3038;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.4));
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 42%, rgba(0,0,0,0.5), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-display);
  color: #fff;
  line-height: 0.95;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
}

.hero-title span {
  display: block;
  font-size: 48px;
  font-weight: 500;
}

.hero-title .accent {
  font-style: italic;
  color: var(--sand);
  margin-top: 4px;
}

.hero-sub {
  margin-top: 24px;
  max-width: 460px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-actions .btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-whatsapp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.hero-whatsapp:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .hero-title span { font-size: 72px; }
  .hero-sub { font-size: 16px; }
}

/* ============================================
   Ticker
   ============================================ */
.ticker {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: var(--ink);
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 238, 227, 0.7);
  padding: 0 8px;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Pillars
   ============================================ */
.pillars {
  background: var(--cream);
  padding: 96px 0;
}

.pillars-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.pillars-head h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
}

.pillars-head .lede {
  margin-top: 16px;
  max-width: 520px;
  font-size: 14px;
  font-style: italic;
  color: var(--stone);
}

.pillars-sun img {
  width: 110px;
  height: auto;
}

.pillars-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(139, 133, 121, 0.2);
  gap: 1px;
  background: rgba(139, 133, 121, 0.2);
}

.pillar-card {
  position: relative;
  background: var(--cream);
  padding: 36px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.pillar-card .eyebrow {
  color: var(--sand-dark);
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 8px;
}

.pillar-card h3 .accent {
  display: block;
  font-style: italic;
  color: var(--teal);
}

.pillar-card p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(28, 27, 24, 0.7);
  line-height: 1.6;
}

.pillar-card .tag {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.pillar-card .num {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 60px;
  color: rgba(139, 133, 121, 0.1);
  user-select: none;
}

.pillars-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-sun { display: block; }
}
@media (max-width: 767px) {
  .pillars-sun { display: none; }
}

/* ============================================
   Destinations
   ============================================ */
.destinations {
  background: var(--cream);
  padding-bottom: 96px;
}

.destinations-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.destinations-head h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
}

.destinations-head .pick {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  text-align: right;
  color: rgba(28,27,24,0.7);
}

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

.dest-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  display: block;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover img {
  transform: scale(1.05);
}

.dest-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.dest-card .label {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.dest-card .label .name {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  color: #fff;
  font-size: 24px;
}

.dest-card .label .place {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.dest-card.tall { min-height: 300px; }

.dest-card.experience {
  /* image fills the card via normal .dest-card img rules;
     the label is absolutely centered on top instead of using flex,
     so the image can't overflow the grid track */
}
.dest-card.experience .tint {
  position: absolute;
  inset: 0;
  background: rgba(30, 102, 112, 0.45);
}
.dest-card.experience .center-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 1.2;
}

.dest-card.vibe {
  background: var(--cream-dark);
  border: 1px solid rgba(139,133,121,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.dest-card.vibe p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(28,27,24,0.8);
}
.dest-card.vibe a {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.dest-card.vibe a:hover { color: var(--teal); }

@media (min-width: 768px) {
  .destinations-head .pick { display: block; }
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .dest-card.tall {
    grid-row: span 2;
    min-height: 520px;
  }
}

/* ============================================
   Values banner (dark) — reused on About page
   ============================================ */
.values-banner {
  background: var(--charcoal);
  color: var(--cream);
  padding: 96px 0;
}

.values-banner h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  max-width: 640px;
  line-height: 1.2;
}

.values-banner .rule {
  margin-top: 24px;
  height: 1px;
  width: 64px;
  background: var(--sand);
}

.values-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.value-item .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: rgba(243,238,227,0.3);
}

.value-item h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  margin-top: 12px;
}

.value-item p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(243,238,227,0.6);
  line-height: 1.6;
}

.value-item a {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}
.value-item a:hover { color: var(--cream); }

@media (min-width: 768px) {
  .values-banner h2 { font-size: 48px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   Photo triptych
   ============================================ */
.triptych {
  display: grid;
  grid-template-columns: 1fr;
}

.triptych figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0d0e10;
}

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

.triptych img.grayscale {
  filter: grayscale(1);
}

@media (min-width: 768px) {
  .triptych { grid-template-columns: repeat(3, 1fr); }
  .triptych figure { aspect-ratio: 3 / 4; }
}

/* Captioned variant, used on About page */
.triptych.captioned figure {
  transition: none;
}
.triptych.captioned img {
  transition: transform 0.5s ease;
}
.triptych.captioned figure:hover img {
  transform: scale(1.05);
}
.triptych.captioned .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.triptych.captioned figcaption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-display);
  font-style: italic;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

/* ============================================
   Sustainability
   ============================================ */
.sustainability {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 96px 0;
}

.sustainability .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.sustainability h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
}

.sustainability .rule {
  margin-top: 24px;
  height: 1px;
  width: 64px;
  background: var(--sand);
}

.sustainability .intro {
  margin-top: 24px;
  max-width: 440px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(243,238,227,0.75);
}

.sustain-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sustain-points li {
  display: flex;
  gap: 12px;
}

.sustain-points .dot {
  margin-top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

.sustain-points .title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sustain-points .body {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(243,238,227,0.6);
}

.sustainability .pledge-btn {
  margin-top: 36px;
}

.sustain-photo-wrap {
  position: relative;
}

.sustain-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
}

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

.sustain-quote {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sand);
  color: var(--ink);
  padding: 20px 24px;
  max-width: 260px;
}

.sustain-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .sustainability .container { grid-template-columns: 1fr 1fr; }
  .sustainability h2 { font-size: 36px; }
  .sustain-quote { left: 24px; transform: none; }
}

/* ============================================
   CTA banner (dark, photo bg) — reused
   ============================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: #0b0d10;
  padding: 112px 0;
}

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

.cta-banner .tint {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.cta-banner.tint-strong .tint {
  background: rgba(0,0,0,0.7);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cta-banner .eyebrow {
  color: rgba(243,238,227,0.5);
}

.cta-banner h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 36px;
  line-height: 0.95;
}

.cta-banner h2.italic {
  font-style: italic;
}

.cta-banner h2 .accent {
  font-style: italic;
  color: var(--teal);
}

.cta-banner .sub {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(243,238,227,0.6);
  max-width: 340px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.cta-actions .wa-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,238,227,0.6);
  text-align: center;
}
.cta-actions .wa-link:hover { color: var(--cream); }

@media (min-width: 768px) {
  .cta-banner h2 { font-size: 56px; }
  .cta-banner .container {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .cta-actions { flex-direction: row; }
}

/* ============================================
   Contact
   ============================================ */
.contact {
  background: var(--cream);
  padding: 96px 0;
}

.contact-sharks {
  width: 100%;
  max-width: 380px;
  opacity: 0.9;
}

.contact-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.contact h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
}

.contact .intro {
  margin-top: 20px;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(28,27,24,0.7);
}

.contact .btn-whatsapp {
  margin-top: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form .form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(28,27,24,0.3);
  padding: 12px 0;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--ink);
}

.contact-form select {
  color: rgba(28,27,24,0.7);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(28,27,24,0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: var(--stone);
  padding-top: 8px;
}

.form-success {
  font-size: 12px;
  color: var(--teal);
  padding-top: 8px;
  display: none;
}

.form-success.visible { display: block; }

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

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(243,238,227,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 14px;
  max-width: 260px;
}

.footer-brand .tagline {
  margin-top: 8px;
  font-family: var(--font-display);
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer-social a:hover { color: var(--cream); }

.footer-col .eyebrow {
  color: rgba(243,238,227,0.4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 56px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(243,238,227,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: rgba(243,238,227,0.4);
}

.footer-bottom .legal {
  display: flex;
  gap: 20px;
}
.footer-bottom .legal a:hover { color: var(--cream); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px 0;
  }
}

/* ============================================
   About page specific
   ============================================ */
.about-hero {
  position: relative;
  height: 64vh;
  min-height: 440px;
  width: 100%;
  overflow: hidden;
  background: #2b3038;
}

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

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.5));
}

.about-hero .content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.about-hero .eyebrow { color: rgba(243,238,227,0.6); }

.about-hero h1 {
  font-family: var(--font-display);
  color: #fff;
  line-height: 0.95;
  font-size: 40px;
  font-weight: 500;
}
.about-hero h1 .accent {
  font-style: italic;
  color: var(--sand);
}

.about-hero .sub {
  margin-top: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(243,238,227,0.8);
}

@media (min-width: 768px) {
  .about-hero .content { padding: 0 40px; }
  .about-hero h1 { font-size: 60px; }
}

.who-we-are {
  background: var(--cream);
  padding: 96px 0;
}

.who-we-are h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  max-width: 520px;
}

.who-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 720px;
}

.who-item {
  display: flex;
  gap: 32px;
}

.who-item .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: rgba(139,133,121,0.3);
  flex-shrink: 0;
  width: 48px;
}

.who-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.who-item p {
  font-size: 14px;
  color: rgba(28,27,24,0.7);
  line-height: 1.6;
}

.meet-founders {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 96px 0;
}

.meet-founders h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  max-width: 520px;
}

.meet-founders .intro {
  margin-top: 20px;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(243,238,227,0.7);
}

.founders-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.founder-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 2px;
}

.founder-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  margin-bottom: 12px;
}

.founder-card p {
  font-size: 14px;
  color: rgba(243,238,227,0.7);
  line-height: 1.6;
}

.founders-quote {
  margin-top: 64px;
  background: rgba(243,238,227,0.1);
  border: 1px solid rgba(243,238,227,0.15);
  padding: 24px 28px;
  max-width: 640px;
}

.founders-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(243,238,227,0.9);
}

@media (min-width: 640px) {
  .founder-card { flex-direction: row; }
  .founder-card img { width: 160px; height: 210px; flex-shrink: 0; }
}

@media (min-width: 768px) {
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .meet-founders h2 { font-size: 36px; }
}

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--charcoal);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,238,227,0.85);
  padding: 10px 0;
}
@media (min-width: 768px) {
  .mobile-nav { display: none !important; }
}

/* ============================================
   Destination page (Morocco / Sri Lanka etc.)
   ============================================ */

/* Sub-nav pill bar under the hero */
.dest-subnav {
  background: var(--teal-dark);
}
.dest-subnav .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.dest-subnav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.dest-subnav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243,238,227,0.8);
}
.dest-subnav-links a:hover { color: #fff; }

/* Destination hero */
.dest-hero {
  position: relative;
  height: 70vh;
  min-height: 460px;
  width: 100%;
  overflow: hidden;
  background: #2b3038;
}
.dest-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dest-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35));
}
.dest-hero .content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.dest-hero .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,238,227,0.75);
}
.dest-hero h1 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
}
.dest-hero h1 .place {
  display: block;
  font-style: italic;
  color: var(--sand);
}
.dest-hero .btn { margin-top: 28px; }

@media (min-width: 768px) {
  .dest-hero h1 { font-size: 64px; }
}

/* Generic two-column intro/feature block */
.dest-section {
  padding: 80px 0;
  background: var(--cream);
}
.dest-section.alt { background: var(--cream-dark); }

.dest-section h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  max-width: 640px;
}

.dest-section .lede {
  margin-top: 16px;
  max-width: 640px;
  font-size: 15px;
  color: rgba(28,27,24,0.7);
  line-height: 1.6;
}

.dest-two-col {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.dest-two-col.reverse .dest-col-img { order: -1; }

.dest-col p {
  font-size: 14px;
  color: rgba(28,27,24,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.dest-col p:last-child { margin-bottom: 0; }

.dest-col-img img,
.dest-photo {
  width: 100%;
  border-radius: 2px;
  display: block;
}
.dest-col-img img { margin-bottom: 16px; }
.dest-col-img img:last-child { margin-bottom: 0; }

/* Placeholder image block, for photos not yet supplied */
.dest-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  background: repeating-linear-gradient(
    135deg,
    rgba(139,133,121,0.12),
    rgba(139,133,121,0.12) 10px,
    rgba(139,133,121,0.06) 10px,
    rgba(139,133,121,0.06) 20px
  );
  border: 1px dashed rgba(139,133,121,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.dest-placeholder span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.dest-placeholder.on-dark {
  background: repeating-linear-gradient(
    135deg,
    rgba(243,238,227,0.08),
    rgba(243,238,227,0.08) 10px,
    rgba(243,238,227,0.03) 10px,
    rgba(243,238,227,0.03) 20px
  );
  border-color: rgba(243,238,227,0.35);
}
.dest-placeholder.on-dark span {
  color: rgba(243,238,227,0.7);
}

/* Partner callout */
.partner-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--cream-dark);
  border: 1px solid rgba(139,133,121,0.25);
  display: flex;
  align-items: center;
  gap: 20px;
}
.partner-box .badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(139,133,121,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  text-align: center;
  color: var(--teal-dark);
  flex-shrink: 0;
  line-height: 1.1;
}
.partner-box h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.partner-box p {
  font-size: 13px;
  color: rgba(28,27,24,0.6);
}

/* Included band (teal) */
.included-band {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 72px 0;
}
.included-band .heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
.included-band .price-note {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}
.included-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.included-grid ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.included-grid li {
  font-size: 14px;
  color: rgba(243,238,227,0.85);
  padding-left: 20px;
  position: relative;
}
.included-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
}
.included-grid li.sub {
  font-size: 13px;
  color: rgba(243,238,227,0.6);
  padding-left: 32px;
}
.included-grid li.sub::before {
  width: 4px;
  height: 4px;
  left: 16px;
  background: rgba(243,238,227,0.5);
}

@media (min-width: 768px) {
  .dest-two-col { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Room cards */
.rooms-section {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 0;
}
.rooms-section h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
}
.rooms-section > .container > p {
  margin-top: 16px;
  max-width: 640px;
  font-size: 14px;
  color: rgba(243,238,227,0.65);
  line-height: 1.6;
}
.rooms-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.room-card {
  background: var(--cream-dark);
  color: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.room-card img,
.room-card .dest-placeholder {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}
.room-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  margin-bottom: 10px;
}
.room-card p {
  font-size: 13px;
  color: rgba(28,27,24,0.65);
  line-height: 1.55;
  margin-bottom: 16px;
}
.room-amenities {
  margin-top: auto;
  background: #fff;
  border-radius: 3px;
  padding: 4px 0;
  margin-bottom: 16px;
}
.room-amenities li {
  font-size: 12px;
  color: var(--teal-dark);
  padding: 8px 14px;
  border-bottom: 1px solid rgba(139,133,121,0.15);
}
.room-amenities li:last-child { border-bottom: none; }
.room-price {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--sand-dark);
}

@media (min-width: 640px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Surf course / guiding columns */
.surf-columns {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.surf-col .eyebrow-lg {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.surf-col h3 {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.surf-col p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(28,27,24,0.7);
}
@media (min-width: 768px) {
  .surf-columns { grid-template-columns: 1fr 1fr; }
}

/* Excursions */
.excursion {
  background: var(--sand);
}
.excursion .container {
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.excursion h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: #fff;
  margin-bottom: 16px;
  grid-column: 1 / -1;
}
.excursion img,
.excursion .dest-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}
.excursion-text {
  background: rgba(28,27,24,0.35);
  color: #fff;
  padding: 24px;
  font-size: 13px;
  line-height: 1.7;
  border-radius: 2px;
}
.excursion.alt-bg { background: var(--teal); }

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

/* Mini mantra banner */
.mantra-banner {
  background: var(--teal);
  color: #fff;
  padding: 40px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.mantra-banner img { width: 44px; height: 44px; }
.mantra-banner h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

/* Extras box */
.extras-box {
  margin-top: 32px;
  background: var(--teal-dark);
  color: var(--cream);
  padding: 28px 32px;
  max-width: 520px;
}
.extras-box p.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
}
.extras-box ul { display: flex; flex-direction: column; gap: 10px; }
.extras-box li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}
.extras-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
}

/* FAQ category nav */
.faq-nav {
  background: var(--teal);
  padding: 56px 0;
}
.faq-nav h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}
.faq-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-nav-grid a {
  background: var(--sand);
  color: var(--ink);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}
.faq-nav-grid a:hover { background: var(--sand-dark); }
.faq-nav-grid svg { flex-shrink: 0; }

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

/* Discover [Destination] — lightweight visual section, reusable
   across all destination pages. Just a grid of local photos, no
   heavy excursion copy — replaces the old per-excursion write-ups. */
.discover-section {
  background: var(--cream);
  padding: 80px 0;
}
.discover-section h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
}
.discover-section .lede {
  margin-top: 16px;
  max-width: 640px;
  font-size: 15px;
  color: rgba(28,27,24,0.7);
  line-height: 1.6;
}
.discover-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.discover-grid figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}
.discover-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.discover-grid figure:hover img {
  transform: scale(1.05);
}
.discover-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  .discover-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .discover-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   Stories — buddy testimonial section
   ============================================ */
.stories-section {
  background: var(--cream-dark);
  padding: 96px 0;
}
.stories-section .stars {
  color: var(--sand-dark);
  font-size: 18px;
  letter-spacing: 3px;
}
.stories-quote {
  margin-top: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  max-width: 760px;
  color: var(--ink);
}
.stories-attribution {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.stories-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.stories-card {
  background: var(--cream);
  border: 1px solid rgba(139, 133, 121, 0.2);
  padding: 28px;
}
.stories-card .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.stories-card p {
  font-size: 14px;
  color: rgba(28, 27, 24, 0.75);
  line-height: 1.65;
}
@media (min-width: 768px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}
