/* ============================================================
   SuriRoots Adventures — Concept Site v1
   Design language: editorial, cinematic, warm, premium.
   ============================================================ */

:root {
  /* Palette */
  --paper: #f4ede0;
  --paper-2: #ece2cf;
  --paper-3: #e1d4ba;
  --cream: #faf6ed;
  --ink: #0e1a16;
  --ink-2: #16241f;
  --ink-soft: #4b5b54;
  --ink-mute: #6e7c75;
  --moss: #1c3a30;
  --moss-deep: #0f231d;
  --river: #21564a;
  --copper: #a47547;
  --copper-deep: #80572f;
  --copper-soft: #c8a276;
  --sand: #d6c19a;
  --line: rgba(14, 26, 22, 0.12);
  --line-strong: rgba(14, 26, 22, 0.22);
  --line-on-dark: rgba(244, 237, 224, 0.16);
  --line-on-dark-strong: rgba(244, 237, 224, 0.32);

  /* Effects */
  --shadow-sm: 0 6px 18px rgba(14, 26, 22, 0.08);
  --shadow-md: 0 14px 40px rgba(14, 26, 22, 0.12);
  --shadow-lg: 0 30px 80px rgba(14, 26, 22, 0.18);

  /* Radii */
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Layout */
  --content: 1320px;
  --content-narrow: 980px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Type */
  --font-display: "Newsreader", "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 0.65, 0.2);
}

/* ------------ Base ------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(1200px 800px at 8% -10%, rgba(200, 162, 118, 0.18), transparent 60%),
    radial-gradient(1000px 700px at 110% 0%, rgba(33, 86, 74, 0.10), transparent 55%),
    linear-gradient(180deg, #f7f1e4 0%, var(--paper) 35%, #efe5d2 100%);
  overflow-x: hidden;
}

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--copper);
  color: var(--cream);
}

/* ------------ Typography ------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper-deep);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 7.6vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.1;
}

h4 {
  font-size: 1.1rem;
  line-height: 1.25;
}

.display-italic {
  font-style: italic;
  color: var(--copper-deep);
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ------------ Layout helpers ------------ */
.wrap {
  width: min(100% - calc(var(--gutter) * 2), var(--content));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - calc(var(--gutter) * 2), var(--content-narrow));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.section--tight {
  padding: clamp(48px, 6vw, 96px) 0;
}

.section--dark {
  background: var(--moss-deep);
  color: var(--paper);
}

.section--dark p,
.section--dark .lede {
  color: rgba(244, 237, 224, 0.78);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--paper);
}

.section--dark .eyebrow {
  color: var(--copper-soft);
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

.section--dark .divider {
  background: var(--line-on-dark);
}

/* ------------ Buttons ------------ */
.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  --bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  min-height: 52px;
  border-radius: var(--r-pill);
  border: 1px solid var(--bd);
  background: var(--bg);
  color: var(--fg);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 220ms var(--ease-out), background 220ms ease,
    color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--primary {
  --bg: var(--ink);
  --fg: var(--cream);
}

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  --bd: var(--line-strong);
}

.btn--ghost:hover {
  --bg: var(--ink);
  --fg: var(--cream);
}

.btn--copper {
  --bg: var(--copper);
  --fg: var(--cream);
}

.btn--on-dark {
  --bg: var(--cream);
  --fg: var(--ink);
}

.btn--on-dark.btn--ghost {
  --bg: transparent;
  --fg: var(--cream);
  --bd: var(--line-on-dark-strong);
}

.btn--on-dark.btn--ghost:hover {
  --bg: var(--cream);
  --fg: var(--ink);
  --bd: transparent;
}

.btn .arrow {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transition: transform 220ms var(--ease-out);
}

.btn:hover .arrow {
  transform: translate(3px, -1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 200ms ease, gap 220ms var(--ease-out);
}

.text-link:hover {
  color: var(--copper-deep);
  gap: 12px;
}

.section--dark .text-link:hover {
  color: var(--copper-soft);
}

/* ------------ Header ------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 18px 0;
  transition: padding 240ms ease, background 260ms ease,
    box-shadow 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(247, 241, 228, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(14, 26, 22, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--moss-deep);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(244, 237, 224, 0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.brand-sub {
  margin-top: 4px;
  color: var(--ink-mute);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 200ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease-out);
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.55);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  padding: 6px 11px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--r-pill);
  transition: background 220ms ease, color 220ms ease;
}

.lang-button:hover {
  color: var(--ink);
}

.lang-button.active {
  background: var(--ink);
  color: var(--cream);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--moss-deep);
  color: var(--paper);
  padding: 28px var(--gutter);
  display: none;
  flex-direction: column;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 360ms var(--ease-out);
}

.mobile-drawer.open {
  transform: translateY(0);
}

.mobile-drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-drawer-close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark-strong);
  background: transparent;
  color: var(--paper);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3rem);
  line-height: 1.05;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-on-dark);
}

.mobile-drawer-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* ------------ Hero ------------ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  margin-top: -86px;
  padding-top: 86px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(14, 26, 22, 0.55) 0%, rgba(14, 26, 22, 0.15) 35%, rgba(14, 26, 22, 0.85) 100%),
    url("https://images.pexels.com/photos/11871982/pexels-photo-11871982.jpeg?auto=compress&cs=tinysrgb&w=2400") center / cover no-repeat;
  transform: scale(1.05);
  animation: heroPan 18s var(--ease-out) forwards;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(244, 237, 224, 0.8) 1px, transparent 1px);
  background-size: 3px 3px;
}

@keyframes heroPan {
  to {
    transform: scale(1);
  }
}

.hero-inner {
  display: grid;
  align-content: end;
  gap: clamp(40px, 6vw, 72px);
  padding: clamp(80px, 12vw, 160px) 0 clamp(48px, 6vw, 80px);
}

.hero-eyebrow {
  color: var(--copper-soft);
}

.hero-eyebrow::before {
  background: var(--copper-soft);
}

.hero-title {
  color: var(--paper);
  max-width: 18ch;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.95;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: heroWord 900ms var(--ease-out) forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 80ms; }
.hero-title .word:nth-child(2) { animation-delay: 160ms; }
.hero-title .word:nth-child(3) { animation-delay: 240ms; }
.hero-title .word:nth-child(4) { animation-delay: 320ms; }
.hero-title .word:nth-child(5) { animation-delay: 400ms; }

@keyframes heroWord {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  max-width: 60ch;
  color: rgba(244, 237, 224, 0.86);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line-on-dark);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(244, 237, 224, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta strong {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: -0.005em;
  font-size: 1.2rem;
  color: var(--paper);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 28px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(244, 237, 224, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(244, 237, 224, 0.8), rgba(244, 237, 224, 0));
  animation: scrollPulse 1800ms ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ------------ Marquee strip ------------ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.005em;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}

.marquee-track i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ------------ Manifesto ------------ */
.manifesto {
  text-align: left;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 26ch;
}

.manifesto-quote em {
  color: var(--copper-deep);
  font-style: italic;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.manifesto-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 38ch;
}

.manifesto-meta p {
  font-size: 1.05rem;
}

/* ------------ Pillars ------------ */
.pillars {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
}

.pillar-list {
  display: grid;
  gap: 4px;
}

.pillar {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  cursor: default;
  transition: padding 280ms var(--ease-out);
}

.pillar:last-child {
  border-bottom: 1px solid var(--line);
}

.pillar-num {
  color: var(--copper-deep);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  padding-top: 6px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.pillar-body {
  margin-top: 8px;
  max-width: 52ch;
}

.pillar-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--copper-deep);
  margin-top: 4px;
  transition: background 220ms ease, color 220ms ease,
    transform 220ms var(--ease-out);
}

.pillar:hover .pillar-mark {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--cream);
  transform: rotate(45deg);
}

.pillars-cover {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 580px;
  box-shadow: var(--shadow-md);
}

.pillars-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1200ms var(--ease-out);
}

.pillars-cover:hover img {
  transform: scale(1.08);
}

.pillars-cover-tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(14, 26, 22, 0.65);
  backdrop-filter: blur(10px);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ------------ Section header (eyebrow + title + lede) ------------ */
.section-head {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-head h2 {
  max-width: 16ch;
}

.section-head .lede {
  margin-top: 18px;
  align-self: end;
}

/* ------------ Collection ------------ */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.col-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms var(--ease-out), box-shadow 320ms ease;
}

.col-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.col-card .col-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.col-card .col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}

.col-card:hover .col-image img {
  transform: scale(1.06);
}

.col-card .col-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  background: rgba(14, 26, 22, 0.78);
  color: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.col-card .col-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.col-card .col-body h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.col-card.col-card--feature {
  grid-column: span 7;
}

.col-card.col-card--small {
  grid-column: span 5;
}

.col-card.col-card--row {
  grid-column: span 4;
}

.col-card--text {
  background: var(--moss-deep);
  color: var(--paper);
  border-color: rgba(244, 237, 224, 0.08);
}

.col-card--text h3 {
  color: var(--paper);
}

.col-card--text p {
  color: rgba(244, 237, 224, 0.78);
}

.col-card--text .col-body {
  padding: 32px 28px;
}

.col-card--text .col-tag {
  position: static;
  align-self: flex-start;
  background: rgba(244, 237, 224, 0.12);
  color: var(--copper-soft);
}

.col-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.col-meta-row::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
}

.col-card--text .col-meta-row {
  color: rgba(244, 237, 224, 0.6);
}

/* ------------ Featured Routes ------------ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.route-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 320px;
  transition: transform 320ms var(--ease-out), box-shadow 320ms ease;
}

.route-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.route-card-image {
  position: relative;
  overflow: hidden;
}

.route-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms var(--ease-out);
}

.route-card:hover .route-card-image img {
  transform: scale(1.06);
}

.route-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 26, 22, 0) 50%, rgba(14, 26, 22, 0.45) 100%);
}

.route-card-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.route-card-body .badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: rgba(14, 26, 22, 0.06);
  color: var(--ink-soft);
}

.badge--copper {
  background: rgba(164, 117, 71, 0.16);
  color: var(--copper-deep);
}

.badge--moss {
  background: rgba(28, 58, 48, 0.12);
  color: var(--moss);
}

.route-card-body h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.route-card-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}

.price small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ------------ Guide section ------------ */
.guide {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.guide-portrait {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}

.guide-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.guide-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 26, 22, 0.7));
}

.guide-portrait-name {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: var(--paper);
  font-family: var(--font-display);
}

.guide-portrait-name strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.guide-portrait-name span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.guide-copy h2 {
  max-width: 14ch;
}

.guide-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.guide-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-stat strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.guide-stat span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.guide-attrs {
  display: grid;
  gap: 4px;
  margin-top: 28px;
}

.guide-attrs article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.guide-attrs article:last-child {
  border-bottom: 0;
}

.guide-attrs article::before {
  content: attr(data-num);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--copper-deep);
  padding-top: 4px;
}

.guide-attrs strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.guide-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ------------ A Day With (timeline) ------------ */
.day-band {
  background:
    radial-gradient(1000px 600px at 20% 0%, rgba(164, 117, 71, 0.15), transparent 60%),
    var(--moss-deep);
  color: var(--paper);
}

.day-band h2 {
  color: var(--paper);
  max-width: 18ch;
}

.day-track {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.day-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    rgba(244, 237, 224, 0) 0,
    rgba(244, 237, 224, 0.4) 8%,
    rgba(244, 237, 224, 0.4) 92%,
    rgba(244, 237, 224, 0) 100%);
}

.day-step {
  position: relative;
  padding-top: 60px;
}

.day-step::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(164, 117, 71, 0.3);
}

.day-step time {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--copper-soft);
  margin-bottom: 14px;
}

.day-step h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--paper);
  margin-bottom: 8px;
}

.day-step p {
  color: rgba(244, 237, 224, 0.75);
}

.day-image-row {
  margin-top: clamp(48px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.day-image-row figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

.day-image-row figure:nth-child(2),
.day-image-row figure:nth-child(4) {
  margin-top: 32px;
}

.day-image-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms var(--ease-out);
}

.day-image-row figure:hover img {
  transform: scale(1.05);
}

/* ------------ Build your trip ------------ */
.builder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.builder-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.builder-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.builder-step legend {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  padding: 0;
}

.builder-step legend strong {
  font-family: var(--font-mono);
  color: var(--copper-deep);
  letter-spacing: 0.14em;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.choice input:checked + span {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.choice input:focus-visible + span {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.builder-summary {
  margin-top: 6px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--paper-2);
  border: 1px dashed var(--line-strong);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.builder-summary strong {
  color: var(--ink);
  font-weight: 600;
}

.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.builder-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.builder-aside h2 {
  max-width: 14ch;
}

.builder-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.builder-aside li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.builder-aside li::before {
  content: "✓";
  color: var(--copper-deep);
  font-weight: 700;
  margin-top: 1px;
}

/* ------------ Journal ------------ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journal-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: transparent;
}

.journal-card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.06);
}

.journal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-deep);
}

.journal-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.journal-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  margin-top: 4px;
}

.journal-card p {
  font-size: 0.95rem;
}

/* ------------ Reviews ------------ */
.reviews {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
}

.review-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.review-tile {
  padding: 26px 24px;
  border-radius: var(--r-md);
  background: rgba(244, 237, 224, 0.05);
  border: 1px solid var(--line-on-dark);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-tile p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--paper);
}

.review-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-on-dark);
}

.review-foot strong {
  font-size: 0.92rem;
  color: var(--paper);
  font-weight: 600;
}

.review-foot span {
  font-size: 0.78rem;
  color: rgba(244, 237, 224, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stars {
  color: var(--copper-soft);
  letter-spacing: 0.08em;
}

.press {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-on-dark);
}

.press span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(244, 237, 224, 0.7);
  letter-spacing: 0.005em;
}

.press strong {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.45);
  margin-right: 8px;
}

/* ------------ Inquiry / Contact ------------ */
.inquiry {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(48px, 6vw, 96px) clamp(28px, 4vw, 64px);
  color: var(--paper);
  background: var(--moss-deep);
}

.inquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(15, 35, 29, 0.85), rgba(28, 58, 48, 0.6)),
    url("https://images.pexels.com/photos/6942684/pexels-photo-6942684.jpeg?auto=compress&cs=tinysrgb&w=2000") center / cover;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.inquiry h2 {
  color: var(--paper);
  max-width: 17ch;
}

.inquiry p {
  color: rgba(244, 237, 224, 0.82);
}

.inquiry-channels {
  display: grid;
  gap: 14px;
}

.channel {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: rgba(244, 237, 224, 0.06);
  border: 1px solid var(--line-on-dark);
  color: var(--paper);
  transition: background 220ms ease, transform 220ms var(--ease-out);
}

.channel:hover {
  background: rgba(244, 237, 224, 0.1);
  transform: translateY(-2px);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(164, 117, 71, 0.22);
  color: var(--copper-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.channel strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

.channel small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.6);
  margin-top: 2px;
}

.channel-arrow {
  font-size: 1.2rem;
  color: rgba(244, 237, 224, 0.5);
  transition: transform 220ms var(--ease-out), color 220ms ease;
}

.channel:hover .channel-arrow {
  color: var(--copper-soft);
  transform: translate(4px, -2px);
}

/* ------------ Footer ------------ */
.site-footer {
  background: var(--ink-2);
  color: rgba(244, 237, 224, 0.85);
  padding: clamp(56px, 6vw, 96px) 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: rgba(244, 237, 224, 0.6);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--copper-soft);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin-bottom: 12px;
}

.footer-tag {
  font-size: 0.95rem;
  max-width: 38ch;
  color: rgba(244, 237, 224, 0.7);
}

.footer-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-meta a {
  font-size: 0.84rem;
  color: rgba(244, 237, 224, 0.65);
  border: 1px solid var(--line-on-dark-strong);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  transition: background 200ms ease, color 200ms ease;
}

.footer-meta a:hover {
  background: rgba(244, 237, 224, 0.08);
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line-on-dark);
  font-size: 0.82rem;
  color: rgba(244, 237, 224, 0.5);
}

/* ------------ Floating WhatsApp ------------ */
.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  background: #1f3d35;
  color: var(--paper);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 220ms var(--ease-out), background 220ms ease;
}

.fab-whatsapp:hover {
  transform: translateY(-3px);
  background: #25d366;
  color: #fff;
}

.fab-whatsapp .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(244, 237, 224, 0.15);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: #c8eed1;
}

.fab-whatsapp:hover .dot {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ------------ Scroll reveal ------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ------------ Responsive ------------ */
@media (max-width: 1180px) {
  .pillars,
  .guide,
  .builder,
  .reviews,
  .inquiry-grid,
  .manifesto-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .pillars-cover {
    min-height: 460px;
  }

  .guide-portrait {
    aspect-ratio: 4 / 5;
    max-width: 560px;
  }

  .col-card.col-card--feature,
  .col-card.col-card--small,
  .col-card.col-card--row {
    grid-column: span 6;
  }

  .routes-grid,
  .journal-grid,
  .review-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .day-track,
  .day-image-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .lang-switch {
    display: none;
  }
  .hero {
    margin-top: -76px;
    padding-top: 76px;
  }
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
  }
  .col-card.col-card--feature,
  .col-card.col-card--small,
  .col-card.col-card--row {
    grid-column: span 12;
  }
  .routes-grid,
  .journal-grid,
  .review-tiles {
    grid-template-columns: 1fr;
  }
  .route-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .route-card-image {
    aspect-ratio: 4 / 3;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .day-step {
    padding-top: 36px;
  }
  .day-track::before {
    display: none;
  }
  .day-step::before {
    top: 0;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .fab-whatsapp {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px 10px 10px;
    font-size: 0.84rem;
  }
  .fab-whatsapp .dot {
    width: 26px;
    height: 26px;
  }
}

/* ============================================================
   v2 ADDITIONS — Signature, Stays, Collab, Shop, Pillars-row,
   Shirts band
   ============================================================ */

/* ---------- Eyebrow on dark ---------- */
.eyebrow--on-dark {
  color: var(--copper-soft);
}
.eyebrow--on-dark::before {
  background: var(--copper-soft);
}

/* ---------- Pillars row (3 mini cards) ---------- */
.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-mini {
  position: relative;
  padding: 28px 26px 26px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.pillar-mini .pillar-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--copper-deep);
  margin-bottom: 14px;
}
.pillar-mini h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: var(--ink);
}
.pillar-mini p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}
@media (max-width: 820px) {
  .pillars-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Signature grid (2 hero cards) ---------- */
.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.sig-card {
  display: flex;
  flex-direction: column;
  background: rgba(244, 237, 224, 0.06);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease-out);
}
.sig-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-on-dark-strong);
}
.sig-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.sig-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.sig-card:hover .sig-card-image img {
  transform: scale(1.04);
}
.sig-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(15, 35, 29, 0.78);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}
.sig-card-body {
  padding: 28px 28px 30px;
  color: var(--paper);
}
.sig-card-body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}
.sig-card-body p {
  color: rgba(244, 237, 224, 0.78);
  margin: 0 0 16px 0;
  font-size: 1rem;
  line-height: 1.6;
}
.sig-meta-row {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--copper-soft);
  margin-bottom: 18px;
}
.sig-card-body .text-link {
  color: var(--paper);
  font-weight: 600;
}
@media (max-width: 820px) {
  .signature-grid { grid-template-columns: 1fr; gap: 20px; }
  .sig-card-body h3 { font-size: 1.6rem; }
}

/* ---------- Stays grid ---------- */
.stays-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.stay-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.stay-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stay-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.stay-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.stay-card:hover .stay-card-image img { transform: scale(1.04); }
.stay-card-body {
  padding: 24px 24px 26px;
}
.stay-card-body .badge {
  margin-bottom: 12px;
}
.stay-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 10px 0;
  color: var(--ink);
}
.stay-card-body p {
  color: var(--ink-soft);
  margin: 0 0 16px 0;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .stays-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Collab banner ---------- */
.collab-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
  background: rgba(244, 237, 224, 0.04);
}
.collab-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.collab-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collab-body {
  padding: 48px 44px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.collab-body h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 12px 0 16px 0;
  color: var(--paper);
}
.collab-body p {
  color: rgba(244, 237, 224, 0.78);
  margin: 0 0 24px 0;
  line-height: 1.6;
  max-width: 48ch;
}
@media (max-width: 820px) {
  .collab-banner { grid-template-columns: 1fr; }
  .collab-image { min-height: 240px; }
  .collab-body { padding: 32px 24px; }
}

/* ---------- Shirts band ---------- */
.shirts-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.shirts-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
}
.shirts-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  transform: scale(1.03);
  transition: transform 20s var(--ease-out);
}
.shirts-photo.is-zooming img {
  transform: scale(1.14);
}
.shirts-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 14px 0 12px 0;
  color: var(--ink);
}
.shirts-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 820px) {
  .shirts-band { grid-template-columns: 1fr; gap: 22px; }
  .shirts-photo { aspect-ratio: 4 / 5; }
}

/* ---------- Live reels ---------- */
.live-reels {
  background:
    radial-gradient(1000px 600px at 100% 0%, rgba(28, 58, 48, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(250, 246, 237, 0.7), rgba(244, 237, 224, 0.8));
}

.reels-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: start;
}

.reel-card {
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--cream);
}

.reel-card video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: var(--moss-deep);
}

.reel-card--wide video {
  height: 620px;
}

.reel-card--portrait video {
  object-position: center 26%;
}

.reel-copy {
  padding: 18px 20px 22px;
}

.reel-copy span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-deep);
  font-family: var(--font-mono);
}

.reel-copy h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

@media (max-width: 1180px) {
  .reels-grid {
    grid-template-columns: 1fr;
  }
  .reel-card--wide video {
    height: 480px;
  }
}

@media (max-width: 820px) {
  .reel-card video,
  .reel-card--wide video {
    height: 320px;
  }
}

/* ---------- Shop grid ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shop-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out);
}
.shop-card:hover { transform: translateY(-3px); }
.shop-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 18px;
}
.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.shop-card:hover .shop-card-image img { transform: scale(1.04); }
.shop-card h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
  margin: 0 22px 6px;
  color: var(--ink);
}
.shop-card p {
  margin: 0 22px 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.shop-soon {
  margin: auto 22px 0;
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(164, 117, 71, 0.14);
  color: var(--copper-deep);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}
@media (max-width: 820px) {
  .shop-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Reviews tweak (3 instead of 4) ---------- */
.review-tiles {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .review-tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .review-tiles { grid-template-columns: 1fr; }
}

/* ============================================================
   v3 ADDITIONS — Header polish, hero motion, manifesto editorial,
   pillar luxe, guide pull-quote, micro-animations
   ============================================================ */

/* ---------- HEADER POLISH ---------- */
.site-header {
  isolation: isolate;
  transition: padding 0.45s var(--ease-out), background 0.5s var(--ease-out);
  backdrop-filter: saturate(120%) blur(0px);
  -webkit-backdrop-filter: saturate(120%) blur(0px);
}
.site-header.is-scrolled {
  background: rgba(247, 241, 228, 0.78);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(14, 26, 22, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 14px 30px -20px rgba(14, 26, 22, 0.18);
}
.header-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(800px 60px at 18% 100%, rgba(164, 117, 71, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  z-index: -1;
}
.site-header.is-scrolled .header-glow { opacity: 1; }

/* Brand mark — subtle slow pulse + entrance */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--copper-deep);
  border: 1px solid rgba(164, 117, 71, 0.25);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 237, 224, 0.6), rgba(244, 237, 224, 0.0));
  font-size: 0; /* hide any text fallback */
  transition: transform 0.6s var(--ease-out), border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  animation: brandPulse 6s ease-in-out infinite;
}
.brand:hover .brand-mark {
  transform: rotate(8deg) scale(1.04);
  border-color: var(--copper);
  box-shadow: 0 4px 22px -6px rgba(164, 117, 71, 0.45);
}
@keyframes brandPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(164, 117, 71, 0.0); }
  50%      { box-shadow: 0 0 0 8px rgba(164, 117, 71, 0.06); }
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.brand-sub {
  font-style: italic;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  opacity: 0.85;
}

/* Site nav — animated underline draw */
.site-nav a {
  position: relative;
  padding: 8px 4px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.005em;
  transition: color 0.35s var(--ease-out);
}
.site-nav a > span {
  position: relative;
  display: inline-block;
}
.site-nav a > span::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, var(--copper) 0%, var(--copper-soft) 100%);
  transition: right 0.4s var(--ease-out);
}
.site-nav a:hover { color: var(--copper-deep); }
.site-nav a:hover > span::after { right: 0; }

/* Header CTA arrow nudge */
.btn .arrow {
  transition: transform 0.35s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(3px); }

/* Lang switch — refined */
.lang-switch {
  position: relative;
  padding: 3px;
  background: rgba(14, 26, 22, 0.05);
  border: 1px solid rgba(14, 26, 22, 0.08);
  border-radius: var(--r-pill);
}
.lang-button {
  background: transparent;
  border: 0;
  padding: 5px 11px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.lang-button:hover { color: var(--ink); }
.lang-button.active {
  background: var(--ink);
  color: var(--paper);
}

/* ---------- HERO — Ken Burns motion, picture asset, shine ---------- */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}
.hero-bg picture,
.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg video {
  z-index: 2;
}
.hero-bg-fallback {
  z-index: 1;
}
.hero-bg--motion img,
.hero-bg--motion video {
  animation: heroDrift 26s ease-in-out infinite alternate;
  transform-origin: 50% 55%;
  will-change: transform;
}
.hero-bg.is-video-ready .hero-bg-fallback {
  opacity: 0;
}
@keyframes heroDrift {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 35, 29, 0.10) 0%, rgba(15, 35, 29, 0.55) 100%),
    radial-gradient(80% 60% at 30% 30%, rgba(15, 35, 29, 0) 30%, rgba(15, 35, 29, 0.55) 100%);
  pointer-events: none;
}

/* Soft shimmer pass — simulates moving water light */
.hero-shine {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 35%,
    rgba(255, 255, 255, 0.07) 50%,
    rgba(255, 255, 255, 0.0) 65%,
    transparent 100%
  );
  background-size: 220% 220%;
  animation: heroShine 14s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes heroShine {
  0%   { background-position: -110% 0; }
  100% { background-position: 110% 0; }
}

/* Hero title — staggered word reveal */
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero-title .word > span {
  display: inline-block;
  transform: translateY(108%);
  animation: heroLift 1.1s var(--ease-out) forwards;
}
.hero-title .word:nth-child(1) > span { animation-delay: 0.10s; }
.hero-title .word:nth-child(2) > span { animation-delay: 0.22s; }
.hero-title .word:nth-child(3) > span { animation-delay: 0.34s; }
.hero-title .word:nth-child(4) > span { animation-delay: 0.46s; }
@keyframes heroLift {
  to { transform: translateY(0); }
}

/* Hero meta — subtle staggered fade in */
.hero-meta > div {
  opacity: 0;
  transform: translateY(8px);
  animation: metaIn 0.9s var(--ease-out) forwards;
}
.hero-meta > div:nth-child(1) { animation-delay: 0.7s; }
.hero-meta > div:nth-child(2) { animation-delay: 0.85s; }
.hero-meta > div:nth-child(3) { animation-delay: 1.0s; }
@keyframes metaIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero scroll indicator — slow bob */
.hero-scroll {
  animation: scrollBob 2.6s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ---------- MANIFESTO — editorial right column ---------- */
.manifesto-meta--editorial {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid rgba(164, 117, 71, 0.25);
}
.manifesto-meta--editorial .manifesto-ornament {
  position: absolute;
  left: -10px;
  top: -2px;
  width: 20px;
  height: 30px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
}
.manifesto-meta--editorial p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0 0 18px 0;
}
.manifesto-meta--editorial p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-style: normal;
  float: left;
  font-size: 3.2rem;
  line-height: 0.92;
  padding: 6px 10px 0 0;
  color: var(--copper-deep);
  font-weight: 500;
}
.manifesto-meta--editorial .manifesto-sign {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ---------- PILLARS — luxer, met serif num + corner ornament ---------- */
.pillar-mini {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(14, 26, 22, 0.10);
  transition:
    transform 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    background 0.5s var(--ease-out);
}
.pillar-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 0% 0%, rgba(164, 117, 71, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
}
.pillar-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(164, 117, 71, 0.45);
  box-shadow: 0 22px 50px -28px rgba(14, 26, 22, 0.30);
}
.pillar-mini:hover::before { opacity: 1; }

.pillar-mini .pillar-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-deep) 60%, #6c4624 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 4px;
  line-height: 1;
}
.pillar-mini .pillar-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
  margin: 14px 0 18px 0;
  transform-origin: left center;
  transform: scaleX(0.5);
  transition: transform 0.5s var(--ease-out);
}
.pillar-mini:hover .pillar-rule { transform: scaleX(1); }
.pillar-mini h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 8px 0;
  color: var(--ink);
}
.pillar-mini p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}
.pillar-corner {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 22px;
  height: 22px;
  border-right: 1px solid rgba(164, 117, 71, 0.4);
  border-bottom: 1px solid rgba(164, 117, 71, 0.4);
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  opacity: 0.55;
}
.pillar-mini:hover .pillar-corner {
  transform: translate(-3px, -3px);
  border-color: var(--copper);
  opacity: 1;
}

/* ---------- GUIDE PULL-QUOTE & nicer body ---------- */
.guide-pull {
  position: relative;
  margin: 18px 0 22px 0;
  padding: 18px 24px;
  background: linear-gradient(180deg, rgba(164, 117, 71, 0.07), rgba(164, 117, 71, 0.02));
  border-left: 2px solid var(--copper);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.guide-pull::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--copper);
  font-style: normal;
}
.guide-body {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 14px 0;
}
.guide-body--soft {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Reduced-motion respect ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-bg--motion img,
  .hero-shine,
  .brand-mark,
  .hero-scroll {
    animation: none !important;
  }
  .hero-title .word > span {
    transform: none;
    animation: none;
  }
  .hero-meta > div {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 820px) {
  .manifesto-meta--editorial {
    padding-left: 22px;
  }
  .manifesto-meta--editorial p {
    font-size: 1.05rem;
  }
  .guide-pull { font-size: 1.05rem; padding: 14px 18px; }
  .pillar-mini .pillar-num { font-size: 1.9rem; }
}
