/* =========================================================
   India Tours by Local — shared stylesheet
   Palette: deep forest green + warm cream + gold
   Type: Playfair Display (display) / Mulish (body)
   ========================================================= */

:root {
  /* neutrals — warm, never pure black/white */
  --ink:        #1d1f18;
  --ink-soft:   #34372c;
  --muted:      #5b5e50;
  --cream:      #f6f1e3;
  --cream-2:    #fbf7ec;
  --card:       #fffdf7;
  --line:       rgba(29, 31, 24, 0.12);
  --line-strong:rgba(29, 31, 24, 0.2);

  /* greens */
  --forest:     #1c3320;
  --forest-2:   #24422a;
  --green:      #2f5233;
  --moss:       #6f8253;

  /* accents */
  --gold:       #d7a423;
  --gold-deep:  #b5850f;
  --gold-soft:  #ecd9a4;
  --terra:      #b0522b;

  /* effects */
  --shadow-sm:  0 1px 2px rgba(29,31,24,.06), 0 2px 8px rgba(29,31,24,.05);
  --shadow-md:  0 8px 30px rgba(29,31,24,.10);
  --shadow-lg:  0 24px 60px rgba(29,31,24,.16);
  --radius:     14px;
  --radius-lg:  22px;

  /* spacing scale (8px base) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  --maxw: 1180px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Mulish", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- typography ---------- */
h1, h2, h3, h4, .display {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s-5); }
.section { padding-block: clamp(64px, 9vw, 128px); }

/* eyebrow label: "EXPLORE" with flanking rules */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-family: "Mulish", sans-serif;
  font-weight: 700; font-size: .78rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--green);
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 34px; height: 1.5px; background: var(--gold-deep); opacity: .8;
}
.eyebrow.solo::before { display: none; }
.section-head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: var(--s-8); }
.section-head p { margin-top: var(--s-4); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 1.5px solid transparent; transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: #201700; box-shadow: 0 6px 18px rgba(215,164,35,.35); }
.btn-gold:hover { background: #e6b431; box-shadow: 0 10px 26px rgba(215,164,35,.45); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { background: var(--cream-2); border-color: var(--green); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- top utility bar ---------- */
.topbar { background: var(--forest); color: #e7ecd9; font-size: .84rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.topbar a { color: #e7ecd9; opacity: .85; transition: opacity .2s; }
.topbar a:hover { opacity: 1; }
.topbar .util-left { display: flex; gap: var(--s-6); }
.topbar .util-right { display: flex; gap: var(--s-5); }
.topbar .u { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; stroke: var(--gold-soft); }

/* ---------- header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(251,247,236,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 92px; gap: var(--s-4); }
.nav-left, .nav-right { display: flex; align-items: center; gap: var(--s-6); }
.nav-right { justify-content: flex-end; }
.nav a.navlink { font-weight: 600; font-size: .95rem; color: var(--ink-soft); position: relative; padding-block: 4px; transition: color .2s; }
.nav a.navlink:hover, .nav a.navlink.active { color: var(--green); }
.nav a.navlink::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--gold); transition: width .25s ease; }
.nav a.navlink:hover::after, .nav a.navlink.active::after { width:100%; }

.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; text-align: center; }
.brand .mark {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--gold-deep);
  display: grid; place-items: center; margin-bottom: 4px; color: var(--green);
}
.brand .mark svg { width: 24px; height: 24px; }
.brand .name { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; color: var(--forest); }
.brand .tag { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-top: 4px; padding-bottom: 2px; }

.icon-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: transparent; display: grid; place-items: center; color: var(--ink); transition: background .2s, border-color .2s; }
.icon-btn:hover { background: var(--cream); border-color: var(--green); }
.icon-btn svg { width: 18px; height: 18px; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: transparent; }

/* mobile drawer */
.mobile-menu { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-bg::after { z-index: 1; }
.hero-bg::after { content:""; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(20,32,20,.86) 0%, rgba(20,32,20,.55) 42%, rgba(20,32,20,.15) 70%),
    linear-gradient(0deg, rgba(18,28,18,.75) 0%, rgba(18,28,18,0) 45%);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(72px, 12vw, 150px); min-height: 560px; display: flex; flex-direction: column; justify-content: center; }
.hero .kicker { display:inline-flex; align-items:center; gap: var(--s-3); font-weight:700; letter-spacing:.24em; text-transform:uppercase; font-size:.76rem; color:#fff; opacity:.92; margin-bottom: var(--s-5); }
.hero .kicker::before { content:""; width:44px; height:2px; background: var(--terra); }
.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero .sub { max-width: 46ch; margin-top: var(--s-5); color: #f0efe6; font-size: 1.08rem; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-7); }

.hero-trust { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.16); }
.hero-trust .container { display: flex; flex-wrap: wrap; gap: var(--s-6); justify-content: space-between; padding-block: var(--s-5); }
.trust-item { display: flex; align-items: center; gap: var(--s-3); color: #f2f1e8; font-size: .92rem; font-weight: 600; }
.trust-item .ti-ic { width: 34px; height: 34px; border-radius: 50%; border:1px solid rgba(255,255,255,.3); display: grid; place-items: center; }
.trust-item svg { width: 17px; height: 17px; stroke: var(--gold); }

.award { position: absolute; top: clamp(16px,3vw,28px); right: clamp(16px,3vw,28px); z-index: 3; text-align: center; color: #fff; }
.award .ring { width: 46px; height: 46px; margin: 0 auto 4px; border-radius: 50%; border: 2px solid var(--gold); display: grid; place-items: center; color: var(--gold); }
.award .yr { font-family: "Playfair Display", serif; font-weight: 700; font-size: .85rem; }
.award .lb { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; opacity: .85; }

/* torn/organic divider between hero and cream */
.torn { position: relative; z-index: 2; line-height: 0; margin-top: -1px; }
.torn svg { width: 100%; height: 46px; display: block; }
.torn svg path { fill: var(--cream); }

/* ---------- media / scenic tiles (self-contained, always render) ---------- */
.scene { position: relative; overflow: hidden; background: #ccc; }
.scene img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.scene .fallback { position: absolute; inset: 0; z-index: 1; }
/* themed gradient skies used as fallback + base */
.sky-triangle { background: linear-gradient(180deg,#f4d9a6 0%,#e8b06a 45%,#c9843f 100%); }
.sky-rajasthan{ background: linear-gradient(180deg,#f6c9a0 0%,#e88f57 55%,#b85a34 100%); }
.sky-south    { background: linear-gradient(180deg,#bfe3d0 0%,#7fbf9b 55%,#2f7d5c 100%); }
.sky-himalaya { background: linear-gradient(180deg,#dbeaf3 0%,#a9c6da 50%,#6f93ad 100%); }
.sky-spiritual{ background: linear-gradient(180deg,#f6dfae 0%,#e8a86a 55%,#a85a3a 100%); }
.sky-taj      { background: linear-gradient(180deg,#f5e2c4 0%,#e7bd8b 55%,#b9713f 100%); }
.sky-delhi    { background: linear-gradient(180deg,#eadfae 0%,#c9b06a 55%,#7d6f3a 100%); }
.sky-forest   { background: linear-gradient(160deg,#2f5233 0%,#1c3320 100%); }
.scene .silo { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; color: #16281a; line-height: 0; }
.scene .silo svg { width: 100%; height: auto; display: block; }

/* ---------- destination cards ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.dest-card .scene { aspect-ratio: 3 / 4; }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card .scene::after { content:""; position:absolute; inset:0; z-index:3; background: linear-gradient(0deg, rgba(18,28,18,.72) 0%, rgba(18,28,18,0) 55%); }
.dest-card .label { position: absolute; z-index: 4; left: var(--s-4); right: var(--s-4); bottom: var(--s-4); color: #fff; }
.dest-card .label .k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
.dest-card .label h3 { color: #fff; font-size: 1.28rem; margin-top: 2px; }
.dest-card .label .meta { font-size: .84rem; color: #e7e4d6; margin-top: 4px; display:flex; align-items:center; gap:6px; }

/* ---------- experience cards (list) ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.exp-card { background: var(--card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-card .scene { aspect-ratio: 16 / 11; }
.exp-card .body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.exp-card .pill-row { display:flex; gap: var(--s-2); flex-wrap: wrap; }
.pill { font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: 4px 11px; border-radius: 999px; background: #eef2e2; color: var(--green); }
.pill.gold { background: var(--gold-soft); color: #6a4d05; }
.exp-card h3 { font-size: 1.35rem; }
.exp-card .desc { color: var(--muted); font-size: .95rem; }
.exp-card .foot { margin-top: auto; padding-top: var(--s-4); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.exp-card .price { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.15rem; color: var(--forest); }
.exp-card .price small { display:block; font-family:"Mulish"; font-weight:600; font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color: var(--muted); }
.link-arrow { display:inline-flex; align-items:center; gap:6px; font-weight:700; color: var(--green); font-size:.9rem; }
.link-arrow svg { width:16px; height:16px; transition: transform .2s; }
.exp-card:hover .link-arrow svg { transform: translateX(4px); }

/* ---------- feature / why-us ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.feature-list { display: grid; gap: var(--s-5); margin-top: var(--s-6); }
.feature { display: grid; grid-template-columns: 52px 1fr; gap: var(--s-4); align-items: start; }
.feature .fic { width: 52px; height: 52px; border-radius: 14px; background: #eef2e2; color: var(--green); display: grid; place-items: center; }
.feature .fic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 3px; }
.feature p { font-size: .95rem; color: var(--muted); }

.stat-band { display:grid; grid-template-columns: repeat(4,1fr); gap: var(--s-5); }
.stat { text-align:center; }
.stat .n { font-family:"Playfair Display",serif; font-weight:700; font-size: clamp(2rem,4vw,2.8rem); color: var(--gold-deep); }
.stat .l { font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); font-weight:700; }

/* dark section variant */
.dark { background: var(--forest); color: #eef0e4; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark p { color: #cdd3c0; }
.dark .eyebrow { color: var(--gold); }
.dark .eyebrow::before, .dark .eyebrow::after { background: var(--gold); }
.dark .stat .n { color: var(--gold); }

/* ---------- testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-5); }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-6); box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: var(--s-3); }
.quote blockquote { font-family: "Playfair Display", serif; font-size: 1.12rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-5); }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--moss); color: #fff; display: grid; place-items: center; font-weight: 700; font-family:"Playfair Display",serif; }
.quote .who .nm { font-weight: 700; font-size: .95rem; }
.quote .who .rg { font-size: .82rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; color: #fff; border-radius: var(--radius-lg); }
.cta .cta-bg { position:absolute; inset:0; z-index:0; }
.cta .cta-bg::after { content:""; position:absolute; inset:0; z-index:3; background: linear-gradient(90deg, rgba(20,32,20,.92), rgba(20,32,20,.5)); }
.cta .inner { position: relative; z-index:2; padding: clamp(40px,6vw,72px); max-width: 640px; }
.cta h2 { color:#fff; }
.cta p { color:#e7e6d9; margin-top: var(--s-4); }
.cta .cta-row { display:flex; gap: var(--s-4); flex-wrap: wrap; margin-top: var(--s-6); }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: var(--s-5); }
.field label { font-weight: 700; font-size: .86rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 13px 15px; border-radius: 11px;
  border: 1.5px solid var(--line-strong); background: var(--card); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,82,51,.14);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.phone-group { display: grid; grid-template-columns: 138px 1fr; gap: 8px; }
.phone-group select { padding-inline: 10px; }
.form-note { font-size:.85rem; color: var(--muted); margin-top: var(--s-3); }
.form-ok { display:none; background:#e9f3e5; border:1px solid #b9d8ac; color:#2d5327; padding:14px 16px; border-radius:11px; font-weight:600; margin-bottom: var(--s-4); }
.form-err { display:none; background:#f7e7e3; border:1px solid #e0b6ab; color:#8a3417; padding:14px 16px; border-radius:11px; font-weight:600; margin-bottom: var(--s-4); }
.hp { position:absolute !important; left:-9999px !important; width:1px; height:1px; overflow:hidden; }

/* ---------- page hero (interior pages) ---------- */
.page-hero { position: relative; color:#fff; overflow:hidden; }
.page-hero .ph-bg { position:absolute; inset:0; z-index:0; }
.page-hero .ph-bg::after { content:""; position:absolute; inset:0; z-index:3; background: linear-gradient(180deg, rgba(20,32,20,.5), rgba(20,32,20,.82)); }
.page-hero .container { position: relative; z-index:2; padding-block: clamp(64px,9vw,110px); }
.page-hero h1 { color:#fff; max-width: 18ch; }
.page-hero .lead { color:#eceadd; margin-top: var(--s-4); max-width: 54ch; }
.crumbs { font-size:.82rem; letter-spacing:.06em; color:#d7d9c8; margin-bottom: var(--s-4); }
.crumbs a:hover { color:#fff; }

/* ---------- footer ---------- */
.site-footer { background: var(--forest); color: #cdd3c0; padding-top: var(--s-9); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-6); padding-bottom: var(--s-8); }
.site-footer h4 { color:#fff; font-family:"Mulish",sans-serif; font-weight:800; font-size:.82rem; letter-spacing:.16em; text-transform:uppercase; margin-bottom: var(--s-4); }
.site-footer a { color:#cdd3c0; font-size:.94rem; transition: color .2s; }
.site-footer a:hover { color: var(--gold); }
.site-footer .fcol ul { display:grid; gap: 10px; }
.site-footer .brand-f { display:flex; flex-direction:column; gap: var(--s-3); }
.site-footer .brand-f .bn { font-family:"Playfair Display",serif; font-weight:700; font-size:1.3rem; color:#fff; }
.site-footer .brand-f p { color:#b6bda8; font-size:.92rem; max-width: 34ch; }
.social { display:flex; gap: var(--s-3); margin-top: var(--s-2); }
.social a { width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:grid; place-items:center; }
.social a:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.social svg { width:17px; height:17px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.14); padding-block: var(--s-5); display:flex; justify-content:space-between; align-items:center; gap: var(--s-4); font-size:.85rem; color:#a7ae98; }
.footer-bottom a:hover { color:#fff; }

/* ---------- FAQ details ---------- */
details summary::-webkit-details-marker { display: none; }
details summary::marker { content: ""; }
details summary { position: relative; padding-right: 34px; }
details summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--gold-deep); line-height: 1; transition: transform .2s; }
details[open] summary::after { content: "\2013"; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .nav { grid-template-columns: auto 1fr auto; height: 66px; }
  .nav-left { display: none; }
  .brand { flex-direction: row; gap: 10px; align-items: center; }
  .brand .mark { margin-bottom: 0; }
  .brand .tag { display: none; }
  .nav-right .btn, .nav-right .navlink, .nav-right .icon-btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-toggle svg { width: 22px; height: 22px; }

  .mobile-menu { display: block; position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--cream-2); z-index: 90; transform: translateX(100%); transition: transform .28s ease;
    box-shadow: var(--shadow-lg); padding: var(--s-7) var(--s-5); overflow-y:auto; }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { display: block; font-family:"Playfair Display",serif; font-size: 1.5rem; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { margin-top: var(--s-5); width: 100%; }
  .mobile-menu .mm-contact { margin-top: var(--s-6); font-size:.9rem; color: var(--muted); display:grid; gap:8px; }
  .backdrop { display:none; position: fixed; inset:0; background: rgba(20,28,20,.45); z-index: 80; }
  .backdrop.open { display: block; }

  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .exp-grid, .quote-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust .container { gap: var(--s-4); }
  .trust-item { font-size: .84rem; }
  .footer-bottom { flex-direction: column; text-align:center; }
}
@media (max-width: 460px) {
  .dest-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .hero .cta-row .btn { flex: 1; }
}

/* ========================================================= */
/* Tour detail page                                          */
/* ========================================================= */
.tour-hero { position: relative; color: #fff; overflow: hidden; }
.tour-hero .th-bg { position: absolute; inset: 0; z-index: 0; }
.tour-hero .th-bg img { width: 100%; height: 100%; object-fit: cover; }
.tour-hero .th-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,32,20,.4) 0%, rgba(20,32,20,.86) 100%); }
.tour-hero .container { position: relative; z-index: 2; padding-block: clamp(56px, 8vw, 104px); }
.tour-hero .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--s-4); }
.tour-hero h1 { color: #fff; max-width: 20ch; }
.tour-hero .th-sub { color: #eceadd; margin-top: var(--s-4); max-width: 62ch; font-size: 1.1rem; }
.tour-hero .th-meta { display: flex; flex-wrap: wrap; gap: var(--s-5) var(--s-6); margin-top: var(--s-6); }
.tour-hero .th-meta .m { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; }
.tour-hero .th-meta svg { width: 19px; height: 19px; stroke: var(--gold); }
.rating-inline { display: inline-flex; align-items: center; gap: 8px; }
.rating-inline .stars { color: var(--gold); letter-spacing: 2px; }

.tour-facts { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); display: grid; grid-template-columns: repeat(5, 1fr); overflow: hidden; margin-top: -44px; position: relative; z-index: 5; }
.tour-facts .fact { padding: var(--s-5); display: flex; flex-direction: column; gap: 5px; border-right: 1px solid var(--line); }
.tour-facts .fact:last-child { border-right: none; }
.tour-facts .fact .k { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.tour-facts .fact .v { font-family: "Playfair Display", serif; font-weight: 600; font-size: 1.02rem; color: var(--forest); }

.tour-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(32px, 5vw, 64px); align-items: start; padding-block: var(--s-8); }
.tour-main > section { padding-block: var(--s-7); border-bottom: 1px solid var(--line); }
.tour-main > section:first-child { padding-top: 0; }
.tour-main > section:last-child { border-bottom: none; }
.tour-main h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: var(--s-4); }
.tour-main p { margin-bottom: var(--s-4); color: var(--ink-soft); }

.hl-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin-top: var(--s-4); }
.hl-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.hl-list .hi { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: #eef2e2; color: var(--green); display: grid; place-items: center; margin-top: 1px; }
.hl-list svg { width: 15px; height: 15px; }

.itinerary { margin-top: var(--s-5); }
.day { position: relative; padding-left: 62px; padding-bottom: var(--s-6); }
.day:last-child { padding-bottom: 0; }
.day::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: -8px; width: 2px; background: var(--line-strong); }
.day:last-child::before { display: none; }
.day .num { position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-family: "Playfair Display", serif; font-weight: 700; font-size: 1rem; z-index: 1; }
.day .place { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 3px; }
.day h3 { font-size: 1.18rem; }
.day p { color: var(--muted); font-size: .96rem; margin: 8px 0 0; }
.day .meals { margin-top: 10px; font-size: .8rem; color: var(--muted); font-weight: 600; }
.day .meals span { color: var(--green); }

.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); margin-top: var(--s-4); }
.inc-col h4 { font-family: "Mulish", sans-serif; font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: var(--s-4); }
.inc-col li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; font-size: .94rem; color: var(--ink-soft); }
.inc-col svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }
.inc-yes svg { stroke: #2f7d3f; }
.inc-no svg { stroke: var(--terra); }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); margin-top: var(--s-4); }
.gallery .g { border-radius: 12px; overflow: hidden; aspect-ratio: 1; display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery .g:hover img { transform: scale(1.06); }
.gallery .g.big { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

.price-table { width: 100%; border-collapse: collapse; margin-top: var(--s-4); font-size: .95rem; }
.price-table th, .price-table td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); }
.price-table thead th { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.price-table td.p { font-family: "Playfair Display", serif; font-weight: 700; color: var(--forest); }

.book-card { position: sticky; top: 110px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: var(--s-6); }
.book-card .from { font-size: .8rem; color: var(--muted); }
.book-card .amt { font-family: "Playfair Display", serif; font-weight: 700; font-size: 2.1rem; color: var(--forest); line-height: 1.1; }
.book-card .per { font-size: .82rem; color: var(--muted); margin-bottom: var(--s-5); }
.book-card .bc-list { margin: var(--s-5) 0; display: grid; gap: 11px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: var(--s-5) 0; }
.book-card .bc-list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink-soft); }
.book-card .bc-list svg { width: 17px; height: 17px; stroke: var(--green); flex: 0 0 auto; }
.book-card .btn { width: 100%; }
.book-card .btn + .btn { margin-top: 10px; }
.book-card .bc-help { text-align: center; font-size: .82rem; color: var(--muted); margin-top: var(--s-4); }
.book-card .bc-help a { color: var(--green); font-weight: 700; }

@media (max-width: 1024px) {
  .tour-facts { grid-template-columns: repeat(3, 1fr); }
  .tour-facts .fact:nth-child(3) { border-right: none; }
  .tour-layout { grid-template-columns: 1fr; }
  .book-card { position: relative; top: 0; }
  .hl-list, .inc-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .tour-facts { grid-template-columns: 1fr 1fr; margin-top: -28px; }
  .tour-facts .fact { border-right: none; border-bottom: 1px solid var(--line); }
  .tour-facts .fact:nth-last-child(-n+1) { border-bottom: none; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .g.big { grid-column: span 2; }
}

/* ========================================================= */
/* Blog / destination guides                                 */
/* ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card .scene { aspect-ratio: 16 / 10; }
.post-card .body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.post-card .meta { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.post-card h3 { font-size: 1.28rem; }
.post-card .desc { color: var(--muted); font-size: .95rem; }
.post-card .foot { margin-top: auto; padding-top: var(--s-4); border-top: 1px solid var(--line); }

.article { max-width: 760px; margin-inline: auto; padding-block: var(--s-8); }
.article .kicker { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: var(--s-3) 0 var(--s-4); }
.article .byline { color: var(--muted); font-size: .9rem; border-bottom: 1px solid var(--line); padding-bottom: var(--s-5); margin-bottom: var(--s-6); }
.article-body { font-size: 1.08rem; line-height: 1.75; color: var(--ink-soft); }
.article-body h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: var(--s-7) 0 var(--s-3); }
.article-body h3 { font-size: 1.25rem; margin: var(--s-6) 0 var(--s-2); color: var(--forest); }
.article-body p { margin-bottom: var(--s-4); }
.article-body ul { margin: 0 0 var(--s-4); padding-left: 1.2em; list-style: disc; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.article-body .article-img { width: 100%; border-radius: var(--radius); margin: var(--s-5) 0; }
.article-cover { position: relative; overflow: hidden; }
.article-cover img { width: 100%; height: clamp(240px, 38vw, 460px); object-fit: cover; display: block; }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }
