/* ============================================================
   Inspiration Croatia — main.css
   Fontovi: Cormorant Garamond (display) + Jost (UI/body)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --shell: clamp(1.1rem, 5vw, 4rem);
  --maxw: 1240px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 14px;
  --shadow: 0 18px 50px -24px rgba(42,36,64,.45);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* A11y — skip link + vidljiv focus */
.skip-link { position: fixed; top: -60px; left: 1rem; z-index: 300; background: var(--brand); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 8px 8px; font-size: .9rem; font-weight: 500; transition: top .25s var(--ease); }
.skip-link:focus { top: 0; outline: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
.site-header.scrolled :focus-visible, .hero :focus-visible { outline-color: var(--gold); }
input:focus-visible, textarea:focus-visible { outline: none; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--paper);
  font-weight: 400; line-height: 1.65; font-size: 17px;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.shell { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--shell); }

h1, h2, h3, .display { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; color: var(--plum); }
.kicker {
  font-family: var(--sans); font-weight: 500; font-size: .76rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brand-700); display: inline-flex; align-items: center; gap: .6rem;
}
.kicker::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.kicker.center::before { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .6rem; font-family: var(--sans);
  font-weight: 500; font-size: .95rem; letter-spacing: .02em; padding: .95rem 1.7rem;
  border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -12px var(--brand-700); }
.btn-primary:hover { background: var(--brand-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--brand-700); border-color: var(--border); }
.btn-outline:hover { border-color: var(--brand); background: var(--brand-50); transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.15rem; font-size: .85rem; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-700); transform: translateY(-2px); }
.btn:active { transform: scale(.97); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding: .55rem 0;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s;
}
.hdr-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: block; line-height: 0; }
.brand-img { height: 38px; width: auto; transition: opacity .3s; }
.brand-dark { display: none; }
.nav-main { display: flex; gap: 2rem; }
.nav-main a {
  font-size: .9rem; font-weight: 400; letter-spacing: .04em; color: #fff; position: relative; padding: .3rem 0;
  transition: color .3s;
}
.nav-main a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease);
}
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }
.hdr-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch {
  font-size: .82rem; font-weight: 500; letter-spacing: .08em; color: #fff; border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px; padding: .35rem .7rem; transition: all .3s;
}
.lang-switch:hover { background: rgba(255,255,255,.15); }

/* Scrolled header (solid) */
.site-header.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 8px 30px -18px rgba(42,36,64,.35); padding: .35rem 0; backdrop-filter: blur(8px); }
.site-header.scrolled .brand-light { display: none; }
.site-header.scrolled .brand-dark { display: block; }
.site-header.scrolled .nav-main a { color: var(--ink); }
.site-header.scrolled .lang-switch { color: var(--brand-700); border-color: var(--border); }
.site-header.scrolled .brand-img { height: 34px; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: #fff; transition: .3s var(--ease); display: block; }
.site-header.scrolled .burger span { background: var(--plum); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--plum); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.6rem; transform: translateY(-100%); transition: transform .5s var(--ease);
}
.mobile-nav.open { transform: none; }
.mobile-nav a { font-family: var(--serif); font-size: 2rem; color: #fff; }
.mobile-nav .lang-switch-m { font-family: var(--sans); font-size: 1rem; letter-spacing: .1em; color: var(--brand-300); border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: .5rem 1.2rem; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-slide { position: absolute; inset: 0; opacity: 0; z-index: 0; transition: opacity 1.6s var(--ease); }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.active img { animation: kenburns 8s var(--ease) forwards; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(42,36,64,.42) 0%, rgba(42,36,64,.18) 38%, rgba(42,36,64,.75) 100%);
}
.hero-inner { width: 100%; padding-bottom: clamp(3.5rem, 11vh, 8rem); padding-top: 8rem; }
.hero .kicker { color: var(--brand-300); }
.hero .kicker::before { background: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6.2vw, 5.4rem); font-weight: 500; max-width: 16ch; margin: 1.2rem 0 1.3rem; }
.hero .lede { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 1.7vw, 1.35rem); max-width: 56ch; font-weight: 300; }
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hero-scroll i { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollline 2s var(--ease) infinite; }

@keyframes kenburns { from { transform: scale(1.001); } to { transform: scale(1.08); } }
@keyframes scrollline { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* Stagger ulaz teksta u hero (homepage) i inner-hero — ease-out, samo transform/opacity */
@media (prefers-reduced-motion: no-preference) {
  .hero .kicker, .hero h1, .hero .lede, .hero-actions,
  .page-hero .crumbs, .page-hero .kicker, .page-hero h1, .page-hero p {
    opacity: 0; animation: riseIn .9s var(--ease) both;
  }
  .hero .kicker, .page-hero .crumbs { animation-delay: .05s; }
  .hero h1,    .page-hero .kicker   { animation-delay: .16s; }
  .hero .lede, .page-hero h1        { animation-delay: .28s; }
  .hero-actions, .page-hero p       { animation-delay: .40s; }
}

/* ---------- SECTION BASICS ---------- */
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); margin: 1rem 0 .8rem; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- INTRO ---------- */
.intro { background: var(--surface); }
.intro-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.intro-text h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin: 1rem 0 1.4rem; }
.intro-text p { color: var(--muted); margin-bottom: 1.2rem; }
.intro-sign { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--brand-700); margin-top: .5rem; }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.intro-media::after { content: ''; position: absolute; inset: -14px -14px auto auto; width: 60%; height: 60%; border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1; }

/* ---------- WHY US ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card { padding: 2.2rem 1.8rem; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.why-ico { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-700); margin-bottom: 1.3rem; }
.why-ico svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.why-card p { color: var(--muted); font-size: .98rem; }

/* ---------- TOURS ---------- */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.tour-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; display: flex; align-items: flex-end; isolation: isolate; box-shadow: var(--shadow); }
.tour-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease); }
.tour-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(42,36,64,.85) 100%); }
.tour-card:hover img { transform: scale(1.07); }
.tour-body { padding: 1.8rem; color: #fff; }
.tour-body .tour-meta { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.tour-body h3 { color: #fff; font-size: 1.7rem; margin-bottom: .5rem; }
.tour-body p { color: rgba(255,255,255,.85); font-size: .95rem; font-weight: 300; }
.tour-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.tour-link svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.tour-card:hover .tour-link svg { transform: translateX(5px); }
.tours-foot { text-align: center; margin-top: 3rem; }

/* ---------- DESTINATIONS ---------- */
.dest { background: var(--plum); color: #fff; }
.dest .section-head h2 { color: #fff; }
.dest .section-head p { color: rgba(255,255,255,.7); }
.dest .kicker { color: var(--brand-300); }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 1.1rem; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; isolation: isolate; }
.dest-card:first-child { grid-column: span 2; grid-row: span 2; }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease); }
.dest-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 40%, rgba(42,36,64,.8) 100%); }
.dest-card:hover img { transform: scale(1.06); }
.dest-card span { position: absolute; left: 1.3rem; bottom: 1.1rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.dest-card:first-child span { font-size: 2.4rem; }

/* ---------- TESTIMONIALS ---------- */
.reviews { background: var(--brand-50); }
.rev-slider { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.rev-track { position: relative; min-height: 260px; }
.rev-card { position: absolute; inset: 0; opacity: 0; transform: translateY(12px); transition: opacity .7s var(--ease), transform .7s var(--ease); pointer-events: none; }
.rev-card.active { opacity: 1; transform: none; position: relative; pointer-events: auto; }
.rev-stars { color: var(--gold); letter-spacing: .2em; margin-bottom: 1.4rem; font-size: 1.1rem; }
.rev-quote { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.4; color: var(--plum); font-weight: 500; font-style: italic; }
.rev-author { margin-top: 1.6rem; font-weight: 500; letter-spacing: .05em; color: var(--brand-700); }
.rev-author span { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .2rem; }
.rev-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.4rem; }
.rev-prev, .rev-next { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--brand-700); transition: all .3s; }
.rev-prev:hover, .rev-next:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.rev-prev svg, .rev-next svg { width: 18px; height: 18px; }
.rev-dots { display: flex; gap: .5rem; }
.rev-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--brand-300); cursor: pointer; transition: all .3s; padding: 0; }
.rev-dot.on { background: var(--brand); width: 22px; border-radius: 999px; }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; text-align: center; color: #fff; isolation: isolate; overflow: hidden; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(42,36,64,.82), rgba(62,53,102,.82)); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 50ch; margin: 0 auto 2rem; font-weight: 300; font-size: 1.1rem; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--plum); color: rgba(255,255,255,.72); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.3fr 1fr 1fr; gap: 2.2rem; padding-bottom: 3rem; }
.foot-lang-tag { font-size: .6rem; letter-spacing: .12em; color: var(--brand-300); border: 1px solid rgba(255,255,255,.25); border-radius: 4px; padding: .05rem .35rem; margin-left: .35rem; vertical-align: middle; }
.foot-logo { height: 40px; margin-bottom: 1.2rem; }
.foot-brand p { font-size: .95rem; font-weight: 300; max-width: 36ch; }
.foot-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 500; }
.foot-col a, .foot-addr { display: block; color: rgba(255,255,255,.72); font-size: .95rem; margin-bottom: .65rem; transition: color .3s; }
.foot-col a:hover { color: #fff; }
.foot-col a.on { color: #fff; }
.foot-addr { font-weight: 300; margin-top: .8rem; }
.foot-lang-link { margin-top: .6rem; color: var(--brand-300) !important; font-weight: 500; letter-spacing: .06em; }

/* Zakonski podaci o tvrtki */
.foot-legal-info { padding: 1.6rem 0; border-top: 1px solid rgba(255,255,255,.1); }
.foot-legal-info p { font-size: .8rem; line-height: 1.7; color: rgba(255,255,255,.55); font-weight: 300; }
.foot-legal-info strong { color: rgba(255,255,255,.8); font-weight: 500; }
.foot-legal-info a { color: var(--brand-300); }

/* Sigurno plaćanje + nagrade — elegantno, centrirano; veličine logoa netaknute */
.foot-trust { padding: 2.6rem 0 .5rem; border-top: 1px solid rgba(255,255,255,.1); }
.foot-trust .shell { display: flex; flex-direction: column; align-items: center; gap: 2.2rem; text-align: center; }
.trust-block { display: flex; flex-direction: column; align-items: center; gap: 1rem; max-width: 100%; }
.trust-label { font-family: var(--sans); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brand-300); font-weight: 500; }
.cards-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; background: #fff; border-radius: 12px; padding: .9rem 1.3rem; box-shadow: 0 14px 36px -20px rgba(0,0,0,.55); }
.cards-row img { display: block; }                 /* bez CSS skaliranja — originalna veličina */
.cards-row a, .badges-row a { display: inline-flex; transition: opacity .25s, transform .25s var(--ease); }
.cards-row a:hover, .badges-row a:hover { opacity: .8; transform: translateY(-2px); }
.badges-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px; }
.badges-row img { display: block; max-width: 100%; height: auto; }
.badge-chip { background: #fff; border-radius: 8px; padding: .45rem .8rem; box-shadow: 0 10px 26px -18px rgba(0,0,0,.5); }

.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.5rem 0; margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: rgba(255,255,255,.5); }
.foot-credit a { color: var(--brand-300); }
.foot-bottom a { color: rgba(255,255,255,.65); } .foot-bottom a:hover { color: #fff; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: var(--plum); color: rgba(255,255,255,.85); box-shadow: 0 -12px 40px -20px rgba(0,0,0,.6); animation: cookieUp .5s var(--ease); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; padding-block: 1.1rem; flex-wrap: wrap; }
.cookie-text strong { display: block; font-family: var(--serif); font-size: 1.15rem; color: #fff; margin-bottom: .2rem; }
.cookie-text p { font-size: .88rem; font-weight: 300; max-width: 70ch; line-height: 1.55; }
.cookie-text a { color: var(--brand-300); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: .8rem; flex-shrink: 0; }
.cookie-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.cookie-banner .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
@keyframes cookieUp { from { transform: translateY(100%); } to { transform: none; } }
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-actions { width: 100%; } .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- INNER PAGE HERO ---------- */
.page-hero { position: relative; min-height: clamp(420px, 60vh, 560px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 9s var(--ease) forwards; }
.page-hero-slide { position: absolute; inset: 0; opacity: 0; z-index: 0; transition: opacity 1.5s var(--ease); }
.page-hero-slide.active { opacity: 1; z-index: 1; }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(42,36,64,.5) 0%, rgba(42,36,64,.28) 45%, rgba(42,36,64,.82) 100%); }
.page-hero.no-img { min-height: clamp(280px, 40vh, 400px); background: linear-gradient(135deg, var(--plum) 0%, var(--brand-800) 100%); }
.page-hero.no-img::after { display: none; }
.page-hero-inner { width: 100%; padding-bottom: clamp(2.5rem, 6vh, 4.5rem); padding-top: 9rem; }
.page-hero .kicker { color: var(--brand-300); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5.2vw, 4.2rem); font-weight: 500; margin: 1rem 0 .8rem; }
.page-hero p { color: rgba(255,255,255,.9); font-size: clamp(1.02rem, 1.6vw, 1.25rem); max-width: 56ch; font-weight: 300; }
.crumbs { font-size: .8rem; letter-spacing: .04em; color: rgba(255,255,255,.7); margin-bottom: 1rem; display: flex; gap: .55rem; flex-wrap: wrap; }
.crumbs a { color: rgba(255,255,255,.7); } .crumbs a:hover { color: #fff; }

/* ---------- TOURS LIST (rows) ---------- */
.tour-list { display: flex; flex-direction: column; gap: 2rem; }
.tour-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); transition: transform .4s var(--ease); }
.tour-row:hover { transform: translateY(-5px); }
.tour-row-img { position: relative; min-height: 280px; overflow: hidden; }
.tour-row-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tour-row:hover .tour-row-img img { transform: scale(1.06); }
.tour-row-body { padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.tour-row-body .tour-meta { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-700); margin-bottom: .6rem; }
.tour-row-body h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--plum); margin-bottom: .7rem; }
.tour-row-body p { color: var(--muted); font-size: .98rem; margin-bottom: 1rem; }
.tlk-dark, .tour-row-body .tour-link { color: var(--brand-700); }

/* ---------- TOUR DETAIL ---------- */
.tour-detail { display: grid; grid-template-columns: 1fr 360px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.tour-lead { font-size: 1.2rem; line-height: 1.7; color: var(--ink); margin-bottom: 2.5rem; font-weight: 300; }
.tour-sec-h { font-size: 1.8rem; color: var(--plum); margin-bottom: 1.8rem; }
.itinerary { display: flex; flex-direction: column; gap: 1.8rem; }
.itin-stage { border-left: 2px solid var(--border); padding-left: 1.6rem; position: relative; }
.itin-place { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; flex-wrap: wrap; }
.itin-dot { position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-50); }
.itin-place h3 { font-size: 1.4rem; color: var(--plum); }
.itin-nights { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-700); background: var(--brand-50); padding: .25rem .7rem; border-radius: 999px; }
.itin-days { display: flex; flex-direction: column; gap: .9rem; }
.itin-day { display: grid; grid-template-columns: 76px 1fr; gap: 1rem; }
.itin-daylabel { font-weight: 600; color: var(--brand-700); font-size: .9rem; }
.itin-day p { color: var(--muted); font-size: .96rem; }
.itinerary-flat { border-left: 2px solid var(--border); padding-left: 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.itinerary-flat .itin-day { position: relative; }
.itinerary-flat .itin-day::before { content: ''; position: absolute; left: calc(-1.6rem - 6px); top: .5em; width: 9px; height: 9px; border-radius: 50%; background: var(--brand-300); }
.tour-route { display: flex; flex-wrap: wrap; align-items: center; margin-bottom: 2.2rem; padding: 1rem 1.2rem; background: var(--brand-50); border-radius: var(--radius); }
.route-stop { font-size: .85rem; font-weight: 500; color: var(--brand-700); }
.route-stop:not(:last-child)::after { content: '→'; margin: 0 .55rem; color: var(--gold); font-weight: 400; }
.tour-aside { position: sticky; top: 90px; }
.tour-card-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.tcb-row { display: flex; justify-content: space-between; align-items: baseline; padding: .6rem 0; border-bottom: 1px solid var(--border); }
.tcb-row span { color: var(--muted); font-size: .9rem; } .tcb-row strong { font-family: var(--serif); font-size: 1.5rem; color: var(--plum); }
.tcb-countries { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.4rem; }
.tcb-pill { font-size: .8rem; background: var(--brand-50); color: var(--brand-700); padding: .3rem .8rem; border-radius: 999px; }
.tour-card-box h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-700); margin-bottom: .9rem; }
.tcb-highlights { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.6rem; }
.tcb-highlights li { position: relative; padding-left: 1.4rem; font-size: .92rem; color: var(--ink); }
.tcb-highlights li::before { content: ''; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.tcb-btn { width: 100%; justify-content: center; }
.tcb-back { display: block; text-align: center; margin-top: 1rem; color: var(--muted); font-size: .9rem; }
.tcb-back:hover { color: var(--brand-700); }

/* ---------- STATS ---------- */
.stats-sec { padding-block: clamp(3rem, 6vw, 4.5rem); }
.stats-row { display: flex; justify-content: center; gap: clamp(2rem, 8vw, 6rem); flex-wrap: wrap; text-align: center; }
.stat { display: flex; flex-direction: column; gap: .4rem; }
.stat-num { font-family: var(--serif); font-size: clamp(3rem, 7vw, 5rem); font-weight: 600; color: var(--brand); line-height: 1; }
.stat-label { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); max-width: 16ch; }

/* ---------- DESTINATIONS (feature rows) ---------- */
.dest-feature-list { display: flex; flex-direction: column; gap: clamp(3rem, 7vw, 5.5rem); }
.dest-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.dest-feature.rev .dest-feature-img { order: 2; }
.dest-feature-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.dest-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dest-feature:hover .dest-feature-img img { transform: scale(1.05); }
.dest-feature-body .kicker { color: var(--gold-700); font-size: 1.4rem; font-family: var(--serif); letter-spacing: 0; }
.dest-feature-body .kicker::before { display: none; }
.dest-feature-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin: .4rem 0 1rem; }
.dest-feature-body p { color: var(--muted); margin-bottom: 1.3rem; font-size: 1.05rem; }
.dest-places { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.dest-place { font-size: .8rem; color: var(--brand-700); background: var(--brand-50); border: 1px solid var(--border); padding: .3rem .75rem; border-radius: 999px; }

/* ---------- DESTINATIONS LIST (stacked, no images) ---------- */
.dest-list { display: flex; flex-direction: column; }
.dest-item { display: grid; grid-template-columns: 1fr 1.7fr; gap: clamp(1.5rem, 5vw, 4rem); padding: clamp(2.2rem, 5vw, 3.5rem) 0; border-top: 1px solid var(--border); }
.dest-item:first-child { border-top: 0; padding-top: 0; }
.dest-item-head { display: flex; align-items: baseline; gap: 1rem; }
.dest-num { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); font-weight: 600; }
.dest-item-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--plum); }
.dest-item-body p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.3rem; }

/* ---------- DESTINATIONS SLIDER (legacy, unused) ---------- */
.dest-slider { position: relative; }
.dest-viewport { overflow: hidden; border-radius: var(--radius); }
.dest-track { display: flex; transition: transform .6s var(--ease); }
.dest-slide { min-width: 100%; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding: .2rem; }
.dest-slide .dest-feature-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; margin: 0; }
.dest-slide .dest-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.dest-slide .dest-feature-body .kicker { color: var(--gold-700); }
.dest-slide .dest-feature-body h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: .5rem 0 1rem; }
.dest-slide .dest-feature-body p { color: var(--muted); margin-bottom: 1.3rem; font-size: 1.05rem; }
.dest-nav { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2.4rem; }
.dest-prev, .dest-next { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--brand-700); transition: all .3s; flex-shrink: 0; }
.dest-prev:hover, .dest-next:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.dest-prev svg, .dest-next svg { width: 19px; height: 19px; }
.dest-dots { display: flex; gap: .5rem; }
.dest-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--brand-300); cursor: pointer; transition: all .3s; padding: 0; }
.dest-dot.on { background: var(--brand); width: 24px; border-radius: 999px; }

/* ---------- REVIEWS MASONRY ---------- */
.rev-masonry { columns: 3; column-gap: 1.5rem; }
.rev-tile { break-inside: avoid; margin-bottom: 1.5rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 12px 36px -26px rgba(42,36,64,.4); }
.rev-tile blockquote { font-family: var(--serif); font-style: italic; font-size: 1.12rem; line-height: 1.5; color: var(--plum); margin: .8rem 0 1.2rem; }
.rev-tile figcaption strong { display: block; color: var(--brand-700); font-weight: 600; }
.rev-tile figcaption span { font-size: .76rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 1rem 0 1.6rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.6rem; }
.contact-list li { display: flex; align-items: center; gap: .9rem; color: var(--ink); }
.contact-list svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; }
.contact-note { color: var(--muted); font-size: .95rem; font-weight: 300; }
.contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .4rem; font-size: .82rem; letter-spacing: .04em; color: var(--muted); font-weight: 500; }
.contact-form input, .contact-form textarea { font-family: var(--sans); font-size: 1rem; color: var(--ink); padding: .8rem .9rem; border: 1px solid var(--border); border-radius: 9px; background: var(--surface); transition: border-color .3s, box-shadow .3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-50); }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
.contact-form button { align-self: flex-start; margin-top: .5rem; }
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success svg { width: 52px; height: 52px; color: var(--ok); margin-bottom: 1rem; }
.form-success p { font-family: var(--serif); font-size: 1.4rem; color: var(--plum); }
.form-error { background: #fdecec; color: #b3322c; padding: .9rem 1.1rem; border-radius: 9px; margin-bottom: 1.2rem; font-size: .9rem; }

/* ---------- LEGAL / PROSE ---------- */
.legal-wrap { max-width: 820px; margin-inline: auto; }
.legal-prose { color: var(--ink); font-size: 1.02rem; line-height: 1.75; }
.legal-prose p { margin-bottom: 1.1rem; color: var(--muted); }
.legal-prose b, .legal-prose strong { color: var(--plum); font-weight: 600; }
.legal-prose h1, .legal-prose h2, .legal-prose h3, .legal-prose h4 { font-family: var(--serif); color: var(--plum); margin: 2rem 0 .8rem; line-height: 1.2; }
.legal-prose h2 { font-size: 1.6rem; } .legal-prose h3 { font-size: 1.3rem; }
.legal-prose ul, .legal-prose ol { margin: 0 0 1.1rem 1.3rem; color: var(--muted); }
.legal-prose li { margin-bottom: .5rem; }
.legal-prose a { color: var(--brand-700); text-decoration: underline; text-underline-offset: 2px; }
.legal-prose a:hover { color: var(--brand); }
.legal-prose table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: .95rem; }
.legal-prose td, .legal-prose th { border: 1px solid var(--border); padding: .6rem .8rem; text-align: left; }
.legal-back { margin-top: 2.5rem; }
.legal-back a { color: var(--brand-700); font-size: .95rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .tour-row { grid-template-columns: 1fr; }
  .tour-row-img { min-height: 220px; }
  .tour-detail { grid-template-columns: 1fr; }
  .tour-aside { position: static; }
  .dest-feature { grid-template-columns: 1fr; }
  .dest-feature.rev .dest-feature-img { order: 0; }
  .rev-masonry { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .dest-item { grid-template-columns: 1fr; gap: 1rem; }
  .nav-main, .hdr-actions .btn { display: none; }
  .burger { display: flex; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-media { max-width: 440px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .dest-card:first-child { grid-column: span 2; grid-row: span 1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .why-grid, .tours-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: span 1; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .rev-masonry { columns: 1; }
  .contact-form .f-row { grid-template-columns: 1fr; }
  .itin-day { grid-template-columns: 1fr; gap: .2rem; }
  .stats-row { gap: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
