/* =========================================================
   Lion Crest Expeditions — "Golden Hour" design
   Colours: ivory / ochre / umber.  Fonts: DM Serif Display + Manrope
   ========================================================= */
:root{
  --ivory:#F7F0E4;          /* page background + light text on dark */
  --cream:#F7F0E4;
  --cream-2:#EFE4D0;        /* alternate section background */
  --paper:#FFFBF4;
  --ink:#241A12;            /* main text */
  --ink-mute:#6A5A49;       /* secondary text (5.8:1 on ivory) */
  --stone:#E6D9C4;          /* secondary text on dark */
  --umber:#2A1E16;          /* dark sections */
  --umber-2:#3A2B20;
  --onyx:#2A1E16; --onyx-2:#3A2B20;
  --ochre:#B8742A;          /* accent: fills, lines, large text */
  --ochre-lt:#E0A45E;       /* accent on dark backgrounds (7.4:1) */
  --gold-soft:#F3C27A;
  --brass:#8A5217;          /* accent for small text on light backgrounds (5.6:1) */
  --brass-dim:#B8742A;
  --oxblood:#A1321F;
  --line:rgba(184,116,42,0.28);
  --line-light:rgba(36,26,18,0.13);
  --line-dark:rgba(247,240,228,0.16);
  --f-display:'DM Serif Display', Georgia, 'Times New Roman', serif;
  --f-body:'Manrope', 'Segoe UI', Tahoma, 'Helvetica Neue', Arial, sans-serif;
  --radius:20px;
  --header-h:88px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:calc(var(--header-h) + 12px);}
body{background:var(--ivory); color:var(--ink); font-family:var(--f-body); font-weight:400; line-height:1.6; overflow-x:hidden; -webkit-font-smoothing:antialiased;}
h1,h2,h3,.serif{font-family:var(--f-display); font-weight:400; letter-spacing:0; line-height:1.08;}
h4{font-family:var(--f-body);}
a{color:inherit; text-decoration:none;}
img{display:block; max-width:100%;}
button{font-family:inherit;}
.wrap{max-width:1280px; margin:0 auto; padding:0 40px;}
.topo{display:none;}
.sr-only{position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;}
.hero-pause .sr-only.i-play{display:none;}
.hero-pause.paused .sr-only.i-play{display:inline;}
.hero-pause.paused .sr-only.i-pause{display:none;}
.eyebrow{font-family:var(--f-body); font-size:0.78rem; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:var(--brass);}
:focus-visible{outline:2px solid var(--ochre); outline-offset:3px;}

/* ===== BUTTONS ===== */
.btn-primary{display:inline-flex; align-items:center; justify-content:center; gap:10px; min-height:52px; padding:0 28px; border-radius:999px;
  background:var(--umber); color:var(--ivory); font-size:0.95rem; font-weight:700; letter-spacing:0.01em; border:none; cursor:pointer;
  transition:background 0.25s ease, transform 0.25s ease;}
.btn-primary:hover{background:#4A3627; transform:translateY(-1px);}
.btn-primary::after{content:'→'; font-weight:600;}
html[dir="rtl"] .btn-primary::after{content:'←';}
button.btn-primary::after{content:none;}
.btn-outline{display:inline-flex; align-items:center; gap:10px; min-height:50px; padding:0 26px; border-radius:999px; border:1.5px solid var(--ink);
  color:var(--ink); font-size:0.95rem; font-weight:700; transition:background 0.25s ease, color 0.25s ease;}
.btn-outline:hover{background:var(--ink); color:var(--ivory);}
.btn-ghost{border:1px solid var(--line); padding:14px 28px; border-radius:999px; color:var(--ivory);}

/* ===== HEADER ===== */
header{position:fixed; top:0; left:0; right:0; z-index:100; height:var(--header-h);
  display:flex; align-items:center; justify-content:space-between; gap:24px; padding:0 40px;
  color:var(--ivory); background:linear-gradient(to bottom, rgba(26,16,8,0.55), rgba(26,16,8,0));
  transition:background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;}
header.scrolled, header.nav-open{background:rgba(247,240,228,0.95); color:var(--ink); box-shadow:0 1px 0 var(--line-light);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);}
.brand-mark{display:flex; align-items:center; gap:12px; flex-shrink:0;}
.brand-mark img{height:48px !important; width:auto;}
.brand-wordmark{display:flex; flex-direction:column; line-height:1;}
.brand-wordmark-main{font-family:var(--f-display); font-size:1.6rem; letter-spacing:0.01em; white-space:nowrap;}
.brand-wordmark-sub{font-size:0.62rem; font-weight:700; letter-spacing:0.38em; margin-top:5px; opacity:0.85;}
nav ul{display:flex; gap:30px; list-style:none;}
nav a{font-size:0.93rem; font-weight:600; white-space:nowrap; position:relative; padding:6px 0; opacity:0.92; transition:opacity 0.2s ease;}
nav a::after{content:''; position:absolute; left:0; right:0; bottom:0; height:2px; border-radius:2px; background:var(--ochre); transform:scaleX(0); transform-origin:left; transition:transform 0.25s ease;}
nav a:hover{opacity:1;}
nav a:hover::after{transform:scaleX(1);}
.header-actions{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.nav-cta{display:inline-flex; align-items:center; gap:8px; height:46px; padding:0 22px; border-radius:999px;
  background:var(--ivory); color:var(--ink); font-size:0.92rem; font-weight:700; white-space:nowrap; transition:background 0.25s ease, color 0.25s ease;}
.nav-cta svg{width:15px; height:15px; flex-shrink:0;}
header.scrolled .nav-cta, header.nav-open .nav-cta{background:var(--umber); color:var(--ivory);}
.nav-toggle{display:none; width:46px; height:46px; border-radius:50%; border:1px solid rgba(247,240,228,0.45); background:transparent; color:inherit;
  align-items:center; justify-content:center; cursor:pointer;}
.nav-toggle svg{width:22px; height:22px;}
header.scrolled .nav-toggle, header.nav-open .nav-toggle{border-color:var(--line-light);}
.nav-toggle .i-close{display:none;}
header.nav-open .nav-toggle .i-open{display:none;}
header.nav-open .nav-toggle .i-close{display:block;}

/* ===== HOME HERO (full-bleed video) ===== */
.hero{position:relative; min-height:100vh; min-height:100svh; display:flex; align-items:flex-end; overflow:hidden; color:#fff;
  padding:calc(var(--header-h) + 48px) 56px 104px; background:var(--umber) url('../video/poster-desktop.jpg') center/cover no-repeat;}
.hero-video{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;}
.hero-overlay{position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(18deg, rgba(26,16,8,0.86) 0%, rgba(26,16,8,0.42) 42%, rgba(26,16,8,0.08) 72%),
             linear-gradient(180deg, rgba(26,16,8,0.45) 0%, rgba(26,16,8,0) 26%);}
.hero-inner{position:relative; z-index:2; width:100%; max-width:1440px; margin:0 auto; display:grid; grid-template-columns:minmax(0,1fr) minmax(300px,410px); gap:48px; align-items:end;}
.hero-title{display:flex; flex-direction:column; gap:22px; min-width:0;}
.hero-kicker{font-family:var(--f-body); font-size:clamp(1rem,1.4vw,1.2rem); font-weight:700; line-height:1.4; max-width:34ch; display:flex; align-items:center; gap:14px; text-shadow:0 1px 12px rgba(0,0,0,0.35);}
.hero-kicker::before{content:''; flex:0 0 36px; height:2px; border-radius:2px; background:var(--gold-soft);}
.hero-motto{font-family:var(--f-display); font-size:clamp(3.2rem, 8.4vw, 7.6rem); line-height:0.94; letter-spacing:-0.01em; text-shadow:0 2px 24px rgba(0,0,0,0.25);}
.hero-motto em{font-style:italic; color:var(--gold-soft);}
.hero-card{background:var(--ivory); color:var(--ink); border-radius:22px; padding:30px; display:flex; flex-direction:column; gap:22px; box-shadow:0 24px 60px rgba(10,6,2,0.35);}
.hero-sub{font-size:1.06rem; line-height:1.65;}
.hero-actions{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;}
.hero-pause{width:48px; height:48px; border-radius:50%; border:1px solid var(--line-light); background:#fff; color:var(--ink); display:inline-flex; align-items:center; justify-content:center; cursor:pointer;}
.hero-pause svg{width:18px; height:18px;}
.hero-pause .i-play{display:none;}
.hero-pause.paused .i-play{display:block;}
.hero-pause.paused .i-pause{display:none;}
.hero-pause[hidden]{display:none;}

/* ===== STORY: three ridges ===== */
.three{padding:120px 0; background:var(--ivory);}
.three-head{display:grid; grid-template-columns:minmax(0,1.1fr) minmax(0,1fr); gap:72px; align-items:end; margin-bottom:60px;}
.three-head h2{font-size:clamp(2.4rem,4.6vw,4.1rem); margin-top:14px;}
.three-head p{color:var(--ink-mute); font-size:1.06rem; line-height:1.8;}
.three-grid{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:32px;}
.three-item{display:flex; flex-direction:column; gap:12px;}
.three-img{height:300px; border-radius:var(--radius); overflow:hidden; background:var(--cream-2);}
.three-img img{width:100%; height:100%; object-fit:cover; transition:transform 0.8s ease;}
.three-item:hover .three-img img{transform:scale(1.04);}
.three-title{display:flex; align-items:baseline; gap:14px; margin-top:12px;}
.three-item .num{font-family:var(--f-display); font-style:italic; font-size:2.4rem; line-height:1; color:var(--ochre);}
.three-item h3{font-size:2.1rem;}
.three-item p{color:var(--ink-mute); line-height:1.75;}

/* ===== HOME PACKAGES (carousel on dark) ===== */
.packages{padding:110px 0 120px; background:var(--umber); color:var(--ivory); overflow:hidden;}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:48px;}
.section-head h2{font-size:clamp(2.4rem,4.6vw,3.9rem); margin:14px 0 16px;}
.section-head p{max-width:560px; line-height:1.75; font-size:1.04rem;}
.packages .eyebrow{color:var(--ochre-lt);}
.packages .section-head p{color:rgba(247,240,228,0.78);}
.carousel-nav{display:flex; gap:12px; flex-shrink:0;}
.carousel-btn{width:54px; height:54px; border-radius:50%; border:1px solid rgba(247,240,228,0.4); background:transparent; color:var(--ivory);
  display:inline-flex; align-items:center; justify-content:center; cursor:pointer; transition:background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;}
.carousel-btn.next{border-color:var(--ochre-lt); color:var(--ochre-lt);}
.carousel-btn:hover{background:rgba(247,240,228,0.1);}
.carousel-btn:disabled{opacity:0.35; cursor:default;}
.carousel-btn svg{width:20px; height:20px;}
html[dir="rtl"] .carousel-btn svg{transform:scaleX(-1);}
.pkg-grid{display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth; -webkit-overflow-scrolling:touch;
  padding:4px max(40px, calc((100vw - 1280px) / 2 + 40px)) 8px; scroll-padding-inline:max(40px, calc((100vw - 1280px) / 2 + 40px));
  scrollbar-width:none; overscroll-behavior-x:contain;}
.pkg-grid::-webkit-scrollbar{display:none;}
.pkg-grid:focus-visible{outline-offset:-4px;}
.pkg-card{flex:0 0 340px; scroll-snap-align:start; display:flex; flex-direction:column; background:var(--umber-2); border-radius:18px; overflow:hidden; color:var(--ivory);}
.pkg-image{height:230px; position:relative; overflow:hidden; background-color:#1b140e;}
.pkg-tag{position:absolute; top:14px; left:14px; padding:7px 12px; border-radius:999px; background:var(--ochre); color:var(--ink); font-size:0.78rem; font-weight:700;}
html[dir="rtl"] .pkg-tag{left:auto; right:14px;}
.pkg-body{flex:1; display:flex; flex-direction:column; gap:10px; padding:22px 22px 24px;}
.pkg-body .region{font-size:0.74rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:rgba(247,240,228,0.66);}
.pkg-body h3{font-size:1.72rem; line-height:1.12;}
.pkg-body p{font-size:0.93rem; line-height:1.65; color:rgba(247,240,228,0.76);}
.pkg-foot{margin-top:auto; padding-top:16px; border-top:1px solid var(--line-dark); display:flex; align-items:flex-end; justify-content:space-between; gap:12px;}
.pkg-price .from{display:block; font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:rgba(247,240,228,0.62);}
.pkg-price .amt{font-family:var(--f-display); font-size:1.85rem; line-height:1.1; color:var(--ivory);}
.pkg-link{display:inline-flex; align-items:center; min-height:44px; font-size:0.93rem; font-weight:700; color:var(--ochre-lt); white-space:nowrap;}
.carousel-foot{display:flex; align-items:center; justify-content:space-between; gap:32px; margin-top:40px;}
.carousel-progress{flex:1; max-width:520px; height:3px; border-radius:3px; background:rgba(247,240,228,0.16); overflow:hidden;}
.carousel-progress span{display:block; height:100%; width:30%; border-radius:3px; background:var(--ochre-lt); transform-origin:left; transition:transform 0.2s ease;}
.pkg-note{color:rgba(247,240,228,0.78); font-size:0.95rem;}
.pkg-note a{color:var(--ochre-lt) !important; font-weight:700; border-bottom:1px solid rgba(224,164,94,0.5) !important;}

/* ===== WHY ===== */
.why{padding:120px 0; background:var(--ivory);}
.why-grid{display:grid; grid-template-columns:minmax(0,5fr) minmax(0,7fr); gap:96px; align-items:start;}
.why-intro{display:flex; flex-direction:column; gap:20px; align-items:flex-start;}
.why-intro h2{font-size:clamp(2.3rem,4.2vw,3.8rem); line-height:1.04;}
.why-list{display:flex; flex-direction:column;}
.why-row{display:grid; grid-template-columns:110px minmax(0,1fr); gap:12px; padding:30px 0; border-top:1px solid var(--line-light);}
.why-row .idx{font-family:var(--f-display); font-size:3.9rem; line-height:0.9; color:var(--ochre);}
.why-row h3{font-family:var(--f-body); font-size:1.35rem; font-weight:700; margin-bottom:8px; line-height:1.3;}
.why-row p{color:var(--ink-mute); font-size:1.02rem; line-height:1.7;}

/* ===== ENQUIRY ===== */
.inquiry{position:relative; padding:120px 0; color:var(--ivory); overflow:hidden; background:var(--umber) url('../images/hero-slide-2.jpg') center/cover no-repeat;}
.inquiry::before{content:''; position:absolute; inset:0; background:rgba(28,18,10,0.74);}
.inquiry > .wrap{position:relative;}
.inquiry-inner{display:grid; grid-template-columns:minmax(0,1fr) minmax(0,620px); gap:80px; align-items:center;}
.inquiry-copy{display:flex; flex-direction:column; gap:18px;}
.inquiry .eyebrow{color:var(--ochre-lt);}
.inquiry-copy h2{font-size:clamp(2.8rem,4.8vw,4.4rem); line-height:1;}
.inquiry-copy h2 em{font-style:italic; color:var(--gold-soft);}
.inquiry-copy > p{color:rgba(247,240,228,0.86); font-size:1.1rem; line-height:1.75; max-width:520px; margin-bottom:10px;}
.contact-detail{display:flex; flex-direction:column; gap:3px; font-size:1.04rem;}
.contact-detail .label{font-size:0.74rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--ochre-lt);}
.inquiry form{background:var(--ivory); color:var(--ink); border-radius:24px; padding:40px; box-shadow:0 30px 70px rgba(10,6,2,0.4);}
form{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px 18px;}
.field{display:flex; flex-direction:column; gap:8px; min-width:0;}
.field.full{grid-column:1/-1;}
label{font-size:0.86rem; font-weight:600; color:var(--ink);}
input,select,textarea{width:100%; min-height:50px; border:1px solid var(--line-light); border-radius:12px; background:#fff; color:var(--ink);
  font-family:var(--f-body); font-size:0.98rem; padding:0 16px; transition:border-color 0.2s ease, box-shadow 0.2s ease;}
textarea{padding:14px 16px; min-height:110px; resize:vertical;}
input::placeholder,textarea::placeholder{color:#9A8A77;}
input:focus,select:focus,textarea:focus{outline:none; border-color:var(--ochre); box-shadow:0 0 0 3px rgba(184,116,42,0.18);}
select option{background:#fff;}
.submit-row{grid-column:1/-1; display:flex; align-items:center; gap:18px; margin-top:6px; flex-wrap:wrap;}
.form-note{font-size:0.9rem; color:var(--ink-mute);}
.field-optional{font-size:0.82rem; font-weight:400; color:var(--ink-mute); text-transform:none; letter-spacing:0; margin-inline-start:4px;}

/* ===== FOOTER ===== */
footer{background:var(--umber); color:var(--ivory); padding:72px 0 36px;}
.footer-top{display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:24px 40px; padding-bottom:36px; margin-bottom:28px; border-bottom:1px solid var(--line-dark);}
.brand-name{font-family:var(--f-display); font-size:1.7rem; letter-spacing:0.02em;}
.footer-brand{display:flex; flex-direction:column; gap:8px;}
.footer-motto{font-family:var(--f-display); font-style:italic; font-size:1.3rem; color:var(--ochre-lt);}
.footer-links{display:flex; flex-wrap:wrap; gap:14px 30px; list-style:none; padding-top:8px;}
.footer-links a{font-size:0.95rem; font-weight:500; color:rgba(247,240,228,0.8); transition:color 0.2s ease;}
.footer-links a:hover{color:var(--ochre-lt);}
.footer-payments{display:flex; align-items:center; gap:12px 14px; flex-wrap:wrap; padding-bottom:24px; margin-bottom:22px; border-bottom:1px solid var(--line-dark);}
.footer-payments .label{font-size:0.76rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:rgba(247,240,228,0.7);}
.pay-logos{display:inline-flex; align-items:center; gap:10px;}
.pay-logos img, .pay-logos img[alt="Visa"]{height:42px; width:66px; object-fit:contain; background:#fff; border-radius:8px; padding:5px 9px; display:block;}
.pay-sep{color:rgba(247,240,228,0.5);}
.pay-bank{font-size:0.95rem;}
.footer-bottom{display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:0.84rem; color:rgba(247,240,228,0.62);}

/* ===== SUB-PAGE BANNER ===== */
.pkg-banner{position:relative; min-height:64vh; display:flex; align-items:flex-end; justify-content:flex-start; overflow:hidden; color:var(--ivory);
  padding:calc(var(--header-h) + 60px) 0 64px; background:var(--umber);}
.hero-bg{position:absolute; inset:0; z-index:0;}
.hero-bg .slide{position:absolute; inset:0; background-size:cover; background-position:center 40%; opacity:0; animation:heroSlide 30s infinite ease-in-out;}
.hero-bg .slide:nth-child(1){animation-delay:0s;}
.hero-bg .slide:nth-child(2){animation-delay:10s;}
.hero-bg .slide:nth-child(3){animation-delay:20s;}
.hero-bg .slide:only-child{opacity:1; animation:none;}
@keyframes heroSlide{0%{opacity:0; transform:scale(1.03);} 5%{opacity:1;} 33%{opacity:1; transform:scale(1.08);} 38%{opacity:0; transform:scale(1.08);} 100%{opacity:0;}}
.pkg-banner .hero-overlay{background:linear-gradient(18deg, rgba(26,16,8,0.86) 0%, rgba(26,16,8,0.45) 50%, rgba(26,16,8,0.15) 100%), linear-gradient(180deg, rgba(26,16,8,0.5) 0%, rgba(26,16,8,0) 30%);}
.pkg-banner-content{position:relative; z-index:2; width:100%; max-width:1280px; margin:0 auto; padding:0 40px; display:flex; flex-direction:column; gap:16px; align-items:flex-start;}
.pkg-banner-content .eyebrow{padding:8px 15px; border-radius:999px; background:rgba(255,255,255,0.14); border:1px solid rgba(255,255,255,0.3); color:#fff; font-size:0.74rem;}
.pkg-banner-content h1{font-size:clamp(2.8rem,6.6vw,5.6rem); line-height:0.98; color:#fff; max-width:900px;}
.pkg-banner-content p{color:rgba(255,255,255,0.88); font-size:1.1rem; line-height:1.75; max-width:640px;}

/* ===== DETAIL PAGES (packages, parks, destinations, about, legal) ===== */
.pkg-detail-wrap{padding:96px 0 80px; background:var(--ivory);}
.pkg-detail{padding:6px 0;}
.pkg-detail h2{color:var(--ink);}
.pkg-detail-head{display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:16px; margin-bottom:14px;}
.region{font-size:0.76rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--brass); margin-bottom:8px;}
.pkg-detail-head h2{font-size:clamp(2rem,3.6vw,2.8rem);}
.pkg-detail-price{font-family:var(--f-display); text-align:right;}
.pkg-detail-price .from{display:block; font-family:var(--f-body); font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--ink-mute);}
.pkg-detail-price .amt{font-size:2.2rem; color:var(--ink);}
.pkg-detail-price .amt small{font-family:var(--f-body); font-size:1rem; color:var(--ink-mute);}
.pkg-meta-row{display:flex; gap:10px; flex-wrap:wrap; color:var(--ink-mute); font-size:0.95rem; margin-bottom:22px;}
.pkg-detail > p{color:var(--ink-mute); line-height:1.85; max-width:820px; margin-bottom:30px; font-size:1.02rem;}
.pkg-detail-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:36px;}
.pkg-detail-grid h4{font-size:0.76rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--brass); margin-bottom:14px;}
.pkg-detail-grid ul{list-style:none;}
.pkg-detail-grid li{color:var(--ink-mute); font-size:0.97rem; line-height:1.7; padding-inline-start:18px; position:relative; margin-bottom:8px;}
.pkg-detail-grid li::before{content:''; position:absolute; inset-inline-start:0; top:0.72em; width:7px; height:7px; border-radius:50%; background:var(--ochre);}
.pkg-detail-grid li strong{color:var(--ink); font-weight:700;}
.pkg-divider{height:1px; background:var(--line-light); margin:64px 0;}
.pkg-day-list{display:flex; flex-direction:column;}
.pkg-day{padding:24px 0; border-bottom:1px solid var(--line-light);}
.pkg-day:first-child{padding-top:0;}
.pkg-day h4{font-family:var(--f-display); font-weight:400; font-size:1.35rem; color:var(--ink); margin-bottom:10px;}
.pkg-day p{color:var(--ink-mute); font-size:0.98rem; line-height:1.85; max-width:760px;}
.pkg-day p em{color:var(--ink-mute); font-size:0.9rem;}

.pkg-hero-image{height:clamp(420px, 62vh, 640px); position:relative; border-radius:24px; overflow:hidden; background-size:cover; background-position:center; margin-bottom:30px; background-color:var(--umber);}
.pkg-hero-image::after{content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(26,16,8,0.05) 0%, rgba(26,16,8,0.2) 35%, rgba(26,16,8,0.62) 65%, rgba(26,16,8,0.92) 100%);}
.pkg-hero-caption{position:absolute; left:0; right:0; bottom:0; z-index:2; padding:36px 40px 34px;}
.pkg-hero-caption-top{display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:16px;}
.pkg-hero-caption .region{color:var(--ochre-lt);}
.pkg-hero-caption h2{font-size:clamp(2.1rem,4.6vw,3.4rem); color:#fff; line-height:1.04;}
.pkg-hero-subtitle{font-family:var(--f-display); font-style:italic; font-size:clamp(1.1rem,1.8vw,1.4rem); color:rgba(255,255,255,0.92); margin-top:10px;}
.pkg-hero-caption .pkg-detail-price .from{color:rgba(255,255,255,0.75);}
.pkg-hero-caption .pkg-detail-price .amt{color:#fff;}
.pkg-hero-caption .pkg-detail-price .amt small{color:rgba(255,255,255,0.85);}
.pkg-hero-highlights{display:flex; flex-wrap:wrap; gap:10px; margin-top:20px;}
.pkg-hero-highlight{display:flex; align-items:center; gap:8px; font-size:0.88rem; font-weight:600; color:#fff; padding:7px 13px; border-radius:999px; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.24);}
.pkg-hero-highlight svg{width:16px; height:16px; flex-shrink:0;}

/* tabs */
.pkg-tabs{display:flex; gap:8px; margin-bottom:32px; overflow-x:auto; -webkit-overflow-scrolling:touch; padding-bottom:4px; scrollbar-width:thin;}
.pkg-tab-btn{flex-shrink:0; background:transparent; border:1px solid var(--line-light); border-radius:999px; color:var(--ink); font-family:var(--f-body);
  font-size:0.93rem; font-weight:600; padding:10px 18px; min-height:44px; cursor:pointer; transition:background 0.2s ease, color 0.2s ease, border-color 0.2s ease;}
.pkg-tab-btn:hover{border-color:var(--ink);}
.pkg-tab-btn.active{background:var(--umber); color:var(--ivory); border-color:var(--umber);}
.pkg-tab-panel{display:none;}
.pkg-tab-panel.active{display:block; animation:fadeUp 0.35s ease;}

/* accordion */
.pkg-accordion{display:flex; flex-direction:column;}
.pkg-acc-item{border-bottom:1px solid var(--line-light);}
.pkg-acc-head{width:100%; text-align:start; background:none; border:none; padding:20px 0; min-height:44px; display:flex; justify-content:space-between; align-items:center; gap:16px; cursor:pointer; color:var(--ink);}
.pkg-acc-head h4{font-family:var(--f-display); font-weight:400; font-size:1.35rem; color:inherit; text-align:start;}
.pkg-acc-plus{width:32px; height:32px; border-radius:50%; border:1px solid var(--line-light); display:inline-flex; align-items:center; justify-content:center;
  font-size:1.2rem; color:var(--brass); transition:transform 0.3s ease; flex-shrink:0; line-height:1;}
.pkg-acc-item.open .pkg-acc-plus{transform:rotate(45deg);}
.pkg-acc-body{max-height:0; overflow:hidden; transition:max-height 0.4s ease;}
.pkg-acc-item.open .pkg-acc-body{max-height:900px;}
.pkg-acc-body p{color:var(--ink-mute); font-size:0.98rem; line-height:1.85; padding-bottom:24px; max-width:760px;}
.pkg-acc-body p em{color:var(--ink-mute); font-size:0.9rem;}
.pkg-day-location{display:flex; align-items:center; gap:7px; margin-bottom:14px; color:var(--brass); font-size:0.78rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;}
.pkg-day-location svg{width:14px; height:14px; flex-shrink:0;}

/* timeline */
.pkg-timeline{display:flex; justify-content:space-between; gap:8px; margin:8px 0 40px; position:relative;}
.pkg-timeline::before{content:''; position:absolute; top:7px; left:0; right:0; height:1px; background:var(--line-light); z-index:0;}
.pkg-timeline-stop{flex:1; text-align:center; position:relative; z-index:1;}
.pkg-timeline-dot{width:15px; height:15px; border-radius:50%; background:var(--ivory); border:2px solid var(--ochre); margin:0 auto 14px;}
.pkg-timeline-stage{font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--brass); margin-bottom:6px;}
.pkg-timeline-desc{font-size:0.88rem; color:var(--ink-mute); line-height:1.5;}
.pkg-note-callout{background:var(--cream-2); border-radius:14px; padding:16px 22px; margin:26px 0; color:var(--ink); font-size:0.97rem; line-height:1.8; max-width:780px;}

/* price table */
.pkg-price-table{width:100%; max-width:540px; border-collapse:collapse; margin:14px 0 30px;}
.pkg-price-table th{text-align:start; padding:10px 16px 10px 0; font-size:0.74rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--brass); border-bottom:1px solid var(--line-light);}
.pkg-price-table td{padding:12px 16px 12px 0; font-size:0.98rem; color:var(--ink-mute); border-bottom:1px solid var(--line-light);}
.pkg-price-table th:last-child, .pkg-price-table td:last-child{text-align:right;}
.pkg-price-table td:last-child{font-family:var(--f-display); font-size:1.3rem; color:var(--ink);}
.pkg-price-table tr:last-child td{border-bottom:none;}
.pkg-price-table.wide{max-width:none;}
.pkg-price-table.wide td:not(:first-child), .pkg-price-table.wide th:not(:first-child){text-align:right;}
.pkg-price-table.wide td:not(:first-child){font-family:var(--f-display); font-size:1.2rem; color:var(--ink);}
.pkg-detail-wrap .btn-primary{margin-top:6px;}
.whatsapp-btn{display:inline-flex; align-items:center; gap:10px; margin-top:22px; min-height:50px; padding:0 24px; border-radius:999px; border:1.5px solid var(--ink); color:var(--ink); font-weight:700; transition:background 0.2s ease, color 0.2s ease;}
.whatsapp-btn svg, .whatsapp-btn img{width:18px; height:18px; flex-shrink:0;}
.whatsapp-btn:hover{background:var(--ink); color:var(--ivory);}
.lc-legal-notice{background:var(--cream-2); border-radius:14px; padding:14px 18px; margin:0 0 30px; font-size:0.97rem; color:var(--ink);}

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

/* ===== FLOATING WHATSAPP WIDGET ===== */
.wa-widget{position:fixed; right:22px; bottom:22px; z-index:500; display:flex; flex-direction:column; align-items:flex-end; gap:14px;}
html[dir="rtl"] .wa-widget{right:auto; left:22px; align-items:flex-start;}
.wa-pill{display:flex; align-items:center; gap:10px; background:#25D366; color:#fff; border:none; cursor:pointer; padding:14px 22px; border-radius:999px;
  font-family:var(--f-body); font-size:0.93rem; font-weight:700; box-shadow:0 8px 24px rgba(0,0,0,0.25); transition:transform 0.2s ease;}
.wa-pill:hover{transform:translateY(-2px);}
.wa-pill svg, .wa-pill img{width:20px; height:20px; flex-shrink:0;}
.wa-card{display:none; width:290px; background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 14px 40px rgba(0,0,0,0.3);}
.wa-card.open{display:block; animation:fadeUp 0.25s ease;}
.wa-card-header{background:#25D366; color:#fff; padding:18px 44px 18px 20px; font-size:0.93rem; line-height:1.5; position:relative;}
.wa-card-close{position:absolute; top:8px; right:10px; width:32px; height:32px; background:none; border:none; color:#fff; font-size:1.3rem; cursor:pointer; line-height:1;}
.wa-card-row{display:flex; align-items:center; gap:14px; padding:18px 20px; color:inherit;}
.wa-card-row:hover{background:#f5f5f5;}
.wa-avatar{width:44px; height:44px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.wa-avatar svg, .wa-avatar img{width:22px; height:22px;}
.wa-role{display:block; font-size:0.78rem; color:#777;}
.wa-name{font-size:0.97rem; color:#222; font-weight:700;}

/* ===== LANGUAGE & CURRENCY SWITCHER ===== */
.lc-prefs{position:relative;}
.lc-prefs-btn{display:inline-flex; align-items:center; gap:7px; height:46px; padding:0 15px; border-radius:999px; background:transparent; cursor:pointer;
  border:1px solid rgba(247,240,228,0.5); color:inherit; font:inherit; font-size:0.82rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;}
header.scrolled .lc-prefs-btn, header.nav-open .lc-prefs-btn{border-color:var(--line-light); background:#fff;}
.lc-prefs-btn svg{width:15px; height:15px; flex-shrink:0;}
.lc-prefs-panel{display:none; position:absolute; top:calc(100% + 10px); right:0; width:310px; max-width:calc(100vw - 32px);
  background:var(--paper); color:var(--ink); border:1px solid var(--line-light); border-radius:18px; box-shadow:0 20px 50px rgba(20,12,6,0.22); padding:18px; z-index:200; text-align:start;}
html[dir="rtl"] .lc-prefs-panel{right:auto; left:0;}
.lc-prefs.open .lc-prefs-panel{display:block;}
.lc-prefs-title{display:block; font-size:0.72rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--brass); margin:0 0 10px;}
.lc-lang-grid{display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-bottom:18px;}
.lc-lang{background:#fff; border:1px solid var(--line-light); border-radius:10px; padding:9px 11px; min-height:42px; cursor:pointer; font-family:var(--f-body); font-size:0.92rem; color:var(--ink); text-align:start;}
.lc-lang:hover{border-color:var(--ochre);}
.lc-lang.active{background:var(--umber); color:var(--ivory); border-color:var(--umber);}
.lc-cur-select{width:100%; min-height:44px; padding:0 12px; border:1px solid var(--line-light); border-radius:10px; background:#fff; font:inherit; font-size:0.92rem; color:var(--ink);}
.lc-prefs-note{font-size:0.8rem; line-height:1.5; color:var(--ink-mute); margin-top:10px;}
.lc-prefs-note:empty{display:none;}
.lc-prefs-credit{display:inline-block; margin-top:8px; font-size:0.74rem; color:var(--brass); text-decoration:underline;}
html.lc-i18n-pending body{visibility:hidden;}
.lc-prefs-code{white-space:nowrap; unicode-bidi:isolate; direction:ltr;}
.lc-cur-flag{display:inline-block; font-size:1.1em; line-height:1; margin-inline-end:5px; vertical-align:-0.1em; letter-spacing:0;}
.lc-globe{width:18px; height:18px; flex-shrink:0; display:block;}

/* ===== PHONE FIELD + COUNTRY PICKER ===== */
.phone-row{position:relative; display:grid; grid-template-columns:minmax(0,1.1fr) minmax(0,1.4fr); gap:10px;}
.phone-row select{min-width:0;}
.cc-native{position:absolute !important; width:1px !important; height:1px !important; min-height:0 !important; opacity:0; pointer-events:none; overflow:hidden; clip:rect(0 0 0 0); border:0; padding:0;}
.cc{min-width:0;}
.cc-btn{width:100%; min-height:50px; display:flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--line-light); border-radius:12px;
  color:var(--ink); font-family:var(--f-body); font-size:0.98rem; padding:0 14px; cursor:pointer; text-align:start; transition:border-color 0.2s ease;}
.cc-btn:focus-visible, .cc-btn[aria-expanded="true"]{outline:none; border-color:var(--ochre); box-shadow:0 0 0 3px rgba(184,116,42,0.18);}
.cc-btn.cc-invalid{border-color:var(--oxblood);}
.cc-btn.cc-placeholder .cc-text{color:#9A8A77;}
.cc-flag{flex-shrink:0; font-size:1.05rem; line-height:1;}
.cc-text{flex:1; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.cc-code{color:var(--ink-mute); unicode-bidi:isolate;}
.cc-caret{width:14px; height:14px; flex-shrink:0; color:var(--ink-mute); transition:transform 0.2s ease;}
.cc-btn[aria-expanded="true"] .cc-caret{transform:rotate(180deg);}
.cc-panel{position:absolute; top:calc(100% + 6px); left:0; right:0; z-index:40; background:var(--paper); border:1px solid var(--line-light); border-radius:16px;
  box-shadow:0 18px 40px rgba(20,12,6,0.2); padding:10px;}
.cc-panel[hidden]{display:none;}
.cc-search{width:100%; min-height:46px; border:1px solid var(--line-light); border-radius:10px; padding:0 12px; font-size:0.97rem; background:#fff;}
.cc-list{position:relative; list-style:none; margin:8px 0 0; padding:0; max-height:260px; overflow-y:auto; overscroll-behavior:contain;}
.cc-list li[hidden]{display:none !important;}
.cc-list li[role="option"]{display:flex; align-items:center; gap:10px; padding:10px; border-radius:8px; cursor:pointer; font-size:0.95rem;}
.cc-list li[role="option"]:hover, .cc-list li.cc-active{background:rgba(184,116,42,0.14);}
.cc-list li[aria-selected="true"]{font-weight:700;}
.cc-f{font-size:1.1rem; line-height:1; flex-shrink:0;}
.cc-n{flex:1; min-width:0;}
.cc-d{color:var(--ink-mute); font-size:0.86rem; flex-shrink:0; unicode-bidi:isolate;}
.cc-empty{padding:14px 10px; color:var(--ink-mute); font-size:0.9rem; font-style:italic;}
.cc-empty[hidden], .cc-error[hidden]{display:none;}
.cc-error{color:var(--oxblood); font-size:0.86rem; font-weight:600; margin-top:2px;}

/* Country flags on Windows: small flag-only font (only used for flag characters) */
@font-face{
  font-family:"Twemoji Country Flags";
  unicode-range:U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
  src:url("https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2") format("woff2");
  font-display:swap;
}
#phone_code, #phone_code option, .cc-flag, .cc-f, .lc-cur-flag, .lc-cur-select, .lc-cur-select option{font-family:"Twemoji Country Flags", var(--f-body);}

/* Long country names must never widen the page on phones */
.inquiry-inner > *, form > *{min-width:0;}
select{max-width:100%;}

/* ===== NON-LATIN SCRIPTS & RIGHT-TO-LEFT ===== */
html[lang="ar"] *:not(.brand-wordmark-main):not(.brand-wordmark-sub),
html[lang="zh-Hans"] *:not(.brand-wordmark-main):not(.brand-wordmark-sub),
html[lang="ja"] *:not(.brand-wordmark-main):not(.brand-wordmark-sub){letter-spacing:0 !important;}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] em, html[lang="ar"] i{font-style:normal;}
html[lang="zh-Hans"] em, html[lang="ja"] em, html[lang="zh-Hans"] h1, html[lang="zh-Hans"] h2, html[lang="zh-Hans"] h3, html[lang="zh-Hans"] h4,
html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3, html[lang="ja"] h4{font-style:normal;}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="zh-Hans"] h2, html[lang="zh-Hans"] h3, html[lang="ja"] h2, html[lang="ja"] h3{line-height:1.3;}
html[dir="rtl"] .hero-motto, html[dir="rtl"] .brand-wordmark, html[dir="rtl"] .footer-motto{direction:ltr;}
html[dir="rtl"] .hero-motto{text-align:right;}
html[dir="rtl"] a[href^="tel:"], html[dir="rtl"] a[href^="mailto:"]{direction:ltr; unicode-bidi:isolate; display:inline-block;}
html[dir="rtl"] .price, html[dir="rtl"] .pkg-price .amt, html[dir="rtl"] .pkg-detail-price .amt{unicode-bidi:isolate;}
html[dir="rtl"] .pkg-detail-price{text-align:left;}
html[dir="rtl"] .pkg-price-table th:last-child, html[dir="rtl"] .pkg-price-table td:last-child,
html[dir="rtl"] .pkg-price-table.wide td:not(:first-child), html[dir="rtl"] .pkg-price-table.wide th:not(:first-child){text-align:left;}
html[dir="rtl"] .pkg-price-table th:first-child, html[dir="rtl"] .pkg-price-table td:first-child{text-align:right;}
html[dir="rtl"] nav a::after{transform-origin:right;}

/* ===== RESPONSIVE ===== */
@media (max-width:1280px){
  nav ul{gap:22px;}
  nav a{font-size:0.88rem;}
  header{padding:0 28px;}
}
@media (max-width:1240px){
  .nav-toggle{display:inline-flex;}
  header nav{display:none; position:fixed; top:calc(var(--header-h) + 8px); left:12px; right:12px; background:var(--paper); color:var(--ink);
    border-radius:20px; box-shadow:0 20px 50px rgba(20,12,6,0.25); padding:10px 18px; max-height:calc(100vh - var(--header-h) - 24px); overflow-y:auto;}
  header.nav-open nav{display:block;}
  nav ul{flex-direction:column; gap:0;}
  nav li + li{border-top:1px solid var(--line-light);}
  nav a{display:flex; align-items:center; min-height:54px; font-size:1.1rem; opacity:1;}
  nav a::after{display:none;}
}
@media (max-width:1100px){
  .hero-inner{grid-template-columns:minmax(0,1fr) minmax(280px,360px); gap:32px;}
  .three-head, .why-grid{grid-template-columns:1fr; gap:28px;}
  .why-grid{gap:40px;}
  .inquiry-inner{grid-template-columns:1fr; gap:48px;}
}
@media (max-width:860px){
  .three-grid{grid-template-columns:1fr; gap:48px;}
  .three-img{height:260px;}
  .hero{padding:calc(var(--header-h) + 40px) 24px 96px;}
  .hero-inner{grid-template-columns:1fr; gap:22px;}
  .section-head{flex-direction:column; align-items:flex-start; gap:24px;}
}
@media (max-width:700px){
  :root{--header-h:72px; --radius:18px;}
  header{padding:0 12px 0 14px; gap:10px;}
  .brand-mark{gap:9px;}
  .brand-mark img{height:38px !important;}
  .brand-wordmark-main{font-size:1.2rem;}
  .brand-wordmark-sub{font-size:0.52rem; letter-spacing:0.3em;}
  .header-actions{gap:6px;}
  .nav-cta{display:none;}
  .lc-prefs-btn{height:42px; padding:0 11px; font-size:0.74rem; letter-spacing:0.02em;}
  .nav-toggle{width:42px; height:42px;}
  .lc-prefs-panel, html[dir="rtl"] .lc-prefs-panel{position:fixed; top:calc(var(--header-h) + 6px); left:12px; right:12px; width:auto; max-width:none; max-height:calc(100vh - 90px); overflow-y:auto;}
  .wrap{padding:0 20px;}
  .hero{background-image:url('../video/poster-mobile.jpg'); padding:calc(var(--header-h) + 32px) 14px 92px;}
  .hero-motto{font-size:clamp(2.9rem, 15vw, 4.4rem);}
  .hero-kicker{font-size:0.98rem; gap:10px;}
  .hero-kicker::before{flex-basis:24px;}
  .hero-card{padding:22px; border-radius:18px;}
  .hero-actions .btn-primary{flex:1;}
  .three, .why{padding:80px 0;}
  .packages{padding:80px 0;}
  .pkg-grid{padding-inline:20px; scroll-padding-inline:20px; gap:16px;}
  .pkg-card{flex-basis:min(300px, 82vw);}
  .carousel-nav{display:none;}
  .carousel-foot{flex-direction:column; align-items:flex-start; gap:18px; margin-top:28px;}
  .carousel-progress{width:100%; flex:none;}
  .why-row{grid-template-columns:72px minmax(0,1fr); padding:24px 0;}
  .why-row .idx{font-size:2.8rem;}
  .inquiry{padding:80px 0;}
  .inquiry form{padding:22px; border-radius:20px;}
  form{grid-template-columns:1fr;}
  .phone-row{grid-template-columns:auto minmax(0,1fr);}
  .cc-name{display:none;}
  .cc-btn:not(.cc-placeholder) .cc-code{color:var(--ink);}
  .cc-list{max-height:48vh;}
  .pkg-banner{min-height:58vh; padding-bottom:40px;}
  .pkg-banner-content{padding:0 20px;}
  .pkg-detail-wrap{padding:64px 0;}
  .pkg-hero-image{border-radius:18px;}
  .pkg-hero-caption{padding:24px 20px;}
  .pkg-divider{margin:48px 0;}
  .pkg-timeline{flex-direction:column; align-items:flex-start; gap:26px;}
  .pkg-timeline::before{top:0; bottom:0; left:7px; right:auto; width:1px; height:auto;}
  .pkg-timeline-stop{text-align:start; padding-inline-start:26px;}
  .pkg-timeline-dot{margin:0; position:absolute; left:0; top:2px;}
  .pay-sep{display:none;}
  .footer-payments{gap:10px 12px;}
  .wa-pill{padding:13px 18px;}
}
@media (max-width:420px){
  .brand-wordmark-sub{display:none;}
  .brand-wordmark-main{font-size:1.1rem;}
}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}
/* tab text + buttons that carry old inline display rules */
.pkg-tab-panel > p{color:var(--ink-mute); line-height:1.85; max-width:820px; margin-bottom:26px; font-size:1.02rem;}
a.btn-primary{display:inline-flex !important;}
/* the motto stays in English in every language */
html[lang] .hero-motto{line-height:0.94;}
html[lang] .hero-motto em{font-style:italic;}
@media (max-width:700px){
  .pkg-hero-caption .pkg-detail-price{text-align:start;}
  .pkg-hero-image::after{background:linear-gradient(180deg, rgba(26,16,8,0.3) 0%, rgba(26,16,8,0.6) 30%, rgba(26,16,8,0.92) 100%);}
}

/* ===== HOW BOOKING WORKS ===== */
.how{padding:110px 0; background:var(--cream-2);}
.how-head{display:flex; flex-direction:column; gap:14px; margin-bottom:48px;}
.how-head h2{font-size:clamp(2.2rem,4vw,3.4rem);}
.how-steps{list-style:none; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; counter-reset:none;}
.how-steps li{background:var(--paper); border-radius:var(--radius); padding:28px 24px; display:flex; flex-direction:column; gap:12px; box-shadow:0 1px 0 var(--line-light);}
.how-num{width:44px; height:44px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; background:var(--umber); color:var(--ivory); font-family:var(--f-display); font-size:1.35rem;}
.how-steps h3{font-family:var(--f-body); font-size:1.15rem; font-weight:700; line-height:1.3;}
.how-steps p{color:var(--ink-mute); font-size:0.97rem; line-height:1.65;}
.how-note{margin-top:26px; color:var(--ink-mute); font-size:0.95rem;}
.how-note a{color:var(--brass); font-weight:700; text-decoration:underline; text-underline-offset:3px;}
@media (max-width:1100px){ .how-steps{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width:700px){ .how{padding:80px 0;} .how-steps{grid-template-columns:1fr; gap:14px;} .how-steps li{padding:22px 20px;} }

/* ===== TRIP ACTIONS (packages page) ===== */
.trip-actions{display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:30px;}
.trip-actions .btn-primary, .trip-actions .whatsapp-btn{margin-top:0;}
.whatsapp-btn svg{width:18px; height:18px; color:#128C7E;}
.whatsapp-btn:hover svg{color:inherit;}

/* ===== PHONE ACTION BAR ===== */
.mobile-cta{display:none;}
@media (max-width:700px){
  .mobile-cta{display:grid; grid-template-columns:1fr 1fr; gap:8px; position:fixed; left:0; right:0; bottom:0; z-index:450;
    padding:10px 12px calc(10px + env(safe-area-inset-bottom, 0px)); background:rgba(247,240,228,0.96); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
    box-shadow:0 -1px 0 var(--line-light), 0 -8px 24px rgba(20,12,6,0.10);}
  .mobile-cta a{display:flex; align-items:center; justify-content:center; gap:8px; min-height:50px; border-radius:999px; font-size:0.98rem; font-weight:700;}
  .mobile-cta svg{width:18px; height:18px; flex-shrink:0;}
  .mobile-cta-enquire{background:var(--umber); color:var(--ivory);}
  .mobile-cta-wa{background:#075E54; color:#fff;}
  .wa-widget{display:none;}
  body{padding-bottom:calc(72px + env(safe-area-inset-bottom, 0px));}
  .hero{min-height:calc(100svh - 0px);}
}

/* ===== CONTACT HINT + TRAVELLERS ===== */
.contact-note{gap:4px; margin-top:-6px;}
.field-hint{font-size:0.88rem; color:var(--ink-mute); line-height:1.5;}
.form-error{font-size:0.9rem; font-weight:700; color:var(--oxblood);}
.form-error[hidden], #children-ages-field[hidden]{display:none;}
fieldset.travellers{border:none; padding:0; margin:0; min-width:0;}
fieldset.travellers legend{font-size:0.86rem; font-weight:600; color:var(--ink); padding:0; margin-bottom:8px;}
.trav-row{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px;}
.trav-col{display:flex; flex-direction:column; gap:6px; min-width:0;}
.trav-col label{font-size:0.8rem; font-weight:600; color:var(--ink-mute);}
.dates-field{align-self:end;}
@media (max-width:700px){ .dates-field{align-self:auto;} }

/* =========================================================
   CREST DESIGN (Sep 2026) — logo wordmark, header and home hero
   Fonts: Cinzel Decorative (brand), Cormorant Garamond italic (motto), Jost (hero/nav)
   Colours: champagne gold on warm umber
   ========================================================= */
:root{
  --f-crest:'Cinzel Decorative', 'Cinzel', Georgia, serif;
  --f-motto:'Cormorant Garamond', Georgia, serif;
  --f-clean:'Jost', 'Manrope', 'Segoe UI', Arial, sans-serif;
  --crest-cream:#FBF1DC;
  --crest-gold:#E3BE72;
  --crest-gold-2:#C9994A;
  --crest-honey:#F2D596;
  --crest-dark:rgba(24,16,10,0.92);
  --crest-gold-text:linear-gradient(180deg, #FFF7E6 0%, #F6E2B4 48%, #E3BE72 78%, #C9994A 100%);
}

/* ---- Logo wordmark ---- */
.brand-mark{gap:14px;}
.brand-mark img{height:62px !important; filter:drop-shadow(0 3px 10px rgba(0,0,0,0.35));}
.brand-wordmark-main{font-family:var(--f-crest); font-weight:700; font-size:2rem; letter-spacing:0.01em; line-height:0.95; text-transform:uppercase; color:var(--crest-cream);}
.brand-wordmark-sub{font-family:var(--f-clean); font-weight:400; font-size:0.72rem; letter-spacing:0.46em; margin-top:7px; opacity:1; color:var(--crest-gold);}

/* ---- Header: see-through over video, deep umber once scrolled ---- */
header{height:var(--header-h); background:linear-gradient(to bottom, rgba(20,12,6,0.62), rgba(20,12,6,0));}
header.scrolled, header.nav-open{background:var(--crest-dark); color:var(--crest-cream); box-shadow:0 1px 0 rgba(227,190,114,0.22);}
nav a{font-family:var(--f-clean); font-size:0.9rem; font-weight:400; letter-spacing:0.16em; text-transform:uppercase; opacity:0.95;}
nav a::after{background:var(--crest-gold); height:1px;}
nav a:hover{color:var(--crest-honey);}
.lc-prefs-btn, header.scrolled .lc-prefs-btn, header.nav-open .lc-prefs-btn{border-radius:2px; background:transparent; border:1px solid rgba(227,190,114,0.55); color:var(--crest-cream);
  font-family:var(--f-clean); font-weight:400; letter-spacing:0.14em;}
.nav-cta, header.scrolled .nav-cta, header.nav-open .nav-cta{border-radius:2px; background:transparent; color:var(--crest-cream); border:1px solid var(--crest-gold);
  font-family:var(--f-clean); font-weight:400; font-size:0.9rem; letter-spacing:0.18em; text-transform:uppercase; padding:0 26px;}
.nav-cta:hover, header.scrolled .nav-cta:hover{background:var(--crest-gold); color:#2A1E16;}
.nav-toggle, header.scrolled .nav-toggle, header.nav-open .nav-toggle{border-radius:2px; border-color:rgba(227,190,114,0.55);}

/* ---- Home hero: centred over the video ---- */
.hero{align-items:center; justify-content:center; text-align:center; padding:calc(var(--header-h) + 40px) 32px 110px;}
.hero-overlay{background:
  radial-gradient(ellipse 70% 55% at 50% 52%, rgba(20,12,6,0.45) 0%, rgba(20,12,6,0) 70%),
  linear-gradient(180deg, rgba(60,36,8,0.55) 0%, rgba(30,18,8,0.22) 38%, rgba(22,14,8,0.5) 72%, rgba(18,11,6,0.88) 100%);}
.hero-inner{display:flex; flex-direction:column; align-items:center; gap:0; max-width:1200px; grid-template-columns:none;}
.hero-kicker{order:0; justify-content:center; max-width:none; font-family:var(--f-clean); font-weight:400; font-size:clamp(0.72rem,0.95vw,0.86rem);
  letter-spacing:0.34em; text-transform:uppercase; color:var(--crest-honey); margin-bottom:22px; gap:16px;}
.hero-kicker::before, .hero-kicker::after{content:''; flex:0 0 38px; height:1px; background:var(--crest-gold); opacity:0.8;}
.hero-brand{font-family:var(--f-crest); font-weight:400; text-transform:uppercase; font-size:clamp(2.3rem, 6.6vw, 6.6rem); line-height:1.02; letter-spacing:0.01em;
  color:var(--crest-cream); background:var(--crest-gold-text); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 4px 22px rgba(0,0,0,0.45)); text-wrap:balance;}
.hero-tagline{display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:6px 22px; margin-top:26px;
  font-family:var(--f-motto); font-size:clamp(1.25rem, 2vw, 1.85rem); letter-spacing:0.04em; color:var(--crest-gold); text-shadow:0 1px 14px rgba(0,0,0,0.45);}
.hero-tagline em{font-style:italic; font-weight:500;}
.hero-tagline .dash{display:inline-block; width:34px; height:1px; background:currentColor; opacity:0.7;}
.hero-card{display:contents;}
.hero-sub{max-width:760px; margin-top:34px; font-family:var(--f-clean); font-weight:300; font-size:clamp(1.02rem, 1.35vw, 1.3rem); line-height:1.7;
  color:rgba(251,241,220,0.9); text-shadow:0 1px 12px rgba(0,0,0,0.5);}
.hero-actions{justify-content:center; margin-top:40px; gap:14px;}
.hero .btn-primary{border-radius:2px; min-height:60px; padding:0 48px; background:linear-gradient(135deg, #EDCB82 0%, #D8AE5C 55%, #C0903F 100%); color:#2A1E16;
  font-family:var(--f-clean); font-weight:500; font-size:0.95rem; letter-spacing:0.2em; text-transform:uppercase; box-shadow:0 12px 30px rgba(0,0,0,0.3);}
.hero .btn-primary::after{content:none;}
.hero .btn-primary:hover{background:linear-gradient(135deg, #F4D896 0%, #E2BA6A 55%, #C99A48 100%); transform:translateY(-2px);}
.hero-pause{width:60px; height:60px; border-radius:2px; background:rgba(20,12,6,0.35); border:1px solid rgba(227,190,114,0.6); color:var(--crest-cream);}

/* ---- Footer brand to match ---- */
.brand-name{font-family:var(--f-crest); font-weight:700; letter-spacing:0.01em; color:var(--crest-cream);}
.footer-motto{font-family:var(--f-motto); font-weight:500; font-size:1.45rem; color:var(--crest-gold);}

/* keep the brand in Latin letters for every language */
html[lang] .hero-brand, html[lang] .hero-tagline{letter-spacing:0.01em !important;}
html[dir="rtl"] .hero-brand, html[dir="rtl"] .hero-tagline{direction:ltr;}

@media (max-width:1500px){
  nav ul{gap:24px;}
  nav a{font-size:0.82rem; letter-spacing:0.13em;}
  .brand-wordmark-main{font-size:1.75rem;}
  .brand-mark img{height:54px !important;}
}
@media (max-width:1240px){
  nav a{font-size:1rem; letter-spacing:0.12em;}
  header nav{background:#1E150E; color:var(--crest-cream); border:1px solid rgba(227,190,114,0.25); border-radius:6px;}
  nav li + li{border-top-color:rgba(227,190,114,0.16);}
}
@media (max-width:860px){
  .hero{padding:calc(var(--header-h) + 32px) 20px 100px;}
}
@media (max-width:700px){
  .brand-mark{gap:9px;}
  .brand-mark img{height:42px !important;}
  .brand-wordmark-main{font-size:1.2rem;}
  .brand-wordmark-sub{font-size:0.52rem; letter-spacing:0.36em; margin-top:5px;}
  .lc-prefs-btn{letter-spacing:0.06em;}
  .hero{padding:calc(var(--header-h) + 24px) 18px 96px;}
  .hero-kicker{font-size:0.66rem; letter-spacing:0.24em; gap:10px; margin-bottom:16px;}
  .hero-kicker::before, .hero-kicker::after{display:none;}
  .hero-brand{font-size:clamp(2.1rem, 11vw, 3.2rem); line-height:1.08;}
  .hero-tagline{gap:4px 12px; margin-top:18px;}
  .hero-tagline .dash{width:18px;}
  .hero-sub{margin-top:22px; font-size:1rem;}
  .hero-actions{margin-top:28px; width:100%;}
  .hero .btn-primary{padding:0 28px; min-height:56px; letter-spacing:0.16em;}
  .hero-pause{width:56px; height:56px;}
}
@media (max-width:420px){
  .brand-wordmark-main{font-size:1.05rem;}
}

/* photo inside a tour's overview tab */
.pkg-photo{margin:6px 0 30px; max-width:820px;}
.pkg-photo img{width:100%; height:auto; aspect-ratio:16/9; object-fit:cover; border-radius:var(--radius);}
.pkg-photo figcaption{margin-top:10px; font-size:0.9rem; font-style:italic; color:var(--ink-mute);}

/* ===== SEASON PRICE TABLE (season × group size) ===== */
.season-table-wrap{overflow-x:auto; -webkit-overflow-scrolling:touch; margin:0 0 12px; border-radius:6px;}
.season-table{width:100%; min-width:900px; border-collapse:collapse; background:#F4F1EE;}
.season-table thead tr{background:#55504C;}
.season-table th{padding:22px 16px; text-align:start; font-family:var(--f-clean); font-weight:500; font-size:0.98rem; color:#fff; white-space:nowrap;}
.season-table td{padding:18px 16px; font-family:var(--f-clean); font-weight:300; font-size:1.02rem; color:#4A443F; white-space:nowrap; vertical-align:middle;}
.season-table tbody tr:nth-child(even){background:#E4E1DE;}
.season-table td.season{white-space:normal; min-width:120px; line-height:1.6;}
.season-table td.lang{color:#6B5B3E;}
.season-table td.act{text-align:end;}
.season-enquire{display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:0 22px; border:1px solid #2A1E16; border-radius:999px;
  background:#fff; color:#2A1E16; font-family:var(--f-clean); font-weight:500; font-size:1.05rem; white-space:nowrap; transition:background 0.2s ease, color 0.2s ease;}
.season-enquire:hover{background:#2A1E16; color:#fff;}
.season-note{font-size:0.78rem; color:var(--ink-mute); font-style:italic; margin-bottom:30px;}
html[dir="rtl"] .season-table td.act{text-align:start;}
.pkg-detail, .pkg-tab-panel{min-width:0;}
.season-table-wrap{width:100%; max-width:calc(100vw - 32px);}
.season-table-wrap{position:relative;}

/* ===== SERVICE-TIER PRICE TABLE ===== */
.tier-table{width:100%; min-width:1080px; border-collapse:collapse; background:#fff; border-radius:14px; overflow:hidden;}
.tier-table thead tr{background:#1F2321;}
.tier-table th{padding:26px 18px; text-align:center; font-family:var(--f-body); font-weight:700; font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; color:#fff; white-space:nowrap;}
.tier-table th:first-child{text-align:start; padding-inline-start:28px;}
.tier-table td{padding:22px 18px; text-align:center; font-family:var(--f-body); font-size:1.12rem; color:#1F2321; white-space:nowrap; border-bottom:1px solid #EEF0F2;}
.tier-table tbody tr:last-child td{border-bottom:none;}
.tier-table tbody tr:nth-child(odd){background:#F8F9FA;}
.tier-table td.tier{text-align:start; padding-inline-start:28px; white-space:normal; min-width:170px;}
.tier-name{display:block; font-weight:700; font-size:0.98rem; letter-spacing:0.02em; text-transform:uppercase; color:#8A4B1C;}
.tier-sub{display:block; margin-top:6px; font-size:0.86rem; color:#9A9A9A;}
.tier-exc .tier-name{color:#5B2A86;}
.tier-table tr:has(.tier-exc) td:not(.tier){color:#8A4B1C;}
.tier-table{min-width:980px;}
.tier-table th{padding:24px 10px; font-size:0.72rem; letter-spacing:0.08em;}
.tier-table td{padding:20px 10px; font-size:1.04rem;}
.tier-table th:first-child, .tier-table td.tier{padding-inline-start:22px; min-width:150px;}
.tier-table.compact{min-width:620px;}
.tier-table td.on-request a{font-size:0.95rem; font-weight:600; color:#8A4B1C; text-decoration:underline; text-underline-offset:3px;}
.pkg-photo-portrait img{object-position:center 38%;}
.pkg-option-head{font-family:var(--f-display); font-weight:400; font-size:1.5rem; color:var(--ink); margin:26px 0 6px;}
.pkg-option-head:first-child{margin-top:0;}
.pkg-hero-caption-top > .pkg-detail-price{margin-inline-start:auto;}
.photo-credit{font-size:0.74rem; font-style:normal; color:var(--ink-mute); opacity:0.85;}
.photo-credit a{text-decoration:underline; text-underline-offset:2px;}
p.hero-credit{margin:-14px 0 26px;}
.pkg-photo + p.hero-credit{margin-top:-18px;}
.pkg-photo-pair{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin:24px 0 6px; max-width:1100px;}
.pkg-photo-pair .pkg-photo{margin:0; max-width:none;}
.pkg-photo-pair .pkg-photo img{aspect-ratio:3/2;}
@media (max-width:700px){ .pkg-photo-pair{grid-template-columns:1fr;} }

/* Price basis line (number of travellers behind a "From" price) */
.pkg-detail-price .basis, .pkg-price .basis{display:block; font-family:var(--f-body); font-size:0.74rem; letter-spacing:0.04em; margin-top:2px;}
.pkg-detail-price .basis{color:var(--ink-mute);}
.pkg-hero-caption .pkg-detail-price .basis{color:rgba(255,255,255,0.85);}
.pkg-price .basis{color:rgba(247,240,228,0.62);}
.pkg-price-table td.on-request a{font-family:var(--f-body); font-size:0.95rem; font-weight:600; color:#8A4B1C; text-decoration:underline; text-underline-offset:3px;}

/* Spacing when a panel stacks two price tables or two info grids */
.season-table-wrap + h4{margin-top:36px;}
.pkg-detail-grid + .pkg-detail-grid{margin-top:28px;}

/* Collapse the menu into the ☰ button whenever it doesn't fit (any width, any language).
   main.js adds .nav-compact to the header; these mirror the max-width:1240px rules. */
header.nav-compact .nav-toggle{display:inline-flex;}
header.nav-compact nav{display:none; position:fixed; top:calc(var(--header-h) + 8px); left:12px; right:12px; max-height:calc(100vh - var(--header-h) - 24px); overflow-y:auto;
  background:#1E150E; color:var(--crest-cream); border:1px solid rgba(227,190,114,0.25); border-radius:6px; box-shadow:0 20px 50px rgba(20,12,6,0.25); padding:10px 18px;}
header.nav-compact.nav-open nav{display:block;}
header.nav-compact nav ul{flex-direction:column; gap:0;}
header.nav-compact nav li + li{border-top:1px solid rgba(227,190,114,0.16);}
header.nav-compact nav a{display:flex; align-items:center; min-height:54px; font-size:1rem; letter-spacing:0.12em; opacity:1;}
header.nav-compact nav a::after{display:none;}

/* ===== LION CREST PRICE FINDER (replaces the plain price tables) ===== */
.pf-source{display:none !important;}
.pf{background:#1E150E; color:var(--crest-cream); border:1px solid rgba(227,190,114,0.28); border-radius:6px; padding:22px 22px 20px; margin:4px 0 18px; max-width:1100px;
  background-image:radial-gradient(120% 140% at 100% 0%, rgba(201,162,75,0.10), rgba(201,162,75,0) 55%);}
.pf-head{display:flex; flex-wrap:wrap; align-items:center; gap:14px 18px;}
.pf-q{font-family:var(--f-clean); font-size:0.78rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--crest-gold);}
.pf-chips{display:flex; flex-wrap:wrap; gap:8px;}
.pf-chip{min-width:46px; height:46px; padding:0 12px; border-radius:999px; border:1px solid rgba(227,190,114,0.5); background:transparent; color:var(--crest-cream);
  font-family:var(--f-display); font-size:1.15rem; cursor:pointer; transition:background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;}
.pf-chip:hover{border-color:var(--crest-gold); transform:translateY(-1px);}
.pf-chip[aria-pressed="true"]{background:var(--crest-gold); border-color:var(--crest-gold); color:#2A1E16;}
.pf-chip:focus-visible{outline:2px solid var(--crest-honey); outline-offset:3px;}
.pf-cards{display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:14px; margin-top:18px;}
.pf-cards[hidden]{display:none;}
.pf > .pf-cards:first-child{margin-top:0;}
.pf-cards.is-single{grid-template-columns:minmax(0, 340px);}
.pf-card{position:relative; border:1px solid rgba(227,190,114,0.2); border-radius:4px; padding:18px 18px 16px; background:rgba(247,240,228,0.035);
  display:flex; flex-direction:column; min-width:0;}
.pf-card::before{content:''; position:absolute; left:18px; right:18px; top:0; height:2px; background:linear-gradient(90deg, var(--crest-gold), rgba(227,190,114,0));}
.pf-card.is-best{border-color:rgba(227,190,114,0.65); background:rgba(201,162,75,0.10);}
.pf-badge{position:absolute; top:-11px; right:14px; background:var(--crest-gold); color:#2A1E16; font-family:var(--f-clean); font-size:0.66rem; letter-spacing:0.14em;
  text-transform:uppercase; padding:4px 9px; border-radius:2px;}
.pf-name{font-family:var(--f-clean); font-size:0.8rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--crest-honey); line-height:1.35;}
.pf-sub{font-size:0.82rem; color:rgba(247,240,228,0.6); margin-top:4px; line-height:1.4;}
.pf-price{margin-top:auto; padding-top:14px;}
.pf-amt{font-family:var(--f-display); font-size:2.1rem; line-height:1.05; color:var(--crest-cream); white-space:nowrap;}
.pf-pp{font-size:0.78rem; color:rgba(247,240,228,0.62); letter-spacing:0.04em; margin-top:2px;}
.pf-total{margin-top:12px; padding-top:10px; border-top:1px dashed rgba(227,190,114,0.3); font-size:0.86rem; color:rgba(247,240,228,0.78);}
.pf-total-num{color:var(--crest-cream); font-weight:600;}
.pf-request{display:inline-block; font-family:var(--f-clean); font-size:0.9rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--crest-gold);
  border-bottom:1px solid rgba(227,190,114,0.6); padding-bottom:2px;}
.pf-request:hover{color:var(--crest-honey);}
.pf-card.is-request .pf-price{padding-top:18px;}
.pf-extra{margin-top:16px; padding-top:14px; border-top:1px solid rgba(227,190,114,0.16); display:flex; flex-direction:column; gap:8px;}
.pf-extra-line{display:flex; flex-wrap:wrap; align-items:baseline; gap:6px 14px; font-size:0.9rem; color:rgba(247,240,228,0.78);}
@media (max-width:700px){
  .pf{padding:18px 14px 16px;}
  .pf-cards{grid-template-columns:1fr 1fr; gap:10px;}
  .pf-cards.is-single{grid-template-columns:1fr;}
  .pf-card{padding:16px 12px 14px;}
  .pf-amt{font-size:1.6rem;}
  .pf-chip{min-width:42px; height:42px;}
}
@media (max-width:420px){ .pf-cards{grid-template-columns:1fr;} }

/* "Price on request" packages */
.pkg-detail-price .amt.amt-text{font-size:1.6rem;}
.pkg-price .amt.amt-text{font-size:1.45rem;}
.pf-request-note{background:#1E150E; color:var(--crest-cream); border:1px solid rgba(227,190,114,0.28); border-radius:6px; padding:20px 22px; margin:4px 0 22px; max-width:1100px;}
.pf-request-note p{color:rgba(247,240,228,0.82); margin:0 0 12px; line-height:1.7;}
