:root {
  interpolate-size: allow-keywords;

  --bg: #FAFBFC;
  --surface: #FFFFFF;
  --surface-2: #F3F4F6;
  --surface-3: #E5E7EB;
  --ink: #1A1A2E;
  --ink-soft: #4B5563;
  --ink-muted: #9CA3AF;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-light: rgba(37,99,235,0.08);
  --accent-2: #10B981;
  --accent-2-hover: #059669;
  --accent-2-light: rgba(16,185,129,0.08);
  --line: rgba(0,0,0,0.10);
  --line-strong: rgba(0,0,0,0.18);
  --danger: #DC2626;
  --warning: #F59E0B;

  --font-heading: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Consolas', monospace;

  --header-h: 72px;
  --container-max: 1320px;
  --container-pad: clamp(16px, 4vw, 32px);
  --section-pad: clamp(60px, 10vw, 120px);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-accent: 0 8px 24px rgba(37,99,235,0.18);
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-hover); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

p { max-width: 72ch; }

.mono { font-family: var(--font-mono); font-weight: 500; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

main { padding-top: var(--header-h); }

section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(250,251,252,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(250,251,252,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1100;
}
.logo:hover { color: var(--ink); }
.logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.logo-dot { color: var(--accent); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
  border-radius: 1px;
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}
.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
}
.nav-desktop .nav-cta.is-active { color: var(--surface); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
}

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 10px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  border-radius: 2px;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

/* ── MOBILE DRAWER ── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.mobile-drawer a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
  display: block;
}
.mobile-drawer a:hover,
.mobile-drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.mobile-drawer .drawer-cta {
  margin-top: 24px;
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  padding: 16px 24px;
  border-radius: 100px;
  font-weight: 700;
  border: none;
}
.mobile-drawer .drawer-cta:hover {
  background: var(--accent-hover);
  color: var(--surface);
}

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* ── SECTION HEADING ── */
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  padding: 14px 32px;
  transition: all 240ms cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  line-height: 1.3;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent);
  color: var(--surface);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-hover);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn-secondary {
  background: var(--ink);
  color: var(--surface);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-accent2 {
  background: var(--accent-2);
  color: var(--surface);
}
.btn-accent2:hover, .btn-accent2:focus-visible {
  background: var(--accent-2-hover);
  color: var(--surface);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(32px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: min(20ch, 90%);
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .accent-word { color: var(--accent); }
.hero h1 .accent2-word { color: var(--accent-2); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--accent-2); flex-shrink: 0; }

/* ── HERO MOUNTAIN DECORATION ── */
.hero-mountains {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  pointer-events: none;
}

@keyframes mountainRise {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes trailDraw {
  from { stroke-dashoffset: 800; }
  to { stroke-dashoffset: 0; }
}
@keyframes condorFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes compassSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes llamaBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) {
  @keyframes mountainRise { from, to { transform: none; opacity: 1; } }
  @keyframes trailDraw { from, to { stroke-dashoffset: 0; } }
  @keyframes condorFloat { from, to { transform: none; } }
  @keyframes compassSpin { from, to { transform: none; } }
  @keyframes llamaBounce { from, to { transform: none; } }
}

.hero-condor {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 60px;
  height: 60px;
  animation: condorFloat 8s ease-in-out infinite;
  opacity: 0.12;
  z-index: 1;
}

/* ── CONFIGURATOR ── */
.configurator-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.config-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .config-wrapper { grid-template-columns: 1fr; gap: 32px; }
}

.config-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.config-step {
  position: relative;
  padding-left: 40px;
}
.config-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.config-step h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}

/* Dotted connector between steps */
.config-step + .config-step::after {
  content: '';
  position: absolute;
  left: 13px;
  top: -28px;
  width: 2px;
  height: 24px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0, var(--accent) 3px,
    transparent 3px, transparent 7px
  );
}

/* Region selector */
.region-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.region-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  transition: all 240ms cubic-bezier(.4,0,.2,1);
}
.region-btn svg { width: 28px; height: 28px; }
.region-btn:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.region-btn.is-selected {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

/* Duration slider */
.slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-value {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--accent);
  min-width: 80px;
  text-align: right;
}
input[type="range"] {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
  transition: transform 180ms;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

/* Activity chips */
.activity-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.activity-chip {
  padding: 10px 20px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 240ms cubic-bezier(.4,0,.2,1);
}
.activity-chip:hover {
  border-color: var(--accent-2);
  background: var(--accent-2-light);
}
.activity-chip.is-selected {
  border-color: var(--accent-2);
  background: var(--accent-2-light);
  color: var(--accent-2-hover);
}

/* Budget selector */
.budget-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.budget-btn {
  padding: 14px 12px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: all 240ms cubic-bezier(.4,0,.2,1);
}
.budget-btn:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.budget-btn.is-selected {
  border-color: var(--accent);
  background: var(--accent-light);
}
.budget-btn .budget-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  display: block;
}
.budget-btn .budget-range {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 4px;
  display: block;
}

/* Peru map panel */
.config-map-panel {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.peru-map-container {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px;
  text-align: center;
  position: relative;
}
.peru-map-container svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
}
.peru-map-container .map-region {
  transition: fill 400ms cubic-bezier(.4,0,.2,1), stroke 400ms cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.peru-map-container .map-region:hover {
  filter: brightness(0.92);
}
.map-region.is-highlighted-costa { fill: #3B82F6; stroke: #2563EB; }
.map-region.is-highlighted-sierra { fill: #10B981; stroke: #059669; }
.map-region.is-highlighted-selva { fill: #F59E0B; stroke: #D97706; }
.map-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Itinerary result */
.config-result {
  margin-top: 24px;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  display: none;
}
.config-result.is-visible { display: block; }
.config-result h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.config-result h3 svg { width: 22px; height: 22px; color: var(--accent); }
.itinerary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.itinerary-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.92rem;
}
.itinerary-list li:last-child { border-bottom: none; }
.itinerary-day {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-result {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0 8px;
  border-top: 2px dashed var(--line);
}
.price-label {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.price-value {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 2rem;
  color: var(--accent);
}
.price-suffix {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.price-disclaimer {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 6px;
}

/* ── DESTINATIONS GRID ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .dest-grid { grid-template-columns: 1fr; }
}

.dest-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
}
.dest-card-img {
  width: 100%;
  height: 200px;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.dest-card:hover .dest-card-img img {
  transform: scale(1.04);
}
.dest-card-img .dest-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(26,26,46,0.8);
  color: var(--surface);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dest-card-body {
  padding: 20px;
}
.dest-card-body h4 {
  margin-bottom: 6px;
}
.dest-card-body .dest-region {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.dest-card-body .dest-price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent-2);
}
.dest-card-body .dest-price span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
}
.step-card {
  text-align: center;
  position: relative;
  padding: 32px 24px;
}
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon svg { width: 28px; height: 28px; color: var(--accent); }
.step-card h4 {
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 auto;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
/* Dotted line between steps (desktop) */
@media (min-width: 769px) {
  .step-card + .step-card::before {
    content: '';
    position: absolute;
    top: 60px;
    left: -22px;
    width: 44px;
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      var(--accent) 0, var(--accent) 4px,
      transparent 4px, transparent 10px
    );
  }
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-light);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-meta .t-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.testimonial-meta .t-detail {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
}
.pricing-card.is-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.pricing-card.is-featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  padding: 4px 16px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card h4 { margin-bottom: 6px; }
.pricing-card .pricing-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.pricing-card .pricing-amount {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.pricing-card .pricing-per {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.pricing-included {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.pricing-included li {
  padding: 6px 0;
  font-size: 0.88rem;
  display: flex;
  align-items: start;
  gap: 8px;
}
.pricing-included li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--accent-2-light);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-excluded {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.pricing-excluded li {
  padding: 4px 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  display: flex;
  align-items: start;
  gap: 8px;
}
.pricing-excluded li::before {
  content: '×';
  color: var(--danger);
  font-weight: 700;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}
.pricing-delivery {
  font-size: 0.78rem;
  color: var(--ink-muted);
  padding-top: 10px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
}
.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-muted);
  padding: 16px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
}

/* ── PROCESS / TIMELINE ── */
.process-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0, var(--accent) 6px,
    transparent 6px, transparent 12px
  );
}
@media (max-width: 640px) {
  .process-timeline::before { left: 18px; }
}
.process-step {
  position: relative;
  padding-left: 64px;
  padding-bottom: 40px;
}
@media (max-width: 640px) {
  .process-step { padding-left: 52px; }
}
.process-step:last-child { padding-bottom: 0; }
.process-step-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  z-index: 1;
}
@media (max-width: 640px) {
  .process-step-dot { left: 6px; width: 24px; height: 24px; }
}
.process-step-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.process-step h4 { margin-bottom: 6px; font-size: 1.05rem; }
.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  color: var(--ink-muted);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 22px;
}
.faq-body-inner {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.contact-channel {
  display: contents;
  cursor: default;
}
.contact-channel .ch-icon {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}
.contact-channel .ch-content {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-channel:hover .ch-icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-channel:hover .ch-content {
  transform: translateX(4px);
}
.ch-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.ch-value {
  font-size: 0.92rem;
  color: var(--ink);
  word-break: break-all;
  overflow-wrap: anywhere;
}
.ch-value a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.ch-value a:hover { color: var(--accent); text-decoration-color: var(--accent); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; }
.field .field-error {
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 4px;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
}
.field.has-error .field-error { display: block; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
}
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: start;
}
.checkbox-row label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}

.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; tab-index: -1; }

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-top: 14px;
  display: none;
}
.form-status.is-success {
  display: block;
  background: var(--accent-2-light);
  color: var(--accent-2-hover);
  border: 1px solid var(--accent-2);
}
.form-status.is-error {
  display: block;
  background: rgba(220,38,38,0.08);
  color: var(--danger);
  border: 1px solid var(--danger);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--ink);
  color: var(--surface);
  padding: 48px 0;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--surface);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ── CANCELLATION TABLE ── */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) {
  min-width: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}
th {
  background: var(--surface-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 18px;
  text-align: left;
  color: var(--ink);
}
td {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
tr:hover td { background: var(--accent-light); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--surface);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 200ms, padding-left 200ms;
}
.footer-col a:hover {
  color: var(--surface);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--surface); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* Stagger */
.reveal[style*="--i:1"] { transition-delay: calc(60ms * 1); }
.reveal[style*="--i:2"] { transition-delay: calc(60ms * 2); }
.reveal[style*="--i:3"] { transition-delay: calc(60ms * 3); }
.reveal[style*="--i:4"] { transition-delay: calc(60ms * 4); }
.reveal[style*="--i:5"] { transition-delay: calc(60ms * 5); }
.reveal[style*="--i:6"] { transition-delay: calc(60ms * 6); }
.reveal[style*="--i:7"] { transition-delay: calc(60ms * 7); }
.reveal[style*="--i:8"] { transition-delay: calc(60ms * 8); }
.reveal[style*="--i:9"] { transition-delay: calc(60ms * 9); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btns button {
  flex: 1;
  min-height: 44px;
  min-width: 100px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 200ms;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}
.cookie-btns button[data-consent="accept"] {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.cookie-btns button[data-consent="accept"]:hover {
  background: var(--accent-hover);
  color: var(--surface);
  border-color: var(--accent-hover);
}
.cookie-btns button[data-consent="reject"]:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--surface);
}
.cookie-btns button[data-consent="settings"]:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--surface);
}

/* ── NICHE ANIMATIONS ── */
@keyframes peakRise {
  0% { transform: scaleY(0); opacity: 0; }
  100% { transform: scaleY(1); opacity: 1; }
}
@keyframes trailPath {
  from { stroke-dashoffset: 1200; }
  to { stroke-dashoffset: 0; }
}
@keyframes compassNeedle {
  0% { transform: rotate(-20deg); }
  50% { transform: rotate(20deg); }
  100% { transform: rotate(-20deg); }
}
@keyframes llamaWalk {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(2px) translateY(-3px); }
  50% { transform: translateX(0) translateY(0); }
  75% { transform: translateX(-2px) translateY(-3px); }
}
@keyframes condorGlide {
  0% { transform: translateX(-10px) translateY(0) rotate(-2deg); }
  50% { transform: translateX(10px) translateY(-6px) rotate(2deg); }
  100% { transform: translateX(-10px) translateY(0) rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) {
  @keyframes peakRise { from, to { transform: none; opacity: 1; } }
  @keyframes trailPath { from, to { stroke-dashoffset: 0; } }
  @keyframes compassNeedle { from, to { transform: none; } }
  @keyframes llamaWalk { from, to { transform: none; } }
  @keyframes condorGlide { from, to { transform: none; } }
}

.anim-peak-rise {
  transform-origin: bottom;
  animation: peakRise 800ms cubic-bezier(.2,.7,.2,1) forwards;
}
.anim-trail-path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: trailPath 2s ease-out forwards;
}
.anim-compass { animation: compassNeedle 4s ease-in-out infinite; }
.anim-llama { animation: llamaWalk 3s ease-in-out infinite; }
.anim-condor { animation: condorGlide 10s ease-in-out infinite; }

/* Hero letter stagger */
.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: letterReveal 500ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes letterReveal {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-letter { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* Counter animation handled by JS, but the visual style */
.counter-value[data-counting] {
  transition: none;
}

/* Card hover tinted shadow */
.dest-card:hover {
  box-shadow: 0 12px 28px -8px rgba(37,99,235,0.22);
}
.pricing-card:hover {
  box-shadow: 0 12px 28px -8px rgba(37,99,235,0.18);
}
.testimonial-card {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(37,99,235,0.12);
}

/* ── HERO DOTTED DECORATION ── */
.hero-dots {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 120px;
  height: 120px;
  opacity: 0.06;
  z-index: 0;
  background: radial-gradient(circle, var(--ink) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}
.hero-dots-right {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 100px;
  height: 100px;
  opacity: 0.05;
  z-index: 0;
  background: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: var(--section-pad);
  min-height: 60vh;
}
.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}
.legal-page .legal-date {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 14px;
}
.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-page p {
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.7;
}
.legal-page ul, .legal-page ol {
  margin-bottom: 14px;
  padding-left: 24px;
  color: var(--ink-soft);
}
.legal-page li { margin-bottom: 6px; line-height: 1.6; }

/* ── ABOUT PAGE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-photo {
  width: 100%;
  height: 260px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  font-weight: 700;
}
.team-info {
  padding: 24px;
}
.team-info h4 { margin-bottom: 4px; }
.team-info .team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-info p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── SITEMAP PAGE ── */
.sitemap-list {
  columns: 2;
  column-gap: 48px;
  list-style: none;
  padding: 0;
}
@media (max-width: 640px) { .sitemap-list { columns: 1; } }
.sitemap-list li {
  padding: 8px 0;
  break-inside: avoid;
}
.sitemap-list a {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── 404 ── */
.page-404 {
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-404 .big-404 {
  font-family: var(--font-mono);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 500;
  color: var(--surface-3);
  line-height: 1;
}
.page-404 h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 16px 0 12px;
}
.page-404 p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* ── PRINT ── */
@media print {
  .site-header, .mobile-drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── DARK BAND SECTION ── */
.dark-band {
  background: var(--ink);
  color: var(--surface);
}
.dark-band h2, .dark-band h3, .dark-band h4 { color: var(--surface); }
.dark-band p { color: rgba(255,255,255,0.7); }
.dark-band .eyebrow { color: var(--accent-2); }
.dark-band .eyebrow::before { background: var(--accent-2); }

/* ── CONTACT PAGE ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  transition: width 60ms linear;
  pointer-events: none;
  z-index: 2;
}

/* ── DRAWER CLOSE BUTTON ── */
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: background 200ms cubic-bezier(.4,0,.2,1), border-color 200ms;
  z-index: 10;
}
.drawer-close:hover {
  background: var(--surface-2);
  border-color: var(--ink);
}
