:root {
  --green: #0b4d41;
  --green-deep: #07382f;
  --green-ink: #123f39;
  --gold: #b67d22;
  --gold-bright: #e2af3c;
  --cream: #f6f1e8;
  --cream-dark: #ece4d6;
  --sand: #d9bd88;
  --ink: #163532;
  --muted: #667673;
  --line: #ded8ce;
  --white: #fffdf9;
  --shadow: 0 20px 55px rgba(17, 48, 43, .12);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); line-height: 1.55; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 52px)); margin: 0 auto; }

.site-header { position: relative; z-index: 20; background: rgba(255, 253, 249, .96); border-bottom: 1px solid rgba(11, 77, 65, .1); }
.header-inner { min-height: 86px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 142px; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 25px; flex: 1; font-size: 13px; color: var(--ink); }
.desktop-nav a { position: relative; padding: 31px 0 28px; transition: color .2s ease; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--gold); transition: right .2s ease; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--green); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 17px; border-radius: 7px; background: var(--gold); color: #fff; font-size: 13px; font-weight: 700; box-shadow: 0 8px 20px rgba(182, 125, 34, .22); }
.wa-mark { display: inline-grid; place-items: center; width: 21px; height: 21px; border: 1.5px solid currentColor; border-radius: 50%; font-size: 15px; line-height: 1; }
.menu-toggle { display: none; border: 0; background: none; color: var(--green); padding: 8px; }
.menu-toggle svg, .text-link svg, .button svg, .detail-row svg, .booking-points svg, .compact-list svg, .day-meta svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; vertical-align: -3px; }
.menu-toggle svg { width: 25px; height: 25px; }
.mobile-nav { display: none; }

.home-hero, .page-hero, .tour-hero { position: relative; overflow: hidden; color: #fff; }
.home-hero { min-height: 640px; display: flex; align-items: center; }
.hero-image, .page-hero-bg, .tour-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.hero-image { background-position: center 47%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3, 35, 28, .78) 0%, rgba(3, 35, 28, .42) 48%, rgba(3, 35, 28, .16) 100%), linear-gradient(0deg, rgba(3, 35, 28, .25), transparent 40%); }
.hero-content { position: relative; z-index: 1; padding: 106px 0 156px; max-width: 1180px; }
.hero-kicker, .eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); letter-spacing: .18em; font-size: 10px; line-height: 1.4; font-weight: 800; text-transform: uppercase; }
.hero-kicker { color: #f1c765; }
.hero-content h1, .page-hero-content h1 { max-width: 720px; margin: 15px 0 16px; font-family: var(--serif); font-size: clamp(48px, 7vw, 84px); line-height: .98; letter-spacing: -.045em; }
h1 em, h2 em { color: var(--gold-bright); font-style: italic; }
.hero-content p { max-width: 545px; margin: 0; color: rgba(255, 255, 255, .88); font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 31px; }
.hero-text-link { color: #fff; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 5px; }
.hero-text-link span { color: var(--gold-bright); margin-left: 7px; font-size: 17px; }
.hero-trust { position: absolute; z-index: 1; bottom: 27px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.8); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.hero-trust b { color: #fff; font-family: var(--serif); letter-spacing: 0; text-transform: none; font-size: 20px; font-weight: 400; }
.hero-trust i { width: 46px; height: 1px; background: var(--gold-bright); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 47px; padding: 13px 20px; border: 1px solid transparent; border-radius: 5px; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(16, 47, 42, .14); }
.button-gold { background: var(--gold); color: #fff; }
.button-outline { background: transparent; color: var(--green); border-color: rgba(11,77,65,.35); }
.button-outline:hover { background: var(--green); color: #fff; }
.button-dark { background: var(--green); color: #fff; }
.button-whatsapp { width: 100%; background: var(--green); color: #fff; border-color: var(--green); }
.button.full { width: 100%; }

.section { padding: 98px 0; }
.intro-section { padding-top: 92px; padding-bottom: 76px; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.section-heading { max-width: 690px; }
.section-heading h2, .panel-heading h2 { margin: 9px 0 12px; color: var(--green-ink); font-family: var(--serif); font-size: clamp(35px, 4vw, 54px); line-height: 1.02; letter-spacing: -.04em; }
.section-heading h2::after, .panel-heading h2::after { content: '✦'; display: block; margin-top: 14px; color: var(--gold); font-family: var(--sans); font-size: 14px; letter-spacing: 0; }
.section-copy { max-width: 620px; margin: 0; color: var(--muted); font-size: 15px; }
.intro-note { border-left: 1px solid var(--gold); padding: 12px 0 10px 32px; }
.quote-mark { display: block; color: var(--gold); font-family: var(--serif); font-size: 55px; line-height: .55; }
.intro-note p { margin: 17px 0 22px; color: var(--green-ink); font-family: var(--serif); font-size: 27px; line-height: 1.14; }
.intro-note strong { color: var(--gold); font-weight: 400; font-style: italic; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.text-link:hover { color: var(--gold); }

.tours-section { background: var(--cream); }
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 42px; }
.tour-card { overflow: hidden; background: var(--white); border: 1px solid rgba(19, 63, 57, .1); border-radius: 5px; box-shadow: 0 10px 30px rgba(20, 50, 45, .05); transition: transform .25s ease, box-shadow .25s ease; }
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tour-card-image { position: relative; display: block; aspect-ratio: 1.46 / 1; overflow: hidden; background: var(--green-deep); }
.tour-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.tour-card:hover .tour-card-image img { transform: scale(1.05); }
.tour-badge { position: absolute; left: 14px; bottom: 14px; padding: 6px 10px; border-radius: 3px; background: rgba(8, 62, 51, .93); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.tour-card-body { padding: 23px 22px 26px; }
.card-kicker { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.tour-card h3 { min-height: 54px; margin: 9px 0 8px; color: var(--green-ink); font-family: var(--serif); font-size: 24px; line-height: 1.04; letter-spacing: -.03em; }
.tour-card p { min-height: 72px; margin: 0 0 19px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.center-link { display: flex; justify-content: center; margin-top: 42px; }

.destinations-section { background: var(--white); }
.section-row { display: flex; align-items: end; justify-content: space-between; gap: 25px; }
.destination-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 35px; }
.destination-card { position: relative; min-height: 250px; display: flex; flex-direction: column; justify-content: end; padding: 17px; overflow: hidden; color: #fff; border-radius: 4px; background: var(--green); }
.destination-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3, 34, 28, .87), rgba(3, 34, 28, 0) 75%); }
.destination-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.destination-card:hover img { transform: scale(1.08); }
.destination-card span, .destination-card small { position: relative; z-index: 1; }
.destination-card span { font-family: var(--serif); font-size: 21px; line-height: 1.1; }
.destination-card small { margin-top: 4px; color: rgba(255,255,255,.75); font-size: 10px; line-height: 1.25; }

.experiences-section { background: var(--cream); }
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 39px; }
.experience-card { background: var(--white); border: 1px solid rgba(19, 63, 57, .1); }
.experience-image { aspect-ratio: 1.18 / 1; overflow: hidden; }
.experience-image img { width: 100%; height: 100%; object-fit: cover; }
.experience-body { padding: 19px; }
.experience-body h3 { margin: 7px 0 6px; color: var(--green-ink); font-family: var(--serif); font-size: 22px; }
.experience-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.styles-section { background: var(--white); }
.style-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 41px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.style-card { min-height: 263px; padding: 30px 25px 24px; background: var(--white); transition: background .2s ease, color .2s ease; }
.style-card:hover { background: var(--green); color: #fff; }
.style-number { color: var(--gold); font-family: var(--serif); font-size: 25px; }
.style-card h3 { margin: 33px 0 9px; color: var(--green-ink); font-family: var(--serif); font-size: 23px; line-height: 1.05; }
.style-card:hover h3 { color: #fff; }
.style-card p { min-height: 64px; margin: 0 0 19px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.style-card:hover p { color: rgba(255,255,255,.75); }
.style-card .text-link { color: var(--gold); }

.journal-section { padding-top: 76px; background: var(--cream); }
.journal-panel { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.journal-visual { position: relative; min-height: 340px; overflow: hidden; }
.journal-visual img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.journal-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,34,28,.64), transparent); }
.journal-visual span { position: absolute; z-index: 1; left: 31px; bottom: 29px; color: #fff; font-family: var(--serif); font-size: 29px; line-height: 1.06; }
.journal-visual strong { color: var(--gold-bright); font-weight: 400; font-style: italic; }

.cta-section { position: relative; overflow: hidden; padding: 63px 0; background: var(--green-deep); color: #fff; }
.cta-section::before { content: ''; position: absolute; width: 480px; height: 480px; right: -70px; top: -230px; border: 1px solid rgba(224,176,60,.28); border-radius: 50%; box-shadow: 0 0 0 21px rgba(224,176,60,.06), 0 0 0 42px rgba(224,176,60,.05); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.cta-inner h2 { margin: 9px 0 8px; color: #fff; font-family: var(--serif); font-size: 42px; line-height: 1.02; letter-spacing: -.04em; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.74); font-size: 14px; }

.site-footer { position: relative; overflow: hidden; padding: 62px 0 22px; background: radial-gradient(circle at 12% 18%, rgba(58,136,113,.24), transparent 28%), linear-gradient(135deg,#082f28 0%,#033b26 45%,#072716 100%); color: rgba(255,255,255,.78); }
.site-footer::before { content:''; position:absolute; left:-8%; top:-35%; width:42%; height:90%; background:radial-gradient(ellipse,rgba(58,136,113,.20),rgba(58,136,113,0) 68%); pointer-events:none; }
.footer-pattern { position:absolute; inset:auto 0 0; height:150px; opacity:.055; background:repeating-linear-gradient(135deg,transparent 0 15px,var(--gold) 15px 16px,transparent 16px 31px); transform:skewY(-3deg); }
.footer-grid { position:relative; z-index:1; display:grid; grid-template-columns:1.65fr .85fr .85fr 1fr 1.35fr; gap:38px; padding-bottom:54px; align-items:start; }
.footer-brand img { width:190px; height:auto; margin-bottom:16px; filter:none; opacity:1; object-fit:contain; }
.footer-brand p { max-width:310px; margin:0 0 20px; color:rgba(255,255,255,.78); font-size:13px; line-height:1.7; }
.footer-social { display:flex; flex-wrap:wrap; gap:14px; font-size:11px; color:var(--gold-bright); }
.footer-grid h3 { margin:6px 0 20px; color:var(--gold-bright); font-family:var(--serif); font-size:19px; font-weight:600; }
.footer-grid > div:not(.footer-brand):not(.footer-discover) { display:flex; flex-direction:column; gap:12px; font-size:12px; }
.footer-grid a:hover { color:var(--gold-bright); }
.footer-discover { display:grid; grid-template-columns:105px 1fr; gap:16px; align-items:center; }
.footer-discover img { width:105px; height:132px; object-fit:cover; border-radius:52px 52px 12px 12px; border:2px solid rgba(184,137,62,.9); }
.footer-discover p { margin:0; color:var(--gold-bright); font-family:var(--serif); font-size:18px; line-height:1.45; font-weight:600; }
.footer-discover em { font-style:italic; }
.footer-bottom { position:relative; z-index:1; display:flex; justify-content:space-between; gap:20px; padding-top:18px; border-top:1px solid rgba(184,137,62,.35); font-size:10px; letter-spacing:.02em; text-transform:none; }
@media (max-width: 980px) { .footer-grid { grid-template-columns:repeat(2,1fr); } .footer-discover { grid-column:1/-1; max-width:330px; } }
@media (max-width: 600px) { .site-footer{padding-top:46px}.footer-grid{grid-template-columns:1fr;gap:28px}.footer-discover{grid-column:auto}.footer-bottom{flex-direction:column}.footer-brand img{width:180px} }

.page-hero { min-height: 450px; display: flex; align-items: end; }
.page-hero-bg { background-position: center 57%; }
.page-hero-content { position: relative; z-index: 1; padding: 90px 0 67px; }
.page-hero-content h1 { margin-bottom: 17px; font-size: clamp(47px, 6vw, 72px); }
.page-hero-content p { max-width: 540px; margin: 0; color: rgba(255,255,255,.84); font-size: 16px; }
.tours-index-section { padding-top: 45px; }
.tour-grid-wide { grid-template-columns: repeat(3, 1fr); }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-bottom: 33px; color: var(--muted); font-size: 11px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb-light { margin-bottom: 34px; color: rgba(255,255,255,.7); }
.breadcrumb-light a:hover { color: #fff; }
.breadcrumb-dark { margin-bottom: 39px; }

.tour-hero { min-height: 520px; display: flex; align-items: end; }
.tour-hero-bg { background-position: center; }
.tour-hero-content { position: relative; z-index: 1; padding: 61px 0 47px; }
.tour-hero-content h1 { max-width: 900px; margin: 0 0 14px; font-family: var(--serif); font-size: clamp(43px, 5.2vw, 70px); line-height: .98; letter-spacing: -.045em; }
.tour-hero-content > p { max-width: 730px; margin: 0; color: rgba(255,255,255,.84); font-size: 17px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 14px 31px; margin-top: 28px; }
.hero-facts span { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 11px; }
.hero-facts b { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid var(--gold-bright); border-radius: 50%; color: var(--gold-bright); }
.hero-facts svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.tour-main-section { padding-top: 45px; }
.tour-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 31px; align-items: start; }
.tour-primary { min-width: 0; }
.overview-block { display: grid; grid-template-columns: 1.18fr .82fr; gap: 30px; align-items: center; padding-bottom: 37px; }
.overview-block .section-heading h2 { font-size: 43px; }
.overview-copy > p { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.overview-image { height: 214px; margin: 0; overflow: hidden; border-radius: 5px; background: var(--cream); }
.overview-image img { width: 100%; height: 100%; object-fit: cover; }
.highlights-panel { margin-bottom: 39px; padding: 26px 23px 24px; border: 1px solid var(--cream-dark); border-radius: 5px; background: var(--cream); }
.panel-heading { display: flex; align-items: baseline; gap: 19px; border-bottom: 1px solid var(--line); padding-bottom: 11px; }
.panel-heading h2 { margin: 0; font-size: 31px; }
.panel-heading h2::after { display: none; }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 20px; }
.highlight-item { display: flex; flex-direction: column; min-height: 102px; padding: 0 14px; border-right: 1px solid #d4caba; }
.highlight-item:first-child { padding-left: 0; }
.highlight-item:last-child { border-right: 0; }
.highlight-icon { display: grid; place-items: center; width: 34px; height: 34px; color: var(--gold); font-size: 26px; line-height: 1; }
.highlight-item strong { margin-top: 9px; color: var(--green-ink); font-family: var(--serif); font-size: 17px; font-weight: 400; line-height: 1.06; }
.highlight-item small { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.25; }

.gallery-section { margin: 54px 0 67px; }
.gallery-section .section-heading h2 { margin-bottom: 0; font-size: 39px; }
.gallery-note { padding-bottom: 9px; color: var(--muted); font-size: 11px; font-style: italic; }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 24px; }
.gallery-item { min-width: 0; padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.gallery-item > span { display: block; aspect-ratio: 1.08 / 1; overflow: hidden; border-radius: 4px; background: var(--cream-dark); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1.08); }
.gallery-item strong { display: block; margin-top: 8px; color: var(--green-ink); font-family: var(--serif); font-size: 14px; font-weight: 400; line-height: 1.12; }

.itinerary-section { border-top: 1px solid var(--line); padding-top: 47px; }
.itinerary-section .section-heading h2 { font-size: 42px; }
.timeline { position: relative; margin-top: 35px; }
.timeline::before { content: ''; position: absolute; left: 23px; top: 30px; bottom: 30px; width: 1px; background: #c8cfc9; }
.day-card { position: relative; padding: 0 0 25px; }
.day-card:last-child { padding-bottom: 6px; }
.day-marker { position: absolute; z-index: 1; left: 0; top: 0; display: grid; place-items: center; width: 47px; height: 47px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--serif); font-size: 16px; box-shadow: 0 0 0 5px var(--white); }
.day-content { display: grid; grid-template-columns: minmax(0, 1fr) 174px; gap: 30px; margin-left: 77px; padding: 0 0 25px; border-bottom: 1px solid var(--line); }
.day-card:last-child .day-content { border-bottom: 0; }
.day-label { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.day-copy h3 { margin: 8px 0 8px; color: var(--green-ink); font-family: var(--serif); font-size: 24px; line-height: 1.1; letter-spacing: -.02em; }
.day-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }
.day-meta { display: flex; flex-wrap: wrap; gap: 12px 19px; margin-top: 15px; color: var(--green-ink); font-size: 10px; }
.day-meta span { display: inline-flex; align-items: center; gap: 5px; }
.day-meta svg { width: 14px; height: 14px; color: var(--gold); }
.day-image { margin: 0; overflow: hidden; border-radius: 4px; background: var(--cream); }
.day-image img { width: 100%; height: 132px; object-fit: cover; }
.day-image figcaption { padding: 8px 8px 9px; color: var(--muted); background: var(--cream); font-size: 9px; line-height: 1.25; }
.tailor-note { margin: 30px 0 0 77px; padding: 17px 20px; border-left: 2px solid var(--gold); background: var(--cream); color: var(--muted); font-size: 12px; }
.tailor-note strong { color: var(--green-ink); }

.craft-note { display: grid; grid-template-columns: 1fr 1.35fr; gap: 30px; align-items: center; margin-top: 70px; padding: 22px; background: var(--cream); }
.craft-note-image { height: 220px; overflow: hidden; }
.craft-note-image img { width: 100%; height: 100%; object-fit: cover; }
.craft-note h2 { margin: 10px 0 8px; color: var(--green-ink); font-family: var(--serif); font-size: 34px; line-height: 1; }
.craft-note p { margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.tour-sidebar { position: sticky; top: 22px; display: flex; flex-direction: column; gap: 18px; }
.booking-card, .sidebar-card { padding: 24px 22px; border: 1px solid var(--cream-dark); border-radius: 5px; background: var(--cream); }
.booking-card { padding: 27px 23px 24px; }
.booking-card h2 { margin: 8px 0 8px; color: var(--green-ink); font-family: var(--serif); font-size: 31px; line-height: 1.06; }
.booking-card > p { margin: 0 0 18px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.booking-card .button + .button { margin-top: 9px; }
.booking-points { display: flex; flex-direction: column; gap: 12px; margin: 23px 0 0; padding: 19px 0 0; border-top: 1px solid var(--line); list-style: none; }
.booking-points li { display: flex; gap: 8px; color: var(--green-ink); font-size: 11px; line-height: 1.3; }
.booking-points svg { flex: 0 0 15px; width: 15px; height: 15px; color: var(--gold); }
.sidebar-card h3 { margin: 7px 0 14px; color: var(--green-ink); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.detail-list { border-top: 1px solid var(--line); }
.detail-row { display: grid; grid-template-columns: 20px 79px 1fr; gap: 6px; align-items: center; min-height: 39px; border-bottom: 1px solid var(--line); font-size: 10px; }
.detail-row > span { color: var(--gold); }
.detail-row svg { width: 16px; height: 16px; }
.detail-row b { color: var(--muted); font-weight: 600; }
.detail-row em { color: var(--green-ink); font-style: normal; text-align: right; line-height: 1.25; }
.compact-list { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }
.compact-list li { display: flex; gap: 7px; align-items: flex-start; color: var(--muted); font-size: 11px; line-height: 1.3; }
.compact-list svg { flex: 0 0 15px; width: 15px; height: 15px; color: var(--green); }
.not-included svg { color: #b65732; }

.tour-cta { margin-top: 30px; }
.not-found { min-height: 520px; padding: 150px 0; background: var(--cream); }
.not-found h1 { max-width: 650px; margin: 12px 0; color: var(--green-ink); font-family: var(--serif); font-size: 58px; line-height: 1; }
.not-found p { color: var(--muted); }

.lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 38px; background: rgba(4, 25, 21, .92); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox > button { position: absolute; right: 22px; top: 18px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; }
.lightbox > button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.lightbox figure { max-width: min(1000px, 94vw); max-height: 90vh; margin: 0; }
.lightbox img { max-width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox figcaption { padding-top: 12px; color: #fff; font-family: var(--serif); font-size: 18px; }

@media (max-width: 1050px) {
  .desktop-nav { gap: 15px; }
  .destination-grid { grid-template-columns: repeat(3, 1fr); }
  .destination-card { min-height: 210px; }
  .tour-layout { grid-template-columns: minmax(0, 1fr) 300px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 36px, 680px); }
  .header-inner { min-height: 74px; justify-content: space-between; }
  .brand img { width: 125px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .mobile-nav { position: fixed; z-index: 19; inset: 74px 0 auto; display: flex; flex-direction: column; gap: 0; padding: 12px 18px 22px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(8, 50, 42, .12); transform: translateY(-130%); transition: transform .25s ease; }
  .menu-open .mobile-nav { transform: translateY(0); }
  .mobile-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 13px; }
  .mobile-nav .mobile-wa { margin-top: 13px; padding: 13px; border: 0; border-radius: 4px; background: var(--green); color: #fff; text-align: center; font-weight: 700; }
  .home-hero { min-height: 680px; }
  .hero-content { padding: 120px 0 200px; }
  .hero-content h1 { font-size: 59px; }
  .hero-trust { width: calc(100% - 36px); flex-wrap: wrap; gap: 7px 12px; }
  .hero-trust i { display: none; }
  .section { padding: 73px 0; }
  .intro-grid, .journal-panel { grid-template-columns: 1fr; gap: 33px; }
  .tour-grid, .tour-grid-wide { grid-template-columns: repeat(2, 1fr); }
  .tour-card h3 { min-height: unset; }
  .tour-card p { min-height: unset; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .style-grid { grid-template-columns: repeat(2, 1fr); }
  .style-card { min-height: 230px; }
  .section-row { align-items: start; flex-direction: column; }
  .desktop-only { display: none; }
  .page-hero { min-height: 420px; }
  .tour-hero { min-height: 560px; }
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .overview-block { grid-template-columns: 1fr; }
  .overview-image { height: 260px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 30px); }
  .hero-content h1 { font-size: 50px; }
  .hero-content p { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-trust { font-size: 9px; }
  .hero-trust b { font-size: 17px; }
  .tour-grid, .tour-grid-wide, .experience-grid, .style-grid { grid-template-columns: 1fr; }
  .tour-card-image { aspect-ratio: 1.45 / 1; }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-card { min-height: 180px; padding: 13px; }
  .destination-card span { font-size: 18px; }
  .journal-visual, .journal-visual img { min-height: 260px; }
  .cta-inner { align-items: flex-start; flex-direction: column; gap: 24px; }
  .cta-inner h2 { font-size: 37px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero-content h1, .tour-hero-content h1 { font-size: 45px; }
  .tour-hero-content > p { font-size: 15px; }
  .hero-facts { gap: 10px 17px; }
  .hero-facts span { font-size: 10px; }
  .highlights-panel { padding: 20px 15px; }
  .panel-heading { align-items: start; flex-direction: column; gap: 2px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .highlight-item:nth-child(2) { border-right: 0; }
  .highlight-item:nth-child(3), .highlight-item:nth-child(4) { padding-top: 14px; border-top: 1px solid #d4caba; }
  .highlight-item:nth-child(3) { padding-left: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-note { align-self: flex-start; }
  .day-content { grid-template-columns: 1fr; gap: 17px; margin-left: 66px; }
  .timeline::before { left: 22px; }
  .day-marker { width: 45px; height: 45px; font-size: 14px; }
  .day-copy h3 { font-size: 22px; }
  .day-image { max-width: 260px; }
  .tailor-note { margin-left: 66px; }
  .craft-note { grid-template-columns: 1fr; padding: 15px; }
  .craft-note-image { height: 200px; }
  .detail-row { grid-template-columns: 19px 70px 1fr; }
  .booking-card, .sidebar-card { padding-left: 17px; padding-right: 17px; }
  .lightbox { padding: 20px 14px; }
}

/* Private Tours refinement — centered editorial heading */
.private-tours-intro{max-width:920px;margin:0 auto;text-align:center;padding:8px 24px 4px}
.private-tours-intro .eyebrow{display:block;margin-bottom:16px;letter-spacing:.22em}
.private-tours-intro h2{margin:0;color:#0b4b3f;font-family:Georgia,'Times New Roman',serif;font-size:clamp(2.6rem,5vw,5rem);line-height:1.02;font-weight:600;letter-spacing:-.035em}
.private-tours-intro p{max-width:700px;margin:22px auto 0;color:#53645f;font-size:clamp(1rem,1.4vw,1.18rem);line-height:1.8;font-weight:400}
.intro-section{padding-top:88px!important;padding-bottom:76px!important}
.tours-section{padding-top:54px!important}
.tour-card img{object-fit:cover;object-position:center;filter:none!important}
@media(max-width:700px){.intro-section{padding-top:58px!important;padding-bottom:50px!important}.private-tours-intro{padding-left:18px;padding-right:18px}.private-tours-intro h2{font-size:2.75rem}.private-tours-intro p{font-size:.98rem;line-height:1.7}.tours-section{padding-top:34px!important}}

/* Our Destinations — centered, orderly presentation */
.destinations-section .section-row{display:block;text-align:center}
.destinations-section .section-heading{max-width:820px;margin:0 auto 34px;text-align:center}
.destinations-section .section-heading .eyebrow{display:block;text-align:center}
.destinations-section .section-heading h2{margin-left:auto;margin-right:auto;text-align:center}
.destinations-section .section-heading h2::after{margin-left:auto;margin-right:auto}
.destinations-section .section-copy{max-width:720px;margin-left:auto;margin-right:auto;text-align:center;line-height:1.7}
