﻿/* =========================================================
   Georgia Quad — main stylesheet
   Warm mid-tone palette: stone / moss / clay. Neither dark nor light.
   ========================================================= */

:root{
  --c-bg:        #E6E0D6;
  --c-bg-2:      #DBD3C6;
  --c-surface:   #F2EDE5;
  --c-surface-2: #EAE4DA;

  --c-ink:       #23292B;
  --c-ink-soft:  #5B6664;
  --c-line:      rgba(35,41,43,.14);
  --c-line-2:    rgba(35,41,43,.08);

  --c-deep:      #2E3A38;
  --c-deep-2:    #212B29;
  --c-deep-3:    #1A2321;

  --c-accent:    #D0383D;
  --c-accent-d:  #A82B30;
  --c-accent-l:  #E5666A;
  --c-moss:      #6F8B7C;
  --c-sky:       #7E9BA5;

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

  --sh-1: 0 2px 8px rgba(31,38,36,.06), 0 12px 28px rgba(31,38,36,.08);
  --sh-2: 0 6px 18px rgba(31,38,36,.10), 0 26px 60px rgba(31,38,36,.14);

  --ff-head: "Barlow Condensed", "Oswald", "Arial Narrow", system-ui, sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1240px;
  --wrap-narrow: 880px;
  --header-h: 84px;

  /* height of the photo header on a tour page, and the padding of the
     section right below it — the booking card is aligned against both */
  --tour-hero-h: clamp(430px,62vh,620px);
  --section-pad: clamp(64px,8vw,120px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  /* never break words with a hyphen */
  -webkit-hyphens:none;
  hyphens:none;
}
body{
  margin:0;
  background:var(--c-bg);
  color:var(--c-ink);
  font-family:var(--ff-body);
  font-size:17px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.gq-no-scroll{ overflow:hidden; }
img,video,svg{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
input,textarea,select{ font:inherit; color:inherit; }
h1,h2,h3,h4,h5{
  font-family:var(--ff-head);
  font-weight:700;
  line-height:1.04;
  letter-spacing:.005em;
  margin:0 0 .5em;
  text-wrap:balance;
  -webkit-hyphens:none;
  hyphens:none;
  overflow-wrap:break-word;
  word-break:normal;
}
p{ margin:0 0 1.1em; }
p:last-child{ margin-bottom:0; }
::selection{ background:var(--c-accent); color:#fff; }

/* ---------- layout helpers ---------- */
.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:24px; }
.wrap-narrow{ max-width:var(--wrap-narrow); }
.section{ padding:var(--section-pad) 0; position:relative; }
.section--tight{ padding:clamp(48px,5vw,76px) 0; }
.section--stone{ background:var(--c-bg-2); }
.section--surface{ background:var(--c-surface); }
.section--deep{ background:var(--c-deep); color:#E9E4DA; }
.section--deep h2,.section--deep h3{ color:#fff; }

.grid{ display:grid; gap:28px; }
.center{ text-align:center; }

/* ---------- type ---------- */
.h-xxl{ font-size:clamp(44px,7.4vw,104px); text-transform:uppercase; }
.h-xl{ font-size:clamp(34px,4.6vw,64px); text-transform:uppercase; }
.h-l{ font-size:clamp(28px,3.2vw,44px); text-transform:uppercase; }
.h-m{ font-size:clamp(22px,2.2vw,30px); }
.lead{ font-size:clamp(17px,1.35vw,20px); color:var(--c-ink-soft); }
.section--deep .lead{ color:rgba(233,228,218,.78); }

.eyebrow{
  display:inline-block;
  font-family:var(--ff-body);
  font-size:12px; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--c-accent);
  margin-bottom:18px;
}
.section--deep .eyebrow{ color:var(--c-accent-l); }

.section-head{ max-width:760px; margin-bottom:clamp(36px,4vw,56px); }
.section-head.center{ margin-inline:auto; }

/* ---------- buttons ---------- */
.btn{
  --btn-bg:var(--c-accent);
  --btn-fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 30px;
  background:var(--btn-bg); color:var(--btn-fg);
  border-radius:999px;
  font-family:var(--ff-body);
  font-size:14px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  line-height:1;
  border:1.5px solid transparent;
  transition:transform .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease), color .28s var(--ease);
  box-shadow:0 10px 24px rgba(208,56,61,.24);
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); background:var(--c-accent-d); box-shadow:0 14px 30px rgba(208,56,61,.32); }
.btn:active{ transform:translateY(0); }
.btn--ghost{
  background:transparent; color:var(--c-ink);
  border-color:rgba(35,41,43,.28);
  box-shadow:none;
}
.btn--ghost:hover{ background:var(--c-ink); color:var(--c-bg); border-color:var(--c-ink); box-shadow:none; }
.btn--light{
  background:rgba(255,255,255,.10); color:#fff; border-color:rgba(255,255,255,.42);
  backdrop-filter:blur(8px); box-shadow:none;
}
.btn--light:hover{ background:#fff; color:var(--c-deep); border-color:#fff; box-shadow:none; }
.btn--sm{ padding:12px 22px; font-size:12.5px; }
.btn--block{ width:100%; }
.btn svg{ width:16px; height:16px; flex:none; }

.link-arrow{
  display:inline-flex; align-items:center; gap:9px;
  font-size:13.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--c-accent);
}
.link-arrow svg{ width:17px; height:17px; transition:transform .3s var(--ease); }
.link-arrow:hover svg{ transform:translateX(5px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:200;
  height:var(--header-h);
  display:flex; align-items:center;
  transition:background .35s var(--ease), height .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom:1px solid transparent;
}
.site-header::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,26,25,.55), rgba(20,26,25,0));
  opacity:1; transition:opacity .35s var(--ease); pointer-events:none;
}
.site-header.is-stuck{
  height:70px;
  background:rgba(46,58,56,.94);
  backdrop-filter:blur(14px);
  box-shadow:0 10px 30px rgba(26,35,33,.18);
  border-bottom-color:rgba(255,255,255,.08);
}
.site-header.is-stuck::before{ opacity:0; }
body.gq-solid-header .site-header{
  background:rgba(46,58,56,.96);
  backdrop-filter:blur(14px);
}
body.gq-solid-header .site-header::before{ opacity:0; }

.header-inner{
  width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:24px;
  display:flex; align-items:center; gap:28px;
}

/* logo */
.site-logo{ display:flex; align-items:center; gap:12px; color:#fff; flex:none; }
.site-logo__img{
  width:auto; height:60px; flex:none;
  border-radius:50%;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow:0 6px 18px rgba(16,21,20,.28);
}
.site-logo:hover .site-logo__img{ transform:scale(1.05) rotate(-4deg); }
.is-stuck .site-logo__img{ height:50px; }
.site-logo__name{
  font-family:var(--ff-head); font-size:23px; font-weight:700;
  text-transform:uppercase; letter-spacing:.04em;
}
.site-footer .site-logo__img{ height:78px; }

/* nav */
.site-nav{ margin-left:auto; }
.site-nav ul{ list-style:none; display:flex; align-items:center; gap:2px; margin:0; padding:0; }
.site-nav li{ position:relative; }
.site-nav a{
  display:block; padding:10px 11px;
  color:rgba(255,255,255,.86);
  font-size:12.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  border-radius:8px;
  transition:color .25s var(--ease), background .25s var(--ease);
  white-space:nowrap;
}
.site-nav a:hover{ color:#fff; background:rgba(255,255,255,.10); }
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a,
.site-nav .current-menu-parent > a,
.site-nav .current-menu-ancestor > a{ color:#fff; }
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after{
  content:""; display:block; height:2px; margin:6px auto -2px; width:22px;
  background:var(--c-accent); border-radius:2px;
}

/* dropdown */
.site-nav .sub-menu{
  position:absolute; top:calc(100% + 10px); left:0;
  min-width:250px; padding:10px;
  background:rgba(33,43,41,.97);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--r-md);
  box-shadow:0 20px 44px rgba(20,26,25,.34);
  display:flex; flex-direction:column; gap:2px;
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.site-nav .sub-menu a{
  padding:11px 14px; font-size:12.5px; letter-spacing:.06em; text-transform:none;
  font-weight:500; font-size:14px; color:rgba(255,255,255,.82);
}
.site-nav .sub-menu a:hover{ background:rgba(208,56,61,.9); color:#fff; }

.header-cta{ flex:none; }
.header-phone{
  display:none; align-items:center; gap:9px; flex:none;
  color:#fff; font-size:14.5px; font-weight:600; letter-spacing:.02em;
  padding:9px 16px; border-radius:999px;
  border:1px solid rgba(255,255,255,.24);
  transition:background .25s var(--ease), border-color .25s var(--ease);
}
.header-phone:hover{ background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.45); }
.header-phone svg{ width:15px; height:15px; color:var(--c-accent-l); }

/* burger */
.burger{
  display:none; width:46px; height:46px; flex:none;
  border-radius:12px; border:1px solid rgba(255,255,255,.22);
  position:relative; z-index:320;
}
.burger span{
  position:absolute; left:13px; right:13px; height:2px; background:#fff; border-radius:2px;
  transition:transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1){ top:16px; }
.burger span:nth-child(2){ top:22px; }
.burger span:nth-child(3){ top:28px; }
.burger.is-open span:nth-child(1){ top:22px; transform:rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ top:22px; transform:rotate(-45deg); }

/* mobile panel */
.mobile-panel{
  position:fixed; inset:0; z-index:310;
  background:linear-gradient(160deg,#2E3A38,#1A2321);
  padding:calc(var(--header-h) + 24px) 24px 40px;
  overflow-y:auto;
  opacity:0; visibility:hidden; transform:translateY(-12px);
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-panel.is-open{ opacity:1; visibility:visible; transform:translateY(0); }
.mobile-panel ul{ list-style:none; margin:0 0 28px; padding:0; }
.mobile-panel > ul > li{ border-bottom:1px solid rgba(255,255,255,.10); }
.mobile-panel a{
  display:block; padding:16px 2px; color:#fff;
  font-family:var(--ff-head); font-size:26px; text-transform:uppercase; letter-spacing:.02em;
}
.mobile-panel .sub-menu{ margin:0 0 12px; padding-left:14px; border-left:2px solid rgba(208,56,61,.5); }
.mobile-panel .sub-menu li{ border:0; }
.mobile-panel .sub-menu a{
  font-family:var(--ff-body); font-size:15px; font-weight:500;
  text-transform:none; letter-spacing:0; padding:9px 2px;
  color:rgba(255,255,255,.72);
}
.mobile-panel__foot{ display:flex; flex-direction:column; gap:14px; }
.mobile-panel__foot a.mp-contact{
  color:rgba(255,255,255,.8); font-size:15px; display:flex; align-items:center; gap:10px;
  font-family:var(--ff-body); text-transform:none; padding:0;
}
.mobile-panel__foot svg{ width:16px; height:16px; color:var(--c-accent-l); flex:none; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:center;
  overflow:hidden;
  background:var(--c-deep-3);
  isolation:isolate;
}
.hero__media{ position:absolute; inset:0; z-index:-2; }
.hero__media video,
.hero__media img{
  width:100%; height:100%; object-fit:cover;
  filter:saturate(1.06) contrast(1.02);
}
.hero__scrim{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(20,26,25,.58) 0%, rgba(20,26,25,.30) 45%, rgba(20,26,25,.55) 100%),
    radial-gradient(85% 65% at 50% 50%, rgba(20,26,25,.42), transparent 72%);
}
.hero__inner{
  width:100%; max-width:var(--wrap); margin-inline:auto;
  padding:var(--header-h) 24px 0;
  color:#fff; text-align:center;
}
.hero__eyebrow{
  display:block;
  font-size:12.5px; font-weight:700; letter-spacing:.26em; text-transform:uppercase;
  color:rgba(255,255,255,.82);
  margin-bottom:26px;
}
.hero__title{
  font-size:clamp(46px,8.4vw,124px);
  text-transform:uppercase;
  line-height:.92;
  margin:0 0 22px;
  text-shadow:0 6px 40px rgba(0,0,0,.35);
}
.hero__title em{ font-style:normal; color:var(--c-accent-l); display:block; }
.hero__text{
  max-width:620px; margin:0 auto 38px; font-size:clamp(16px,1.3vw,19px);
  color:rgba(255,255,255,.85);
}
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:center; }

.hero__scroll{
  position:absolute; right:34px; bottom:36px; z-index:2;
  display:flex; align-items:center; gap:12px;
  font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:rgba(255,255,255,.6);
  writing-mode:vertical-rl;
}
.hero__scroll::after{
  content:""; width:1px; height:56px;
  background:linear-gradient(180deg,rgba(255,255,255,.6),transparent);
}
/* page hero (inner pages) */
.page-hero{
  position:relative; min-height:clamp(300px,44vh,460px);
  display:flex; align-items:flex-end;
  background:linear-gradient(150deg,#38443F,#202A28);
  color:#fff; overflow:hidden;
  padding-top:var(--header-h);
}
.page-hero__bg{ position:absolute; inset:0; }
.page-hero__bg img{ width:100%; height:100%; object-fit:cover; opacity:.42; }
.page-hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(20,26,25,.5),rgba(20,26,25,.86));
}
.page-hero__inner{
  position:relative; z-index:2;
  width:100%; max-width:var(--wrap); margin-inline:auto;
  padding:0 24px clamp(38px,5vh,64px);
}
.page-hero h1{ font-size:clamp(36px,5.4vw,74px); text-transform:uppercase; margin-bottom:10px; }
.page-hero p{ color:rgba(255,255,255,.78); max-width:620px; }

.crumbs{
  display:flex; flex-wrap:wrap; align-items:center; gap:9px;
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(255,255,255,.55); margin-bottom:16px;
}
.crumbs a:hover{ color:#fff; }
.crumbs span.sep{ opacity:.45; }

/* =========================================================
   ABOUT / TEXT BLOCKS
   ========================================================= */
.about-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(36px,5vw,72px); align-items:center;
}
.about-copy p + p{ margin-top:1.1em; }
.about-visual{ position:relative; }
.about-visual__img{
  border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--sh-2);
  aspect-ratio:4/5; background:linear-gradient(150deg,#5F7468,#2F3B37);
}
.about-visual__img img{ width:100%; height:100%; object-fit:cover; }
.about-visual__badge{
  position:absolute; left:-24px; bottom:34px;
  background:var(--c-accent); color:#fff;
  padding:20px 26px; border-radius:var(--r-md);
  box-shadow:0 18px 40px rgba(208,56,61,.32);
  max-width:230px;
}
.about-visual__badge b{ display:block; font-family:var(--ff-head); font-size:40px; line-height:1; }
.about-visual__badge span{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; opacity:.9; }

.stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:38px; }
.stat{
  padding:22px 24px; border-radius:var(--r-md);
  background:var(--c-surface); border:1px solid var(--c-line-2);
}
.section--surface .stat{ background:var(--c-bg-2); }
.stat b{ display:block; font-family:var(--ff-head); font-size:38px; line-height:1; color:var(--c-accent); }
.stat span{ font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--c-ink-soft); }

/* why choose us — six points, no descriptions */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.why-item{
  display:flex; align-items:center; gap:18px;
  padding:24px 26px;
  background:var(--c-surface); border:1px solid var(--c-line-2);
  border-radius:var(--r-lg);
  transition:transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.section--deep .why-item{
  background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.10);
}
.why-item:hover{ transform:translateY(-5px); border-color:rgba(208,56,61,.4); box-shadow:var(--sh-1); }
.section--deep .why-item:hover{ box-shadow:none; }
.why-item__icon{
  width:52px; height:52px; flex:none; border-radius:15px;
  display:grid; place-items:center;
  background:rgba(208,56,61,.12); color:var(--c-accent);
}
.section--deep .why-item__icon{ background:rgba(208,56,61,.18); color:var(--c-accent-l); }
.why-item__icon svg{ width:25px; height:25px; }
.why-item h3{
  font-size:20px; line-height:1.2; margin:0;
  text-transform:uppercase; letter-spacing:.01em;
}
.section--deep .why-item h3{ color:#fff; }

/* fallback cover when a post has no featured image */
.gq-cover-fallback{
  position:absolute; inset:0;
  display:grid; place-items:center;
  background:
    radial-gradient(90% 70% at 30% 20%, rgba(255,255,255,.12), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 12px, transparent 12px 24px),
    linear-gradient(150deg,#6C8375,#2C3835);
}
.gq-cover-fallback svg{
  width:46%; max-width:130px; height:auto;
  color:rgba(255,255,255,.34); stroke-width:1.2;
}
.empty-state .gq-cover-fallback{ position:static; background:none; }

/* feature cards */
.features{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.features--3{ grid-template-columns:repeat(3,1fr); }
.feature{
  background:var(--c-surface);
  border:1px solid var(--c-line-2);
  border-radius:var(--r-lg);
  padding:32px 28px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.section--surface .feature{ background:var(--c-bg-2); }
.section--deep .feature{
  background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.10); color:rgba(233,228,218,.8);
}
.feature:hover{ transform:translateY(-6px); box-shadow:var(--sh-1); border-color:rgba(208,56,61,.35); }
.feature__icon{
  width:54px; height:54px; border-radius:15px; display:grid; place-items:center;
  background:rgba(208,56,61,.12); color:var(--c-accent); margin-bottom:20px;
}
.section--deep .feature__icon{ background:rgba(208,56,61,.18); color:var(--c-accent-l); }
.feature__icon svg{ width:26px; height:26px; }
.feature h3{ font-size:22px; text-transform:uppercase; margin-bottom:10px; }
.feature p{ font-size:15px; color:var(--c-ink-soft); line-height:1.65; }
.section--deep .feature p{ color:rgba(233,228,218,.7); }

/* =========================================================
   TOUR CARDS
   ========================================================= */
.tours-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.tours-grid--2{ grid-template-columns:repeat(2,1fr); }

.tour-card{
  position:relative;
  display:flex; flex-direction:column;
  background:var(--c-surface);
  border:1px solid var(--c-line-2);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.section--surface .tour-card,
.section--stone .tour-card{ background:var(--c-surface); }
.tour-card:hover{ transform:translateY(-8px); box-shadow:var(--sh-2); }
.tour-card__media{
  position:relative; aspect-ratio:16/11; overflow:hidden;
  background:linear-gradient(150deg,#69806F,#2F3B37);
}
.tour-card__media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s var(--ease);
}
.tour-card:hover .tour-card__media img{ transform:scale(1.07); }
.tour-card__media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(20,26,25,0) 45%,rgba(20,26,25,.55));
}
.tour-card__badge{
  position:absolute; z-index:2; top:16px; left:16px;
  display:inline-flex; align-items:center; gap:7px;
  padding:7px 14px; border-radius:999px;
  background:rgba(20,26,25,.62); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.2);
  color:#fff; font-size:11px; font-weight:700; letter-spacing:.13em; text-transform:uppercase;
}
.tour-card__price{
  position:absolute; z-index:2; right:16px; bottom:16px;
  background:var(--c-accent); color:#fff;
  padding:9px 16px; border-radius:999px;
  font-family:var(--ff-head); font-size:20px; line-height:1;
  box-shadow:0 8px 20px rgba(208,56,61,.35);
}
.tour-card__price small{ font-family:var(--ff-body); font-size:10px; letter-spacing:.1em; opacity:.85; }
.tour-card__body{ padding:26px 26px 28px; display:flex; flex-direction:column; flex:1; }
.tour-card__body h3{ font-size:26px; text-transform:uppercase; margin-bottom:12px; }
.tour-card__body h3 a{ transition:color .25s var(--ease); }
.tour-card:hover .tour-card__body h3 a{ color:var(--c-accent); }
.tour-card__excerpt{ font-size:15px; color:var(--c-ink-soft); line-height:1.65; margin-bottom:20px; }
.tour-meta{
  display:flex; flex-wrap:wrap; gap:8px 16px; margin-bottom:20px;
  padding-bottom:20px; border-bottom:1px solid var(--c-line-2);
}
.tour-meta span{
  display:inline-flex; align-items:center; gap:7px;
  font-size:12.5px; font-weight:600; letter-spacing:.04em; color:var(--c-ink-soft);
}
.tour-meta svg{ width:15px; height:15px; color:var(--c-moss); flex:none; }
.tour-card__foot{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:14px; }
.tour-card__link{ position:absolute; inset:0; z-index:1; }

/* category chips */
.chips{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:38px; }
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 20px; border-radius:999px;
  border:1.5px solid var(--c-line);
  font-size:12.5px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  color:var(--c-ink-soft);
  transition:all .25s var(--ease);
  background:var(--c-surface);
}
.chip:hover{ border-color:var(--c-ink); color:var(--c-ink); }
.chip.is-active{ background:var(--c-accent); border-color:var(--c-accent); color:#fff; box-shadow:0 8px 20px rgba(208,56,61,.24); }
.chip em{ font-style:normal; opacity:.6; font-size:11px; }

/* category tiles */
.cat-tiles{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.cat-tile{
  position:relative; min-height:280px; border-radius:var(--r-lg); overflow:hidden;
  display:flex; align-items:flex-end; padding:26px;
  background:linear-gradient(160deg,#5C7268,#28322F);
  color:#fff; isolation:isolate;
}
.cat-tile img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2;
  transition:transform .7s var(--ease);
}
.cat-tile::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg,rgba(20,26,25,.15),rgba(20,26,25,.82));
  transition:background .4s var(--ease);
}
.cat-tile:hover img{ transform:scale(1.08); }
.cat-tile:hover::after{ background:linear-gradient(180deg,rgba(208,56,61,.28),rgba(20,26,25,.86)); }
.cat-tile h3{ font-size:24px; text-transform:uppercase; margin:0 0 6px; }
.cat-tile span{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.68); }

/* =========================================================
   GALLERY
   ========================================================= */
.gal-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.gal-card{
  position:relative; display:block; border-radius:var(--r-lg); overflow:hidden;
  aspect-ratio:4/3; background:linear-gradient(150deg,#69806F,#2F3B37);
  box-shadow:var(--sh-1);
}
.gal-card img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.gal-card:hover img{ transform:scale(1.07); }
.gal-card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(20,26,25,0) 40%,rgba(20,26,25,.82));
}
.gal-card__body{ position:absolute; z-index:2; left:24px; right:24px; bottom:22px; color:#fff; }
.gal-card__body h3{ font-size:24px; text-transform:uppercase; margin:0 0 6px; }
.gal-card__count{
  display:inline-flex; align-items:center; gap:7px;
  font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.72);
}
.gal-card__count svg{ width:14px; height:14px; }

.photo-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.photo-grid--5{ grid-template-columns:repeat(5,1fr); gap:14px; }
.photo{
  position:relative; display:block; border-radius:var(--r-md); overflow:hidden;
  aspect-ratio:1/1; background:var(--c-bg-2); cursor:zoom-in;
}
.photo img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease), filter .4s var(--ease); }
.photo:hover img{ transform:scale(1.06); filter:brightness(1.05); }
.photo::after{
  content:""; position:absolute; inset:0; background:rgba(208,56,61,0);
  transition:background .35s var(--ease);
}
.photo:hover::after{ background:rgba(208,56,61,.12); }

/* lightbox */
.gq-lightbox{
  position:fixed; inset:0; z-index:400;
  background:rgba(16,21,20,.95); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity .3s var(--ease), visibility .3s;
}
.gq-lightbox.is-open{ opacity:1; visibility:visible; }
.gq-lightbox img{
  max-width:92vw; max-height:84vh; border-radius:var(--r-md);
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}
.gq-lightbox__close,
.gq-lightbox__nav{
  position:absolute; width:52px; height:52px; border-radius:50%;
  background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.24);
  color:#fff; display:grid; place-items:center;
  transition:background .25s var(--ease);
}
.gq-lightbox__close:hover,.gq-lightbox__nav:hover{ background:var(--c-accent); border-color:var(--c-accent); }
.gq-lightbox__close{ top:26px; right:26px; }
.gq-lightbox__nav svg,.gq-lightbox__close svg{ width:22px; height:22px; }
.gq-lightbox__nav--prev{ left:26px; top:50%; transform:translateY(-50%); }
.gq-lightbox__nav--next{ right:26px; top:50%; transform:translateY(-50%); }
.gq-lightbox__counter{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  color:rgba(255,255,255,.7); font-size:13px; letter-spacing:.14em;
}

/* =========================================================
   SINGLE TOUR — hero
   ========================================================= */
.tour-hero{
  position:relative; isolation:isolate;
  display:flex; align-items:flex-end;
  min-height:var(--tour-hero-h);
  padding-top:var(--header-h);
  background:var(--c-deep-3); color:#fff; overflow:hidden;
}
.tour-hero__bg{ position:absolute; inset:0; z-index:-2; }
.tour-hero__bg img{ width:100%; height:100%; object-fit:cover; }
.tour-hero::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(20,26,25,.62) 0%, rgba(20,26,25,.20) 34%, rgba(20,26,25,.62) 76%, rgba(20,26,25,.92) 100%),
    radial-gradient(110% 70% at 8% 100%, rgba(20,26,25,.6), transparent 62%);
}
.tour-hero__inner{ position:relative; z-index:2; padding-bottom:clamp(34px,4.5vh,58px); width:100%; }
.tour-hero__cat{
  display:inline-flex; align-items:center;
  padding:8px 16px; margin-bottom:16px; border-radius:999px;
  background:var(--c-accent); color:#fff;
  font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  transition:background .25s var(--ease);
}
.tour-hero__cat:hover{ background:var(--c-accent-d); }
.tour-hero h1{
  font-size:clamp(34px,5.2vw,72px); text-transform:uppercase;
  margin:0 0 14px; max-width:16ch;
  text-shadow:0 6px 34px rgba(0,0,0,.32);
}
.tour-hero__text{ max-width:640px; color:rgba(255,255,255,.82); font-size:clamp(16px,1.25vw,18px); margin:0; }

.fact-chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.fact-chip{
  display:inline-flex; align-items:center; gap:9px;
  padding:11px 18px; border-radius:999px;
  background:rgba(20,26,25,.42); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.2);
  font-size:14px; font-weight:600; color:#fff;
}
.fact-chip svg{ width:16px; height:16px; color:var(--c-accent-l); flex:none; }
.fact-chip--price{
  background:var(--c-accent); border-color:var(--c-accent);
  text-transform:uppercase; font-size:11.5px; letter-spacing:.14em;
  box-shadow:0 10px 26px rgba(208,56,61,.34);
}
.fact-chip--price b{ font-family:var(--ff-head); font-size:22px; letter-spacing:0; line-height:1; }

/* =========================================================
   SINGLE TOUR — body
   ========================================================= */
.wrap-wide{ max-width:1400px; }
.tour-grid{
  display:grid; grid-template-columns:minmax(0,1fr) 392px;
  gap:clamp(32px,3.4vw,52px); align-items:start;
}
.tour-main{ min-width:0; }
.block{ margin-bottom:clamp(42px,4.6vw,64px); }
.block:last-child{ margin-bottom:0; }
.block__title{
  font-size:clamp(24px,2.5vw,34px); text-transform:uppercase;
  margin:0 0 24px; padding-bottom:14px;
  border-bottom:1px solid var(--c-line-2);
  position:relative;
}
.block__title::after{
  content:""; position:absolute; left:0; bottom:-1px;
  width:64px; height:3px; background:var(--c-accent); border-radius:3px;
}
.prose{ font-size:17px; line-height:1.8; color:var(--c-ink-soft); max-width:74ch; }
.prose p{ margin:0 0 1.05em; }
.prose p:last-child{ margin-bottom:0; }

/* highlights */
.highlights{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:12px;
}
.highlights li{
  display:flex; align-items:center; gap:12px;
  padding:15px 18px;
  background:var(--c-surface); border:1px solid var(--c-line-2);
  border-radius:var(--r-md);
  font-size:15.5px; font-weight:600; line-height:1.45;
  transition:border-color .3s var(--ease), transform .3s var(--ease);
}
.highlights li:hover{ border-color:rgba(208,56,61,.4); transform:translateX(3px); }
.highlights svg{ width:17px; height:17px; flex:none; color:var(--c-accent); stroke-width:2.6; }

/* at a glance — one row per fact, value has the whole width it needs */
.spec-rows{
  margin:0; padding:0;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2px;
  background:var(--c-line-2);
  border:1px solid var(--c-line-2);
  border-radius:var(--r-lg);
  overflow:hidden;
}
.spec-row{
  display:grid;
  grid-template-columns:44px 1fr;
  grid-template-areas:"icon label" "icon value";
  align-items:center;
  column-gap:15px; row-gap:2px;
  padding:18px 22px;
  background:var(--c-surface);
}
.spec-row__icon{
  grid-area:icon;
  width:44px; height:44px; border-radius:13px;
  display:grid; place-items:center;
  background:rgba(208,56,61,.10); color:var(--c-accent);
}
.spec-row__icon svg{ width:21px; height:21px; }
.spec-row dt{
  grid-area:label;
  font-size:10.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--c-ink-soft);
}
.spec-row dd{
  grid-area:value;
  margin:0; font-size:16px; font-weight:600; line-height:1.4;
}

/* day by day — collapsible, so a long programme stays readable */
.days{ display:grid; gap:12px; }
.day{
  background:var(--c-surface);
  border:1px solid var(--c-line-2);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.day[open]{ border-color:rgba(208,56,61,.28); box-shadow:var(--sh-1); }
.day__head{
  display:flex; align-items:center; gap:16px;
  padding:18px 22px;
  cursor:pointer; list-style:none;
  transition:background .25s var(--ease);
}
.day__head::-webkit-details-marker{ display:none; }
.day__head:hover{ background:rgba(208,56,61,.05); }
.day__num{
  width:34px; height:34px; flex:none; border-radius:50%;
  display:grid; place-items:center;
  background:var(--c-accent); color:#fff;
  font-family:var(--ff-head); font-size:17px; line-height:1;
}
.day__title{
  flex:1; min-width:0;
  font-family:var(--ff-head); font-size:20px; line-height:1.15;
  text-transform:uppercase;
}
.day__meta{
  display:inline-flex; align-items:center; gap:6px; vertical-align:middle;
  margin-left:12px; padding:4px 11px; border-radius:999px;
  background:rgba(111,139,124,.18); color:#41573F;
  font-family:var(--ff-body); font-size:11.5px; font-weight:700;
  letter-spacing:.04em; text-transform:none; white-space:nowrap;
}
.day__meta svg{ width:13px; height:13px; }
.day__toggle{
  flex:none; width:28px; height:28px; display:grid; place-items:center;
  color:var(--c-ink-soft);
  transition:transform .3s var(--ease), color .3s var(--ease);
}
.day__toggle svg{ width:18px; height:18px; }
.day[open] .day__toggle{ transform:rotate(90deg); color:var(--c-accent); }
.day__body{
  padding:2px 22px 24px 72px;
  font-size:16px;
}

/* included / not included */
.inc-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:34px 52px; }

/* No boxes here — a heading and a list is enough, and it reads far less
   like a template than two bordered cards side by side. */
.inc-card{ padding:0; border:0; background:none; border-radius:0; }
.inc-card h3{
  display:flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  color:var(--c-ink-soft);
  margin:0 0 15px; padding:0; border:0;
}
.inc-card h3 svg{ width:15px; height:15px; stroke-width:2.8; flex:none; }
.inc-card--yes h3 svg{ color:var(--c-moss); }
.inc-card--no h3 svg{ color:var(--c-accent); }
.inc-card ul{ list-style:none; margin:0; padding:0; display:grid; gap:9px; }
.inc-card li{
  position:relative; padding-left:21px;
  font-size:15.5px; line-height:1.55; color:var(--c-ink);
}
.inc-card li::before{
  position:absolute; left:0; top:0;
  font-size:12.5px; line-height:1.85;
}
.inc-card--yes li::before{ content:"✓"; color:var(--c-moss); }
.inc-card--no li::before{ content:"✕"; color:rgba(208,56,61,.6); }

/* special conditions — plain prose, no panel */
.note-card{
  padding:0; border:0; border-radius:0; background:none;
  max-width:64ch;
  font-size:15.5px; line-height:1.7; color:var(--c-ink-soft);
}
.note-card p{ margin:0 0 13px; }
.note-card p:last-child{ margin-bottom:0; }


/* =========================================================
   BOOKING COLUMN — right side, sticky
   ========================================================= */
.tour-side{ position:sticky; top:calc(var(--header-h) + 18px); }
.booking{
  background:var(--c-surface);
  border:1px solid var(--c-line-2);
  border-radius:var(--r-lg);
  padding:clamp(22px,2.2vw,30px);
  box-shadow:var(--sh-2);
}
.booking__top{ margin-bottom:20px; }
.booking__top h3{ font-size:26px; text-transform:uppercase; margin:0 0 16px; }
.booking .cur-switch{ padding-bottom:18px; margin-bottom:0; }
.booking .cur-switch__label{ font-size:11px; }
.booking .cur-btn{ min-width:42px; height:38px; font-size:16px; border-radius:11px; }

/* options */
.opt-list{ border:0; margin:0 0 18px; padding:0; }
.opt-list legend{
  font-size:11.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--c-ink-soft); padding:0; margin-bottom:12px;
}
.opt{
  display:flex; align-items:center; gap:14px;
  padding:15px 16px; margin-bottom:10px;
  border:1.5px solid var(--c-line); border-radius:var(--r-md);
  background:var(--c-bg);
  cursor:pointer;
  transition:border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.opt:last-of-type{ margin-bottom:0; }
.opt:hover{ border-color:rgba(208,56,61,.5); }
.opt input{
  appearance:none; width:20px; height:20px; flex:none; margin:0;
  border:2px solid var(--c-line); border-radius:50%;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.opt input:checked{ border-color:var(--c-accent); box-shadow:inset 0 0 0 4px var(--c-accent); }
.opt input:focus-visible{ outline:2px solid var(--c-accent); outline-offset:2px; }
.opt.is-active{
  border-color:var(--c-accent);
  background:rgba(208,56,61,.06);
  box-shadow:0 6px 16px rgba(208,56,61,.10);
}
.opt__body{ flex:1; min-width:0; }
.opt__label{ display:block; font-size:14.5px; font-weight:600; line-height:1.35; }
.opt__note{ display:block; font-size:12.5px; color:var(--c-ink-soft); margin-top:3px; line-height:1.4; }
.opt__price{
  flex:none; font-family:var(--ff-head); font-size:22px; line-height:1;
  color:var(--c-accent); white-space:nowrap;
}

/* quantity */
.qty-row{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:14px 0; border-top:1px solid var(--c-line-2);
}
.qty-row__label{
  font-size:11.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--c-ink-soft);
}
.qty{
  display:flex; align-items:center; gap:2px;
  border:1.5px solid var(--c-line); border-radius:999px; padding:3px;
  background:var(--c-bg);
}
.qty__btn{
  width:34px; height:34px; border-radius:50%;
  display:grid; place-items:center;
  font-size:19px; line-height:1; color:var(--c-ink);
  transition:background .2s var(--ease), color .2s var(--ease);
}
.qty__btn:hover{ background:var(--c-accent); color:#fff; }
.qty input{
  width:46px; border:0; background:none; text-align:center;
  font-size:16px; font-weight:700; padding:0;
  -moz-appearance:textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.qty input:focus{ outline:none; }

/* total */
.total-row{
  display:flex; align-items:baseline; justify-content:space-between; gap:16px;
  padding:18px 0 20px; margin-bottom:6px;
  border-top:1px solid var(--c-line-2);
  border-bottom:1px solid var(--c-line-2);
}
.total-row span{
  font-size:12px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--c-ink-soft);
}
.total-row b{
  font-family:var(--ff-head); font-size:38px; line-height:1; color:var(--c-accent);
  transition:opacity .16s var(--ease);
}
.total-row b.is-swapping{ opacity:.25; }

/* date field that opens the calendar */
.datepick{ position:relative; }
.datepick__trigger{
  width:100%; display:flex; align-items:center; gap:11px;
  padding:14px 16px;
  background:var(--c-bg);
  border:1.5px solid var(--c-line);
  border-radius:var(--r-sm);
  font-size:15.5px; text-align:left; color:var(--c-ink-soft);
  transition:border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.datepick__trigger svg{ width:18px; height:18px; flex:none; color:var(--c-accent); }
.datepick__trigger span{ flex:1; min-width:0; }
.datepick__caret{
  width:16px !important; height:16px !important;
  color:var(--c-ink-soft) !important;
  transform:rotate(90deg);
  transition:transform .28s var(--ease);
}
.datepick.has-value .datepick__trigger{ color:var(--c-ink); font-weight:600; }
.datepick__trigger:hover{ border-color:var(--c-accent); }
.datepick.is-open .datepick__trigger{
  border-color:var(--c-accent); background:#fff;
  box-shadow:0 0 0 4px rgba(208,56,61,.12);
}
.datepick.is-open .datepick__caret{ transform:rotate(-90deg); }

.datepick__pop{
  position:absolute; z-index:40; left:0; right:0; top:calc(100% + 8px);
  padding:18px;
  background:var(--c-surface);
  border:1px solid var(--c-line-2);
  border-radius:var(--r-md);
  box-shadow:var(--sh-2);
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.datepick.is-open .datepick__pop{ opacity:1; visibility:visible; transform:translateY(0); }

/* availability calendar */
.gq-cal{ user-select:none; }
.gq-cal__head{ display:flex; justify-content:flex-end; gap:6px; margin-bottom:6px; }
.gq-cal__nav{
  width:30px; height:30px; border-radius:9px;
  border:1.5px solid var(--c-line); background:var(--c-bg);
  font-size:17px; line-height:1; color:var(--c-ink);
  transition:background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.gq-cal__nav:hover{ background:var(--c-accent); border-color:var(--c-accent); color:#fff; }
.gq-cal__months{ display:grid; gap:18px; }
.gq-cal__caption{
  font-family:var(--ff-head); font-size:17px; text-transform:uppercase;
  text-align:center; margin-bottom:8px;
}
.gq-cal__grid{
  display:grid; grid-template-columns:repeat(7,1fr); gap:3px;
}
.gq-cal__wd{
  text-align:center; font-size:10px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:var(--c-ink-soft); padding-bottom:4px;
}
.gq-cal__pad{ aspect-ratio:1; }
.gq-cal__day{
  aspect-ratio:1; display:grid; place-items:center;
  border-radius:9px; border:1px solid transparent;
  background:var(--c-bg);
  font-size:13.5px; font-weight:600; color:var(--c-ink);
  transition:background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.gq-cal__day:hover:not(:disabled){ border-color:var(--c-accent); color:var(--c-accent); }
.gq-cal__day:disabled{ cursor:not-allowed; }
.gq-cal__day.is-off{
  background:transparent; color:rgba(35,41,43,.28); text-decoration:line-through;
}
.gq-cal__day.is-blocked{
  background:rgba(208,56,61,.10); color:rgba(208,56,61,.65);
  text-decoration:line-through;
}
.gq-cal__day.is-picked{
  background:var(--c-accent); border-color:var(--c-accent); color:#fff;
  box-shadow:0 6px 14px rgba(208,56,61,.28);
}
.gq-cal__legend{
  display:flex; align-items:center; gap:8px;
  margin:10px 0 0; font-size:12px; color:var(--c-ink-soft);
}
.gq-cal__key{ width:14px; height:14px; border-radius:5px; display:inline-block; }
.gq-cal__key--off{ background:rgba(208,56,61,.16); }

/* form: default field styling, one field per row */
.booking__form{ margin-top:18px; }
.booking__form .field{ margin-bottom:16px; }
.booking__form textarea{ min-height:84px; }
.booking__call{
  display:flex; align-items:center; justify-content:center; gap:10px;
  margin-top:18px; padding-top:18px;
  border-top:1px solid var(--c-line-2);
  font-size:16px; font-weight:700;
}
.booking__call svg{ width:17px; height:17px; color:var(--c-accent); }
.booking__call:hover{ color:var(--c-accent); }
.tour-top{
  display:grid; grid-template-columns:1.08fr 1fr;
  gap:clamp(30px,4vw,60px); align-items:start;
}

/* main photo */
.tour-photo{
  position:relative; border-radius:var(--r-lg); overflow:hidden;
  aspect-ratio:4/3; background:var(--c-bg-2);
  box-shadow:var(--sh-2);
}
.tour-photo img{ width:100%; height:100%; object-fit:cover; }
.tour-photo__badge{
  position:absolute; z-index:2; left:18px; top:18px;
  display:inline-flex; align-items:center;
  padding:9px 17px; border-radius:999px;
  background:rgba(20,26,25,.66); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.22);
  color:#fff; font-size:11.5px; font-weight:700; letter-spacing:.13em; text-transform:uppercase;
  transition:background .25s var(--ease);
}
.tour-photo__badge:hover{ background:var(--c-accent); border-color:var(--c-accent); }

/* currency switcher */
.cur-switch{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
  padding-bottom:22px; margin-bottom:6px;
  border-bottom:1px solid var(--c-line-2);
}
.cur-switch__label{
  font-size:11.5px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--c-ink-soft);
}
.cur-switch__btns{ display:flex; gap:8px; flex-wrap:wrap; }
.cur-btn{
  min-width:46px; height:42px; padding:0 13px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:12px;
  border:1.5px solid var(--c-line);
  background:var(--c-surface);
  font-size:17px; font-weight:600; line-height:1;
  color:var(--c-ink-soft);
  transition:all .22s var(--ease);
}
.cur-btn:hover{ border-color:var(--c-ink); color:var(--c-ink); }
.cur-btn.is-active{
  background:var(--c-accent); border-color:var(--c-accent); color:#fff;
  box-shadow:0 8px 20px rgba(208,56,61,.26);
}

/* price rows */
.price-rows{ list-style:none; margin:0 0 26px; padding:0; }
.price-rows li{
  display:flex; align-items:baseline; justify-content:space-between; gap:20px;
  padding:20px 0;
  border-bottom:1px solid var(--c-line-2);
}
.price-rows li:last-child{ border-bottom:0; }
.price-rows__label{
  font-size:16.5px; font-weight:600; line-height:1.35;
}
.price-rows__label em{
  display:block; font-style:normal; font-weight:500;
  font-size:13px; color:var(--c-ink-soft); margin-top:4px;
}
.price-rows__value{
  flex:none;
  font-family:var(--ff-head); font-size:31px; line-height:1;
  color:var(--c-accent); white-space:nowrap;
  transition:opacity .18s var(--ease);
}
.price-rows__value.is-swapping{ opacity:.25; }

/* duration badge */
.tour-duration{
  display:flex; align-items:center; gap:12px; flex-wrap:wrap;
  padding:18px 22px; border-radius:var(--r-md);
  background:var(--c-surface); border:1px solid var(--c-line-2);
  margin-bottom:26px;
}
.tour-duration svg{ width:20px; height:20px; color:var(--c-accent); flex:none; }
.tour-duration span{
  font-size:11.5px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--c-ink-soft);
}
.tour-duration b{ font-size:17px; margin-left:auto; }

.tour-buy__actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* specification strip */
.spec-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
.spec-strip__item{
  text-align:center; padding:26px 20px;
  background:var(--c-surface); border:1px solid var(--c-line-2);
  border-radius:var(--r-lg);
  transition:transform .35s var(--ease), border-color .35s var(--ease);
}
.spec-strip__item:hover{ transform:translateY(-5px); border-color:rgba(208,56,61,.35); }
.spec-strip__icon{
  width:54px; height:54px; margin:0 auto 16px;
  display:grid; place-items:center; border-radius:16px;
  background:rgba(208,56,61,.12); color:var(--c-accent);
}
.spec-strip__icon svg{ width:26px; height:26px; }
.spec-strip__item h4{
  font-family:var(--ff-body); font-size:11.5px; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; color:var(--c-ink-soft);
  margin:0 0 8px;
}
.spec-strip__item p{ font-size:16px; font-weight:600; margin:0; line-height:1.45; }


.tour-layout{ display:grid; grid-template-columns:1fr 380px; gap:clamp(32px,4vw,60px); align-items:start; }
.entry-content{ font-size:17px; line-height:1.8; }
.entry-content h2{ font-size:clamp(26px,2.6vw,36px); text-transform:uppercase; margin:1.6em 0 .55em; }
.entry-content h3{ font-size:clamp(21px,2vw,27px); margin:1.5em 0 .5em; }
.entry-content ul,.entry-content ol{ padding-left:22px; margin:0 0 1.2em; }
.entry-content li{ margin-bottom:.5em; }
.entry-content ul{ list-style:none; padding-left:0; }
.entry-content ul li{ position:relative; padding-left:28px; }
.entry-content ul li::before{
  content:""; position:absolute; left:2px; top:.62em;
  width:9px; height:9px; border-radius:50%;
  background:var(--c-accent); box-shadow:0 0 0 4px rgba(208,56,61,.16);
}
.entry-content ol{ list-style:decimal; }
.entry-content img{ border-radius:var(--r-md); margin:1.4em 0; }
.entry-content blockquote{
  margin:1.6em 0; padding:22px 28px;
  border-left:4px solid var(--c-accent);
  background:var(--c-surface); border-radius:0 var(--r-md) var(--r-md) 0;
  font-size:19px; font-style:italic; color:var(--c-ink);
}
.entry-content a{ color:var(--c-accent); text-decoration:underline; text-underline-offset:3px; }
.entry-content a:hover{ color:var(--c-accent-d); }
.entry-content table{ width:100%; border-collapse:collapse; margin:1.4em 0; }
.entry-content th,.entry-content td{ padding:12px 14px; border:1px solid var(--c-line); text-align:left; }
.entry-content th{ background:var(--c-surface); }

.booking-card{
  position:sticky; top:calc(var(--header-h) + 20px);
  background:var(--c-surface);
  border:1px solid var(--c-line-2);
  border-radius:var(--r-lg);
  padding:30px;
  box-shadow:var(--sh-1);
}
.booking-card__price{
  display:flex; align-items:baseline; gap:8px; margin-bottom:4px;
}
.booking-card__price b{ font-family:var(--ff-head); font-size:46px; line-height:1; color:var(--c-accent); }
.booking-card__price span{ font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:var(--c-ink-soft); }
.booking-card hr{ border:0; border-top:1px solid var(--c-line-2); margin:22px 0; }
.spec-list{ list-style:none; margin:0 0 24px; padding:0; }
.spec-list li{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:12px 0; border-bottom:1px dashed var(--c-line-2);
  font-size:14.5px;
}
.spec-list li:last-child{ border-bottom:0; }
.spec-list b{ font-weight:600; }
.spec-list span{ color:var(--c-ink-soft); display:flex; align-items:center; gap:8px; }
.spec-list svg{ width:16px; height:16px; color:var(--c-moss); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-layout{ display:grid; grid-template-columns:1fr 1.15fr; gap:clamp(32px,4.5vw,64px); align-items:start; }
.info-list{ list-style:none; margin:0 0 34px; padding:0; display:grid; gap:16px; }
.info-item{
  display:flex; gap:18px; align-items:flex-start;
  padding:22px; border-radius:var(--r-md);
  background:var(--c-surface); border:1px solid var(--c-line-2);
  transition:border-color .3s var(--ease), transform .3s var(--ease);
}
.info-item:hover{ border-color:rgba(208,56,61,.4); transform:translateX(4px); }
.info-item__icon{
  width:48px; height:48px; flex:none; border-radius:14px; display:grid; place-items:center;
  background:rgba(208,56,61,.12); color:var(--c-accent);
}
.info-item__icon svg{ width:22px; height:22px; }
.info-item h4{
  font-family:var(--ff-body); font-size:11.5px; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; color:var(--c-ink-soft);
  margin:0 0 6px;
}
.info-item p,.info-item a{ font-size:17px; font-weight:600; margin:0; }
.info-item a:hover{ color:var(--c-accent); }

.socials{ display:flex; gap:12px; flex-wrap:wrap; }
.social{
  width:48px; height:48px; border-radius:14px; display:grid; place-items:center;
  border:1px solid var(--c-line); color:var(--c-ink);
  transition:all .28s var(--ease);
  background:var(--c-surface);
}
.social:hover{ background:var(--c-accent); border-color:var(--c-accent); color:#fff; transform:translateY(-3px); }
.social svg{ width:20px; height:20px; }

.form-card{
  background:var(--c-surface); border:1px solid var(--c-line-2);
  border-radius:var(--r-lg); padding:clamp(26px,3vw,42px);
  box-shadow:var(--sh-1);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{
  display:block; font-size:11.5px; font-weight:700; letter-spacing:.16em;
  text-transform:uppercase; color:var(--c-ink-soft); margin-bottom:9px;
}
.field label .req{ color:var(--c-accent); }
.field input,.field textarea,.field select{
  width:100%; padding:14px 16px;
  background:var(--c-bg);
  border:1.5px solid var(--c-line);
  border-radius:var(--r-sm);
  font-size:15.5px;
  transition:border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea{ min-height:140px; resize:vertical; }
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none; border-color:var(--c-accent); background:#fff;
  box-shadow:0 0 0 4px rgba(208,56,61,.12);
}
.field select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6664' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; background-size:18px; padding-right:44px; }
.hp-field{ position:absolute; left:-9999px; opacity:0; }
.form-note{ font-size:13px; color:var(--c-ink-soft); margin-top:14px; }

.notice{
  padding:16px 20px; border-radius:var(--r-sm); margin-bottom:24px;
  font-size:15px; border:1px solid;
}
.notice--ok{ background:rgba(111,139,124,.14); border-color:rgba(111,139,124,.45); color:#3C5245; }
.notice--err{ background:rgba(208,56,61,.10); border-color:rgba(208,56,61,.4); color:#8C2226; }

.map-embed{
  border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--c-line-2);
  box-shadow:var(--sh-1); line-height:0; background:var(--c-bg-2);
}
.map-embed iframe{ width:100%; height:clamp(340px,46vh,520px); border:0; display:block; filter:saturate(.9) contrast(1.02); }

/* CTA band */
.cta-band{
  position:relative; overflow:hidden;
  background:linear-gradient(140deg,#33403C,#1D2624);
  color:#fff;
  border-radius:var(--r-xl);
  padding:clamp(40px,5vw,72px);
  display:flex; align-items:center; justify-content:space-between; gap:36px; flex-wrap:wrap;
}
.cta-band::before{
  content:""; position:absolute; right:-80px; top:-80px; width:340px; height:340px;
  background:radial-gradient(circle,rgba(208,56,61,.32),transparent 68%);
}
.cta-band__text{ position:relative; z-index:2; max-width:640px; }
.cta-band h2{ font-size:clamp(30px,3.6vw,50px); text-transform:uppercase; margin-bottom:12px; color:#fff; }
.cta-band p{ color:rgba(255,255,255,.74); margin:0; }
.cta-band__actions{ position:relative; z-index:2; display:flex; gap:14px; flex-wrap:wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--c-deep-2); color:rgba(233,228,218,.7); padding-top:clamp(56px,6vw,86px); }
.footer-top{
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:clamp(28px,3.4vw,56px);
  padding-bottom:clamp(40px,4vw,60px);
}
.footer-brand .site-logo{ margin-bottom:20px; }
.footer-brand p{ font-size:15px; line-height:1.7; max-width:330px; margin-bottom:24px; }
.footer-col h4{
  font-family:var(--ff-body); font-size:11.5px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase; color:#fff; margin:0 0 20px;
}
.footer-col ul{ list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.footer-col a{ font-size:15px; transition:color .25s var(--ease), padding-left .25s var(--ease); }
.footer-col a:hover{ color:var(--c-accent-l); padding-left:5px; }
.footer-contact{ display:grid; gap:16px; }
.footer-contact div{ display:flex; gap:12px; align-items:flex-start; font-size:15px; }
.footer-contact svg{ width:17px; height:17px; color:var(--c-accent); flex:none; margin-top:3px; }
.footer-contact a:hover{ color:var(--c-accent-l); }
.footer-socials{ display:flex; gap:10px; }
.footer-socials a{
  width:42px; height:42px; border-radius:12px; display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.14); color:rgba(255,255,255,.8);
  transition:all .28s var(--ease);
}
.footer-socials a:hover{ background:var(--c-accent); border-color:var(--c-accent); color:#fff; transform:translateY(-3px); }
.footer-socials svg{ width:18px; height:18px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.09);
  padding:24px 0 30px;
  display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;
  font-size:13.5px; color:rgba(233,228,218,.5);
}
.footer-bottom a:hover{ color:var(--c-accent-l); }

/* =========================================================
   MISC
   ========================================================= */
.pagination{ display:flex; justify-content:center; gap:8px; margin-top:52px; flex-wrap:wrap; }
.pagination .page-numbers{
  min-width:46px; height:46px; padding:0 14px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:12px; border:1.5px solid var(--c-line);
  font-size:15px; font-weight:600; background:var(--c-surface);
  transition:all .25s var(--ease);
}
.pagination .page-numbers:hover{ border-color:var(--c-ink); }
.pagination .page-numbers.current{ background:var(--c-accent); border-color:var(--c-accent); color:#fff; }

.empty-state{
  text-align:center; padding:70px 30px;
  background:var(--c-surface); border:1px dashed var(--c-line);
  border-radius:var(--r-lg);
}
.empty-state svg{ width:54px; height:54px; color:var(--c-moss); margin:0 auto 18px; }
.empty-state p{ color:var(--c-ink-soft); max-width:460px; margin-inline:auto; }

.screen-reader-text{
  position:absolute!important; width:1px; height:1px; overflow:hidden;
  clip:rect(1px,1px,1px,1px); white-space:nowrap;
}
.skip-link{
  position:absolute; top:-100px; left:16px; z-index:500;
  background:var(--c-accent); color:#fff; padding:12px 20px; border-radius:0 0 10px 10px;
}
.skip-link:focus{ top:0; }

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

/* wp core */
.alignwide{ margin-inline:calc(50% - 50vw); max-width:100vw; }
.aligncenter{ margin-inline:auto; }
.alignleft{ float:left; margin:0 26px 18px 0; }
.alignright{ float:right; margin:0 0 18px 26px; }
.wp-caption-text,figcaption{ font-size:13.5px; color:var(--c-ink-soft); text-align:center; margin-top:9px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1320px){
  .site-nav a{ padding:9px 9px; font-size:11.8px; letter-spacing:.04em; }
}
@media (max-width:1180px){
  .site-nav a{ padding:8px 7px; font-size:11.2px; letter-spacing:.02em; }
  .features,.features--3{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .cat-tiles{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:1024px){
  .site-nav,.header-cta{ display:none; }
  .burger{ display:block; margin-left:auto; }
  .tours-grid,.gal-grid{ grid-template-columns:repeat(2,1fr); }
  .tour-top{ grid-template-columns:1fr; }
  .tour-grid{ grid-template-columns:1fr; }
  .tour-side{ position:static; }
  .booking{ max-width:600px; }
  .spec-strip{ grid-template-columns:repeat(2,1fr); }
  .photo-grid--5{ grid-template-columns:repeat(4,1fr); }
  .tour-layout{ grid-template-columns:1fr; }
  .booking-card{ position:static; }
  .contact-layout{ grid-template-columns:1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .about-visual{ order:-1; max-width:520px; }
  .about-visual__badge{ left:auto; right:-12px; }
  .footer-top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:760px){
  body{ font-size:16px; }
  :root{
    --header-h:70px;
    --section-pad:54px;
    --tour-hero-h:clamp(320px,48vh,400px);
  }
  .wrap{ padding-inline:18px; }

  /* home hero: a screenful is too much on a phone */
  .hero{ min-height:76svh; }
  .hero__inner{ padding-top:calc(var(--header-h) + 8px); }
  .hero__eyebrow{ font-size:11px; letter-spacing:.2em; margin-bottom:18px; }
  .hero__title{ font-size:clamp(36px,10.5vw,54px); margin-bottom:16px; }
  .hero__text{ font-size:15.5px; margin-bottom:26px; }
  .hero__actions{ gap:10px; flex-direction:column; align-items:center; }
  .hero__actions .btn{ width:100%; max-width:300px; }
  .hero__scroll{ display:none; }

  /* tour hero: breadcrumbs wrap onto three lines here and add nothing */
  .crumbs{ display:none; }
  .tour-hero{ min-height:var(--tour-hero-h); }
  .tour-hero__inner{ padding-bottom:24px; }
  .tour-hero__cat{ padding:6px 13px; font-size:10px; margin-bottom:12px; }
  .tour-hero h1{ font-size:clamp(27px,7.6vw,38px); margin-bottom:10px; }
  .tour-hero__text{
    font-size:14.5px; line-height:1.55;
    display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
  }
  .fact-chips{ gap:7px; margin-top:16px; }

  /* headings and blocks */
  .h-xxl{ font-size:clamp(38px,10vw,58px); }
  .h-xl{ font-size:clamp(30px,8vw,42px); }
  .h-l{ font-size:clamp(26px,7vw,34px); }
  .section-head{ margin-bottom:28px; }
  .block{ margin-bottom:38px; }
  .block__title{ font-size:24px; margin-bottom:18px; }
  .prose{ font-size:16px; line-height:1.72; }

  /* comfortable tap targets */
  .btn{ padding:14px 24px; }
  .chip{ padding:10px 16px; }
  .cur-btn{ min-width:46px; height:44px; }
  .gq-cal__day{ font-size:14px; }
  .datepick__trigger{ padding:13px 14px; }

  .tours-grid,.gal-grid,.tours-grid--2{ grid-template-columns:1fr; }
  .photo-grid,.photo-grid--5{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .price-rows li{ flex-wrap:wrap; gap:6px; }
  .price-rows__value{ font-size:27px; }
  .spec-strip{ grid-template-columns:1fr; gap:14px; }
  .tour-hero h1{ max-width:none; }
  .fact-chip{ padding:8px 13px; font-size:12.5px; }
  .fact-chip svg{ width:14px; height:14px; }
  .fact-chip--price{ font-size:10.5px; }
  .fact-chip--price b{ font-size:19px; }
  .page-hero{ min-height:clamp(240px,36vh,320px); }
  .page-hero h1{ font-size:clamp(28px,8vw,42px); }
  .page-hero p{ font-size:15px; }
  .opt{ flex-wrap:wrap; }
  .opt__price{ font-size:20px; }
  .total-row b{ font-size:32px; }
  .day__head{ padding:15px 16px; gap:12px; }
  .day__title{ font-size:17px; }
  .day__meta{ display:flex; margin:8px 0 0; width:fit-content; }
  .day__body{ padding:0 18px 20px; }
  .spec-row{ padding:16px 18px; }
  .spec-strip__item{ display:flex; align-items:center; gap:18px; text-align:left; padding:20px; }
  .spec-strip__icon{ margin:0; flex:none; }
  .tour-buy__actions .btn{ flex:1 1 100%; }
  .site-logo__img{ height:48px; }
  .is-stuck .site-logo__img{ height:44px; }
  .cat-tiles{ grid-template-columns:1fr; }
  .features,.features--3{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .why-item{ padding:18px 20px; gap:14px; }
  .why-item h3{ font-size:18px; }
  .form-row{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; }
  .cta-band{ border-radius:var(--r-lg); text-align:left; }
  .about-visual__img{ aspect-ratio:4/3; }
  .gq-lightbox__nav--prev{ left:12px; }
  .gq-lightbox__nav--next{ right:12px; }
  .stats{ grid-template-columns:repeat(3,1fr); gap:10px; }
  .stat{ padding:16px 14px; text-align:center; }
  .stat b{ font-size:26px; }
  .stat span{ font-size:10.5px; letter-spacing:.06em; }
  .booking{ padding:20px 18px; }
  .timeline{ padding-left:0; }
  .highlights li{ padding:13px 15px; font-size:15px; }
  .inc-grid{ gap:28px; }
  .map-embed iframe{ height:300px; }
  .info-item{ padding:18px; gap:14px; }
  .cta-band{ padding:32px 24px; }
  .cta-band__actions{ width:100%; }
  .cta-band__actions .btn{ flex:1 1 100%; }
  .footer-bottom{ justify-content:center; text-align:center; }
}

/* smallest phones */
@media (max-width:400px){
  .wrap{ padding-inline:15px; }
  .hero{ min-height:70svh; }
  .hero__title{ font-size:34px; }
  .photo-grid,.photo-grid--5{ gap:8px; }
  .gq-cal__day{ font-size:12.5px; }
  .datepick__pop{ padding:14px; }
  .site-logo__img{ height:42px; }
  .stats{ grid-template-columns:1fr; }
  .stat{ display:flex; align-items:baseline; gap:12px; text-align:left; }
  .stat b{ font-size:24px; }
}

/* landscape phones: the hero must not eat the whole screen */
@media (max-height:520px) and (orientation:landscape){
  .hero{ min-height:auto; padding-block:calc(var(--header-h) + 24px) 40px; }
  .tour-hero{ min-height:auto; padding-bottom:24px; }
}

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