/* =====================================================================
   North Star Travels — stylesheet
   ---------------------------------------------------------------------
   1  Tokens            8  Cards
   2  Reset             9  Forms
   3  Typography       10  Accordion & itinerary
   4  Layout           11  Detail pages
   5  Buttons & pills  12  Footer & mobile bar
   6  Header & nav     13  Utilities
   7  Hero & search    14  Responsive
   ===================================================================== */

/* ---------- 1. TOKENS ------------------------------------------------ */
:root{
  /* brand — deep-sea teal, the primary. Coral is the only accent. */
  --brand:#0E7C86;
  --brand-700:#0A5F68;
  --brand-800:#06424A;
  --brand-100:#D3EFF2;
  --tint:#F2FAFB;
  --accent:#E2583F;
  --accent-700:#C1442D;
  --accent-100:#FCE7E1;

  /* neutrals — warmed toward the teal so darks never read navy */
  --ink:#0F1D22;
  --ink-2:#25383F;
  --muted:#5A6E76;
  --line:#E1EAEC;
  --line-2:#EFF5F6;
  --white:#FFFFFF;

  /* status */
  --green:#0E8F5E;
  --green-100:#E2F6EE;
  --amber:#B26B00;
  --amber-100:#FFF4E0;
  --red:#C4342B;

  /* type */
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --display:'Sora',var(--font);

  /* space & shape — a shade tighter than a pill-shaped OTA */
  --r-sm:6px; --r:10px; --r-lg:16px; --r-xl:22px; --r-full:999px;
  --shadow-1:0 1px 2px rgba(15,29,34,.06), 0 1px 3px rgba(15,29,34,.05);
  --shadow-2:0 4px 12px rgba(15,29,34,.07), 0 2px 4px rgba(15,29,34,.04);
  --shadow-3:0 18px 40px rgba(15,29,34,.12), 0 4px 12px rgba(15,29,34,.06);
  --shadow-brand:0 10px 24px rgba(14,124,134,.26);
  --wrap:1180px;
  --header-h:64px;
}

/* ---------- 2. RESET ------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:96px}
body{
  margin:0;font-family:var(--font);font-size:16px;line-height:1.6;
  color:var(--ink);background:var(--white);-webkit-font-smoothing:antialiased;
}
img,svg{max-width:100%;display:block;height:auto}
button,input,select,textarea{font:inherit;color:inherit}
button{cursor:pointer}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
ul,ol{margin:0;padding:0}
li{list-style:none}
table{border-collapse:collapse;width:100%}
:focus-visible{outline:3px solid var(--accent);outline-offset:2px;border-radius:4px}
.skip{position:absolute;left:-9999px;top:0;background:var(--ink);color:#fff;padding:.7rem 1.1rem;z-index:200;border-radius:0 0 var(--r-sm) 0}
.skip:focus{left:0}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  html{scroll-behavior:auto}
}

/* ---------- 3. TYPOGRAPHY -------------------------------------------- */
h1,h2,h3,h4,h5{font-family:var(--display);margin:0;line-height:1.18;letter-spacing:-.02em;font-weight:800;color:var(--ink)}
h1{font-size:clamp(1.95rem,4vw,3rem)}
h2{font-size:clamp(1.55rem,3vw,2.35rem)}
h3{font-size:clamp(1.15rem,1.8vw,1.45rem);font-weight:700}
h4{font-size:1.05rem;font-weight:700}
p{margin:0 0 1rem}
p:last-child{margin-bottom:0}
.lede{font-size:1.1rem;color:var(--muted);max-width:62ch}
.eyebrow{
  font-family:var(--display);font-size:.76rem;font-weight:800;letter-spacing:.12em;
  text-transform:uppercase;color:var(--brand);margin:0 0 .55rem
}
.section-head{max-width:70ch;margin-bottom:2rem}
.section-head.center{margin-inline:auto;text-align:center}
.section-head p{color:var(--muted);margin:.7rem 0 0}
small,.small{font-size:.86rem}
.muted{color:var(--muted)}
strong{font-weight:700}

/* ---------- 4. LAYOUT ------------------------------------------------ */
.wrap{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:20px}
section{padding:clamp(2.75rem,6vw,4.75rem) 0}
.tinted{background:var(--tint)}
.inked{background:var(--ink);color:#E4EFF1}
.inked h2,.inked h3{color:#fff}
.inked .muted{color:#9FB4BA}
.grid{display:grid;gap:22px}
.g-2{grid-template-columns:repeat(2,1fr)}
.g-3{grid-template-columns:repeat(3,1fr)}
.g-4{grid-template-columns:repeat(4,1fr)}
.row{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.row.between{justify-content:space-between}
.stack{display:flex;flex-direction:column;gap:.5rem}
hr{border:0;border-top:1px solid var(--line);margin:2rem 0}

/* ---------- 5. BUTTONS & PILLS --------------------------------------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.8rem 1.35rem;border-radius:var(--r-full);border:1.5px solid transparent;
  font-family:var(--display);font-weight:700;font-size:.95rem;line-height:1.2;
  text-decoration:none;transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
  white-space:nowrap
}
.btn:hover{text-decoration:none;transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-primary{background:var(--brand);color:#fff;box-shadow:var(--shadow-brand)}
.btn-primary:hover{background:var(--brand-700)}
.btn-accent{background:var(--accent);color:#fff;box-shadow:0 10px 24px rgba(226,88,63,.28)}
.btn-accent:hover{background:var(--accent-700)}
.btn-ghost{background:transparent;color:var(--brand);border-color:var(--brand-100)}
.btn-ghost:hover{background:var(--tint);border-color:var(--brand)}
.btn-white{background:#fff;color:var(--brand)}
.btn-wa{background:#25D366;color:#0B2F19}
.btn-wa:hover{background:#1FBA59}
.btn-lg{padding:1rem 1.7rem;font-size:1.02rem}
.btn-sm{padding:.55rem 1rem;font-size:.86rem}
.btn-block{width:100%}
.btn[disabled],.btn.is-busy{opacity:.65;pointer-events:none}

.pill{
  display:inline-flex;align-items:center;gap:.4rem;padding:.32rem .7rem;
  border-radius:var(--r-full);font-size:.78rem;font-weight:700;font-family:var(--display);
  background:var(--brand-100);color:var(--brand-800);white-space:nowrap
}
.pill-accent{background:var(--accent-100);color:#8A2A18}
.pill-green{background:var(--green-100);color:#06603C}
.pill-amber{background:var(--amber-100);color:#7A4A00}
.pill-line{background:#fff;border:1px solid var(--line);color:var(--ink-2)}
.card .pill{white-space:normal;text-align:left}

.chip{
  display:inline-flex;align-items:center;gap:.35rem;padding:.5rem .95rem;border-radius:var(--r-full);
  border:1px solid var(--line);background:#fff;font-size:.88rem;font-weight:600;color:var(--ink-2);
  cursor:pointer;transition:.15s
}
.chip:hover{border-color:var(--brand);color:var(--brand)}
.chip[aria-pressed="true"],.chip.is-on{background:var(--brand);border-color:var(--brand);color:#fff}

/* ---------- 6. HEADER & NAV ------------------------------------------ */
.topbar{background:var(--ink);color:#C4D6DA;font-size:.82rem}
.topbar .wrap{display:flex;justify-content:space-between;align-items:center;gap:1rem;min-height:38px;flex-wrap:wrap}
.topbar a{color:#fff;font-weight:600}
.topbar .tb-left{display:flex;gap:1.25rem;flex-wrap:wrap;align-items:center}
.topbar .tb-ico{margin-right:.4rem}
.topbar .tb-right{display:flex;gap:1rem;align-items:center}

.site-header{
  position:sticky;top:0;z-index:100;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid var(--line)
}
.site-header .wrap{display:flex;align-items:center;gap:1.25rem;min-height:var(--header-h)}
.brand{display:flex;align-items:center;gap:.6rem;font-family:var(--display);font-weight:800;
  font-size:1.12rem;color:var(--ink);letter-spacing:-.02em;text-decoration:none;flex-shrink:0}
.brand:hover{text-decoration:none}
.brand .mark{
  width:36px;height:36px;border-radius:11px;flex-shrink:0;
  background:linear-gradient(135deg,var(--brand),#17A2AE);color:#fff;
  display:grid;place-items:center;font-size:1.05rem;box-shadow:var(--shadow-brand)
}
.brand em{display:block;font-size:.63rem;font-weight:600;font-style:normal;color:var(--muted);
  letter-spacing:.1em;text-transform:uppercase;margin-top:1px}

.nav{margin-left:auto;display:flex;align-items:center;gap:.15rem}
.nav a{
  padding:.55rem .78rem;border-radius:var(--r-sm);font-weight:600;font-size:.94rem;
  color:var(--ink-2);text-decoration:none;transition:.15s
}
.nav a:hover{background:var(--tint);color:var(--brand);text-decoration:none}
.nav a[aria-current="page"]{color:var(--brand);background:var(--brand-100)}
.header-cta{margin-left:.6rem}
.burger{
  margin-left:auto;display:none;width:44px;height:44px;border:1px solid var(--line);
  border-radius:var(--r-sm);background:#fff;align-items:center;justify-content:center
}
.burger span{display:block;width:19px;height:2px;background:var(--ink);position:relative}
.burger span::before,.burger span::after{content:'';position:absolute;left:0;width:19px;height:2px;background:var(--ink)}
.burger span::before{top:-6px}.burger span::after{top:6px}

.drawer{
  position:fixed;inset:0 0 0 auto;width:min(88%,340px);background:#fff;z-index:150;visibility:hidden;
  transform:translateX(100%);transition:transform .25s ease,visibility .25s ease;padding:1.1rem;overflow-y:auto;
  box-shadow:var(--shadow-3);display:flex;flex-direction:column;gap:.3rem
}
.drawer.is-open{transform:translateX(0);visibility:visible}
.drawer a{padding:.85rem .6rem;border-radius:var(--r-sm);font-weight:600;color:var(--ink);border-bottom:1px solid var(--line-2)}
.drawer .btn{margin-top:.8rem}
.drawer-close{align-self:flex-end;background:none;border:0;font-size:1.6rem;line-height:1;padding:.2rem .5rem;color:var(--muted)}
.scrim{position:fixed;inset:0;background:rgba(15,29,34,.45);z-index:140;opacity:0;pointer-events:none;transition:opacity .25s}
.scrim.is-open{opacity:1;pointer-events:auto}

/* ---------- 7. HERO & SEARCH WIDGET --------------------------------- */
.hero{position:relative;color:#fff;overflow:hidden;background:var(--brand-800);padding:0}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(105deg,rgba(6,32,37,.90) 0%,rgba(8,58,64,.74) 45%,rgba(14,124,134,.42) 100%)
}
.hero .wrap{position:relative;z-index:2;padding-block:clamp(2rem,5vw,3.5rem)}
.hero h1{color:#fff;max-width:20ch}
.hero .lede{color:#D6E7EA;margin-top:1rem;max-width:52ch}
.hero-trust{display:flex;gap:1.4rem;flex-wrap:wrap;margin-top:1.5rem;font-size:.9rem;color:#C7DCE0}
.hero-trust b{color:#fff;display:block;font-family:var(--display);font-size:1.4rem;line-height:1.1}
.hero-slim .wrap{padding-block:clamp(1.5rem,3.5vw,2.5rem)}
.hero-slim h1{max-width:26ch}

/* the search / enquiry widget */
.finder{
  background:#fff;border-radius:var(--r-lg);box-shadow:var(--shadow-3);
  margin-top:2rem;overflow:hidden;color:var(--ink)
}
.finder-tabs{display:flex;gap:.25rem;padding:.5rem .5rem 0;border-bottom:1px solid var(--line);overflow-x:auto;scrollbar-width:none}
.finder-tabs::-webkit-scrollbar{display:none}
.finder-tab{
  appearance:none;background:none;border:0;padding:.85rem 1.1rem;border-radius:var(--r-sm) var(--r-sm) 0 0;
  font-family:var(--display);font-weight:700;font-size:.94rem;color:var(--muted);
  border-bottom:3px solid transparent;white-space:nowrap;display:flex;align-items:center;gap:.45rem
}
.finder-tab:hover{color:var(--brand)}
.finder-tab[aria-selected="true"]{color:var(--brand);border-bottom-color:var(--brand);background:var(--tint)}
.finder-panel{padding:1.35rem;display:none}
.finder-panel.is-active{display:block}
.finder-grid{display:grid;gap:.85rem;grid-template-columns:repeat(4,1fr);align-items:end}
.finder-note{margin-top:.9rem;font-size:.84rem;color:var(--muted);display:flex;gap:.4rem;align-items:flex-start}
.trip-toggle{display:flex;gap:.4rem;margin-bottom:1rem}

/* ---------- 8. CARDS ------------------------------------------------- */
.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  display:flex;flex-direction:column;transition:transform .18s ease,box-shadow .18s ease
}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow-2)}
.card-media{position:relative;aspect-ratio:16/10;background:var(--tint);overflow:hidden}
.card-media img{width:100%;height:100%;object-fit:cover}
.card-media .badge{
  position:absolute;top:.7rem;left:.7rem;background:var(--ink);color:#fff;
  padding:.3rem .65rem;border-radius:var(--r-full);font-size:.74rem;font-weight:700;font-family:var(--display)
}
.card-media .badge.hot{background:var(--accent)}
.card-body{padding:1.05rem 1.1rem 1.15rem;display:flex;flex-direction:column;gap:.55rem;flex:1}
.card-body h3{font-size:1.08rem}
.card-meta{display:flex;flex-wrap:wrap;gap:.4rem .9rem;font-size:.84rem;color:var(--muted)}
.card-foot{margin-top:auto;padding-top:.85rem;border-top:1px solid var(--line-2);
  display:flex;justify-content:space-between;align-items:flex-end;gap:.75rem}
.price{font-family:var(--display);font-weight:800;font-size:1.2rem;color:var(--ink);line-height:1.1}
.price small{display:block;font-size:.72rem;font-weight:600;color:var(--muted);letter-spacing:.01em}
.price-from{font-size:.72rem;color:var(--muted);font-weight:600;display:block}

/* service tiles */
.service{
  background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:1.4rem;
  display:flex;flex-direction:column;gap:.6rem;transition:.18s;position:relative;overflow:hidden
}
.service:hover{border-color:var(--brand);box-shadow:var(--shadow-2);transform:translateY(-3px)}
.service .ico{
  width:48px;height:48px;border-radius:13px;display:grid;place-items:center;font-size:1.45rem;
  background:var(--brand-100);margin-bottom:.35rem
}
.service:nth-child(2) .ico{background:var(--accent-100)}
.service:nth-child(3) .ico{background:var(--green-100)}
.service:nth-child(4) .ico{background:#EFE9E2}
.service h3{font-size:1.14rem}
.service p{color:var(--muted);font-size:.94rem;flex:1}
.service ul{display:flex;flex-direction:column;gap:.3rem;font-size:.88rem;color:var(--ink-2)}
.service ul li{padding-left:1.15rem;position:relative}
.service ul li::before{content:'✓';position:absolute;left:0;color:var(--green);font-weight:800}
.go,.service .go{font-family:var(--display);font-weight:700;font-size:.92rem;color:var(--brand);display:inline-block;margin-top:.4rem}

/* destination tile */
.dest{position:relative;border-radius:var(--r);overflow:hidden;aspect-ratio:3/4;display:block;color:#fff}
.dest img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.dest:hover img{transform:scale(1.06)}
.dest:hover{text-decoration:none}
.dest-body{position:absolute;inset:auto 0 0 0;padding:1rem;
  background:linear-gradient(to top,rgba(9,26,30,.9),rgba(9,26,30,.05))}
.dest-body h3{color:#fff;font-size:1.1rem}
.dest-body span{font-size:.82rem;color:#D4E5E8;display:block}
.dest-body b{display:block;font-family:var(--display);font-size:.95rem;margin-top:.2rem;color:#fff}

/* stat strip */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);
  border:1px solid var(--line);border-radius:var(--r);overflow:hidden}
.stats div{background:#fff;padding:1.35rem 1rem;text-align:center}
.stats b{display:block;font-family:var(--display);font-size:clamp(1.5rem,3vw,2rem);color:var(--brand);line-height:1.1}
.stats span{font-size:.86rem;color:var(--muted)}
.stats-sm b{font-size:1.02rem;line-height:1.3;margin-bottom:.25rem}
.stats-sm div{padding:1.1rem .9rem}

/* testimonial */
.quote{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:1.4rem;
  display:flex;flex-direction:column;gap:.8rem}
.quote p{font-size:.96rem;color:var(--ink-2)}
.quote .who{display:flex;align-items:center;gap:.7rem;margin-top:auto}
.quote .av{width:38px;height:38px;border-radius:50%;background:var(--brand-100);color:var(--brand-800);
  display:grid;place-items:center;font-weight:800;font-family:var(--display);flex-shrink:0}
.quote .who b{display:block;font-size:.92rem}
.quote .who span{font-size:.8rem;color:var(--muted)}
.stars{color:#F5A524;letter-spacing:.1em;font-size:.9rem}

/* visa list row */
.visa-row{
  display:grid;grid-template-columns:auto 1.6fr repeat(3,1fr) auto;gap:1rem;align-items:center;
  padding:1rem 1.15rem;border:1px solid var(--line);border-radius:var(--r);background:#fff;transition:.16s
}
.visa-row:hover{border-color:var(--brand);box-shadow:var(--shadow-2)}
.visa-row .flag{font-size:1.9rem;line-height:1}
.visa-row h3{font-size:1.05rem;margin-bottom:.15rem}
.visa-row .sub{font-size:.83rem;color:var(--muted)}
.visa-row .kv b{display:block;font-family:var(--display);font-size:.95rem}
.visa-row .kv span{font-size:.75rem;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}

/* notice bars */
.notice{
  display:flex;gap:.7rem;align-items:flex-start;padding:.9rem 1.1rem;border-radius:var(--r-sm);
  font-size:.88rem;line-height:1.55;border:1px solid;
}
.notice-info{background:var(--tint);border-color:var(--brand-100);color:var(--ink-2)}
.notice-warn{background:var(--amber-100);border-color:#F3D9A8;color:#5F3A00}
.notice-ok{background:var(--green-100);border-color:#B9E6D3;color:#055535}
.notice b{font-family:var(--display)}

/* breadcrumbs */
.crumbs{font-size:.84rem;color:var(--muted);padding:.9rem 0;display:flex;gap:.45rem;flex-wrap:wrap}
.crumbs a{color:var(--muted)}
.crumbs a:hover{color:var(--brand)}
.crumbs span[aria-current]{color:var(--ink);font-weight:600}

/* fare table */
.fares{border:1px solid var(--line);border-radius:var(--r);overflow:hidden;background:#fff}
.fares th,.fares td{padding:.85rem 1.1rem;text-align:left;border-bottom:1px solid var(--line-2);font-size:.92rem}
.fares th{background:var(--tint);font-family:var(--display);font-size:.8rem;text-transform:uppercase;
  letter-spacing:.07em;color:var(--muted)}
.fares tr:last-child td{border-bottom:0}
.fares .rt{text-align:right}
.fares b{font-family:var(--display);font-size:1rem}

/* ---------- 9. FORMS ------------------------------------------------- */
.field{display:flex;flex-direction:column;gap:.35rem;min-width:0}
.field > label:not(.check){font-size:.8rem;font-weight:700;font-family:var(--display);color:var(--ink-2);
  text-transform:uppercase;letter-spacing:.05em}
.field .hint{font-size:.78rem;color:var(--muted)}
.input,.select,.textarea{
  width:100%;padding:.78rem .9rem;border:1.5px solid var(--line);border-radius:var(--r-sm);
  background:#fff;font-size:.96rem;transition:border-color .15s,box-shadow .15s;min-width:0
}
.input:hover,.select:hover,.textarea:hover{border-color:#C3D5D9}
.input:focus,.select:focus,.textarea:focus{
  border-color:var(--brand);box-shadow:0 0 0 3px rgba(14,124,134,.16);outline:none
}
.textarea{min-height:120px;resize:vertical;line-height:1.55}
.select{appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B6B85' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .9rem center;padding-right:2.2rem}
.field.invalid .input,.field.invalid .select,.field.invalid .textarea{border-color:var(--red);background:#FFF7F6}
.err{color:var(--red);font-size:.79rem;font-weight:600;display:none}
.field.invalid .err{display:block}
.field.invalid .check{color:var(--red)}
.field.invalid .check input{outline:2px solid var(--red);outline-offset:2px}
fieldset{border:0;padding:0;margin:0 0 1.25rem}
legend{font-family:var(--display);font-weight:800;font-size:1.02rem;padding:0;margin-bottom:.9rem}
.check{display:flex;gap:.6rem;align-items:flex-start;font-size:.9rem;color:var(--ink-2);cursor:pointer}
.check input{margin-top:.25rem;width:17px;height:17px;accent-color:var(--brand);flex-shrink:0}
.radio-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:.6rem}
.radio-cards label{
  border:1.5px solid var(--line);border-radius:var(--r-sm);padding:.75rem .9rem;cursor:pointer;
  display:flex;gap:.55rem;align-items:center;font-size:.92rem;font-weight:600;background:#fff;transition:.15s
}
.radio-cards label:hover{border-color:var(--brand)}
.radio-cards input{accent-color:var(--brand)}
.radio-cards input:checked + span{color:var(--brand)}
.radio-cards label:has(input:checked){border-color:var(--brand);background:var(--tint);box-shadow:0 0 0 3px rgba(14,124,134,.12)}
.form-card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(1.25rem,3vw,2rem);box-shadow:var(--shadow-1)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-grid .full{grid-column:1/-1}
.form-status{margin-top:1rem}

/* ---------- 10. ACCORDION & ITINERARY ------------------------------- */
.acc{border:1px solid var(--line);border-radius:var(--r);overflow:hidden;background:#fff}
.acc + .acc{margin-top:.7rem}
.acc summary{
  padding:1.05rem 1.2rem;font-family:var(--display);font-weight:700;font-size:1rem;cursor:pointer;
  display:flex;justify-content:space-between;gap:1rem;align-items:center;list-style:none
}
.acc summary::-webkit-details-marker{display:none}
.acc summary::after{content:'+';font-size:1.4rem;color:var(--brand);font-weight:400;line-height:1;flex-shrink:0}
.acc[open] summary{border-bottom:1px solid var(--line);background:var(--tint)}
.acc[open] summary::after{content:'–'}
.acc .acc-body{padding:1.05rem 1.2rem;color:var(--ink-2);font-size:.95rem}
.acc .acc-body ul li{padding-left:1.3rem;position:relative;margin-bottom:.4rem}
.acc .acc-body ul li::before{content:'•';position:absolute;left:.35rem;color:var(--brand);font-weight:800}

.timeline{position:relative;padding-left:2.4rem}
.timeline::before{content:'';position:absolute;left:11px;top:.55rem;bottom:.55rem;width:2px;background:var(--line)}
.timeline li{position:relative;padding-bottom:1.5rem}
.timeline li:last-child{padding-bottom:0}
.timeline .dot{
  position:absolute;left:-2.4rem;top:.1rem;width:24px;height:24px;border-radius:50%;
  background:var(--brand);color:#fff;display:grid;place-items:center;font-size:.72rem;font-weight:800;
  font-family:var(--display);box-shadow:0 0 0 4px #fff
}
.timeline h4{margin-bottom:.2rem}
.timeline p{color:var(--muted);font-size:.93rem}

.steps{counter-reset:s;display:grid;gap:1.1rem}
.steps li{counter-increment:s;display:flex;gap:.95rem;align-items:flex-start}
.steps li::before{
  content:counter(s);flex-shrink:0;width:30px;height:30px;border-radius:50%;
  background:var(--brand-100);color:var(--brand-800);display:grid;place-items:center;
  font-weight:800;font-size:.88rem;font-family:var(--display)
}
.ticks li{padding-left:1.6rem;position:relative;margin-bottom:.5rem;font-size:.95rem;color:var(--ink-2)}
.ticks li::before{content:'✓';position:absolute;left:0;color:var(--green);font-weight:800}
.crosses li{padding-left:1.6rem;position:relative;margin-bottom:.5rem;font-size:.95rem;color:var(--muted)}
.crosses li::before{content:'✕';position:absolute;left:0;color:var(--red);font-weight:700;font-size:.85rem}

/* ---------- 11. DETAIL PAGES ---------------------------------------- */
.detail{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(300px,1fr);gap:2.25rem;align-items:start}
.detail-aside{position:sticky;top:calc(var(--header-h) + 18px);display:flex;flex-direction:column;gap:1rem}
.book-box{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.35rem;box-shadow:var(--shadow-2)}
.book-box .big{font-family:var(--display);font-size:2rem;font-weight:800;line-height:1;color:var(--ink)}
.book-box .big small{font-size:.8rem;font-weight:600;color:var(--muted);display:block;margin-top:.3rem}
.kv-list{display:flex;flex-direction:column;gap:.6rem;margin:1.1rem 0}
.kv-list div{display:flex;justify-content:space-between;gap:1rem;font-size:.9rem;padding-bottom:.6rem;border-bottom:1px solid var(--line-2)}
.kv-list div:last-child{border-bottom:0;padding-bottom:0}
.kv-list dt,.kv-list span:first-child{color:var(--muted)}
.kv-list b{font-weight:700;text-align:right}
.gallery{display:grid;grid-template-columns:2fr 1fr;gap:.6rem;border-radius:var(--r-lg);overflow:hidden}
.gallery img{width:100%;height:100%;object-fit:cover;aspect-ratio:16/11}
.gallery .side{display:grid;gap:.6rem}
.gallery .side img{aspect-ratio:16/9}
.prose h2{margin:2rem 0 .8rem}
.prose h3{margin:1.6rem 0 .6rem}
.prose ul li{padding-left:1.4rem;position:relative;margin-bottom:.45rem;color:var(--ink-2)}
.prose ul li::before{content:'';position:absolute;left:.3rem;top:.62rem;width:6px;height:6px;border-radius:50%;background:var(--brand)}
.prose .timeline li::before,.prose .ticks li::before,.prose .crosses li::before{left:0;top:auto;width:auto;height:auto;background:none;border-radius:0}
.prose .timeline li{padding-left:0}
.prose .timeline li::before{content:none}
.prose .ticks li::before{content:'✓';color:var(--green);font-weight:800}
.prose .crosses li::before{content:'✕';color:var(--red);font-weight:700;font-size:.85rem}

/* filter bar */
.filters{display:flex;gap:.6rem;flex-wrap:wrap;align-items:center;padding:1rem 0 1.4rem}
.filters .spacer{flex:1}
.filters-right{display:flex;gap:.75rem;align-items:center;margin-left:auto;flex-wrap:wrap}
.result-count{font-size:.9rem;color:var(--muted);font-weight:600}
.empty{text-align:center;padding:3rem 1rem;border:1.5px dashed var(--line);border-radius:var(--r);color:var(--muted)}

/* ---------- 12. FOOTER & MOBILE BAR --------------------------------- */
.cta-band{background:linear-gradient(115deg,var(--brand-800),var(--brand));color:#fff;border-radius:var(--r-xl);
  padding:clamp(1.75rem,4vw,2.75rem);display:flex;gap:1.75rem;justify-content:space-between;align-items:center;flex-wrap:wrap}
.cta-band h2{color:#fff;max-width:24ch}
.cta-band p{color:#D6ECEF;margin-top:.6rem;max-width:46ch}

.site-footer{background:var(--ink);color:#A6BCC1;padding:3rem 0 1.5rem;margin-top:0;font-size:.92rem}
.site-footer h4{color:#fff;font-size:.82rem;text-transform:uppercase;letter-spacing:.11em;margin-bottom:.95rem}
.site-footer a{color:#C2D5D9;display:inline-block;padding:.2rem 0}
.site-footer a:hover{color:#fff}
.foot-grid{display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:2rem}
.foot-brand .brand{color:#fff}
.foot-brand .brand em{color:#97B2B9}
.foot-brand p{margin-top:.9rem;max-width:34ch}
.socials{display:flex;gap:.5rem;margin-top:1rem}
.socials a{width:36px;height:36px;border-radius:50%;background:#16323A;display:grid;place-items:center;color:#fff}
.socials a:hover{background:var(--brand)}
.foot-bottom{border-top:1px solid #1B3A43;margin-top:2.25rem;padding-top:1.25rem;
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.84rem;color:#8AA3AB}
.foot-bottom nav{display:flex;gap:1.1rem;flex-wrap:wrap}
.disclaimer{font-size:.79rem;color:#7C9299;margin-top:.9rem;line-height:1.6;max-width:none}

.mobile-bar{
  position:fixed;bottom:0;left:0;right:0;z-index:90;display:none;gap:1px;background:var(--line);
  border-top:1px solid var(--line);box-shadow:0 -4px 16px rgba(15,29,34,.08)
}
.mobile-bar a{
  flex:1;background:#fff;padding:.7rem .5rem;text-align:center;font-size:.76rem;font-weight:700;
  font-family:var(--display);color:var(--ink-2);display:flex;flex-direction:column;gap:.15rem;align-items:center
}
.mobile-bar a:hover{text-decoration:none}
.mobile-bar a b{font-size:1.15rem;line-height:1}
.mobile-bar a.pri{background:var(--brand);color:#fff}
.mobile-bar a.wa{background:#25D366;color:#0B2F19}

/* whatsapp float */
.wa-float{
  position:fixed;right:18px;bottom:18px;z-index:95;width:54px;height:54px;border-radius:50%;
  background:#25D366;color:#fff;display:grid;place-items:center;font-size:1.6rem;
  box-shadow:0 8px 22px rgba(37,211,102,.42)
}
.wa-float:hover{text-decoration:none;transform:scale(1.06)}

/* ---------- 13. UTILITIES ------------------------------------------- */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.center{text-align:center}
.mt-0{margin-top:0}.mt-1{margin-top:.6rem}.mt-2{margin-top:1.2rem}.mt-3{margin-top:1.8rem}.mt-4{margin-top:2.5rem}
.mb-2{margin-bottom:1.2rem}.mb-3{margin-bottom:1.8rem}
.narrow{max-width:760px;margin-inline:auto}
.hide{display:none!important}

/* ---------- 14. RESPONSIVE ------------------------------------------ */
@media (max-width:1000px){
  .g-4{grid-template-columns:repeat(2,1fr)}
  .finder-grid{grid-template-columns:repeat(2,1fr)}
  .detail{grid-template-columns:1fr}
  .detail-aside{position:static}
  .foot-grid{grid-template-columns:1fr 1fr}
  .visa-row{grid-template-columns:auto 1fr;row-gap:.85rem}
  .visa-row .kv{grid-column:span 1}
  .visa-row .btn{grid-column:1/-1}
}
@media (max-width:860px){
  .nav,.header-cta{display:none}
  .burger{display:flex}
  .g-3{grid-template-columns:repeat(2,1fr)}
  .stats{grid-template-columns:repeat(2,1fr)}
  .mobile-bar{display:flex}
  .wa-float{display:none}
  body{padding-bottom:62px}
  .topbar .tb-left span.hide-sm{display:none}
}
@media (max-width:600px){
  .g-2,.g-3,.g-4{grid-template-columns:1fr}
  .finder-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .cta-band{flex-direction:column;align-items:flex-start}
  .hero-trust{gap:1rem}
  .topbar{font-size:.78rem}
  .topbar .tb-right{display:none}
}
@media print{
  .site-header,.topbar,.mobile-bar,.wa-float,.site-footer,.finder,.btn{display:none!important}
  body{font-size:11pt}
}
