/* ==========================================================================
   NAVA SURF ADVENTURE — stylesheet
   Mobile-first. Surf editorial meets Moroccan adventure.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&family=Caveat:wght@600;700&display=swap');

:root{
  /* --- brand palette --- */
  --orange: #F15A22;
  --orange-dark: #D0430F;
  --orange-light: #FF7A45;
  --navy: #0F2036;
  --navy-2: #16283F;
  --navy-soft: #223752;
  --cream: #FBF3E7;
  --cream-2: #F3E4CE;
  --sand: #E9D6B8;
  --ink: #17212C;
  --white: #FFFFFF;
  --line: rgba(15,32,54,0.12);
  --line-light: rgba(251,243,231,0.22);

  /* --- type --- */
  --f-display: 'Anton', 'Arial Narrow', sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-hand: 'Caveat', cursive;

  --fs-hero: clamp(3rem, 11vw, 7.2rem);
  --fs-h1: clamp(2.5rem, 7vw, 4.6rem);
  --fs-h2: clamp(2rem, 5.6vw, 3.4rem);
  --fs-h3: clamp(1.4rem, 3.6vw, 1.9rem);
  --fs-lead: clamp(1.1rem, 2.6vw, 1.35rem);
  --fs-eyebrow: 0.8rem;

  --container: 1240px;
  --pad: 20px;
  --radius: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.22,.68,0,1);
}

@media (min-width: 700px){
  :root{ --pad: 40px; }
}
@media (min-width: 1080px){
  :root{ --pad: 56px; }
}

/* --- reset --- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p,figure{ margin: 0; }
button{ font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select{ font: inherit; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* grain / noise texture overlay */
.grain{ position: relative; isolation: isolate; }
.grain::before{
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.grain > *{ position: relative; z-index: 1; }

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow svg{ width: 16px; height: 16px; flex: none; }
.eyebrow.light{ color: var(--cream); }
.eyebrow.on-cream{ color: var(--orange-dark); }

.h1, .h2, .h3, .display{
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.98;
  font-weight: 400;
}
.h1{ font-size: var(--fs-h1); }
.h2{ font-size: var(--fs-h2); }
.h3{ font-size: var(--fs-h3); }

.lead{
  font-size: var(--fs-lead);
  line-height: 1.5;
  font-weight: 500;
  color: var(--navy-soft);
}
.on-navy .lead, .on-navy p{ color: rgba(251,243,231,0.82); }

p.body-copy{ font-size: 1.03rem; line-height: 1.7; color: rgba(23,33,44,0.78); }
.on-navy p.body-copy{ color: rgba(251,243,231,0.78); }

.text-orange{ color: var(--orange); }
.text-cream{ color: var(--cream); }

.hand{
  font-family: var(--f-hand);
  font-weight: 700;
  color: var(--orange);
  font-size: 1.5em;
  display: inline-block;
  transform: rotate(-3deg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow .25s var(--ease);
  border: 2px solid transparent;
}
.btn--primary{
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(241,90,34,0.6);
}
.btn--primary:hover{ background: var(--orange-dark); transform: translateY(-2px); }
.btn--outline{
  border-color: currentColor;
  color: var(--navy);
  background: transparent;
}
.btn--outline:hover{ background: var(--navy); color: var(--cream); border-color: var(--navy); transform: translateY(-2px); }
.btn--outline-light{
  border-color: rgba(251,243,231,0.6);
  color: var(--cream);
}
.btn--outline-light:hover{ background: var(--cream); color: var(--navy); border-color: var(--cream); transform: translateY(-2px); }
.btn--light{
  background: var(--cream);
  color: var(--navy);
}
.btn--light:hover{ background: var(--white); transform: translateY(-2px); }
.btn--sm{ padding: 11px 20px; font-size: 0.74rem; }
.btn--block{ width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,243,231,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand{ display: flex; align-items: center; gap: 10px; flex: none; }
.brand svg{ width: 32px; height: 32px; color: var(--orange); }
.brand-mark{ height: 36px; width: auto; }
.brand-word{
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
}
.brand-word small{
  display: block;
  font-family: var(--f-body);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--orange);
  margin-top: 2px;
}

.main-nav{
  position: fixed; top: 74px; left: 0; right: 0;
  height: calc(100vh - 74px);
  height: calc(100dvh - 74px);
  background: var(--navy);
  padding: 28px var(--pad) 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100vw);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.main-nav.is-open{ transform: translateX(0); }
.main-nav a{
  font-family: var(--f-display);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--cream);
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-light);
}
.main-nav .nav-cta{
  margin-top: 20px;
}
.main-nav .nav-social{
  margin-top: auto;
  padding-top: 30px;
  display: flex; gap: 16px;
}
.main-nav .nav-social a{ font-family: var(--f-body); font-size: 0.8rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--orange); border: none; padding: 0; }

.header-actions{ display: flex; align-items: center; gap: 14px; }
.header-actions .btn{ display: none; }

.nav-toggle{
  width: 40px; height: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  flex: none;
}
.nav-toggle span{
  display: block; width: 22px; height: 2px; background: var(--navy);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 980px){
  .main-nav{
    position: static; top: auto; left: auto; right: auto; height: auto;
    background: none; padding: 0;
    flex-direction: row; align-items: center; gap: 30px;
    transform: none; overflow: visible;
  }
  .main-nav a{
    font-family: var(--f-body); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--navy-soft); border: none; padding: 4px 0;
    position: relative;
  }
  .main-nav a::after{
    content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px;
    background: var(--orange); transition: right .3s var(--ease);
  }
  .main-nav a:hover::after{ right: 0; }
  .main-nav .nav-cta, .main-nav .nav-social{ display: none; }
  .header-actions .btn{ display: inline-flex; }
  .nav-toggle{ display: none; }
}

/* WhatsApp floating button */
.whatsapp-fab{
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(241,90,34,0.65);
  color: var(--white);
  transition: transform .25s var(--ease);
}
.whatsapp-fab:hover{ transform: scale(1.08); }
.whatsapp-fab svg{ width: 28px; height: 28px; }
@media (min-width: 980px){
  .whatsapp-fab{ right: 30px; bottom: 30px; }
}

/* ==========================================================================
   Sections / spacing
   ========================================================================== */
section{ position: relative; }
.sec{ padding: 70px 0; }
.sec-sm{ padding: 48px 0; }
.sec-lg{ padding: 90px 0; }
@media (min-width: 700px){
  .sec{ padding: 100px 0; }
  .sec-sm{ padding: 64px 0; }
  .sec-lg{ padding: 140px 0; }
}
.on-navy{ background: var(--navy); color: var(--cream); }
.on-cream2{ background: var(--cream-2); }
.on-orange{ background: var(--orange); color: var(--white); }

.sec-head{ max-width: 720px; margin-bottom: 40px; }
.sec-head .eyebrow{ margin-bottom: 14px; }
.sec-head .h2{ margin-bottom: 16px; }
.sec-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

/* reveal-on-scroll */
.reveal{ opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* wave divider */
.wave-divider{ display: block; width: 100%; height: auto; line-height: 0; }
.wave-divider svg{ width: 100%; height: 60px; display: block; }
@media (min-width: 700px){ .wave-divider svg{ height: 90px; } }

/* ==========================================================================
   Photo placeholder / figure treatment
   ========================================================================== */
.ph{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
}
.ph img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ph::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,32,54,0) 55%, rgba(15,32,54,0.55) 100%);
  pointer-events: none;
}
.ph.no-shade::after{ display: none; }
.ph-tag{
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  color: var(--cream);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  background: var(--navy);
  overflow: hidden;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.hero-media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,32,54,0.35) 0%, rgba(15,32,54,0.15) 32%, rgba(15,32,54,0.85) 100%);
}
.hero-inner{
  position: relative; z-index: 1;
  width: 100%;
  padding: 130px 0 56px;
  padding-left: calc(var(--pad) + clamp(14px, 5vw, 64px));
  color: var(--cream);
}
.hero .eyebrow{ margin-bottom: 18px; }
.hero-title{
  font-family: var(--f-display);
  font-size: var(--fs-hero);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero-title .dot{ color: var(--orange); }
.hero-sub{
  margin-top: 22px;
  max-width: 480px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(251,243,231,0.88);
}
.hero-actions{
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
@media (min-width: 700px){
  .hero-sub{ font-size: 1.2rem; max-width: 540px; }
}

/* Mobile-only fix: keep "STAY · SURF · ADVENTURE" from overflowing narrow phone
   screens. Scales with viewport width (accounting for the 20px side padding)
   so it fits with a safety margin across phone sizes, ideally on one line. */
@media (max-width: 767px){
  .hero-title{
    font-size: clamp(1.8rem, calc((100vw - 40px) * 0.108), 3rem);
    letter-spacing: -0.01em;
  }
}

/* ==========================================================================
   Pillars (3 cards)
   ========================================================================== */
.pillars{ display: grid; gap: 20px; grid-template-columns: 1fr; }
.pillar{
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  display: flex; flex-direction: column;
  box-shadow: 0 20px 40px -24px rgba(15,32,54,0.35);
}
.pillar .ph{ border-radius: 0; aspect-ratio: 4/3; }
.pillar-body{ padding: 26px 24px 30px; }
.pillar-num{ font-family: var(--f-display); font-size: 0.85rem; color: var(--orange); letter-spacing: 0.1em; }
.pillar-body .h3{ margin: 8px 0 12px; }
.pillar-body p{ color: rgba(23,33,44,0.72); line-height: 1.6; font-size: 0.98rem; }
@media (min-width: 780px){
  .pillars{ grid-template-columns: repeat(3, 1fr); }
  .pillar:nth-child(2){ transform: translateY(-24px); }
}

/* ==========================================================================
   Why NAVA — asymmetric points grid
   ========================================================================== */
.why-grid{ display: grid; gap: 16px; grid-template-columns: 1fr; }
.why-card{
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: rgba(251,243,231,0.04);
}
.why-card .num{ font-family: var(--f-display); font-size: 2.2rem; color: var(--orange); line-height: 1; }
.why-card h3{ font-family: var(--f-body); font-weight: 800; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.03em; margin: 14px 0 8px; }
.why-card p{ font-size: 0.94rem; line-height: 1.6; color: rgba(251,243,231,0.72); }
@media (min-width: 700px){
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px){
  .why-grid{ grid-template-columns: repeat(4, 1fr); }
}

.strip-notes{
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 12px 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}
.strip-notes .note{ display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--cream); }
.strip-notes svg{ width: 18px; height: 18px; color: var(--orange); flex: none; }

/* ==========================================================================
   Room / package cards
   ========================================================================== */
.room-grid{ display: grid; gap: 22px; grid-template-columns: 1fr; }
.room-card{
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px -26px rgba(15,32,54,0.3);
}
.room-card .ph{ border-radius: 0; aspect-ratio: 5/4; }
.room-body{ padding: 24px; }
.room-tag{ font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.room-body .h3{ margin: 8px 0 10px; font-size: 1.5rem; }
.room-body p{ color: rgba(23,33,44,0.72); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
.room-feats{ display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.room-feats li{
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; background: var(--cream-2); color: var(--navy);
}
@media (min-width: 780px){
  .room-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* Package cards */
.pkg-grid{ display: grid; gap: 24px; grid-template-columns: 1fr; }
.pkg-card{
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.pkg-card.is-featured{ border: 2px solid var(--orange); box-shadow: 0 24px 50px -28px rgba(241,90,34,0.45); }
.pkg-card .ph{ border-radius: 0; aspect-ratio: 16/9; }
.pkg-head{ padding: 26px 26px 20px; background: var(--navy); color: var(--cream); position: relative; }
.pkg-head .badge{
  position: absolute; top: 18px; right: 18px;
  background: var(--orange); color: var(--white);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.pkg-head .eyebrow{ margin-bottom: 10px; }
.pkg-head h3{ font-family: var(--f-display); font-size: 1.5rem; text-transform: uppercase; line-height: 1.05; }
.pkg-head .from{ margin-top: 12px; font-size: 0.85rem; color: rgba(251,243,231,0.7); }
.pkg-head .from strong{ display: block; font-family: var(--f-display); font-size: 2.2rem; color: var(--cream); line-height: 1; margin-top: 4px; }
.pkg-price-rows{ padding: 18px 26px; display: flex; flex-direction: column; gap: 0; }
.pkg-price-row{
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.pkg-price-row:last-child{ border-bottom: none; }
.pkg-price-row .room{ font-weight: 700; color: var(--navy); }
.pkg-price-row .price{ font-family: var(--f-display); font-size: 1.15rem; color: var(--orange-dark); }
.pkg-incl{ padding: 4px 26px 22px; flex: 1; }
.pkg-incl li{
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem; color: rgba(23,33,44,0.75); line-height: 1.5;
  padding: 6px 0;
}
.pkg-incl svg{ width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--orange); }
.pkg-incl li.plus{ color: var(--orange-dark); font-weight: 700; }
.pkg-cta{ padding: 0 26px 26px; }

@media (min-width: 780px){
  .pkg-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Timeline (a day at NAVA)
   ========================================================================== */
.timeline{ position: relative; }
.timeline::before{
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px;
  background: repeating-linear-gradient(180deg, var(--orange) 0 8px, transparent 8px 16px);
}
.t-item{ position: relative; padding-left: 66px; margin-bottom: 34px; }
.t-item:last-child{ margin-bottom: 0; }
.t-dot{
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 0.72rem;
  border: 3px solid var(--orange);
  text-align: center; line-height: 1.05;
}
.t-item h3{ font-family: var(--f-display); font-size: 1.15rem; text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.02em; }
.t-item p{ color: rgba(23,33,44,0.72); line-height: 1.6; font-size: 0.95rem; max-width: 520px; }
@media (min-width: 700px){
  .timeline::before{ left: 50%; margin-left: -1px; }
  .t-item{ width: 50%; padding-left: 0; padding-right: 66px; text-align: right; }
  .t-item .t-dot{ left: auto; right: -28px; }
  .t-item:nth-child(even){ margin-left: 50%; padding-right: 0; padding-left: 66px; text-align: left; }
  .t-item:nth-child(even) .t-dot{ right: auto; left: -28px; }
  .t-item p{ margin-left: auto; }
  .t-item:nth-child(even) p{ margin-left: 0; }
}

/* ==========================================================================
   Adventure cards (horizontal scroller on mobile)
   ========================================================================== */
.adv-scroller{
  display: flex; gap: 16px; overflow-x: auto; padding: 4px 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.adv-scroller::-webkit-scrollbar{ height: 6px; }
.adv-scroller::-webkit-scrollbar-thumb{ background: var(--sand); border-radius: 999px; }
.adv-card{
  flex: none; width: 78%; max-width: 320px;
  scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 40px -28px rgba(15,32,54,0.35);
}
.adv-card .ph{ border-radius: 0; aspect-ratio: 4/5; }
.adv-body{ padding: 18px 20px 22px; }
.adv-body h3{ font-family: var(--f-display); font-size: 1.15rem; text-transform: uppercase; margin-bottom: 8px; }
.adv-body p{ font-size: 0.9rem; color: rgba(23,33,44,0.7); line-height: 1.55; margin-bottom: 14px; }
.adv-price{ display: flex; align-items: baseline; justify-content: space-between; }
.adv-price .amount{ font-family: var(--f-display); font-size: 1.3rem; color: var(--orange-dark); }
.adv-price .note{ font-size: 0.72rem; color: rgba(23,33,44,0.5); }
@media (min-width: 780px){
  .adv-scroller{ display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .adv-card{ width: auto; max-width: none; }
}
@media (min-width: 1080px){
  .adv-scroller{ grid-template-columns: repeat(4, 1fr); }
}

/* tone cards (no photo available) */
.ph--tone{ display: flex; align-items: center; justify-content: center; }
.ph--tone::after{ display: none; }
.ph--tone-a{ background: linear-gradient(140deg, #F15A22 0%, #D0430F 60%, #8C2708 100%); }
.ph--tone-b{ background: linear-gradient(140deg, #16283F 0%, #0F2036 60%, #081018 100%); }
.ph--tone-c{ background: linear-gradient(140deg, #E9D6B8 0%, #D6BB8C 60%, #B8964F 100%); }
.ph--tone-d{ background: linear-gradient(140deg, #223752 0%, #0F2036 70%, #F15A22 140%); }
.ph--tone .icon-badge{ width: 74px; height: 74px; }
.ph--tone .icon-badge svg{ width: 34px; height: 34px; }
.ph--tone-c .icon-badge{ background: var(--navy); }

/* ==========================================================================
   Values / share grid
   ========================================================================== */
.value-grid{ display: grid; gap: 18px; grid-template-columns: 1fr; }
.value-card{ padding: 8px 0; }
.value-card .icon-badge{ margin-bottom: 16px; }
.value-card h3{ font-family: var(--f-display); font-size: 1.2rem; text-transform: uppercase; margin-bottom: 8px; }
.value-card p{ font-size: 0.94rem; line-height: 1.6; color: rgba(23,33,44,0.7); }
@media (min-width: 700px){ .value-grid{ grid-template-columns: repeat(2, 1fr); gap: 34px 30px; } }
@media (min-width: 1080px){ .value-grid{ grid-template-columns: repeat(4, 1fr); } }

.icon-badge{
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.icon-badge svg{ width: 24px; height: 24px; }
.icon-badge.navy{ background: var(--navy); }
.icon-badge.outline{ background: transparent; border: 2px solid var(--orange); color: var(--orange); }

.share-grid{ display: grid; gap: 26px; grid-template-columns: repeat(2,1fr); text-align: center; }
.share-item h3{ font-family: var(--f-display); font-size: 1rem; text-transform: uppercase; margin: 12px 0 6px; }
.share-item p{ font-size: 0.85rem; color: rgba(23,33,44,0.65); line-height: 1.5; }
.share-item .icon-badge{ margin: 0 auto; }
@media (min-width: 700px){ .share-grid{ grid-template-columns: repeat(5,1fr); } }

/* ==========================================================================
   Collage
   ========================================================================== */
.collage{ display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; gap: 10px; }
.collage .ph:nth-child(1){ grid-column: span 4; grid-row: span 3; }
.collage .ph:nth-child(2){ grid-column: span 2; grid-row: span 2; }
.collage .ph:nth-child(3){ grid-column: span 2; grid-row: span 2; }
.collage .ph:nth-child(4){ grid-column: span 3; grid-row: span 2; }
.collage .ph:nth-child(5){ grid-column: span 3; grid-row: span 2; }
@media (min-width: 700px){
  .collage{ grid-auto-rows: 120px; }
}
@media (min-width: 1080px){
  .collage{ grid-auto-rows: 140px; }
}

/* ==========================================================================
   Testimonial
   ========================================================================== */
.testimonial{ max-width: 780px; }
.testimonial .quote-mark{ font-family: var(--f-display); font-size: 5rem; color: var(--orange); line-height: 0.6; display: block; margin-bottom: 6px; }
.testimonial blockquote{ font-family: var(--f-display); font-size: clamp(1.4rem, 3.4vw, 2.1rem); text-transform: none; line-height: 1.25; letter-spacing: 0; color: var(--navy); }
.on-navy .testimonial blockquote{ color: var(--cream); }
.testimonial cite{ display: block; margin-top: 24px; font-style: normal; font-weight: 700; font-size: 0.95rem; color: var(--orange); }
.testimonial cite span{ display: block; font-weight: 500; font-size: 0.82rem; color: rgba(23,33,44,0.55); margin-top: 2px; }
.on-navy .testimonial cite span{ color: rgba(251,243,231,0.6); }

/* Testimonial grid (multiple reviews) */
.testi-grid{ display: grid; gap: 20px; grid-template-columns: 1fr; }
.testi-card{
  background: rgba(251,243,231,0.05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
}
.testi-card .quote-mark{
  font-family: var(--f-display); font-size: 2.8rem; line-height: 0.6;
  color: var(--orange); display: block; margin-bottom: 10px;
}
.testi-card blockquote{
  font-family: var(--f-body); font-weight: 500; font-size: 0.98rem; line-height: 1.65;
  color: rgba(251,243,231,0.82); flex: 1;
}
.testi-card cite{
  display: block; margin-top: 22px; font-style: normal;
  font-weight: 800; font-size: 0.92rem; color: var(--orange);
}
.testi-card cite span{ display: block; font-weight: 500; font-size: 0.8rem; color: rgba(251,243,231,0.55); margin-top: 2px; }
@media (min-width: 780px){
  .testi-grid{ grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
}

/* ==========================================================================
   Steps (booking process)
   ========================================================================== */
.steps{ display: grid; gap: 30px; grid-template-columns: 1fr; }
.step .step-num{ font-family: var(--f-display); font-size: 3rem; color: var(--orange); line-height: 1; }
.step h3{ font-family: var(--f-display); font-size: 1.2rem; text-transform: uppercase; margin: 10px 0 8px; }
.step p{ font-size: 0.94rem; color: rgba(251,243,231,0.75); line-height: 1.6; }
@media (min-width: 780px){ .steps{ grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; text-align: left;
  font-family: var(--f-display); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--navy);
}
.faq-q .plus{
  flex: none; width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--orange);
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content: ""; position: absolute; background: var(--orange); top: 50%; left: 50%;
}
.faq-q .plus::before{ width: 12px; height: 2px; transform: translate(-50%,-50%); }
.faq-q .plus::after{ width: 2px; height: 12px; transform: translate(-50%,-50%); transition: transform .25s var(--ease); }
.faq-item.is-open .faq-q .plus::after{ transform: translate(-50%,-50%) rotate(90deg) scale(0); }
.faq-a{
  max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
}
.faq-a p{ padding: 0 0 22px; max-width: 640px; font-size: 0.95rem; line-height: 1.65; color: rgba(23,33,44,0.72); }

/* ==========================================================================
   Contact form
   ========================================================================== */
.form-grid{ display: grid; gap: 16px; grid-template-columns: 1fr; }
.form-grid .col-2{ grid-column: span 1; }
.field{ display: flex; flex-direction: column; gap: 8px; }
.field label{ font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(251,243,231,0.7); }
.field input, .field select, .field textarea{
  background: rgba(251,243,231,0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--cream);
  font-size: 0.95rem;
}
.field input::placeholder, .field textarea::placeholder{ color: rgba(251,243,231,0.35); }
.field select{ appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%23F15A22' stroke-width='2' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; }
.field select option{ color: #000; }
.field:focus-within input, .field:focus-within select, .field:focus-within textarea{ border-color: var(--orange); outline: none; }
@media (min-width: 700px){
  .form-grid{ grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-grid .col-full{ grid-column: span 2; }
}

/* ==========================================================================
   Solo / trust section
   ========================================================================== */
.solo-wrap{ display: grid; gap: 30px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px){ .solo-wrap{ grid-template-columns: 1fr 1fr; gap: 50px; } }
.solo-wrap .ph{ aspect-ratio: 4/5; }

/* ==========================================================================
   Group offer band
   ========================================================================== */
.group-band{
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--cream);
  padding: 40px 26px;
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
  position: relative; overflow: hidden;
}
.group-band .h3{ font-size: clamp(1.6rem, 4.4vw, 2.4rem); max-width: 560px; }
@media (min-width: 780px){
  .group-band{ flex-direction: row; align-items: center; justify-content: space-between; padding: 50px 50px; }
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta{
  position: relative; min-height: 78vh; display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
}
.final-cta .hero-media{ inset: 0; }
.final-cta .hero-media::after{ background: linear-gradient(180deg, rgba(15,32,54,0.55) 0%, rgba(15,32,54,0.75) 100%); }
.final-cta-inner{ position: relative; z-index: 1; color: var(--cream); text-align: center; width: 100%; padding: 60px 0; }
.final-cta .h1{ margin: 0 auto 10px; }
.final-cta .lead{ color: rgba(251,243,231,0.85); max-width: 520px; margin: 18px auto 30px; }
.final-cta .hero-actions{ justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--navy); color: var(--cream); padding: 64px 0 30px; }
.footer-top{ display: grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 50px; }
.footer-brand svg{ width: 40px; height: 40px; color: var(--orange); margin-bottom: 14px; }
.footer-brand .brand-mark{ height: 46px; width: auto; margin-bottom: 14px; }
.footer-brand .brand-word{ color: var(--cream); }
.footer-brand p{ max-width: 320px; color: rgba(251,243,231,0.6); font-size: 0.9rem; line-height: 1.6; margin-top: 12px; }
.footer-col h4{ font-size: 0.76rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer-col a, .footer-col p{ display: block; font-size: 0.92rem; color: rgba(251,243,231,0.75); margin-bottom: 10px; line-height: 1.5; }
.footer-col a:hover{ color: var(--orange); }
.footer-social{ display: flex; gap: 12px; margin-top: 6px; }
.footer-social a{
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: center; margin: 0;
}
.footer-social svg{ width: 18px; height: 18px; }
.footer-bottom{
  border-top: 1px solid var(--line-light); padding-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 0.8rem; color: rgba(251,243,231,0.5);
}
@media (min-width: 700px){
  .footer-top{ grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-bottom{ flex-direction: row; justify-content: space-between; }
}

/* ==========================================================================
   Misc utilities
   ========================================================================== */
.mt-0{ margin-top: 0; }
.center{ text-align: center; margin-left: auto; margin-right: auto; }
.max-w-sm{ max-width: 460px; }
.max-w-md{ max-width: 620px; }
.stack{ display: flex; flex-direction: column; gap: 14px; }
.row-between{ display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.divider{ height: 1px; background: var(--line); border: none; margin: 0; }
.on-navy .divider{ background: var(--line-light); }

.page-hero{
  padding: 150px 0 60px;
  background: var(--navy); color: var(--cream);
  position: relative; overflow: hidden;
}
.page-hero .eyebrow{ margin-bottom: 16px; }
.page-hero .lead{ margin-top: 16px; max-width: 560px; color: rgba(251,243,231,0.85); }
.page-hero-nums{ display: flex; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.page-hero-nums div{ font-family: var(--f-display); font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(251,243,231,0.55); }
.page-hero-nums div a{ color: var(--cream); border-bottom: 1px solid var(--orange); padding-bottom: 2px; }

.anchor-offset{ scroll-margin-top: 90px; }

.mini-nav{
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px;
}
.mini-nav a{
  padding: 9px 18px; border-radius: 999px; border: 1px solid rgba(251,243,231,0.3);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--cream);
}
.mini-nav a:hover{ background: var(--orange); border-color: var(--orange); }

/* ==========================================================================
   Gallery grid
   ========================================================================== */
.gallery-grid{
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-grid .ph{ aspect-ratio: 3/4; border-radius: var(--radius-sm); }
.gallery-grid .ph img{ transition: transform .5s var(--ease); }
.gallery-grid .ph:hover img{ transform: scale(1.06); }
@media (min-width: 640px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1080px){
  .gallery-grid{ grid-template-columns: repeat(4, 1fr); }
}

.ig-cta{
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center; padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--navy); color: var(--cream);
}
.ig-cta .icon-badge{ width: 60px; height: 60px; }
.ig-cta .icon-badge svg{ width: 28px; height: 28px; }
.ig-cta h3{ font-family: var(--f-display); font-size: 1.5rem; text-transform: uppercase; }
.ig-cta p{ color: rgba(251,243,231,0.75); max-width: 420px; }

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie-banner{
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
}
.cookie-banner p{ font-size: 0.86rem; line-height: 1.5; color: rgba(251,243,231,0.85); margin: 0; }
.cookie-banner a{ color: var(--orange); text-decoration: underline; }
.cookie-actions{ display: flex; gap: 10px; flex-wrap: wrap; }
@media (min-width: 640px){
  .cookie-banner{ flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-actions{ flex: none; }
}
