/* =========================================================================
   ZadarWalkingTour - premium Mediterranean landing theme
   Display: Cormorant  |  Text: Manrope
   Accent lock: Adriatic blue (brand + CTA), Terracotta (single accent),
   Sun gold used only for rating stars.
   Radius scale: pill buttons, 16px cards, 24px large cards, 10px inputs.
   ========================================================================= */

:root {
	--bg:        #ffffff;
	--sand:      #f7f1e8;
	--sand-2:    #fbf7f0;
	--stone:     #e8dfd2;
	--adriatic:  #0e4f6c;
	--adriatic-d:#0b3a50;
	--sea:       #1d8aa8;
	--turq:      #3ab7c8;
	--terra:     #c86b4a;
	--terra-d:   #b3573a;
	--gold:      #e8b84a;
	--ink:       #17212b;
	--muted:     #5e6a73;
	--line:      rgba(23, 33, 43, .10);
	--line-2:    rgba(23, 33, 43, .06);
	--wa:        #25d366;
	--wa-d:      #1ebe5a;

	--r-sm: 10px;
	--r:    16px;
	--r-lg: 24px;
	--r-xl: 32px;
	--r-pill: 999px;

	--shadow-sm: 0 1px 2px rgba(14, 79, 108, .06), 0 2px 8px rgba(14, 79, 108, .05);
	--shadow:    0 6px 18px rgba(14, 79, 108, .08), 0 2px 6px rgba(14, 79, 108, .05);
	--shadow-lg: 0 24px 60px rgba(11, 58, 80, .16), 0 8px 24px rgba(11, 58, 80, .10);

	--font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
	--font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

	--wrap: 1200px;
	--pad: clamp(1.15rem, 4vw, 2.5rem);
	--sec: clamp(4rem, 9vw, 8rem);
	--ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.65;
	font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}
img, iframe { max-width: 100%; display: block; }
img { height: auto; }
/* The hidden attribute must always win, even when a component sets its own display. */
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--sea); outline-offset: 2px; border-radius: 4px; }

/* scroll offset so anchor targets clear the sticky header */
[id] { scroll-margin-top: 92px; }

.zwt-wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.zwt-visually-hidden, .zwt-skip {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.zwt-skip:focus {
	position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
	z-index: 200; background: var(--adriatic); color: #fff; padding: .7rem 1.1rem; border-radius: var(--r-sm);
}

/* ---------- shared type ---------- */
.zwt-h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 1.8rem + 3vw, 4rem); line-height: 1.04; letter-spacing: -.01em; }
.zwt-h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); line-height: 1.08; letter-spacing: -.01em; }
.zwt-h2--light { color: #fff; }
.zwt-lead { color: var(--muted); font-size: clamp(1.02rem, .98rem + .3vw, 1.2rem); margin-top: 1rem; max-width: 60ch; }
.zwt-eyebrow {
	font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: var(--terra); margin: 0 0 .9rem;
}
.zwt-kicker {
	display: inline-flex; align-items: center; gap: .5rem;
	font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
	color: var(--terra); margin: 0 0 .85rem;
}
.zwt-kicker::before { content: ""; width: 26px; height: 2px; background: var(--terra); border-radius: 2px; }
.zwt-kicker--light { color: var(--gold); }
.zwt-kicker--light::before { background: var(--gold); }

.zwt-section { padding-block: var(--sec); }
.zwt-section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.zwt-section__head--wide { max-width: 60rem; }
.zwt-section__sub { color: var(--muted); font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem); margin-top: .85rem; max-width: 54ch; }

/* ---------- buttons ---------- */
.zwt-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
	font-weight: 700; font-size: .96rem; line-height: 1; letter-spacing: .005em;
	padding: .92rem 1.4rem; border-radius: var(--r-pill); border: 1.5px solid transparent;
	transition: transform .18s var(--ease), box-shadow .25s var(--ease), background-color .2s, color .2s, border-color .2s;
	white-space: nowrap;
}
.zwt-btn__ico { width: 20px; height: 20px; flex: none; }
.zwt-btn__ico--end { transition: transform .25s var(--ease); }
.zwt-btn:hover .zwt-btn__ico--end { transform: translateX(3px); }
.zwt-btn--lg { padding: 1.05rem 1.7rem; font-size: 1rem; }
.zwt-btn--block { width: 100%; }
.zwt-btn:active { transform: translateY(1px); }

.zwt-btn--primary { background: var(--adriatic); color: #fff; box-shadow: 0 8px 22px rgba(14, 79, 108, .28); }
.zwt-btn--primary:hover { background: var(--adriatic-d); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(14, 79, 108, .32); }
.zwt-btn--ghost { background: rgba(255, 255, 255, .12); color: var(--ink); border-color: var(--line); }
.zwt-btn--ghost:hover { background: #fff; border-color: var(--adriatic); transform: translateY(-2px); }
.zwt-btn--outline { background: transparent; color: var(--adriatic); border-color: rgba(14, 79, 108, .32); }
.zwt-btn--outline:hover { background: var(--adriatic); color: #fff; border-color: var(--adriatic); transform: translateY(-2px); }
.zwt-btn--wa { background: var(--wa); color: #04331a; }
.zwt-btn--wa:hover { background: var(--wa-d); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37, 211, 102, .35); }
.zwt-btn--glass { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .5); backdrop-filter: blur(8px); }
.zwt-btn--glass:hover { background: rgba(255, 255, 255, .95); color: var(--ink); transform: translateY(-2px); }

.zwt-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--adriatic); border-bottom: 2px solid rgba(14, 79, 108, .25); padding-bottom: 2px; transition: border-color .2s, gap .2s var(--ease); }
.zwt-link:hover { border-color: var(--adriatic); gap: .7rem; }
.zwt-link__ico { width: 18px; height: 18px; }
.zwt-link__ico--back { transform: rotate(180deg); }

/* ---------- pills / rating ---------- */
.zwt-pill {
	display: inline-flex; align-items: center; padding: .42rem .8rem; border-radius: var(--r-pill);
	background: var(--sand); color: var(--ink); font-size: .82rem; font-weight: 600; border: 1px solid var(--stone);
}
.zwt-rating { display: inline-flex; align-items: center; gap: .5rem; }
.zwt-rating__stars, .zwt-rev__cardStars { display: inline-flex; color: var(--gold); }
.zwt-star { width: 18px; height: 18px; fill: var(--gold); stroke: var(--gold); }
.zwt-rating__txt { font-weight: 700; font-size: .9rem; }

/* =======================================================================
   HEADER
   ======================================================================= */
.zwt-header {
	position: sticky; top: 0; z-index: 100;
	transition: background-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.zwt-header__inner {
	display: flex; align-items: center; gap: 1rem;
	max-width: var(--wrap); margin-inline: auto; padding: .85rem var(--pad);
	min-height: 68px;
}
.zwt-header.is-stuck { background: rgba(255, 255, 255, .88); backdrop-filter: blur(14px) saturate(1.4); box-shadow: 0 1px 0 var(--line), var(--shadow-sm); }

.zwt-brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.zwt-brand__mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--adriatic); color: var(--gold); box-shadow: var(--shadow-sm); }
.zwt-brand__ico { width: 22px; height: 22px; }
.zwt-brand__text { font-size: 1.12rem; }
.zwt-brand__text span { color: var(--sea); }
.zwt-header.is-stuck .zwt-brand__text, .zwt-header.is-stuck .zwt-nav__list a { color: var(--ink); }

.zwt-nav { margin-inline: auto; }
.zwt-nav__list { display: flex; align-items: center; gap: clamp(.6rem, 1.5vw, 1.6rem); }
.zwt-nav__list a { font-weight: 600; font-size: .95rem; color: var(--ink); padding: .4rem .2rem; position: relative; opacity: .85; transition: opacity .2s; }
.zwt-nav__list a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--terra); transition: width .25s var(--ease); }
.zwt-nav__list a:hover { opacity: 1; }
.zwt-nav__list a:hover::after { width: 100%; }

.zwt-header__actions { display: flex; align-items: center; gap: .7rem; }
.zwt-lang { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .85rem; }
.zwt-lang a { color: var(--muted); padding: .2rem .1rem; transition: color .2s; }
.zwt-lang a.is-active { color: var(--adriatic); }
.zwt-lang a:hover { color: var(--ink); }
.zwt-lang__sep { width: 1px; height: 14px; background: var(--line); }

.zwt-burger { display: none; background: none; border: 0; padding: .4rem; }
.zwt-burger__box { display: grid; gap: 5px; width: 26px; }
.zwt-burger__box span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.zwt-burger[aria-expanded="true"] .zwt-burger__box span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zwt-burger[aria-expanded="true"] .zwt-burger__box span:nth-child(2) { opacity: 0; }
.zwt-burger[aria-expanded="true"] .zwt-burger__box span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.zwt-mobile {
	position: fixed; top: 0; right: 0; z-index: 130; height: 100%; width: min(88vw, 360px);
	background: #fff; box-shadow: var(--shadow-lg); padding: 5.5rem 1.6rem 1.6rem;
	transform: translateX(100%); transition: transform .34s var(--ease);
	display: flex; flex-direction: column; overflow-y: auto;
}
.zwt-mobile[data-open] { transform: translateX(0); }
.zwt-mobile__nav ul { display: grid; gap: .3rem; }
.zwt-mobile__nav a { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; padding: .55rem 0; border-bottom: 1px solid var(--line-2); }
.zwt-mobile__foot { margin-top: auto; display: grid; gap: .7rem; padding-top: 1.4rem; }
.zwt-mobile__lang { display: flex; gap: 1rem; justify-content: center; padding-top: .6rem; font-weight: 700; }
.zwt-mobile__lang a { color: var(--muted); }
.zwt-mobile__lang a.is-active { color: var(--adriatic); }
.zwt-mobile__scrim { position: fixed; inset: 0; z-index: 120; background: rgba(11, 34, 46, .5); opacity: 0; transition: opacity .3s; }
.zwt-mobile__scrim[data-open] { opacity: 1; }

/* =======================================================================
   HERO
   ======================================================================= */
.zwt-hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-block: 6.5rem 8rem; overflow: hidden; }
.zwt-hero__media { position: absolute; inset: 0; z-index: -2; }
.zwt-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.zwt-hero__wash {
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(180deg, rgba(11, 34, 46, .30) 0%, rgba(11, 34, 46, 0) 30%),
		linear-gradient(90deg, rgba(11, 34, 46, .55) 0%, rgba(11, 34, 46, .12) 46%, rgba(11, 34, 46, 0) 70%);
}
.zwt-hero__inner { width: 100%; position: relative; }
.zwt-hero__card {
	max-width: 700px; background: rgba(255, 255, 255, .90); backdrop-filter: blur(18px) saturate(1.3);
	border: 1px solid rgba(255, 255, 255, .7); border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.6rem);
	box-shadow: var(--shadow-lg);
}
.zwt-hero__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.3rem, 1.7rem + 2.9vw, 3.7rem); line-height: 1.04; letter-spacing: -.015em; }
.zwt-hero__sub { color: #33414c; margin-top: 1.05rem; font-size: clamp(1.02rem, .98rem + .35vw, 1.22rem); max-width: 46ch; }
.zwt-hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; margin-top: 1.4rem; }
.zwt-hero__trust .zwt-rating { margin-right: .3rem; }
.zwt-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.zwt-hero__note { margin-top: 1.15rem; font-size: .82rem; color: var(--muted); max-width: 48ch; }

/* =======================================================================
   QUICK FACTS
   ======================================================================= */
.zwt-facts { position: relative; z-index: 3; margin-top: calc(-1 * clamp(3rem, 6vw, 5rem)); padding-bottom: var(--sec); }
.zwt-facts__card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
	padding: clamp(1.3rem, 3vw, 2.2rem);
}
.zwt-facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.8rem); }
.zwt-fact { display: flex; align-items: flex-start; gap: .8rem; }
.zwt-fact + .zwt-fact { position: relative; }
.zwt-fact__ico { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--sand); color: var(--adriatic); }
.zwt-fact__ico svg { width: 22px; height: 22px; }
.zwt-fact__body { display: flex; flex-direction: column; gap: .1rem; }
.zwt-fact__k { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.zwt-fact__v { font-weight: 600; color: var(--ink); line-height: 1.3; }

/* =======================================================================
   ABOUT
   ======================================================================= */
.zwt-about__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.zwt-sponsor { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.6rem; padding: .6rem 1rem; border-radius: var(--r-pill); background: var(--sand); border: 1px solid var(--stone); font-weight: 600; font-size: .9rem; }
.zwt-sponsor__ico { width: 18px; height: 18px; color: var(--terra); }
.zwt-about__media { position: relative; }
.zwt-about__figA { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.zwt-about__figA img { width: 100%; height: 100%; object-fit: cover; }
.zwt-about__figB { position: absolute; right: -6%; bottom: -12%; width: 52%; margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid #fff; aspect-ratio: 4 / 3; }
.zwt-about__figB img { width: 100%; height: 100%; object-fit: cover; }
.zwt-about__stat { position: absolute; left: -6%; bottom: 8%; background: var(--adriatic); color: #fff; border-radius: var(--r); padding: 1rem 1.2rem; box-shadow: var(--shadow-lg); max-width: 190px; }
.zwt-about__statN { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; color: var(--gold); }
.zwt-about__statL { display: block; font-size: .82rem; margin-top: .3rem; opacity: .92; }

/* =======================================================================
   HIGHLIGHTS
   ======================================================================= */
.zwt-hl__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); grid-auto-flow: dense; }
.zwt-hl__card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 2.5vw, 2rem);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.zwt-hl__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.zwt-hl__card--wide { grid-column: span 2; background: linear-gradient(135deg, var(--adriatic), var(--sea)); color: #fff; border-color: transparent; }
.zwt-hl__card--wide .zwt-hl__d { color: rgba(255, 255, 255, .9); }
.zwt-hl__ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--sand); color: var(--adriatic); margin-bottom: 1.1rem; }
.zwt-hl__card--wide .zwt-hl__ico { background: rgba(255, 255, 255, .16); color: #fff; }
.zwt-hl__ico svg { width: 26px; height: 26px; }
.zwt-hl__t { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; line-height: 1.15; }
.zwt-hl__card--wide .zwt-hl__t { font-size: 1.9rem; }
.zwt-hl__d { color: var(--muted); margin-top: .55rem; }

/* =======================================================================
   ITINERARY
   ======================================================================= */
.zwt-itin__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.zwt-itin__list { display: grid; gap: .2rem; margin: 1.6rem 0; }
.zwt-itin__list li { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: .7rem; padding: .8rem 0; border-bottom: 1px solid var(--line-2); }
.zwt-itin__ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--sand); color: var(--adriatic); }
.zwt-itin__ico svg { width: 18px; height: 18px; }
.zwt-itin__k { color: var(--muted); font-size: .9rem; font-weight: 600; }
.zwt-itin__v { font-weight: 700; text-align: right; }
.zwt-itin__map { margin: 0; display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; }
.zwt-itin__mapFrame { position: relative; aspect-ratio: 16 / 12; background: var(--sand); }
.zwt-itin__mapFrame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.zwt-itin__mapBar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; border-top: 1px solid var(--line); transition: background-color .2s; }
.zwt-itin__mapBar:hover { background: var(--sand-2); }
.zwt-itin__mapName { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; }
.zwt-itin__mapNameIco { width: 20px; height: 20px; color: var(--terra); flex: none; }
.zwt-itin__mapGo { display: inline-flex; align-items: center; gap: .4rem; color: var(--adriatic); font-weight: 700; font-size: .92rem; white-space: nowrap; }
.zwt-itin__mapGoIco { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.zwt-itin__mapBar:hover .zwt-itin__mapGoIco { transform: translateX(3px); }

/* =======================================================================
   GALLERY
   ======================================================================= */
.zwt-gal__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: clamp(.6rem, 1.2vw, 1rem); grid-auto-flow: dense; }
.zwt-gal__item { position: relative; margin: 0; padding: 0; border: 0; background: var(--stone); border-radius: var(--r); overflow: hidden; cursor: zoom-in; }
.zwt-gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.zwt-gal__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11, 34, 46, .28)); opacity: 0; transition: opacity .3s; }
.zwt-gal__item:hover img { transform: scale(1.06); }
.zwt-gal__item:hover::after { opacity: 1; }
.zwt-gal__item--1 { grid-column: span 2; grid-row: span 2; }
.zwt-gal__item--3 { grid-row: span 2; }
.zwt-gal__item--5 { grid-column: span 2; }
.zwt-gal__item--7 { grid-row: span 2; }
.zwt-gal__item--9 { grid-column: span 2; }
.zwt-gal__item--10 { grid-row: span 2; }

/* =======================================================================
   WHY BOOK
   ======================================================================= */
.zwt-why { background: var(--sand); }
.zwt-why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.zwt-why__card { display: flex; gap: 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.3rem, 2.4vw, 1.8rem); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.zwt-why__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.zwt-why__card:nth-child(5) { grid-column: span 2; }
.zwt-why__ico { display: grid; place-items: center; width: 52px; height: 52px; flex: none; border-radius: 14px; background: var(--adriatic); color: var(--gold); }
.zwt-why__ico svg { width: 26px; height: 26px; }
.zwt-why__t { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.zwt-why__d { color: var(--muted); margin-top: .4rem; }
.zwt-why__cta { margin-top: clamp(2rem, 4vw, 3rem); text-align: center; }

/* =======================================================================
   REVIEWS
   ======================================================================= */
.zwt-rev__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: clamp(2rem, 4vw, 3rem); border-radius: var(--r-lg); overflow: hidden; }
.zwt-rev__stat { text-align: center; padding: 1.6rem 1rem; background: var(--sand-2); border: 1px solid var(--line-2); border-radius: var(--r); }
.zwt-rev__n { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 700; color: var(--adriatic); line-height: 1; }
.zwt-rev__l { display: block; margin-top: .45rem; color: var(--muted); font-size: .88rem; font-weight: 600; }
.zwt-rev__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.zwt-rev__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: .7rem; }
.zwt-rev__cardStars svg { width: 17px; height: 17px; }
.zwt-rev__q { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; line-height: 1.25; }
.zwt-rev__a { margin-top: auto; color: var(--muted); font-size: .84rem; font-weight: 600; }
.zwt-rev__cta { margin-top: clamp(1.8rem, 3vw, 2.6rem); }

/* =======================================================================
   FAQ
   ======================================================================= */
.zwt-faq__wrap { max-width: 820px; }
.zwt-faq__list { border-top: 1px solid var(--line); }
.zwt-faq__item { border-bottom: 1px solid var(--line); }
.zwt-faq__q {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 1.3rem .2rem; font-family: var(--font-display); font-size: clamp(1.2rem, 1rem + .6vw, 1.5rem); font-weight: 600;
	list-style: none; cursor: pointer;
}
.zwt-faq__q::-webkit-details-marker { display: none; }
.zwt-faq__sign { display: grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--sand); color: var(--adriatic); transition: transform .3s var(--ease), background-color .2s; }
.zwt-faq__signIco { width: 20px; height: 20px; }
.zwt-faq__item[open] .zwt-faq__sign { transform: rotate(45deg); background: var(--adriatic); color: #fff; }
.zwt-faq__a { padding: 0 .2rem 1.4rem; color: var(--muted); max-width: 65ch; }
.zwt-faq__a p { margin: 0; }

/* =======================================================================
   CTA
   ======================================================================= */
.zwt-cta { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); overflow: hidden; color: #fff; }
.zwt-cta__media { position: absolute; inset: 0; z-index: -2; }
.zwt-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.zwt-cta__wash {
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(180deg, rgba(5, 16, 23, .66), rgba(5, 16, 23, .2) 70%),
		linear-gradient(135deg, rgba(6, 22, 31, .93), rgba(10, 46, 64, .87)),
		rgba(6, 18, 26, .46);
}
.zwt-cta__media img { filter: saturate(1.02) brightness(.72); }
.zwt-cta__inner { max-width: 44rem; }
.zwt-cta__body { color: rgba(255, 255, 255, .9); font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); margin-top: 1rem; max-width: 46ch; }
.zwt-cta__btns { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.zwt-cta__contacts { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, .2); }
.zwt-cta__contacts li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.zwt-cta__contacts a { border-bottom: 1px solid transparent; transition: border-color .2s; }
.zwt-cta__contacts a:hover { border-color: rgba(255, 255, 255, .7); }
.zwt-cta__ico { width: 19px; height: 19px; color: var(--gold); }

/* =======================================================================
   FOOTER
   ======================================================================= */
.zwt-footer { background: var(--adriatic-d); color: rgba(255, 255, 255, .82); padding-top: clamp(3rem, 6vw, 5rem); }
.zwt-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.zwt-brand--footer { color: #fff; margin-bottom: 1.1rem; }
.zwt-brand--footer .zwt-brand__mark { background: rgba(255, 255, 255, .1); }
.zwt-brand--footer .zwt-brand__text span { color: var(--turq); }
.zwt-footer__about { margin-bottom: 1.4rem; max-width: 34ch; font-size: .95rem; }
.zwt-footer__h { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 1rem; font-weight: 700; }
.zwt-footer__col ul { display: grid; gap: .6rem; }
.zwt-footer__col a { color: rgba(255, 255, 255, .82); transition: color .2s; }
.zwt-footer__col a:hover { color: #fff; }
.zwt-footer__lang { display: flex; align-items: center; gap: .6rem; margin-top: 1.2rem; font-weight: 700; }
.zwt-footer__lang span { width: 1px; height: 14px; background: rgba(255, 255, 255, .25); }
.zwt-footer__lang a { color: rgba(255, 255, 255, .6); }
.zwt-footer__lang a.is-active { color: #fff; }
.zwt-footer__bar { border-top: 1px solid rgba(255, 255, 255, .12); }
.zwt-footer__barInner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; padding-block: 1.4rem; font-size: .84rem; color: rgba(255, 255, 255, .6); }

/* =======================================================================
   FLOATING WHATSAPP + STICKY BAR
   ======================================================================= */
.zwt-wa {
	position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem); z-index: 90;
	display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.1rem; border-radius: var(--r-pill);
	background: var(--wa); color: #fff; font-weight: 700; box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
	transition: transform .2s var(--ease), box-shadow .25s;
}
.zwt-wa:hover { transform: translateY(-3px) scale(1.02); }
.zwt-wa__ico { width: 26px; height: 26px; }
.zwt-wa__label { font-size: .95rem; }

.zwt-sticky {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; gap: .6rem;
	padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, .95); backdrop-filter: blur(12px); box-shadow: 0 -2px 20px rgba(11, 34, 46, .14);
	transform: translateY(120%); transition: transform .35s var(--ease);
}
.zwt-sticky.is-visible { transform: translateY(0); }
.zwt-sticky a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; padding: .85rem; border-radius: var(--r-pill); font-weight: 700; font-size: .95rem; }
.zwt-sticky__ico { width: 20px; height: 20px; }
.zwt-sticky__book { background: var(--adriatic); color: #fff; }
.zwt-sticky__wa { background: var(--wa); color: #04331a; }

/* =======================================================================
   LEGAL PAGES
   ======================================================================= */
.zwt-legal__hero { padding: clamp(6.5rem, 10vw, 9rem) 0 clamp(1.5rem, 3vw, 2.5rem); background: linear-gradient(180deg, var(--sand), #fff); }
.zwt-crumbs { display: flex; gap: .5rem; align-items: center; color: var(--muted); font-size: .88rem; font-weight: 600; margin-bottom: 1rem; }
.zwt-crumbs a { color: var(--adriatic); }
.zwt-legal__body { padding-top: clamp(2rem, 4vw, 3rem); }
.zwt-legal__wrap { max-width: 780px; }
.zwt-legal__dl { display: grid; gap: 0; border-top: 1px solid var(--line); }
.zwt-legal__row { display: grid; grid-template-columns: 220px 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.zwt-legal__row dt { font-weight: 700; color: var(--muted); font-size: .9rem; }
.zwt-legal__row dd { margin: 0; font-weight: 600; }
.zwt-legal__row a { color: var(--adriatic); border-bottom: 1px solid rgba(14, 79, 108, .3); }
.zwt-legal__prose h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); font-weight: 600; margin: 2rem 0 .6rem; }
.zwt-legal__prose p { color: #35424c; margin-bottom: 1rem; max-width: 68ch; }
.zwt-legal__h:first-child { margin-top: 0; }
.zwt-legal__back { margin-top: 2.5rem; }

/* =======================================================================
   LIGHTBOX
   ======================================================================= */
.zwt-lb { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem); background: rgba(8, 24, 33, .82); backdrop-filter: blur(6px); opacity: 0; transition: opacity .26s var(--ease); }
.zwt-lb[data-open] { opacity: 1; }
.zwt-lb__fig { margin: 0; max-width: min(1100px, 94vw); max-height: 86vh; transform: scale(.97); transition: transform .26s var(--ease); }
.zwt-lb[data-open] .zwt-lb__fig { transform: scale(1); }
.zwt-lb__fig img { width: 100%; height: 100%; max-height: 86vh; object-fit: contain; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.zwt-lb__close { position: absolute; top: clamp(1rem, 3vw, 1.6rem); right: clamp(1rem, 3vw, 1.6rem); width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .4); color: #fff; }
.zwt-lb__close:hover { background: rgba(255, 255, 255, .25); }
.zwt-lb__closeIco { width: 24px; height: 24px; transform: rotate(45deg); }
@media (prefers-reduced-motion: reduce) { .zwt-lb, .zwt-lb__fig { transition: none; } }

/* =======================================================================
   REVEAL ANIMATION
   ======================================================================= */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--i, 0) * 70ms); will-change: opacity, transform; }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	.zwt-gal__item img, .zwt-btn, .zwt-hl__card, .zwt-why__card { transition: none !important; }
}

/* =======================================================================
   RESPONSIVE
   ======================================================================= */
@media (max-width: 1024px) {
	.zwt-facts__grid { grid-template-columns: repeat(2, 1fr); }
	.zwt-hl__grid { grid-template-columns: repeat(2, 1fr); }
	.zwt-hl__card--wide { grid-column: span 2; }
	.zwt-rev__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
	.zwt-nav, .zwt-header__book { display: none; }
	.zwt-header .zwt-lang { display: none; }
	.zwt-burger { display: inline-flex; }
	.zwt-header { background: rgba(255, 255, 255, .9); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }

	.zwt-about__grid { grid-template-columns: 1fr; }
	.zwt-about__media { margin-top: 1rem; max-width: 460px; }
	.zwt-about__figB { right: 0; bottom: -10%; }
	.zwt-itin__grid { grid-template-columns: 1fr; }
	.zwt-cta__inner { max-width: none; }
}

@media (max-width: 680px) {
	:root { --sec: clamp(3rem, 12vw, 4.5rem); }
	.zwt-hero { min-height: 92svh; padding-block: 5.5rem 6rem; }
	.zwt-hero__card { max-width: none; }
	.zwt-facts__grid { grid-template-columns: 1fr; gap: .4rem; }
	.zwt-fact { padding: .55rem 0; border-bottom: 1px solid var(--line-2); }
	.zwt-facts__grid .zwt-fact:last-child { border-bottom: 0; }
	.zwt-hl__grid { grid-template-columns: 1fr; }
	.zwt-hl__card--wide { grid-column: auto; }
	.zwt-why__grid { grid-template-columns: 1fr; }
	.zwt-why__card:nth-child(5) { grid-column: auto; }
	.zwt-rev__stats { grid-template-columns: repeat(2, 1fr); }
	.zwt-rev__grid { grid-template-columns: 1fr; }
	.zwt-gal__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
	.zwt-gal__item--1 { grid-column: span 2; grid-row: span 2; }
	.zwt-gal__item--3, .zwt-gal__item--7, .zwt-gal__item--10 { grid-row: span 1; }
	.zwt-gal__item--5, .zwt-gal__item--9 { grid-column: span 2; }
	.zwt-footer__grid { grid-template-columns: 1fr 1fr; }
	.zwt-footer__brandcol { grid-column: span 2; }
	.zwt-legal__row { grid-template-columns: 1fr; gap: .2rem; }

	.zwt-wa__label { display: none; }
	.zwt-wa { padding: .9rem; }
	.zwt-sticky { display: flex; }
	.zwt-wa { bottom: calc(4.6rem + env(safe-area-inset-bottom)); }
}
