/* FiraGO — bBoxType, SIL Open Font License (assets/fonts/OFL.txt) */
@font-face { font-family: 'FiraGO'; src: url('../fonts/FiraGO-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'FiraGO'; src: url('../fonts/FiraGO-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'FiraGO'; src: url('../fonts/FiraGO-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'FiraGO'; src: url('../fonts/FiraGO-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
/* ==========================================================
   Photo Safari Georgia — editorial, nature-documentary style
   ========================================================== */
:root {
  --ink: #0b3148;          /* brand navy */
  --ink-deep: #072338;
  --ink-2: #2c4a5e;
  --muted: #5d7282;
  --paper: #ffffff;
  --cream: #f9f2e6;         /* brand cream */
  --cream-2: #efe5d3;
  --accent: #ee7d3b;        /* brand orange */
  --accent-dark: #d9692a;
  --line: #e1d8c8;
  --overlay: rgba(10, 10, 10, .55);
  --font: 'FiraGO', Helvetica, Arial, sans-serif;
  --maxw: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 0px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--paper);
  font-size: 18px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
button, input, select, textarea { font: inherit; color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--ink); color: #f5f5f5; }

/* Typographic helpers */
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; margin-bottom: 18px;
}
.rule { width: 60px; height: 4px; background: var(--accent); border: 0; margin: 22px 0 26px; }
.rule--center { margin-left: auto; margin-right: auto; }
.display { font-size: clamp(40px, 6vw, 72px); font-weight: 600; }
.h-xl { font-size: clamp(32px, 4.4vw, 52px); }
.h-lg { font-size: clamp(26px, 3vw, 36px); }
.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-2); }
.center { text-align: center; }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 16px 30px; background: var(--accent); color: var(--ink); border: 2px solid var(--accent);
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--dark:hover { background: #1d4a68; border-color: #1d4a68; }
.btn--block { width: 100%; }
.link-arrow {
  font-weight: 700; font-size: 15px; text-decoration: none; border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.link-arrow:hover { border-color: var(--ink); }

/* ---------- Header ---------- */
.utility {
  background: var(--ink-deep); color: #e8e8e8; font-size: 14px;
}
.utility .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.utility a { text-decoration: none; opacity: .9; }
.utility a:hover { opacity: 1; color: var(--accent); }
.utility__left, .utility__right { display: flex; gap: 20px; align-items: center; }
.currency { display: flex; border: 1px solid #2a5673; }
.currency button { background: none; border: 0; color: #bbb; padding: 3px 10px; cursor: pointer; font-size: 13px; font-weight: 600; }
.currency button.is-active { background: var(--accent); color: var(--ink); }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--ink); color: #f5f5f5; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo__mark {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent); display: grid; place-items: center;
}
.logo__mark svg { width: 24px; height: 24px; }
.logo__text { line-height: 1; }
.logo__text b { display: block; font-size: 20px; font-weight: 700; letter-spacing: .08em; }
.logo__text span { font-size: 10.5px; letter-spacing: .38em; opacity: .75; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { white-space: nowrap; text-decoration: none; font-size: 17px; font-weight: 500; padding: 26px 0; position: relative; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 18px; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform .2s; }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav .btn { padding: 12px 20px; }
.nav .btn::after { display: none; }
.burger { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; }
.burger svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(88vh, 820px); display: grid; place-items: center; text-align: center;
  color: #f5f5f5; background: var(--ink) center/cover no-repeat; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,35,56,.35) 0%, rgba(7,35,56,.45) 55%, rgba(7,35,56,.78) 100%); }
.hero__inner { position: relative; max-width: 900px; padding: 90px var(--gutter); }
.hero p { font-size: clamp(17px, 1.6vw, 20px); max-width: 680px; margin: 0 auto 36px; }
.hero--page { min-height: 480px; }
.hero--left { text-align: left; place-items: end start; }
.hero--left .hero__inner { max-width: var(--maxw); width: 100%; margin: 0 auto; padding-bottom: 60px; }
.hero--left p { margin-left: 0; }
.breadcrumbs { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.breadcrumbs a { text-decoration: none; opacity: .8; }
.breadcrumbs a:hover { color: var(--accent); opacity: 1; }
.breadcrumbs span { opacity: .6; margin: 0 8px; }

/* ---------- Overlap card (cream panel over photo) ---------- */
.feature {
  position: relative; background: var(--ink) center/cover no-repeat; color: #f5f5f5; padding: clamp(80px, 12vw, 160px) 0 0;
}
.feature::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,35,56,.82), rgba(7,35,56,.25)); }
.feature__head { position: relative; max-width: 640px; }
.feature__head p { font-size: 20px; }
.feature__card {
  position: relative; background: var(--cream); color: var(--ink); max-width: 760px;
  padding: clamp(32px, 5vw, 64px); margin-top: 60px; transform: translateY(80px);
}
.feature + .section { padding-top: calc(clamp(56px, 8vw, 110px) + 80px); }

/* ---------- Destination tiles ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 40px; }
.dest-grid > * { grid-column: span 2; }
.dest-grid > :nth-child(-n+2), .dest-grid > :nth-last-child(-n+2) { grid-column: span 3; }
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid > *, .dest-grid > :nth-child(-n+2), .dest-grid > :nth-last-child(-n+2) { grid-column: auto; }
}
@media (max-width: 640px) { .dest-grid { grid-template-columns: 1fr !important; } }
.dest-tile {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; color: #fff; text-decoration: none; display: flex; align-items: flex-end;
}
.dest-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.dest-tile::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(7,35,56,.85)); z-index: 1; }
.dest-tile:hover img { transform: scale(1.05); }
.dest-tile__body { position: relative; z-index: 2; padding: 32px; }
.dest-tile h3 { font-size: clamp(26px, 3vw, 38px); margin: 0 0 6px; }
.dest-tile .eyebrow { margin-bottom: 8px; color: var(--accent); }

/* ---------- Stats band ---------- */
.stats { position: relative; background: var(--ink-deep) center/cover no-repeat; color: #fff; }
.stats::before { content: ''; position: absolute; inset: 0; background: rgba(7,35,56,.8); }
.stats .container { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-top: 80px; padding-bottom: 80px; text-align: center; }
.stat b { display: block; font-size: clamp(40px, 5vw, 60px); font-weight: 600; line-height: 1; }
.stat .rule { margin: 18px auto; width: 44px; }
.stat p { font-size: 15px; margin: 0 auto; max-width: 220px; opacity: .9; }

/* ---------- Tour cards ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head > div { max-width: 700px; }
.section-head .rule { margin-bottom: 0; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 32px 28px; }
.card { background: var(--paper); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .card__media img { transform: scale(1.05); }
.badge {
  position: absolute; top: 16px; left: 16px; background: var(--accent); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 6px 10px;
}
.badge--dark { background: var(--ink); color: #fff; left: auto; right: 16px; }
.badge--group { top: auto; bottom: 16px; background: #fff; color: var(--ink); }
.inc-icons { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 12px; }
.inc-icons span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 8px; background: var(--cream); }
.inc-icons span::before { content: '✓ '; color: var(--accent-dark); }
.inc-icons--dark { margin: 12px 0 0; }
.inc-icons--dark span { background: #16405c; color: #eee; }
.inc-icons--dark span::before { color: var(--accent); }

/* Groups & teams band */
.group-band { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--ink); color: #f5f5f5; }
.group-band__img { background: center/cover no-repeat; min-height: 420px; }
.group-band__text { padding: clamp(36px, 6vw, 80px); }
.group-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin: 28px 0 36px; }
.group-feats b { display: block; color: var(--accent); font-size: 17px; margin-bottom: 4px; }
.group-feats p { margin: 0; font-size: 15px; opacity: .85; }
@media (max-width: 900px) { .group-band { grid-template-columns: 1fr; } .group-band__img { min-height: 260px; } }
@media (max-width: 520px) { .group-feats { grid-template-columns: 1fr; } }
.card__body { padding: 22px 0 0; display: flex; flex-direction: column; flex: 1; }
.card__loc { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card:hover h3 { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.card p { font-size: 16px; color: var(--ink-2); flex: 1; }
.card__foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 8px; font-size: 15px; }
.price { font-weight: 700; font-size: 22px; }
.price small { font-size: 13px; font-weight: 500; color: var(--muted); }
.stars { color: var(--accent-dark); letter-spacing: 2px; font-size: 15px; }
.section--cream .card { background: transparent; }

/* ---------- Departures ---------- */
.departures { display: grid; gap: 0; border-top: 2px solid var(--ink); }
.departure {
  display: grid; grid-template-columns: 150px 1fr auto auto; gap: 28px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.departure__date b { display: block; font-size: 36px; line-height: 1; font-weight: 600; }
.departure__date span { font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.departure h4 { font-size: 20px; margin: 0 0 4px; }
.departure h4 a { text-decoration: none; }
.departure h4 a:hover { text-decoration: underline; }
.status { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: var(--cream); padding: 6px 10px; }
.status--ok::before { content: '●'; color: #2f8f46; margin-right: 6px; }

/* ---------- Yellow tab panel (interests) ---------- */
.tabs-panel { background: var(--accent); }
.tabs-bar { display: flex; background: var(--ink); overflow-x: auto; scrollbar-width: none; }
.tabs-bar button {
  background: none; border: 0; color: #eee; padding: 14px 26px; font-size: 15px; font-weight: 600; cursor: pointer; white-space: nowrap;
}
.tabs-bar button:hover { color: var(--accent); }
.tabs-bar button.is-active { background: var(--accent); color: var(--ink); }
.tab-pane { display: none; grid-template-columns: 1fr 1fr; min-height: 460px; }
.tab-pane.is-active { display: grid; }
.tab-pane__text { padding: clamp(32px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.tab-pane__text h3 { font-size: clamp(28px, 3vw, 40px); }
.tab-pane__img { background: center/cover no-repeat; min-height: 320px; }

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.why__item { border-top: 4px solid var(--accent); padding-top: 24px; }
.why__item svg { width: 42px; height: 42px; margin-bottom: 16px; }
.why__item h3 { font-size: 22px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 1fr); gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; scrollbar-width: thin; }
.quote { scroll-snap-align: start; background: #1d1d1d; padding: 36px; display: flex; flex-direction: column; min-height: 320px; }
.quote__mark { font-size: 72px; line-height: .6; color: var(--accent); font-weight: 700; height: 34px; }
.quote p { flex: 1; font-size: 17px; }
.quote b { display: block; }
.quote small { opacity: .65; font-size: 13px; letter-spacing: .06em; }
.carousel-nav { display: flex; gap: 10px; }
.carousel-nav button { width: 48px; height: 48px; border: 2px solid currentColor; background: none; color: inherit; cursor: pointer; font-size: 20px; }
.carousel-nav button:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* ---------- Journal ---------- */
.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 36px; }
.post-card { text-decoration: none; }
.post-card .card__media { aspect-ratio: 16 / 10; }
.post-meta { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 18px 0 8px; }
.post-card h3 { font-size: 24px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding-top: 64px; padding-bottom: 64px; flex-wrap: wrap; }
.cta-band h2 { margin: 0; max-width: 700px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); color: #d8d8d8; font-size: 15px; }
.site-footer .container { padding-top: 70px; padding-bottom: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-tag { font-size: 26px; font-weight: 600; color: #fff; letter-spacing: .04em; margin: 20px 0; }
.socials { display: flex; gap: 12px; margin-top: 10px; }
.socials a { width: 40px; height: 40px; border: 1px solid #2a5673; display: grid; place-items: center; }
.socials a:hover { border-color: var(--accent); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { border-top: 1px solid #16405c; margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; opacity: .8; }

/* ---------- Tours listing / filter ---------- */
.filter {
  background: var(--paper); box-shadow: 0 20px 50px rgba(0,0,0,.12); display: grid;
  grid-template-columns: repeat(4, 1fr) auto; margin-top: -60px; position: relative; z-index: 2;
}
.filter label { display: block; padding: 18px 22px; border-right: 1px solid var(--line); }
.filter label span { display: block; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.filter select, .filter input { width: 100%; border: 0; background: transparent; font-size: 16px; font-weight: 600; padding: 2px 0; outline: none; }
.filter .btn { height: 100%; }
.filter__pair { display: flex !important; gap: 8px; margin: 0 !important; letter-spacing: 0 !important; text-transform: none !important; color: inherit !important; font-size: inherit !important; }
.filter__pair input[type=number] { width: 60px; flex: none; }
.results-bar { display: flex; justify-content: space-between; align-items: center; margin: 48px 0 28px; font-weight: 600; }
.results-bar button { background: none; border: 0; cursor: pointer; font-weight: 700; border-bottom: 2px solid var(--accent); }
.empty { padding: 60px; text-align: center; background: var(--cream); }

/* ---------- Tour detail ---------- */
.facts { background: var(--ink); color: #fff; }
.facts .container { display: grid; grid-template-columns: repeat(4, 1fr) auto; }
.fact { padding: 22px 24px; border-right: 1px solid #1d4a68; }
.fact:first-child { padding-left: 0; }
.fact span { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.fact b { font-size: 18px; font-weight: 600; }
.fact--rating { border-right: 0; display: flex; align-items: center; gap: 10px; }
.tour-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 64px; align-items: start; }
.tour-main h2 { font-size: clamp(26px, 2.6vw, 34px); margin-top: 64px; }
.tour-main h2:first-child { margin-top: 0; }
.tour-main h2::after { content: ''; display: block; width: 50px; height: 4px; background: var(--accent); margin-top: 16px; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 36px; }
.checklist li::before { content: ''; position: absolute; left: 0; top: 5px; width: 22px; height: 22px; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b3148' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/14px no-repeat; }
.checklist--no li::before { background: var(--cream-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b3148' stroke-width='3'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center/12px no-repeat; }
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.inc-grid h4 { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }

.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline-day { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; background: var(--ink); color: #fff; display: inline-block; padding: 6px 14px; margin: 28px 0 18px; }
.timeline li { position: relative; padding: 0 0 26px 52px; }
.timeline li::before { content: ''; position: absolute; left: 15px; top: 34px; bottom: 0; width: 2px; background: var(--line); }
.timeline li:last-child::before { display: none; }
.timeline .num { position: absolute; left: 0; top: 0; width: 32px; height: 32px; background: var(--accent); font-weight: 700; font-size: 14px; display: grid; place-items: center; }
.timeline h4 { font-size: 19px; margin: 3px 0 6px; }
.timeline p { font-size: 16px; color: var(--ink-2); margin: 0; }
.timeline .meta { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 700; background: var(--cream); padding: 4px 10px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery button { padding: 0; border: 0; cursor: zoom-in; aspect-ratio: 1; overflow: hidden; background: var(--cream-2); }
.gallery button:first-child { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, opacity .3s; }
.gallery button:hover img { transform: scale(1.06); }

.map-embed { width: 100%; aspect-ratio: 16 / 9; border: 0; filter: grayscale(.3); }

.consider { display: grid; gap: 0; border-top: 2px solid var(--ink); }
.consider div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.consider b { display: block; margin-bottom: 4px; }
.consider p { margin: 0; font-size: 16px; color: var(--ink-2); }

.review { border-bottom: 1px solid var(--line); padding: 26px 0; }
.review header { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; margin-bottom: 8px; flex-wrap: wrap; }
.review header b { font-size: 17px; }
.review header small { color: var(--muted); }
.review p { font-size: 16px; margin: 0; }
.review .reply { margin: 14px 0 0 24px; padding: 14px 18px; background: var(--cream); font-size: 15px; border-left: 4px solid var(--accent); }
.rating-summary { display: flex; gap: 24px; align-items: center; background: var(--cream); padding: 24px 28px; }
.rating-summary b { font-size: 52px; line-height: 1; }

/* Booking sidebar */
.booking { position: sticky; top: 100px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(0,0,0,.08); }
.booking__head { background: var(--ink); color: #fff; padding: 24px 28px; }
.booking__head span { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.booking__head .price { font-size: 38px; display: block; }
.booking__head .price small { color: #bbb; }
.booking__tabs { display: flex; border-bottom: 1px solid var(--line); }
.booking__tabs div { flex: 1; text-align: center; padding: 14px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-bottom: 3px solid var(--accent); }
.booking form { padding: 24px 28px 28px; display: grid; gap: 16px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); background: #fff; padding: 12px 14px; font-size: 16px; outline: none; border-radius: var(--radius);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(238,125,59,.4); }
.field.is-invalid input { border-color: #c0392b; }
.field .err { display: none; color: #c0392b; font-size: 13px; margin-top: 4px; }
.field.is-invalid .err { display: block; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stepper { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); padding: 6px 6px 6px 14px; }
.stepper span { font-size: 15px; }
.stepper small { color: var(--muted); display: block; font-size: 12px; }
.stepper div { display: flex; align-items: center; gap: 10px; }
.stepper button { width: 34px; height: 34px; border: 0; background: var(--cream); cursor: pointer; font-size: 18px; font-weight: 700; }
.stepper button:hover:not(:disabled) { background: var(--accent); }
.stepper button:disabled { opacity: .4; cursor: not-allowed; }
.stepper output { min-width: 18px; text-align: center; font-weight: 700; }
.extra { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border: 1px solid var(--line); cursor: pointer; }
.field label.extra { display: flex; margin: 0; font-size: inherit; font-weight: 400; letter-spacing: 0; text-transform: none; }
.extra:has(input:checked) { border-color: var(--ink); background: #fdf1e8; }
.extra input { accent-color: var(--ink); width: 18px; height: 18px; margin-top: 3px; }
.extra b { font-size: 15px; display: block; }
.extra small { color: var(--muted); font-size: 13px; }
.totals { border-top: 2px solid var(--ink); padding-top: 14px; font-size: 15px; display: grid; gap: 6px; }
.totals div { display: flex; justify-content: space-between; }
.totals .grand { font-size: 20px; font-weight: 700; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--muted); margin: 0; }
.success { padding: 36px 28px; text-align: center; }
.success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; margin: 0 auto 18px; font-size: 30px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 100; display: none; align-items: center; justify-content: center; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; object-fit: contain; }
.lightbox button { position: absolute; background: none; border: 0; color: #fff; font-size: 40px; cursor: pointer; padding: 20px; }
.lightbox .lb-close { top: 10px; right: 10px; }
.lightbox .lb-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 10px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count { position: absolute; bottom: 24px; color: #aaa; font-size: 14px; letter-spacing: .12em; }

/* ---------- Generic content pages ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.split img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.person img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.person h3 { margin-top: 18px; font-size: 22px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.values div { padding: 40px; border-right: 1px solid #1d4a68; }
.values div:last-child { border-right: 0; }
.values b { display: block; font-size: 28px; color: var(--accent); margin-bottom: 10px; }

.faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
.faq-nav { position: sticky; top: 110px; display: grid; gap: 2px; }
.faq-nav a { text-decoration: none; padding: 12px 16px; font-weight: 600; border-left: 4px solid transparent; background: var(--cream); }
.faq-nav a:hover { border-color: var(--accent); }
.faq-group { margin-bottom: 56px; scroll-margin-top: 110px; }
.faq-group h2 { font-size: 30px; }
details { border-bottom: 1px solid var(--line); }
details:first-of-type { border-top: 2px solid var(--ink); }
summary { cursor: pointer; list-style: none; padding: 20px 44px 20px 0; font-weight: 600; font-size: 19px; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: 0; top: 14px; width: 32px; height: 32px; display: grid; place-items: center; background: var(--cream); font-size: 22px; transition: transform .2s; }
details[open] summary::after { content: '−'; background: var(--accent); }
details .answer { padding: 0 0 22px; color: var(--ink-2); font-size: 17px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; }
.contact-list { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; }
.contact-list .ic { width: 48px; height: 48px; background: var(--accent); display: grid; place-items: center; flex: none; }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list span { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.contact-list a { text-decoration: none; font-weight: 600; font-size: 18px; }
.contact-form { background: var(--cream); padding: clamp(28px, 4vw, 48px); display: grid; gap: 18px; }

.article { max-width: 760px; margin: 0 auto; }
.article .lede { font-size: 22px; line-height: 1.55; }
.article h2 { font-size: 30px; margin-top: 48px; }
.article h2::after { content: ''; display: block; width: 44px; height: 4px; background: var(--accent); margin-top: 14px; }
.article blockquote { margin: 32px 0; padding: 24px 28px; background: var(--cream); border-left: 6px solid var(--accent); font-weight: 500; }
.article li { margin-bottom: 8px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { font-size: 13px; font-weight: 600; padding: 6px 12px; background: var(--cream); }
.author-box { display: flex; gap: 20px; align-items: center; background: var(--ink); color: #eee; padding: 28px; margin-top: 56px; }
.author-box img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; }

.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; width: 45%; color: var(--muted); }
.sights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 32px; }
.sights button { padding: 0; border: 0; aspect-ratio: 3 / 4; overflow: hidden; cursor: zoom-in; }
.sights img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.sights button:hover img { transform: scale(1.05); }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 120px); background: var(--ink); color: #fff; padding: 14px 22px; border-left: 4px solid var(--accent); z-index: 120; transition: transform .3s; font-size: 15px; }
.toast.is-show { transform: translate(-50%, 0); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav { position: absolute; top: 100%; left: 0; right: 0; height: calc(100vh - 76px); background: var(--ink); flex-direction: column; align-items: stretch; gap: 0; padding: 20px var(--gutter); visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .25s, transform .25s, visibility .25s; overflow-y: auto; }
  .nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav a { padding: 18px 0; border-bottom: 1px solid #16405c; font-size: 20px; }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 20px; padding: 16px; border-bottom: 0; }
  .burger { display: block; }
}
@media (max-width: 1080px) {
  .tour-layout { grid-template-columns: 1fr; }
  .booking { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .filter { grid-template-columns: 1fr 1fr; }
  .filter .btn { grid-column: span 2; padding: 18px; }
  .filter label:nth-child(2n) { border-right: 0; }
  .filter label { border-bottom: 1px solid var(--line); }
}
@media (max-width: 900px) {
  .stats .container { grid-template-columns: 1fr 1fr; }
  .tab-pane.is-active { grid-template-columns: 1fr; }
  .tab-pane__img { order: -1; min-height: 260px; }
  .why, .values { grid-template-columns: 1fr; }
  .values div { border-right: 0; border-bottom: 1px solid #1d4a68; }
  .split, .contact-grid, .faq-layout { grid-template-columns: 1fr; }
  .faq-nav { position: static; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .facts .container { grid-template-columns: 1fr 1fr; }
  .fact { padding-left: 0; border-right: 0; border-bottom: 1px solid #1d4a68; }
  .departure { grid-template-columns: 110px 1fr; }
  .departure .status, .departure .btn { grid-column: 2; justify-self: start; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .utility .hide-sm, .utility__right > a { display: none; }
  .utility a, .currency button { white-space: nowrap; }
  .dest-grid, .team, .inc-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .sights { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .filter { grid-template-columns: 1fr; }
  .filter .btn { grid-column: auto; }
  .filter label { border-right: 0; }
  .feature__card { transform: translateY(40px); }
  .quotes { grid-auto-columns: 86%; }
  .row2 { grid-template-columns: 1fr; }
  .logo__text b { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Brand logo ---------- */
.logo { gap: 12px; }
.logo__ship { height: 44px; width: auto; }
.logo__word { height: 17px; width: auto; }
.site-footer .logo__ship { height: 56px; }
.site-footer .logo__word { height: 20px; }

/* ---------- Language switcher ---------- */
.langs { display: flex; border: 1px solid #2a5673; }
.langs a { padding: 3px 9px; font-size: 13px; font-weight: 700; text-decoration: none; color: #bcd; opacity: 1 !important; }
.langs a:hover { color: #fff !important; }
.langs a.is-active { background: var(--accent); color: var(--ink) !important; }
.nav .langs--mobile { display: none; }
@media (max-width: 1100px) {
  .nav .langs--mobile { display: flex; margin-top: 18px; align-self: flex-start; }
  .nav .langs--mobile a { padding: 10px 16px; font-size: 16px; border-bottom: 0; }
}
@media (max-width: 640px) { .utility .currency { display: none; } }

/* ---------- ALL CAPS (FiraGO) ----------
   Latin/Cyrillic: text-transform. Georgian: FiraGO's "case" feature renders Mkhedruli as capitals
   (text-transform would produce Mtavruli code points, which FiraGO does not contain). */
:is(h1, h2, h3, h4, .eyebrow, .btn, .nav a, .card__loc, .post-meta, .badge, .fact span, .field label:not(.extra), .breadcrumbs, .tabs-bar button, .timeline-day, .inc-grid h4, .site-footer h4, .status, .booking__tabs div, .booking__head > span:first-child, .inc-icons span, .filter label > span:first-child, .info-table th, .contact-list span, .faq-nav a, .link-arrow, .footer-tag, .values b, .group-feats b, .credits-table th, .results-bar, .stat p) { text-transform: uppercase; font-feature-settings: "case" 1; }
html[lang="ka"] :is(h1, h2, h3, h4, .eyebrow, .btn, .nav a, .card__loc, .post-meta, .badge, .fact span, .field label:not(.extra), .breadcrumbs, .tabs-bar button, .timeline-day, .inc-grid h4, .site-footer h4, .status, .booking__tabs div, .booking__head > span:first-child, .inc-icons span, .filter label > span:first-child, .info-table th, .contact-list span, .faq-nav a, .link-arrow, .footer-tag, .values b, .group-feats b, .credits-table th, .results-bar, .stat p) { text-transform: none; }
h1, h2, h3 { font-weight: 700; letter-spacing: .01em; }
.display { font-size: clamp(34px, 5.2vw, 64px); line-height: 1.08; }
.h-xl { font-size: clamp(28px, 3.6vw, 44px); }
.card h3 { font-size: 19px; line-height: 1.25; }
.post-card h3 { font-size: 21px; }
/* Georgian script: tighter tracking for capitalised labels */
html[lang="ka"] .eyebrow, html[lang="ka"] .btn, html[lang="ka"] .card__loc, html[lang="ka"] .post-meta, html[lang="ka"] .badge,
html[lang="ka"] .fact span, html[lang="ka"] .field label, html[lang="ka"] .breadcrumbs { letter-spacing: .06em; }
html[lang="ka"] .display { font-size: clamp(30px, 4.6vw, 56px); }

/* Credits table */
.credits-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.credits-table th, .credits-table td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.credits-table img { width: 72px; height: 48px; object-fit: cover; }
.credits-table a { word-break: break-word; }
@media (max-width: 640px) { .credits-table .hide-sm { display: none; } }
