/* =====================================================
   CAMERON STEAGALL TRAVEL — MASTER STYLESHEET
   ===================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* --- Design Tokens --- */
:root {
  --c-forest:       #1B3A2D;
  --c-forest-deep:  #112619;
  --c-forest-light: #2E5C45;
  --c-sea:          #4A8C7F;
  --c-sea-light:    #6BAAA0;
  --c-sand:         #E2D9CC;
  --c-sand-light:   #EDE8E0;
  --c-ivory:        #F7F4EF;
  --c-chalk:        #FAFAF7;
  --c-driftwood:    #8A7358;
  --c-text:         #1A1A18;
  --c-text-mid:     #565650;
  --c-text-light:   #8C8C87;
  --c-white:        #FFFFFF;
  --c-overlay-dark: rgba(17, 38, 25, 0.62);
  --c-overlay-mid:  rgba(17, 38, 25, 0.35);
  --c-glass:        rgba(250, 250, 247, 0.85);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --text-xs:   0.6875rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.3125rem;
  --text-2xl:  1.625rem;
  --text-3xl:  2rem;
  --text-4xl:  2.5rem;
  --text-5xl:  3.25rem;
  --text-6xl:  4.25rem;
  --text-7xl:  5.5rem;
  --text-8xl:  7rem;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --max-w:      1280px;
  --max-w-text: 700px;
  --gutter:     clamp(1.25rem, 5vw, 2.5rem);

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast:     180ms;
  --dur-base:     320ms;
  --dur-slow:     560ms;
  --dur-crawl:    900ms;

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.09), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 28px 64px rgba(0,0,0,0.14);

  --nav-h: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-chalk);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
svg { display: block; }

/* --- Skip Link --- */
.skip-link {
  position: absolute; left: var(--space-4); top: var(--space-4);
  background: var(--c-forest); color: var(--c-white);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-sm);
  font-size: var(--text-sm); z-index: 9999;
  transform: translateY(-200%); transition: transform var(--dur-fast);
}
.skip-link:focus { transform: translateY(0); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--gutter);
  transition: background var(--dur-slow) var(--ease-out),
              backdrop-filter var(--dur-slow),
              box-shadow var(--dur-slow);
}
.nav.scrolled {
  background: var(--c-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav__inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none; flex-shrink: 0;
}
.nav__logo-name {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-white);
  line-height: 1;
  transition: color var(--dur-base);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55), 0 0 2px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.nav__logo-sub {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  line-height: 1;
  transition: color var(--dur-base);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.nav.scrolled .nav__logo-name {
  color: var(--c-forest);
  text-shadow: none;
}
.nav.scrolled .nav__logo-sub {
  color: var(--c-text-mid);
  text-shadow: none;
}

.nav__links {
  display: flex; align-items: center; gap: var(--space-6);
  flex: 1; justify-content: center; margin: 0 var(--space-6);
}
.nav__link {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur-base);
}
.nav__link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link:hover { color: var(--c-white); }
.nav.scrolled .nav__link { color: var(--c-text-mid); }
.nav.scrolled .nav__link:hover { color: var(--c-forest); }

.nav__cta {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 0.625rem var(--space-5);
  background: var(--c-white); color: var(--c-forest);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background var(--dur-base), color var(--dur-base),
              transform var(--dur-fast), box-shadow var(--dur-base);
  min-height: 44px;
}
.nav__cta:hover {
  background: var(--c-forest);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav.scrolled .nav__cta { background: var(--c-forest); color: var(--c-white); }
.nav.scrolled .nav__cta:hover { background: var(--c-forest-light); }

/* Mobile menu toggle */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.nav__toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--c-white); border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-base);
}
.nav.scrolled .nav__toggle span { background: var(--c-text); }
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--c-forest);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--space-8);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.nav__drawer.open { opacity: 1; pointer-events: all; }
.nav__drawer .nav__link {
  font-size: var(--text-3xl); font-family: var(--f-display);
  font-weight: 400; letter-spacing: 0.05em;
  text-transform: none; color: var(--c-white);
}
.nav__drawer .nav__cta {
  margin-top: var(--space-4); font-size: var(--text-sm);
}

/* =====================================================
   SCROLL REVEAL SYSTEM
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

/* =====================================================
   HORIZON LINE MOTIF (signature element)
   ===================================================== */
.horizon-line {
  display: flex; align-items: center; gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.horizon-line::before, .horizon-line::after {
  content: '';
  height: 1px; flex: 1;
  background: currentColor; opacity: 0.2;
}
.horizon-line__label {
  font-size: var(--text-xs); letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  white-space: nowrap;
}

/* Section eyebrow without line */
.eyebrow {
  font-size: var(--text-xs); letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  color: var(--c-sea);
  display: block; margin-bottom: var(--space-4);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-3);
  padding: 0.875rem var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform var(--dur-fast), box-shadow var(--dur-base),
              background var(--dur-base), color var(--dur-base);
  min-height: 52px; min-width: 44px;
  white-space: nowrap; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--c-forest); color: var(--c-white);
}
.btn-primary:hover { background: var(--c-forest-light); }

.btn-outline {
  background: transparent; color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--c-white); }

.btn-outline-dark {
  background: transparent; color: var(--c-forest);
  border: 1.5px solid var(--c-forest);
}
.btn-outline-dark:hover { background: var(--c-forest); color: var(--c-white); }

.btn-ghost {
  background: transparent; color: var(--c-text-mid);
  padding-left: 0; padding-right: 0;
  border-radius: 0;
}
.btn-ghost::after {
  content: '';
  display: block; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0.4); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn-ghost:hover { color: var(--c-forest); }
.btn-ghost:hover::after { transform: scaleX(1); }
.btn-ghost:hover { transform: none; box-shadow: none; }

/* Arrow icon for buttons */
.btn__arrow {
  width: 16px; height: 16px;
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--gutter);
}
.section { padding: var(--space-24) 0; }
.section-lg { padding: clamp(5rem, 10vw, 8rem) 0; }

/* =====================================================
   HERO (Home)
   ===================================================== */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background-color: var(--c-forest-deep);
}

.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center 40%;
  transform-origin: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1);    background-position: center 38%; }
  to   { transform: scale(1.06); background-position: center 44%; }
}

.hero__gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(17,38,25,0.72) 0%, transparent 22%),
    linear-gradient(to top,    rgba(17,38,25,0.92) 0%, rgba(17,38,25,0.45) 40%, rgba(17,38,25,0.1) 70%, transparent 100%);
}

.hero__content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 var(--gutter);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  max-width: var(--max-w); margin: 0 auto;
}

.hero__eyebrow {
  font-size: var(--text-xs); letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-4);
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(var(--text-4xl), 8vw, var(--text-8xl));
  font-weight: 300;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: var(--space-6);
  max-width: 14ch;
  animation: fadeUp 1s var(--ease-out) 0.5s both;
}
.hero__title em {
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.75);
}

.hero__desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  max-width: 44ch; line-height: 1.6;
  margin-bottom: var(--space-10);
  font-weight: 300;
  animation: fadeUp 1s var(--ease-out) 0.7s both;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  animation: fadeUp 1s var(--ease-out) 0.9s both;
}

.hero__scroll {
  position: absolute; bottom: var(--space-8); right: var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  z-index: 2;
}
.hero__scroll-label {
  font-size: var(--text-xs); letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  writing-mode: vertical-lr; transform: rotate(180deg);
}
.hero__scroll-line {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%        { transform: scaleY(0.4); opacity: 1; }
}

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

/* =====================================================
   TAGLINE STRIP
   ===================================================== */
.tagline {
  background: var(--c-forest);
  padding: var(--space-12) var(--gutter);
  text-align: center;
}
.tagline__text {
  font-family: var(--f-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 300; color: var(--c-white);
  line-height: 1.3; max-width: 32ch; margin: 0 auto;
}
.tagline__text em { font-style: italic; color: var(--c-sea-light); }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how { background: var(--c-ivory); }

.how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.how__step {
  display: flex; flex-direction: column;
  background: var(--c-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(17,38,25,0.07);
}
.how__step-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.how__step-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.how__step:hover .how__step-img img { transform: scale(1.04); }
.how__step-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,38,25,0.18) 0%, rgba(17,38,25,0.52) 100%);
}
.how__step-num {
  position: absolute;
  top: var(--space-4); left: var(--space-5);
  font-family: var(--f-display);
  font-size: var(--text-5xl); font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1;
  user-select: none;
}
.how__step-body {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-7);
}
.how__step-icon {
  width: 44px; height: 44px;
  background: var(--c-forest);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.how__step-icon svg { width: 20px; height: 20px; stroke: var(--c-white); fill: none; }
.how__step-title {
  font-family: var(--f-display);
  font-size: var(--text-2xl); font-weight: 400; color: var(--c-forest);
  margin-top: var(--space-1);
}
.how__step-desc {
  font-size: var(--text-base); color: var(--c-text-mid);
  line-height: 1.7;
}

/* =====================================================
   DESTINATION CARDS
   ===================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--c-forest-deep);
}
.dest-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-crawl) var(--ease-out);
  will-change: transform;
}
.dest-card:hover .dest-card__img { transform: scale(1.06); }

.dest-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,38,25,0.85) 0%,
    rgba(17,38,25,0.3) 50%,
    transparent 100%
  );
  transition: background var(--dur-base);
}
.dest-card:hover .dest-card__overlay {
  background: linear-gradient(
    to top,
    rgba(17,38,25,0.92) 0%,
    rgba(17,38,25,0.4) 60%,
    rgba(17,38,25,0.1) 100%
  );
}

.dest-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-6);
  transform: translateY(0);
  transition: transform var(--dur-base) var(--ease-out);
}
.dest-card__region {
  font-size: var(--text-xs); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-sea-light);
  font-weight: 500; margin-bottom: var(--space-2);
}
.dest-card__name {
  font-family: var(--f-display);
  font-size: var(--text-3xl); font-weight: 400;
  color: var(--c-white); line-height: 1.1;
  margin-bottom: var(--space-3);
}
.dest-card__desc {
  font-size: var(--text-sm); color: rgba(255,255,255,0.7);
  line-height: 1.5; max-width: 32ch;
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.dest-card:hover .dest-card__desc { opacity: 1; transform: translateY(0); }

/* =====================================================
   ABOUT TEASER (split layout)
   ===================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-split__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-split__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-crawl) var(--ease-out);
}
.about-split__img-wrap:hover .about-split__img { transform: scale(1.04); }

.about-split__badge {
  position: absolute; bottom: var(--space-6); left: var(--space-6);
  background: var(--c-white); border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--space-3);
}
.about-split__badge-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--c-forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-split__badge-icon svg { width: 20px; height: 20px; stroke: white; fill: none; }
.about-split__badge-text { line-height: 1.3; }
.about-split__badge-label { font-size: var(--text-xs); color: var(--c-text-light); letter-spacing: 0.06em; }
.about-split__badge-value { font-size: var(--text-sm); font-weight: 600; color: var(--c-text); }

.about-split__body {
  display: flex; flex-direction: column; gap: var(--space-6);
}
.about-split__title {
  font-family: var(--f-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 300; line-height: 1.15; color: var(--c-forest);
}
.about-split__title em { font-style: italic; color: var(--c-sea); }
.about-split__text {
  font-size: var(--text-base); color: var(--c-text-mid);
  line-height: 1.8; max-width: var(--max-w-text);
}

/* Fora affiliation badge */
.fora-badge {
  display: inline-flex; align-items: center; gap: var(--space-3);
  border: 1px solid var(--c-sand);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  background: var(--c-ivory);
  align-self: flex-start;
}
.fora-badge__label { font-size: var(--text-xs); color: var(--c-text-mid); letter-spacing: 0.1em; text-transform: uppercase; }
.fora-badge__name  { font-size: var(--text-sm); font-weight: 600; color: var(--c-forest); }

/* =====================================================
   PERKS / WHY FORA
   ===================================================== */
.perks { background: var(--c-sand-light); }

.perks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-12);
}

.perk-card {
  background: var(--c-chalk); border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.perk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.perk-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--c-forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perk-card__icon svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 1.5; }

.perk-card__title {
  font-family: var(--f-display);
  font-size: var(--text-xl); font-weight: 500;
  color: var(--c-forest); line-height: 1.25;
}
.perk-card__desc {
  font-size: var(--text-sm); color: var(--c-text-mid); line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { background: var(--c-forest); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.testimonial {
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-6);
}
.testimonial__quote {
  font-family: var(--f-display);
  font-size: var(--text-2xl); font-weight: 300; font-style: italic;
  color: var(--c-white); line-height: 1.45;
}
.testimonial__author { display: flex; flex-direction: column; gap: var(--space-1); }
.testimonial__name {
  font-size: var(--text-sm); font-weight: 600;
  color: rgba(255,255,255,0.9); letter-spacing: 0.04em;
}
.testimonial__trip {
  font-size: var(--text-xs); color: var(--c-sea-light);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  position: relative; overflow: hidden;
  min-height: 520px;
  display: flex; align-items: center;
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
}
.cta-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(17,38,25,0.88) 45%, rgba(17,38,25,0.4) 100%);
}
.cta-banner__content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--space-24) var(--gutter);
  display: flex; flex-direction: column; gap: var(--space-6);
  max-width: 600px;
}
.cta-banner__title {
  font-family: var(--f-display);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  font-weight: 300; color: var(--c-white); line-height: 1.1;
}
.cta-banner__title em { font-style: italic; color: var(--c-sea-light); }
.cta-banner__desc {
  font-size: var(--text-base); color: rgba(255,255,255,0.72);
  line-height: 1.7; max-width: 42ch;
}
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-2); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--c-forest-deep); color: rgba(255,255,255,0.6);
  padding: var(--space-16) 0 var(--space-8);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer__brand {
  display: flex; flex-direction: column; gap: var(--space-4);
}
.footer__logo {
  font-family: var(--f-display);
  font-size: var(--text-2xl); font-weight: 500;
  color: var(--c-white); letter-spacing: 0.02em;
  line-height: 1;
}
.footer__tagline {
  font-size: var(--text-sm); color: rgba(255,255,255,0.5);
  line-height: 1.6; max-width: 28ch;
}
.footer__social {
  display: flex; gap: var(--space-3); margin-top: var(--space-2);
}
.footer__social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-base), background var(--dur-base);
}
.footer__social-link:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}
.footer__social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

.footer__col-title {
  font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--c-white); margin-bottom: var(--space-5);
}
.footer__links {
  display: flex; flex-direction: column; gap: var(--space-3);
}
.footer__link {
  font-size: var(--text-sm); color: rgba(255,255,255,0.55);
  transition: color var(--dur-base);
}
.footer__link:hover { color: var(--c-white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-6);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-4);
}
.footer__copy { font-size: var(--text-xs); }
.footer__legal {
  display: flex; gap: var(--space-6);
}
.footer__legal a {
  font-size: var(--text-xs); color: rgba(255,255,255,0.4);
  transition: color var(--dur-base);
}
.footer__legal a:hover { color: rgba(255,255,255,0.8); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  position: relative;
  height: 60vh; min-height: 480px;
  display: flex; align-items: center;
  overflow: hidden; background: var(--c-forest-deep);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(17,38,25,0.85) 0%, rgba(17,38,25,0.4) 70%, transparent 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter); max-width: var(--max-w); width: 100%; margin: 0 auto;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.page-hero__title {
  font-family: var(--f-display);
  font-size: clamp(var(--text-4xl), 7vw, var(--text-7xl));
  font-weight: 300; color: var(--c-white); line-height: 1.05;
}
.page-hero__sub {
  font-size: var(--text-lg); color: rgba(255,255,255,0.68);
  max-width: 48ch; line-height: 1.65; font-weight: 300;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-full { display: flex; flex-direction: column; gap: var(--space-16); }

.about-full__photo {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3; max-height: 560px;
  box-shadow: var(--shadow-xl);
}
.about-full__photo img { width: 100%; height: 100%; object-fit: cover; }

.about-full__text-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12);
  align-items: start;
}
.about-full__lead {
  font-family: var(--f-display);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 300; color: var(--c-forest); line-height: 1.25;
}
.about-full__lead em { font-style: italic; color: var(--c-sea); }

.about-full__body {
  font-size: var(--text-base); color: var(--c-text-mid);
  line-height: 1.8; display: flex; flex-direction: column; gap: var(--space-4);
}

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-5); margin-top: var(--space-4);
}
.value-item {
  border-top: 1px solid var(--c-sand);
  padding-top: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.value-item__title {
  font-family: var(--f-display);
  font-size: var(--text-xl); font-weight: 500; color: var(--c-forest);
}
.value-item__desc { font-size: var(--text-sm); color: var(--c-text-mid); line-height: 1.6; }

/* =====================================================
   DESTINATIONS PAGE
   ===================================================== */
.dest-filter {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-bottom: var(--space-10);
}
.dest-filter__btn {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; border: 1px solid var(--c-sand);
  color: var(--c-text-mid); background: transparent;
  transition: all var(--dur-base); min-height: 44px;
  cursor: pointer;
}
.dest-filter__btn:hover,
.dest-filter__btn.active {
  background: var(--c-forest); color: var(--c-white); border-color: var(--c-forest);
}

.dest-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}

/* =====================================================
   DEALS PAGE
   ===================================================== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.deal-card {
  background: var(--c-chalk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-sand);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.deal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.deal-card__img-wrap {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--c-sand);
}
.deal-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-crawl) var(--ease-out);
}
.deal-card:hover .deal-card__img { transform: scale(1.06); }

.deal-card__badge {
  position: absolute; top: var(--space-4); left: var(--space-4);
  background: var(--c-forest); color: var(--c-white);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
}

.deal-card__body {
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.deal-card__region {
  font-size: var(--text-xs); letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-sea); font-weight: 500;
}
.deal-card__title {
  font-family: var(--f-display);
  font-size: var(--text-2xl); font-weight: 400; color: var(--c-forest); line-height: 1.2;
}
.deal-card__desc { font-size: var(--text-sm); color: var(--c-text-mid); line-height: 1.6; }
.deal-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--c-sand);
}
.deal-card__price { font-size: var(--text-xs); color: var(--c-text-light); }
.deal-card__link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-forest);
  transition: gap var(--dur-base);
}
.deal-card__link:hover { gap: var(--space-3); }
.deal-card__link svg { width: 14px; height: 14px; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--space-8); }
.contact-info__title {
  font-family: var(--f-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 300; color: var(--c-forest); line-height: 1.15;
}
.contact-info__title em { font-style: italic; color: var(--c-sea); }
.contact-info__desc { font-size: var(--text-base); color: var(--c-text-mid); line-height: 1.8; }

.contact-detail {
  display: flex; align-items: flex-start; gap: var(--space-4);
}
.contact-detail__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-md); background: var(--c-sand-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail__icon svg { width: 20px; height: 20px; stroke: var(--c-forest); fill: none; }
.contact-detail__label { font-size: var(--text-xs); color: var(--c-text-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--space-1); }
.contact-detail__value { font-size: var(--text-base); font-weight: 500; color: var(--c-text); }

.contact-form-wrap {
  background: var(--c-ivory);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap__title {
  font-family: var(--f-display);
  font-size: var(--text-2xl); font-weight: 400; color: var(--c-forest);
  margin-bottom: var(--space-2);
}
.contact-form-wrap__sub {
  font-size: var(--text-sm); color: var(--c-text-mid); line-height: 1.6;
  margin-bottom: var(--space-8);
}

.fora-embed {
  width: 100%; border: none;
  border-radius: var(--radius-lg);
  min-height: 600px;
  background: var(--c-chalk);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: var(--space-10); }
  .about-split__img-wrap { aspect-ratio: 16/9; }
  .about-full__text-wrap { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__title { font-size: clamp(var(--text-4xl), 11vw, var(--text-6xl)); }

  .footer__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .destinations-grid { grid-template-columns: 1fr; }
  .dest-grid-full    { grid-template-columns: 1fr; }
  .deals-grid        { grid-template-columns: 1fr; }
  .perks__grid       { grid-template-columns: 1fr 1fr; }

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

  .cta-banner__content { padding: var(--space-16) var(--gutter); }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .perks__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; }
  .hero__scroll-line { animation: none; }
  .reveal, .reveal-left { transition: none; opacity: 1; transform: none; }
  .kenBurns { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =====================================================
   FOCUS STATES (a11y)
   ===================================================== */
:focus-visible {
  outline: 2px solid var(--c-sea);
  outline-offset: 3px;
  border-radius: 2px;
}
