/* ============================================
   CLIFF SURF MOROCCO — PREMIUM REDESIGN
   Luxury surf lodge aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Palette — deep ocean & sun-bleached sand */
  --ink:          #0f1a1c;
  --ink-soft:     #2a3d40;
  --dusk:         #5a7177;
  --mist:         #9eb4b8;
  --sand:         #f5f0e8;
  --sand-light:   #faf8f4;
  --white:        #ffffff;

  --ocean:        #0a7d93;
  --ocean-mid:    #0e96ae;
  --ocean-pale:   #e0f3f7;
  --gold:         #c49a3c;
  --gold-light:   #f2e4bf;
  --coral:        #c9614a;

  /* Spacing scale */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.5rem;
  --sp-5: 4rem;
  --sp-6: 6rem;
  --sp-7: 9rem;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(15,26,28,.06);
  --shadow-sm: 0 2px 8px rgba(15,26,28,.07), 0 1px 2px rgba(15,26,28,.05);
  --shadow-md: 0 6px 20px rgba(15,26,28,.09), 0 2px 6px rgba(15,26,28,.06);
  --shadow-lg: 0 16px 48px rgba(15,26,28,.12), 0 4px 12px rgba(15,26,28,.08);
  --shadow-xl: 0 32px 72px rgba(15,26,28,.16), 0 8px 20px rgba(15,26,28,.10);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast: 180ms;
  --t-base: 300ms;
  --t-slow: 520ms;

  /* Layout */
  --max-w: 1280px;
  --header-h: 80px;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(3.2rem, 7vw, 5.5rem); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h4 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h5 { font-size: 1.2rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.05em; text-transform: uppercase; }

p { margin-bottom: 1.25rem; color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '—';
  margin-right: 0.5em;
  opacity: 0.6;
}

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
  color: var(--dusk);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

section { padding: clamp(4.5rem, 11vw, 9rem) 0; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3.5rem, 8vw, 6rem);
}

.section-title { margin-bottom: 1rem; }

.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--dusk);
  margin: 0;
}

.bg-sand { background-color: var(--sand-light); }
.bg-ink  { background-color: var(--ink); }

/* Thin ruled divider */
.rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), padding var(--t-base) var(--ease);
  padding: 0;
}

.header--top {
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(15,26,28,.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
}

.header.scrolled .logo { color: var(--ink); }

.logo-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid currentColor;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-base) var(--ease);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header.scrolled .nav-link { color: var(--dusk); }
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active { color: var(--ink); }

/* Reserve button in nav */
.btn-reserve-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: all var(--t-base) var(--ease);
}

.btn-reserve-header:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.header.scrolled .btn-reserve-header {
  border-color: var(--ocean);
  color: var(--ocean);
}

.header.scrolled .btn-reserve-header:hover {
  background: var(--ocean);
  color: var(--white);
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all var(--t-base) var(--ease);
}

.header.scrolled .mobile-menu-toggle span { background: var(--ink); }

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.btn-primary:hover {
  background: var(--ocean-mid);
  border-color: var(--ocean-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,125,147,.28);
}

.btn-secondary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: #b88c32;
  border-color: #b88c32;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,60,.30);
}

.btn-outline {
  background: transparent;
  border-color: var(--ocean);
  color: var(--ocean);
}
.btn-outline:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}

.btn-large {
  padding: 1.1rem 3rem;
  font-size: 0.875rem;
}

.btn-sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.75rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vh, 7rem);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,25,28,0.55) 0%, rgba(10,25,28,0.65) 100%),
              url('https://images.unsplash.com/photo-1502933691298-84fc14542831?w=1920') center/cover no-repeat;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,20,0.72) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Hero internal pages */
.hero-internal {
  min-height: clamp(380px, 55vh, 560px);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

/* ============================================
   FEATURE STRIP / BADGES
   ============================================ */
.feature-strip {
  padding: var(--sp-4) 0;
  background: var(--sand-light);
  border-top: 1px solid rgba(15,26,28,.06);
  border-bottom: 1px solid rgba(15,26,28,.06);
}

.feature-strip-inner {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-badge-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--ocean-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-badge-text strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
}

.feature-badge-text span {
  font-size: 0.75rem;
  color: var(--dusk);
}

/* ============================================
   PROPERTY CARDS (Hébergements)
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
}

.card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15,26,28,.05);
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,20,.45) 0%, transparent 60%);
  pointer-events: none;
}

.card-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  z-index: 1;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
}

.card-content {
  padding: 2rem 2rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.6rem;
  margin-bottom: 0.625rem;
}

.card-description {
  color: var(--dusk);
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15,26,28,.07);
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ocean);
}

.card-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--mist);
  font-weight: 400;
  margin-left: 0.25rem;
}

/* ============================================
   SPOTS GRID (Guiding)
   ============================================ */
.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.spot-card {
  background: var(--white);
  border: 1px solid rgba(15,26,28,.08);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--t-base) var(--ease);
}

.spot-card:hover {
  border-color: var(--ocean-mid);
  box-shadow: 0 0 0 4px var(--ocean-pale);
  transform: translateY(-4px);
}

.spot-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.spot-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.spot-card p {
  font-size: 0.85rem;
  color: var(--dusk);
  margin: 0;
}

.spot-level {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean);
  padding: 0.25rem 0.75rem;
  background: var(--ocean-pale);
  border-radius: var(--r-full);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 2.75rem);
  border: 1.5px solid rgba(15,26,28,.08);
  transition: all var(--t-slow) var(--ease);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(15,26,28,.15);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-period,
.pricing-card.featured .pricing-features li { color: var(--white); }

.pricing-card.featured .pricing-header { border-color: rgba(255,255,255,.1); }
.pricing-card.featured .pricing-features li { opacity: 0.85; }
.pricing-card.featured .pricing-features li::before { color: var(--gold); }
.pricing-card.featured p { color: rgba(255,255,255,.55); }

.pricing-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  border-radius: var(--r-full);
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem;
}

.pricing-card.featured .pricing-tag {
  background: rgba(196,154,60,.2);
  color: var(--gold-light);
}

.pricing-header {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15,26,28,.08);
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 400;
  color: var(--ocean);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-period {
  font-size: 0.875rem;
  color: var(--mist);
  margin-top: 0.25rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.65rem 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px solid rgba(15,26,28,.05);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ocean);
  font-weight: 700;
  font-size: 0.875rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,18,20,0);
  transition: background var(--t-base) var(--ease);
  z-index: 1;
}

.gallery-item:hover::before { background: rgba(10,18,20,.35); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(15,26,28,.07);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--t-base) var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.testimonial-rating {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15,26,28,.07);
}

.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
  color: var(--ink);
}

.testimonial-author p {
  font-size: 0.75rem;
  color: var(--mist);
  margin: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(15,26,28,.09);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--t-fast);
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--mist);
  transition: transform var(--t-base) var(--ease), color var(--t-base);
  flex-shrink: 0;
}

.faq-question.active { color: var(--ocean); }
.faq-question.active::after { transform: rotate(45deg); color: var(--ocean); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}

.faq-answer-content {
  padding-bottom: 1.75rem;
}

.faq-answer-content p {
  font-size: 1rem;
  color: var(--dusk);
}

.faq-item.active .faq-answer { max-height: 400px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(4rem, 10vw, 7rem) clamp(2rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(10,125,147,.35) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 40%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(196,154,60,.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,.65);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}

.cta-section .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}

.cta-section > div {
  position: relative;
  z-index: 1;
}

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1.5px solid rgba(15,26,28,.12);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(10,125,147,.1);
}

textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(2rem, 5vw, 3rem);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-section h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}

.footer-section p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a,
.footer-links p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast);
  margin: 0;
  line-height: 1.6;
}

.footer-links a:hover { color: var(--white); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  transition: all var(--t-base) var(--ease);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--ocean-mid);
  color: var(--white);
  background: rgba(10,125,147,.2);
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* ============================================
   ANIMATIONS & SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.9s var(--ease-out) both; }

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ============================================
   UTILITIES
   ============================================ */
.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.text-center { text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    height: calc(100svh - var(--header-h));
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem 2rem;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active { transform: translateX(0); }

  .nav-link {
    color: var(--ink);
    font-size: 0.875rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(15,26,28,.07);
    width: 100%;
  }

  .nav-link::after { display: none; }

  .btn-reserve-header {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    border-color: var(--ocean);
    color: var(--ocean);
  }

  .hero-scroll { display: none; }

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

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

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }

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

  .cta-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.1rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cta-section > div {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-section .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .header, .footer, .btn, .mobile-menu-toggle { display: none; }
  * { box-shadow: none !important; }
}