/* ============================================================
   CEYLON ONE — Ramayana Heritage design system
   Pure CSS. Palette drawn from the gold logo + Ramayana key art:
   parchment / deep maroon / gold / saffron, elegant serif display.
   ============================================================ */

:root {
  /* Surfaces */
  --parchment:   #f7f5f0;
  --parchment-2: #ffffff;
  --parchment-3: #efebe2;
  --paper:       #ffffff;

  /* Ink */
  --ink:        #2a241d;
  --ink-strong: #1d1812;
  --ink-soft:   #6b6258;
  --ink-faint:  #9a9085;

  /* Brand */
  --maroon:     #5a1218;
  --maroon-2:   #3a0b0f;
  --maroon-3:   #74232a;
  --gold:       #c8a24a;
  --gold-2:     #e8cd87;
  --gold-deep:  #9d7a2c;
  --saffron:    #c85a1b;
  --saffron-2:  #e08a2e;

  /* Lines & shadow */
  --line:       rgba(30, 24, 18, 0.10);
  --line-gold:  rgba(157, 122, 44, 0.30);
  --shadow-sm:  0 1px 2px rgba(20, 16, 12, 0.05), 0 4px 12px rgba(20, 16, 12, 0.05);
  --shadow:     0 10px 30px rgba(20, 16, 12, 0.10);
  --shadow-lg:  0 24px 56px rgba(20, 16, 12, 0.16);

  /* Type */
  --display: "Cormorant Garamond", "Marcellus", Georgia, "Times New Roman", serif;
  --heading: "Marcellus", "Cormorant Garamond", Georgia, serif;
  --body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --radius:   14px;
  --radius-lg: 20px;
  --gold-grad: linear-gradient(135deg, #b8862f 0%, #e7c878 45%, #f6e6b4 60%, #c79a3b 100%);

  /* Category accent colours */
  --c-things-to-do: #c0531f;
  --c-destinations: #1f7a8c;
  --c-beach-hopping:#1769a8;
  --c-cultural:     #7a1f25;
  --c-explore:      #c98a1e;
  --c-hill-wildlife:#2f6b3a;
  --c-nature:       #3f7d44;
  --c-wellness:     #9d6aa0;
  --c-day-tours:    #2a6fb0;
  --c-top-sellers:  #b13a64;
  --c-exceptionals: #6a4c93;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
body.overlay-open { overflow: hidden; }

.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; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px; border-radius: 8px; background: var(--paper); color: var(--maroon); font-weight: 700; transform: translateY(-160%); transition: transform .2s; box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--saffron-2); outline-offset: 3px; }
#view:focus { outline: none; }
.noscript { padding: 18px; background: #fff3cd; color: #503d00; text-align: center; }

h1, h2, h3, h4 { font-family: var(--heading); font-weight: 600; line-height: 1.12; color: var(--ink-strong); letter-spacing: .2px; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.muted { color: var(--ink-soft); }
.hidden { display: none !important; }

/* ----------------------------- Ornaments ----------------------------- */
.ornament { display: flex; justify-content: center; margin: 16px 0 4px; }
.ornament::before { content: ""; height: 3px; width: 48px; border-radius: 3px; background: var(--gold-grad); }
.ornament svg { display: none; }

.eyebrow {
  font-family: var(--body); font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; font-size: .72rem; color: var(--saffron);
  display: inline-block;
}

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600;
  font-size: .92rem; letter-spacing: .02em; transition: .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold-grad); color: #3a2a06; box-shadow: 0 8px 20px rgba(157,122,44,.32); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(157,122,44,.42); filter: brightness(1.04); }
.btn-maroon { background: var(--maroon); color: #fbeede; }
.btn-maroon:hover { background: var(--maroon-3); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--line-gold); color: var(--maroon); background: rgba(255,255,255,.4); }
.btn-ghost:hover { background: var(--maroon); color: #fbeede; border-color: var(--maroon); }
.btn-wa { background: #25d366; color: #073; }
.btn-wa:hover { transform: translateY(-2px); filter: brightness(1.03); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ----------------------------- Header ----------------------------- */
.utility-bar {
  background: linear-gradient(90deg, var(--maroon-2), var(--maroon) 55%, var(--maroon-3));
  color: #efd9b8; font-size: .8rem; letter-spacing: .02em;
}
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 38px; padding-block: 5px; }
.utility-bar a { color: #f3e2c4; opacity: .9; transition: .2s; }
.utility-bar a:hover { opacity: 1; color: var(--gold-2); }
.utility-left { display: flex; align-items: center; gap: 18px; }
.utility-tag { display: inline-flex; align-items: center; gap: 8px; }
.utility-right { display: flex; align-items: center; gap: 16px; }
.utility-right .soc { display: inline-flex; gap: 10px; }
.utility-right svg { width: 16px; height: 16px; }

.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header-main { display: flex; align-items: center; gap: 16px; min-height: 74px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }

.primary-nav { flex: 1 1 auto; min-width: 0; }
.primary-nav ul { display: flex; flex-wrap: nowrap; align-items: center; gap: 10px; justify-content: center; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.primary-nav ul::-webkit-scrollbar { display: none; }
.primary-nav a {
  display: inline-block; padding: 9px 12px; border-radius: 8px; white-space: nowrap;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; transition: .18s;
}
.primary-nav a:hover { color: var(--ink-strong); }
.primary-nav a.active { color: var(--ink-strong); }
.primary-nav a.active::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 1px; height: 2px;
  background: var(--gold-grad); border-radius: 2px;
}
.hdr-phone { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); transition: .18s; }
.hdr-phone:hover { color: var(--ink-strong); }
.hdr-phone svg { width: 16px; height: 16px; color: var(--gold-deep); }
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lang-switch {
  display: inline-flex; align-items: stretch; border: 1px solid var(--line);
  border-radius: 999px; overflow: hidden; background: #fff; flex-shrink: 0;
}
.lang-switch button {
  padding: 6px 10px; font-size: .68rem; font-weight: 700; letter-spacing: .02em;
  color: var(--ink-soft); line-height: 1.2; white-space: nowrap;
}
.lang-switch button + button { border-left: 1px solid var(--line); }
.lang-switch button[aria-pressed="true"] {
  background: var(--maroon); color: #fbeede;
}
#drawerLang { margin-top: 18px; }
#drawerLang .lang-switch { width: 100%; }
#drawerLang .lang-switch button { flex: 1; padding: 10px 8px; font-size: .82rem; }

html[data-lang="ta"] {
  --display: "Noto Serif Tamil", "Cormorant Garamond", serif;
  --heading: "Noto Serif Tamil", "Marcellus", serif;
  --body: "Noto Sans Tamil", Inter, system-ui, sans-serif;
}
html[data-lang="hi"] {
  --display: "Noto Serif Devanagari", "Cormorant Garamond", serif;
  --heading: "Noto Serif Devanagari", "Marcellus", serif;
  --body: "Noto Sans Devanagari", Inter, system-ui, sans-serif;
}
html[data-lang="ta"] .eyebrow,
html[data-lang="hi"] .eyebrow,
html[data-lang="ta"] .primary-nav a,
html[data-lang="hi"] .primary-nav a,
html[data-lang="ta"] .hero-stats .stat .l,
html[data-lang="hi"] .hero-stats .stat .l {
  text-transform: none;
  letter-spacing: .04em;
}
html[data-lang="ta"] .hero h1,
html[data-lang="hi"] .hero h1 { max-width: 18ch; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); align-items: center; justify-content: center; color: var(--maroon); }
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(40,8,12,.5); z-index: 300; opacity: 0; pointer-events: none; transition: .3s; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: var(--parchment-2); z-index: 310; transform: translateX(100%);
  transition: transform .32s cubic-bezier(.6,.05,.3,1); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; padding: 22px; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer-head img { height: 40px; }
.drawer-close { width: 42px; height: 42px; color: var(--maroon); }
.drawer-close svg { width: 26px; height: 26px; }
.drawer nav a { display: block; padding: 13px 12px; border-radius: 10px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); letter-spacing: .03em; }
.drawer nav a .idx { color: var(--gold-deep); font-family: var(--heading); margin-right: 10px; }
.drawer nav a:hover, .drawer nav a.active { background: rgba(200,162,74,.14); color: var(--maroon); }
.drawer .btn { margin-top: 16px; justify-content: center; }

/* ----------------------------- Hero ----------------------------- */
.hero { position: relative; overflow: hidden; min-height: min(780px, calc(100svh - 74px)); display: flex; align-items: center; background: #25090c; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(31,7,10,.96) 0%, rgba(52,12,17,.88) 46%, rgba(43,10,14,.3) 76%, rgba(35,8,11,.42) 100%), linear-gradient(0deg, rgba(35,8,11,.64), transparent 40%); pointer-events: none; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(232,205,135,.13) 1px, transparent 1.6px); background-size: 26px 26px; opacity: .45; pointer-events: none; }
.hero-glow { position: absolute; width: 65vw; height: 65vw; right: -18vw; top: -24vw; background: radial-gradient(circle, rgba(200,162,74,.30), transparent 62%); pointer-events: none; z-index: 0; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; opacity: 1; }
.hero-inner { position: relative; z-index: 2; padding: clamp(64px, 11vh, 124px) 0 clamp(64px, 11vh, 124px); }
.hero-inner .eyebrow { color: var(--gold-2); }
.hero h1 { color: #fbeede; font-size: clamp(2rem, 7.4vw, 5.2rem); line-height: 1.04; max-width: 16ch; margin: 14px 0 0; }
.hero h1 .gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { color: #ecd9bd; max-width: 56ch; font-size: 1.12rem; margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 46px; padding-top: 28px; border-top: 1px solid rgba(232,205,135,.25); }
.hero-stats .stat .n { font-family: var(--heading); font-size: 2rem; color: var(--gold-2); }
.hero-stats .stat .l { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #d8c3a4; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 26px; color: #e7d3b4; font-size: .82rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--gold-2); }

/* compass / map motif on hero */
.hero-motif { position: absolute; right: -40px; bottom: -40px; width: clamp(180px, 26vw, 340px); opacity: .14; z-index: 1; color: var(--gold-2); pointer-events: none; }

/* ----------------------------- Sections ----------------------------- */
.section { padding: clamp(54px, 8vw, 92px) 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(34px, 5vw, 54px); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }
.section.alt { background: #f3f1eb; border-block: 1px solid var(--line); }

/* ----------------------------- Category quick grid (home) ----------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.cat-tile {
  position: relative; border-radius: var(--radius); padding: 26px 22px; min-height: 158px;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;
  transition: .28s ease;
}
.cat-tile::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--accent, var(--gold)); }
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.cat-tile .ci { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: var(--accent, var(--gold)); margin-bottom: 14px; }
.cat-tile .ci svg { width: 24px; height: 24px; }
.cat-tile h3 { font-size: 1.14rem; color: var(--ink-strong); }
.cat-tile .num { position: absolute; right: 16px; top: 12px; font-family: var(--heading); font-size: 2.4rem; color: rgba(90,18,24,.08); }
.cat-tile .cnt { font-size: .82rem; color: var(--ink-faint); margin-top: 6px; letter-spacing: .04em; }

/* ----------------------------- Card grid ----------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: .3s ease; cursor: pointer;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.card-art { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-art img { transform: scale(1.06); }
.card-art.gen { display: grid; place-items: center; color: rgba(255,255,255,.92); }
.card-art.gen .mono { font-family: var(--heading); font-size: 3.4rem; opacity: .5; }
.card-art .badge {
  position: absolute; left: 12px; top: 12px; padding: 5px 12px; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,253,248,.92); color: var(--accent, var(--maroon)); box-shadow: var(--shadow-sm);
}
.card-art .dur {
  position: absolute; right: 12px; bottom: 12px; padding: 5px 12px; border-radius: 999px;
  font-size: .72rem; font-weight: 600; background: rgba(58,11,15,.78); color: #f3dfbf;
  display: inline-flex; gap: 6px; align-items: center;
}
.card-art .dur svg { width: 13px; height: 13px; }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.28rem; color: var(--ink-strong); }
.card-body .tag { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent, var(--saffron)); font-weight: 700; margin-bottom: 8px; }
.card-body p { color: var(--ink-soft); font-size: .94rem; margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.card-foot .more { font-weight: 700; font-size: .85rem; color: var(--maroon); display: inline-flex; align-items: center; gap: 6px; }
.card-foot .more svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card-foot .more svg { transform: translateX(4px); }
.locs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.locs span { font-size: .72rem; padding: 3px 9px; border-radius: 999px; background: var(--parchment-3); color: var(--ink-soft); }

/* ----------------------------- Page header band (category / detail) ----------------------------- */
.page-band { position: relative; overflow: hidden; background: var(--maroon-2); color: #fbeede; }
.page-band .pb-media { position: absolute; inset: 0; }
.page-band .pb-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.page-band .pb-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,11,15,.62), rgba(58,11,15,.86)); }
.page-band.gen { background: linear-gradient(135deg, var(--accent, var(--maroon-3)) -8%, var(--maroon-2) 82%); }
.page-band.gen .pb-media { background: linear-gradient(135deg, var(--accent, var(--maroon)), var(--maroon-2)); }
.page-band.gen::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(247,238,222,.10) 1px, transparent 1px); background-size: 22px 22px; opacity: .5; pointer-events: none; }
.page-band-inner { position: relative; z-index: 2; padding: clamp(50px, 9vw, 96px) 0 clamp(40px, 7vw, 72px); }
.crumbs { font-size: .82rem; color: #e7cfa9; margin-bottom: 16px; letter-spacing: .03em; }
.crumbs a:hover { color: var(--gold-2); }
.crumbs .sep { opacity: .5; margin: 0 8px; }
.page-band h1 { color: #fff; font-size: clamp(2.2rem, 5.5vw, 3.8rem); max-width: 18ch; }
.page-band .pb-tag { color: #ecd6b3; font-size: 1.08rem; margin-top: 14px; max-width: 60ch; }
.page-band .pb-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 15px; border-radius: 999px; background: rgba(247,238,222,.14); border: 1px solid rgba(232,205,135,.3); font-size: .82rem; color: #f3e2c4; }
.pill svg { width: 15px; height: 15px; color: var(--gold-2); }

/* Toolbar (search + sort) */
.toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.toolbar .count { color: var(--ink-soft); font-size: .92rem; }
.search { display: flex; align-items: center; gap: 9px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; min-width: 250px; }
.search input { border: none; outline: none; background: none; font-family: inherit; font-size: .92rem; width: 100%; color: var(--ink); }
.search:focus-within { border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(200,162,74,.16); }
.search svg { width: 18px; height: 18px; color: var(--ink-faint); }

/* sub-category chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.chip { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); font-size: .84rem; font-weight: 600; color: var(--ink-soft); transition: .2s; }
.chip:hover { border-color: var(--line-gold); color: var(--maroon); }
.chip.active { background: var(--maroon); color: #f7e6cb; border-color: var(--maroon); }

/* ----------------------------- Detail page ----------------------------- */
.detail-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.prose p { margin-top: 16px; color: var(--ink); }
.prose h2 { margin-top: 40px; font-size: 1.7rem; }
.prose h3 { margin-top: 30px; font-size: 1.3rem; color: var(--maroon-3); }
.lead { font-size: 1.18rem; color: var(--ink); line-height: 1.7; }

.section-block { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.section-block:first-child { border-top: none; padding-top: 0; }

/* highlights */
.highlights { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 12px; margin-top: 18px; }
.highlights li { display: flex; gap: 11px; align-items: flex-start; background: var(--parchment-2); border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; font-size: .92rem; }
.highlights li svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }

/* itinerary timeline */
.timeline { margin-top: 22px; position: relative; }
.tl-item { position: relative; padding: 0 0 30px 64px; }
.tl-item::before { content: ""; position: absolute; left: 23px; top: 8px; bottom: -8px; width: 2px; background: var(--line-gold); }
.tl-item:last-child::before { display: none; }
.tl-day { position: absolute; left: 0; top: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--gold-grad); color: #3a2a06; display: grid; place-items: center; font-family: var(--heading); font-weight: 700; font-size: .92rem; box-shadow: var(--shadow-sm); z-index: 2; }
.tl-item h3 { font-size: 1.2rem; color: var(--ink-strong); }
.tl-item .tl-route { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--saffron); font-weight: 700; margin-bottom: 4px; }
.tl-item p { margin-top: 10px; color: var(--ink-soft); font-size: .96rem; }

/* sidebar enquiry card */
.aside-card { position: sticky; top: 130px; background: var(--paper); border: 1px solid var(--line-gold); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }
.aside-card h3 { font-size: 1.4rem; }
.aside-card .price-note { font-size: .85rem; color: var(--ink-faint); margin-top: 4px; }
.aside-card .ac-list { margin: 18px 0; }
.aside-card .ac-list li { display: flex; gap: 10px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .9rem; color: var(--ink-soft); }
.aside-card .ac-list li svg { width: 17px; height: 17px; color: var(--gold-deep); }
.aside-card .btn { width: 100%; justify-content: center; margin-top: 10px; }
.aside-qr { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.aside-qr img { width: 78px; height: 78px; border-radius: 10px; border: 1px solid var(--line); }
.aside-qr p { font-size: .8rem; color: var(--ink-faint); }

/* related */
.related { margin-top: 70px; }

/* gallery grid */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; }
.gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in; background: var(--paper); border: 1px solid var(--line); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure:focus-visible, .poster-scroll figure:focus-visible { outline-offset: 5px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(30,6,9,.92); z-index: 500; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 22px; right: 26px; color: #f3e2c4; width: 46px; height: 46px; }
.lightbox .lb-close svg { width: 34px; height: 34px; }

/* empty state */
.empty { text-align: center; padding: 60px 20px; color: var(--ink-faint); }
.empty svg { width: 48px; height: 48px; color: var(--line-gold); margin-bottom: 12px; }

/* ----------------------------- Featured strip (home) ----------------------------- */
.feature-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: stretch; }
.feature-main, .feature-side { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow); min-height: 320px; }
.feature-main img, .feature-side img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.feature-overlay { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; background: linear-gradient(180deg, transparent 30%, rgba(58,11,15,.86)); color: #fbeede; }
.feature-overlay .eyebrow { color: var(--gold-2); }
.feature-overlay h3 { color: #fff; font-size: 1.8rem; margin-top: 8px; }
.feature-overlay p { color: #ecd6b3; margin-top: 8px; font-size: .94rem; }
.feature-side .feature-overlay h3 { font-size: 1.4rem; }

/* posters strip */
.poster-scroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 18px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; }
.poster-scroll figure { scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); cursor: zoom-in; }
.poster-scroll img { aspect-ratio: 5/7; object-fit: cover; width: 100%; transition: transform .4s; }
.poster-scroll figure:hover img { transform: scale(1.04); }

/* why-us */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 22px; }
.why-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: .25s; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-card .wi { width: 58px; height: 58px; border-radius: 16px; background: var(--gold-grad); display: grid; place-items: center; margin: 0 auto 16px; color: #3a2a06; }
.why-card .wi svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.18rem; }
.why-card p { margin-top: 8px; color: var(--ink-soft); font-size: .92rem; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--maroon-2), var(--maroon) 60%, var(--maroon-3)); color: #fbeede; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: #ecd6b3; max-width: 56ch; margin: 14px auto 0; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .hero-motif { opacity: .1; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: linear-gradient(180deg, var(--maroon), var(--maroon-2)); color: #e7cfa9; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 38px; padding: clamp(48px,7vw,72px) 0 44px; }
.footer-top h4 { color: var(--gold-2); font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-brand img { height: 52px; filter: brightness(1.4); margin-bottom: 14px; }
.footer-brand p { color: #d9bf9b; font-size: .92rem; max-width: 36ch; }
.footer-col a, .footer-col li { display: block; color: #ddc3a0; font-size: .9rem; padding: 5px 0; transition: .2s; }
.footer-col a:hover { color: var(--gold-2); padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; color: #ddc3a0; font-size: .92rem; padding: 7px 0; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-2); flex-shrink: 0; margin-top: 2px; }
.footer-soc { display: flex; gap: 12px; margin-top: 16px; }
.footer-soc a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(232,205,135,.3); display: grid; place-items: center; color: var(--gold-2); transition: .2s; }
.footer-soc a:hover { background: var(--gold-grad); color: var(--maroon-2); border-color: transparent; }
.footer-soc svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(232,205,135,.18); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .82rem; color: #c8ad88; }

/* floating whatsapp */
.fab-wa { position: fixed; right: 22px; bottom: 22px; z-index: 250; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(7,94,52,.4); transition: .25s; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; color: #fff; }

/* ----------------------------- Journey map (Places You'll Visit) ----------------------------- */
.journey { }
.journey-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.journey-head .stops { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--saffron); font-weight: 700; }
.journey-wrap { display: grid; grid-template-columns: minmax(250px, .92fr) 1fr; gap: 32px; align-items: start; margin-top: 20px; }
.journey-wrap.nomap { grid-template-columns: 1fr; }
.journey-map { position: relative; background: radial-gradient(120% 90% at 50% 0%, #fbf2df, #efdfbe); border: 1px solid var(--line-gold); border-radius: var(--radius-lg); padding: 16px 16px 10px; box-shadow: var(--shadow-sm); overflow: hidden; }
.journey-map::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(157,122,44,.12) 1px, transparent 1px); background-size: 16px 16px; opacity: .5; pointer-events: none; }
.journey-map svg { position: relative; width: 100%; height: auto; display: block; overflow: visible; }
.journey-map .map-cap { position: relative; text-align: center; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }

.lk-island { fill: url(#lkfill); stroke: #b88a36; stroke-width: 1.4; filter: drop-shadow(0 10px 16px rgba(90,18,24,.20)); }
.lk-route { fill: none; stroke: var(--saffron); stroke-width: 2; stroke-dasharray: 1.5 6; stroke-linecap: round; opacity: .9; }
.lk-pin { transform-box: fill-box; transform-origin: center; transition: transform .2s ease; cursor: pointer; }
.lk-pin circle { fill: url(#pinG); stroke: #5a1218; stroke-width: 1.4; }
.lk-pin text { fill: #4a1010; font: 700 9px var(--body); text-anchor: middle; dominant-baseline: central; pointer-events: none; }
.lk-pin:hover, .lk-pin.hl { transform: scale(1.45); }
.lk-pin.hl circle { stroke: var(--saffron); stroke-width: 2; }
.cmp-ring { fill: rgba(255,253,248,.5); stroke: var(--gold-deep); stroke-width: 1; opacity: .7; }
.cmp-ns { fill: var(--saffron); }
.cmp-ew { fill: var(--gold-deep); opacity: .65; }
.cmp-n { fill: var(--maroon); font: 700 8px var(--body); text-anchor: middle; }

.journey-list { display: flex; flex-direction: column; gap: 10px; }
.journey-list li { display: flex; gap: 13px; align-items: center; background: var(--parchment-2); border: 1px solid var(--line); border-radius: 12px; padding: 11px 15px; transition: .18s ease; }
.journey-list li:hover, .journey-list li.hl { border-color: var(--line-gold); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.journey-list li .num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--gold-grad); color: #3a2a06; font-weight: 700; display: grid; place-items: center; font-family: var(--heading); font-size: .9rem; box-shadow: var(--shadow-sm); }
.journey-list li .pn { font-weight: 600; color: var(--ink); }
.journey-extras { margin-top: 16px; }
.journey-extras .lbl { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 8px; }
.journey-extras .row { display: flex; flex-wrap: wrap; gap: 8px; }
.journey-extras .chip-loc { font-size: .8rem; padding: 5px 12px; border-radius: 999px; background: var(--parchment-3); color: var(--ink-soft); display: inline-flex; gap: 6px; align-items: center; }
.journey-extras .chip-loc svg { width: 13px; height: 13px; color: var(--gold-deep); }
@media (max-width: 820px) {
  .journey-wrap { grid-template-columns: 1fr; gap: 22px; }
  .journey-map { max-width: 420px; margin-inline: auto; }
}

/* fade-in on route change */
#view { animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 920px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 1024px) {
  .detail-wrap { grid-template-columns: 1fr; }
  .aside-card { position: static; }
}
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .utility-left .utility-tag.opt { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .utility-bar { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 22px; }
  .hero { min-height: auto; }
  .hero::after { background: linear-gradient(90deg, rgba(31,7,10,.93), rgba(43,10,14,.68)), linear-gradient(0deg, rgba(35,8,11,.76), transparent 45%); }
  .hero-media img { object-position: 68% center; }
  .hero-inner { padding-block: 64px 54px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 3.8rem); }
  .hero p.lede { font-size: 1rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats .stat .n { font-size: 1.6rem; }
  .hero-trust { display: grid; gap: 8px; }
  .header-cta .btn-text { display: none; }
  .header-cta .btn { padding: 10px 16px; }
  .section { padding: 46px 0; }
  .container { width: min(100% - 28px, var(--maxw)); }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-tile { min-height: 142px; padding: 20px 16px; }
  .cat-tile .ci { width: 40px; height: 40px; }
  .cat-tile h3 { font-size: 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  .search { width: 100%; min-width: 0; }
  .page-band-inner { padding-block: 44px 38px; }
  .cta-band { border-radius: 14px; padding-inline: 22px; }
  .lightbox { padding: 14px; }
  .lightbox .lb-close { top: 10px; right: 10px; }
}

@media (max-width: 370px) {
  .cat-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
