/* ================================================
   STORYTAILOR TRAVEL — Premium Design System
   ================================================ */

:root {
  --ivory:     #FAF8F2;
  --cream:     #F5F0E8;
  --sand:      #B89A72;
  --taupe:     #7C6B5A;
  --stone:     #9B9089;
  --sienna:    #9B6E55;
  --champagne: #D4B896;
  --bronze:    #A0845C;
  --noir:      #0C0B09;
  --dark:      #1A1917;
  --mid:       #3D3B39;
  --muted:     #6B6460;
  --border:    #E0D8D0;
  --white:     #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', 'Jost', system-ui, sans-serif;

  --text-xxs:  clamp(0.625rem, 0.6vw, 0.688rem);
  --text-xs:   clamp(0.688rem, 0.7vw, 0.75rem);
  --text-sm:   clamp(0.813rem, 0.9vw, 0.875rem);
  --text-base: clamp(0.938rem, 1vw, 1rem);
  --text-md:   clamp(1rem, 1.1vw, 1.063rem);
  --text-lg:   clamp(1.063rem, 1.2vw, 1.125rem);
  --text-xl:   clamp(1.25rem, 1.5vw, 1.5rem);
  --text-2xl:  clamp(1.5rem, 2vw, 2rem);
  --text-3xl:  clamp(2rem, 3vw, 2.8rem);
  --text-4xl:  clamp(2.5rem, 4vw, 3.8rem);
  --text-5xl:  clamp(3rem, 5.5vw, 5.5rem);
  --text-hero: clamp(3.8rem, 7.5vw, 8rem);

  --sp-1:  0.25rem;  --sp-2:  0.5rem;  --sp-3:  0.75rem;
  --sp-4:  1rem;     --sp-6:  1.5rem;  --sp-8:  2rem;
  --sp-12: 3rem;     --sp-16: 4rem;    --sp-24: 6rem;
  --section-y:  clamp(5rem, 10vw, 10rem);
  --container-x: clamp(1.5rem, 5vw, 6rem);

  --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --t-med:   0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:  0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --content-w: 1160px;
  --text-w:    680px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font: inherit; color: inherit; }

/* --- LOADER --- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--noir);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 300;
  color: var(--white); letter-spacing: 8px; text-transform: lowercase;
  opacity: 0; animation: lfade 0.9s 0.3s ease forwards;
  display: block; text-align: center;
}
.loader-tag {
  font-size: 0.42rem; letter-spacing: 7px; text-transform: uppercase;
  color: var(--sand); margin-top: 9px; display: block; text-align: center;
  opacity: 0; animation: lfade 0.9s 0.6s ease forwards;
}
.loader-line {
  width: 0; height: 1px; background: var(--sand);
  margin: 20px auto 0; animation: lline 1.2s 0.8s ease forwards;
}
@keyframes lfade { to { opacity: 1; } }
@keyframes lline { to { width: 56px; } }

/* --- CURSOR --- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px; background: var(--sienna); border-radius: 50%;
  pointer-events: none; transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px; border: 1px solid rgba(155,110,85,0.4);
  border-radius: 50%; pointer-events: none; transform: translate(-50%,-50%);
  transition: width 0.4s var(--ease-elegant), height 0.4s var(--ease-elegant), border-color 0.3s;
}
.cursor.hover { width: 5px; height: 5px; opacity: 0.5; }
.cursor-ring.hover { width: 54px; height: 54px; border-color: rgba(155,110,85,0.2); }
@media (max-width: 960px) { .cursor, .cursor-ring { display: none; } body, button { cursor: auto; } }

/* --- NAVIGATION --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--container-x); height: 80px;
  transition: background 0.5s ease, box-shadow 0.5s ease, height 0.4s ease;
}
.nav.scrolled {
  background: rgba(250,248,242,0.97); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--border); height: 70px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: var(--font-serif); font-size: 1.375rem; font-weight: 400;
  color: var(--white); letter-spacing: 1.5px; transition: color 0.4s ease;
}
.nav.scrolled .nav-logo-name { color: var(--dark); }
.nav-logo-tag {
  font-size: 0.42rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--sand); margin-top: 3px; transition: color 0.4s ease;
}
.nav-center { display: flex; align-items: center; gap: clamp(18px,3vw,34px); }
.nav-link {
  font-size: 0.64rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.78); font-weight: 400;
  position: relative; padding-bottom: 2px; transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -1px; left: 0; width: 0;
  height: 1px; background: var(--sienna); transition: width 0.35s var(--ease-elegant);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--white); }
.nav.scrolled .nav-link { color: var(--muted); }
.nav.scrolled .nav-link:hover { color: var(--dark); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-toggle { display: flex; border: 1px solid rgba(255,255,255,0.2); overflow: hidden; transition: border-color 0.4s ease; }
.nav.scrolled .lang-toggle { border-color: var(--border); }
.lang-btn {
  padding: 6px 11px; font-size: 0.58rem; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4); font-family: var(--font-sans); font-weight: 400;
  transition: all 0.2s ease;
}
.lang-btn.active { background: rgba(255,255,255,0.12); color: var(--white); }
.nav.scrolled .lang-btn { color: var(--muted); }
.nav.scrolled .lang-btn.active { background: var(--cream); color: var(--dark); }
.nav-cta {
  background: var(--sand); color: var(--dark);
  padding: 10px 22px; font-size: 0.62rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 400;
  display: inline-block; white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover { background: var(--sienna); color: var(--white); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; }
.nav-hamburger span { width: 100%; height: 1px; background: var(--white); display: block; transition: all 0.35s ease; }
.nav.scrolled .nav-hamburger span { background: var(--dark); }

/* Mobile Nav Drawer */
.nav-drawer {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(250,248,242,0.98); backdrop-filter: blur(16px);
  padding: 28px var(--container-x); flex-direction: column; gap: 22px;
  border-top: 1px solid var(--border); z-index: 499;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link { color: var(--muted); font-size: 0.72rem; }
.nav-drawer .nav-link:hover { color: var(--dark); }
.nav-drawer .nav-cta { align-self: flex-start; }

/* --- HERO --- */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(1.05) saturate(1.08);
}
.hero-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1614 0%, #2d2420 50%, #1a1614 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.52) 45%, rgba(0,0,0,0.22) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: 0.032; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px; animation: grain 0.5s steps(2) infinite;
}
@keyframes grain {
  0%,100% { transform:translate(0,0); } 25% { transform:translate(-2%,-1%); }
  50% { transform:translate(1%,2%); } 75% { transform:translate(2%,-2%); }
}
.hero-bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px; z-index: 3;
  background: linear-gradient(to right, transparent, var(--sand), transparent);
  animation: lineGlow 3s ease-in-out infinite;
}
@keyframes lineGlow { 0%,100% { opacity:0.35; } 50% { opacity:0.9; } }
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--container-x); max-width: calc(720px + var(--container-x)*2);
}
.hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 7px; text-transform: uppercase;
  font-weight: 400; color: var(--sand); display: block; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s 0.4s var(--ease-elegant) forwards;
}
.hero-title {
  font-family: var(--font-serif); font-size: var(--text-hero);
  font-weight: 300; color: var(--white); line-height: 1.02; margin-bottom: 30px;
}
.hero-title-line { display: block; overflow: hidden; }
.hero-title-line span { display: inline-block; transform: translateY(110%); }
.hero-title-line:nth-child(1) span { animation: slideUp 1s 0.5s var(--ease-elegant) forwards; }
.hero-title-line:nth-child(2) span { animation: slideUp 1s 0.68s var(--ease-elegant) forwards; font-style: italic; color: var(--sand); }
.hero-sub {
  font-size: var(--text-lg); color: rgba(255,255,255,0.8); line-height: 1.85;
  max-width: 430px; margin-bottom: 50px; font-weight: 300;
  opacity: 0; animation: fadeUp 0.9s 0.92s var(--ease-elegant) forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 1.12s var(--ease-elegant) forwards;
}
.hero-scroll-indicator {
  position: absolute; bottom: 48px; right: var(--container-x); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; animation: fadeIn 1s 1.7s ease forwards;
}
.hero-scroll-text {
  font-size: 0.48rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollPulse 2.2s 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:0.3; } 50% { opacity:0.85; } }
@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { to { opacity:1; } }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sand); color: var(--dark);
  padding: 15px 34px; font-size: var(--text-xxs); letter-spacing: 3px;
  text-transform: uppercase; font-weight: 400; font-family: var(--font-sans);
  position: relative; overflow: hidden; z-index: 0; transition: color 0.38s ease;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--sienna);
  transform: translateX(-101%); transition: transform 0.42s var(--ease-elegant); z-index: -1;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--white); }
.btn-ghost-light {
  font-size: var(--text-xxs); letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.82); border-bottom: 1px solid rgba(255,255,255,0.38);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
  font-family: var(--font-sans); font-weight: 400;
}
.btn-ghost-light:hover { color: var(--sand); border-color: var(--sand); }
.btn-ghost-dark {
  font-size: var(--text-xxs); letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--border);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
  font-family: var(--font-sans); font-weight: 400; display: inline-block;
}
.btn-ghost-dark:hover { color: var(--dark); border-color: var(--sienna); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.8);
  padding: 13px 26px; font-size: var(--text-xxs); letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 400; font-family: var(--font-sans);
  transition: border-color 0.35s, color 0.35s;
}
.btn-outline-light:hover { border-color: var(--sand); color: var(--sand); }

/* --- SECTION BASE --- */
.section { padding: var(--section-y) var(--container-x); }
.section-inner { max-width: var(--content-w); margin: 0 auto; }
.eyebrow {
  font-size: var(--text-xxs); letter-spacing: 5px; text-transform: uppercase;
  font-weight: 400; color: var(--sienna); display: block; margin-bottom: 18px;
}
.eyebrow--light { color: var(--sand); }
.section-title {
  font-family: var(--font-serif); font-size: var(--text-4xl);
  font-weight: 300; line-height: 1.08; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--sienna); }
.section-title--light { color: var(--white); }
.accent-rule { width: 36px; height: 1px; background: var(--sienna); display: block; margin: 28px 0; }
.section-link {
  font-size: var(--text-xxs); letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sienna); border-bottom: 1px solid var(--sienna); padding-bottom: 2px;
  font-weight: 400; white-space: nowrap; transition: color 0.25s, border-color 0.25s;
}
.section-link:hover { color: var(--dark); border-color: var(--dark); }

/* --- PARTNERS --- */
.partners {
  background: var(--cream); padding: 26px 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.partners-track {
  display: flex; align-items: center; gap: 72px;
  animation: ticker 30s linear infinite; width: max-content;
}
.partners-track img {
  height: 30px; width: auto; object-fit: contain;
  filter: brightness(0) saturate(100%); flex-shrink: 0;
  opacity: 0.6; transition: opacity 0.3s;
}
.partners-track img:hover { opacity: 1; }
@keyframes ticker { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* --- PROMISE / PHILOSOPHY --- */
.promise-section { background: var(--white); }
.promise-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,8vw,100px); align-items: center;
  margin-bottom: clamp(60px,8vw,90px);
}
.promise-quote {
  font-family: var(--font-serif); font-size: var(--text-3xl);
  font-weight: 300; line-height: 1.35; color: var(--dark);
}
.promise-quote strong { font-style: italic; font-weight: 400; color: var(--sienna); }
.promise-text { font-size: var(--text-md); color: var(--muted); line-height: 1.95; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.pillar {
  background: var(--cream); padding: clamp(36px,4vw,52px) clamp(28px,3vw,44px);
  position: relative; overflow: hidden; transition: background 0.45s ease;
}
.pillar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--sienna); transform: scaleX(0);
  transform-origin: left; transition: transform 0.45s var(--ease-elegant);
}
.pillar:hover { background: var(--white); }
.pillar:hover::after { transform: scaleX(1); }
.pillar-ornament { font-family: var(--font-serif); font-size: 1.1rem; color: var(--champagne); letter-spacing: 3px; display: block; margin-bottom: 22px; }
.pillar-icon { margin-bottom: 18px; }
.pillar-icon svg { width: 32px; height: 32px; stroke: var(--sienna); fill: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--dark); margin-bottom: 12px; }
.pillar p { font-size: var(--text-sm); color: var(--muted); line-height: 1.9; }

/* --- DESTINATIONS --- */
.destinations-section { background: var(--cream); }
.dest-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.dest-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; grid-template-rows: 360px 240px; gap: 10px; }
.dest-card { position: relative; overflow: hidden; }
.dest-card:first-child { grid-row: 1/3; }
.dest-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-elegant); }
.dest-card:hover .dest-card-img { transform: scale(1.06); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%); }
.dest-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.dest-card:first-child .dest-card-info { padding: 40px; }
.dest-card-region { font-size: 0.56rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--champagne); display: block; margin-bottom: 7px; font-weight: 400; }
.dest-card-name { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--white); }
.dest-card:first-child .dest-card-name { font-size: var(--text-3xl); }
.dest-card-explore { display: block; font-size: 0.56rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sand); margin-top: 10px; opacity: 0; transform: translateY(8px); transition: opacity 0.35s, transform 0.35s; }
.dest-card:hover .dest-card-explore { opacity: 1; transform: translateY(0); }

/* --- PROCESS --- */
.process-section { background: var(--white); }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: clamp(48px,6vw,72px); }
.process-intro { font-size: var(--text-md); color: var(--muted); line-height: 1.9; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); }
.process-step { background: var(--cream); padding: clamp(28px,3vw,44px); transition: background 0.4s ease; }
.process-step:hover { background: var(--white); }
.process-num { font-family: var(--font-serif); font-size: var(--text-4xl); font-weight: 300; color: var(--border); line-height: 1; display: block; margin-bottom: 20px; transition: color 0.4s ease; }
.process-step:hover .process-num { color: var(--champagne); }
.process-step h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--dark); margin-bottom: 12px; }
.process-step p { font-size: var(--text-sm); color: var(--muted); line-height: 1.9; }

/* --- EXPERIENCES --- */
.exp-section { background: var(--ivory); }
.exp-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: clamp(48px,6vw,72px); }
.exp-header p { font-size: var(--text-md); color: var(--muted); line-height: 1.9; }
.exp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.exp-card { cursor: none; }
.exp-card-img { height: 340px; overflow: hidden; margin-bottom: 22px; }
.exp-card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.8s var(--ease-elegant); }
.exp-card:hover .exp-card-img img { transform: scale(1.07); }
.exp-card h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--dark); margin-bottom: 10px; }
.exp-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.exp-card-arrow { font-size: 0.58rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sienna); display: inline-block; transition: transform 0.3s ease; font-weight: 400; }
.exp-card:hover .exp-card-arrow { transform: translateX(8px); }

/* --- JOURNAL PREVIEW --- */
.journal-section { background: var(--cream); }
.journal-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.journal-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 10px; }
.journal-card { position: relative; overflow: hidden; background: var(--white); }
.journal-card:first-child { grid-row: 1/3; min-height: 560px; }
.journal-card-img { height: 260px; overflow: hidden; }
.journal-card:first-child .journal-card-img { position: absolute; inset: 0; height: 100%; }
.journal-card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.9s var(--ease-elegant); }
.journal-card:hover .journal-card-img img { transform: scale(1.05); }
.journal-card-body { padding: 28px; }
.journal-card:first-child .journal-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 36px;
  background: linear-gradient(to top, rgba(0,0,0,0.74) 0%, transparent 100%);
}
.journal-card-category { font-size: 0.56rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sienna); display: block; margin-bottom: 10px; font-weight: 400; }
.journal-card:first-child .journal-card-category { color: var(--sand); }
.journal-card h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
.journal-card:first-child h3 { font-size: var(--text-2xl); color: var(--white); }
.journal-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.85; }
.journal-card:first-child p { color: rgba(255,255,255,0.7); }

/* --- TESTIMONIALS --- */
.test-section { background: var(--white); }
.test-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.test-card { background: var(--ivory); display: flex; flex-direction: column; transition: background 0.4s ease; }
.test-card:hover { background: var(--white); }
.test-card-img { height: 260px; overflow: hidden; }
.test-card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.8s var(--ease-elegant); }
.test-card:hover .test-card-img img { transform: scale(1.05); }
.test-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.test-card-trip { font-size: 0.56rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sienna); font-weight: 400; margin-bottom: 16px; display: block; }
.test-card-quote { font-family: var(--font-serif); font-size: var(--text-lg); font-style: italic; font-weight: 300; line-height: 1.7; color: var(--dark); flex: 1; margin-bottom: 22px; }
.test-card-client { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.test-card-initials { width: 38px; height: 38px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1rem; color: var(--sienna); flex-shrink: 0; }
.test-card-name { font-size: 0.66rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); font-weight: 400; }
.test-card-origin { font-size: 0.68rem; color: var(--stone); margin-top: 2px; }

/* --- FOUNDERS --- */
.founders-section { background: var(--noir); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--content-w); margin: 0 auto; }
.founders-img { position: relative; min-height: 580px; overflow: hidden; }
.founders-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 12%; filter: brightness(0.85); transition: transform 0.9s var(--ease-elegant); }
.founders-section:hover .founders-img img { transform: scale(1.03); }
.founders-caption { position: absolute; bottom: 28px; left: 28px; z-index: 2; font-size: 0.5rem; letter-spacing: 3px; text-transform: uppercase; color: var(--champagne); }
.founders-content { padding: clamp(48px,6vw,80px) clamp(36px,5vw,68px); display: flex; flex-direction: column; justify-content: center; }
.founders-title { font-family: var(--font-serif); font-size: var(--text-3xl); font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 28px; }
.founders-title em { font-style: italic; color: var(--sand); }
.founders-text { font-size: var(--text-sm); color: rgba(255,255,255,0.6); line-height: 1.95; margin-bottom: 16px; }
.founders-text strong { color: rgba(255,255,255,0.9); font-weight: 400; }
.founders-divider { width: 36px; height: 1px; background: var(--sienna); display: block; margin: 28px 0; }
.founders-signature { font-family: var(--font-serif); font-size: 1.5rem; font-style: italic; color: var(--sand); margin-bottom: 36px; display: block; }

/* --- PRESS --- */
.press-section { background: var(--white); padding: clamp(56px,7vw,90px) var(--container-x); }
.press-inner { max-width: var(--content-w); margin: 0 auto; }
.press-header { display: flex; align-items: center; gap: 28px; margin-bottom: 36px; }
.press-rule { flex: 1; height: 1px; background: var(--border); }
.press-logos { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; margin-bottom: 44px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.press-logo-serif { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 400; font-style: italic; color: var(--dark); letter-spacing: 5px; opacity: 0.65; transition: opacity 0.25s; }
.press-logo-serif:hover { opacity: 1; }
.press-logo-sans { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 400; letter-spacing: 4.5px; text-transform: uppercase; color: var(--dark); opacity: 0.6; transition: opacity 0.25s; line-height: 1.3; }
.press-logo-sans span { display: block; font-size: 0.5rem; letter-spacing: 3px; }
.press-logo-sans:hover { opacity: 1; }
.press-quotes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.press-quote-card { background: var(--white); padding: clamp(32px,4vw,52px); transition: background 0.35s ease; }
.press-quote-card:hover { background: var(--cream); }
.press-source { font-size: 0.6rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sienna); font-weight: 400; margin-bottom: 18px; display: block; }
.press-quote-text { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 300; font-style: italic; line-height: 1.75; color: var(--dark); }

/* --- CTA SECTION --- */
.cta-section { position: relative; padding: clamp(80px,15vw,160px) var(--container-x); text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: -15% 0; background-size: cover; background-position: center; will-change: transform; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.56); }
.cta-inner { position: relative; z-index: 2; max-width: var(--text-w); margin: 0 auto; }
.cta-title { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.08; margin-bottom: 24px; }
.cta-title em { font-style: italic; color: var(--sand); }
.cta-subtitle { font-size: var(--text-md); color: rgba(255,255,255,0.68); line-height: 1.9; margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-rule { width: 36px; height: 1px; background: var(--sand); margin: 24px auto; }

/* --- FOOTER --- */
.footer { background: var(--dark); padding: clamp(56px,7vw,80px) var(--container-x) 32px; }
.footer-inner { max-width: var(--content-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(32px,4vw,56px); margin-bottom: clamp(48px,6vw,64px); }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.375rem; color: var(--white); letter-spacing: 1.5px; display: block; }
.footer-brand-tag { font-size: 0.42rem; letter-spacing: 5px; text-transform: uppercase; color: var(--sand); margin-top: 3px; display: block; margin-bottom: 20px; }
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.44); line-height: 1.9; max-width: 240px; }
.footer-contacts { margin-top: 20px; display: flex; flex-direction: column; gap: 7px; }
.footer-contact-link { font-size: 0.875rem; color: rgba(255,255,255,0.44); transition: color 0.25s; }
.footer-contact-link:hover { color: var(--sand); }
.footer-col-title { font-size: 0.56rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sand); margin-bottom: 22px; font-weight: 400; display: block; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.44); margin-bottom: 11px; transition: color 0.25s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.6rem; color: rgba(255,255,255,0.27); letter-spacing: 1px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s; }
.social-link:hover { border-color: var(--sand); }
.social-link svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.38); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.social-link:hover svg { stroke: var(--sand); }

/* --- CONTACT PAGE --- */
.contact-hero { background: var(--noir); padding: clamp(120px,18vw,180px) var(--container-x) clamp(80px,12vw,120px); }
.contact-hero-inner { max-width: var(--content-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.contact-hero h1 { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.08; }
.contact-hero h1 em { font-style: italic; color: var(--sand); }
.contact-hero p { font-size: var(--text-md); color: rgba(255,255,255,0.6); line-height: 1.9; }
.contact-form-section { background: var(--ivory); padding: clamp(60px,10vw,100px) var(--container-x); }
.contact-form-inner { max-width: 800px; margin: 0 auto; }
.form-group { margin-bottom: 36px; }
.form-label { display: block; font-size: var(--text-xxs); letter-spacing: 3px; text-transform: uppercase; color: var(--sienna); margin-bottom: 12px; font-weight: 400; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border);
  padding: 12px 0; font-family: var(--font-sans); font-size: var(--text-base); font-weight: 300;
  color: var(--dark); outline: none; transition: border-color 0.3s ease;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--sienna); }
.form-textarea { resize: none; height: 120px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239B6E55' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; padding-right: 20px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-submit { display: flex; align-items: center; justify-content: space-between; margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); }
.form-note { font-size: var(--text-sm); color: var(--stone); max-width: 320px; line-height: 1.7; }

/* --- ABOUT PAGE --- */
.about-hero { background: var(--noir); padding: clamp(120px,18vw,180px) var(--container-x) clamp(80px,12vw,120px); text-align: center; }
.about-hero h1 { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.08; max-width: 700px; margin: 0 auto; }
.about-hero h1 em { font-style: italic; color: var(--sand); }
.about-story { background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-img { position: relative; overflow: hidden; }
.about-story-img img { width: 100%; height: 640px; object-fit: cover; object-position: center 10%; }
.about-story-text h2 { font-family: var(--font-serif); font-size: var(--text-3xl); font-weight: 300; color: var(--dark); line-height: 1.2; margin-bottom: 28px; }
.about-story-text h2 em { font-style: italic; color: var(--sienna); }
.about-story-text p { font-size: var(--text-md); color: var(--muted); line-height: 1.95; margin-bottom: 18px; }
.about-values { background: var(--cream); }
.about-values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); }
.about-value { background: var(--cream); padding: clamp(36px,4vw,52px); transition: background 0.4s; }
.about-value:hover { background: var(--white); }
.about-value h3 { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 300; color: var(--dark); margin-bottom: 14px; }
.about-value h3 em { font-style: italic; color: var(--sienna); }
.about-value p { font-size: var(--text-sm); color: var(--muted); line-height: 1.9; }

/* --- DESTINATIONS PAGE --- */
.dest-page-hero { background: var(--noir); padding: clamp(120px,18vw,180px) var(--container-x) clamp(80px,12vw,120px); }
.dest-page-hero-inner { max-width: var(--content-w); margin: 0 auto; }
.dest-page-hero h1 { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.08; max-width: 600px; }
.dest-page-hero h1 em { font-style: italic; color: var(--sand); }
.dest-page-hero p { font-size: var(--text-md); color: rgba(255,255,255,0.6); line-height: 1.9; max-width: 480px; margin-top: 24px; }
.dest-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.dest-full-card { position: relative; overflow: hidden; height: 440px; }
.dest-full-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-elegant); }
.dest-full-card:hover .dest-full-card-img { transform: scale(1.06); }
.dest-full-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%); }
.dest-full-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; }
.dest-full-card-region { font-size: 0.54rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--champagne); display: block; margin-bottom: 7px; }
.dest-full-card-name { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 400; color: var(--white); display: block; margin-bottom: 8px; }
.dest-full-card-explore { font-size: 0.54rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sand); opacity: 0; transform: translateY(8px); transition: opacity 0.35s, transform 0.35s; display: block; }
.dest-full-card:hover .dest-full-card-explore { opacity: 1; transform: translateY(0); }

/* --- JOURNAL PAGE --- */
.journal-page-hero { background: var(--noir); padding: clamp(120px,18vw,180px) var(--container-x) clamp(80px,12vw,120px); text-align: center; }
.journal-page-hero h1 { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.08; }
.journal-page-hero h1 em { font-style: italic; color: var(--sand); }
.journal-page-hero p { font-size: var(--text-md); color: rgba(255,255,255,0.6); line-height: 1.9; max-width: 480px; margin: 24px auto 0; }
.journal-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.journal-full-card { background: var(--white); overflow: hidden; }
.journal-full-card-img { height: 280px; overflow: hidden; }
.journal-full-card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.8s var(--ease-elegant); }
.journal-full-card:hover .journal-full-card-img img { transform: scale(1.06); }
.journal-full-card-body { padding: 28px; }
.journal-full-card-category { font-size: 0.54rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sienna); display: block; margin-bottom: 10px; }
.journal-full-card h2 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--dark); line-height: 1.3; margin-bottom: 12px; }
.journal-full-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.85; margin-bottom: 16px; }

/* --- GSAP INIT STATES --- */
.fade-up { opacity: 0; transform: translateY(38px); }
.fade-left { opacity: 0; transform: translateX(-38px); }
.fade-right { opacity: 0; transform: translateX(38px); }
.fade-in { opacity: 0; }
.scale-in { opacity: 0; transform: scale(0.95); }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .exp-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .dest-full-grid { grid-template-columns: repeat(2,1fr); }
  .journal-full-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 960px) {
  .nav-center { display: none; }
  .nav-hamburger { display: flex; }
  .promise-grid { grid-template-columns: 1fr; gap: 36px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card { height: 240px; }
  .dest-card:first-child { grid-column: 1/3; grid-row: auto; height: 320px; }
  .process-header { grid-template-columns: 1fr; gap: 24px; }
  .exp-header { grid-template-columns: 1fr; gap: 24px; }
  .exp-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .exp-card-img { height: 240px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card:first-child { grid-row: auto; min-height: 0; }
  .journal-card:first-child .journal-card-img { position: relative; height: 320px; inset: auto; }
  .journal-card:first-child .journal-card-body { position: relative; background: none; }
  .journal-card:first-child h3 { color: var(--dark); font-size: var(--text-xl); }
  .journal-card:first-child p { color: var(--muted); }
  .journal-card:first-child .journal-card-category { color: var(--sienna); }
  .test-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .founders-img { min-height: 420px; }
  .press-quotes-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
  .about-story-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .dest-full-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-content { padding: 0 24px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: auto; }
  .exp-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-scroll-indicator { display: none; }
  .dest-header, .test-header, .journal-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dest-full-grid, .journal-full-grid { grid-template-columns: 1fr; }
  .dest-full-card { height: 320px; }
}
