/* ============================================================
   ADRIATIK TOURS — Refined Adriatic Editorial
   Fraunces (display) · Hanken Grotesk (text)
   Deep navy · parchment · brass — magazine-grade trade site
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  /* sea & ink */
  --ink:        #0c2638;   /* deep Adriatic navy */
  --ink-2:      #0a1f2e;
  --accent:     #2c6e92;   /* Adriatic blue */
  --accent-deep:#1c4d6b;
  --sea-glass:  #8fc4de;

  /* warm paper */
  --paper:      #f6f0e4;   /* parchment */
  --paper-2:    #efe6d4;   /* deeper sand */
  --sand-line:  #e2d5bd;

  /* brass */
  --brass:      #b78a3c;
  --brass-soft: #cba765;

  /* type colour */
  --text:       #1b2b36;
  --text-soft:  #4a5a64;
  --muted:      #7d8890;
  --on-dark:        #f2ead9;
  --on-dark-soft:   rgba(242,234,217,.66);

  /* fonts */
  --display: "Schibsted Grotesk", "Hanken Grotesk", "Segoe UI", sans-serif;
  --sans: "Hanken Grotesk", "Segoe UI", sans-serif;

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* fine paper grain over everything */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 150px); }
.section--tight { padding-block: clamp(54px, 7vw, 96px); }
.dark { background: var(--ink); color: var(--on-dark); }
.sand { background: var(--paper-2); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

/* ---------- type ---------- */
.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 7.6vw, 96px);
  line-height: 1.0;
  letter-spacing: -.032em;
}
.display em { font-style: normal; font-weight: 500; color: var(--brass); }

.h-xl {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -.026em;
}
.h-xl em { font-style: normal; color: var(--accent); }
.dark .h-xl em, .dark .display em { color: var(--brass-soft); }

.h-lg {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -.022em;
}
.h-md {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.2;
  letter-spacing: -.015em;
}
.lead {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--text-soft);
  font-weight: 380;
}
.dark .lead { color: var(--on-dark-soft); }
.muted { color: var(--muted); }
.body-p { color: var(--text-soft); font-size: 17.5px; line-height: 1.72; }
.body-p + .body-p { margin-top: 18px; }

/* eyebrow — uppercase brass label with hairline + index */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
}
.dark .eyebrow { color: var(--brass-soft); }
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: currentColor; opacity: .55;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow .idx { font-variant-numeric: tabular-nums; opacity: .8; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: gap .3s var(--ease), border-color .3s;
}
.dark .link-arrow { color: var(--sea-glass); }
.link-arrow svg { transition: transform .35s var(--ease-out); }
.link-arrow:hover { gap: 14px; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  font-size: 15px; font-weight: 600;
  letter-spacing: .01em;
  border-radius: 2px;
  transition: transform .35s var(--ease-out), background .3s, color .3s, box-shadow .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--ink); color: var(--on-dark);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.btn--primary:hover { background: var(--accent-deep); box-shadow: inset 0 0 0 1px var(--accent-deep); transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(27,43,54,.28);
  color: var(--text);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); transform: translateY(-2px); }
.dark .btn--ghost,
.hero .btn--ghost { box-shadow: inset 0 0 0 1px rgba(242,234,217,.55); color: #fff; }
.dark .btn--ghost:hover,
.hero .btn--ghost:hover { box-shadow: inset 0 0 0 1px #fff; color: #fff; background: rgba(255,255,255,.08); }

/* brass CTA for use over the hero */
.btn--brass {
  background: var(--brass); color: #2a1d06;
  box-shadow: inset 0 0 0 1px var(--brass);
}
.btn--brass:hover { background: var(--brass-soft); transform: translateY(-2px); }

/* ---------- chips / tags ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px;
  border: 1px solid var(--sand-line);
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  color: var(--text-soft);
  background: var(--paper);
}
.tag-net {
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
}
.dark .tag-net { color: var(--sea-glass); }

/* ---------- image plates (where photography drops in) ---------- */
.plate {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 12%, rgba(143,196,222,.30), transparent 60%),
    linear-gradient(150deg, var(--accent-deep), var(--ink) 72%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  isolation: isolate;
}
.plate::before {  /* engraved wave lines */
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 1px, transparent 1px 18px);
  opacity: .5;
}
.plate::after {  /* grain */
  content: "";
  position: absolute; inset: 0; opacity: .12; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.plate__cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(242,234,217,.9);
}
.plate__cap::before { content: "◆"; color: var(--brass-soft); font-size: 9px; }
.plate--sand {
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(183,138,60,.18), transparent 55%),
    linear-gradient(150deg, var(--paper-2), #e7dac2 80%);
  box-shadow: inset 0 0 0 1px var(--sand-line);
}
.plate--sand::before { opacity: .35; background-image: repeating-linear-gradient(115deg, rgba(12,38,56,.04) 0 1px, transparent 1px 18px); }
.plate--sand .plate__cap { color: var(--text-soft); }

/* real photography inside a plate */
.plate__img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.plate--photo::before {
  z-index: 1; opacity: 1;
  background: linear-gradient(180deg, rgba(8,22,33,0) 38%, rgba(8,22,33,.66) 100%);
}
.plate--photo::after { z-index: 1; opacity: .05; }
.plate--photo .plate__cap { color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.55); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .4s var(--ease), box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav--solid {
  background: rgba(246,240,228,.86);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--sand-line);
}
.nav--onhero { background: transparent; }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--brass); color: var(--brass);
  font-family: var(--display); font-weight: 500; font-size: 22px;
  border-radius: 2px;
}
.nav--onhero .brand__mark { border-color: var(--brass-soft); color: var(--brass-soft); }

/* image logo */
.brand__logo {
  height: 40px; width: auto; flex: none; display: block;
  transition: filter .4s var(--ease);
}
/* white on dark surfaces: hero nav + footer */
.nav--onhero .brand__logo,
.footer .brand__logo { filter: brightness(0) invert(1); }
.brand__name { font-family: var(--display); font-weight: 500; font-size: 19px; letter-spacing: -.01em; line-height: 1.05; }
.brand__sub { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.nav--onhero .brand__name { color: var(--on-dark); }
.nav--onhero .brand__sub { color: var(--on-dark-soft); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 9px 14px;
  font-size: 14.5px; font-weight: 500;
  color: var(--text-soft);
  transition: color .25s;
}
.nav--onhero .nav__link { color: var(--on-dark-soft); }
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav--onhero .nav__link:hover { color: #fff; }
.nav__link.active { color: var(--text); }
.nav--onhero .nav__link.active { color: #fff; }
.nav__link.active::after { transform: scaleX(1); }
.nav__cta { margin-left: 12px; padding: 11px 20px; }
.nav--onhero .nav__cta { background: var(--brass); color: #2a1d06; box-shadow: inset 0 0 0 1px var(--brass); }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.hamburger span { width: 22px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), opacity .3s; }
.nav--onhero .hamburger span { background: var(--on-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 76px 0 0; z-index: 190;
  background: var(--ink); color: var(--on-dark);
  padding: 40px var(--gutter);
  display: flex; flex-direction: column;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.drawer.open { opacity: 1; transform: none; pointer-events: auto; }
.drawer__link {
  font-family: var(--display); font-size: 32px; font-weight: 400;
  padding: 16px 0; border-bottom: 1px solid rgba(242,234,217,.12);
  color: var(--on-dark);
}
.drawer__link.active { color: var(--brass-soft); }
.drawer__foot { margin-top: auto; padding-top: 30px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh; /* stable full-screen height — avoids the mobile address-bar resize that looks like a zoom */
  display: flex; align-items: flex-end;
  color: var(--on-dark);
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center 38%;
  background-attachment: fixed; /* image stays fixed while the hero scrolls over it */
}
/* fixed attachment is janky/unsupported on most mobile browsers — fall back to normal */
@media (max-width: 860px) {
  .hero__img { background-attachment: scroll; }
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,22,33,.6) 0%, rgba(8,22,33,.32) 38%, rgba(8,22,33,.88) 100%),
    linear-gradient(90deg, rgba(8,22,33,.45) 0%, rgba(8,22,33,0) 55%);
}
.hero__veil::after {
  content: ""; position: absolute; inset: 0; opacity: .08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 2; padding-block: 150px clamp(56px, 9vw, 112px); width: 100%; }
.hero__cap {
  position: absolute; right: var(--gutter); bottom: clamp(56px, 9vw, 112px); z-index: 2;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--on-dark-soft);
}

/* inner-page hero */
.page-hero { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 90% at 85% 0%, rgba(143,196,222,.22), transparent 55%),
    linear-gradient(160deg, #143b53, var(--ink) 70%);
}
.page-hero__bg::before { content:""; position:absolute; inset:0; background-image: repeating-linear-gradient(118deg, rgba(255,255,255,.04) 0 1px, transparent 1px 22px); }
.page-hero .wrap { position: relative; padding-block: clamp(118px, 14vw, 168px) clamp(56px, 8vw, 96px); }
.page-hero .lead { color: rgba(255,255,255,.9); }

/* ---------- trust bar ---------- */
.trust {
  border-block: 1px solid var(--sand-line);
  background: var(--paper);
}
.trust__inner {
  padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 16px 44px; align-items: center; justify-content: space-between;
}
.trust__list { display: flex; flex-wrap: wrap; gap: 12px 34px; align-items: center; }
.trust__item { font-family: var(--display); font-weight: 500; font-size: 18px; color: var(--text-soft); letter-spacing: -.01em; }

/* ---------- stats ---------- */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--sand-line);
  border: 1px solid var(--sand-line);
}
.stat { background: var(--paper); padding: 34px 26px; }
.stat__n { font-family: var(--display); font-weight: 360; font-size: clamp(38px, 5vw, 60px); line-height: 1; color: var(--accent-deep); letter-spacing: -.02em; }
.stat__l { margin-top: 12px; font-size: 14px; color: var(--text-soft); letter-spacing: .01em; }

/* ---------- why grid ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  border-top: 1px solid rgba(242,234,217,.16);
}
.why-cell {
  padding: 36px 34px 40px;
  border-bottom: 1px solid rgba(242,234,217,.16);
  border-right: 1px solid rgba(242,234,217,.16);
  transition: background .35s var(--ease);
}
.why-cell:hover { background: rgba(143,196,222,.06); }
.why-cell .ico { color: var(--sea-glass); }
.why-cell h3 { margin-top: 20px; }
.why-cell p { margin-top: 12px; color: var(--on-dark-soft); font-size: 15.5px; }
.why-cell--cta {
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,.035);
}

/* ---------- cards (tours) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 30px; }
.card {
  background: var(--paper);
  border: 1px solid var(--sand-line);
  border-radius: 3px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -26px rgba(12,38,56,.4); border-color: var(--brass-soft); }
.card__media { position: relative; height: 220px; }
.card__num {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: var(--display); font-size: 15px; color: var(--on-dark);
  letter-spacing: .04em;
}
.card__tag {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(246,240,228,.92); color: var(--ink);
  padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card__nights { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--brass); }
.card__title { font-family: var(--display); font-weight: 440; font-size: 24px; line-height: 1.12; margin-top: 8px; letter-spacing: -.01em; }
.card__blurb { margin-top: 14px; color: var(--text-soft); font-size: 15px; flex: 1; }
.card__foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--sand-line); display: flex; align-items: center; justify-content: space-between; }
.card__regions { font-size: 12.5px; color: var(--muted); letter-spacing: .02em; }

/* ---------- tour filter ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(34px, 4vw, 50px); }
.filter-chip {
  padding: 10px 19px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--sand-line); color: var(--text-soft);
  background: transparent; transition: all .25s var(--ease);
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--on-dark); }

/* ---------- testimonials ---------- */
.quote-card {
  background: var(--paper); border: 1px solid var(--sand-line); border-radius: 3px;
  padding: clamp(30px, 3.4vw, 44px);
}
.quote-card .mark { color: var(--brass); font-family: var(--display); font-size: 64px; line-height: .6; }
.quote-card blockquote { font-family: var(--display); font-weight: 380; font-size: clamp(19px, 1.9vw, 24px); line-height: 1.42; letter-spacing: -.01em; margin-top: 14px; }
.quote-card cite { display: block; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--sand-line); font-style: normal; }
.quote-card cite b { display: block; font-weight: 700; }
.quote-card cite span { font-size: 14px; color: var(--muted); }

/* ---------- press rows ---------- */
.press { border-top: 1px solid var(--sand-line); margin-top: clamp(34px, 4vw, 50px); }
.press-row {
  display: flex; gap: 24px; align-items: center;
  padding: 26px 6px; border-bottom: 1px solid var(--sand-line);
  transition: padding .35s var(--ease), background .3s;
}
.press-row:hover { padding-inline: 18px 6px; background: var(--paper-2); }
.press-row .kind { min-width: 130px; }
.press-row .t { font-family: var(--display); font-weight: 460; font-size: clamp(18px, 1.6vw, 22px); display: block; line-height: 1.2; }
.press-row .src { font-size: 14px; color: var(--muted); }
.press-row .arr { color: var(--accent); flex: none; transition: transform .35s var(--ease-out); }
.press-row:hover .arr { transform: translateX(5px); }

/* ---------- magazine rows ---------- */
.mag-row {
  display: flex; align-items: center; gap: 18px;
  background: var(--paper); border: 1px solid var(--sand-line); border-radius: 3px;
  padding: 20px 22px;
  transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s;
}
.mag-row:hover { border-color: var(--brass-soft); transform: translateX(4px); box-shadow: 0 14px 30px -18px rgba(12,38,56,.4); }
.mag-row .ico { color: var(--accent); flex: none; }
.mag-row .t { flex: 1; font-weight: 600; }

/* ---------- team ---------- */
.team-card { background: var(--paper); border: 1px solid var(--sand-line); border-radius: 3px; overflow: hidden; transition: transform .4s var(--ease-out), box-shadow .4s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(12,38,56,.4); }
.team-card__body { padding: 22px 24px 26px; }

/* ---------- hotel gallery ---------- */
.hotel-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 16vw, 210px); gap: 16px; }

/* facilities */
.facility { padding-top: 26px; border-top: 2px solid var(--accent); }
.facility h3 { font-size: 21px; }
.facility p { margin-top: 12px; color: var(--text-soft); font-size: 15.5px; }

.hotel-contact {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid rgba(242,234,217,.16);
  transition: padding .3s var(--ease);
}
.hotel-contact:hover { padding-inline: 10px 0; }
.hotel-contact .t { font-family: var(--display); font-weight: 460; font-size: 19px; color: #fff; display: block; }
.hotel-contact .e { color: var(--sea-glass); font-size: 14.5px; }
.hotel-contact svg { color: var(--brass-soft); flex: none; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.field { display: flex; flex-direction: column; margin-bottom: 22px; }
.field label { font-size: 13.5px; font-weight: 600; letter-spacing: .02em; margin-bottom: 8px; color: var(--text); }
.field .req { color: var(--brass); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 16px;
  padding: 13px 15px;
  border: 1px solid var(--sand-line);
  border-radius: 2px; background: var(--paper);
  color: var(--text);
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44,110,146,.14);
}
.field--error input, .field--error textarea { border-color: #b4452f; }
.field__err { color: #b4452f; font-size: 13px; margin-top: 6px; min-height: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }

.info-card { background: var(--ink); color: var(--on-dark); border-radius: 4px; padding: clamp(28px, 3vw, 40px); }
.info-card a { transition: color .25s; }
.info-card a:hover { color: var(--brass-soft); }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row svg { color: var(--sea-glass); flex: none; margin-top: 2px; }
.divider { height: 1px; border: 0; background: var(--sand-line); }

.sent-card { border: 1px solid var(--sand-line); border-radius: 4px; padding: clamp(32px, 4vw, 52px); background: var(--paper); }
.sent-card .ok { width: 56px; height: 56px; border-radius: 50%; background: rgba(44,110,146,.12); color: var(--accent); display: grid; place-items: center; margin-bottom: 22px; }

/* ---------- single tour page ---------- */
.tour-hero { background-size: cover; background-position: center; }
.tour-hero .wrap { position: relative; z-index: 2; }
.tour-hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,22,33,.72) 0%, rgba(8,22,33,.55) 45%, rgba(8,22,33,.84) 100%);
}
.breadcrumb {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  font-size: 13px; letter-spacing: .02em; color: var(--on-dark-soft);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--on-dark-soft); transition: color .25s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: var(--brass-soft); }

.tour-layout { display: grid; grid-template-columns: 1fr 360px; gap: clamp(36px, 5vw, 72px); align-items: start; }
.tour-aside { position: sticky; top: 100px; }
.tour-facts { display: flex; flex-direction: column; margin-top: 22px; }
.tour-facts > div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid rgba(242,234,217,.14); }
.tour-facts__k { color: var(--on-dark-soft); font-size: 14px; }
.tour-facts__v { color: #fff; font-weight: 600; font-size: 14.5px; text-align: right; }

.tour-inc { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin-top: 22px; }
.tour-inc li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--text-soft); }
.tour-inc svg { color: var(--accent); flex: none; margin-top: 3px; }

/* WeTravel booking embed inside the booking card */
.wetravel-embed { display: block; }
.wetravel-embed a, .wetravel-embed button, .wetravel-embed iframe { max-width: 100%; }

@media (max-width: 860px) {
  .tour-layout { grid-template-columns: 1fr; }
  .tour-aside { position: static; }
}
@media (max-width: 560px) {
  .tour-inc { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--on-dark-soft); }
.footer__cols {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px);
}
.footer .brand__name { color: #fff; }
.footer__h { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 18px; }
.footer__li { display: block; padding: 6px 0; font-size: 14.5px; color: var(--on-dark-soft); transition: color .25s; }
a.footer__li:hover { color: #fff; }
.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(242,234,217,.2);
  display: grid; place-items: center;
  transition: border-color .3s, background .3s, color .3s;
}
.social a:hover { border-color: var(--brass-soft); background: var(--brass-soft); color: var(--ink); }
.footer__bar {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 13.5px; padding-top: 22px; margin-top: 44px;
  border-top: 1px solid rgba(242,234,217,.12);
}
.footer__bar a { transition: color .25s; }
.footer__bar a:hover { color: #fff; }

/* ---------- section head helper ---------- */
.shead { max-width: 760px; }
.shead.center { margin-inline: auto; text-align: center; }
.shead .h-xl { margin-top: 18px; }
.shead .lead { margin-top: 20px; }
.shead.center .lead { margin-inline: auto; }

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

/* hero entrance */
.hero__inner > * { opacity: 0; transform: translateY(20px); animation: heroIn .9s var(--ease-out) forwards; }
.hero__inner > *:nth-child(1) { animation-delay: .1s; }
.hero__inner > *:nth-child(2) { animation-delay: .24s; }
.hero__inner > *:nth-child(3) { animation-delay: .38s; }
.hero__inner > *:nth-child(4) { animation-delay: .52s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__inner > * { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .hotel-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(150px, 32vw, 200px); }
  .hero__cap { display: none; }
}
@media (max-width: 640px) {
  /* keep the wide display type from overflowing narrow screens */
  .hero h1.display { font-size: clamp(33px, 9vw, 46px) !important; max-width: 100% !important; }
  .hero .lead { max-width: 100% !important; }
  .hero .eyebrow { flex-wrap: wrap; font-size: 11px; letter-spacing: .14em; }
  .hero__inner { padding-top: 116px; }
  .display { font-size: clamp(38px, 11vw, 64px); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
