/* ===== Design Tokens ===== */
:root {
  --ivory:     #fbf4e9;
  --sand:      #f3e7d3;
  --sand-2:    #ece0c8;
  --midnight:  #14102a;
  --night-2:   #1f1840;
  --ink:       #211a13;
  --plum:      #3a1d4d;
  --saffron:   #ff7d29;
  --marigold:  #f6a623;
  --gold:      #e0a64e;
  --terra:     #c1440e;
  --peacock:   #0e8b7e;
  --rose:      #e23e57;
  --muted:     #8a7a64;
  --white:     #fffdf8;

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Plus Jakarta Sans", system-ui, sans-serif;

  --max: 1200px;
  --radius: 18px;
  --shadow: 0 24px 60px -24px rgba(20, 16, 42, 0.45);
  --shadow-sm: 0 10px 30px -14px rgba(20, 16, 42, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
@media (pointer: fine) { * { cursor: none; } }

.container { width: min(var(--max), 90%); margin-inline: auto; }
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.06; color: var(--midnight); }
h2 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); letter-spacing: -0.015em; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--terra);
  margin-bottom: 1rem;
}
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-lead { color: var(--muted); margin-top: 0.85rem; font-size: 1.08rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  background: var(--midnight);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--midnight);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--saffron), var(--marigold));
  transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn:hover { color: var(--midnight); border-color: var(--saffron); transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(255,125,41,.6); }
.btn:hover::before { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ivory); border-color: rgba(251,244,233,.5); }
.btn-ghost::before { background: var(--ivory); }
.btn-ghost:hover { color: var(--midnight); border-color: var(--ivory); box-shadow: none; }
.btn-sm { padding: 0.62rem 1.25rem; font-size: 0.82rem; }
.btn-full { width: 100%; margin-top: 0.5rem; }

/* ===== Loader ===== */
.loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--midnight); color: var(--ivory);
  display: grid; place-content: center; text-align: center;
  transition: transform .9s var(--ease), opacity .6s ease;
}
.loader.done { transform: translateY(-100%); }
.loader-inner { position: relative; }
.loader-mark { font-size: 2.4rem; color: var(--marigold); display: block; animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loader-count { font-family: var(--serif); font-size: clamp(3rem, 12vw, 6rem); line-height: 1; margin-top: .4rem; }
.loader-count i { font-style: normal; font-size: .35em; color: var(--marigold); vertical-align: super; }
.loader-word { display: flex; gap: .1em; justify-content: center; font-family: var(--serif); letter-spacing: .12em; text-transform: uppercase; font-size: .9rem; margin-top: .6rem; overflow: hidden; }
.loader-word span { transform: translateY(110%); animation: loaderWord .8s var(--ease) forwards; }
.loader-word span:nth-child(2){ animation-delay:.08s; } .loader-word span:nth-child(3){ animation-delay:.16s; }
@keyframes loaderWord { to { transform: none; } }
.loader-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(251,244,233,.15); }
.loader-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--saffron), var(--marigold)); }

/* ===== Custom cursor ===== */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 900; mix-blend-mode: difference; }
.cursor { width: 38px; height: 38px; border: 1.5px solid var(--ivory); transform: translate(-50%,-50%); transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease); }
.cursor-dot { width: 6px; height: 6px; background: var(--ivory); transform: translate(-50%,-50%); }
.cursor.hover { width: 64px; height: 64px; background: rgba(251,244,233,.12); }
@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ===== Scroll progress ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 800; background: linear-gradient(90deg, var(--saffron), var(--marigold), var(--peacock)); }

/* ===== Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 1rem 0;
}
.site-header.scrolled {
  background: rgba(251,244,233,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(20,16,42,.08);
  padding: 0.55rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--serif); font-size: 1.55rem; font-weight: 600; color: var(--midnight); }
.brand-mark { font-size: 1.25rem; color: var(--saffron); animation: spin 9s linear infinite; }
.brand-text em { font-style: italic; color: var(--terra); }

.site-header:not(.scrolled) .brand,
.site-header:not(.scrolled) .nav a { color: var(--ivory); }
.site-header:not(.scrolled) .brand-text em { color: var(--marigold); }

.nav { display: flex; gap: 2.2rem; }
.nav a { font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em; position: relative; padding: .2rem 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--saffron); transition: width .35s var(--ease); }
.nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ivory); transition: .3s var(--ease); }
.site-header.scrolled .nav-toggle span { background: var(--midnight); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: grid; align-items: center;
  color: var(--ivory);
  overflow: hidden;
  background: linear-gradient(180deg, #2a1330 0%, #45203f 38%, #7a2e3a 68%, #b6502a 100%);
}
.hero-scene { position: absolute; inset: 0; z-index: 0; }
.hero-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 72% 28%, rgba(255,196,120,.55), transparent 60%),
    radial-gradient(120% 80% at 50% 120%, rgba(20,16,42,.55), transparent 60%);
}
.hero-sun {
  position: absolute; top: 22%; right: 16%;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, #ffe7b0 0%, #ffb347 45%, rgba(255,140,60,0) 72%);
  filter: blur(2px);
  box-shadow: 0 0 120px 40px rgba(255,180,90,.4);
}
.hero-birds { position: absolute; top: 30%; left: 18%; display: flex; gap: 1.2rem; color: rgba(20,16,42,.45); font-size: 1.4rem; }
.hero-birds span { animation: flap 3.5s ease-in-out infinite; }
.hero-birds span:nth-child(2){ animation-delay:.4s; transform: translateY(-12px) scale(.8);} .hero-birds span:nth-child(3){ animation-delay:.8s; transform: translateY(6px) scale(.7);}
@keyframes flap { 0%,100% { transform: translateY(0) scaleX(1);} 50% { transform: translateY(-8px) scaleX(.85);} }
.hero-layer { position: absolute; left: 0; width: 100%; }
.hero-hills { bottom: 0; height: 46vh; fill: #5e2740; opacity: .9; }
.hero-palace { bottom: 0; height: 38vh; fill: #3a1a32; }
.hero-palace path, .hero-palace rect, .hero-palace circle { fill: #3a1a32; }
.hero-fore { bottom: 0; height: 22vh; fill: #20122a; }
.hero-grain {
  position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; max-width: 880px; padding-top: 5rem; }
.hero .eyebrow { color: var(--marigold); }
.hero-title { font-size: clamp(3rem, 9vw, 6.6rem); font-weight: 600; letter-spacing: -0.025em; color: var(--ivory); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .accent { font-style: italic; color: var(--marigold); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.32rem); color: rgba(251,244,233,.85); max-width: 46ch; margin: 1.6rem 0 2.4rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* hero search */
.hero-search {
  margin-top: 2.6rem; max-width: 760px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: .4rem;
  background: rgba(251,244,233,.12);
  border: 1px solid rgba(251,244,233,.25);
  backdrop-filter: blur(12px);
  padding: .6rem; border-radius: 18px;
}
.hs-field { display: grid; padding: .4rem .8rem; border-radius: 12px; transition: background .3s var(--ease); }
.hs-field:hover { background: rgba(251,244,233,.1); }
.hs-field label { font-size: .66rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(251,244,233,.7); margin-bottom: .15rem; }
.hs-field select, .hs-field input {
  background: transparent; border: 0; color: var(--ivory);
  font-family: var(--sans); font-size: .95rem; font-weight: 500;
}
.hs-field select option { color: var(--ink); }
.hs-field input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .6; }
.hs-go { white-space: nowrap; }

.hero-scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(251,244,233,.6); z-index: 2;
}
.hero-scroll::after { content: ""; display: block; width: 1px; height: 38px; margin: .6rem auto 0; background: linear-gradient(rgba(251,244,233,.6), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity:.3; transform: scaleY(.7);} 50% { opacity:1; transform: scaleY(1);} }

/* ===== Marquee ===== */
.marquee { background: var(--midnight); color: var(--ivory); padding: 1.1rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 2.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--marigold); white-space: nowrap; }
.marquee-track span.dot { color: rgba(251,244,233,.4); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-media { position: relative; min-height: 480px; }
.reveal-img { position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img { background-size: cover; background-position: center; width: 100%; height: 100%; transition: transform 1.4s var(--ease); }
.reveal-img:hover .about-img { transform: scale(1.06); }
.reveal-img:nth-child(1) { width: 70%; height: 80%; top: 0; left: 0; }
.reveal-img.delay { width: 54%; height: 58%; bottom: 0; right: 0; border: 6px solid var(--ivory); }
.about-img-1 { background-image: linear-gradient(180deg, rgba(20,16,42,.1), rgba(20,16,42,.1)), url("https://images.unsplash.com/photo-1477587458883-47145ed94245?auto=format&fit=crop&w=900&q=80"); }
.about-img-2 { background-image: url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=800&q=80"); }
.about-badge {
  position: absolute; top: 4%; right: 2%;
  background: var(--peacock); color: var(--ivory);
  width: 118px; height: 118px; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow); z-index: 3;
}
.about-badge strong { font-family: var(--serif); font-size: 2.4rem; line-height: 1; }
.about-badge span { font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; margin-top: .2rem; }
.about-text h2 { margin: .4rem 0 1.2rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; max-width: 48ch; }
.about-list { margin: 1.6rem 0; display: grid; gap: .7rem; }
.about-list li { position: relative; padding-left: 1.7rem; color: var(--ink); }
.about-list li::before { content: "✦"; position: absolute; left: 0; color: var(--saffron); }
.link-arrow { font-weight: 600; color: var(--midnight); border-bottom: 1.5px solid var(--saffron); padding-bottom: 2px; transition: color .3s var(--ease); }
.link-arrow:hover { color: var(--terra); }

/* ===== Destinations ===== */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.dest-card {
  position: relative; min-height: 380px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); color: var(--ivory);
  transform-style: preserve-3d; transition: box-shadow .5s var(--ease);
  background: var(--midnight);
}
.dest-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--img); background-size: cover; background-position: center;
  transition: transform 1s var(--ease); transform: scale(1.05);
}
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,42,0) 30%, rgba(20,16,42,.85) 100%);
}
.dest-card:hover::before { transform: scale(1.14); }
.dest-card:hover { box-shadow: 0 30px 70px -24px rgba(255,125,41,.5); }
.dest-card-inner {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.6rem;
  transform: translateZ(40px);
}
.dest-tag { display: inline-block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--marigold); background: rgba(20,16,42,.4); padding: .3rem .7rem; border-radius: 100px; margin-bottom: .7rem; }
.dest-card h3 { color: var(--ivory); font-size: 1.9rem; }
.dest-card p { color: rgba(251,244,233,.82); font-size: .94rem; margin: .35rem 0 .8rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .5s var(--ease), margin .5s var(--ease); }
.dest-card:hover p { max-height: 80px; opacity: 1; }
.dest-meta { font-size: .82rem; color: var(--marigold); font-weight: 600; letter-spacing: .02em; }

/* ===== Packages ===== */
.pkg { background: var(--sand); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.pkg-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pkg-img { height: 220px; position: relative; background-size: cover; background-position: center; }
.pkg-img-1 { background-image: url("https://images.unsplash.com/photo-1477587458883-47145ed94245?auto=format&fit=crop&w=900&q=80"); }
.pkg-img-2 { background-image: url("https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?auto=format&fit=crop&w=900&q=80"); }
.pkg-img-3 { background-image: url("https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?auto=format&fit=crop&w=900&q=80"); }
.pkg-badge { position: absolute; top: 1rem; left: 1rem; background: var(--saffron); color: var(--midnight); font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: .35rem .8rem; border-radius: 100px; }
.pkg-body { padding: 1.5rem; }
.pkg-rating { font-size: .82rem; color: var(--terra); font-weight: 700; margin-bottom: .5rem; }
.pkg-rating i { font-style: normal; color: var(--muted); font-weight: 400; }
.pkg-body h3 { font-size: 1.5rem; }
.pkg-body > p { color: var(--muted); font-size: .94rem; margin: .5rem 0 1rem; }
.pkg-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }
.pkg-meta li { font-size: .76rem; background: var(--sand-2); color: var(--ink); padding: .3rem .7rem; border-radius: 100px; }
.pkg-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--sand-2); }
.pkg-price { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--midnight); }
.pkg-price i { font-style: normal; font-size: .6rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); display: block; }
.pkg-price small { font-size: .6rem; color: var(--muted); font-weight: 400; }
.pkg-cta { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; text-align: center; }
.pkg-cta span { color: var(--muted); }

/* ===== Feature / Stats ===== */
.feature { background: var(--midnight); color: var(--ivory); padding: clamp(3.5rem, 8vw, 6rem) 0; position: relative; overflow: hidden; }
.feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 80% 0%, rgba(255,125,41,.18), transparent 60%); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; position: relative; }
.feature-num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--marigold); display: inline-flex; align-items: baseline; }
.feature-num i { font-style: normal; font-size: .5em; }
.feature-item h4 { color: var(--ivory); font-size: 1.15rem; margin: .4rem 0 .5rem; font-family: var(--sans); font-weight: 600; }
.feature-item p { color: rgba(251,244,233,.7); max-width: 24ch; margin-inline: auto; font-size: .9rem; }

/* ===== Experiences ===== */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.exp-item { padding: 2rem 1.8rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--sand-2); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.exp-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--saffron); }
.exp-ico { font-size: 2rem; display: inline-block; transition: transform .45s var(--ease); }
.exp-item:hover .exp-ico { transform: scale(1.2) rotate(-6deg); }
.exp-item h4 { font-size: 1.35rem; margin: .8rem 0 .4rem; }
.exp-item p { color: var(--muted); font-size: .92rem; }

/* ===== Steps ===== */
.steps { background: var(--sand); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step-no { font-family: var(--serif); font-size: 3.4rem; color: var(--saffron); opacity: .35; line-height: 1; }
.step h4 { font-size: 1.5rem; margin: .4rem 0 .6rem; }
.step p { color: var(--muted); max-width: 32ch; }

/* ===== Voices ===== */
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.voice { background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1.4rem; }
.voice blockquote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.45; color: var(--ink); }
.voice figcaption { display: flex; align-items: center; gap: .9rem; }
.v-av { width: 46px; height: 46px; border-radius: 50%; background-size: cover; background-position: center; flex: none; }
.v-av-1 { background-image: url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=200&q=80"); }
.v-av-2 { background-image: url("https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=200&q=80"); }
.v-av-3 { background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=200&q=80"); }
.voice figcaption strong { display: block; font-size: .95rem; color: var(--midnight); }
.voice figcaption i { font-style: normal; font-size: .8rem; color: var(--terra); }

/* ===== Plan ===== */
.plan { background: var(--midnight); color: var(--ivory); }
.plan h2, .plan .eyebrow { color: var(--ivory); }
.plan .eyebrow { color: var(--marigold); }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.plan-lead { color: rgba(251,244,233,.78); margin: .8rem 0 2rem; max-width: 40ch; }
.plan-details { display: grid; gap: 1.5rem; margin-bottom: 2rem; }
.plan-details dt { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--marigold); margin-bottom: .35rem; }
.plan-details dd { font-size: 1.05rem; color: rgba(251,244,233,.9); }
.plan .socials { display: flex; gap: 1.4rem; }
.plan .socials a { font-size: .85rem; color: rgba(251,244,233,.85); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); padding-bottom: 2px; }
.plan .socials a:hover { border-color: var(--saffron); }

.plan-form { background: var(--ivory); color: var(--ink); padding: clamp(1.8rem, 4vw, 2.6rem); border-radius: var(--radius); box-shadow: var(--shadow); }
.plan-form h3 { font-size: 1.8rem; margin-bottom: 1.4rem; color: var(--midnight); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; font-family: var(--sans); font-size: .95rem;
  background: var(--white); border: 1px solid var(--sand-2); border-radius: 10px; color: var(--ink); resize: vertical;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(255,125,41,.15); }
.form-note { margin-top: 1rem; color: var(--peacock); font-weight: 600; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--midnight); color: var(--ivory); padding-top: 0; overflow: hidden; }
.footer-big { overflow: hidden; border-bottom: 1px solid rgba(251,244,233,.1); padding: 2.5rem 0; }
.footer-big span { display: inline-block; white-space: nowrap; font-family: var(--serif); font-style: italic; font-size: clamp(3rem, 11vw, 8rem); color: rgba(251,244,233,.08); will-change: transform; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: 3rem 0 2.5rem; border-bottom: 1px solid rgba(251,244,233,.1); }
.footer-brand { display: grid; gap: .5rem; font-family: var(--serif); font-size: 1.55rem; }
.footer-brand .brand-mark { font-size: 1.4rem; color: var(--saffron); }
.footer-brand .brand-text em { font-style: italic; color: var(--marigold); }
.footer-brand p { font-family: var(--sans); font-size: .9rem; color: rgba(251,244,233,.6); }
.footer-links { display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap; }
.footer-links a { font-size: .92rem; color: rgba(251,244,233,.8); transition: color .3s var(--ease); }
.footer-links a:hover { color: var(--marigold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 0 2rem; font-size: .8rem; color: rgba(251,244,233,.5); }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
@media (pointer: coarse) {
  .whatsapp-float { cursor: pointer; }
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  z-index: -1;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .45; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ===== Animation utilities ===== */
[data-fade] { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-fade].in { opacity: 1; transform: none; }
[data-word] { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease); }
.hero-title.in [data-word] { transform: none; }
[data-lines] { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-lines].in { opacity: 1; transform: none; }
.reveal-img { opacity: 0; transform: translateY(40px) scale(.96); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal-img.delay { transition-delay: .15s; }
.about-media.in .reveal-img { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .dest-grid, .pkg-grid, .exp-grid, .steps-grid, .voices-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 900px) {
  .about-grid, .plan-grid { grid-template-columns: 1fr; }
  .about-media { min-height: 420px; max-width: 480px; }
  .hero-search { grid-template-columns: 1fr 1fr; }
  .hs-go { grid-column: span 2; }
}
@media (max-width: 640px) {
  .nav, .site-header .btn-sm { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; gap: 1.2rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); padding: 1.6rem 5%; box-shadow: var(--shadow);
  }
  .nav.open a { color: var(--midnight); }
  .dest-grid, .pkg-grid, .exp-grid, .steps-grid, .voices-grid, .feature-grid { grid-template-columns: 1fr; }
  .hero-search { grid-template-columns: 1fr; }
  .hs-go { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; transition: none !important; }
  [data-fade], [data-lines], [data-word], .reveal-img { opacity: 1 !important; transform: none !important; }
}
