/* =============================================================
   Portugal Paragliding Adventures
   Stylesheet — adventure-driven, photo-first, atlantic-warm
   ============================================================= */

/* --- Design tokens ----------------------------------------- */
:root {
  --ocean-deep:  #061726;
  --ocean:       #0A2238;
  --ocean-soft:  #1F4B6E;
  --ocean-line:  rgba(255, 255, 255, 0.12);

  --sunset:      #E07A2B;
  --sunset-soft: #F2A553;
  --sunset-deep: #B85A1A;
  --sunset-glow: rgba(224, 122, 43, 0.18);

  --sand:        #F5EDE0;
  --paper:       #FAF6EE;
  --bone:        #EDE5D5;

  --ink:         #0F0F0F;
  --grey-900:    #1F1F1F;
  --grey-700:    #4A4A4A;
  --grey-500:    #6E6E6E;
  --grey-300:    #BBB6AB;
  --grey-200:    #DDD8CC;
  --line:        #E5DFD0;

  --display: "Bricolage Grotesque", "Inter Tight", system-ui, sans-serif;
  --sans:    "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;

  --max:        1320px;
  --measure:    66ch;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm:  0 4px 16px -8px rgba(6, 23, 38, 0.18);
  --shadow-md:  0 16px 40px -16px rgba(6, 23, 38, 0.28);
  --shadow-lg:  0 32px 80px -24px rgba(6, 23, 38, 0.42);
  --radius:     2px;
  --radius-lg:  4px;
}

/* --- Paraglider cursor companion ----------------------------- */
.paraglider-cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  color: #FAF6EE;             /* paper-cream — inverts cleanly against any bg */
  mix-blend-mode: difference; /* always visible: dark on light, light on dark */
  opacity: 0.92;
  will-change: transform;
  transform-origin: 50% 11%;  /* rotate around wing centre — pilot pendulums below */
  transition: opacity 240ms var(--ease);
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .paraglider-cursor { display: none; }
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--grey-700);
  background: var(--paper);
  font-feature-settings: "kern", "ss01";
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* --- Type ------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ocean);
  font-weight: 500;
  letter-spacing: -0.018em;
  margin: 0;
}
h1 {
  font-size: clamp(2.8rem, 7.5vw, 6.4rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.022em;
}
h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.012em;
}
h4 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.005em;
}
em { font-style: italic; color: var(--sunset-deep); font-weight: 500; }
p  { margin: 0 0 1.1em; max-width: var(--measure); }

/* Eyebrow micro-label */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunset-deep);
  font-weight: 600;
  padding-bottom: 12px;
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 1px;
  background: var(--sunset);
}
.eyebrow-light { color: var(--sunset-soft); }
.eyebrow-light::after { background: var(--sunset-soft); }
.eyebrow-warm { color: var(--sunset); }

/* Lead paragraph */
.lead {
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  line-height: 1.5;
  color: var(--grey-700);
  font-weight: 400;
}

/* --- Layout ------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.wrap.narrow {
  max-width: 980px;
}
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  margin-bottom: 80px;
}
.section-head .lead {
  margin-top: 24px;
  max-width: 56ch;
}
.section-head-light h2 { color: var(--paper); }
.section-head-light .lead { color: rgba(245, 237, 224, 0.78); }
.h2-light { color: var(--paper); }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 220ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow { transition: transform 280ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--sunset);
  color: var(--paper);
  box-shadow: 0 6px 22px -10px rgba(224, 122, 43, 0.65);
}
.btn-primary:hover {
  background: var(--sunset-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -10px rgba(224, 122, 43, 0.75);
}
.btn-ghost {
  background: transparent;
  color: var(--ocean);
  border: 1px solid var(--ocean);
}
.btn-ghost:hover {
  background: var(--ocean);
  color: var(--paper);
}
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--paper);
}
.btn-link {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--ocean);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.btn-link:hover { color: var(--sunset-deep); }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 32px;
  transition: background 280ms var(--ease), padding 280ms var(--ease), border-color 280ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  transition: color 280ms var(--ease);
}
.is-scrolled .brand { color: var(--ocean); }
.brand-mark {
  width: 68px; height: 68px;
  object-fit: contain;
  transition: transform 320ms var(--ease);
  filter: drop-shadow(0 4px 14px rgba(6, 23, 38, 0.25));
}
.is-scrolled .brand-mark { filter: none; }
.brand:hover .brand-mark { transform: rotate(-4deg); }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--display);
  font-weight: 600;
}
.brand-text-1 {
  font-size: 1.35rem;
  letter-spacing: -0.012em;
  font-weight: 600;
}
.brand-text-2 {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
  opacity: 0.82;
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--paper);
  transition: color 280ms var(--ease);
}
.is-scrolled .nav { color: var(--ocean); }
.nav a {
  position: relative;
  padding: 6px 0;
  transition: color 200ms var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--sunset);
  transition: width 240ms var(--ease);
}
.nav a:hover::after { width: 100%; }

.header-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 220ms var(--ease);
}
.header-social a:hover {
  background: var(--sunset);
  border-color: var(--sunset);
  color: var(--paper);
  transform: translateY(-1px);
}
.is-scrolled .header-social a {
  color: var(--ocean);
  border-color: var(--line);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.is-scrolled .header-social a:hover {
  color: var(--paper);
  background: var(--sunset);
  border-color: var(--sunset);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--paper);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 220ms var(--ease);
}
.header-cta:hover {
  background: var(--sunset);
  border-color: var(--sunset);
}
.is-scrolled .header-cta {
  background: var(--sunset);
  border-color: var(--sunset);
  color: var(--paper);
}
.is-scrolled .header-cta:hover {
  background: var(--sunset-deep);
  border-color: var(--sunset-deep);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--paper);
  transition: all 220ms var(--ease);
}
.is-scrolled .menu-toggle span { background: var(--ocean); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 120px 32px 100px;
  color: var(--paper);
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  z-index: -2;
  animation: heroZoom 24s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 23, 38, 0.5) 0%, rgba(6, 23, 38, 0) 25%, rgba(6, 23, 38, 0) 55%, rgba(6, 23, 38, 0.85) 100%),
    linear-gradient(90deg, rgba(6, 23, 38, 0.55) 0%, rgba(6, 23, 38, 0) 70%);
  z-index: -1;
}
.hero-content {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sunset-soft);
  font-weight: 500;
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sunset);
  box-shadow: 0 0 12px var(--sunset);
}
.hero h1 {
  color: var(--paper);
  max-width: 16ch;
  margin-bottom: 28px;
}
.hero h1 em {
  color: var(--sunset-soft);
  font-style: italic;
}
.hero-tagline {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  font-weight: 400;
  font-style: italic;
  color: var(--sunset-soft);
  margin: 4px 0 32px;
  letter-spacing: -0.01em;
}
.hero-lead {
  max-width: 50ch;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.5;
  color: rgba(245, 237, 224, 0.86);
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.7);
  font-weight: 500;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--paper));
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* =============================================================
   MANIFESTO
   ============================================================= */
.section-manifesto {
  background: var(--ocean-deep);
  color: rgba(245, 237, 224, 0.84);
  padding: 140px 0;
  position: relative;
}
.section-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(31, 75, 110, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, var(--sunset-glow) 0%, transparent 50%);
  pointer-events: none;
}
.section-manifesto > * { position: relative; }
.section-manifesto h2 {
  color: var(--paper);
  margin: 22px 0 56px;
  max-width: 14ch;
}
.section-manifesto h2 em {
  color: var(--sunset-soft);
  font-style: italic;
}
.manifesto-text {
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 64ch;
}
.manifesto-text p { color: rgba(245, 237, 224, 0.82); }

/* =============================================================
   WHY SESIMBRA — destination pitch
   ============================================================= */
.section-why {
  background: var(--paper);
}
.section-why h2 em {
  color: var(--sunset-deep);
  font-style: italic;
}
.why-text {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 64ch;
  color: var(--grey-700);
}
.why-text p {
  margin-bottom: 1.3em;
}
.why-text strong {
  color: var(--ocean);
  font-weight: 600;
}
.why-text .why-punch {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ocean);
  line-height: 1.5;
  margin-top: 2em;
  padding-top: 1.8em;
  border-top: 1px solid var(--line);
}
.why-watch-intro {
  margin: 80px 0 32px;
  text-align: center;
}
.why-watch-intro .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}
.why-watch-intro p {
  margin: 18px auto 0;
  max-width: 60ch;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-style: italic;
  color: var(--grey-700);
  line-height: 1.45;
}

/* =============================================================
   MOMENT (full-bleed photo break)
   ============================================================= */
.section-moment {
  position: relative;
  height: 78vh;
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
  background: var(--ocean-deep);
}
.moment-image {
  position: absolute;
  inset: 0;
}
.moment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: momentZoom 18s ease-out forwards;
}
@keyframes momentZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
.moment-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,23,38,0.35) 0%, rgba(6,23,38,0) 25%, rgba(6,23,38,0) 55%, rgba(6,23,38,0.92) 100%);
  pointer-events: none;
}
.moment-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 64px 32px 72px;
  max-width: var(--max);
  margin: 0 auto;
  color: var(--paper);
}
.moment-caption .eyebrow-light { color: var(--sunset-soft); }
.moment-caption .eyebrow-light::after { background: var(--sunset-soft); }
.moment-quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.18;
  color: var(--paper);
  max-width: 28ch;
  margin: 22px 0 0;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(6, 23, 38, 0.55);
}

@media (max-width: 820px) {
  .section-moment { height: 68vh; min-height: 460px; }
  .moment-caption { padding: 40px 20px 48px; }
  .moment-quote { font-size: clamp(1.2rem, 5vw, 1.7rem); }
}

/* =============================================================
   PROGRAMMES
   ============================================================= */
.section-programmes {
  background: var(--paper);
  padding-bottom: 60px;
}
.programme {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
}
.programme:last-child { margin-bottom: 0; }
.programme-flip { direction: rtl; }
.programme-flip > * { direction: ltr; }

.programme-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.programme-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.programme-media:hover img { transform: scale(1.04); }

.programme-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 16px;
  background: var(--paper);
  color: var(--ocean);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
}
.programme-badge-warm {
  background: var(--sunset);
  color: var(--paper);
}

.programme-num {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunset-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.programme-body h3 {
  margin-bottom: 22px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
}
.programme-meta {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.programme-meta li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  font-size: 0.94rem;
  color: var(--grey-700);
}
.programme-meta li span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
  padding-top: 3px;
}

/* =============================================================
   INCLUDED
   ============================================================= */
.section-included {
  background: var(--ocean-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-included::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(224, 122, 43, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(31, 75, 110, 0.45) 0%, transparent 60%);
  pointer-events: none;
}
.section-included > * { position: relative; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--ocean-line);
  border: 1px solid var(--ocean-line);
}
.included-item {
  background: var(--ocean-deep);
  padding: 36px 32px;
  position: relative;
}
.included-item span {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--sunset-soft);
  font-weight: 600;
  margin-bottom: 20px;
}
.included-item h4 {
  color: var(--paper);
  margin-bottom: 10px;
  font-size: 1.04rem;
}
.included-item p {
  color: rgba(245, 237, 224, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.included-note {
  margin-top: 56px;
  font-size: 0.94rem;
  color: rgba(245, 237, 224, 0.6);
  text-align: center;
  font-style: italic;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================
   PRICING
   ============================================================= */
.section-pricing {
  background: var(--bone);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card-featured {
  background: var(--ocean);
  color: var(--paper);
  border-color: var(--ocean);
  box-shadow: var(--shadow-md);
}
.price-card-featured h3 { color: var(--paper); }

.price-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sunset);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card h3 {
  margin-bottom: 4px;
}
.price-sub {
  font-size: 0.86rem;
  color: var(--grey-500);
  margin-bottom: 26px;
}
.price-card-featured .price-sub { color: rgba(245, 237, 224, 0.7); }

.price-amount {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  font-weight: 500;
  color: var(--ocean);
  display: flex;
  align-items: flex-start;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.price-card-featured .price-amount { color: var(--paper); }
.price-amount .currency {
  font-size: 1.6rem;
  margin-right: 4px;
  margin-top: 12px;
  color: var(--sunset);
}
.price-card-featured .price-amount .currency { color: var(--sunset-soft); }
.price-amount .unit {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--grey-500);
  margin-left: 10px;
  margin-top: auto;
  padding-bottom: 12px;
  letter-spacing: 0;
}
.price-card-featured .price-amount .unit { color: rgba(245, 237, 224, 0.7); }

.price-week {
  font-size: 0.86rem;
  color: var(--sunset-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.price-card-featured .price-week { color: var(--sunset-soft); }

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.price-card-featured .price-list { border-color: var(--ocean-line); }
.price-list li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--grey-700);
  padding-left: 22px;
  position: relative;
}
.price-card-featured .price-list li { color: rgba(245, 237, 224, 0.85); }
.price-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--sunset);
  font-weight: 600;
}
.price-card .btn { margin-top: auto; align-self: flex-start; }
.price-card-featured .btn-ghost {
  color: var(--paper);
  border-color: rgba(245, 237, 224, 0.5);
}
.price-card-featured .btn-ghost:hover {
  background: var(--paper);
  color: var(--ocean);
  border-color: var(--paper);
}

.pricing-callout {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sunset);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 20px;
}
.pricing-callout:last-of-type { margin-bottom: 40px; }
.pricing-callout-subtle {
  background: transparent;
  border-left-color: var(--grey-300);
  border-color: var(--line);
}
.pricing-callout-subtle .eyebrow { color: var(--grey-500); }
.pricing-callout-subtle .eyebrow::after { background: var(--grey-300); }
.pricing-callout h3 {
  margin: 12px 0 8px;
  color: var(--ocean);
}
.pricing-callout p {
  margin: 0;
  color: var(--grey-700);
  font-size: 0.96rem;
}

.pricing-fineprint {
  font-size: 0.88rem;
  color: var(--grey-500);
  text-align: center;
  max-width: 78ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* =============================================================
   SITES
   ============================================================= */
.section-sites { background: var(--paper); }
.sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 18px;
}
.site-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: default;
  isolation: isolate;
}
.site-card-large {
  grid-row: span 2;
  grid-column: span 2;
}
.site-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1400ms var(--ease);
}
.site-card:hover img { transform: scale(1.05); }
.site-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 23, 38, 0.72) 100%);
  pointer-events: none;
}
.site-card-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px;
  color: var(--paper);
}
.site-card-text h3 {
  color: var(--paper);
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}
.site-card-large .site-card-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.site-meta {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset-soft);
  font-weight: 600;
  margin-bottom: 10px;
}
.site-card-large .site-card-text p {
  color: rgba(245, 237, 224, 0.84);
  margin: 14px 0 0;
  font-size: 0.96rem;
  max-width: 50ch;
}

.sites-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.94rem;
  color: var(--grey-500);
  font-style: italic;
}

/* =============================================================
   PILOT
   ============================================================= */
.section-pilot {
  background: var(--bone);
  padding-top: 140px;
  padding-bottom: 140px;
}
.pilot {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
}
.pilot-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pilot-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
.pilot-photo-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245, 237, 224, 0.35);
  pointer-events: none;
  border-radius: 2px;
}
.pilot-text h2 { margin: 22px 0 32px; }

.pilot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  margin: 40px 0 36px;
}
.pilot-stats .num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1;
  font-weight: 500;
  color: var(--ocean);
  letter-spacing: -0.03em;
}
.pilot-stats .num span {
  font-size: 1.1rem;
  color: var(--sunset);
  margin-left: 2px;
  vertical-align: top;
}
.pilot-stats .lab {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 10px;
  font-weight: 600;
}

.pilot-quote {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ocean);
  border-left: 2px solid var(--sunset);
  padding-left: 24px;
  margin: 32px 0 18px;
  font-weight: 400;
}
.pilot-signature {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--sunset-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.pilot-social {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.pilot-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--grey-700);
  letter-spacing: 0.02em;
  transition: color 200ms var(--ease);
}
.pilot-social a:hover { color: var(--sunset-deep); }
.pilot-social svg { color: var(--ocean); transition: color 200ms var(--ease); }
.pilot-social a:hover svg { color: var(--sunset-deep); }

/* =============================================================
   WATCH — embedded YouTube with lite-load pattern
   ============================================================= */
.section-watch {
  background: var(--bone);
}
.section-watch h2 em {
  color: var(--sunset-deep);
  font-style: italic;
}
.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.watch-item {
  display: flex;
  flex-direction: column;
}
.watch-caption {
  margin-top: 18px;
}
.watch-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunset-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.watch-caption h3 {
  font-size: 1.35rem;
  margin: 0;
  font-weight: 500;
  color: var(--ocean);
  letter-spacing: -0.01em;
}
.watch-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--ocean-deep);
  box-shadow: var(--shadow-md);
  outline: none;
}
.watch-player:focus-visible {
  outline: 2px solid var(--sunset);
  outline-offset: 4px;
}
.watch-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 300ms var(--ease);
}
.watch-player:hover img {
  transform: scale(1.025);
  filter: brightness(0.82);
}
.watch-play {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  transform: translate(-50%, -50%);
  color: var(--sunset);
  pointer-events: none;
  filter: drop-shadow(0 6px 20px rgba(6, 23, 38, 0.45));
  transition: transform 280ms var(--ease), color 280ms var(--ease);
}
.watch-player:hover .watch-play {
  transform: translate(-50%, -50%) scale(1.1);
  color: var(--sunset-deep);
}
.watch-player.is-active {
  cursor: default;
}
.watch-player.is-active img,
.watch-player.is-active .watch-play {
  display: none;
}
.watch-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}
.watch-meta {
  text-align: center;
  margin-top: 28px;
  font-size: 0.94rem;
  color: var(--grey-500);
}
.watch-meta a {
  color: var(--sunset-deep);
  text-decoration: underline;
  text-decoration-color: rgba(184, 90, 26, 0.4);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 200ms var(--ease);
}
.watch-meta a:hover {
  text-decoration-color: var(--sunset);
}

@media (max-width: 700px) {
  .watch-grid { grid-template-columns: 1fr; gap: 36px; }
  .watch-caption h3 { font-size: 1.2rem; }
}

/* =============================================================
   WHEN TO COME
   ============================================================= */
.section-when {
  background: var(--ocean);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-when::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sunset-glow) 0%, transparent 70%);
  pointer-events: none;
}
.section-when > * { position: relative; }

.when-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ocean-line);
  border: 1px solid var(--ocean-line);
}
.when-card {
  background: var(--ocean);
  padding: 40px 36px;
}
.when-card h4 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.when-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset-soft);
  font-weight: 600;
  margin: 0 0 18px;
}
.when-card p:last-child {
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(245, 237, 224, 0.78);
  margin: 0;
}

/* =============================================================
   PLAN CLOSE — flexibility / late booking argument
   ============================================================= */
.section-plan {
  background: var(--paper);
}
.section-plan h2 em {
  color: var(--sunset-deep);
  font-style: italic;
}
.plan-text {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 64ch;
  color: var(--grey-700);
}
.plan-text p {
  margin-bottom: 1.3em;
}
.plan-text strong {
  color: var(--ocean);
  font-weight: 600;
}
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6em;
}
.plan-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  line-height: 1.55;
}
.plan-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--sunset);
  font-weight: 600;
}
.plan-text .plan-note {
  background: var(--bone);
  border-left: 3px solid var(--sunset);
  padding: 18px 24px;
  margin: 32px 0;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}
.plan-text .plan-punch {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ocean);
  line-height: 1.45;
  margin-top: 2em;
  padding-top: 1.8em;
  border-top: 1px solid var(--line);
}

/* =============================================================
   REQUIREMENTS / "Before you come"
   ============================================================= */
.section-requirements {
  background: var(--bone);
}
.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.requirement-card {
  background: var(--paper);
  padding: 36px 32px;
}
.requirement-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--sunset-deep);
  font-weight: 600;
  margin-bottom: 16px;
}
.requirement-card h4 {
  color: var(--ocean);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.requirement-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--grey-700);
  margin: 0;
}

@media (max-width: 820px) {
  .requirements-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   CONTACT
   ============================================================= */
.section-contact {
  background: var(--paper);
  position: relative;
}
.section-contact .section-head { text-align: center; }
.section-contact .section-head .eyebrow,
.section-contact .section-head h2,
.section-contact .section-head .lead {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.section-contact .section-head .eyebrow::after { left: 50%; transform: translateX(-50%); }
.section-contact h2 { max-width: 18ch; }
.section-contact .lead { max-width: 56ch; margin-top: 24px; }

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: all 280ms var(--ease);
  position: relative;
}
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-btn-mail {
  background: var(--ocean);
  color: var(--paper);
  border-color: var(--ocean);
}
.contact-btn-mail:hover { background: var(--ocean-deep); border-color: var(--ocean-deep); }
.contact-btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.contact-btn-whatsapp:hover { background: #1FB955; border-color: #1FB955; }
.contact-btn > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.contact-btn-label {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.contact-btn-value {
  font-size: 0.86rem;
  opacity: 0.85;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-btn-arrow {
  font-size: 1.6rem;
  transition: transform 280ms var(--ease);
}
.contact-btn:hover .contact-btn-arrow { transform: translateX(6px); }

.contact-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--grey-500);
  letter-spacing: 0.04em;
}
.contact-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.contact-social-label {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--grey-700);
  font-style: italic;
  margin-right: 8px;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ocean);
  background: var(--paper);
  transition: all 220ms var(--ease);
}
.contact-social-btn:hover {
  background: var(--ocean);
  color: var(--paper);
  border-color: var(--ocean);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-trust .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sunset);
}

/* =============================================================
   LEGAL SECTIONS — Imprint + Privacy (inline)
   ============================================================= */
.section-legal {
  background: var(--bone);
  padding: 80px 0;
}
.section-legal .section-head {
  margin-bottom: 36px;
}
.section-legal h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}
.legal-text {
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 72ch;
  color: var(--grey-700);
}
.legal-text h3 {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
  margin-bottom: 28px;
  font-family: var(--sans);
}
.legal-text p {
  margin-bottom: 14px;
}
.legal-text strong {
  color: var(--ocean);
  font-weight: 600;
}
.legal-text ul {
  margin: 10px 0 16px;
  padding-left: 22px;
}
.legal-text li {
  margin-bottom: 8px;
  line-height: 1.55;
}
.legal-text a {
  color: var(--sunset-deep);
  text-decoration: underline;
  text-decoration-color: rgba(184, 90, 26, 0.4);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-text a:hover {
  text-decoration-color: var(--sunset);
}
.legal-text code {
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, monospace;
  font-size: 0.85em;
  background: var(--paper);
  padding: 1px 6px;
  border-radius: 3px;
  border: 1px solid var(--line);
}
.legal-text .legal-meta {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--grey-500);
}

/* Placeholder marker — yellow background + dark-red text.
   Highly visible "MUST FILL BEFORE GOING LIVE" signal. */
.placeholder {
  background: #FFE552;
  color: #7A1B1B;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 600;
  font-style: italic;
  border: 1px solid #C19500;
  white-space: nowrap;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--ocean-deep);
  color: rgba(245, 237, 224, 0.7);
  padding: 56px 0 40px;
  font-size: 0.86rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  width: 64px; height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
}
.footer-brand span { font-size: 0.82rem; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  align-items: center;
}
.footer-links a:hover { color: var(--sunset-soft); }
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 237, 224, 0.18);
  color: rgba(245, 237, 224, 0.85);
  transition: all 220ms var(--ease);
}
.footer-social a:hover {
  background: var(--sunset);
  border-color: var(--sunset);
  color: var(--paper);
  transform: translateY(-2px);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.footer-meta a:hover { color: var(--sunset-soft); }

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}
.hero .reveal { opacity: 0; transform: translateY(20px); animation: heroReveal 1.2s var(--ease) forwards; }
.hero .reveal:nth-child(1) { animation-delay: 0.3s; }
.hero .reveal:nth-child(2) { animation-delay: 0.5s; }
.hero .reveal:nth-child(3) { animation-delay: 0.75s; }
.hero .reveal:nth-child(4) { animation-delay: 0.95s; }
@keyframes heroReveal {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-image, .scroll-line { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .nav { gap: 24px; font-size: 0.86rem; }
  .programme { grid-template-columns: 1fr; gap: 40px; margin-bottom: 100px; }
  .programme-flip { direction: ltr; }
  .pilot { grid-template-columns: 1fr; gap: 56px; }
  .pilot-photo { max-width: 480px; margin: 0 auto; }
  .sites-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; }
  .site-card-large { grid-row: span 2; grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-callout { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 820px) {
  .site-header { padding: 16px 20px; }
  .is-scrolled { padding: 12px 20px; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--ocean-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: var(--paper);
    transform: translateY(-100%);
    transition: transform 380ms var(--ease);
    font-size: 1.4rem;
  }
  body.nav-open .nav { transform: none; }
  body.nav-open { overflow: hidden; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .header-social { display: none; }
  .brand-text-2 { display: none; }
  body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--paper); }
  body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--paper); }

  .wrap { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 52px; }

  .hero { padding: 100px 20px 80px; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .scroll-cue { display: none; }

  .section-manifesto { padding: 100px 0; }

  .programme-meta li { grid-template-columns: 80px 1fr; gap: 12px; }

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

  .sites-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .site-card-large { grid-row: span 1; grid-column: span 1; grid-auto-rows: 280px; }
  .site-card-large img { aspect-ratio: 16 / 10; }

  .pilot-stats { gap: 16px; padding: 24px 0; }
  .pilot-stats .num { font-size: 2rem; }

  .contact-actions { grid-template-columns: 1fr; }
  .contact-btn { padding: 22px 24px; gap: 16px; }
  .contact-btn-label { font-size: 1.1rem; }
  .contact-btn-value { font-size: 0.78rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer-brand { justify-content: center; }
  .footer-meta { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .price-card { padding: 32px 24px; }
  .price-amount { font-size: 3rem; }
  .pricing-callout { padding: 28px 24px; }
}
