/* ============================================================
   DARNA SURF MOROCCO — STYLESHEET
   Design System: DARNA-DESIGN-SYSTEM.md + COMPONENT-LIBRARY.md
   ============================================================ */

/* === GOOGLE FONTS === */
/* Fonts loaded via <link> in HTML for better performance */

/* === CSS VARIABLES === */
:root {
  --primary: #EB563E;
  --primary-hover: #D14430;
  --slate: #1E1915;
  --cream: #EDDDC4;
  --sand: #E8D9BE;
  --indigo: #3B3F7F;
  --divider: rgba(30, 25, 21, 0.10);
  --text-subtle: rgba(30, 25, 21, 0.38);
  --text-muted: rgba(30, 25, 21, 0.58);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--slate); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 80px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   C01 — ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
  background: var(--indigo);
  padding: 9px 24px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 221, 196, 0.65);
}

/* ============================================================
   C02 — HEADER / NAVIGATION
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid rgba(30, 25, 21, 0.10);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 80px;
}
.nav__logo img { height: 40px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(30, 25, 21, 0.46);
  transition: color 160ms ease;
}
.nav__links a:hover { color: var(--slate); }
.nav__links a.active {
  color: var(--slate);
  border-bottom: 1.5px solid var(--primary);
  padding-bottom: 2px;
}
.nav__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--cream);
  padding: 11px 24px;
  border-radius: 0;
  border: none;
  transition: background 160ms ease;
  display: inline-block;
  text-decoration: none;
}
.nav__cta:hover { background: var(--primary-hover); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  z-index: 1001;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--slate);
  border-radius: 0;
  transform-origin: center;
  transition: transform 280ms ease, opacity 200ms ease, width 200ms ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   C03 — MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--slate);
  z-index: 999;
  flex-direction: column;
  padding: 96px 32px 48px;
  transform: translateX(100%);
  transition: transform 340ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; transform: translateX(0); }
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 300px 300px;
  pointer-events: none;
  z-index: 0;
}
.mobile-menu::after {
  content: 'SURF';
  position: absolute;
  bottom: -20px;
  right: -8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 160px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: rgba(235, 86, 62, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.mobile-menu > * { position: relative; z-index: 1; }
.mobile-menu__links { display: flex; flex-direction: column; margin-bottom: 32px; }
.mobile-menu__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: rgba(237, 221, 196, 0.40);
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(237, 221, 196, 0.06);
  transition: color 180ms ease;
}
.mobile-menu__links a:hover,
.mobile-menu__links a.active { color: var(--cream); }
.link-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(235, 86, 62, 0.35);
  min-width: 22px;
}
.mobile-menu__links a.active .link-num { color: var(--primary); }
.mobile-menu__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--cream);
  padding: 18px 32px;
  border-radius: 0;
  text-align: center;
  display: block;
  width: 100%;
  margin-bottom: 40px;
  transition: background 160ms ease;
}
.mobile-menu__cta:hover { background: var(--primary-hover); }
.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
.mobile-menu__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 221, 196, 0.35);
}
.mobile-menu__social { display: flex; gap: 6px; }
body.menu-open { overflow: hidden; }

/* ============================================================
   C04 — EYEBROW
   ============================================================ */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section-eyebrow__line {
  width: 28px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}
.section-eyebrow__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ============================================================
   C05 — GHOST WATERMARK
   ============================================================ */
.section__watermark {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(120px, 16vw, 210px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: rgba(30, 25, 21, 0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.section__watermark--dark { color: rgba(237, 221, 196, 0.03); }
@media (max-width: 768px) { .section__watermark { display: none; } }

/* ============================================================
   C09 — PRIMARY BUTTON
   ============================================================ */
.btn--primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--cream);
  border: none;
  padding: 14px 30px;
  border-radius: 0;
  cursor: pointer;
  transition: background 160ms ease;
  display: inline-block;
  text-decoration: none;
}
.btn--primary:hover { background: var(--primary-hover); }
.btn--primary--lg { padding: 15px 36px; }

/* ============================================================
   C10 — SECONDARY BUTTON
   ============================================================ */
.btn--secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  background: transparent;
  color: var(--slate);
  border: 1.5px solid rgba(30, 25, 21, 0.30);
  padding: 14px 35px;
  border-radius: 0;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
  text-decoration: none;
  display: inline-block;
}
.btn--secondary:hover {
  border-color: var(--slate);
  background: rgba(30, 25, 21, 0.04);
}
.btn--secondary--light {
  color: var(--cream);
  border-color: rgba(237, 221, 196, 0.30);
}
.btn--secondary--light:hover {
  border-color: var(--cream);
  background: rgba(237, 221, 196, 0.06);
}

/* ============================================================
   C11 — GHOST BUTTON
   ============================================================ */
.btn--ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}
.btn--ghost:hover { color: var(--slate); gap: 14px; }

/* ============================================================
   C12 — ARROW LINK
   ============================================================ */
.section__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: gap 180ms ease;
}
.section__link:hover { gap: 16px; }

/* ============================================================
   C13 — STATS ROW
   ============================================================ */
.stats-row {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--divider);
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--divider);
}
.stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.stat__num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--slate);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat__label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 4px;
}
.stats-row--light .stat__num { color: var(--cream); }
.stats-row--light .stat__label { color: rgba(237, 221, 196, 0.45); }
.stats-row--light .stat { border-right-color: rgba(237, 221, 196, 0.12); }
.stats-row--light { border-top-color: rgba(237, 221, 196, 0.12); }

/* ============================================================
   C14 — LOCATION BADGE
   ============================================================ */
.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--indigo);
  border-radius: 0;
  padding: 6px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 32px;
}
.hero__location-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  animation: blink 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.20; }
}
.hero__location--light {
  border-color: rgba(237, 221, 196, 0.40);
  color: rgba(237, 221, 196, 0.70);
}

/* ============================================================
   C15 — IMAGE TAG
   ============================================================ */
.image-tag {
  position: absolute;
  background: rgba(237, 221, 196, 0.94);
  padding: 7px 13px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--slate);
  z-index: 2;
}
.image-tag--tr { top: 24px; right: 24px; }
.image-tag--tl { top: 24px; left: 24px; }
.image-tag__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

/* ============================================================
   C16 — FLOATING STAT CARD
   ============================================================ */
/* ============================================================
   C17 — EXPERIENCE CARD
   ============================================================ */
.card {
  display: flex;
  flex-direction: column;
  background: var(--sand);
  border-radius: 0;
  overflow: hidden;
}
.card__image {
  position: relative;
  width: 100%;
  padding-top: 72%;
  overflow: hidden;
  background: #D9C9AE;
}
.card__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
  will-change: transform;
}
.card:hover .card__image img { transform: scale(1.04); }
.card__num {
  position: absolute;
  top: 16px; left: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 221, 196, 0.90);
  background: rgba(30, 25, 21, 0.42);
  padding: 4px 10px;
  border-radius: 0;
  z-index: 2;
}
.card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.72;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 28px;
}
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 25, 21, 0.20);
  padding-bottom: 3px;
  width: fit-content;
  background: none;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, gap 180ms ease;
}
.card__cta:hover { color: var(--primary); border-color: var(--primary); gap: 16px; }
.card--featured .card__image { padding-top: 82%; }
.card--featured .card__body { background: var(--slate); }
.card--featured .card__tag { color: rgba(235, 86, 62, 0.75); }
.card--featured .card__title { color: var(--cream); }
.card--featured .card__desc { color: rgba(237, 221, 196, 0.48); }
.card--featured .card__cta { color: var(--cream); border-color: rgba(237, 221, 196, 0.18); }
.card--featured .card__cta:hover { color: var(--primary); border-color: var(--primary); }
.card--featured .card__num { background: var(--primary); color: var(--cream); }

/* ============================================================
   C18 — ACTIVITY CARD
   ============================================================ */
.activity-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}
.activity-card__image {
  position: relative;
  width: 100%;
  padding-top: 120%;
  overflow: hidden;
  background: var(--sand);
}
.activity-card__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 560ms ease;
}
.activity-card:hover .activity-card__image img { transform: scale(1.05); }
.activity-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,14,10,0.88) 0%, rgba(18,14,10,0.28) 45%, rgba(18,14,10,0.00) 70%);
}
.activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--indigo);
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}
.activity-card:hover::before { transform: scaleX(1); }
.activity-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
}
.activity-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 28px;
  z-index: 2;
}
.activity-card__num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: rgba(235, 86, 62, 0.75);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.activity-card__name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 7px;
}
.activity-card__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237, 221, 196, 0.45);
}
.activity-card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ============================================================
   C20 — REVIEW CARD
   ============================================================ */
.reviews {
  background: var(--slate);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 300px 300px;
  pointer-events: none;
  z-index: 0;
}
.reviews__inner { position: relative; z-index: 1; padding: 0 80px; }
.reviews__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}
.reviews__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
}
.reviews__rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
}
.reviews__rating-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.reviews__rating-stars { color: var(--primary); font-size: 18px; letter-spacing: 2px; }
.reviews__rating-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 221, 196, 0.40);
}
.reviews__track-wrap { overflow: hidden; }
.reviews__track {
  display: flex;
  gap: 16px;
  transition: transform 400ms cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc((100% - 32px) / 3);
  background: rgba(237, 221, 196, 0.05);
  border: 1px solid rgba(237, 221, 196, 0.08);
  border-radius: 0;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 280ms ease, background 280ms ease;
}
.review-card:hover {
  background: rgba(237, 221, 196, 0.08);
  border-color: rgba(235, 86, 62, 0.22);
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 280ms ease;
}
.review-card:hover::before { transform: scaleY(1); }
.review-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(59, 63, 127, 0.20);
}
.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card__user { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
  color: var(--cream);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.review-card__name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cream);
}
.review-card__date {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(237, 221, 196, 0.32);
  margin-top: 2px;
}
.g-icon { width: 20px; height: 20px; flex-shrink: 0; }
.review-card__stars { display: flex; gap: 2px; }
.review-card__star { color: var(--primary); font-size: 13px; }
.review-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px; line-height: 1.72;
  color: rgba(237, 221, 196, 0.55);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(235, 86, 62, 0.65);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 180ms ease, gap 180ms ease;
  text-decoration: none;
  margin-top: auto;
}
.review-card__link:hover { color: var(--primary); gap: 10px; }

/* ============================================================
   C21 — SLIDER CONTROLS
   ============================================================ */
.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
}
.reviews__dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 6px; height: 6px;
  border-radius: 0;
  background: rgba(237, 221, 196, 0.18);
  cursor: pointer;
  transition: background 240ms ease, width 240ms ease;
  border: none;
}
.dot.active { background: var(--primary); width: 20px; }
.controls-right { display: flex; align-items: center; gap: 16px; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237, 221, 196, 0.04);
  border: 1px solid rgba(237, 221, 196, 0.08);
  border-radius: 0;
  padding: 8px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(237, 221, 196, 0.30);
}
.trust-badge__dot { width: 5px; height: 5px; border-radius: 50%; background: #4CAF50; }
.nav-btns { display: flex; gap: 6px; }
.nav-btn {
  width: 44px; height: 44px;
  border-radius: 0;
  background: rgba(237, 221, 196, 0.05);
  border: 1px solid rgba(237, 221, 196, 0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(237, 221, 196, 0.55);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}
.nav-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--cream); }

/* ============================================================
   C22 — SOCIAL ICONS
   ============================================================ */
.social-icons { display: flex; gap: 6px; }
.footer__social { margin-top: 18px; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(237, 221, 196, 0.09);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237, 221, 196, 0.40);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.social-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(235, 86, 62, 0.07); }

/* ============================================================
   C24 — PRE-FOOTER CTA
   ============================================================ */
.prefooter {
  background: var(--primary);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.prefooter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 300px 300px;
  pointer-events: none;
  z-index: 0;
}
.prefooter__left { position: relative; z-index: 1; }
.prefooter__eyebrow {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(237, 221, 196, 0.60);
  margin-bottom: 12px;
}
.prefooter__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.97;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
}
.prefooter__btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 160ms ease, color 160ms ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.prefooter__btn:hover { background: var(--slate); color: var(--cream); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--slate);
  padding: 64px 80px 40px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 300px 300px;
  pointer-events: none;
  z-index: 0;
}
.footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--indigo);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
.footer__logo { margin-bottom: 18px; }
.footer__logo img { height: 36px; width: auto; }
.footer__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(237, 221, 196, 0.38);
  margin-bottom: 24px;
  max-width: 220px;
}
.footer__col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(235, 86, 62, 0.16);
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(237, 221, 196, 0.44);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
  letter-spacing: 0.01em;
}
.footer__links a::before {
  content: '—';
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  color: rgba(235, 86, 62, 0.30);
  flex-shrink: 0;
  transition: color 180ms ease;
}
.footer__links a:hover { color: var(--cream); gap: 12px; }
.footer__links a:hover::before { color: var(--primary); }
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}
.footer__contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235, 86, 62, 0.60);
}
.footer__contact-value {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(237, 221, 196, 0.55);
  text-decoration: none;
  transition: color 180ms ease;
}
.footer__contact-value:hover { color: var(--cream); }
.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(237, 221, 196, 0.06);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(237, 221, 196, 0.22);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237, 221, 196, 0.22);
  text-decoration: none;
  transition: color 180ms ease;
}
.footer__legal a:hover { color: rgba(237, 221, 196, 0.50); }

/* ============================================================
   L01 — HERO (FULL-BLEED IMAGE, EDITORIAL)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--slate);
}
@media (max-width: 768px) {
  .hero { min-height: 85vh; }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--indigo);
  z-index: 3;
  pointer-events: none;
}

/* Full-bleed background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Dark gradient — subtle bottom fade, lets the image breathe */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 14, 10, 0.82) 0%,
    rgba(18, 14, 10, 0.38) 42%,
    rgba(18, 14, 10, 0.06) 100%
  );
  z-index: 1;
}

/* Location label — top left, pinned above content */
.hero__location {
  position: absolute;
  top: 40px;
  left: 80px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(237, 221, 196, 0.55);
  border: none;
  padding: 0;
  margin-bottom: 0;
  background: transparent;
}

/* Content block — anchored to bottom left */
.hero__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 80px 80px;
  max-width: 780px;
}
.hero__eyebrow { margin-bottom: 24px; }
.hero__eyebrow .section-eyebrow__label { color: rgba(235, 86, 62, 0.85); }
.hero__eyebrow .section-eyebrow__line { background: rgba(235, 86, 62, 0.85); }
.hero__h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 7.5vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero__body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(237, 221, 196, 0.70);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Inner page hero (single col, full-bleed) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--slate);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--indigo);
  z-index: 3;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,14,10,0.80) 0%, rgba(18,14,10,0.30) 60%, rgba(18,14,10,0.10) 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 80px;
  max-width: 800px;
}
.page-hero__eyebrow { color: rgba(235, 86, 62, 0.85); margin-bottom: 16px; }
.page-hero__eyebrow .section-eyebrow__label { color: rgba(235, 86, 62, 0.85); }
.page-hero__eyebrow .section-eyebrow__line { background: rgba(235, 86, 62, 0.85); }
.page-hero__h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.93;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.page-hero__body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(237, 221, 196, 0.70);
  max-width: 540px;
  margin-bottom: 32px;
}
.page-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Minimal page hero (cream bg, no image) */
.page-hero--minimal {
  background: var(--cream);
  padding: 64px 80px;
  position: relative;
}
.page-hero--minimal::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--indigo);
}
.page-hero--minimal .page-hero__h1 { color: var(--slate); }
.page-hero--minimal .page-hero__body { color: var(--text-muted); }

/* ============================================================
   L02 — EDITORIAL INTRO
   ============================================================ */
.editorial {
  background: var(--cream);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.editorial__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.editorial__h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--slate);
}
.editorial__right { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.editorial__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-muted);
}
.editorial__benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--divider);
}
.benefit-item {
  padding: 32px 28px 28px;
  border-right: 1px solid var(--divider);
}
.benefit-item:last-child { border-right: none; }
.benefit-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.benefit-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
}
.benefit-body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================================
   L03 — THREE-CARD GRID
   ============================================================ */
.experiences {
  background: var(--sand);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.experiences__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.experiences__h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 8px;
}
.experiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ============================================================
   L04/L05 — 50/50 CONTENT + IMAGE
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.split__content {
  background: var(--cream);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.split__content--sand { background: var(--sand); }
.split__content--slate { background: var(--slate); }
.split__content-inner { max-width: 480px; }
.split__h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
  margin-top: 12px;
}
.split__h2--light { color: var(--cream); }
.split__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.split__body--light { color: rgba(237, 221, 196, 0.62); }
.split__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}
.split__amenities {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 28px;
}
.split__amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
.split__amenity::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--primary);
  flex-shrink: 0;
  border-radius: 0;
}
.split__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 28px; }
.split__image {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.split__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* C31 — Package image slider */
.pkg-slider {
  position: absolute;
  inset: 0;
}
.pkg-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
}
.pkg-slider__slide--active { opacity: 1; }
.pkg-slider__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.pkg-slider__dot {
  width: 5px; height: 5px;
  background: rgba(237, 221, 196, 0.35);
  transition: background 300ms ease, transform 300ms ease;
}
.pkg-slider__dot--active {
  background: var(--cream);
  transform: scaleX(2);
  transform-origin: left center;
}

/* ============================================================
   SPLIT CONTAINED — padded editorial layout (42 / 58 grid)
   ============================================================ */
.split-contained {
  background: var(--cream);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.split-contained--sand { background: var(--sand); }
.split-contained__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  min-height: 480px;
  align-items: stretch;
}
.split-contained__grid--reverse { grid-template-columns: 7fr 5fr; }
.split-contained__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-contained__image {
  position: relative;
  overflow: hidden;
}
.split-contained__image img,
.split-contained__image .pkg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.split-contained__image img { object-fit: cover; display: block; }

.split__inclusions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
}
.split__inclusion {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.split__inclusion-dot {
  width: 5px; height: 5px;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 5px;
  border-radius: 0;
}
.split__price-block { margin: 20px 0; }
.split__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
  font-family: 'Barlow Condensed', sans-serif;
}
.split__price-row:first-child { border-top: 1px solid var(--divider); }
.split__price-type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.split__price-val {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.split__price-suffix {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* ============================================================
   L06 — ACTIVITIES GALLERY
   ============================================================ */
.activities-section {
  background: var(--cream);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.activities-section__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.activities-section__h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 8px;
}
.activities-section__desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 280px;
  text-align: right;
}
.activities-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.activities-section__grid--8 {
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2px;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-section {
  background: var(--cream);
  padding: 80px;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.form-input,
.form-select,
.form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--slate);
  background: var(--sand);
  border: 1px solid rgba(30, 25, 21, 0.14);
  border-radius: 0;
  padding: 12px 16px;
  outline: none;
  transition: border-color 180ms ease;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--indigo); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--cream);
  border: none;
  padding: 16px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: background 160ms ease;
  width: 100%;
  margin-top: 8px;
}
.form-submit:hover { background: var(--primary-hover); }
.booking-trust { display: flex; flex-direction: column; gap: 32px; padding-top: 8px; }
.booking-trust__rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--divider);
}
.booking-trust__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--slate);
  line-height: 1;
  letter-spacing: -0.02em;
}
.booking-trust__stars { color: var(--primary); font-size: 16px; letter-spacing: 2px; }
.booking-trust__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.booking-trust__items { display: flex; flex-direction: column; gap: 14px; }
.booking-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.booking-trust__item-dot {
  width: 5px; height: 5px;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 5px;
}
.booking-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: gap 180ms ease;
}
.booking-whatsapp:hover { gap: 16px; }

/* Steps (What Happens Next) */
.steps-section {
  background: var(--sand);
  padding: 80px;
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.step { padding-top: 24px; border-top: 2px solid var(--indigo); }
.step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.step__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Contact page */
.contact-section {
  background: var(--cream);
  padding: 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contact-method {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-method__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.contact-method__value {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--slate);
  text-decoration: none;
  transition: color 180ms ease;
}
.contact-method__value:hover { color: var(--primary); }
.contact-map {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sand);
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%);
}
.arriving-section {
  background: var(--sand);
  padding: 80px;
}
.arriving-section__h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 12px;
  margin-bottom: 40px;
}
.arriving-points { display: flex; flex-direction: column; gap: 28px; max-width: 720px; }
.arriving-point { display: flex; gap: 20px; }
.arriving-point__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--primary);
  flex-shrink: 0;
  padding-top: 2px;
  text-transform: uppercase;
}
.arriving-point__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Rooms grid */
.rooms-section {
  background: var(--cream);
  padding: 80px;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.room-card {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.room-card__image {
  position: relative;
  padding-top: 72%;
  overflow: hidden;
}
.room-card__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.room-card:hover .room-card__image img { transform: scale(1.04); }
.room-card__body {
  padding: 20px 20px 24px;
  background: var(--sand);
  border-top: 2px solid var(--indigo);
}
.room-card__type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.room-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.room-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Package detail always-included benefits */
.benefits-section {
  background: var(--sand);
  padding: 80px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--divider);
}
.benefits-grid .benefit-item { border-bottom: 1px solid var(--divider); border-right: 1px solid var(--divider); }
.benefits-grid .benefit-item:nth-child(3n) { border-right: none; }

/* ============================================================
   SECTION HEADINGS (shared)
   ============================================================ */
.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 8px;
}
.section-h2--light { color: var(--cream); }

/* ============================================================
   C30 — FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--slate);
  color: var(--cream);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-left: 3px solid #25D366;
  transition: background 180ms ease, border-color 180ms ease, transform 150ms ease;
}
.wa-btn:hover,
.wa-btn:focus-visible {
  background: #25D366;
  border-left-color: #25D366;
  color: #fff;
  transform: translateY(-2px);
}
.wa-btn:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
}
.wa-btn__icon {
  flex-shrink: 0;
  display: block;
  color: #25D366;
  transition: color 180ms ease;
}
.wa-btn:hover .wa-btn__icon,
.wa-btn:focus-visible .wa-btn__icon {
  color: #fff;
}

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 16px 40px; }
  .nav__links { gap: 24px; }
  .nav__logo img { height: 36px; }
  .container { padding: 0 40px; }

  .hero__location { left: 40px; }
  .hero__content { padding: 0 40px 64px; }

  .editorial { padding: 64px 40px; }
  .editorial__header { gap: 40px; }
  .editorial__benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(2) { border-right: none; }
  .benefit-item:nth-child(3) { border-bottom: 1px solid var(--divider); }

  .experiences { padding: 64px 40px; }
  .experiences__grid { gap: 8px; }

  .split { grid-template-columns: 1fr; }
  .split__content { padding: 60px 40px; }
  .split__image { min-height: 400px; order: -1; }

  .split-contained { padding: 64px 40px; }
  .split-contained__grid,
  .split-contained__grid--reverse { grid-template-columns: 1fr; }
  .split-contained__image { min-height: 400px; order: -1; }

  .activities-section { padding: 64px 40px; }
  .activities-section__grid { grid-template-columns: repeat(2, 1fr); }

  .reviews__inner { padding: 0 40px; }
  .reviews__header { grid-template-columns: 1fr; gap: 20px; }
  .review-card { flex: 0 0 calc((100% - 16px) / 2); }

  .prefooter { padding: 48px 40px; }
  .footer { padding: 48px 40px 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .page-hero__content { padding: 48px 40px; }
  .booking-section { padding: 64px 40px; }
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-section { padding: 64px 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-section { padding: 64px 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .arriving-section { padding: 64px 40px; }
  .rooms-section { padding: 64px 40px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-section { padding: 64px 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid .benefit-item:nth-child(2n) { border-right: none; }
  .benefits-grid .benefit-item:nth-child(3n) { border-right: 1px solid var(--divider); }
}

/* ============================================================
   RESPONSIVE — MOBILE 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo img { height: 34px; }

  .hero__location { left: 20px; top: 28px; }
  .hero__content { padding: 0 20px 52px; max-width: none; }
  .hero__h1 { font-size: clamp(44px, 11vw, 80px); margin-bottom: 20px; }
  .hero__body { font-size: 14px; margin-bottom: 32px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn--primary, .hero__ctas .btn--secondary { width: 100%; justify-content: center; }

  .editorial { padding: 48px 20px; }
  .editorial__header { grid-template-columns: 1fr; gap: 24px; }
  .editorial__benefits { grid-template-columns: 1fr; }
  .benefit-item { border-right: none; border-bottom: 1px solid var(--divider); }
  .benefit-item:last-child { border-bottom: none; }

  .experiences { padding: 48px 20px; }
  .experiences__header { grid-template-columns: 1fr; }
  .experiences__grid { grid-template-columns: 1fr; }
  .experiences__grid .card--featured { order: unset; }

  .split__content { padding: 48px 20px; }
  .split__image { min-height: 320px; order: -1; }

  .split-contained { padding: 48px 20px; }
  .split-contained__image { min-height: 320px; }

  .activities-section { padding: 48px 20px; }
  .activities-section__header { grid-template-columns: 1fr; }
  .activities-section__desc { text-align: left; max-width: none; }
  .activities-section__grid { grid-template-columns: 1fr 1fr; }
  .activities-section__grid--8 { grid-template-columns: 1fr 1fr; }

  .reviews { padding: 48px 0; }
  .reviews__inner { padding: 0 20px; }
  .review-card { flex: 0 0 calc(100% - 0px); }

  .prefooter { padding: 48px 20px; flex-direction: column; align-items: flex-start; }
  .prefooter__btn { width: 100%; text-align: center; }

  .footer { padding: 48px 20px 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .page-hero { min-height: 60vw; }
  .page-hero__content { padding: 40px 20px; }
  .page-hero--minimal { padding: 48px 20px; }
  .page-hero__h1 { font-size: 44px; }

  .booking-section { padding: 48px 20px; }
  .form-group--row { grid-template-columns: 1fr; }
  .steps-section { padding: 48px 20px; }
  .contact-section { padding: 48px 20px; }
  .arriving-section { padding: 48px 20px; }
  .rooms-section { padding: 48px 20px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .benefits-section { padding: 48px 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-grid .benefit-item { border-right: none; border-bottom: 1px solid var(--divider); }
  .benefits-grid .benefit-item:last-child { border-bottom: none; }
  .reviews__controls { flex-direction: column; gap: 20px; align-items: flex-start; }
  .controls-right { width: 100%; justify-content: space-between; }

  .btn--primary,
  .btn--secondary { width: 100%; text-align: center; justify-content: center; }

  .wa-btn { bottom: 20px; right: 20px; padding: 13px; }
  .wa-btn__label { display: none; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE 480px
   ============================================================ */
@media (max-width: 480px) {
  .activities-section__grid { grid-template-columns: 1fr; }
  .activities-section__grid--8 { grid-template-columns: 1fr; }
}
