/* =========================================================
   IVAARA — Visual Style Guide (CSS)
   amã Stays & Trails–inspired quiet-luxury system
   ---------------------------------------------------------
   Palette
     --espresso  deep brown   #3e2f16  (dark surfaces, footer, logo)
     --accent    terracotta   #c25031  (the single hero color — CTAs, italics, ticks)
     --ink       charcoal     #323232  (body text)
     --ink-strong near-black  #1b1b1b  (display headlines on light)
     --cream     warm ivory   #faf7f2  (page background)
     --paper     white        #ffffff  (cards, forms, alt sections)
     --sand      ivory tint   #efe7db  (soft surfaces, chips)
     --gold      warm gold    #8a6d3b  (fine detail)
     --line      hairline     #e6e6e6  (signature amã hairlines)

   Type
     Display    Bodoni Moda (high-contrast serif, optical sized) — only >= 18px
     UI / body  Mulish (humanist sans) — everything small + tracked labels

   Layout   container 1240px · section pad clamp(88,9vw,140)
   Radii    near-square 2 / 3 / 4
   Shadow   flattened, hairline-led
   Motion   250ms hover, 800ms reveal · cubic-bezier(.22,1,.36,1)
   ========================================================= */

:root {
  /* ---- Brand / accents ---- */
  --forest: #3e2f16;
  --moss:   #6c6862;
  --ocean:  #8a6d3b;
  --sunset: #c25031;
  --sunset-deep: #a23f25;
  --sand:   #efe7db;
  --cream:  #faf7f2;
  --ink:    #323232;
  --mute:   #6c6862;
  --line:   #e6e6e6;

  /* ---- Additive tokens ---- */
  --ink-strong: #1b1b1b;
  --paper: #ffffff;
  --espresso: #3e2f16;
  --espresso-deep: #2c2110;
  --gold: #8a6d3b;
  --hairline-dark: rgba(255,255,255,0.16);
  --on-dark: #efe7db;
  --on-dark-mute: rgba(239,231,219,0.66);
  --accent: #c25031;

  /* ---- Type ---- */
  --font-display: 'Bodoni Moda', 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  --font-ui: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ---- Radii ---- */
  --r-sm: 2px;
  --r-md: 3px;
  --r-lg: 4px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 0 var(--line);
  --shadow-md: 0 10px 30px rgba(40,30,16,0.07);
  --shadow-lg: 0 18px 50px rgba(40,30,16,0.10);

  /* ---- Layout / motion ---- */
  --container: 1240px;
  --section-pad: clamp(88px, 9vw, 140px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ----------- Layout helpers ----------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.section { padding: var(--section-pad) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--dark {
  background: var(--espresso);
  color: var(--on-dark);
}

/* ----------- Typography ----------- */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--accent);
  margin-right: 14px;
}
.eyebrow--light { color: var(--on-dark-mute); }
.section__head--center .eyebrow { display: inline-flex; }

.h1, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink-strong);
  margin: 0 0 24px;
}
.h2 {
  font-variation-settings: "opsz" 60;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.005em;
}
.h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.h2--light { color: var(--paper); }
.h2--light em { color: var(--on-dark); }

.lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
  color: var(--mute);
  margin: 0 0 18px;
  max-width: 60ch;
}

.section__head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--mute);
  margin: 0;
  max-width: 62ch;
  line-height: 1.7;
}
.section__head--center .section__sub { margin: 0 auto; }
.section__sub--light { color: var(--on-dark-mute); }

/* Section head with a trailing link (amã pattern) */
.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
}
.section__head--row .section__head-text { max-width: 720px; }

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 30px;
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn--lg { padding: 17px 38px; font-size: 12.5px; letter-spacing: 0.18em; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(194, 80, 49, 0.20);
}
.btn--primary:hover {
  background: var(--sunset-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(194, 80, 49, 0.26);
}

.btn--ghost { background: transparent; color: var(--ink-strong); border-color: transparent; }
.btn--ghost:hover { background: transparent; color: var(--accent); }

.btn--dark { background: var(--espresso); color: #fff; }
.btn--dark:hover { background: var(--espresso-deep); }

.btn--outline-light { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--espresso); border-color: #fff; }

.btn--outline-dark { border-color: var(--ink-strong); color: var(--ink-strong); }
.btn--outline-dark:hover { background: var(--ink-strong); color: #fff; }

/* Thin-underline text link (quiet CTAs — "VIEW DETAILS") */
.link-underline {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-strong);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.link-underline:hover { border-bottom-color: var(--accent); color: var(--accent); }
.link-underline--light { color: var(--on-dark); border-bottom-color: var(--hairline-dark); }
.link-underline--light:hover { color: var(--paper); border-bottom-color: var(--accent); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 26px;
  transition: padding 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-scrolled .nav__inner { padding-top: 15px; padding-bottom: 15px; }

.nav__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
  transition: color 0.3s var(--ease);
}
.nav.is-scrolled .nav__logo,
.nav__logo--dark { color: var(--espresso); }
.nav__logo-mark { font-size: 20px; color: var(--accent); }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav__links a.is-current::after { transform: scaleX(1); }

.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__cta .btn--ghost { color: #fff; }
.nav.is-scrolled .nav__cta .btn--ghost { color: var(--espresso); }

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled .nav__burger span { background: var(--espresso); }
.nav__burger.is-open span { background: var(--espresso); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 28px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.nav__mobile a {
  padding: 15px 4px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  color: var(--espresso);
}
.nav__mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.nav__mobile.is-open { display: flex; }
.nav__mobile a.is-current { color: var(--accent); }

/* =========================================================
   HERO — full-bleed image carousel + search bar
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.hero__slide.is-active .hero__media img {
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,15,8,0.55) 0%, rgba(20,15,8,0.12) 38%, rgba(20,15,8,0.66) 100%),
    linear-gradient(90deg, rgba(44,33,16,0.45) 0%, rgba(0,0,0,0) 58%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 230px;
  max-width: 960px;
}
.hero__title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96;
  font-weight: 400;
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 16px 0 24px;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--on-dark); }
.hero__sub {
  font-family: var(--font-ui);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Carousel controls */
.hero__dots {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 4vw, 56px);
  bottom: 150px;
  display: flex;
  gap: 12px;
}
.hero__dot {
  width: 34px; height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  padding: 0;
  transition: background 0.3s var(--ease);
}
.hero__dot.is-active { background: var(--accent); }
.hero__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(20, 15, 8, 0.12);
  color: #fff;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hero__arrow:hover { background: var(--accent); border-color: var(--accent); }
.hero__arrow svg { width: 18px; height: 18px; }
.hero__arrow--prev { left: clamp(16px, 3vw, 40px); }
.hero__arrow--next { right: clamp(16px, 3vw, 40px); }

/* Search / plan-your-stay bar */
.searchbar {
  position: absolute;
  z-index: 4;
  left: 0; right: 0; bottom: 0;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(8px);
  border-top: 3px solid var(--accent);
}
.searchbar__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr auto;
  align-items: stretch;
}
.searchbar__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px clamp(18px, 2vw, 28px);
  border-right: 1px solid var(--line);
  text-align: left;
}
.searchbar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.searchbar__input {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-strong);
  border: 0;
  background: transparent;
  outline: none;
  padding: 0;
  width: 100%;
}
.searchbar__input::placeholder { color: #b5b0a8; }
.searchbar__submit {
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 clamp(24px, 3vw, 44px);
  transition: background 0.25s var(--ease);
}
.searchbar__submit:hover { background: var(--sunset-deep); }

/* =========================================================
   STATS strip
   ========================================================= */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: 40px clamp(16px, 2vw, 32px);
  text-align: center;
  border-right: 1px solid var(--line);
}
.stats__item:last-child { border-right: 0; }
.stats__item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 46px);
  color: var(--ink-strong);
  line-height: 1;
  margin-bottom: 10px;
}
.stats__item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

/* =========================================================
   INTRO / brand statement
   ========================================================= */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.intro__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.pillar__icon {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.pillar h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink-strong);
}
.pillar p { margin: 0; font-size: 14.5px; color: var(--mute); line-height: 1.6; }

/* =========================================================
   DESTINATIONS grid (amã signature) + terrain filter
   ========================================================= */
.dest__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.dest__chip {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.dest__chip:hover { color: var(--ink-strong); border-color: var(--ink-strong); }
.dest__chip.is-active { background: var(--espresso); border-color: var(--espresso); color: #fff; }

.dest__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}
.dest-card { display: block; color: inherit; }
.dest-card.is-hidden { display: none; }
.dest-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  margin-bottom: 18px;
}
.dest-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.dest-card:hover .dest-card__media img { transform: scale(1.06); }
.dest-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,15,8,0.5) 100%);
  opacity: 0.85;
}
.dest-card__count {
  position: absolute;
  z-index: 2;
  left: 16px; bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.dest-card__region {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.dest-card__place {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-strong);
  margin: 0 0 4px;
  line-height: 1.1;
}
.dest-card__desc { margin: 0; font-size: 14px; color: var(--mute); line-height: 1.55; }

/* =========================================================
   FEATURED STAYS — property cards
   ========================================================= */
.stays__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stay-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.stay-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stay-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.stay-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.stay-card:hover .stay-card__media img { transform: scale(1.05); }
.stay-card__label {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(250, 247, 242, 0.95);
  color: var(--espresso);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--r-sm);
}
.stay-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.stay-card__loc {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 8px;
}
.stay-card__name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink-strong);
  margin: 0 0 14px;
}
.stay-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0 0 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--mute);
}
.stay-card__meta span { display: inline-flex; align-items: center; }
.stay-card__foot { margin-top: auto; }

/* =========================================================
   EXPERIENCES grid
   ========================================================= */
.exp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.exp-card { color: inherit; }
.exp-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  margin-bottom: 20px;
}
.exp-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.exp-card:hover .exp-card__media img { transform: scale(1.05); }
.exp-card__num {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--font-display);
  font-size: 30px;
  color: #fff;
  line-height: 1;
}
.exp-card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  color: var(--ink-strong);
  margin: 0 0 10px;
  line-height: 1.2;
}
.exp-card p { margin: 0; font-size: 14.5px; color: var(--mute); line-height: 1.6; }

/* =========================================================
   VALUES — for travelers (clean hairline cards)
   ========================================================= */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value {
  padding: 44px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}
.value:hover { background: var(--paper); }
.value__num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.value h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink-strong);
  line-height: 1.2;
}
.value p { margin: 0; color: var(--mute); font-size: 14.5px; line-height: 1.65; }

/* =========================================================
   HOSTS band
   ========================================================= */
.hosts__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hosts__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
}
.hosts__media img { width: 100%; height: 100%; object-fit: cover; }
.hosts__media-tag {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(250, 247, 242, 0.97);
  border-radius: var(--r-md);
  padding: 14px 18px;
  max-width: 72%;
}
.hosts__media-tag span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.hosts__media-tag strong {
  font-family: var(--font-display);
  color: var(--ink-strong);
  font-size: 18px;
  font-weight: 500;
}
.hosts__benefits { display: grid; gap: 0; margin: 36px 0; }
.benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.benefit:last-child { border-bottom: 1px solid var(--line); }
.benefit__num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  font-weight: 500;
}
.benefit h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink-strong);
  font-weight: 500;
}
.benefit p { margin: 0; color: var(--mute); font-size: 14.5px; line-height: 1.6; }
.hosts__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   OFFERS / journeys
   ========================================================= */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  border-radius: var(--r-lg);
  overflow: hidden;
  color: #fff;
}
.offer-card__media { position: absolute; inset: 0; }
.offer-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.offer-card:hover .offer-card__media img { transform: scale(1.06); }
.offer-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,8,0.15) 0%, rgba(20,15,8,0.78) 100%);
}
.offer-card__body { position: relative; z-index: 2; margin-top: auto; padding: 30px 28px 28px; }
.offer-card__validity {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin: 0 0 12px;
}
.offer-card__body h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 10px;
}
.offer-card__body p { margin: 0 0 18px; font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.55; }

/* =========================================================
   STORIES / journal
   ========================================================= */
.stories__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.story--lg { grid-row: span 2; }
.story {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.story:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.story__media { aspect-ratio: 4 / 3; overflow: hidden; }
.story--lg .story__media { aspect-ratio: 4 / 4.6; }
.story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.story:hover .story__media img { transform: scale(1.05); }
.story__body { padding: 24px 26px 28px; flex: 1; }
.story__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}
.story__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink-strong);
  margin: 0 0 8px;
}
.story--lg .story__body h3 { font-size: 28px; }
.story__body p { margin: 0; font-size: 14px; color: var(--mute); line-height: 1.55; }

/* =========================================================
   PARTNERS row
   ========================================================= */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.partner-card {
  padding: 40px 32px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}
.partner-card:hover { background: var(--paper); }
.partner-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink-strong);
  margin: 0 0 12px;
}
.partner-card p { margin: 0 0 20px; color: var(--mute); font-size: 14px; line-height: 1.6; }
.partner-card__chip {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

/* =========================================================
   BAND — full-bleed CTA / brand statement
   ========================================================= */
.band {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 15vw, 200px) 0;
  text-align: center;
  color: #fff;
}
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,33,16,0.62) 0%, rgba(20,15,8,0.7) 100%);
}
.band__content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.band__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 66px);
  line-height: 1.05;
  margin: 0 0 32px;
  color: #fff;
}
.band__title em { font-style: italic; color: var(--on-dark); }
.band__btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.contact__channels { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 16px; }
.contact__channels li { display: flex; align-items: center; gap: 16px; font-size: 15px; color: var(--ink); }
.contact__channels span {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 15px;
}

.contact__form, .form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-strong);
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  background: var(--cream);
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(194, 80, 49, 0.10);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select, select.searchbar__input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1.5 6 6.5l5-5' stroke='%236c6862' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
}
.field select { padding-right: 40px; }
select.searchbar__input { background-position: right 0 center; padding-right: 22px; }
.contact__success {
  margin: 4px 0 0;
  padding: 14px 16px;
  background: rgba(194, 80, 49, 0.08);
  color: var(--sunset-deep);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--espresso); color: var(--on-dark); padding: clamp(72px,8vw,104px) 0 28px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline-dark);
}
.footer__brand .nav__logo { color: var(--on-dark); }
.footer__brand p { margin: 18px 0 0; font-size: 14px; line-height: 1.7; color: var(--on-dark-mute); max-width: 40ch; }
.footer__news h5 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
  margin: 0 0 8px;
}
.footer__news p { margin: 0 0 18px; font-size: 14px; color: var(--on-dark-mute); }
.footer__newsform { display: flex; gap: 10px; max-width: 420px; }
.footer__newsform input {
  flex: 1;
  font-family: inherit;
  font-size: 14px;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  outline: none;
}
.footer__newsform input::placeholder { color: var(--on-dark-mute); }
.footer__newsform input:focus { border-color: var(--accent); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 56px 0;
}
.footer__col h5 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin: 0 0 20px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  padding: 7px 0;
  color: rgba(239, 231, 219, 0.88);
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--paper); }

.footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-dark);
  font-size: 12.5px;
  color: var(--on-dark-mute);
}
.footer__legal a { color: rgba(239, 231, 219, 0.8); }
.footer__legal a:hover { color: var(--paper); }
.footer__legal p { margin: 0; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

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

/* =========================================================
   HOST PAGE — additional sections
   ========================================================= */
.hero--page { min-height: 86vh; min-height: 86svh; }
.hero--page .hero__content { padding-top: 170px; padding-bottom: 150px; }

/* Differentiators */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.diff {
  padding: 50px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}
.diff:hover { background: var(--paper); }
.diff h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  color: var(--ink-strong);
  margin: 0 0 14px;
}
.diff p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--mute); max-width: 50ch; }

/* Steps */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.step__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  color: var(--ink-strong);
  margin: 0 0 12px;
}
.step__body p { margin: 0; color: var(--mute); font-size: 15px; line-height: 1.65; max-width: 50ch; }
.step__media { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 5 / 4; }
.step__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.step:hover .step__media img { transform: scale(1.04); }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  margin: 0;
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-lg);
  padding: 38px 32px 30px;
  transition: border-color 0.35s var(--ease);
}
.testimonial:hover { border-color: rgba(239,231,219,0.32); }
.testimonial blockquote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--paper);
  font-weight: 400;
  font-style: italic;
}
.testimonial blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--accent);
  line-height: 0.7;
  margin-bottom: 14px;
}
.testimonial figcaption { display: flex; align-items: center; gap: 14px; }
.testimonial figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial figcaption strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial figcaption span { font-size: 12px; color: var(--on-dark-mute); letter-spacing: 0.04em; }

/* FAQ */
.faq__wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq__wrap .section__head { margin-bottom: 0; max-width: none; }
.faq { display: grid; gap: 0; }
.faq__item { border-top: 1px solid var(--line); padding: 24px 0; }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-ui);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  color: var(--ink-strong);
  line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.faq__item[open] summary::after {
  content: "\2212";
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq__item p {
  margin: 16px 0 4px;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.7;
  max-width: 62ch;
  animation: faqOpen 0.4s var(--ease);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Apply form */
.apply__wrap { max-width: 900px; }
.apply__form { margin-top: 8px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__content { padding-bottom: 290px; }
  .hero__dots { display: none; }
  .searchbar__inner { grid-template-columns: 1fr 1fr; }
  .searchbar__field { border-bottom: 1px solid var(--line); }
  .searchbar__field:nth-child(even) { border-right: 0; }
  .searchbar__submit { grid-column: 1 / -1; padding: 18px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: 0; }
  .stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid var(--line); }

  .intro__grid { grid-template-columns: 1fr; }
  .intro__pillars { grid-template-columns: 1fr; }

  .dest__grid { grid-template-columns: repeat(2, 1fr); }
  .stays__grid { grid-template-columns: 1fr 1fr; }
  .exp__grid { grid-template-columns: 1fr 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .offers__grid { grid-template-columns: 1fr; }

  .hosts__grid { grid-template-columns: 1fr; }
  .hosts__media { aspect-ratio: 4 / 3; max-height: 480px; }

  .stories__grid { grid-template-columns: 1fr 1fr; }
  .story--lg { grid-column: span 2; grid-row: auto; }

  .partners__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }

  .diff__grid { grid-template-columns: 1fr; }
  .diff { padding: 38px 28px; }
  .step { grid-template-columns: 60px 1fr; gap: 24px; }
  .step__media { display: none; }
  .testimonials { grid-template-columns: 1fr; }
  .faq__wrap { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero__content { padding-top: 116px; padding-bottom: 330px; }
  .hero__arrow { display: none; }

  .searchbar__inner { grid-template-columns: 1fr 1fr; }
  .searchbar__field { padding: 15px 18px; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item { padding: 28px 16px; }

  .dest__grid { grid-template-columns: 1fr; }
  .stays__grid { grid-template-columns: 1fr; }
  .exp__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .stories__grid { grid-template-columns: 1fr; }
  .story--lg { grid-column: auto; }
  .partners__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__newsform { flex-direction: column; }

  .field-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step__num { font-size: 40px; }
  .nav__inner { padding-top: 16px; padding-bottom: 16px; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
}
