:root{
--bg: #ffffff;
--ink: #141414;
--muted: #6f6a60;
--gold: #c9a45b;
--gold2:#e0c27a;
--line: rgba(20,20,20,.10);
--card: rgba(255,255,255,.92);
--shadow: 0 18px 55px rgba(0,0,0,.12);

--radius: 18px;
--radius2: 26px;

--fontH: "Playfair Display", serif;
--fontB: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; scroll-behavior:smooth; }
body{
font-family: var(--fontB);
background: var(--bg);
color: var(--ink);
line-height:1.6;
}

.container{ width:min(1120px, 92%); margin:0 auto; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.muted{ color: var(--muted); }
.small{ font-size:.92rem; }

.section-label{
letter-spacing:.18em;
text-transform: uppercase;
font-size:.78rem;
color: rgba(201,164,91,.95);
margin:0 0 10px;
}

h1,h2,h3,h4{ font-family: var(--fontH); margin: 0 0 10px; }
h1{ font-size: clamp(2.2rem, 4vw, 3.5rem); line-height:1.05; color:#fff; }
h2{ font-size: clamp(1.7rem, 3vw, 2.35rem); line-height:1.12; }
h3{ font-size: 1.25rem; }
h4{ font-size: 1.05rem; }

/* NAVBAR overlay */
.navbar{
position: fixed;
top:0; left:0; right:0;
z-index: 100;
transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
background: transparent;
}
.navbar.scrolled{
background: rgba(255,255,255,.92);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--line);
box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.nav-inner{
display:flex;
align-items:center;
justify-content:space-between;
padding: 16px 0;
gap: 16px;
}

.brand{
display:flex;
align-items:center;
gap: 12px;
font-weight:600;
}
.brand-mark{
width:42px; height:42px;
display:grid; place-items:center;
border-radius: 14px;
background: linear-gradient(180deg, rgba(201,164,91,.25), rgba(201,164,91,.08));
border: 1px solid rgba(201,164,91,.35);
color: rgba(224,194,122,.98);
font-family: var(--fontH);
letter-spacing:.04em;
}
.brand-name{
font-family: var(--fontH);
font-size: 1.06rem;
letter-spacing:.2px;
}
.navbar:not(.scrolled) .brand-name{ color:#fff; }
.navbar.scrolled .brand-name{ color: var(--ink); }

.nav-links{
display:flex;
align-items:center;
gap: 18px;
}
.nav-link{
font-size:.95rem;
font-weight:500;
opacity:.92;
transition: opacity .2s ease, transform .2s ease;
}
.navbar:not(.scrolled) .nav-link{ color:#fff; }
.navbar.scrolled .nav-link{ color: var(--ink); }

.nav-link:hover{ opacity:1; transform: translateY(-1px); }

.nav-cta{
padding: 10px 14px;
border-radius: 999px;
border: 1px solid rgba(201,164,91,.45);
background: rgba(201,164,91,.10);
font-weight:600;
}
.navbar:not(.scrolled) .nav-cta{ color:#fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); }
.navbar.scrolled .nav-cta{ color: var(--ink); }

.nav-toggle{
display:none;
width:44px; height:44px;
background: transparent;
border: 1px solid rgba(255,255,255,.35);
border-radius: 12px;
padding: 10px;
}
.navbar.scrolled .nav-toggle{ border-color: var(--line); }
.nav-toggle span{
display:block;
height:2px;
background: rgba(255,255,255,.88);
margin: 5px 0;
}
.navbar.scrolled .nav-toggle span{ background: rgba(20,20,20,.85); }

/* Dropdown (desktop hover + mobile tap-friendly) */
.dropdown{ position:relative; }

.dropbtn{
background: transparent;
border:none;
font-size:.95rem;
font-weight:500;
cursor:pointer;
padding: 10px 6px;
display:flex;
align-items:center;
gap:8px;
opacity:.92;
}
.navbar:not(.scrolled) .dropbtn{ color:#fff; }
.navbar.scrolled .dropbtn{ color: var(--ink); }
.dropbtn:hover{ opacity:1; }

/* Menu */
.dropdown-content{
position:absolute;
top: calc(100% + 10px);
left: 0;
min-width: 240px;
background: rgba(255,255,255,.96);
border: 1px solid var(--line);
border-radius: 16px;
box-shadow: var(--shadow);
padding: 10px;
z-index: 50;

/* hidden state */
opacity: 0;
visibility: hidden;
transform: translateY(8px);
transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

/* show on hover (desktop) + keyboard */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content{
opacity: 1;
visibility: visible;
transform: translateY(0);
}

/* Invisible hover bridge (prevents flicker) */
.dropdown-content::before{
content:"";
position:absolute;
left:0;
right:0;
top:-14px;
height:14px;
}

/* Links */
.dropdown-content a{
display:block;
padding: 10px 10px;
border-radius: 12px;
color: var(--ink);
}
.dropdown-content a:hover{ background: rgba(0,0,0,.04); }

.sep{ height:1px; background: var(--line); margin: 6px 0; }
.chev{ opacity:.85; }

/* HERO */
.hero{
position:relative;
height: 92vh;
min-height: 720px;
overflow:hidden;
display: flex;
align-items: flex-start; /* keeps content from vertical centering */
}
.hero-slides img{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit: cover;
opacity:0;
transform: scale(1.03);
transition: opacity 1.6s ease, transform 7s ease;
}
.hero-slides img.active{
opacity:1;
transform: scale(1.07);
}
.hero-overlay{
position:absolute; inset:0;
background:
linear-gradient(90deg, rgba(0,0,0,.38), rgba(0,0,0,.12) 55%, rgba(0,0,0,.38)),
linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.10) 40%, rgba(0,0,0,.35));
}

.hero-content{
position: relative;
z-index: 2;

/* Vertical spacing */
padding-top: 140px;

/* 🔑 Horizontal positioning (LEFT but not edge-hugging) */
padding-left: clamp(18px, 4vw, 64px);

max-width: 720px;
margin-left: 0;
margin-right: auto;

color: #fff;
text-align: left;
}

.eyebrow{
letter-spacing:.18em;
text-transform: uppercase;
font-size:.78rem;
opacity:.9;
margin-bottom: 14px;
}
.hero-sub{
font-size: 1.06rem;
opacity:.94;
max-width: 64ch;
}

.hero-meta{
display:flex;
flex-wrap:wrap;
gap:10px;
margin: 18px 0 26px;
}
.meta-pill{
padding: 8px 12px;
border-radius: 999px;
border: 1px solid rgba(255,255,255,.22);
background: rgba(255,255,255,.10);
font-size:.88rem;
}

.hero-buttons{ display:flex; gap: 12px; margin-top: 10px; flex-wrap:wrap; }

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding: 12px 18px;
border-radius: 999px;
font-weight:600;
font-size:.95rem;
border: 1px solid transparent;
transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn:active{ transform: translateY(0px); }

.gold{
background: linear-gradient(180deg, rgba(224,194,122,.98), rgba(201,164,91,.95));
color:#1a1407;
}
.ghost{
background: rgba(255,255,255,.10);
border-color: rgba(255,255,255,.25);
color:#fff;
}

.hero-scroll{
margin-top: 22px;
font-size:.9rem;
opacity:.85;
animation: floaty 2.6s ease-in-out infinite;
}
@keyframes floaty{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(6px); } }

/* BRAND + VALUE CARDS */
.brand-section{ padding: 90px 0 30px; }
.brand-grid{
display:grid;
grid-template-columns: 1.05fr .95fr;
gap: 34px;
align-items:center;
}
.brand-image img{
border-radius: var(--radius2);
border: 1px solid var(--line);
box-shadow: var(--shadow);
aspect-ratio: 4/5;
object-fit: cover;
}
.value-grid{
display:grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 16px;
margin-top: 28px;
}
.value-card{
border: 1px solid var(--line);
background: rgba(255,255,255,.92);
border-radius: 16px;
padding: 16px;
box-shadow: 0 18px 40px rgba(0,0,0,.06);
transition: transform .15s ease, box-shadow .15s ease;
}
.value-card:hover{ transform: translateY(-2px); box-shadow: 0 22px 50px rgba(0,0,0,.10); }

/* Brand section CTA */
.brand-cta{
margin-top: 18px;
display: inline-flex;
width: fit-content;
border-color: rgba(201,164,91,.55);
color: var(--gold);
}

.brand-cta:hover{
background: rgba(201,164,91,.10);
box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* SECTION HEAD */
.section-head{
display:flex;
align-items:flex-end;
justify-content:space-between;
gap:16px;
margin-bottom: 22px;
}
.text-link{
color: rgba(201,164,91,.98);
font-weight:600;
}
.text-link:hover{ text-decoration: underline; }

/* FEATURED CARDS */
.featured-section{ padding: 80px 0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.00)); }
.cards-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.trip-card{
border: 1px solid var(--line);
border-radius: var(--radius);
overflow:hidden;
box-shadow: 0 18px 45px rgba(0,0,0,.10);
background: #fff;
transition: transform .16s ease, box-shadow .16s ease;
}
.trip-card:hover{ transform: translateY(-3px); box-shadow: 0 26px 60px rgba(0,0,0,.14); }
.trip-card img{
width:100%;
height: 210px; /* forces equal image height */
object-fit: cover;
}
.card-body{ padding: 16px 16px 18px; }
.tag{
display:inline-block;
font-size:.78rem;
letter-spacing:.08em;
text-transform: uppercase;
color: rgba(201,164,91,.98);
margin-bottom: 10px;
}
.card-cta{
display:inline-block;
margin-top: 12px;
color: rgba(201,164,91,.98);
font-weight: 700;
}
.card-cta:hover{ text-decoration: underline; }

/* REVIEWS */
.reviews-section{ padding: 80px 0; text-align:center; background: rgba(0,0,0,.02); }
.reviews-grid{
display:grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
margin-top: 26px;
}
.review-card{
border: 1px solid var(--line);
border-radius: var(--radius);
background: rgba(255,255,255,.94);
padding: 18px;
box-shadow: 0 18px 45px rgba(0,0,0,.08);
}
.avatar{
width: 56px; height: 56px;
border-radius: 999px;
object-fit: cover;
border: 1px solid rgba(0,0,0,.08);
margin: 0 auto 10px;
}
.stars{
color: rgba(201,164,91,.98);
letter-spacing: .12em;
margin-bottom: 10px;
}
.name{ display:block; margin-top: 10px; color: rgba(20,20,20,.75); font-weight:600; }

/* Reviews section CTA spacing */
.reviews-section .text-link{
display: inline-block;
margin-top: 36px; /* pushes CTA down from review cards */
font-weight: 600;
color: rgba(201,164,91,.98);
}

/* BLOG */
.blog-section{ padding: 80px 0; }
.blog-grid{
display:grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}
.blog-card{
border: 1px solid var(--line);
border-radius: var(--radius);
overflow:hidden;
background:#fff;
box-shadow: 0 18px 45px rgba(0,0,0,.10);
transition: transform .16s ease, box-shadow .16s ease;
}
.blog-card:hover{ transform: translateY(-3px); box-shadow: 0 26px 60px rgba(0,0,0,.14); }
.blog-card img{
width:100%;
height: 190px; /* consistent image size */
object-fit: cover;
}

/* FINAL HERO */
.final-hero{
position: relative;
padding: 110px 0;
color: #fff;

background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.final-overlay{
position: absolute;
inset: 0;
background: rgba(0,0,0,.35); /* slightly lighter than .45 */
}

.final-content{
position: relative;
z-index: 2;
text-align: center;
max-width: 760px;
margin: 0 auto;
}

/* Center buttons ONLY in final hero */
.final-hero .hero-buttons{
justify-content: center;
}

/* CONTACT */
.contact-section{ padding: 80px 0; background: rgba(0,0,0,.02); }
.contact-grid{
display:grid;
grid-template-columns: 1fr 1fr;
gap: 26px;
align-items:flex-start;
}
.contact-mini{ margin-top: 14px; color: rgba(20,20,20,.75); }
.contact-form{
border: 1px solid var(--line);
background:#fff;
border-radius: var(--radius);
padding: 18px;
box-shadow: 0 18px 45px rgba(0,0,0,.10);
}
label{ display:block; margin-bottom: 12px; }
label span{ display:block; font-weight:600; margin-bottom: 6px; }
input, textarea, select{
width:100%;
border-radius: 12px;
border: 1px solid rgba(20,20,20,.12);
background: #fff;
color: var(--ink);
padding: 12px;
outline:none;
}
input:focus, textarea:focus, select:focus{
border-color: rgba(201,164,91,.70);
box-shadow: 0 0 0 3px rgba(201,164,91,.18);
}

/* FOOTER (heavy info) */
.footer{
background: #0b0c10;
color: #f5f2ea;
padding: 64px 0 28px;
}
.footer-grid{
display:grid;
grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
gap: 22px;
}
.footer h4{ margin: 0 0 10px; }
.footer a{
display:block;
color: rgba(245,242,234,.76);
padding: 7px 0;
}
.footer a:hover{ color: rgba(224,194,122,.98); }
.footer-cta{ margin-top: 10px; color: rgba(224,194,122,.98) !important; font-weight:700; }
.footer-brand .footer-logo{ display:flex; align-items:center; gap: 12px; margin-bottom: 10px; }

.footer-bottom{
margin-top: 26px;
padding-top: 18px;
border-top: 1px solid rgba(255,255,255,.10);
display:flex;
justify-content:space-between;
align-items:center;
gap: 14px;
flex-wrap:wrap;
}
.footer-social a{ padding-left: 10px; }

/* RESPONSIVE */
@media (max-width: 980px){
.brand-grid{ grid-template-columns: 1fr; }
.brand-image img{ aspect-ratio: 16/10; }
.value-grid{ grid-template-columns: 1fr 1fr; }
.cards-grid, .reviews-grid, .blog-grid{ grid-template-columns: 1fr; }
.contact-grid{ grid-template-columns: 1fr; }
.footer-grid{ grid-template-columns: 1fr 1fr; }

.nav-toggle{ display:block; }
.nav-links{
position:absolute;
right: 4%;
top: 72px;
width: min(92vw, 420px);
background: rgba(255,255,255,.96);
border: 1px solid var(--line);
border-radius: 18px;
box-shadow: var(--shadow);
padding: 12px;
display:none;
flex-direction:column;
align-items:stretch;
gap: 8px;
}
.nav-links.open{ display:flex; }
.navbar:not(.scrolled) .nav-links{ background: rgba(255,255,255,.96); }
.navbar:not(.scrolled) .nav-link, .navbar:not(.scrolled) .dropbtn{ color: var(--ink); }
.dropdown-content{ position:static; display:none; box-shadow:none; margin-top: 6px; }
.dropdown.open .dropdown-content{ display:block; }
}

/* CSS Upgrades */

/* Scroll reveal base */
.reveal{
opacity: 0;
transform: translateY(22px);
transition: opacity .8s ease, transform .8s ease;
}

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

/* Trip & blog image hover */
.journey-card img,
.blog-card img{
transition: transform .6s ease;
}

.journey-card:hover img,
.blog-card:hover img{
transform: scale(1.035);
}

/* Card lift */
.journey-card,
.blog-card{
transition: transform .4s ease, box-shadow .4s ease;
}

.journey-card:hover,
.blog-card:hover{
transform: translateY(-6px);
box-shadow: 0 30px 60px rgba(0,0,0,.14);
}


/* Nav hover underline */
.navbar nav a{
position: relative;
}

.navbar nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background: var(--gold);
transition: width .3s ease;
}

/* Nav typography consistency */
.nav-links a,
.dropbtn,
.nav-cta{
font-family: var(--fontB);
font-size: 0.95rem;
font-weight: 500;
letter-spacing: 0;
}

.navbar nav a:hover::after{
width:100%;
}

.btn{
transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover{
transform: translateY(-2px);
box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.chev{
font-size: 0.9em;
line-height: 1;
}

/* MOBILE NAV: force identical typography for links + dropdown buttons + CTA */
@media (max-width: 980px){
.nav-links a,
.nav-links .dropbtn,
.nav-links .nav-cta{
font-family: var(--fontB);
font-size: 0.95rem;
font-weight: 500;
line-height: 1.2;
letter-spacing: 0;
}

/* Make dropdown button behave like a full-width nav link */
.nav-links .dropbtn{
width: 100%;
justify-content: space-between;
padding: 10px 10px; /* match link padding */
}

/* Make normal links match the same padding */
.nav-links a{
padding: 10px 10px;
border-radius: 12px;
}

/* When dropdown is open, keep the button styling identical (no growth) */
.dropdown.open .dropbtn{
font-size: 0.95rem;
font-weight: 500;
}

/* Dropdown menu inside mobile nav */
.dropdown-content a{
font-size: 0.95rem;
line-height: 1.2;
padding: 10px 10px;
}
}

/* =====================================================
FINAL PERFORMANCE PATCH — DO NOT EDIT ABOVE STYLES
This keeps ALL design, removes lag only
===================================================== */

/* Disable heavy hero zoom (keeps fade, removes stutter) */
.hero-slides img{
transform: none !important;
transition: opacity 1.6s ease !important;
will-change: opacity;
}

.hero-slides img.active{
transform: none !important;
}

/* Force mobile nav text consistency (prevents font jump) */
@media (max-width: 980px){
.nav-links a,
.nav-links .dropbtn,
.nav-links .nav-cta{
font-size: 0.95rem !important;
font-weight: 500 !important;
line-height: 1.2;
}
}

/* =========================================
LAUNCH NAV PATCH (Luxe Solo + Plan a Trip)
Paste at the very bottom of main.css
========================================= */

/* Keep navbar truly transparent on hero; only add border/shadow when scrolled */
.navbar{
  border-bottom: none;
  box-shadow: none;
}

.navbar.scrolled{
  border-bottom: 1px solid rgba(20,20,20,.10);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

/* Make nav items align perfectly */
.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
}

/* Underline only on normal nav links (NOT the CTA button) */
.nav-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 6px;
}

/* Remove underline effect from “all nav a” rule you had */
.navbar nav a::after{ content:none; }

/* Add underline only for .nav-link */
.nav-link::after{
  content:"";
  position:absolute;
  left:6px;
  right:6px;
  bottom:3px;
  height:2px;
  width:0;
  background: var(--gold);
  transition: width .3s ease;
}

.nav-link:hover::after{
  width: calc(100% - 12px);
}

/* Make CTA sit inline with links */
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  line-height: 1;
}

/* MOBILE MENU: consistent spacing, no “jump”, no odd alignment */
@media (max-width: 980px){
  .nav-links{
    position:absolute;
    right: 4%;
    top: 72px;
    width: min(92vw, 420px);
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
  }

  .nav-links.open{ display:flex; }

  /* Make every item the same height/feel */
  .nav-link,
  .nav-cta{
    width: 100%;
    justify-content: flex-start;
    padding: 12px 12px;
    border-radius: 12px;
  }

  /* CTA can stay “button-ish” but aligned */
  .nav-cta{
    justify-content: center;
  }

  /* Remove underline on mobile (cleaner) */
  .nav-link::after{ display:none; }
}


.form-message {
  margin: 16px 0 10px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  display: none;
}

.form-message.success,
.form-message.error {
  display: block;
}

.form-message.success {
  background: rgba(201, 164, 91, 0.10);
  border: 1px solid rgba(201, 164, 91, 0.35);
  color: #3a3123;
}

.form-message.error {
  background: rgba(180, 60, 60, 0.08);
  border: 1px solid rgba(180, 60, 60, 0.28);
  color: #7a2d2d;
}

.contact-mini a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 164, 91, 0.4);
  transition: all 0.2s ease;
}

.contact-mini a:hover {
  border-bottom-color: rgba(201, 164, 91, 1);
  color: #c9a45b;
}