/* =========================================================================
 * The Dozen Collective — main stylesheet
 * Brand: bold, warm, modern group-travel look.
 * Colors are driven by CSS variables set in functions.php (Customizer).
 * ========================================================================= */

:root {
	--dz-accent: #2f7355;
	--dz-ink: #16342a;
	--dz-accent-dark: #245c44;
	--dz-gold: #c2a04e;
	--dz-gold-soft: #d9bd77;
	--dz-sand: #f4eddf;
	--dz-paper: #ffffff;
	--dz-muted: #5b6b60;
	--dz-line: #e4ddcd;
	--dz-radius: 16px;
	--dz-radius-sm: 10px;
	--dz-shadow: 0 18px 40px -24px rgba(16, 35, 59, 0.45);
	--dz-shadow-lg: 0 30px 60px -28px rgba(16, 35, 59, 0.5);
	--dz-maxw: 1180px;
	--dz-sans: "Lora", Georgia, "Times New Roman", serif;
	--dz-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--dz-price: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

/* Keep an uploaded logo neatly sized in the header */
.dz-header .custom-logo { max-height: 54px; width: auto; height: auto; }

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--dz-sans);
	color: var(--dz-ink);
	background: var(--dz-paper);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--dz-accent); text-decoration: none; }
a:hover { color: var(--dz-accent-dark); }

h1, h2, h3, h4 { font-family: var(--dz-display); line-height: 1.12; color: var(--dz-ink); margin: 0 0 .5em; font-weight: 600; }

.dz-container { width: 100%; max-width: var(--dz-maxw); margin: 0 auto; padding: 0 22px; }
.dz-center { text-align: center; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
	white-space: nowrap;
}
.screen-reader-text:focus {
	clip: auto; width: auto; height: auto;
	background: #fff; color: var(--dz-ink); padding: 12px 20px;
	left: 16px; top: 12px; z-index: 100000; border-radius: 8px;
}

/* ---------- Buttons ---------- */
.dz-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: .5em;
	font-family: var(--dz-sans);
	font-weight: 600; font-size: .95rem;
	padding: 12px 22px; border-radius: 999px;
	border: 2px solid transparent; cursor: pointer;
	transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
	line-height: 1;
}
.dz-btn:hover { transform: translateY(-2px); }
.dz-btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.dz-btn--block { display: flex; width: 100%; margin-top: 12px; }
.dz-btn--accent { background: var(--dz-accent); color: #fff; box-shadow: 0 12px 24px -12px var(--dz-accent); }
.dz-btn--accent:hover { background: var(--dz-accent-dark); color: #fff; }
.dz-btn--dark { background: var(--dz-ink); color: #fff; }
.dz-btn--dark:hover { background: #0a1626; color: #fff; }
.dz-btn--ghost { background: transparent; color: var(--dz-ink); border-color: var(--dz-line); }
.dz-btn--ghost:hover { border-color: var(--dz-ink); color: var(--dz-ink); }
.dz-btn--light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.dz-btn--light:hover { background: #fff; color: var(--dz-ink); }
.dz-btn--whatsapp { background: #25d366; color: #fff; }
.dz-btn--whatsapp:hover { background: #1fb955; color: #fff; }

/* ---------- Header / nav ---------- */
.dz-header {
	position: sticky; top: 0; z-index: 1000;
	background: rgba(244,237,223,.92);
	backdrop-filter: saturate(160%) blur(10px);
	border-top: 3px solid var(--dz-gold);
	border-bottom: 1px solid transparent;
	transition: box-shadow .2s ease, border-color .2s ease;
}
.dz-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(16,52,42,.5); border-bottom-color: var(--dz-line); }
.dz-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 20px; }
.dz-logo { font-family: var(--dz-display); font-weight: 700; font-size: 1.35rem; color: var(--dz-ink); letter-spacing: -.01em; }
.dz-logo strong { color: var(--dz-gold); font-weight: 700; }
.custom-logo-link { display: inline-block; }

.dz-nav { display: flex; align-items: center; gap: 26px; }
.dz-menu { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.dz-menu a { color: var(--dz-ink); font-weight: 500; font-size: .98rem; position: relative; }
.dz-menu a:hover { color: var(--dz-accent); }
.dz-menu .current-menu-item > a { color: var(--dz-accent); }
.dz-menu .sub-menu { display: none; }
.dz-nav__cta { white-space: nowrap; }

.dz-navtoggle { display: none; }

/* ---------- Hero ---------- */
.dz-hero {
	position: relative; color: #fff;
	min-height: 88vh; display: flex; align-items: center;
	background-color: var(--dz-ink);
	background-image: linear-gradient(120deg, rgba(13,38,28,.62), rgba(13,38,28,.30)), url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80");
	background-size: cover; background-position: center;
}
.dz-hero__inner { padding: 90px 22px; max-width: 820px; }
.dz-hero__eyebrow { letter-spacing: .22em; font-size: .82rem; font-weight: 600; text-transform: uppercase; color: var(--dz-gold-soft); margin: 0 0 18px; }
.dz-hero__title { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 0 0 18px; font-weight: 600; }
.dz-hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 620px; opacity: .96; margin: 0 0 30px; }
.dz-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Section headings ---------- */
.dz-section__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.dz-section__eyebrow { color: var(--dz-accent); letter-spacing: .16em; text-transform: uppercase; font-weight: 600; font-size: .8rem; margin: 0 0 12px; }
.dz-section__title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: 0 0 12px; }
.dz-section__lede { color: var(--dz-muted); font-size: 1.08rem; margin: 0; }

/* ---------- Benefits ---------- */
.dz-benefits { background: var(--dz-sand); padding: 70px 0; }
.dz-benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dz-benefit { background: #fff; border-radius: var(--dz-radius); padding: 30px 26px; box-shadow: var(--dz-shadow); }
.dz-benefit__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 54px; height: 54px; border-radius: 14px;
	background: linear-gradient(135deg, var(--dz-accent), var(--dz-accent-dark));
	color: #fff; font-weight: 700; font-size: 1.4rem; margin-bottom: 16px;
}
.dz-benefit__title { font-size: 1.18rem; margin: 0 0 8px; }
.dz-benefit__copy { color: var(--dz-muted); font-size: .96rem; margin: 0; }

/* ---------- Grids ---------- */
.dz-grid { display: grid; gap: 26px; }
.dz-grid--3 { grid-template-columns: repeat(3, 1fr); }

.dz-trips-feature { padding: 80px 0; }
.dz-trips-feature .dz-center { margin-top: 44px; }

/* ---------- Trip card ---------- */
.dz-card {
	background: #fff; border-radius: var(--dz-radius); overflow: hidden;
	box-shadow: var(--dz-shadow); display: flex; flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}
.dz-card:hover { transform: translateY(-6px); box-shadow: var(--dz-shadow-lg); }
.dz-card__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.dz-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dz-card:hover .dz-card__img { transform: scale(1.06); }
.dz-card__img--placeholder { background: linear-gradient(135deg, #cdd8e3, #9fb2c4); }
.dz-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.dz-card__region { color: var(--dz-accent); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 6px; }
.dz-card__region a { color: inherit; }
.dz-card__title { font-size: 1.32rem; margin: 0 0 6px; }
.dz-card__title a { color: var(--dz-ink); }
.dz-card__title a:hover { color: var(--dz-accent); }
.dz-card__cities { color: var(--dz-muted); font-size: .92rem; margin: 0 0 16px; }
.dz-card__facts { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 6px; }
.dz-card__facts li { font-size: .92rem; color: var(--dz-ink); display: flex; gap: 8px; }
.dz-card__factlabel { color: var(--dz-muted); min-width: 52px; }
.dz-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.dz-card__price { font-family: var(--dz-display); font-weight: 600; font-size: 1.3rem; color: var(--dz-ink); }
.dz-card__priceper { font-family: var(--dz-sans); font-size: .8rem; color: var(--dz-muted); font-weight: 400; }
.dz-card__spots { margin: 12px 0 0; font-size: .85rem; font-weight: 600; color: var(--dz-accent-dark); }

/* ---------- Badge ---------- */
.dz-badge {
	position: absolute; top: 14px; left: 14px; z-index: 2;
	font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
	padding: 6px 12px; border-radius: 999px; color: #fff; background: var(--dz-ink);
}
.dz-badge--filling-fast { background: var(--dz-accent); }
.dz-badge--sold-out { background: #7a8694; }
.dz-badge--upcoming { background: #1f8a5b; }
.dz-badge--past { background: #7a8694; }

/* ---------- Testimonials ---------- */
.dz-testimonials { padding: 80px 0; background: var(--dz-ink); }
.dz-testimonials .dz-section__title { color: #fff; }
.dz-testimonials .dz-section__eyebrow { color: var(--dz-gold-soft); }
.dz-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dz-quote { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--dz-radius); padding: 28px; margin: 0; }
.dz-quote__text { font-family: var(--dz-display); font-size: 1.12rem; line-height: 1.5; color: #fff; margin: 0 0 18px; }
.dz-quote__by { color: #cdd8e3; font-size: .9rem; }
.dz-quote__by strong { color: #fff; display: block; }

/* ---------- Lead band ---------- */
.dz-leadband { padding: 80px 0; background: var(--dz-sand); }
.dz-leadband__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
.dz-leadband__title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 0 0 14px; }
.dz-leadband__sub { color: var(--dz-muted); font-size: 1.08rem; margin: 0 0 22px; }
.dz-leadband__ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dz-leadband__ticks li { padding-left: 30px; position: relative; font-weight: 500; }
.dz-leadband__ticks li::before { content: "✦"; position: absolute; left: 0; color: var(--dz-gold); font-weight: 700; }

/* ---------- Lead form ---------- */
.dz-leadform { background: #fff; border-radius: var(--dz-radius); padding: 30px; box-shadow: var(--dz-shadow); }
.dz-leadform--band { box-shadow: var(--dz-shadow-lg); }
.dz-leadform__title { font-size: 1.5rem; margin: 0 0 6px; }
.dz-leadform__sub { color: var(--dz-muted); font-size: .96rem; margin: 0 0 20px; }
.dz-leadform__notice { background: #fff7ed; border: 1px solid #fcd9a8; color: #92590f; padding: 10px 14px; border-radius: 10px; font-size: .85rem; margin: 0 0 16px; }
.dz-leadform__notice a { color: #92590f; text-decoration: underline; }

.dz-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.dz-form__field { display: block; }
.dz-form__field--full { margin-bottom: 16px; }
.dz-form input[type="text"], .dz-form input[type="email"], .dz-form input[type="tel"], .dz-form textarea {
	width: 100%; padding: 13px 15px; font: inherit; color: var(--dz-ink);
	background: var(--dz-sand); border: 1.5px solid var(--dz-line); border-radius: var(--dz-radius-sm);
	transition: border-color .15s ease, background .15s ease;
}
.dz-form input:focus, .dz-form textarea:focus { outline: none; border-color: var(--dz-accent); background: #fff; }
.dz-form textarea { resize: vertical; }
.dz-form__submit { width: 100%; margin-top: 4px; }
.dz-form__status { margin: 12px 0 0; font-size: .9rem; min-height: 1em; }
.dz-form__status.is-success { color: #1f8a5b; font-weight: 600; }
.dz-form__status.is-error { color: var(--dz-accent-dark); font-weight: 500; }

/* ---------- Journal ---------- */
.dz-journal { padding: 80px 0; }
.dz-postcard { background: #fff; border-radius: var(--dz-radius); overflow: hidden; box-shadow: var(--dz-shadow); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.dz-postcard:hover { transform: translateY(-6px); box-shadow: var(--dz-shadow-lg); }
.dz-postcard__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.dz-postcard__img { width: 100%; height: 100%; object-fit: cover; }
.dz-postcard__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.dz-postcard__meta { color: var(--dz-muted); font-size: .82rem; margin: 0 0 8px; }
.dz-postcard__title { font-size: 1.25rem; margin: 0 0 10px; }
.dz-postcard__title a { color: var(--dz-ink); }
.dz-postcard__title a:hover { color: var(--dz-accent); }
.dz-postcard__excerpt { color: var(--dz-muted); font-size: .95rem; margin: 0 0 16px; }
.dz-link { font-weight: 600; margin-top: auto; }

/* ---------- Page heads & prose ---------- */
.dz-pagehead { padding: 64px 0 30px; background: var(--dz-sand); }
.dz-pagehead__title { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 10px; }
.dz-pagehead__lede { color: var(--dz-muted); font-size: 1.1rem; max-width: 640px; margin: 0; }
.dz-archive { padding: 50px 0 80px; }
.dz-prose { padding: 46px 22px 70px; max-width: 760px; font-size: 1.06rem; }
.dz-prose h2 { font-size: 1.7rem; margin: 1.4em 0 .5em; }
.dz-prose p { margin: 0 0 1.1em; }
.dz-prose img { border-radius: var(--dz-radius); margin: 1.2em 0; }

/* ---------- Filters ---------- */
.dz-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.dz-chip { padding: 8px 18px; border-radius: 999px; border: 1.5px solid var(--dz-line); color: var(--dz-ink); font-weight: 500; font-size: .92rem; }
.dz-chip:hover { border-color: var(--dz-ink); color: var(--dz-ink); }
.dz-chip.is-active { background: var(--dz-ink); color: #fff; border-color: var(--dz-ink); }

/* ---------- Single trip ---------- */
.dz-trip__hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.dz-trip__heroimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dz-trip__herooverlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,38,28,.1), rgba(13,38,28,.80)); }
.dz-trip__heroinner { position: relative; z-index: 2; padding: 48px 22px; }
.dz-trip__title { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin: 10px 0 6px; }
.dz-trip__cities { font-size: 1.05rem; opacity: .95; margin: 0; }
.dz-trip__layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; padding-top: 50px; padding-bottom: 80px; }
.dz-facts { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dz-facts li { background: var(--dz-sand); border-radius: var(--dz-radius-sm); padding: 16px 18px; }
.dz-facts__k { display: block; color: var(--dz-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.dz-facts__v { font-family: var(--dz-display); font-weight: 600; font-size: 1.2rem; }
.dz-trip__content { font-size: 1.06rem; }
.dz-trip__content p { margin: 0 0 1.1em; }
.dz-trip__aside { position: relative; }
.dz-trip__booking { position: sticky; top: 96px; background: #fff; border: 1px solid var(--dz-line); border-radius: var(--dz-radius); padding: 26px; box-shadow: var(--dz-shadow); }
.dz-trip__priceline { margin: 0 0 16px; color: var(--dz-muted); }
.dz-trip__pricebig { font-family: var(--dz-display); font-size: 2rem; font-weight: 700; color: var(--dz-ink); }
.dz-trip__booking .dz-leadform { padding: 0; box-shadow: none; }

/* ---------- Itinerary deck (PDF slide viewer) ---------- */
.dz-deck { margin: 0 0 36px; padding: 22px; background: var(--dz-sand); border: 1px solid var(--dz-line); border-radius: var(--dz-radius); }
.dz-deck__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.dz-deck__title { font-size: 1.4rem; margin: 0; }
.dz-deck__download { font-weight: 600; font-size: .92rem; white-space: nowrap; }
.dz-deck__stage { display: flex; align-items: center; gap: 12px; }
.dz-deck__canvaswrap { position: relative; flex: 1; min-width: 0; display: flex; justify-content: center; }
.dz-deck__canvaswrap canvas { max-width: 100%; height: auto; border-radius: var(--dz-radius-sm); box-shadow: var(--dz-shadow); background: #fff; display: block; }
.dz-deck__loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--dz-muted); font-size: .95rem; min-height: 200px; }
.dz-deck__loading a { font-weight: 600; }
.dz-deck__nav {
	flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
	border: none; cursor: pointer; background: var(--dz-accent); color: #fff;
	font-size: 1.6rem; line-height: 1; display: flex; align-items: center; justify-content: center;
	box-shadow: var(--dz-shadow); transition: background .2s ease, transform .15s ease, opacity .2s ease;
}
.dz-deck__nav:hover:not(:disabled) { background: var(--dz-accent-dark); transform: scale(1.06); }
.dz-deck__nav:disabled { opacity: .35; cursor: default; }
.dz-deck__foot { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 16px; }
.dz-deck__counter { font-weight: 600; color: var(--dz-ink); font-variant-numeric: tabular-nums; }
.dz-deck__fs {
	border: 1.5px solid var(--dz-line); background: #fff; color: var(--dz-ink);
	padding: 7px 16px; border-radius: 999px; cursor: pointer; font: inherit; font-size: .85rem; font-weight: 600;
}
.dz-deck__fs:hover { border-color: var(--dz-ink); }
/* Tagline above the itinerary */
.dz-trip__tagline { font-size: 1.2rem; line-height: 1.5; color: var(--dz-ink); font-style: italic; margin: 0 0 24px; padding-left: 16px; border-left: 3px solid var(--dz-gold); }
/* Locked deck (lead gate) */
.dz-deck--locked { background: linear-gradient(160deg, #16342a, #0c1f18); border-color: transparent; color: #fff; text-align: center; }
.dz-deck__gate { max-width: 560px; margin: 0 auto; padding: 16px 4px 8px; }
.dz-deck__lockicon { font-size: 1.9rem; margin-bottom: 8px; }
.dz-deck--locked .dz-deck__title { color: #fff; }
.dz-deck__gatesub { color: rgba(255,255,255,.82); margin: 4px 0 20px; font-size: .98rem; }
.dz-gate { text-align: left; }
.dz-deck--locked .dz-gate input { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; }
.dz-deck--locked .dz-gate input::placeholder { color: rgba(255,255,255,.6); }
.dz-deck--locked .dz-gate input:focus { background: rgba(255,255,255,.16); border-color: var(--dz-gold); }
.dz-deck--locked .dz-form__submit { background: var(--dz-gold); color: var(--dz-ink); }
.dz-deck--locked .dz-form__submit:hover { background: #b08e35; color: var(--dz-ink); }
.dz-deck--locked .dz-form__status.is-error { color: #ffd0cb; }
/* Fullscreen mode */
.dz-deck.is-fullscreen { background: #0c1f18; padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.dz-deck.is-fullscreen .dz-deck__title, .dz-deck.is-fullscreen .dz-deck__counter { color: #fff; }
.dz-deck.is-fullscreen .dz-deck__stage { flex: 1; align-items: center; }
.dz-deck.is-fullscreen .dz-deck__canvaswrap canvas { max-height: 78vh; width: auto; }
.dz-deck.is-fullscreen .dz-deck__fs { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }

@media (max-width: 600px) {
	.dz-deck { padding: 16px; }
	.dz-deck__nav { width: 38px; height: 38px; font-size: 1.3rem; }
	.dz-deck__stage { gap: 6px; }
}

/* ---------- Footer ---------- */
.dz-footer { background: var(--dz-ink); color: #c7d2dd; padding: 64px 0 0; }
.dz-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 50px; }
.dz-footer__name { font-family: var(--dz-display); font-weight: 700; font-size: 1.4rem; color: #fff; }
.dz-footer__tag { margin: 12px 0 18px; font-size: .95rem; }
.dz-footer__heading { color: #fff; font-size: 1.05rem; margin: 0 0 16px; }
.dz-footer__menu, .dz-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dz-footer__menu a, .dz-footer__contact a { color: #c7d2dd; font-size: .95rem; }
.dz-footer__menu a:hover, .dz-footer__contact a:hover { color: #fff; }
.dz-footer__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.dz-social { display: inline-flex; align-items: center; padding: 8px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #fff; font-size: .85rem; }
.dz-social:hover { background: var(--dz-accent); border-color: var(--dz-accent); color: #fff; }
.dz-footer__newscopy { font-size: .92rem; margin: 0 0 14px; }
.dz-news { display: flex; flex-wrap: wrap; gap: 10px; }
.dz-news input[type="email"] { flex: 1; min-width: 0; padding: 12px 14px; border-radius: var(--dz-radius-sm); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; font: inherit; }
.dz-news input::placeholder { color: #97a6b5; }
.dz-news .dz-form__status { width: 100%; color: #fff; }
.dz-footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.dz-footer__barinner { font-size: .85rem; color: #97a6b5; }

/* ---------- WhatsApp FAB ---------- */
.dz-whatsapp-fab {
	position: fixed; right: 20px; bottom: 20px; z-index: 1500;
	width: 58px; height: 58px; padding: 0; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: #25d366; color: #fff;
	box-shadow: 0 16px 30px -12px rgba(37,211,102,.7);
	transition: transform .15s ease;
}
.dz-whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); color: #fff; }
.dz-whatsapp-fab .dz-wa-icon { width: 32px; height: 32px; }

/* WhatsApp glyph alignment */
.dz-wa-icon { vertical-align: middle; flex: 0 0 auto; }
.dz-wa-link { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Misc ---------- */
.dz-empty { text-align: center; color: var(--dz-muted); padding: 40px 0; font-size: 1.05rem; }
.dz-pagination { margin-top: 46px; text-align: center; }
.dz-pagination .nav-links { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.dz-pagination a, .dz-pagination .current {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 10px; border-radius: 10px;
	border: 1.5px solid var(--dz-line); color: var(--dz-ink); font-weight: 600;
}
.dz-pagination .current { background: var(--dz-ink); color: #fff; border-color: var(--dz-ink); }
.dz-results { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; max-width: 760px; }
.dz-result { border-bottom: 1px solid var(--dz-line); padding-bottom: 18px; }
.dz-result__title { font-size: 1.4rem; margin: 0 0 6px; }
.dz-result__excerpt { color: var(--dz-muted); margin: 0; }
.dz-searchform { display: flex; gap: 10px; max-width: 460px; }
.dz-searchform__input { flex: 1; padding: 12px 15px; border-radius: var(--dz-radius-sm); border: 1.5px solid var(--dz-line); font: inherit; }
.dz-single__media { padding: 30px 0 0; }
.dz-single__img { width: 100%; border-radius: var(--dz-radius); max-height: 520px; object-fit: cover; }
.dz-single__nav { padding-bottom: 70px; }
.dz-single__nav .nav-links { display: flex; justify-content: space-between; gap: 16px; }
.dz-comments { padding: 20px 0 70px; max-width: 760px; }

/* ---------- Reveal animation ---------- */
.dz-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.dz-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.dz-benefits__grid { grid-template-columns: repeat(2, 1fr); }
	.dz-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.dz-testimonials__grid { grid-template-columns: 1fr; }
	.dz-leadband__inner { grid-template-columns: 1fr; gap: 32px; }
	.dz-trip__layout { grid-template-columns: 1fr; }
	.dz-trip__booking { position: static; }
	.dz-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
	.dz-navtoggle {
		display: inline-flex; align-items: center; justify-content: center;
		width: 46px; height: 46px; border: 1.5px solid var(--dz-line);
		background: #fff; border-radius: 12px; cursor: pointer; position: relative;
	}
	.dz-navtoggle__bar, .dz-navtoggle__bar::before, .dz-navtoggle__bar::after {
		content: ""; position: absolute; width: 20px; height: 2px; background: var(--dz-ink); transition: transform .2s ease, opacity .2s ease;
	}
	.dz-navtoggle__bar { left: 13px; }
	.dz-navtoggle__bar::before { top: -6px; left: 0; }
	.dz-navtoggle__bar::after { top: 6px; left: 0; }
	.is-open .dz-navtoggle__bar { background: transparent; }
	.is-open .dz-navtoggle__bar::before { transform: translateY(6px) rotate(45deg); }
	.is-open .dz-navtoggle__bar::after { transform: translateY(-6px) rotate(-45deg); }

	.dz-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		flex-direction: column; align-items: stretch; gap: 0;
		background: #fff; border-top: 1px solid var(--dz-line);
		box-shadow: var(--dz-shadow); padding: 12px 22px 22px;
		display: none;
	}
	.dz-header.is-open .dz-nav { display: flex; }
	.dz-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.dz-menu li { border-bottom: 1px solid var(--dz-line); }
	.dz-menu a { display: block; padding: 14px 2px; }
	.dz-nav__cta { margin-top: 14px; }

	.dz-benefits__grid { grid-template-columns: 1fr; }
	.dz-grid--3 { grid-template-columns: 1fr; }
	.dz-footer__grid { grid-template-columns: 1fr; }
	.dz-form__row { grid-template-columns: 1fr; }
	.dz-facts { grid-template-columns: 1fr; }
	.dz-hero { min-height: 80vh; }
	.dz-single__nav .nav-links { flex-direction: column; }
}

/* =========================================================================
 * Trip landing layout (hero facts, highlights, cards, WhatsApp CTA)
 * ========================================================================= */
.dz-trip__herocta { margin-top: 22px; }

/* Facts strip */
.dz-tripfacts { background: var(--dz-sand); border-bottom: 1px solid var(--dz-line); }
.dz-tripfacts__grid { display: flex; flex-wrap: wrap; }
.dz-fact { flex: 1 1 0; min-width: 150px; padding: 22px 18px; text-align: center; border-right: 1px solid var(--dz-line); }
.dz-fact:last-child { border-right: none; }
.dz-fact__k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--dz-muted); margin-bottom: 6px; }
.dz-fact__v { font-family: var(--dz-display); font-weight: 600; font-size: 1.05rem; color: var(--dz-ink); }

/* Sections */
.dz-tripsection { padding: 60px 0; }
.dz-tripsection--alt { background: var(--dz-sand); }
.dz-tripsection__narrow { max-width: 780px; }
.dz-trip__about { font-size: 1.15rem; line-height: 1.7; color: var(--dz-ink); margin: 0; }

/* Highlight chips */
.dz-chips { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.dz-chips--center { justify-content: center; }
.dz-chip--hl { background: #fff; border: 1px solid var(--dz-line); border-radius: 999px; padding: 10px 18px; font-weight: 500; color: var(--dz-ink); box-shadow: var(--dz-shadow); }
.dz-chip--hl span { color: var(--dz-gold); font-weight: 700; }

/* Highlight photo cards */
.dz-hlcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dz-hlcard { position: relative; margin: 0; border-radius: var(--dz-radius); overflow: hidden; box-shadow: var(--dz-shadow); aspect-ratio: 4 / 3; }
.dz-hlcard__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.dz-hlcard:hover .dz-hlcard__img { transform: scale(1.06); }
.dz-hlcard__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; color: #fff; font-weight: 600; background: linear-gradient(180deg, transparent, rgba(13,38,28,.85)); }

/* Brief itinerary spacing */
.dz-trip__brief h2 { margin-top: 0; }
.dz-trip__brief p { margin: 0 0 .9em; }

/* WhatsApp itinerary CTA */
.dz-wacta { background: linear-gradient(160deg, #16342a, #0c1f18); color: #fff; padding: 72px 0; }
.dz-wacta__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.dz-wacta__title { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 14px; }
.dz-wacta__sub { color: rgba(255,255,255,.85); font-size: 1.05rem; margin: 0 0 20px; }
.dz-wacta__ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dz-wacta__ticks li { padding-left: 28px; position: relative; color: rgba(255,255,255,.9); }
.dz-wacta__ticks li::before { content: "✦"; position: absolute; left: 0; color: var(--dz-gold); }

.dz-waform { background: #fff; border-radius: var(--dz-radius); padding: 26px; box-shadow: var(--dz-shadow-lg); }
.dz-waform__label { display: block; font-weight: 600; color: var(--dz-ink); margin-bottom: 8px; }
.dz-waform__row { display: flex; gap: 10px; margin-bottom: 14px; }
.dz-waform__cc { flex: 0 0 42%; max-width: 42%; padding: 13px 10px; border: 1.5px solid var(--dz-line); border-radius: var(--dz-radius-sm); background: var(--dz-sand); font: inherit; color: var(--dz-ink); }
.dz-waform__phone { flex: 1; min-width: 0; padding: 13px 15px; border: 1.5px solid var(--dz-line); border-radius: var(--dz-radius-sm); background: var(--dz-sand); font: inherit; color: var(--dz-ink); }
.dz-waform__cc:focus, .dz-waform__phone:focus { outline: none; border-color: var(--dz-accent); background: #fff; }
.dz-waform .dz-form__status { text-align: center; }
.dz-waform .dz-form__status.is-success { color: #1f8a5b; font-weight: 600; }
.dz-waform .dz-form__status.is-error { color: var(--dz-accent-dark); }
.dz-waform .dz-form__status a { color: inherit; text-decoration: underline; }
.dz-waform__note { text-align: center; color: var(--dz-muted); font-size: .82rem; margin: 12px 0 0; }

.dz-trip__reserve { background: #fff; border: 1px solid var(--dz-line); border-radius: var(--dz-radius); padding: 28px; box-shadow: var(--dz-shadow); }
.dz-trip__reserve .dz-leadform { padding: 0; box-shadow: none; }

/* Sticky mobile CTA bar */
.dz-tripbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1400; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 16px; background: #fff; border-top: 1px solid var(--dz-line); box-shadow: 0 -8px 24px -18px rgba(16,52,42,.5); }
.dz-tripbar__info strong { font-family: var(--dz-display); font-size: 1.1rem; color: var(--dz-ink); }
.dz-tripbar__info span { color: var(--dz-muted); font-size: .82rem; }
.dz-tripbar__cta { white-space: nowrap; }

@media (max-width: 980px) {
	.dz-hlcards { grid-template-columns: repeat(2, 1fr); }
	.dz-wacta__inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 760px) {
	.dz-hlcards { grid-template-columns: 1fr; }
	.dz-fact { flex-basis: 50%; min-width: 0; }
	.dz-tripbar { display: flex; }
	.single-trip .dz-whatsapp-fab { display: none; }
	.dz-footer { padding-bottom: 78px; }
	.dz-waform__cc { flex-basis: 46%; max-width: 46%; }
}

/* =========================================================================
 * Trip framework v2 (faithful landing-page layout)
 * ========================================================================= */
.dz-i { display: inline-block; vertical-align: middle; }
.dz-trip__herosub { color: rgba(255,255,255,.92); font-size: 1.05rem; margin: 10px 0 0; }

/* Intro: tagline + icon facts + pill */
.dz-tripintro { padding: 48px 0 8px; }
.dz-tripintro__tagline { font-family: var(--dz-display); font-size: clamp(1.4rem, 2.6vw, 2.05rem); line-height: 1.32; text-align: center; max-width: 840px; margin: 0 auto 8px; color: var(--dz-ink); }
.dz-tripintro__loc { text-align: center; color: var(--dz-muted); font-weight: 500; margin: 0 0 26px; }
.dz-factrow { display: flex; flex-wrap: wrap; justify-content: center; border-top: 1px solid var(--dz-line); border-bottom: 1px solid var(--dz-line); padding: 24px 0; }
.dz-factrow__item { flex: 1 1 0; min-width: 130px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 4px 12px; }
.dz-factrow__icon { color: var(--dz-accent); }
.dz-factrow__k { font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--dz-muted); }
.dz-factrow__v { font-family: var(--dz-display); font-weight: 600; color: var(--dz-ink); font-size: 1rem; }
.dz-pill { display: inline-block; margin-top: 26px; background: var(--dz-accent); color: #fff; font-weight: 600; font-size: .82rem; letter-spacing: .04em; padding: 9px 20px; border-radius: 999px; }

/* About */
.dz-about { display: grid; grid-template-columns: .92fr 1.08fr; gap: 46px; align-items: center; }
.dz-about__img { width: 100%; border-radius: var(--dz-radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--dz-shadow); }
.dz-about__text .dz-section__title { margin-top: 0; }
.dz-about .dz-prose { font-size: 1.07rem; padding: 0; }

/* Checklist */
.dz-checklist { list-style: none; margin: 20px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.dz-checklist li { display: flex; align-items: flex-start; gap: 11px; color: var(--dz-ink); font-weight: 500; }
.dz-checklist__i { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(47,115,85,.12); color: var(--dz-accent); margin-top: 1px; }
.dz-checklist__i--no { background: rgba(181,72,60,.12); color: #b5483c; }

/* Experience cards */
.dz-expcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dz-expcard { margin: 0; background: #fff; border-radius: var(--dz-radius); overflow: hidden; box-shadow: var(--dz-shadow); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.dz-expcard:hover { transform: translateY(-5px); box-shadow: var(--dz-shadow-lg); }
.dz-expcard__media { aspect-ratio: 4/3; overflow: hidden; }
.dz-expcard__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dz-expcard:hover .dz-expcard__img { transform: scale(1.06); }
.dz-expcard__body { padding: 18px 20px 22px; }
.dz-expcard__title { font-size: 1.15rem; margin: 0 0 6px; }
.dz-expcard__desc { color: var(--dz-muted); font-size: .94rem; margin: 0; }

/* Itinerary timeline + tabs */
.dz-itin { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.dz-timeline { list-style: none; margin: 20px 0 0; padding: 0; position: relative; }
.dz-timeline::before { content: ""; position: absolute; left: 15px; top: 10px; bottom: 18px; width: 2px; background: var(--dz-line); }
.dz-timeline__item { position: relative; display: flex; gap: 16px; padding: 0 0 24px; }
.dz-timeline__pin { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: var(--dz-accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; z-index: 1; }
.dz-timeline__place { font-size: 1.1rem; margin: 3px 0 4px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dz-timeline__nights { font-family: var(--dz-sans); font-size: .72rem; font-weight: 600; color: var(--dz-accent); background: rgba(47,115,85,.12); padding: 3px 10px; border-radius: 999px; }
.dz-timeline__detail { color: var(--dz-muted); margin: 0; font-size: .95rem; line-height: 1.6; }
.dz-tabs__nav { display: inline-flex; gap: 6px; background: var(--dz-sand); padding: 6px; border-radius: 999px; margin: 20px 0; }
.dz-tabs__btn { border: none; background: transparent; padding: 9px 24px; border-radius: 999px; font: inherit; font-weight: 600; color: var(--dz-muted); cursor: pointer; }
.dz-tabs__btn.is-active { background: #fff; color: var(--dz-ink); box-shadow: var(--dz-shadow); }
.dz-tabs__panel.is-hidden { display: none; }
.dz-tabs__panel.dz-checklist { grid-template-columns: 1fr; margin-top: 4px; }

/* Get itinerary (WhatsApp) — compact card */
.dz-getit { max-width: 640px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--dz-line); border-radius: var(--dz-radius); padding: 36px 30px; box-shadow: var(--dz-shadow); }
.dz-getit__title { font-size: 1.6rem; margin: 0 0 6px; }
.dz-getit__sub { color: var(--dz-muted); margin: 0 0 22px; }
.dz-getit .dz-waform { background: none; border: 0; padding: 0; box-shadow: none; }
.dz-getit .dz-waform__row { display: flex; gap: 10px; margin-bottom: 14px; }
.dz-getit__btn { width: 100%; }

/* Dates & prices */
.dz-deps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.dz-dep { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--dz-line); border-radius: var(--dz-radius); padding: 16px 18px; }
.dz-dep__icon { color: var(--dz-accent); flex: 0 0 auto; }
.dz-dep__info { flex: 1; display: flex; flex-direction: column; }
.dz-dep__date { font-family: var(--dz-display); font-size: 1.05rem; color: var(--dz-ink); }
.dz-dep__note { color: var(--dz-muted); font-size: .85rem; }
.dz-dep__cta { white-space: nowrap; }

/* Reviews strip */
.dz-reviews-strip { background: var(--dz-ink); }
.dz-reviews-strip__inner { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.dz-rating { display: flex; flex-direction: column; align-items: center; }
.dz-rating__score { font-family: var(--dz-display); font-size: 2.6rem; font-weight: 700; color: #fff; line-height: 1; }
.dz-rating__stars { color: var(--dz-gold); font-size: 1.1rem; letter-spacing: 3px; }
.dz-rating__label { color: rgba(255,255,255,.8); font-size: .85rem; margin-top: 4px; }
.dz-rating__quote { font-family: var(--dz-display); font-size: 1.18rem; color: #fff; max-width: 560px; margin: 0; border-left: 3px solid var(--dz-gold); padding-left: 20px; text-align: left; }

/* FAQ accordion */
.dz-faqs { margin-top: 22px; border-top: 1px solid var(--dz-line); }
.dz-faq { border-bottom: 1px solid var(--dz-line); }
.dz-faq__q { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font: inherit; font-weight: 600; font-size: 1.05rem; color: var(--dz-ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.dz-faq__chev { color: var(--dz-accent); transition: transform .2s ease; flex: 0 0 auto; }
.dz-faq.is-open .dz-faq__chev { transform: rotate(180deg); }
.dz-faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.dz-faq.is-open .dz-faq__a { max-height: 440px; }
.dz-faq__a p { margin: 0 0 20px; color: var(--dz-muted); line-height: 1.7; }

@media (max-width: 900px) {
	.dz-about { grid-template-columns: 1fr; gap: 26px; }
	.dz-itin { grid-template-columns: 1fr; gap: 36px; }
	.dz-expcards { grid-template-columns: repeat(2, 1fr); }
	.dz-deps { grid-template-columns: 1fr; }
	.dz-reviews-strip__inner { flex-direction: column; gap: 22px; }
	.dz-rating__quote { text-align: center; border-left: 0; border-top: 3px solid var(--dz-gold); padding: 16px 0 0; }
}
@media (max-width: 600px) {
	.dz-checklist { grid-template-columns: 1fr; }
	.dz-expcards { grid-template-columns: 1fr; }
	.dz-factrow__item { min-width: 33%; }
	.dz-getit .dz-waform__row { flex-direction: column; }
}

/* =========================================================================
 * Trip page beautify pass — spacing, imagery, premium WhatsApp card
 * ========================================================================= */
.dz-tripsection { padding: 76px 0; }
.dz-tripsection .dz-section__title { margin-bottom: 8px; }
.dz-prose { max-width: 64ch; }
.dz-prose p { line-height: 1.75; }

/* Intro tagline + facts */
.dz-tripintro { padding: 54px 0 0; }
.dz-tripintro__tagline { margin-bottom: 10px; }
.dz-tripintro__loc { margin-bottom: 30px; letter-spacing: .02em; }
.dz-factrow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; border: 0; padding: 0; }
.dz-factrow__item { background: #fff; border: 1px solid var(--dz-line); border-radius: 16px; padding: 20px 12px; box-shadow: var(--dz-shadow); gap: 6px; }
.dz-factrow__icon { color: var(--dz-accent); }
.dz-pill { margin-top: 30px; }

/* About — image-led, tight text */
.dz-about { gap: 50px; }
.dz-about__img { aspect-ratio: 5/4; border-radius: 20px; }
.dz-about .dz-prose { max-width: none; }
.dz-about .dz-prose p { margin: 0 0 1em; }

/* Highlights checklist */
.dz-checklist { list-style: none; gap: 16px 32px; margin-top: 26px; }
.dz-checklist li { list-style: none; font-size: 1.02rem; }

/* Experience cards — image forward with overlay captions */
.dz-expcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 14px; }
.dz-expcard { position: relative; margin: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--dz-shadow); aspect-ratio: 4/5; }
.dz-expcard .dz-expcard__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.dz-expcard:hover .dz-expcard__img { transform: scale(1.07); }
.dz-expcard__cap { position: absolute; inset: auto 0 0 0; padding: 40px 18px 16px; display: flex; flex-direction: column; gap: 3px; color: #fff; background: linear-gradient(to top, rgba(13,38,28,.9), rgba(13,38,28,0)); }
.dz-expcard__title { font-family: var(--dz-display); font-weight: 600; font-size: 1.18rem; line-height: 1.2; }
.dz-expcard__desc { font-size: .85rem; opacity: .92; line-height: 1.4; }

/* Itinerary + tabs spacing */
.dz-itin { gap: 56px; }

/* WhatsApp download — premium card */
.dz-getit { max-width: 560px; padding: 40px 34px; border: 0; border-radius: 22px; background: linear-gradient(165deg, #ffffff, var(--dz-sand)); box-shadow: var(--dz-shadow-lg); }
.dz-getit__title { font-size: 1.75rem; margin: 0 0 8px; }
.dz-getit__sub { margin: 0 0 24px; font-size: 1rem; }
.dz-getit .dz-waform { background: none; border: 0; padding: 0; box-shadow: none; }
.dz-getit .dz-waform__row { display: flex; gap: 10px; margin-bottom: 14px; }
.dz-waform__cc, .dz-waform__phone {
	height: 56px; border: 1.5px solid var(--dz-line); border-radius: 14px; background: #fff;
	font: inherit; color: var(--dz-ink); padding: 0 16px; box-shadow: 0 2px 8px -6px rgba(16,52,42,.4);
}
.dz-waform__cc {
	flex: 0 0 44%; max-width: 44%; -webkit-appearance: none; appearance: none; cursor: pointer;
	padding-right: 34px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232f7355' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center;
}
.dz-waform__phone { flex: 1 1 auto; min-width: 0; }
.dz-waform__cc:focus, .dz-waform__phone:focus { outline: none; border-color: var(--dz-accent); box-shadow: 0 0 0 3px rgba(47,115,85,.15); }
.dz-getit__btn { width: 100%; height: 58px; font-size: 1.06rem; border-radius: 14px; box-shadow: 0 16px 30px -14px rgba(37,211,102,.7); }
.dz-getit .dz-form__status { text-align: center; margin-top: 14px; }

/* Dates & prices */
.dz-deps { margin-top: 26px; gap: 16px; }
.dz-dep { padding: 18px 20px; border-radius: 16px; }

/* Reviews strip */
.dz-reviews-strip { padding: 56px 0; }

/* Reserve card */
.dz-trip__reserve { border: 0; border-radius: 20px; padding: 32px; box-shadow: var(--dz-shadow-lg); }

@media (max-width: 900px) {
	.dz-tripsection { padding: 56px 0; }
	.dz-factrow { grid-template-columns: repeat(3, 1fr); }
	.dz-expcards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.dz-tripsection { padding: 44px 0; }
	.dz-factrow { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.dz-factrow__item { padding: 16px 10px; }
	.dz-checklist { grid-template-columns: 1fr; }
	.dz-expcards { grid-template-columns: 1fr 1fr; gap: 12px; }
	.dz-getit { padding: 28px 20px; }
	.dz-getit .dz-waform__row { flex-direction: column; }
	.dz-waform__cc { flex-basis: auto; max-width: none; }
	.dz-tripintro__tagline { font-size: 1.3rem; }
}

/* ---------- Itinerary expandable stops ---------- */
.dz-timeline__toggle {
	display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
	background: none; border: 0; padding: 0; cursor: pointer;
	color: var(--dz-accent); font: inherit; font-weight: 600; font-size: .92rem;
}
.dz-timeline__toggle .dz-i { transition: transform .2s ease; }
.dz-timeline__item.is-expanded .dz-timeline__toggle .dz-i { transform: rotate(180deg); }
.dz-timeline__toggle-less { display: none; }
.dz-timeline__item.is-expanded .dz-timeline__toggle-more { display: none; }
.dz-timeline__item.is-expanded .dz-timeline__toggle-less { display: inline; }
.dz-timeline__expand { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s ease, opacity .3s ease; }
.dz-timeline__item.is-expanded .dz-timeline__expand { max-height: 900px; opacity: 1; margin-top: 12px; }
.dz-timeline__moretext { color: var(--dz-muted); line-height: 1.7; margin: 0 0 14px; font-size: .96rem; }
.dz-stopgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dz-stopgrid__cell { aspect-ratio: 1; border-radius: 12px; overflow: hidden; box-shadow: var(--dz-shadow); }
.dz-stopgrid__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.dz-stopgrid__cell:hover .dz-stopgrid__img { transform: scale(1.08); }
@media (max-width: 560px) {
	.dz-stopgrid { gap: 6px; }
}

/* ---------- Itinerary transfers + day-by-day ---------- */
.dz-timeline__item.is-expanded .dz-timeline__expand { max-height: 4000px; }
.dz-timeline__transfer { position: relative; display: flex; align-items: center; gap: 16px; padding: 2px 0 16px; }
.dz-timeline__tericon { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: var(--dz-sand); border: 1.5px dashed var(--dz-line); color: var(--dz-muted); display: inline-flex; align-items: center; justify-content: center; z-index: 1; }
.dz-timeline__transfer--air .dz-timeline__tericon { border-style: solid; border-color: var(--dz-gold); color: var(--dz-gold); background: #fff; }
.dz-timeline__tertext { color: var(--dz-muted); font-size: .9rem; font-style: italic; }

.dz-days { margin-top: 8px; display: grid; gap: 20px; }
.dz-day__title { font-size: 1.02rem; margin: 0 0 6px; color: var(--dz-ink); }
.dz-day__text { color: var(--dz-muted); margin: 0 0 10px; line-height: 1.65; font-size: .95rem; }
.dz-day__tag { display: flex; gap: 10px; align-items: baseline; font-size: .9rem; margin: 5px 0; }
.dz-day__taglabel { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; white-space: nowrap; }
.dz-day__tag--meals .dz-day__taglabel { color: #a8801f; }
.dz-day__tag--incl .dz-day__taglabel { color: var(--dz-accent); }
.dz-day__tagval { color: var(--dz-muted); }

/* =========================================================================
 * Typographic scale — smaller, more refined (global)
 * ========================================================================= */
html { font-size: 17px; }
body { font-size: .95rem; }
@media (max-width: 600px) { html { font-size: 16px; } }

/* Tighten the big display headings */
.dz-hero__title { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.dz-hero__sub { font-size: clamp(.98rem, 1.6vw, 1.12rem); }
.dz-hero__eyebrow { font-size: .74rem; }
.dz-trip__title { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
.dz-trip__herosub { font-size: .9rem; }
.dz-section__title { font-size: clamp(1.35rem, 2.6vw, 1.95rem); }
.dz-section__eyebrow { font-size: .72rem; }
.dz-section__lede { font-size: 1rem; }
.dz-pagehead__title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
.dz-pagehead__lede { font-size: 1rem; }
.dz-tripintro__tagline { font-size: clamp(1.1rem, 1.9vw, 1.5rem); }
.dz-leadband__title { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.dz-wacta__title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.dz-getit__title { font-size: 1.4rem; }
.dz-getit__sub { font-size: .95rem; }

/* Body / component text */
.dz-prose { font-size: .98rem; }
.dz-prose p { line-height: 1.7; }
.dz-trip__about { font-size: 1rem; line-height: 1.7; }
.dz-benefit__title { font-size: 1.08rem; }
.dz-benefit__copy { font-size: .9rem; }
.dz-card__title { font-size: 1.12rem; }
.dz-card__price { font-size: 1.18rem; }
.dz-fact__v, .dz-factrow__v { font-size: .92rem; }
.dz-fact__k, .dz-factrow__k { font-size: .68rem; }
.dz-expcard__title { font-size: 1.02rem; }
.dz-expcard__desc { font-size: .8rem; }
.dz-checklist li { font-size: .95rem; }
.dz-timeline__place { font-size: .98rem; }
.dz-timeline__detail { font-size: .9rem; }
.dz-timeline__moretext { font-size: .92rem; }
.dz-timeline__tertext { font-size: .85rem; }
.dz-day__title { font-size: .96rem; }
.dz-day__text { font-size: .9rem; }
.dz-day__tag { font-size: .85rem; }
.dz-tabs__btn { font-size: .9rem; }
.dz-dep__date { font-size: 1rem; }
.dz-faq__q { font-size: .98rem; }
.dz-quote__text { font-size: 1.02rem; }
.dz-menu a { font-size: .92rem; }
.dz-btn { font-size: .9rem; }
.dz-btn--lg { font-size: .98rem; }
.dz-logo { font-size: 1.25rem; }

/* =========================================================================
 * Refinements: readable photo captions, two-column day meals/included,
 * non-italic transfer lines
 * ========================================================================= */
/* Experience card captions — stronger gradient + shadow for legibility */
.dz-expcard__cap { padding: 60px 16px 16px; background: linear-gradient(to top, rgba(11,28,22,.96) 0%, rgba(11,28,22,.78) 38%, rgba(11,28,22,.15) 80%, transparent 100%); }
.dz-expcard__title { text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.dz-expcard__desc { color: #fff; opacity: 1; font-size: .84rem; text-shadow: 0 1px 8px rgba(0,0,0,.65); }

/* Transfer / arrival / departure lines — readable, not italic */
.dz-timeline__tertext { font-style: normal; color: var(--dz-ink); font-weight: 500; }
.dz-timeline__transfer--air .dz-timeline__tertext { color: var(--dz-ink); }

/* Day-by-day: Meals one side, Included one side, items beneath */
.dz-day__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 12px; }
.dz-day__collabel { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .82rem; letter-spacing: .02em; }
.dz-day__col--meals .dz-day__collabel { color: #a8801f; }
.dz-day__col--incl .dz-day__collabel { color: var(--dz-accent); }
.dz-day__list { list-style: none; margin: 8px 0 0; padding: 0; }
.dz-day__list li { position: relative; padding-left: 16px; color: var(--dz-muted); font-size: .88rem; line-height: 1.5; margin: 4px 0; }
.dz-day__list li::before { content: "+"; position: absolute; left: 0; font-weight: 700; }
.dz-day__col--meals .dz-day__list li::before { color: #c2a04e; }
.dz-day__col--incl .dz-day__list li::before { color: var(--dz-accent); }
@media (max-width: 480px) {
	.dz-day__meta { gap: 14px; }
}

/* =========================================================================
 * Readability: data values in the body serif (Lora), slightly larger
 * ========================================================================= */
.dz-fact__v, .dz-factrow__v {
	font-family: var(--dz-sans);
	font-weight: 600;
	font-size: 1.08rem;
	line-height: 1.4;
}
.dz-factrow__k, .dz-fact__k { font-size: .72rem; }
.dz-dep__date { font-family: var(--dz-sans); font-weight: 600; font-size: 1.05rem; }
.dz-facts__v { font-family: var(--dz-sans); font-weight: 600; }

/* =========================================================================
 * Lead forms: country-code + phone row, and styled dropdowns
 * ========================================================================= */
.dz-form__row--phone { display: flex; gap: 10px; margin-bottom: 14px; }
.dz-form__row--phone input[type="tel"] { flex: 1 1 auto; min-width: 0; }
.dz-form__row--phone .dz-waform__cc {
	flex: 0 0 42%; max-width: 42%; height: auto; box-shadow: none;
	background-color: var(--dz-sand); padding: 13px 34px 13px 15px; border-radius: var(--dz-radius-sm);
}
.dz-form__select {
	width: 100%; padding: 13px 34px 13px 15px; font: inherit; color: var(--dz-ink);
	background-color: var(--dz-sand); border: 1.5px solid var(--dz-line); border-radius: var(--dz-radius-sm);
	-webkit-appearance: none; appearance: none; cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232f7355' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center;
}
.dz-form__field--full .dz-form__select { margin-bottom: 14px; }
.dz-form__select:focus { outline: none; border-color: var(--dz-accent); background-color: #fff; }
@media (max-width: 480px) {
	.dz-form__row--phone { flex-direction: column; }
	.dz-form__row--phone .dz-waform__cc { flex-basis: auto; max-width: none; }
}

/* =========================================================================
 * Benefits as icon-led points (heading + 2-col), elegant prices
 * ========================================================================= */
.dz-benefits .dz-section__head { margin-bottom: 36px; }
.dz-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.dz-benefit { display: flex; gap: 18px; align-items: flex-start; text-align: left; padding: 26px; }
.dz-benefit__icon {
	flex: 0 0 auto; width: 56px; height: 56px; border-radius: 14px; margin: 0;
	background: rgba(47,115,85,.10); color: var(--dz-accent);
	display: inline-flex; align-items: center; justify-content: center;
}
.dz-benefit__icon svg { width: 28px; height: 28px; }
.dz-benefit__body { flex: 1; }
.dz-benefit__title { font-size: 1.12rem; margin: 0 0 6px; }
.dz-benefit__copy { color: var(--dz-muted); font-size: .92rem; line-height: 1.6; margin: 0; }
@media (max-width: 760px) { .dz-benefits__grid { grid-template-columns: 1fr; } }

/* Elegant price typography */
.dz-card__price, .dz-price, .dz-dep__price {
	font-family: var(--dz-price); font-weight: 600; letter-spacing: .01em; color: var(--dz-ink);
}
.dz-card__price { font-size: 1.55rem; }
.dz-card__priceper { font-family: var(--dz-sans); letter-spacing: 0; }
.dz-dep__price { font-size: 1.4rem; display: block; line-height: 1.1; margin-top: 2px; }

/* Trip sticky bar — compelling WhatsApp CTA (no price) */
.dz-tripbar__info { display: flex; flex-direction: column; line-height: 1.25; }
.dz-tripbar__info strong { font-family: var(--dz-display); font-size: 1rem; color: var(--dz-ink); }
.dz-tripbar__info span { color: var(--dz-muted); font-size: .82rem; }

/* =========================================================================
 * Dates & prices — expandable "Check price"
 * ========================================================================= */
.dz-dep { display: block; padding: 0; overflow: hidden; }
.dz-dep__row { display: flex; align-items: center; gap: 16px; padding: 18px 20px; }
.dz-dep__cta { white-space: nowrap; gap: 6px; }
.dz-dep__cta .dz-i { transition: transform .2s ease; }
.dz-dep.is-open .dz-dep__cta .dz-i { transform: rotate(180deg); }
.dz-dep__panel { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s ease, opacity .3s ease; padding: 0 20px; }
.dz-dep.is-open .dz-dep__panel { max-height: 1200px; opacity: 1; padding: 4px 20px 22px; border-top: 1px solid var(--dz-line); }
.dz-pricetable { border: 1px solid var(--dz-line); border-radius: 12px; overflow: hidden; margin: 14px 0; }
.dz-pricetable__head, .dz-pricetable__row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 16px; }
.dz-pricetable__head { background: var(--dz-sand); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--dz-muted); font-weight: 700; }
.dz-pricetable__row { border-top: 1px solid var(--dz-line); }
.dz-pricetable__row .dz-price { font-size: 1.2rem; }
.dz-priceblock__single { margin: 12px 0; }
.dz-priceblock__single .dz-price { font-size: 1.8rem; }
.dz-priceblock__note { color: var(--dz-muted); font-size: .85rem; margin: 8px 0; }
.dz-priceblock__deposit { display: flex; align-items: center; gap: 8px; background: rgba(47,115,85,.1); color: var(--dz-ink); font-weight: 600; padding: 12px 14px; border-radius: 10px; margin: 12px 0; font-size: .92rem; }
.dz-priceblock__deposit .dz-i { color: var(--dz-accent); flex: 0 0 auto; }
.dz-priceblock__cancel { margin: 12px 0; }
.dz-priceblock__cancel h4 { font-size: .95rem; margin: 0 0 6px; }
.dz-priceblock__cancel ul { margin: 0; padding-left: 18px; color: var(--dz-muted); font-size: .88rem; line-height: 1.6; }
.dz-dep__panel .dz-btn--block { margin-top: 14px; }
