/* ==========================================================================
   Private Walking Tours by Ivana — elegant boutique / editorial theme
   Warm limestone palette · Cormorant Garamond display · Inter body
   ========================================================================== */

:root {
  --bg:        #faf7f1;   /* warm limestone paper            */
  --bg-alt:    #f2ece1;   /* slightly deeper section band    */
  --surface:   #ffffff;
  --brand:     #0f5c5b;   /* Deep Teal — primary brand hue   */
  --brand-dark:#0b4746;   /* deeper teal for dark surfaces   */
  --ink:       #0f5c5b;   /* primary teal: headings, accents */
  --ink-soft:  #26403f;   /* dark teal-charcoal body text    */
  --ink-deep:  #0b4746;   /* deepest teal, footer/panels     */
  --muted:     #6c7a76;   /* cool taupe-teal captions, meta  */
  --line:      #e4daca;   /* warm hairline borders           */
  --line-soft: #efe7d8;
  --gold:      #b58a4a;   /* Warm Gold — accents             */
  --gold-dark: #8a6631;   /* darker gold for links & text    */
  --gold-soft: #f1e6d2;
  --sea:       #0f5c5b;   /* brand teal for positive marks   */

  --serif: 'Playfair Display', 'Times New Roman', serif;
  --logo:  'Marcellus', var(--serif);
  --sans:  'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --wrap: 1180px;
  --radius: 3px;
  --shadow: 0 18px 50px -24px rgba(42, 36, 32, 0.35);
  --shadow-sm: 0 8px 24px -16px rgba(42, 36, 32, 0.4);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* height:auto is the fix for a subtle bug: when an <img> has HTML width/height
   attributes (for layout stability) but CSS only overrides width, browsers
   keep the HTML height attribute as a fixed pixel value, stretching the box.
   Rules below that need a different height (aspect-ratio boxes, cover fills)
   explicitly set their own height and win via specificity. */
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-family: var(--sans); font-weight: 700; letter-spacing: -0.015em; }
/* A hard line break that only applies on phones; hidden on wider screens,
   where the space left before it keeps the heading on one line. */
.mobile-break { display: none; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
p  { margin: 0 0 1.1em; }
a  { color: var(--gold-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1.1rem;
  display: block;
}
.eyebrow-light { color: #e7cfa6; }

.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.narrow { width: min(760px, 92%); margin-inline: auto; }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section.pt-tight { padding-top: clamp(2rem, 4vw, 3rem); }
.section.pb-tight { padding-bottom: clamp(2rem, 4vw, 3rem); }
.section-alt { background: var(--bg-alt); }
/* About hero: keep the whole intro block one consistent size */
.about-body .lead { font-size: inherit; }
.section-ink { background: var(--ink); color: #d9cfc2; }
.section-ink h2, .section-ink h3 { color: #fff; }

.lead { font-size: 1.22rem; line-height: 1.65; color: var(--ink-soft); }
.lead-tight { line-height: 1.4; }

/* Justified body text — evenly distributed between the margins, site-wide.
   No hyphenation: whole words stay on one line (never split across rows). */
p, .lead, .hero-sub, .cta-text, .tour-tagline, .footer-tagline {
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  -webkit-hyphens: none;
}

/* Re-center the display sections (intros, CTA, reviews header, pull quote).
   These live in text-align:center containers; the site-wide p{justify}
   rule above would otherwise left-/justify-align their eyebrows and leads. */
.center p, .section-head p, .cta-band p, .reviews-section p, .quote-band p,
.footer-bottom p,
.center .lead, .section-head .lead, .reviews-section .lead, .cta-text {
  text-align: center;
}
.split-cta { text-align: center; margin-top: 1.4rem; }
.center { text-align: center; }
.section-head { max-width: 680px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }

/* divider ornament */
.ornament { display: flex; align-items: center; justify-content: center; gap: 0.9rem; color: var(--gold); margin: 0 0 1.4rem; }
.ornament::before, .ornament::after { content: ""; width: 44px; height: 1px; background: currentColor; opacity: 0.5; }
.ornament span { font-size: 0.8rem; letter-spacing: 0.2em; }
/* Mirrors the ornament above a quote; the blockquote's own 1.2rem bottom margin
   plus this 0.2rem matches the 1.4rem gap above, so the pair reads symmetrical. */
.ornament-below { margin: 0.2rem 0 0; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.95rem 1.8rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: all .25s var(--ease); white-space: nowrap;
}
.btn-sm { padding: 0.7rem 1.25rem; font-size: 0.78rem; }
.btn-solid { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-solid:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------- header */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color:#fff; padding:.6rem 1rem; z-index: 200; }
.skip-link:focus { left: 8px; top: 8px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px -18px rgba(42,36,32,.6); }
.header-inner {
  width: min(var(--wrap), 94%); margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { height: 56px; width: auto; flex: none; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--logo); font-size: 1.32rem; color: var(--ink); letter-spacing: .5px; }
.brand-sub { font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-top: 2px; }

.site-nav { display: flex; gap: 2rem; margin-left: auto; }
.nav-link {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.13em; color: var(--ink-soft);
  padding: 0.4rem 0; position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.site-nav + .header-actions { margin-left: 0; }

.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; padding: 8px; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; height: 1.6px; background: var(--ink); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 0.2rem; padding: 1rem 6% 1.8rem; border-top: 1px solid var(--line-soft); background: var(--bg); }
.mobile-nav .nav-link { padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); letter-spacing: 0.13em; }
.mobile-nav .btn { margin-top: 1rem; }

/* --------------------------------------------------------------- language switcher (desktop dropdown) */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 0.4rem; background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.13em; color: var(--ink-soft); padding: 0.4rem 0;
}
.nav-dropdown-toggle:hover { color: var(--ink); }
.nav-dropdown-toggle svg { color: var(--gold); flex: none; }
.nav-dropdown-toggle .caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s var(--ease); }
.nav-dropdown.open .nav-dropdown-toggle .caret { transform: rotate(-135deg) translateY(1px); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); right: 0; min-width: 190px;
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 0.4rem; display: flex; flex-direction: column; gap: 0.15rem;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 120;
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-lang-item {
  display: flex; align-items: baseline; gap: 0.6rem; padding: 0.6rem 0.7rem; border-radius: 4px;
  font-family: var(--sans); font-size: 0.88rem; color: var(--ink-soft);
}
a.nav-lang-item:hover { background: var(--bg-alt); color: var(--ink); }
.nav-lang-item.active { color: var(--ink); font-weight: 600; }
.nav-lang-item.active .nav-lang-code { color: var(--gold-dark); }
.nav-lang-code { font-weight: 600; letter-spacing: 0.04em; min-width: 24px; }
.nav-lang-name { color: inherit; }
.nav-lang-item.soon { color: var(--muted); cursor: default; }
.nav-lang-item.soon .nav-lang-name { flex: 1; }
.nav-lang-soon { margin-left: auto; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; background: var(--gold-soft); color: var(--gold-dark); padding: 0.15rem 0.45rem; border-radius: 10px; white-space: nowrap; }

/* --------------------------------------------------------------- language switcher (mobile flat list) */
.mobile-lang-list { padding: 0.9rem 0 0.3rem; border-bottom: 1px solid var(--line-soft); }
.mobile-lang-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.5rem; }
.mobile-lang-label svg { color: var(--gold); }
.mobile-lang-list .nav-lang-item { padding: 0.6rem 0.2rem; }

/* --------------------------------------------------------------- hero */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
/* 28% x keeps Ivana (left of frame) in view when narrow viewports crop the sides;
   25% y protects the faces at the top of the frame when wide viewports crop vertically. */
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 28% 25%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,33,32,.32) 0%, rgba(7,33,32,.12) 40%, rgba(7,33,32,.82) 100%);
}
.hero-inner { width: min(var(--wrap), 92%); margin-inline: auto; padding: 0 0 clamp(3rem, 8vw, 6rem); max-width: 900px; }
.hero .eyebrow { color: #efd7ad; font-size: 0.98rem; letter-spacing: 0.3em; margin-bottom: 2.4rem; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero-trust {
  display: inline-flex; align-items: center; gap: 0.7rem; margin: 1.2rem 0 1.7rem;
  font-family: var(--sans); font-size: 1rem; color: #f3ece2; text-decoration: none;
  padding: 0.55rem 1.2rem 0.55rem 0.95rem; border: 1px solid rgba(255,255,255,.4); border-radius: 30px;
  background: rgba(17,24,18,.4); backdrop-filter: blur(3px); box-shadow: 0 6px 20px rgba(0,0,0,.2);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.hero-trust:hover { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(17,24,18,.55); }
.hero-trust-stars { color: var(--gold); letter-spacing: 0.1em; font-size: 1.05rem; }
.hero-sub { font-size: clamp(1.1rem, 2vw, 1.35rem); color: #f3ece2; max-width: 620px; margin-bottom: 2rem; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
/* .btn is nowrap by default; the hero CTA carries a longer label, so let it wrap
   rather than be clipped by the hero's overflow:hidden on narrow screens. */
.hero-actions .btn { white-space: normal; text-align: center; max-width: 100%; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; margin-top: 2.6rem; font-size: 0.82rem; letter-spacing: 0.04em; color: #eee5d8; }
.hero-badges span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-badges svg { color: var(--gold); flex: none; }

/* --------------------------------------------------------------- intro / prose */
.prose p { margin-bottom: 1.2em; }
.prose .drop::first-letter { font-family: var(--serif); font-size: 3.4em; line-height: 0.8; float: left; padding: 0.05em 0.12em 0 0; color: var(--gold); font-weight: 600; }

/* Signature line: same font & formatting as the eyebrow labels above headings */
.signature { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.85rem; font-weight: 600; color: var(--gold); font-style: normal; }

/* --------------------------------------------------------------- feature trio */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.trio-item { text-align: center; }
.trio-ico { width: 54px; height: 54px; margin: 0 auto 1.2rem; color: var(--gold); }
.trio-ico svg { width: 100%; height: 100%; }
.trio-item h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.trio-item p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* --------------------------------------------------------------- tour cards */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.tour-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* framed photo: a margin of card-background shows around the image, and the
   arrow button (below) straddles the photo's bottom-right corner inside it */
.tour-card-frame { position: relative; padding: 18px 18px 0; }
.tour-card-media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 6px; }
.tour-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tour-card:hover .tour-card-media img { transform: scale(1.05); }

/* duration pill, top-right of the image */
.tour-duration { position: absolute; top: 0.85rem; right: 0.85rem; display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(250,247,241,.95); color: var(--ink); font-family: var(--sans); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.02em; padding: 0.4rem 0.8rem 0.4rem 0.65rem; border-radius: 20px; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.tour-duration svg { width: 13px; height: 13px; color: var(--gold-dark); flex: none; }
.tour-duration.soon { background: var(--gold); color: #fff; }
.tour-duration.soon svg { color: #fff; }

/* circular arrow button, straddling the photo's bottom-right corner -
   half on the photo, half on the card margin, pointing back at the image */
.tour-arrow { position: absolute; right: 10px; bottom: -19px; width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 16px rgba(0,0,0,.3); transition: background .3s var(--ease), transform .3s var(--ease); z-index: 2; }
.tour-arrow svg { width: 16px; height: 16px; }
.tour-card:hover .tour-arrow { background: var(--gold-dark); transform: scale(1.08); }

.tour-card-body { padding: 1.6rem 18px 1.7rem; display: flex; flex-direction: column; flex: 1; }
.tour-card-body h3 { margin-bottom: 0.6rem; font-family: var(--sans); font-weight: 700; letter-spacing: -0.015em; font-size: 1.32rem; }
.tour-card-body h3 a { color: inherit; }
.tour-card-body h3 a:hover { color: var(--gold-dark); }
.tour-card-body p { font-size: 0.97rem; color: var(--ink-soft); margin-bottom: 1.3rem; flex: 1; }

.tour-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.tour-loc { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--muted); }
.tour-loc svg { width: 15px; height: 15px; color: var(--gold-dark); flex: none; }
/* Prices share one treatment: sans with lining, tabular figures so digits line up
   and read cleanly at any size (Playfair's numerals were muddy on the big price). */
.tour-price-tag, .booking-card .price, .tour-option-price {
  font-family: var(--sans);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.tour-price-tag { font-weight: 700; color: var(--ink); font-size: 1.02rem; white-space: nowrap; letter-spacing: -0.01em; }
.tour-price-tag .per { font-weight: 400; color: var(--muted); font-size: 0.78rem; }
.tour-price-tag.soon { font-weight: 600; color: var(--gold-dark); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* --------------------------------------------------------------- tour detail (tours page) */
.tour-detail { border-top: 1px solid var(--line); padding: clamp(3rem,6vw,4.5rem) 0; scroll-margin-top: 90px; }
.tour-detail:first-of-type { border-top: 0; }
.tour-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.tour-layout.reverse .tour-figure { order: 2; }
.tour-figure { position: relative; }
.tour-figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.tour-figure figcaption { font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; font-style: italic; }
.tour-body h3 { margin-bottom: 0.3rem; }
.tour-tagline { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--gold-dark); margin-bottom: 1.2rem; }
.spec-row { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; padding: 1rem 0 1.2rem; margin-bottom: 1.2rem; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); font-size: 0.88rem; }
.spec-row div { display: flex; flex-direction: column; }
.spec-row dt { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.spec-row dd { margin: 0; font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.spec-price dd { color: var(--gold-dark); }

.checklist { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: 0.55rem; }
.checklist li { position: relative; padding-left: 1.7rem; font-size: 0.97rem; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 0.7rem; height: 0.4rem; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

.disclosure { margin: 1.2rem 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.disclosure summary { cursor: pointer; padding: 0.9rem 1.2rem; font-weight: 600; font-size: 0.9rem; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure summary::after { content: "+"; font-size: 1.3rem; color: var(--gold); font-family: var(--serif); }
.disclosure[open] summary::after { content: "–"; }
.disclosure .disclosure-body { padding: 0 1.2rem 1.1rem; }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 2rem; }
.incl-grid h4 { font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.7rem; }
.incl-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; font-size: 0.92rem; }
.incl-list li { padding-left: 1.5rem; position: relative; }
.incl-list.yes li::before { content: "✓"; position: absolute; left: 0; color: var(--sea); font-weight: 700; }
.incl-list.no li::before { content: "✕"; position: absolute; left: 0; color: #b06a5a; }

.tour-cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }

/* --------------------------------------------------------------- photo gallery */
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; margin: 0.4rem 0 2.2rem; }
.photo-gallery img { width: 100%; border-radius: 6px; object-fit: cover; display: block; box-shadow: var(--shadow-sm); }
.photo-gallery img.g-land { aspect-ratio: 3 / 2; }
.photo-gallery img.g-vert { aspect-ratio: 4 / 5; }
.meet-photo { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; max-width: 320px; aspect-ratio: 4 / 5; object-fit: cover; margin: 1rem 0 1.4rem; }

/* Editorial photo layouts for tour detail pages: full-width captioned features
   and side-by-side pairs, interleaved with the copy instead of one big grid. */
.photo-feature { margin: 2.2rem 0; }
.photo-feature img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.photo-feature figcaption { font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; font-style: italic; text-align: center; }
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 2.2rem 0; }
.photo-duo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-sm); display: block; }
.photo-duo.duo-land img { aspect-ratio: 3 / 2; }
.photo-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 2.2rem 0; }
.photo-trio img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-sm); display: block; }
/* A <picture> (used for mobile-only art direction) is the grid item, not the img. */
.photo-trio picture, .photo-duo picture { display: block; min-width: 0; }

/* --------------------------------------------------------------- split feature (about teaser / why) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split-media.stack { position: relative; }
.split-body .eyebrow { margin-bottom: 1rem; }

/* --------------------------------------------------------------- quote band */
.quote-band { text-align: center; }
.quote-band blockquote { font-family: var(--serif); font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-style: italic; line-height: 1.35; color: var(--ink); max-width: 860px; margin: 0 auto 1.2rem; font-weight: 500; }
.quote-band cite { font-family: var(--sans); font-style: normal; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-dark); }

/* --------------------------------------------------------------- about page */
.about-hero { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.about-portrait { position: relative; }
.about-portrait img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.portrait-badge { position: absolute; bottom: -18px; right: -14px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 0.9rem 1.1rem; border-radius: var(--radius); font-size: 0.78rem; line-height: 1.3; max-width: 190px; }
.portrait-badge strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.placeholder-portrait { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--gold-soft), var(--bg-alt)); display: grid; place-items: center; border-radius: var(--radius); border: 1px dashed var(--gold); color: var(--gold-dark); text-align: center; font-size: 0.85rem; padding: 1.5rem; }
.credentials { display: flex; flex-wrap: wrap; gap: 2.4rem; margin: 1.8rem 0; padding: 1.4rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credentials div { flex: 1; min-width: 120px; }
.credentials .num { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-dark); line-height: 1.1; display: block; margin-bottom: 0.4rem; }
.credentials .lbl { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* --------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-methods { display: grid; gap: 1rem; margin: 0 0 1.8rem; }
.contact-method { display: flex; gap: 1rem; align-items: center; padding: 1.1rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: border-color .2s var(--ease), transform .2s var(--ease); }
.contact-method:hover { border-color: var(--gold); transform: translateX(3px); color: var(--ink-soft); }
.contact-method .ico { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark); }
.contact-method .ico svg { width: 20px; height: 20px; }
/* Label above, number/address on its own row beneath it. */
.contact-method .cm-text { display: flex; flex-direction: column; gap: 0.18rem; min-width: 0; }
.contact-method .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.contact-method .val { font-weight: 600; color: var(--ink); font-size: 1.02rem; overflow-wrap: anywhere; }
/* Both column headings share one style so the two columns start level. */
/* Single page-level heading centred above both contact columns. */
.contact-col-title { font-size: 1.6rem; text-align: center; margin-bottom: 2rem; }
.form-card-title { font-size: 1.25rem; margin-bottom: 1.2rem; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.45rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field-checkbox { margin-bottom: 1.4rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer; font-size: 0.86rem; line-height: 1.5; color: var(--ink-soft); }
.checkbox-label input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; flex: none; width: 19px; height: 19px; margin-top: 1px;
  border: 1.5px solid var(--line); border-radius: 4px; background: var(--bg); cursor: pointer;
  display: grid; place-items: center; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.checkbox-label input[type="checkbox"]::after {
  content: ""; width: 10px; height: 10px; clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 45% 62%);
  background: #fff; transform: scale(0); transition: transform .15s var(--ease);
}
.checkbox-label input[type="checkbox"]:checked { background: var(--gold); border-color: var(--gold); }
.checkbox-label input[type="checkbox"]:checked::after { transform: scale(1); }
.checkbox-label input[type="checkbox"]:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--gold-soft); }
.checkbox-label a { color: var(--gold-dark); }
.checkbox-label a:hover { color: var(--ink); }

/* Honeypot. Moved off-screen rather than display:none, because some bots skip
   fields that are outright hidden. Screen readers skip it via aria-hidden. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.8rem; }
.form-status { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: var(--radius); font-size: 0.92rem; }
.form-status.ok { background: #e7f0e8; color: #2f5d3a; border: 1px solid #bcd6c1; }
.form-status.warn { background: #f8ece4; color: #8a4b32; border: 1px solid #e6c9b7; }

.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); margin-top: 1.5rem; filter: grayscale(0.2) contrast(0.95); }
/* Meeting-point photo + map side by side; photo matches the map's height. */
.meet-media { display: grid; grid-template-columns: 240px 1fr; gap: 12px; align-items: end; }
.meet-media .meet-photo { margin: 1.5rem 0 0; max-width: none; aspect-ratio: auto; height: 320px; }
@media (max-width: 720px) {
  .meet-media { grid-template-columns: 1fr; }
  .meet-media .meet-photo { height: auto; aspect-ratio: 4 / 5; max-width: 320px; }
}

/* --------------------------------------------------------------- cta band */
.cta-band { background: var(--ink); color: #e7ddce; text-align: center; padding: clamp(4rem, 8vw, 6rem) 0; position: relative; }
.cta-inner { width: min(720px, 90%); margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-text { font-size: 1.1rem; margin-bottom: 2rem; color: #d8cdbd; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--ink-deep); color: #a3b8b4; padding: clamp(3.5rem, 6vw, 5rem) 0 0; font-size: 0.92rem; }
.footer-inner { width: min(var(--wrap), 92%); margin-inline: auto; display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-name { font-family: var(--logo); color: #fff; font-size: 1.3rem; }
.footer-tagline { margin: 0.8rem 0 1.2rem; color: #9a8f7f; max-width: 320px; }
.footer-social { display: flex; gap: 0.7rem; }
.social-link { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #2e4746; border-radius: 50%; color: #a3b8b4; transition: all .25s var(--ease); }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(176,130,74,.1); }
.footer-heading { font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: #7d7365; margin: 0 0 1.1rem; font-weight: 600; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a, .footer-contact a { color: #cabfae; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-meet { color: #9a8f7f; font-size: 0.85rem; margin-top: 0.4rem; }
.fc-item { display: flex; align-items: flex-start; gap: 0.6rem; }
.fc-item svg { flex: none; margin-top: 3px; color: var(--gold); }
.fc-item span { line-height: 1.4; }

/* floating WhatsApp button (lazy-revealed after load) */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wa-float[hidden] { display: none; }
.wa-btn { position: relative; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(0,0,0,.28); transform: scale(0); opacity: 0; transition: transform .4s cubic-bezier(.2,.8,.3,1.3), opacity .4s, box-shadow .25s; }
.wa-float.wa-show .wa-btn { transform: scale(1); opacity: 1; }
.wa-btn:hover { color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.36); }
.wa-btn svg { width: 32px; height: 32px; }
.wa-btn::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1; animation: waPulse 2.6s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .45; } 70% { transform: scale(1.7); opacity: 0; } 100% { opacity: 0; } }
/* hover tooltip (shown on hover / keyboard focus of the button) */
.wa-tip { position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(8px); white-space: nowrap; background: var(--ink); color: #fff; font-family: var(--sans); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.01em; padding: 0.6rem 0.95rem; border-radius: 9px; box-shadow: 0 10px 26px rgba(0,0,0,.24); opacity: 0; pointer-events: none; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.wa-tip::after { content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--ink); }
.wa-btn:hover .wa-tip, .wa-btn:focus-visible .wa-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 720px) { .wa-float { right: 16px; bottom: 16px; } .wa-btn { width: 54px; height: 54px; } .wa-tip { display: none; } }
@media (prefers-reduced-motion: reduce) { .wa-btn::after { animation: none; } }

/* cookie consent bar: small, bottom-left, clear of the WhatsApp button */
.cookie-bar { position: fixed; left: 18px; bottom: 18px; z-index: 190; max-width: 340px; background: var(--ink-deep); color: #dbe6e1; padding: 1rem 1.1rem; border-radius: 10px; box-shadow: 0 14px 34px rgba(0,0,0,.32); font-size: 0.8rem; line-height: 1.5; }
.cookie-bar[hidden] { display: none; }
.cookie-bar p { margin: 0 0 0.8rem; }
.cookie-bar a { color: var(--gold); }
.cookie-bar a:hover { color: #fff; }
.cookie-actions { display: flex; gap: 0.6rem; }
.cookie-btn { flex: 1; font-family: var(--sans); font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.55rem 0.6rem; border-radius: 6px; border: 1px solid transparent; cursor: pointer; transition: all .2s var(--ease); }
.cookie-accept { background: var(--gold); color: #fff; }
.cookie-accept:hover { background: var(--gold-dark); }
.cookie-decline { background: transparent; color: #dbe6e1; border-color: rgba(255,255,255,.3); }
.cookie-decline:hover { border-color: #fff; }
@media (max-width: 720px) { .cookie-bar { left: 12px; right: auto; bottom: 12px; max-width: calc(100vw - 92px); } }
.footer-bottom { border-top: 1px solid #214443; padding: 1.4rem 0; text-align: center; font-size: 0.78rem; color: #6f817c; }
.footer-bottom p { margin: 0; }
.footer-bottom p + p { margin-top: 0.35rem; }
.footer-bottom a { color: #9aa89f; }
.footer-bottom a:hover { color: var(--gold); }

/* --------------------------------------------------------------- breadcrumbs */
.crumbs { width: min(var(--wrap), 92%); margin: 1.4rem auto 0; font-size: 0.8rem; color: var(--muted); letter-spacing: 0.02em; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold-dark); }
.crumbs span.sep { margin: 0 0.5rem; opacity: 0.6; }
.crumbs .current { color: var(--ink); }

/* --------------------------------------------------------------- tour detail hero */
.tour-hero { position: relative; min-height: 54vh; display: flex; align-items: flex-end; 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(7,33,32,.30) 0%, rgba(7,33,32,.15) 45%, rgba(7,33,32,.84) 100%); }
.tour-hero-inner { width: min(var(--wrap), 92%); margin-inline: auto; padding: 0 0 clamp(2rem,5vw,3.5rem); max-width: 820px; }
.tour-hero .eyebrow { color: #efd7ad; }
.tour-hero h1 { color: #fff; font-size: clamp(2.2rem,5vw,3.6rem); text-shadow: 0 2px 24px rgba(0,0,0,.35); margin-bottom: 0.3rem; }
/* Sans, not italic serif: this sits on a photo, where italics at size were hard
   to read. Shadow lifts it off busy backgrounds; max-width keeps a sane measure. */
.tour-hero-tagline { font-family: var(--sans); font-style: normal; font-weight: 400; font-size: clamp(1.02rem,1.7vw,1.24rem); line-height: 1.5; letter-spacing: 0.01em; color: #f3ece2; margin: 0.55rem 0 0; max-width: 46rem; text-shadow: 0 1px 14px rgba(0,0,0,.45); }

/* --------------------------------------------------------------- tour detail layout */
.tour-detail-layout { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.tour-detail-main h2 { font-size: clamp(1.5rem,2.6vw,2rem); margin-top: 2rem; }
.tour-detail-main h2:first-child { margin-top: 0; }
.back-link { display: inline-block; margin-top: 2.5rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--gold-dark); }
.back-link:hover { color: var(--ink); }

.booking-card { position: sticky; top: 100px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.booking-card .price { font-size: 2.1rem; font-weight: 700; letter-spacing: -0.02em; color: var(--gold-dark); line-height: 1.05; margin-bottom: 0.2rem; }
.booking-card .price span { font-family: var(--sans); font-size: 0.9rem; color: var(--muted); }
.booking-card .price-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.3rem; }
.booking-card dl { display: grid; gap: 0.75rem; margin: 0 0 1.5rem; padding: 1.2rem 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.booking-card dl > div { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: 0.92rem; }
.booking-card dt { color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; }
.booking-card dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }
.booking-card .btn { margin-bottom: 0.7rem; }
.booking-card .meet { font-size: 0.8rem; color: var(--muted); margin: 0.8rem 0 0; }

.tour-note { background: var(--gold-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; color: var(--gold-dark); font-size: 0.95rem; margin: 1.5rem 0; }
.tour-note strong { color: var(--ink); }

/* route/pricing option cards (e.g. Krka's three entrance/exit options) */
.tour-options { display: flex; flex-direction: column; gap: 1.4rem; margin: 1.4rem 0 2rem; }
.tour-option { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; scroll-margin-top: 90px; }
.tour-option-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.6rem 1rem; margin-bottom: 0.2rem; }
.tour-option-head h3 { margin: 0; font-size: 1.25rem; }
.tour-option-price { font-family: var(--sans); font-weight: 700; color: var(--gold-dark); font-size: 1.05rem; white-space: nowrap; }
.tour-option-price span { font-weight: 400; color: var(--muted); font-size: 0.78rem; }
.tour-option-tag { font-family: var(--serif); font-style: italic; color: var(--gold-dark); font-size: 1.05rem; margin: 0 0 0.8rem; }
.tour-option p { font-size: 0.95rem; }
.tour-option-route { background: var(--bg-alt); border-radius: var(--radius); padding: 0.7rem 0.9rem; font-size: 0.85rem; color: var(--ink-soft); margin: 0.8rem 0 0; }
.tour-option-route strong { color: var(--ink); }

/* --------------------------------------------------------------- reviews (trustindex) */
.reviews-section { text-align: center; }

.review-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.15em; line-height: 1; }
.review-summary { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; margin: 0 auto 2.8rem; }
.review-summary p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; text-align: left; }
.review-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.6rem 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review-card .review-stars { margin-bottom: 0.7rem; }
.review-card .review-quote { font-size: 0.96rem; line-height: 1.62; color: var(--ink-soft); margin: 0 0 1.2rem; text-align: left; flex: 1; }
.review-who { display: flex; flex-direction: column; margin-bottom: 0.4rem; }
.review-name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.review-loc { font-size: 0.78rem; color: var(--muted); }
.review-source { align-self: flex-start; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--gold-dark); margin-top: 0.5rem; }
.review-source:hover { color: var(--ink); }

.review-more { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.6rem; }

/* --------------------------------------------------------------- reveal anim */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------- responsive */
@media (max-width: 940px) {
  .trio { grid-template-columns: 1fr; gap: 2.8rem; max-width: 440px; margin-inline: auto; }
  .tour-layout, .split, .about-hero, .contact-grid, .tour-detail-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; margin-top: 2rem; }
  .tour-layout.reverse .tour-figure, .split.reverse .split-media { order: 0; }
  .about-portrait { max-width: 380px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-nav, .header-actions { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav.open { display: flex; }
  .hero { min-height: 82vh; }
  .field-row { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .portrait-badge { right: 0; }
  /* Mobile only: hide the eyebrow label directly above an h1 (kept on desktop). */
  .eyebrow:has(+ h1) { display: none; }
  /* Mobile only: restore breathing room above h1 now that its eyebrow is hidden. */
  h1 { margin-top: 20px; }
  /* Mobile only: stack the credentials strip (one per row) instead of wrapping 2+1,
     centered, with no closing border-bottom - the section's background-colour
     change into the next (tan) section acts as the divider instead. */
  .credentials { flex-direction: column; gap: 1rem; text-align: center; border-bottom: none; }
  .credentials div { min-width: 0; }
  .credentials div + div { padding-top: 1rem; border-top: 1px solid var(--line-soft); }
  /* Mobile only: close the gap between the hero section and the story section
     right below the credentials strip, so the tan background starts flush. */
  .about-hero-section.pb-tight { padding-bottom: 0; }
  .about-story-section.pt-tight { padding-top: 2rem; }
  /* Mobile only: center the hero trust badge (left-aligned on desktop). */
  .hero-trust { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
  .mobile-break { display: inline; }
  /* Mobile only: centre the hero headline and its two CTAs, and soften the
     solid CTA so the photo reads through it a little. */
  .hero h1 { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn-solid { background: rgba(181, 138, 74, 0.78); border-color: rgba(181, 138, 74, 0.55); backdrop-filter: blur(2px); }
  .hero-actions .btn-solid:hover { background: rgba(138, 102, 49, 0.88); border-color: rgba(138, 102, 49, 0.7); }
  /* Mobile only: centre the CTA pair on the tour pages (left-aligned on desktop). */
  .tour-cta-row { justify-content: center; }
  /* Mobile only: fixed 2-column gallery reads cleaner than auto-fill on narrow screens. */
  .photo-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  /* Mobile only: side-by-side landscapes get too small, so stack them (portrait pairs stay side by side). */
  .photo-duo.duo-land { grid-template-columns: 1fr; }
  /* Mobile only: 3-up rows get too small, so the first photo goes full width with the other two beneath. */
  .photo-trio { grid-template-columns: 1fr 1fr; }
  .photo-trio > :first-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
