
:root {
  --clay: #b4502c;
  --clay-d: #933c1d;
  --clay-soft: #f3e0d6;
  --gold: #c9973f;
  --gold-d: #a87c2c;
  --ink: #1d2731;
  --ink-2: #2a3844;
  --sand: #f7f2e9;
  --sand-2: #efe7d8;
  --paper: #fffdf9;
  --line: #e7ddcc;
  --muted: #77705f;
  --white: #ffffff;
  --ok: #1f7a3d;
  --bad: #b3341f;
  --shadow-sm: 0 2px 10px rgba(29, 39, 49, .06);
  --shadow-md: 0 10px 32px rgba(29, 39, 49, .10);
  --shadow-lg: 0 24px 64px rgba(29, 39, 49, .16);
  --radius: 16px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', -apple-system, 'Segoe UI', sans-serif;
  --pattern: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 2l4.5 15.5L42 22l-15.5 4.5L22 42l-4.5-15.5L2 22l15.5-4.5z' fill='%23c9973f' fill-opacity='0.07'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--clay); text-decoration: none; }
a:hover { color: var(--clay-d); }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--ink); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/*material icons */
.material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 22px; line-height: 1; vertical-align: middle; user-select: none;
}
.why-item .ic .material-symbols-rounded { font-size: 27px; }
.contact-card .ic .material-symbols-rounded { font-size: 20px; color: var(--gold); }
.empty-state .big .material-symbols-rounded { font-size: 56px; color: var(--gold); }
.book-note .material-symbols-rounded { font-size: 19px; color: var(--gold-d); flex: 0 0 auto; margin-top: 1px; }

/*buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; letter-spacing: .2px;
  cursor: pointer; transition: all .22s ease; white-space: nowrap;
}
.btn-clay { background: var(--clay); color: #fff; }
.btn-clay:hover { background: var(--clay-d); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-d); color: #fff; transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--sand); color: var(--ink); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* announce + topbar */
.announce {
  background: var(--ink); color: var(--sand); font-size: 13.5px; letter-spacing: .3px;
  padding: 8px 0; text-align: center;
}
.announce span { color: var(--gold); }

.topbar { background: var(--sand); border-bottom: 1px solid var(--line); font-size: 13px; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; padding-top: 7px; padding-bottom: 7px; }
.topbar a { color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--clay); }
.topbar-contacts { display: flex; gap: 22px; }
.topbar-social { display: flex; gap: 16px; }
.topbar-social a { font-weight: 600; letter-spacing: .4px; text-transform: uppercase; font-size: 11px; }

/*header */
.site-header {
  position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(14px);
  z-index: -1;
}

.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 14px; padding-bottom: 14px; }

.logo { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo-mark { color: var(--clay); flex: 0 0 auto; }
.logo-text { font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.05; display: flex; flex-direction: column; }
.logo-text small { font-family: var(--font-body); font-size: 10.5px; font-weight: 500; color: var(--muted); letter-spacing: .8px; text-transform: uppercase; margin-top: 3px; }


.main-nav > ul { display: flex; gap: 4px; flex-wrap: nowrap; }
.main-nav > ul > li { flex-shrink: 0; }
.main-nav a {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--ink); font-weight: 500; font-size: 15px; padding: 10px 14px; border-radius: 999px;
  white-space: nowrap;
}

.has-sub > a svg { transition: transform .25s ease; flex-shrink: 0; }
.has-sub.open > a svg { transform: rotate(180deg); }
.has-sub.open > a,
.main-nav > ul > li > a.on { background: var(--sand-2); color: var(--clay-d); }

.has-sub { position: relative; }
.sub {
  position: absolute; top: calc(100% + 8px); left: 8px; min-width: 220px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s ease;
}
.has-sub:hover .sub, .has-sub.open .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a { display: block; padding: 9px 14px; border-radius: 9px; font-size: 14.5px; }
.sub a:hover { background: var(--sand); color: var(--clay-d); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-search { display: inline-flex; padding: 10px; border-radius: 50%; color: var(--ink); }
.header-search:hover { background: var(--sand-2); color: var(--clay-d); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all .25s ease; }
body.nav-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* flash */
.flash { padding: 13px 0; font-weight: 500; font-size: 15px; }
.flash-success { background: #e8f5ec; color: var(--ok); border-bottom: 1px solid #c4e3cf; }
.flash-error { background: #fdf0ed; color: var(--bad); border-bottom: 1px solid #efc4b8; }

/* home hero */
.hero { position: relative; height: min(88vh, 780px); min-height: 560px; overflow: hidden; background: var(--ink); }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s ease; transform: scale(1);
}
.hero-slide.on { opacity: 1; animation: kenburns 7s ease forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,24,32,.45) 0%, rgba(18,24,32,.25) 45%, rgba(18,24,32,.72) 100%);
}
.hero-content {
  position: relative; z-index: 5; height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  color: #fff; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 3.5px; text-transform: uppercase; font-weight: 600; color: var(--gold);
  margin-bottom: 18px;
}
.hero-kicker::before { content: ''; width: 44px; height: 2px; background: var(--gold); }
.hero h1, .hero .h1 {
  font-family: var(--font-display); font-size: clamp(38px, 6vw, 68px); font-weight: 600;
  color: #fff; line-height: 1.06; max-width: 15ch; margin-bottom: 20px;
}
.hero p.sub { font-size: clamp(16px, 2vw, 19.5px); max-width: 52ch; color: rgba(255,255,255,.88); margin-bottom: 30px; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.92); }
.hero-trust svg { color: var(--gold); flex: 0 0 auto; }

.hero-nav { position: absolute; right: 28px; bottom: 28px; z-index: 6; display: flex; gap: 10px; }
.hero-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(6px); transition: all .2s ease;
}
.hero-nav button:hover { background: #fff; color: var(--ink); }
.hero-dots { position: absolute; left: 24px; bottom: 40px; z-index: 6; display: flex; gap: 8px; }
.hero-dots button { width: 34px; height: 4px; border: 0; border-radius: 4px; background: rgba(255,255,255,.35); cursor: pointer; transition: background .2s; }
.hero-dots button.on { background: var(--gold); }

/*sections */
.sec { padding: clamp(64px, 9vw, 104px) 0; }
.sec-sand { background: var(--sand); }
.sec-pattern { background-color: var(--sand); background-image: var(--pattern); }
.sec-ink { background: var(--ink); color: rgba(255,255,255,.85); }
.sec-ink h2, .sec-ink h3 { color: #fff; }

.sec-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 52px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; color: var(--clay);
  margin-bottom: 14px;
}
.kicker::before { content: '✦'; color: var(--gold); font-size: 14px; }
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.sec-head p { color: var(--muted); font-size: 17px; }
.sec-ink .sec-head p { color: rgba(255,255,255,.65); }

.sec-more { text-align: center; margin-top: 44px; }

/*grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
/* auto-fits any number of items (categories, destinations) */
.grid-flex { display: grid; grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)); gap: 24px; }

/*tour card */
.tour-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .28s ease, box-shadow .28s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tc-img { position: relative; aspect-ratio: 4 / 2.9; overflow: hidden; }
.tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .tc-img img { transform: scale(1.06); }
.tc-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,253,249,.94); color: var(--clay-d); font-size: 12px; font-weight: 600;
  letter-spacing: .6px; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.tc-sale {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--clay); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px;
}
.tc-body { padding: 22px 22px 18px; display: flex; flex-direction: column; flex: 1; }
.tc-title { font-size: 20px; margin-bottom: 10px; }
.tc-title a { color: var(--ink); }
.tc-title a:hover { color: var(--clay); }
.tc-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 13.5px; margin-bottom: 12px; }
.tc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tc-meta svg { color: var(--gold); }
.tc-sum { color: var(--muted); font-size: 14.5px; flex: 1; }
.tc-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px dashed var(--line); margin-top: 16px; padding-top: 16px;
}
.tc-price { display: flex; flex-direction: column; line-height: 1.2; }
.tc-price .from { font-size: 11.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.tc-price .amount { font-family: var(--font-display); font-size: 23px; font-weight: 700; color: var(--clay-d); }
.tc-price .old { font-size: 13px; color: var(--muted); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.tc-link { font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.tc-link svg { transition: transform .2s ease; }
.tc-link:hover svg { transform: translateX(4px); }

.stars { display: inline-flex; gap: 2px; }
.star { fill: #ddd3bf; }
.star.on { fill: var(--gold); }

/*category tiles */
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 4.6;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm);
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(185deg, rgba(18,24,32,0) 40%, rgba(18,24,32,.82) 100%); }
.cat-card-body { position: relative; z-index: 2; padding: 24px; color: #fff; width: 100%; }
.cat-card-body h3 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.cat-card-body span { font-size: 13px; color: rgba(255,255,255,.75); letter-spacing: .5px; }

/*destination arch cards */
.dest-card { text-align: center; }
.arch-img {
  display: block;
  border-radius: 999px 999px 20px 20px; overflow: hidden; aspect-ratio: 3 / 3.7;
  box-shadow: var(--shadow-md); position: relative; margin-bottom: 18px;
  border: 5px solid #fff; outline: 1px solid var(--line);
}
.arch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover .arch-img img { transform: scale(1.07); }
.dest-card h3 { font-size: 21px; }
.dest-card h3 a { color: var(--ink); }
.dest-card h3 a:hover { color: var(--clay); }
.dest-card .region { display: block; font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-d); margin-top: 4px; font-weight: 600; }

/*stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(34px, 5vw, 52px); font-weight: 700; color: var(--gold); line-height: 1; }
.stat .lbl { margin-top: 8px; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.7); }

/*why us */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.why-item .ic {
  width: 54px; height: 54px; border-radius: 16px; background: var(--clay-soft); color: var(--clay-d);
  display: grid; place-items: center; margin-bottom: 18px; font-size: 24px;
}
.why-item h3 { font-size: 19px; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 14.5px; }

/*reviews carousel */
.rev-carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 22px; scrollbar-width: none; }
.rev-carousel::-webkit-scrollbar { display: none; }
.rev-card {
  flex: 0 0 min(430px, 88%); scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); position: relative;
}
.rev-card::before {
  content: '“'; position: absolute; top: 6px; right: 22px;
  font-family: var(--font-display); font-size: 84px; color: var(--sand-2); line-height: 1;
}
.rev-card .stars { margin-bottom: 14px; }
.rev-card blockquote { font-size: 15.5px; color: var(--ink-2); margin-bottom: 20px; position: relative; z-index: 1; }
.rev-who { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--gold);
  display: grid; place-items: center; font-weight: 700; font-size: 16px; letter-spacing: .5px;
}
.rev-who strong { display: block; font-size: 15px; }
.rev-who span { font-size: 13px; color: var(--muted); }
.carousel-ctl { display: flex; gap: 10px; justify-content: flex-end; margin-top: 6px; }
.carousel-ctl button {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff;
  cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: all .2s;
}
.carousel-ctl button:hover { background: var(--clay); border-color: var(--clay); color: #fff; }

/*blog card */
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .28s ease, box-shadow .28s ease; display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pc-img { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .pc-img img { transform: scale(1.06); }
.pc-date {
  position: absolute; bottom: 14px; left: 14px; background: rgba(255,253,249,.95);
  padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--clay-d);
}
.pc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pc-body h3 { font-size: 19.5px; margin-bottom: 10px; }
.pc-body h3 a { color: var(--ink); }
.pc-body h3 a:hover { color: var(--clay); }
.pc-body p { color: var(--muted); font-size: 14.5px; flex: 1; }
.pc-meta { margin-top: 14px; font-size: 13px; color: var(--muted); }

/*CTA banner */
.cta-banner {
  position: relative; background-size: cover; background-position: center; border-radius: 24px; overflow: hidden;
  padding: clamp(48px, 7vw, 84px) clamp(28px, 6vw, 72px); color: #fff;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(18,24,32,.82) 20%, rgba(18,24,32,.35) 100%); }
.cta-in { position: relative; z-index: 2; max-width: 560px; }
.cta-in h2 { color: #fff; font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.cta-in p { color: rgba(255,255,255,.85); margin-bottom: 26px; }

/*page hero + crumbs */
.page-hero {
  background-size: cover; background-position: center;
  padding: clamp(72px, 11vw, 128px) 0; text-align: center; color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.88); font-size: 17.5px; max-width: 60ch; margin: 0 auto; font-weight: 300; }

.crumbs { background: var(--sand); border-bottom: 1px solid var(--line); font-size: 13.5px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 0; list-style: none; }
.crumbs li { color: var(--muted); display: flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: '›'; color: var(--gold); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--clay); }

/*tour detail */
.tour-layout { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
.tour-main h2 { font-size: 26px; margin: 38px 0 16px; }
.tour-main h2:first-child { margin-top: 0; }
.tour-main p { margin-bottom: 14px; color: var(--ink-2); }
.tour-main ul { margin: 0 0 14px 2px; }

.tour-topmeta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 8px; background: var(--sand); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 500; color: var(--ink-2);
}
.meta-chip svg { color: var(--clay); }

.tour-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; margin-bottom: 34px; }
.tour-gallery .g-main { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.tour-gallery .g-side { display: grid; gap: 12px; }
.tour-gallery .g-side .g-item { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.tour-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform .4s ease; }
.tour-gallery img:hover { transform: scale(1.04); }




.list-check li, .list-x li, .hl-list li {
  position: relative; padding: 7px 0 7px 32px; color: var(--ink-2); font-size: 15px;
}
.list-check li::before, .hl-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 19px; height: 19px; background: var(--clay-soft); border-radius: 50%;
}
.list-check li::after {
  content: '✓'; position: absolute; left: 9.5px; top: 50%; transform: translate(-50%, -50%);
  color: var(--clay-d); font-size: 12px; font-weight: 700;
}
.hl-list li::after {
  content: '✦'; color: var(--gold-d);
  position: absolute; left: 9.5px; top: 50%; transform: translate(-50%, -50%);
  font-size: 12px;
}
.list-x li::before {
  content: '✕'; position: absolute; left: 9.5px; top: 50%; transform: translate(-50%, -50%);
  color: var(--bad); font-size: 13px; font-weight: 700;
}


.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.inc-exc h3 { font-size: 18px; margin-bottom: 10px; }

/* accordion (itinerary + faq) */
.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 18px 22px; background: #fff; border: 0; cursor: pointer; font-family: var(--font-body);
}
.acc-head:hover { background: var(--sand); }
.acc-day-default {
  flex: 0 0 auto; background: var(--ink); color: var(--gold); font-size: 11.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.acc-day {
  flex: 0 0 auto; background: var(--ink); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.acc-title { flex: 1; font-weight: 600; font-size: 16px; color: var(--ink); }
.acc-arrow { transition: transform .25s ease; color: var(--muted); flex: 0 0 auto; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-body-in { padding: 0 22px 20px; color: var(--ink-2); font-size: 15px; }

/* booking sidebar */
.book-card {
  position: sticky; top: 96px; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.book-card-head { background: var(--ink); color: #fff; padding: 22px 26px; }
.book-card-head .from { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.6); }
.book-card-head .amount-default { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--gold); }
.book-card-head .amount { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: #fff; }
.book-card-head .amount small { font-size: 15px; color: rgba(255,255,255,.7); font-family: var(--font-body); font-weight: 400; }
.book-card-head .old { color: rgba(255,255,255,.5); text-decoration: line-through; margin-right: 8px; font-size: 17px; }
.book-card-body { padding: 24px 26px 26px; }
.book-note { font-size: 13px; color: var(--muted); background: var(--sand); border-radius: 10px; padding: 10px 14px; margin-top: 14px; display: flex; gap: 8px; align-items: flex-start; }
.book-or { text-align: center; color: var(--muted); font-size: 13px; margin: 14px 0 10px; }
.btn-wa { background: #22a55a; color: #fff; }
.btn-wa:hover { background: #1b8c4b; color: #fff; }

/*forms */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; transition: border .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); }
.field textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-hint { font-size: 13px; color: var(--muted); margin-top: -6px; margin-bottom: 14px; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-md); }

/*gallery */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip {
  padding: 9px 20px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff;
  font-size: 14px; font-weight: 500; color: var(--ink-2); cursor: pointer; transition: all .2s;
}
.chip:hover { border-color: var(--clay); color: var(--clay-d); }
.chip.on { background: var(--clay); border-color: var(--clay); color: #fff; }

.gallery-grid { columns: 3; column-gap: 18px; }
.g-card { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.g-card img { width: 100%; transition: transform .5s ease; }
.g-card:hover img { transform: scale(1.05); }
.g-card .g-cap {
  position: absolute; inset: auto 0 0 0; padding: 34px 16px 14px; color: #fff; font-size: 13.5px; font-weight: 500;
  background: linear-gradient(180deg, transparent, rgba(18,24,32,.75)); opacity: 0; transition: opacity .3s;
}
.g-card:hover .g-cap { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 1200; background: rgba(15, 20, 26, .94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.on { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 22px; right: 26px; background: none; border: 0; color: #fff; font-size: 38px; cursor: pointer; line-height: 1; }
.lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08); color: #fff; font-size: 22px; cursor: pointer;
}
.lightbox .lb-prev { left: 22px; }
.lightbox .lb-next { right: 22px; }
.lightbox .lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-size: 14px; }

/*faq page */
.faq-wrap { max-width: 820px; margin: 0 auto; }

/*reviews page */
.rev-grid { columns: 2; column-gap: 26px; }
.rev-grid .rev-card { break-inside: avoid; margin-bottom: 26px; display: block; }
.rev-summary {
  display: flex; align-items: center; gap: 22px; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 26px 30px; box-shadow: var(--shadow-sm); margin-bottom: 40px; flex-wrap: wrap;
}
.rev-summary .big { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--clay-d); line-height: 1; }

/*contact */
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.contact-card { background: var(--ink); color: rgba(255,255,255,.85); border-radius: 20px; padding: 34px; }
.contact-card h3 { color: #fff; font-size: 22px; margin-bottom: 20px; }
.contact-card ul li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 15px; }
.contact-card ul li:last-child { border-bottom: 0; }
.contact-card a { color: var(--gold); }
.contact-card .ic { color: var(--gold); flex: 0 0 auto; margin-top: 3px; }

/*content pages */
.prose { max-width: 800px; }
.prose h2 { font-size: 25px; margin: 34px 0 14px; }
.prose h3 { font-size: 20px; margin: 26px 0 10px; }
.prose p { margin-bottom: 15px; color: var(--ink-2); }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--ink-2); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 6px; }
.prose img { border-radius: var(--radius); margin: 10px 0 18px; }
.prose blockquote { border-left: 3px solid var(--gold); padding: 4px 0 4px 20px; font-style: italic; color: var(--muted); margin: 18px 0; }

.post-hero-img { border-radius: 20px; overflow: hidden; margin-bottom: 34px; max-height: 480px; }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/*search */
.searchbar { display: flex; gap: 12px; max-width: 640px; margin: 0 auto; }
.searchbar input {
  flex: 1; padding: 15px 22px; border: 1.5px solid var(--line); border-radius: 999px; font-size: 16px;
  font-family: var(--font-body);
}
.searchbar input:focus { outline: none; border-color: var(--clay); }
.search-count { color: var(--muted); margin-bottom: 30px; }
.search-group h2 { font-size: 22px; margin: 40px 0 18px; padding-bottom: 10px; border-bottom: 2px solid var(--sand-2); }

/*pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pg {
  min-width: 42px; height: 42px; display: inline-grid; place-items: center; padding: 0 8px;
  border-radius: 12px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-weight: 600; font-size: 14.5px;
}
a.pg:hover { border-color: var(--clay); color: var(--clay-d); }
.pg.on { background: var(--clay); border-color: var(--clay); color: #fff; }
.pg-dots { align-self: center; color: var(--muted); }

/*empty + misc */
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state .big { font-size: 48px; margin-bottom: 12px; }

.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .4px; }
.badge-gold { background: #f6ecd9; color: var(--gold-d); }

/* 404 */
.notfound { text-align: center; padding: clamp(80px, 14vw, 150px) 24px; }
.notfound .code { font-family: var(--font-display); font-size: clamp(90px, 16vw, 160px); font-weight: 700; color: var(--sand-2); line-height: 1; }
.notfound h1 { font-size: clamp(24px, 4vw, 36px); margin: 6px 0 14px; }
.notfound p { color: var(--muted); max-width: 46ch; margin: 0 auto 30px; }

/*newsletter + footer */
.newsletter { background: var(--gold); }
.newsletter-in { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 40px 24px; flex-wrap: wrap; }
.newsletter h3 { font-size: 24px; color: #3d2c0d; }
.newsletter p { color: rgba(61,44,13,.75); font-size: 14.5px; margin-top: 4px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 460px; min-width: 280px; }
.newsletter-form input {
  flex: 1; padding: 13px 20px; border-radius: 999px; border: 0; font-size: 15px; font-family: var(--font-body);
}
.newsletter-form input:focus { outline: 2px solid var(--ink); }
.newsletter-form .btn { background: var(--ink); color: #fff; }
.newsletter-form .btn:hover { background: var(--ink-2); }

.site-footer { background: var(--ink); color: rgba(255,255,255,.72); font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(48px, 7vw, 72px) 24px 40px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; font-family: var(--font-body); font-weight: 600; letter-spacing: .8px; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.72); }
.footer-col a:hover { color: var(--gold); }
.footer-about .logo { margin-bottom: 16px; }
.logo-light, .logo-light:hover { color: #fff; }
.logo-light .logo-text { font-size: 19px; }
.footer-about p { font-size: 14px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2); font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-contact li { display: flex; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom ul { display: flex; gap: 22px; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold); }

/*floaters */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 950;
  width: 58px; height: 58px; border-radius: 50%; background: #22a55a; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(34,165,90,.45);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

.to-top {
  position: fixed; right: 30px; bottom: 94px; z-index: 940;
  width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--ink); color: var(--gold);
  cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transition: all .25s ease;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--clay); color: #fff; }

/*reveal animations */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide.on { animation: none; }
}

/*responsive */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tour-layout { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .rev-grid { columns: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .topbar { display: none; }

  .burger { display: flex; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; z-index: 1000;
    background: var(--paper); box-shadow: var(--shadow-lg); padding: 90px 26px 40px;
    overflow-y: auto; transition: right .3s ease;
  }
  body.nav-open .main-nav { right: 0; }
  body.nav-open::after {
  content: ''; position: fixed; inset: 0;
  background: rgba(18,24,32,.5);
  z-index: 800;
}
  
  body.nav-open .burger { position: relative; z-index: 1010; }
  .main-nav > ul { flex-direction: column; gap: 2px; }
  .main-nav a { width: 100%; justify-content: space-between; font-size: 16px; }
  .sub {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; padding: 0 0 0 16px; display: none; min-width: 0;
  }
  .has-sub.open .sub { display: block; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .why { grid-template-columns: 1fr; }
  .inc-exc { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .tour-gallery { grid-template-columns: 1fr; }
  .tour-gallery .g-side { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 520px; }
  .hero-trust { gap: 16px; }
  .newsletter-in { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; max-width: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .searchbar { flex-direction: column; }
  .searchbar .btn { width: 100%; }
}
