/* ═══════════════════════════════════════════════════════════
   ONE-PAGE TEMPLATE — Design System (2026)
   Reusable across industries. Single source of truth.
   ═══════════════════════════════════════════════════════════ */

:root {
  color-scheme: light;

  /* About Culture Things — Sintra / Atlantic / forest (from logo) */
  --brand:        #4F6B52; /* forest sage — emblem */
  --brand-dark:   #344A39;
  --brand-light:  #718A75;
  --brand-subtle: rgba(79, 107, 82, 0.10);

  --accent:       #2A3D52; /* Atlantic navy — wordmark */
  --accent-muted: #3D5166;
  --sea-subtle:   rgba(42, 61, 82, 0.06);

  /* Warm parchment / stone */
  --bg:           #F8F4EB;
  --bg-alt:       #EEE8DC;
  --surface:      #FFFCF6;
  --text:         #1C2834;
  --text-2:       #2E3D4A;
  --text-3:       #4A5562;
  --border:       rgba(28, 40, 52, 0.09);
  --border-strong:rgba(28, 40, 52, 0.16);
  --rating:       #7A5C1D; /* warm sand / golden hour */

  /* ── Spacing scale ── */
  --s1: 1rem;
  --s2: 1.5rem;
  --s3: 3.5rem;
  --s4: 5.5rem;

  /* ── Typography scale ── */
  --text-sm:   0.8125rem;
  --text-base: 1.0625rem;
  --text-lg:   1.1875rem;
  --text-xl:   clamp(1.875rem, 2.8vw + 0.75rem, 2.625rem);
  --text-display: clamp(2.125rem, 4.5vw + 0.5rem, 3.25rem);
  --heading-section: clamp(1.75rem, 2.8vw + 0.75rem, 2.625rem);
  --heading-card: clamp(1.0625rem, 0.4vw + 0.95rem, 1.1875rem);
  --heading-cta: clamp(1.5rem, 2vw + 0.65rem, 2rem);

  /* ── Radius system ── */
  --radius-btn:   999px;
  --radius-card:  0.5rem;
  --radius-img:   1rem;
  --radius-input: 0.75rem;

  /* ── Shadow system ── */
  --shadow-1: 0 1px 2px rgba(28, 40, 52, 0.04), 0 8px 22px rgba(28, 40, 52, 0.035);
  --shadow-2: 0 12px 30px rgba(28, 40, 52, 0.075);
  --shadow-3: 0 18px 48px rgba(28, 40, 52, 0.11);

  /* Layout */
  --nav-h:      4rem;
  --max-w:      76rem;
  --content-w:  68rem;
  --pad-x:      1.25rem;
  --section-py: clamp(3.5rem, 4.25vw + 1.25rem, 6.25rem);
  --section-gap: clamp(1.5rem, 3vw, 3rem);
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font:         'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --touch:      2.75rem; /* 44px — WCAG 2.2 minimum target size */
  --touch-lg:   3rem;
}

@media (min-width: 48rem) {
  :root {
    --pad-x:      2rem;
    --nav-h:      4.25rem;
  }
}

@media (min-width: 64rem) {
  :root {
    --pad-x:      clamp(3rem, 5vw, 5rem);
    --nav-h:      4.5rem;
  }
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 0.5rem);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
[hidden] { display: none !important; }

main,
section,
article,
aside,
div,
figure {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
a,
span {
  overflow-wrap: break-word;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.anchor-target {
  display: block;
  position: relative;
  top: calc(-1 * var(--nav-h) - 1.75rem);
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s2);
  z-index: 10000;
  background: var(--brand);
  color: #fff;
  padding: 0.625rem 1rem;
  min-height: var(--touch);
  border-radius: 0 0 var(--radius-input) var(--radius-input);
  font-size: var(--text-sm);
  font-weight: 600;
}
.skip-link:focus-visible { top: 0; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* WCAG 2.2 — visible focus on all interactive controls */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ─── LAYOUT SHELL ─── */
.shell {
  width: 100%;
  max-width: var(--content-w);
  margin-inline: auto;
  padding-inline: max(var(--pad-x), env(safe-area-inset-left, 0px))
                  max(var(--pad-x), env(safe-area-inset-right, 0px));
}

.section {
  padding-block: var(--section-py);
  padding-inline: max(var(--pad-x), env(safe-area-inset-left, 0px))
                  max(var(--pad-x), env(safe-area-inset-right, 0px));
}
.section--alt { background: var(--bg-alt); }
.section--surface { background: var(--surface); }

.section-shell {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* ─── TYPOGRAPHY ─── */
.kicker {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.875rem;
}

h1, h2 {
  font-family: var(--font-display);
  font-size: var(--heading-section);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 0.875rem;
  color: var(--accent);
}

h3,
.benefit-card h3,
.pc-name {
  font-family: var(--font);
  font-size: var(--heading-card);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 0.375rem;
  color: var(--text);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto var(--s3);
}
.section-head h2 em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
}
.section-desc {
  font-size: var(--text-base);
  color: var(--text-3);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 32rem;
  text-wrap: pretty;
}

/* ─── BUTTONS (single system) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0 var(--s2);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-filled,
.btn-outlined,
.btn-massive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0 var(--s2);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-filled {
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(28, 40, 52, 0.08), 0 10px 22px rgba(79, 107, 82, 0.22);
}
.btn-filled:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(28, 40, 52, 0.08), 0 14px 28px rgba(79, 107, 82, 0.26);
}
.btn-filled:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(17, 24, 16, 0.06);
}

.btn-outlined {
  color: var(--text);
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn-outlined:hover {
  border-color: rgba(17, 24, 16, 0.2);
  background: #fff;
  transform: translateY(-1px);
}
.btn-outlined:active {
  background: var(--bg-alt);
}

.btn-lg {
  min-height: 3.5rem;
  padding: 0 2rem;
  font-size: var(--text-lg);
  font-weight: 700;
  width: 100%;
}

.btn-filled:focus-visible,
.btn-outlined:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 3px;
}

.btn-massive,
.btn-lg {
  min-height: 3.5rem;
  padding: 0 2rem;
  font-size: var(--text-lg);
  font-weight: 700;
  width: 100%;
}

/* ─── NAVIGATION ─── */
.nav {
  position: sticky;
  top: 0;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255, 252, 246, 0.82);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  border-bottom: 1px solid rgba(17, 24, 16, 0.06);
  display: flex;
  align-items: center;
  padding-inline: max(var(--pad-x), env(safe-area-inset-left, 0px))
                  max(var(--pad-x), env(safe-area-inset-right, 0px));
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.elevated {
  background: rgba(255, 252, 246, 0.96);
  border-bottom-color: rgba(17, 24, 16, 0.09);
  box-shadow: 0 8px 26px rgba(28, 40, 52, 0.045);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  flex-shrink: 0;
  border-radius: var(--radius-input);
  min-width: 0;
}
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 0.7vw + 0.8rem, 1.0625rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.nav-tabs { display: none; gap: 0.125rem; }
.nav-tab-wide { display: none; }
.nav-tabs a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 0.5rem 0.75rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-btn);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.nav-tabs a:hover { background: var(--brand-subtle); color: var(--text); }
.nav-tabs a.active { color: var(--brand-dark); font-weight: 600; background: var(--brand-subtle); }

.nav-actions { display: none; align-items: center; gap: 0.5rem; }
.nav-actions .nav-book-btn {
  min-height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: none;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.burger {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-btn);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block;
  width: 1.125rem;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
body.nav-open .burger span:nth-child(1) { transform: rotate(45deg) translate(0, 6px); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: rotate(-45deg) translate(0, -6px); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}
body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile nav — fullscreen panel */
.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: #fff;
  overflow-y: auto;
  padding: max(1rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.mob-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mob-nav-head {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.mob-nav-logo {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.mob-nav-close {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-nav-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  max-width: 20rem;
  margin: auto 0;
  text-align: left;
}
.mob-nav a:not(.mob-cta) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 3.25rem;
  padding: 0;
  font-size: clamp(1.375rem, 7vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  border-bottom: none;
}

.mob-nav-footer {
  width: 100%;
  max-width: 20rem;
}

.mob-lang-options {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1rem;
  width: 100%;
}
.mob-lang-btn {
  flex: 1;
  min-height: 2.75rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.mob-lang-btn.active { background: var(--brand-subtle); color: var(--brand-dark); border-color: rgba(79, 107, 82, 0.28); }
.mob-cta {
  width: 100%;
  max-width: 20rem;
  margin: 0;
  justify-content: center;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius-btn);
  min-height: 3.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mob-contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-top: 1.25rem;
  color: var(--text-3);
  font-size: var(--text-sm);
  font-weight: 600;
}
.mob-nav .mob-contact-links a {
  display: inline-flex;
  width: auto;
  min-height: 2rem;
  padding: 0;
  color: var(--text-3);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Language switcher */
.lang-switcher { position: relative; }
.nav-lang-switcher { display: block; }
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 2.25rem;
  padding: 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-2);
  border-radius: var(--radius-btn);
  border: 1px solid rgba(28, 40, 52, 0.1);
  background: rgba(255, 252, 246, 0.72);
}
.lang-trigger-caret { width: 9px; height: 9px; opacity: 0.5; }
.lang-switcher.open .lang-trigger-caret { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-input);
  box-shadow: var(--shadow-3);
  min-width: 9.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 20;
}
.lang-switcher.open .lang-dropdown { opacity: 1; pointer-events: auto; transform: none; }
.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.55rem 0.75rem;
  min-height: 2.5rem;
  font-size: var(--text-sm);
  border-radius: calc(var(--radius-input) - 0.15rem);
  color: var(--text-2);
}
.lang-option:hover { background: var(--bg); }
.lang-option[aria-selected="true"] { color: var(--brand); background: var(--brand-subtle); font-weight: 600; }
.lang-option-check { width: 14px; height: 14px; opacity: 0; color: var(--brand); }
.lang-option[aria-selected="true"] .lang-option-check { opacity: 1; }

/* ─── HERO ─── */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 12%, rgba(79, 107, 82, 0.07), transparent 30rem),
    linear-gradient(180deg, rgba(255, 252, 246, 0.85), rgba(248, 244, 235, 0.95)),
    var(--bg);
}

.hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem var(--pad-x) 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: 36rem;
  min-width: 0;
}

.hero-kicker {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero h1 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: var(--text-display);
  line-height: 1.08;
  letter-spacing: -0.018em;
  max-width: 14em;
  text-wrap: balance;
}

.hero-desc {
  margin: 0;
  font-size: clamp(1rem, 1.2vw + 0.65rem, 1.1875rem);
  color: var(--text-2);
  line-height: 1.62;
  max-width: 32rem;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  margin-top: 0.25rem;
}
.hero-ctas .btn,
.hero-ctas .btn-filled,
.hero-ctas .btn-outlined {
  width: 100%;
  justify-content: center;
  min-height: 2.75rem;
  max-width: 100%;
}
.hero-ctas .btn-filled {
  min-height: 3rem;
  padding-inline: 1.5rem;
  font-weight: 600;
}

.hero-trust-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-1);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.hero-trust:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
}
.hero-trust-stars {
  color: var(--rating);
  letter-spacing: 0.04em;
  font-size: 0.75rem;
}

.hero-highlights {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-2);
  line-height: 1.45;
  max-width: 28rem;
  text-wrap: pretty;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.25rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-3);
  transition: color 0.2s var(--ease);
}
.hero-scroll:hover { color: var(--text); }
.hero-scroll svg { opacity: 0.7; }

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0.875rem;
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 18px 44px rgba(28, 40, 52, 0.12);
  contain: layout style paint;
}

.hero-poster {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 35%;
}

@media (min-width: 40rem) {
  .hero-inner { padding-inline: 2rem; }
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
  .hero-ctas .btn,
  .hero-ctas .btn-filled,
  .hero-ctas .btn-outlined {
    width: auto;
    min-width: 11rem;
  }
}

@media (min-width: 48rem) {
  .hero-inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    gap: 2rem;
  }
  .hero-copy { gap: 1.25rem; }
  .hero-ctas .btn-filled { min-height: 3.125rem; }
}

@media (min-width: 64rem) {
  .hero {
    min-height: min(82dvh, 48rem);
    display: flex;
    align-items: center;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
    min-height: min(calc(82dvh - var(--nav-h)), calc(48rem - var(--nav-h)));
    padding-block: clamp(2.25rem, 4vh, 3.25rem);
  }
  .hero-copy {
    max-width: none;
    gap: 1.5rem;
    padding-block: 1rem;
  }
  .hero h1 { max-width: 11em; }
  .hero-media {
    align-self: stretch;
    min-height: 23rem;
    max-height: min(calc(82dvh - var(--nav-h) - 3rem), 34rem);
  }
  .hero-poster {
    width: 100%;
    height: 100%;
    min-height: 22rem;
    aspect-ratio: auto;
  }
  .hero-scroll { margin-top: 0.5rem; }
  .hero-cta-secondary { display: inline-flex; }
}

@media (max-width: 63.99rem) {
  .hero-cta-secondary { display: none; }
  .hero-scroll { display: none; }
  .back-to-top { display: none !important; }
}

/* ─── BENEFITS / WHY CHOOSE US ─── */
#benefits {
  background:
    linear-gradient(180deg, rgba(238, 232, 220, 0.92), rgba(238, 232, 220, 1)),
    var(--bg-alt);
}

.benefits-shell {
  display: grid;
  gap: 2rem;
}

.benefits-head {
  margin-bottom: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1.5rem;
  min-height: 100%;
  border: 1px solid rgba(28, 40, 52, 0.075);
  border-radius: var(--radius-card);
  background: rgba(255, 252, 246, 0.72);
  box-shadow: var(--shadow-1);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
}

.benefit-card:hover {
  border-color: var(--border-strong);
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 10px 26px rgba(28, 40, 52, 0.055);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(79, 107, 82, 0.105);
  color: var(--brand-dark);
}

.benefit-card h3 {
  margin: 0;
  color: var(--text);
}

.benefit-card p {
  margin: 0;
  color: var(--text-3);
  font-size: var(--text-base);
  line-height: 1.55;
  text-wrap: pretty;
}

@media (min-width: 48rem) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .benefit-card:last-child {
    grid-column: 1 / -1;
  }

  .benefit-card {
    padding: 1.6rem;
  }
}

@media (min-width: 64rem) {
  .benefits-shell {
    gap: 3rem;
  }

  .benefit-card {
    padding: 1.75rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-card:last-child {
    grid-column: auto;
  }
}

/* ─── SERVICES / PRICING (primary conversion section) ─── */
#tours {
  background: linear-gradient(180deg, var(--surface), #FFFDF8);
  border-block: 1px solid var(--border);
}

#tours .sec-desc {
  margin-bottom: 0.5rem;
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.625rem;
  margin: 0 auto var(--s3);
  max-width: 36rem;
}
.pricing-trust li {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-2);
  padding: 0.25rem 0.6rem;
  background: rgba(79, 107, 82, 0.07);
  border-radius: var(--radius-btn);
}
.pricing-trust li + li::before {
  content: none;
}

.tours-row,
.services-grid {
  display: grid;
  gap: var(--s2);
  max-width: var(--content-w);
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(28, 40, 52, 0.095);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.pricing-card:hover {
  box-shadow: 0 14px 32px rgba(28, 40, 52, 0.075);
  border-color: var(--border-strong);
}

.pricing-card.featured {
  border-color: rgba(79, 107, 82, 0.24);
  box-shadow: 0 14px 34px rgba(79, 107, 82, 0.12);
}

.pricing-card::before {
  content: attr(data-badge);
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-btn);
  background: rgba(52, 74, 57, 0.94);
  color: #fff;
}
.pricing-card.alt::before {
  background: var(--brand);
  color: #fff;
  border: none;
}

.pc-img-wrap {
  margin: calc(-1 * 1.25rem) calc(-1 * 1.25rem) 0.875rem;
  aspect-ratio: 2 / 1;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  overflow: hidden;
  background: var(--bg-alt);
}
.pc-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0;
  transition: transform 0.5s var(--ease);
}
.pricing-card:hover .pc-img-wrap img {
  transform: scale(1.02);
}

.pc-name {
  margin: 0 0 0.35rem;
  color: var(--text);
}

.pc-tag {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-3);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.35rem;
}

.pc-stops {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.45;
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.pc-fit {
  font-size: var(--text-sm);
  color: var(--text-3);
  font-style: normal;
  line-height: 1.5;
  margin: 0 0 0.875rem;
}

.pc-tickets-note {
  margin: 0 0 0.75rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-2);
  line-height: 1.4;
}

.pc-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1rem;
  margin: 0 0 0.875rem;
}
.pc-include, .pc-exclude {
  font-size: var(--text-sm);
  line-height: 1.4;
}
.pc-include { color: var(--text-2); font-weight: 500; }
.pc-include::before { content: '✓ '; color: var(--brand); font-weight: 600; }
.pc-exclude { color: var(--text-3); }
.pc-exclude::before { content: '– '; color: var(--text-3); font-weight: 400; }

.pc-divider { height: 1px; background: var(--border); margin-bottom: 1rem; }

.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.pc-price {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.pc-per { font-size: var(--text-sm); color: var(--text-3); font-weight: 500; }
.pc-price-sub {
  font-size: var(--text-sm);
  color: var(--text-3);
  margin: 0 0 1.25rem;
}

.pc-cta { margin-top: 0; }
.pc-cta .btn,
.pc-cta .btn-filled {
  width: 100%;
  justify-content: center;
  min-height: 2.75rem;
}

.pc-details {
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--border);
}
.pc-details summary {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-3);
  cursor: pointer;
  min-height: 2rem;
  display: flex;
  align-items: center;
  list-style: none;
  transition: color 0.2s var(--ease);
}
.pc-details summary:hover { color: var(--text); }
.pc-details[open] summary { color: var(--brand-dark); }
.pc-details summary::-webkit-details-marker { display: none; }
.pc-details p {
  margin: 0.5rem 0 0;
  font-size: var(--text-sm);
  color: var(--text-3);
  line-height: 1.55;
}
.pc-details .pc-places {
  margin-top: 0.75rem;
  font-size: var(--text-sm);
  color: var(--text-3);
  line-height: 1.55;
}

@media (min-width: 48rem) {
  .tours-row, .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    align-items: start;
  }
  .pricing-card {
    padding: 1.5rem;
  }
  .pc-img-wrap {
    margin: calc(-1 * 1.5rem) calc(-1 * 1.5rem) 1rem;
  }
}

@media (min-width: 64rem) {
  .tours-row {
    max-width: 1200px;
    gap: 1.5rem;
  }
}

/* ─── EXPERIENCE GALLERY ─── */
#gallery {
  background: var(--bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.875rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--bg-alt);
  box-shadow: 0 10px 24px rgba(28, 40, 52, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.55s var(--ease), filter 0.35s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.04);
}

@media (min-width: 48rem) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 64rem) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* ─── REVIEWS ─── */
#reviews {
  background:
    linear-gradient(180deg, rgba(248, 244, 235, 1), rgba(255, 252, 246, 0.78)),
    var(--bg);
}

.reviews-panel {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  width: 100%;
}

.reviews-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1rem;
}

.reviews-head .sec-eyebrow {
  margin-bottom: 0.75rem;
}

.reviews-head h2 {
  margin: 0;
}

.reviews-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2.25rem;
  text-align: center;
}

.reviews-trust-line {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 650;
  line-height: 1.4;
}

.reviews-trust-stars {
  color: var(--rating);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.reviews-trust-note {
  margin: 0;
  color: var(--text-3);
  font-size: var(--text-sm);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.reviews-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.reviews-external-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: var(--touch);
  padding: 0.5rem 1.125rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-1);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.reviews-external-link:hover {
  color: var(--accent);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
  transform: translateY(-1px);
}
.reviews-external-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-height: 100%;
  padding: 1.625rem;
  background: var(--surface);
  border: 1px solid rgba(28, 40, 52, 0.085);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.review-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 30px rgba(28, 40, 52, 0.065);
}

.rv-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.rv-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(79, 107, 82, 0.1);
  color: var(--accent);
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.rv-name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  color: var(--text);
}
.rv-rating { color: var(--rating); font-size: 0.875rem; letter-spacing: 0.05em; line-height: 1; }

.rv-text {
  margin: 0;
  font-size: var(--text-base);
  font-style: normal;
  line-height: 1.6;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

.rv-source {
  margin: auto 0 0;
  padding-top: 0.25rem;
  color: var(--text-3);
  font-size: var(--text-sm);
  font-weight: 600;
}

@media (min-width: 48rem) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 64rem) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* ─── FAQ ─── */
#faq {
  background:
    radial-gradient(circle at top, rgba(79, 107, 82, 0.075), transparent 38%),
    radial-gradient(circle at 85% 12%, rgba(42, 61, 82, 0.07), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.5), rgba(255, 252, 247, 0)),
    var(--bg-alt);
}

.faq-cta-shell {
  display: grid;
  gap: 2rem;
}

#faq .sec-head,
.faq-head {
  max-width: 44rem;
  margin-bottom: 0;
}

.faq-cta-layout {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.875rem;
  max-width: none;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.faq-item {
  overflow: clip;
  border: 1px solid rgba(17, 24, 16, 0.075);
  background: rgba(255, 252, 246, 0.72);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 26px rgba(17, 24, 16, 0.04);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.faq-item:hover {
  border-color: rgba(17, 24, 16, 0.14);
  box-shadow: 0 14px 32px rgba(17, 24, 16, 0.055);
}
.faq-item[open] {
  border-color: rgba(79, 107, 82, 0.2);
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 18px 38px rgba(17, 24, 16, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary:hover { background: rgba(255, 255, 255, 0.5); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-q {
  font-size: clamp(1rem, 0.7vw + 0.92rem, 1.125rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
details[open] .faq-q { color: var(--text); }

.faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: none;
  background: rgba(79, 107, 82, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--brand-dark);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
details[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(79, 107, 82, 0.16);
  color: var(--brand-dark);
}

.faq-a {
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.65;
  padding: 0 1.25rem;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-0.25rem);
  transition: max-height 0.35s var(--ease), opacity 0.28s var(--ease), transform 0.28s var(--ease), padding 0.28s var(--ease);
  text-wrap: pretty;
}

details[open] .faq-a {
  max-height: 14rem;
  opacity: 1;
  transform: none;
  padding-bottom: 1.15rem;
}

@media (min-width: 48rem) {
  .faq-list {
    max-width: 50rem;
    gap: 1rem;
  }

  .faq-item summary {
    min-height: 3.25rem;
    padding: 1.15rem 1.35rem;
  }

  .faq-a {
    padding-inline: 1.35rem;
  }
}

@media (min-width: 64rem) {
  .faq-cta-shell {
    gap: 3rem;
  }

  .faq-cta-layout {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.42fr);
    gap: 3rem;
    align-items: start;
  }

  .faq-list {
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }

  .faq-item summary {
    min-height: 3.5rem;
    padding: 1.2rem 1.4rem;
  }

  .faq-q {
    font-size: clamp(1.06rem, 0.45vw + 1rem, 1.22rem);
  }

  .faq-a {
    padding-inline: 1.4rem;
    max-width: 34rem;
  }
}

/* ─── FINAL CTA ─── */
#final-cta {
  align-self: start;
}

.final-cta-shell {
  max-width: none;
  margin: 0;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(255, 252, 246, 0.88)),
    var(--surface);
  border: 1px solid rgba(28, 40, 52, 0.1);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 38px rgba(28, 40, 52, 0.085);
  color: var(--text);
  text-align: left;
}

.final-cta-shell h2 {
  margin: 0 0 0.75rem;
  max-width: 12em;
  font-family: var(--font-display);
  font-size: var(--heading-cta);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-wrap: balance;
}

.final-cta-copy {
  margin: 0 0 1.5rem;
  max-width: 32rem;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.cta-actions {
  display: flex;
  justify-content: flex-start;
  margin: 0;
}

.final-cta-shell .btn-filled {
  min-height: 56px;
  width: 100%;
  padding-inline: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(79, 107, 82, 0.22);
  font-size: var(--text-base);
  font-weight: 700;
}
.final-cta-shell .btn-filled:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(79, 107, 82, 0.27);
}

.final-cta-trust {
  margin: 1rem 0 0;
  color: var(--text-3);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.5;
}

.final-cta-shell .btn-filled:focus-visible {
  outline-color: var(--brand-dark);
}

@media (min-width: 40rem) {
  .final-cta-copy {
    font-size: 1.0625rem;
  }

  .final-cta-shell .btn-filled {
    width: min(22rem, 100%);
  }
}

@media (min-width: 64rem) {
  #final-cta {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
  }

  .final-cta-copy {
    font-size: 1.125rem;
  }

  .final-cta-shell .btn-filled {
    width: auto;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  background:
    radial-gradient(circle at top, rgba(107, 133, 112, 0.16), transparent 42%),
    linear-gradient(180deg, #1A2734 0%, #243444 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.875rem;
  padding: 2rem var(--pad-x) max(4.75rem, calc(3.25rem + env(safe-area-inset-bottom)));
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw + 0.75rem, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.2s var(--ease);
}
.footer-logo:hover { color: rgba(255, 255, 255, 0.92); }
.footer-logo:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
  border-radius: var(--radius-input);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.375rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: var(--touch);
  padding: 0.375rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-btn);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.footer-contact-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.footer-contact-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}
.footer-contact-link svg {
  flex-shrink: 0;
  opacity: 0.9;
}

@media (min-width: 48rem) {
  .site-footer {
    padding-block: 2.5rem max(3rem, calc(1rem + env(safe-area-inset-bottom)));
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }

  .footer-contact {
    justify-content: flex-end;
    gap: 0.5rem 1.25rem;
    width: auto;
    padding-top: 0;
    border-top: none;
  }
}

@media (min-width: 64rem) {
  .site-footer {
    padding-block: 2.75rem max(3.25rem, calc(1rem + env(safe-area-inset-bottom)));
  }
}

@media (min-width: 48rem) and (max-width: 63.99rem) {
  .nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 0.75rem;
  }

  .logo { justify-self: start; min-width: 0; }

  .nav-tabs {
    display: flex;
    justify-self: center;
    gap: 0;
  }

  .nav-tabs a {
    font-size: 0.875rem;
    padding: 0.4375rem 0.625rem;
    min-height: 2.5rem;
  }

  .nav-actions {
    display: flex;
    justify-self: end;
  }

  .nav-actions .nav-book-btn {
    min-height: 2.5rem;
    padding-inline: 0.875rem;
    font-size: 0.875rem;
  }

  .nav-utility {
    justify-self: end;
  }

  .burger { display: none; }

  .logo-name { max-width: 10rem; }
}

@media (min-width: 64rem) {
  .nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 1rem;
  }
  .logo,
  .nav-tabs,
  .nav-actions {
    grid-row: 1;
  }
  .logo { grid-column: 1; justify-self: start; }
  .nav-tabs {
    display: flex;
    grid-column: 2;
    justify-self: center;
  }
  .nav-actions {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }
  .nav-utility {
    display: flex;
    grid-column: 4;
    justify-self: end;
  }
  .nav-tab-wide { display: inline-flex; }
  .burger { display: none; }
  .logo-name { max-width: none; }
}

@media (max-width: 47.99rem) {
  :root {
    --section-py: clamp(3.25rem, 10vw, 4.75rem);
  }

  body {
    font-size: 1rem;
  }

  h1,
  h2 {
    max-width: 100%;
    letter-spacing: -0.01em;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw + 0.45rem, 2.45rem);
    line-height: 1.07;
  }

  h2,
  .sec-head h2,
  .reviews-head h2,
  .faq-head h2 {
    font-size: clamp(1.75rem, 6vw + 0.45rem, 2.1rem);
    line-height: 1.12;
  }

  .nav {
    padding-inline: max(1rem, env(safe-area-inset-left, 0px))
                    max(1rem, env(safe-area-inset-right, 0px));
  }

  .nav-inner {
    gap: 0.625rem;
  }

  .logo {
    max-width: min(13.25rem, calc(100vw - 8rem));
  }

  .logo-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-inner {
    padding-inline: max(1.25rem, env(safe-area-inset-left, 0px))
                    max(1.25rem, env(safe-area-inset-right, 0px));
    padding-top: 1.5rem;
    gap: 1.125rem;
  }

  .hero-copy {
    gap: 0.875rem;
    max-width: 100%;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-media {
    aspect-ratio: 3 / 2;
    max-height: 15.5rem;
    border-radius: 0.75rem;
  }

  main section[id] {
    padding-inline: max(1.25rem, env(safe-area-inset-left, 0px))
                    max(1.25rem, env(safe-area-inset-right, 0px));
  }

  .benefits-shell {
    gap: 1.35rem;
  }

  .benefits-head.sec-head {
    margin-bottom: 1rem;
  }

  .benefits-head .sec-desc {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .benefits-grid,
  .gallery-grid,
  .reviews-grid {
    gap: 0.875rem;
  }

  .benefit-card {
    padding: 1.1875rem;
    gap: 0.625rem;
  }

  .benefit-icon {
    width: 2.125rem;
    height: 2.125rem;
  }

  .benefit-card h3,
  .pc-name {
    font-size: 1.0625rem;
  }

  .benefit-card p {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .review-card {
    padding: 1.25rem;
  }

  .sec-head {
    margin-bottom: 1.35rem;
    max-width: 100%;
  }

  .reviews-trust {
    margin-bottom: 1.25rem;
  }

  .final-cta-shell h2 {
    font-size: clamp(1.4375rem, 5.5vw + 0.35rem, 1.875rem);
  }

  .hero-ctas .btn-filled,
  .hero-ctas .btn-outlined,
  .pc-cta .btn-filled,
  .final-cta-shell .btn-massive,
  .mob-cta {
    min-height: var(--touch-lg);
    font-size: var(--text-base);
    padding-inline: 1.125rem;
    white-space: normal;
    text-align: center;
  }

  .hero-ctas,
  .hero-ctas .btn-filled,
  .pc-cta .btn-filled,
  .final-cta-shell .btn-massive {
    width: 100%;
  }

  .pricing-trust {
    margin-bottom: 1.75rem;
  }

  .pricing-card {
    padding: 1.125rem;
  }

  .pc-img-wrap {
    margin: calc(-1 * 1.125rem) calc(-1 * 1.125rem) 1rem;
  }

  .pc-details summary {
    min-height: var(--touch);
  }

  .faq-item summary {
    padding: 1rem 1.0625rem;
  }

  .faq-a {
    padding-inline: 1.0625rem;
  }

  .lang-trigger,
  .burger,
  .mob-lang-btn {
    min-width: var(--touch);
    min-height: var(--touch);
  }
}

/* ─── FAB & BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  right: max(var(--s2), env(safe-area-inset-right));
  bottom: max(5rem, calc(4rem + env(safe-area-inset-bottom)));
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-2);
  border: 1px solid var(--border);
  font-size: var(--text-base);
  font-weight: 500;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s, transform 0.2s var(--ease), border-color 0.2s;
}
.back-to-top.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.back-to-top:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.back-to-top:focus-visible { outline-color: var(--brand); }

.fab-wa {
  position: fixed;
  bottom: max(var(--s2), env(safe-area-inset-bottom));
  right: max(var(--s2), env(safe-area-inset-right));
  z-index: 199;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92) translateY(4px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.2s var(--ease);
  touch-action: manipulation;
}
.fab-wa.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.fab-wa:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transform: scale(1.04) translateY(-1px);
}
.fab-wa:focus-visible { outline-color: #fff; outline-offset: 3px; }

/* ─── LEGACY ALIASES (template compat) ─── */
.content { display: flex; flex-direction: column; }

main section[id] {
  scroll-margin-top: calc(var(--nav-h) + 0.5rem);
  padding-block: var(--section-py);
  padding-inline: max(var(--pad-x), env(safe-area-inset-left, 0px))
                  max(var(--pad-x), env(safe-area-inset-right, 0px));
}

@media (min-width: 64rem) and (prefers-reduced-motion: no-preference) {
  #tours,
  #gallery,
  #benefits,
  #reviews,
  #faq {
    content-visibility: auto;
    contain-intrinsic-size: auto 36rem;
  }

  #gallery { contain-intrinsic-size: auto 32rem; }
  #reviews { contain-intrinsic-size: auto 34rem; }
  #faq { contain-intrinsic-size: auto 38rem; }
}

section.section--light { background: var(--bg); }
section.section--tinted { background: var(--bg-alt); }

.sec-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
}

.sec-head h2,
.reviews-head h2,
.faq-head h2 {
  margin-bottom: 0;
}
.sec-head h2 em { font-style: normal; font-weight: 700; color: var(--brand); }

.sec-kicker {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.875rem;
}

.sec-desc {
  font-size: var(--text-base);
  color: var(--text-3);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 32rem;
  text-wrap: pretty;
}

.sec-eyebrow, .sec-eyebrow-line, .hero-eyebrow-line { display: block; margin: 0; }
.sec-eyebrow-line, .sec-eyebrow-line--end { display: none; }

.sec-head,
.tours-row,
.reviews-panel,
.faq-list,
.final-cta-shell {
  width: 100%;
}

/* Reveal animations — transform only so content stays visible before JS */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    transform: translateY(10px);
    transition: transform 0.65s var(--ease);
  }
  .reveal.in { transform: none; }
  .d2 { transition-delay: 0.07s; }
  .d3 { transition-delay: 0.14s; }
  .anim-ready:not(.anim-visible) {
    transform: translateY(10px);
    transition: transform 0.65s var(--ease);
  }
  .anim-ready.anim-visible { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .anim-ready { opacity: 1; transform: none; }
  .hero-poster { display: block; }
}

@media (hover: none) {
  .btn-filled:hover, .btn-outlined:hover,
  .benefit-card:hover,
  .pricing-card:hover,
  .review-card:hover,
  .fab-wa:hover { transform: none; }
  .pricing-card:hover .pc-img-wrap img { transform: none; }
  .fab-wa {
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* Large screens / ultrawide */
@media (min-width: 90rem) {
  :root {
    --max-w: 80rem;
    --content-w: 72rem;
  }

  .sec-head {
    max-width: 40rem;
  }
}

/* Small phones */
@media (max-width: 23.99rem) {
  .logo-name { font-size: var(--text-sm); }
  .hero h1 { font-size: 1.75rem; }
}
