/* ═══════════════════════════════════════════════════════════
   FELT — shared.css  (clean rewrite, no accumulated layers)
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --black:#08080A;--sand:#F2EDE4;--gold:#BFA054;--gold-light:#D4B978;
  --green-deep:#0E2318;--green-felt:#163D28;
  --muted:#6B6560;--muted-light:#9A9590;
  --border:rgba(191,160,84,0.18);
  --nav-h:64px;
  --fd:'Cormorant Garamond',Georgia,serif;
  --fm:'Courier Prime','Courier New',monospace;
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;text-size-adjust:100%}
body{
  background:var(--black);color:var(--sand);
  font-family:var(--fm);font-weight:400;line-height:1.7;
  overflow-x:hidden}
body::after{
  content:'';position:fixed;inset:0;pointer-events:none;z-index:999;opacity:.4;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E")}

/* ── NAVIGATION ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  height:var(--nav-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 3.5rem;
  background:rgba(8,8,10,0.97);
  border-bottom:1px solid var(--border)}
.nav-logo{font-family:var(--fd);font-size:1.5rem;font-weight:300;letter-spacing:.35em;color:var(--gold);text-decoration:none}
.nav-links{display:flex;gap:2rem;list-style:none;align-items:center}
.nav-links a{color:var(--muted);text-decoration:none;font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;transition:color .2s}
.nav-links a:hover{color:var(--sand)}
.nav-cta{border:1px solid var(--gold)!important;color:var(--gold)!important;padding:.5rem 1.2rem}
.nav-cta:hover{background:var(--gold)!important;color:var(--black)!important}

/* ── LANGUAGE DROPDOWN ── */
.lang-switch{position:relative;display:flex;align-items:center}
.lang-trigger{
  display:flex;align-items:center;gap:.5rem;
  cursor:pointer;padding:.45rem .8rem;
  border:1px solid var(--border);
  color:var(--muted);font-family:var(--fm);font-size:.65rem;
  letter-spacing:.1em;text-transform:uppercase;
  transition:all .2s;background:transparent;white-space:nowrap;line-height:1}
.lang-trigger:hover{color:var(--sand);border-color:rgba(191,160,84,.4)}
.lang-trigger-globe{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:1.5;flex-shrink:0}
.lang-trigger-label{font-size:.65rem;letter-spacing:.1em}
.lang-trigger-caret{width:8px;height:5px;stroke:currentColor;fill:none;stroke-width:2;transition:transform .25s;flex-shrink:0}
.lang-switch.open .lang-trigger-caret{transform:rotate(180deg)}
.lang-switch.open .lang-trigger{color:var(--gold);border-color:rgba(191,160,84,.4)}
.lang-dropdown{
  display:none;position:absolute;top:calc(100% + 6px);right:0;
  background:#0a1a11;border:1px solid rgba(191,160,84,.25);
  min-width:170px;z-index:1000;
  box-shadow:0 12px 40px rgba(0,0,0,.9);overflow:hidden}
.lang-switch.open .lang-dropdown{display:block}
.lang-dropdown a{
  display:flex;align-items:center;justify-content:space-between;
  padding:.7rem 1rem;
  color:var(--muted);text-decoration:none;
  font-family:var(--fm);font-size:.68rem;letter-spacing:.08em;
  direction:ltr!important;
  transition:background .15s,color .15s;
  border-bottom:1px solid rgba(191,160,84,.1)}
.lang-dropdown a:last-child{border-bottom:none}
.lang-dropdown a:hover{color:var(--sand);background:rgba(255,255,255,.05)}
.lang-dropdown a.active{color:var(--gold);background:rgba(191,160,84,.06)}
.lang-dropdown .ld-label{font-size:.65rem;letter-spacing:.1em;text-transform:uppercase}
.lang-dropdown .ld-native{font-size:.7rem;opacity:.55;letter-spacing:0}
/* Always LTR inside dropdown regardless of page direction */
.lang-dropdown,.lang-dropdown *{direction:ltr!important;unicode-bidi:isolate}

/* ── HAMBURGER ── */
.hamburger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  cursor:pointer;padding:.75rem .5rem;background:none;border:none;
  z-index:1001;position:relative}
.hamburger span{display:block;width:22px;height:1.5px;background:var(--sand);transition:all .3s;border-radius:1px}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* ── MOBILE MENU ── */
/* Rendered as sibling of <nav>, not child — avoids backdrop-filter inheritance */
.mobile-menu{
  /* CRITICAL: hidden by default — shown only via JS adding .open class */
  display:none!important;
  position:fixed;inset:0;
  z-index:500;
  background:#08080A}
.mobile-menu.open{
  /* JS adds .open — this overrides display:none */
  display:flex!important;
  flex-direction:column;align-items:center;justify-content:center}
/* Inner wrapper carries the visual background so it paints independently */
.mm-inner{
  width:100%;height:100%;
  display:flex;flex-direction:column;align-items:center;
  /* justify-content:center removed — causes scroll on small phones */
  /* Instead use auto margins to centre the block */
  justify-content:center;
  padding:0 1.5rem;
  background:#08080A;
  gap:0;overflow:hidden}
.mm-inner>a{
  font-family:var(--fd);
  /* clamp: 1.4rem minimum on 320px phones, 1.8rem on larger */
  font-size:clamp(1.35rem,5.5vw,1.7rem);
  font-weight:300;
  color:var(--sand);text-decoration:none;
  /* vertical padding scales with viewport height */
  padding:clamp(.45rem,1.8vh,.8rem) 0;
  border-bottom:1px solid rgba(191,160,84,.12);
  width:100%;max-width:320px;text-align:center;
  transition:color .2s;flex-shrink:0}
.mm-inner>a:last-of-type{border-bottom:none}
.mm-inner>a:active,.mm-inner>a:hover{color:var(--gold)}
.mm-inner .mm-cta{
  color:var(--gold)!important;
  font-family:var(--fm)!important;
  font-size:clamp(.65rem,2.5vw,.8rem)!important;
  letter-spacing:.15em!important;text-transform:uppercase!important}
.mm-lang{
  display:flex;margin-top:clamp(1rem,2.5vh,1.5rem);
  border:1px solid rgba(191,160,84,.2);overflow:hidden;
  width:100%;max-width:320px;flex-shrink:0}
.mm-lang a{
  flex:1;text-align:center;
  padding:clamp(.5rem,1.5vh,.75rem) .25rem;
  font-family:var(--fm);font-size:.68rem;letter-spacing:.06em;text-transform:uppercase;
  color:var(--muted);text-decoration:none;
  border-right:1px solid rgba(191,160,84,.15);
  background:#08080A;transition:all .15s}
.mm-lang a:last-child{border-right:none}
.mm-lang a.active{color:var(--gold);background:#0d1f14}
.mm-lang a:active{color:var(--sand)}

/* ── FLOATING WHATSAPP (mobile only) ── */
.wa-float{
  position:fixed;bottom:1.5rem;right:1.5rem;z-index:300;
  display:none;align-items:center;gap:.6rem;
  background:#25D366;color:#fff;text-decoration:none;
  padding:.75rem 1.2rem;font-family:var(--fm);font-size:.65rem;
  letter-spacing:.15em;text-transform:uppercase;
  border-radius:2px;box-shadow:0 4px 20px rgba(37,211,102,.3);
  transition:background .2s;white-space:nowrap}
.wa-float:hover{background:#20bc5a}
.wa-float svg{width:16px;height:16px;fill:#fff;flex-shrink:0}

/* ── HERO ── */
/* Desktop: text at bottom of full-height section */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;flex-direction:column;
  /* flex-start + auto margin = content pushed to bottom, but never clips at top */
  justify-content:flex-start;
  padding:calc(var(--nav-h) + 2rem) 3.5rem 5.5rem;
  overflow:hidden}
/* Push hero content to bottom — same visual as flex-end but without top clip */
.hero-content{
  position:relative;z-index:3;max-width:760px;
  margin-top:auto}
.hero-photo-root{position:absolute;inset:0;z-index:0;background:url('hero-bg.webp') center/cover no-repeat}
.hero-photo{position:absolute;inset:0;z-index:0;background:url('/hero-bg.webp') center/cover no-repeat}
.hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(135deg,rgba(8,8,10,.85) 0%,rgba(14,35,24,.7) 50%,rgba(8,8,10,.6) 100%)}
.hero-grid{position:absolute;inset:0;z-index:2;background-image:linear-gradient(rgba(191,160,84,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(191,160,84,.03) 1px,transparent 1px);background-size:100px 100px}
.hero-eyebrow{font-size:.62rem;letter-spacing:.28em;text-transform:uppercase;color:var(--gold);margin-bottom:1.75rem;opacity:0;animation:fadeUp .9s .2s forwards}
.hero-title{font-family:var(--fd);font-size:clamp(3rem,6.5vw,5.8rem);font-weight:300;line-height:1.05;margin-bottom:1.75rem;opacity:0;animation:fadeUp .9s .4s forwards}
.hero-title em{font-style:italic;color:var(--gold-light)}
.hero-sub{font-size:.9rem;color:var(--muted-light);max-width:500px;line-height:1.9;margin-bottom:1.5rem;opacity:0;animation:fadeUp .9s .6s forwards}
.hero-actions{display:flex;gap:1rem;align-items:center;opacity:0;animation:fadeUp .9s .8s forwards;flex-wrap:wrap}
.btn-gold{background:var(--gold);color:var(--black);border:none;padding:.85rem 2rem;font-family:var(--fm);font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;cursor:pointer;text-decoration:none;display:inline-block;transition:background .2s}
.btn-gold:hover{background:var(--gold-light)}
.btn-outline{background:transparent;border:1px solid rgba(191,160,84,.3);color:var(--muted-light);padding:.85rem 2rem;font-family:var(--fm);font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;cursor:pointer;text-decoration:none;display:inline-block;transition:all .2s}
.btn-outline:hover{border-color:var(--gold);color:var(--sand)}
.btn-wa{background:transparent;border:1px solid rgba(37,211,102,.25);color:#25D366;padding:.85rem 2rem;font-family:var(--fm);font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem;transition:all .2s}
.btn-wa:hover{background:rgba(37,211,102,.08)}
.hero-aside{position:absolute;right:3.5rem;bottom:5.5rem;z-index:3;display:flex;flex-direction:column;gap:2rem;text-align:right;opacity:0;animation:fadeLeft .9s 1.1s forwards}
.aside-num{font-family:var(--fd);font-size:2.2rem;font-weight:300;color:var(--gold);display:block;line-height:1}
.aside-label{font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(242,237,228,.4);line-height:1.8}

/* ── SECTIONS ── */
section{position:relative;z-index:1;padding:6rem 3.5rem}
.s-label{font-size:.6rem;letter-spacing:.28em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem}
.s-title{font-family:var(--fd);font-size:clamp(1.9rem,3.5vw,3rem);font-weight:300;line-height:1.15;margin-bottom:1.25rem}
.s-title em{font-style:italic;color:var(--gold-light)}
.s-sub{font-size:.88rem;color:var(--muted-light);max-width:520px;line-height:1.9}
.gold-line{width:3rem;height:1px;background:var(--gold);opacity:.35;margin:2rem 0}

/* ── DESTINATION ── */
.dest-section{position:relative;border-top:1px solid var(--border);overflow:hidden}
.dest-photo-bg-root{position:absolute;inset:0;z-index:0;background:url('dest-bg.webp') center/cover no-repeat}
.dest-photo-bg{position:absolute;inset:0;z-index:0;background:url('/dest-bg.webp') center/cover no-repeat}
.dest-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(8,8,10,.96) 0%,rgba(8,8,10,.9) 55%,rgba(14,35,24,.7) 100%)}
.dest-content{position:relative;z-index:2}
.dest-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;margin-top:4rem;align-items:start}
.dest-facts{display:flex;flex-direction:column}
.dest-fact{display:flex;justify-content:space-between;align-items:baseline;padding:1.1rem 0;border-bottom:1px solid var(--border)}
.dest-fact:first-child{padding-top:0}
.dest-fact:last-child{border-bottom:none}
.fact-label{font-size:.78rem;color:var(--muted)}
.fact-value{font-family:var(--fd);font-size:1.1rem;font-weight:300;color:var(--sand);text-align:right}
.fact-value em{font-style:italic;color:var(--gold-light)}
.dest-quote{background:rgba(22,61,40,.65);border:1px solid var(--border);padding:2.5rem;position:sticky;top:calc(var(--nav-h) + 1rem)}
.dq-text{font-family:var(--fd);font-size:1.2rem;font-style:italic;font-weight:300;line-height:1.5;color:var(--sand);margin-bottom:1.25rem}
.dq-source{font-size:.6rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold)}
.dq-divider{width:2rem;height:1px;background:var(--gold);opacity:.4;margin:1.25rem 0}
.dq-note{font-size:.8rem;color:var(--muted);line-height:1.75}

/* ── SERVICES ── */
.services-section{background:var(--green-deep);border-top:1px solid var(--border)}
.services-intro{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:end;margin-bottom:4rem}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border)}
.service-card{background:var(--green-deep);padding:2rem 1.75rem;transition:background .2s}
.service-card:hover{background:#122a1c}
.sc-num{font-size:.58rem;letter-spacing:.2em;color:var(--gold);text-transform:uppercase;margin-bottom:1.25rem;display:block}
.sc-title{font-family:var(--fd);font-size:1.1rem;font-weight:400;margin-bottom:.5rem;color:var(--sand)}
.sc-desc{font-size:.8rem;color:var(--muted);line-height:1.7}

/* ── HOW IT WORKS ── */
.how-section{background:var(--black);border-top:1px solid var(--border)}
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;margin-top:4rem;align-items:start}
.how-steps{display:flex;flex-direction:column}
.how-step{display:flex;gap:2rem;padding:2rem 0;border-bottom:1px solid var(--border)}
.how-step:first-child{padding-top:0}
.how-step:last-child{border-bottom:none}
.hs-num{font-family:var(--fd);font-size:2.5rem;font-weight:300;color:rgba(191,160,84,.2);line-height:1;min-width:3rem;padding-top:.15rem}
.hs-body h3{font-family:var(--fd);font-size:1.15rem;font-weight:400;margin-bottom:.4rem;color:var(--sand)}
.hs-body p{font-size:.82rem;color:var(--muted);line-height:1.75}
.contact-card{background:var(--green-felt);border:1px solid var(--border);padding:2.5rem;position:sticky;top:calc(var(--nav-h) + 1rem)}
.cc-label{font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:2rem}
.cc-title{font-family:var(--fd);font-size:1.6rem;font-weight:300;line-height:1.2;margin-bottom:1rem}
.cc-title em{font-style:italic;color:var(--gold-light)}
.cc-sub{font-size:.82rem;color:var(--muted);line-height:1.75;margin-bottom:2rem}
.cc-channels{display:flex;flex-direction:column;margin-bottom:1.5rem}
.cc-channel{display:flex;align-items:center;gap:.75rem;font-size:.8rem;color:var(--muted-light);padding:.6rem 0;border-bottom:1px solid var(--border)}
.cc-channel:last-child{border-bottom:none}
.cc-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.btn-wa-full{background:transparent;border:1px solid rgba(37,211,102,.3);color:#25D366;padding:.8rem 1.25rem;font-family:var(--fm);font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;cursor:pointer;text-decoration:none;display:flex;align-items:center;justify-content:center;gap:.5rem;transition:all .2s;margin-bottom:.75rem}

/* ── INTEL ── */
.intel-section{border-top:1px solid var(--border);background:var(--black)}
.intel-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:var(--border);margin-top:4rem}
.intel-card{position:relative;overflow:hidden;min-height:260px;display:flex;flex-direction:column;justify-content:flex-end}
.intel-card-photo{position:absolute;inset:0;background:var(--green-deep) center/cover no-repeat;transition:transform .4s}
.intel-card:hover .intel-card-photo{transform:scale(1.03)}
.intel-card-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,8,10,.15) 0%,rgba(8,8,10,.92) 65%)}
.intel-card-body{position:relative;z-index:2;padding:1.75rem}
.ic-flag{font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem;display:block}
.ic-title{font-family:var(--fd);font-size:1.2rem;font-weight:400;margin-bottom:.5rem;color:var(--sand)}
.ic-body{font-size:.78rem;color:var(--muted);line-height:1.75}
.ic-highlight{margin-top:.75rem;font-size:.73rem;color:var(--gold-light);font-style:italic}

/* ── BLOG GRID ── */
.blog-section{background:var(--green-deep);border-top:1px solid var(--border)}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);margin-top:4rem}
.blog-card{background:var(--green-deep);padding:2rem;transition:background .2s;text-decoration:none;display:block}
.blog-card:hover{background:#122a1c}
.blog-tag{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.75rem;display:block}
.blog-title{font-family:var(--fd);font-size:1.1rem;font-weight:400;color:var(--sand);margin-bottom:.6rem;line-height:1.25}
.blog-excerpt{font-size:.78rem;color:var(--muted);line-height:1.7;margin-bottom:1rem}
.blog-read{font-size:.62rem;letter-spacing:.15em;text-transform:uppercase;color:var(--gold-light)}

/* ── FAQ ── */
.faq-section{background:var(--black);border-top:1px solid var(--border)}
.faq-grid{max-width:720px;margin-top:3rem;display:flex;flex-direction:column}
.faq-item{border-bottom:1px solid var(--border);padding:1.5rem 0;cursor:pointer;min-height:44px;-webkit-tap-highlight-color:rgba(191,160,84,.15);touch-action:manipulation}
.faq-item:first-child{padding-top:0}
.faq-q{display:flex;justify-content:space-between;align-items:flex-start;gap:1.5rem;min-height:44px;width:100%;background:none;border:0;padding:0;margin:0;font:inherit;color:inherit;text-align:inherit;cursor:pointer}
.faq-q:focus-visible{outline:2px solid var(--gold);outline-offset:4px}
.faq-q-text{font-family:var(--fd);font-size:1.05rem;font-weight:400;color:var(--sand);line-height:1.3}
.faq-toggle{color:var(--gold);font-size:1.2rem;flex-shrink:0;transition:transform .25s;user-select:none}
.faq-item.open .faq-toggle{transform:rotate(45deg)}
.faq-a{font-size:.82rem;color:var(--muted);line-height:1.8;max-height:0;overflow:hidden;transition:max-height .35s ease,padding .25s;padding-top:0}
.faq-item.open .faq-a{max-height:300px;padding-top:1rem}

/* ── WAITLIST ── */
.waitlist-section{position:relative;border-top:1px solid var(--border);padding:7rem 3.5rem;overflow:hidden}
.waitlist-photo-root{position:absolute;inset:0;z-index:0;background:url('waitlist-bg.webp') center/cover no-repeat}
.waitlist-photo{position:absolute;inset:0;z-index:0;background:url('/waitlist-bg.webp') center/cover no-repeat}
.waitlist-overlay{position:absolute;inset:0;z-index:1;background:rgba(8,8,10,.88)}
.waitlist-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center;max-width:1000px}
.wl-form-wrap{background:rgba(14,35,24,.9);border:1px solid var(--border);padding:2.5rem}
.wl-form-title{font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:2rem}
.wl-field{margin-bottom:1rem}
.wl-field label{display:block;font-size:.6rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);margin-bottom:.4rem}
.wl-field input,.wl-field select{width:100%;background:rgba(255,255,255,.05);border:1px solid var(--border);padding:.7rem 1rem;color:var(--sand);font-family:var(--fm);font-size:.82rem;outline:none;transition:border-color .2s;-webkit-appearance:none;appearance:none}
.wl-field input::placeholder{color:var(--muted)}
.wl-field input:focus,.wl-field select:focus{border-color:rgba(191,160,84,.5)}
.wl-field select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.5rem;cursor:pointer}
.wl-field select option{background:var(--green-deep);color:var(--sand)}
.wl-submit{width:100%;background:var(--gold);color:var(--black);border:none;padding:.9rem;margin-top:.5rem;font-family:var(--fm);font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;cursor:pointer;transition:background .2s}
.wl-submit:hover{background:var(--gold-light)}
.wl-note{font-size:.6rem;letter-spacing:.1em;color:var(--muted);margin-top:1rem;text-align:center}
.wl-success{display:none;text-align:center;padding:2rem 0}
.wl-success.show{display:block}
.wl-success .success-title{font-family:var(--fd);font-size:1.5rem;font-weight:300;color:var(--gold-light);margin-bottom:.75rem}
.wl-success p{font-size:.82rem;color:var(--muted)}

/* ── ARTICLE PAGES ── */
.article-wrap{max-width:720px;margin:0 auto;padding:calc(var(--nav-h) + 3rem) 2rem 6rem}
.article-tag{font-size:.6rem;letter-spacing:.25em;text-transform:uppercase;color:var(--gold);display:block;margin-bottom:1.25rem}
.article-h1{font-family:var(--fd);font-size:clamp(2.2rem,4.5vw,3.5rem);font-weight:300;line-height:1.1;margin-bottom:1.5rem;color:var(--sand)}
.article-h1 em{font-style:italic;color:var(--gold-light)}
.article-meta{display:flex;gap:2rem;font-size:.65rem;letter-spacing:.12em;color:var(--muted);margin-bottom:3rem;padding-bottom:2rem;border-bottom:1px solid var(--border);flex-wrap:wrap}
.article-intro{font-family:var(--fd);font-size:1.15rem;font-weight:300;line-height:1.7;color:var(--muted-light);margin-bottom:2.5rem;font-style:italic}
.article-h2{font-family:var(--fd);font-size:1.55rem;font-weight:400;color:var(--sand);margin:2.5rem 0 1rem;line-height:1.2}
.article-h2 em{font-style:italic;color:var(--gold-light)}
.article-p{font-size:.88rem;color:var(--muted-light);line-height:1.9;margin-bottom:1.25rem}
.fact-box{background:var(--green-deep);border:1px solid var(--border);border-left:3px solid var(--gold);padding:1.5rem 1.75rem;margin:2rem 0}
.fact-box-title{font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem}
.fact-row{display:flex;justify-content:space-between;align-items:baseline;padding:.6rem 0;border-bottom:1px solid var(--border);font-size:.85rem;gap:1rem}
.fact-row:last-child{border-bottom:none}
.fact-row .fl{color:var(--muted);flex-shrink:0}
.fact-row .fr{color:var(--sand);font-family:var(--fd);font-size:1rem;text-align:right}
.highlight-box{background:rgba(191,160,84,.06);border:1px solid rgba(191,160,84,.2);padding:1.5rem 1.75rem;margin:2rem 0;font-size:.84rem;color:var(--muted-light);line-height:1.85}
.highlight-box strong{color:var(--gold-light)}
.disclaimer-box{background:rgba(191,84,54,.05);border:1px solid rgba(191,120,84,.18);padding:1.25rem 1.5rem;margin:2rem 0;font-size:.78rem;color:var(--muted);line-height:1.8;font-style:italic}
.step-list{display:flex;flex-direction:column;gap:1rem;margin:1.5rem 0}
.step-item{display:flex;gap:1.25rem;align-items:flex-start}
.step-num{font-family:var(--fd);font-size:1.5rem;font-weight:300;color:rgba(191,160,84,.25);line-height:1;min-width:2.5rem;flex-shrink:0}
.step-body{font-size:.84rem;color:var(--muted-light);line-height:1.75}
.step-body strong{color:var(--sand);display:block;margin-bottom:.2rem;font-family:var(--fd);font-size:1rem;font-weight:400}
.cta-box{background:var(--green-felt);border:1px solid var(--border);padding:2rem;margin:3rem 0;text-align:center}
.cta-box p{font-family:var(--fd);font-size:1.1rem;font-style:italic;color:var(--sand);margin-bottom:1.25rem}
.back-link{display:inline-flex;align-items:center;gap:.5rem;font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);text-decoration:none;margin-bottom:2rem;transition:color .2s}
.back-link:hover{color:var(--gold)}

/* ── BLOG INDEX ── */
.blog-hero{padding:calc(var(--nav-h) + 4rem) 3.5rem 5rem;border-bottom:1px solid var(--border)}
.blog-hero-label{font-size:.6rem;letter-spacing:.28em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem}
.blog-hero-title{font-family:var(--fd);font-size:clamp(2.5rem,5vw,4rem);font-weight:300;line-height:1.1;margin-bottom:1rem}
.blog-hero-title em{font-style:italic;color:var(--gold-light)}
.blog-hero-sub{font-size:.9rem;color:var(--muted-light);max-width:540px;line-height:1.9}
.articles-wrap{padding:4rem 3.5rem 6rem}
.articles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border)}
.article-card{background:var(--black);padding:2rem;display:flex;flex-direction:column;text-decoration:none;transition:background .2s}
.article-card:hover{background:var(--green-deep)}
.article-card-tag{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.75rem;display:block}
.article-card-title{font-family:var(--fd);font-size:1.2rem;font-weight:400;color:var(--sand);margin-bottom:.75rem;line-height:1.25}
.article-card-excerpt{font-size:.8rem;color:var(--muted);line-height:1.75;margin-bottom:1.5rem;flex:1}
.article-card-meta{display:flex;justify-content:space-between;align-items:center;font-size:.6rem;letter-spacing:.1em;color:var(--muted)}
.article-card-read{color:var(--gold);letter-spacing:.15em;text-transform:uppercase}

/* ── FOOTER ── */
footer{border-top:1px solid var(--border);padding:2rem 3.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-logo{font-family:var(--fd);font-size:1.2rem;font-weight:300;letter-spacing:.3em;color:var(--gold)}
.footer-links{display:flex;gap:1.5rem;list-style:none;flex-wrap:wrap}
.footer-links a{color:var(--muted);text-decoration:none;font-size:.68rem;transition:color .2s}
.footer-links a:hover{color:var(--sand)}
.footer-copy{font-size:.6rem;color:var(--muted)}
.legal-bar{background:#050508;border-top:1px solid rgba(191,160,84,.06);padding:1.25rem 3.5rem;font-size:.6rem;color:rgba(107,101,96,.5);line-height:1.7}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeLeft{from{opacity:0;transform:translateX(22px)}to{opacity:1;transform:translateX(0)}}
@keyframes pulse-g{0%,100%{opacity:1}50%{opacity:.3}}
/* Visible by default (no-JS safe); only hidden/animated once JS adds .js-loaded */
.reveal{opacity:1;transform:none}
.js-loaded .reveal{opacity:0;transform:translateY(18px);transition:opacity .7s,transform .7s}
.js-loaded .reveal.visible{opacity:1;transform:none}

/* ── TOUCH ── */
.btn-gold,.btn-outline,.btn-wa,.btn-wa-full,.blog-card,.service-card,.nav-links a{
  -webkit-tap-highlight-color:rgba(191,160,84,.1);touch-action:manipulation}

/* ── RTL ── */
[dir="rtl"] nav{flex-direction:row-reverse}
[dir="rtl"] .nav-links{flex-direction:row-reverse}
[dir="rtl"] footer{flex-direction:row-reverse}
[dir="rtl"] .footer-links{flex-direction:row-reverse}
[dir="rtl"] .hero-content{text-align:right}
[dir="rtl"] .hero-actions{flex-direction:row-reverse}
[dir="rtl"] .hero-aside{left:3.5rem;right:auto}
[dir="rtl"] .dest-grid,[dir="rtl"] .services-intro,[dir="rtl"] .waitlist-inner{direction:rtl}
[dir="rtl"] .dest-fact,[dir="rtl"] .how-step,[dir="rtl"] .fact-row,[dir="rtl"] .step-item{flex-direction:row-reverse}
[dir="rtl"] .hs-body,[dir="rtl"] .contact-card,[dir="rtl"] .intel-card-body{text-align:right}
[dir="rtl"] .cc-channel{flex-direction:row-reverse}
[dir="rtl"] .wl-field label{text-align:right}
[dir="rtl"] .wl-note{text-align:right}
[dir="rtl"] .faq-q{flex-direction:row-reverse}
[dir="rtl"] .faq-q-text{text-align:right}
[dir="rtl"] .blog-card,.s-sub,[dir="rtl"] .s-title,[dir="rtl"] .s-label{text-align:right}
[dir="rtl"] .dq-text,[dir="rtl"] .dq-note,[dir="rtl"] .dq-source{text-align:right}
[dir="rtl"] .cc-sub,[dir="rtl"] .cc-title,[dir="rtl"] .cc-label{text-align:right}
[dir="rtl"] .fact-box{border-left:none;border-right:3px solid var(--gold)}
[dir="rtl"] .step-body,[dir="rtl"] .article-wrap,[dir="rtl"] .article-p,[dir="rtl"] .article-intro{text-align:right}
[dir="rtl"] .article-h1,[dir="rtl"] .article-h2,[dir="rtl"] .highlight-box,[dir="rtl"] .disclaimer-box,[dir="rtl"] .cta-box{text-align:right}
[dir="rtl"] .back-link{flex-direction:row-reverse}
[dir="rtl"] .lang-dropdown{right:auto;left:0}
[dir="rtl"] .hamburger{order:1}
[dir="rtl"] .mm-lang a{border-right:none;border-left:1px solid rgba(191,160,84,.15)}
[dir="rtl"] .mm-lang a:first-child{border-left:none}

/* ── MOBILE — single authoritative block ── */
@media(max-width:768px){
  /* Nav */
  nav{padding:0 1.25rem;height:var(--nav-h)}
  .nav-links{display:none}
  .lang-switch{display:none}   /* hidden in mobile nav — accessible via mm-lang */
  .hamburger{display:flex}
  .wa-float{display:flex}

  /* Hero — text starts BELOW nav, not at bottom of viewport */
  .hero{
    padding:calc(var(--nav-h) + 1.5rem) 1.5rem 3rem;
    justify-content:flex-start;
    min-height:100vh}
  .hero-title{font-size:clamp(2rem,8vw,3rem);margin-bottom:1rem;line-height:1.1}
  .hero-eyebrow{margin-bottom:1rem}
  .hero-sub{font-size:.85rem;margin-bottom:1.25rem;max-width:100%}
  .hero-actions{gap:.6rem}
  .btn-gold,.btn-outline,.btn-wa{padding:.7rem 1.1rem;font-size:.65rem}
  .hero-aside{display:none}

  /* Sections */
  section{padding:4rem 1.5rem}
  .dest-grid,.how-grid,.services-intro,.waitlist-inner{grid-template-columns:1fr;gap:2.5rem}
  .services-grid,.blog-grid,.intel-grid,.articles-grid{grid-template-columns:1fr}
  .blog-hero{padding:calc(var(--nav-h) + 2rem) 1.5rem 3rem}
  .articles-wrap{padding:3rem 1.5rem}
  .article-wrap{padding:calc(var(--nav-h) + 2rem) 1.5rem 4rem}
  footer{padding:1.5rem;flex-direction:column;align-items:flex-start}
  .legal-bar{padding:1.25rem 1.5rem}
  .dest-quote,.contact-card{position:static}
  .waitlist-section{padding:4rem 1.5rem}
}

/* ── DESKTOP — hide mobile elements ── */
@media(min-width:769px){
  .hamburger{display:none!important}
  .mobile-menu{display:none!important}
  .wa-float{display:none!important}
}


/* CWV: layout containment for article/service cards */
.service-card,.blog-card,.intel-card,.how-step{contain:layout style paint}
/* CWV: GPU-optimised animations only */
.wa-float,.tg-float{will-change:transform}
