/* ============================================================
   AURELIA — Private Travel Atelier
   Design system: quiet, cinematic, editorial
   ============================================================ */

:root {
  --bone: #f4f0e8;
  --ivory: #faf7f0;
  --ink: #1a1712;
  --ink-2: #2a251d;
  --espresso: #211d16;
  --taupe: #8a8172;
  --taupe-2: #6f6759;
  --bronze: #a3804f;
  --bronze-deep: #8c6b3e;
  --line: rgba(26, 23, 18, 0.14);
  --line-soft: rgba(26, 23, 18, 0.08);
  --line-light: rgba(244, 240, 232, 0.18);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --gutter: clamp(22px, 5vw, 76px);
  --max: 1440px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--bronze); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display em { font-style: italic; font-weight: 300; color: var(--bronze-deep); }
.display--hero { font-size: clamp(2.9rem, 7.2vw, 6.4rem); }
.display--xl { font-size: clamp(2.4rem, 5.2vw, 4.6rem); }
.display--lg { font-size: clamp(2rem, 3.8vw, 3.2rem); }
.display--md { font-size: clamp(1.7rem, 2.6vw, 2.3rem); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--taupe-2);
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--bronze);
}
.kicker--center { justify-content: center; }
.kicker--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--bronze);
}
.kicker--light { color: rgba(244, 240, 232, 0.72); }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-2);
}
.body-text { color: var(--taupe-2); font-size: 15.5px; }
.body-text + .body-text { margin-top: 1.35em; }

/* ---------- Layout ---------- */
.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(88px, 11vw, 158px) 0; position: relative; }
.section--tight { padding: clamp(64px, 8vw, 110px) 0; }
.section--dark { background: var(--ink); color: var(--ivory); }
.section--dark .display { color: var(--ivory); }
.section--dark .body-text { color: rgba(244, 240, 232, 0.66); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}

/* ---------- Page transition veil ---------- */
.veil {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s var(--ease-soft);
}
body.is-leaving .veil { opacity: 1; pointer-events: all; }
body.is-arriving .veil { opacity: 1; transition: none; }
body.is-arriving-done .veil { opacity: 0; transition: opacity 0.75s var(--ease-soft) 0.05s; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft),
              transform 0.45s var(--ease-lux);
  color: var(--ivory);
}
.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.is-solid {
  background: rgba(244, 240, 232, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line-soft);
}
.site-header.is-hidden { transform: translateY(-100%); }

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px;
}
.brand__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding-left: 0.34em; /* optically recenter tracked caps */
}
.brand__sub {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bronze);
  padding-left: 0.42em;
}

.main-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); }
.main-nav a {
  position: relative;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 0;
  opacity: 0.82;
  transition: opacity 0.3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-lux);
}
.main-nav a:hover, .main-nav a:focus-visible { opacity: 1; }
.main-nav a:hover::after, .main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav a[aria-current="page"] { opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.45s var(--ease-soft), color 0.45s var(--ease-soft),
              border-color 0.45s var(--ease-soft), transform 0.3s var(--ease-soft);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn .btn__arrow { transition: transform 0.4s var(--ease-lux); }
.btn:hover, .btn:focus-visible { background: var(--ink); color: var(--ivory); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.btn:active { transform: scale(0.985); }
.btn--light { border-color: rgba(244, 240, 232, 0.6); color: var(--ivory); }
.btn--light:hover, .btn--light:focus-visible { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn--solid { background: var(--ink); color: var(--ivory); }
.btn--solid:hover, .btn--solid:focus-visible { background: var(--bronze-deep); border-color: var(--bronze-deep); }
.btn--sm { padding: 12px 22px; font-size: 10.5px; }

/* header enquire button adapts to transparent state */
.site-header:not(.is-solid) .btn--nav { border-color: rgba(244,240,232,.65); color: var(--ivory); }
.site-header:not(.is-solid) .btn--nav:hover { background: var(--ivory); color: var(--ink); }
.site-header.is-solid .btn--nav { border-color: var(--ink); color: var(--ink); }
.site-header.is-solid .btn--nav:hover { background: var(--ink); color: var(--ivory); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  align-items: center;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: currentColor;
  transition: transform 0.45s var(--ease-lux), opacity 0.3s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--ink);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease-soft), visibility 0s 0.55s;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transition: opacity 0.55s var(--ease-soft); }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  font-weight: 300;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-soft), transform 0.6s var(--ease-lux), color 0.3s;
}
.mobile-nav a small { font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bronze); }
.mobile-nav a:hover { color: var(--bronze); }
body.nav-open .mobile-nav a { opacity: 1; transform: none; }
body.nav-open .mobile-nav a:nth-child(1) { transition-delay: 0.10s; }
body.nav-open .mobile-nav a:nth-child(2) { transition-delay: 0.17s; }
body.nav-open .mobile-nav a:nth-child(3) { transition-delay: 0.24s; }
body.nav-open .mobile-nav a:nth-child(4) { transition-delay: 0.31s; }
body.nav-open .mobile-nav a:nth-child(5) { transition-delay: 0.38s; }
body.nav-open .site-header { color: var(--ivory); background: transparent; box-shadow: none; }

/* ---------- Hero (home & pages) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
}
.hero--page { min-height: 78svh; }
.hero--detail { min-height: 92svh; }
.hero__media { position: absolute; inset: -12% 0; z-index: -1; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(18, 15, 11, 0.78) 0%, rgba(18, 15, 11, 0.25) 42%, rgba(18, 15, 11, 0.32) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(64px, 9vh, 120px); }
.hero .display { color: var(--ivory); max-width: 15ch; }
.hero .display em { color: #d8b98a; }
.hero__sub {
  max-width: 46ch;
  margin-top: 26px;
  font-size: 15.5px;
  color: rgba(244, 240, 232, 0.82);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 64px);
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(244, 240, 232, 0.28);
}
.hero__meta div { display: flex; flex-direction: column; gap: 6px; }
.hero__meta dt { font-size: 10px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(244,240,232,0.6); }
.hero__meta dd { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ivory); }

.hero__kicker-row { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.hero__kicker-row .kicker { color: rgba(244, 240, 232, 0.8); }

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(244, 240, 232, 0.75);
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(244,240,232,0.75), transparent);
  animation: cue-drop 2.6s var(--ease-soft) infinite;
}
@keyframes cue-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Media treatment ---------- */
.media {
  position: relative;
  overflow: hidden;
  background: #d9d2c4;
}
.media::before { /* loading shimmer */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, #d9d2c4 30%, #e6dfd2 46%, #d9d2c4 62%);
  background-size: 220% 100%;
  animation: shimmer 2.2s linear infinite;
  transition: opacity 0.6s;
  z-index: 0;
}
@keyframes shimmer { to { background-position: -120% 0; } }
.media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1.1s var(--ease-soft), transform 1.8s var(--ease-lux);
  position: relative;
  z-index: 1;
}
.media.is-loaded::before { opacity: 0; }
.media.is-loaded img { opacity: 1; transform: scale(1); }
/* parallax images inside .media get extra bleed so edges never show */
.media img[data-parallax] { height: 116%; margin-top: -8%; }
.media--hover img { transition: opacity 1.1s var(--ease-soft), transform 1.6s var(--ease-lux); }
.media--hover:hover img { transform: scale(1.055); }

.ratio-4x5 { aspect-ratio: 4 / 5; }
.ratio-3x4 { aspect-ratio: 3 / 4; }
.ratio-4x3 { aspect-ratio: 4 / 3; }
.ratio-16x10 { aspect-ratio: 16 / 10; }
.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-1x1 { aspect-ratio: 1 / 1; }

/* ---------- Reveal choreography ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease-soft), transform 1.1s var(--ease-lux);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Section heading pattern ---------- */
.section-head { max-width: 780px; margin-bottom: clamp(48px, 6vw, 88px); }
.section-head .display { margin: 22px 0 0; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
}
.section-head__row .display { max-width: 18ch; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.35s, color 0.35s, gap 0.35s var(--ease-lux);
}
.text-link:hover, .text-link:focus-visible { color: var(--bronze-deep); border-color: var(--bronze); gap: 18px; }
.section--dark .text-link { color: var(--ivory); border-color: var(--line-light); }
.section--dark .text-link:hover { color: #d8b98a; border-color: #d8b98a; }

/* ---------- Home: intro ---------- */
.intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 3.6vw, 3.4rem); font-weight: 300; color: var(--ink); line-height: 1; }
.stat__num sup { font-size: 0.45em; color: var(--bronze-deep); }
.stat__label { margin-top: 10px; font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }

.intro__images { position: relative; }
.intro__images .media:first-child { width: 82%; }
.intro__images .media:last-child {
  position: absolute;
  width: 46%;
  right: 0;
  bottom: -14%;
  border: 10px solid var(--bone);
}

/* ---------- Destination index rows (home feature) ---------- */
.dest-rows { border-top: 1px solid var(--line); }
.dest-row {
  display: grid;
  grid-template-columns: 64px 1.2fr 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  padding: clamp(26px, 3.4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.dest-row__idx { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--taupe); }
.dest-row__name { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.1; transition: color 0.35s, transform 0.5s var(--ease-lux); }
.dest-row__meta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe-2); display: flex; gap: 26px; flex-wrap: wrap; }
.dest-row__arrow { color: var(--taupe); transition: transform 0.45s var(--ease-lux), color 0.35s; }
.dest-row:hover .dest-row__name { color: var(--bronze-deep); transform: translateX(10px); }
.dest-row:hover .dest-row__arrow { transform: translate(6px, -6px); color: var(--bronze-deep); }

.dest-row__peek {
  position: fixed;
  width: min(300px, 26vw);
  aspect-ratio: 3 / 4;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92) rotate(-1.5deg);
  transition: opacity 0.35s var(--ease-soft), transform 0.5s var(--ease-lux);
  box-shadow: 0 30px 60px rgba(20, 16, 10, 0.35);
  overflow: hidden;
}
.dest-row__peek img { width: 100%; height: 100%; object-fit: cover; }
.dest-row__peek.is-on { opacity: 1; transform: scale(1) rotate(0deg); }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card { display: block; position: relative; }
.card .media { margin-bottom: 22px; }
.card__kicker { font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bronze-deep); margin-bottom: 10px; }
.card__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.45rem, 1.9vw, 1.8rem); line-height: 1.2; color: var(--ink); transition: color 0.3s; }
.card:hover .card__title { color: var(--bronze-deep); }
.card__text { margin-top: 10px; font-size: 14.5px; color: var(--taupe-2); }
.card__meta { margin-top: 14px; display: flex; gap: 20px; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); }

/* ---------- Dark band ---------- */
.band-quote { max-width: 900px; }
.band-quote .display { margin-top: 26px; }
.band-quote figcaption { margin-top: 34px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,240,232,0.55); }
.band__media { margin-top: clamp(48px, 6vw, 84px); }
.band__media .media { height: clamp(300px, 52vh, 560px); }
.band__media img { will-change: transform; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .display { max-width: 20ch; margin: 24px auto 0; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(244, 240, 232, 0.72);
  padding: clamp(64px, 8vw, 110px) 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line-light);
}
.footer__brand .brand__name { color: var(--ivory); }
.footer__tag { margin-top: 20px; max-width: 34ch; font-size: 14px; color: rgba(244,240,232,0.55); }
.footer__head { font-size: 10.5px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--bronze); margin-bottom: 20px; }
.footer__col a { display: block; padding: 6px 0; font-size: 14px; transition: color 0.3s, padding-left 0.3s var(--ease-lux); }
.footer__col a:hover { color: var(--ivory); padding-left: 6px; }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(244,240,232,0.45);
}
.footer__base a { border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s; }
.footer__base a:hover { color: var(--ivory); border-color: var(--line-light); }

/* ---------- Page intro (non-home pages) ---------- */
.page-intro { padding: calc(var(--header-h) + clamp(56px, 9vh, 110px)) 0 clamp(48px, 6vw, 80px); }
.page-intro .display { max-width: 16ch; margin-top: 22px; }
.page-intro__lede { margin-top: 26px; max-width: 58ch; }

/* ---------- Filters (destinations) ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 5vw, 64px);
  position: sticky;
  top: var(--header-h);
  background: rgba(244, 240, 232, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 40;
}
.filters__group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filters__label { font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); margin-right: 6px; }
.chip {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--taupe-2);
  transition: all 0.35s var(--ease-soft);
}
.chip:hover { border-color: var(--bronze); color: var(--bronze-deep); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.filters__count { margin-left: auto; font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--taupe); white-space: nowrap; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px) clamp(24px, 3vw, 44px);
}
.dest-grid .card { transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-lux); }
.dest-grid .card.is-filtered-out { display: none; }

.empty-state {
  text-align: center;
  padding: clamp(56px, 8vw, 100px) 24px;
  border: 1px dashed var(--line);
  display: none;
}
.empty-state.is-visible { display: block; }
.empty-state .display { margin-bottom: 18px; }
.empty-state p { color: var(--taupe-2); max-width: 44ch; margin: 0 auto 28px; }

/* ---------- Destination detail ---------- */
.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: clamp(40px, 5vw, 64px) 0;
}
.detail-meta dt { font-size: 10px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--taupe); margin-bottom: 10px; }
.detail-meta dd { font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 400; color: var(--ink); line-height: 1.35; }

.exp-list { counter-reset: exp; border-top: 1px solid var(--line); }
.exp-item {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(30px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.exp-item__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bronze-deep);
}
.exp-item__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.25; }
.exp-item__text { color: var(--taupe-2); font-size: 15px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.4vw, 32px);
  align-items: start;
}
.gallery .media:nth-child(1) { grid-column: 1 / 8; aspect-ratio: 16 / 10; }
.gallery .media:nth-child(2) { grid-column: 8 / 13; aspect-ratio: 4 / 5; margin-top: clamp(40px, 6vw, 96px); }
.gallery .media:nth-child(3) { grid-column: 3 / 11; aspect-ratio: 16 / 9; margin-top: clamp(24px, 3vw, 48px); }
.gallery figcaption {
  padding-top: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

.notes-list { border-top: 1px solid var(--line); }
.notes-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--taupe-2);
  font-size: 15px;
}
.notes-list li::before {
  content: "—";
  color: var(--bronze);
}

.stay-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  padding: clamp(32px, 4vw, 56px);
  align-items: center;
}
.stay-card__label { margin-bottom: 16px; }
.stay-card__name { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1.2; }
.stay-card__note { margin-top: 16px; color: var(--taupe-2); font-size: 15px; }

/* ---------- Journeys ---------- */
.journey-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}
.journey-row:first-of-type { border-top: 1px solid var(--line); }
.journey-row:nth-child(even) .journey-row__media { order: 2; }
.journey-row__media .media { aspect-ratio: 16 / 11; }
.journey-row__title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.9rem, 3vw, 2.7rem); margin: 14px 0 8px; transition: color 0.3s; }
a.journey-row__link:hover .journey-row__title { color: var(--bronze-deep); }
.journey-row__route { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze-deep); }
.journey-row__summary { margin: 18px 0 24px; color: var(--taupe-2); font-size: 15px; max-width: 52ch; }
.journey-row__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-bottom: 28px; }
.journey-row__meta div { display: flex; flex-direction: column; gap: 4px; }
.journey-row__meta dt { font-size: 9.5px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); }
.journey-row__meta dd { font-family: var(--serif); font-size: 19px; }

/* Journey detail timeline */
.timeline { border-top: 1px solid var(--line); }
.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(28px, 3.6vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}
.timeline__days { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--bronze-deep); }
.timeline__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.35rem, 1.9vw, 1.7rem); margin-bottom: 10px; }
.timeline__text { color: var(--taupe-2); font-size: 15px; max-width: 64ch; }

.includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(28px, 4vw, 64px);
}
.includes li {
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--taupe-2);
  font-size: 15px;
}
.includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 26px;
  width: 16px; height: 1px;
  background: var(--bronze);
}

/* ---------- Journal ---------- */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { font-size: 17px; line-height: 1.9; color: var(--ink-2); margin-bottom: 1.6em; }
.article-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.4em;
  float: left;
  line-height: 0.82;
  padding: 8px 16px 0 0;
  color: var(--bronze-deep);
}
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(32px, 4vw, 52px) 0;
  margin: clamp(40px, 5vw, 64px) 0;
  text-align: center;
}
.article-head { text-align: center; max-width: 800px; margin: 0 auto clamp(40px, 5vw, 64px); }
.article-head .display { margin: 22px 0 18px; }
.article-head__meta { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); display: flex; gap: 24px; justify-content: center; }
.article-hero { margin-bottom: clamp(48px, 6vw, 80px); }
.article-hero .media { aspect-ratio: 21 / 9; }

/* ---------- About ---------- */
.principles { counter-reset: pr; border-top: 1px solid var(--line); }
.principle {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(30px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.principle__num { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--bronze-deep); }
.principle__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.2vw, 2rem); }
.principle__text { color: var(--taupe-2); font-size: 15px; }

.credits-list { font-size: 12px; color: var(--taupe); line-height: 2; columns: 2; column-gap: 48px; }

/* ---------- Enquiry ---------- */
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.enquiry-aside__block { padding: 28px 0; border-bottom: 1px solid var(--line); }
.enquiry-aside__block:first-child { padding-top: 0; }
.enquiry-aside h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin-bottom: 8px; }
.enquiry-aside p, .enquiry-aside a { font-size: 15px; color: var(--taupe-2); }
.enquiry-aside a { border-bottom: 1px solid var(--line); transition: color 0.3s, border-color 0.3s; }
.enquiry-aside a:hover { color: var(--bronze-deep); border-color: var(--bronze); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 28px; }
.field { display: flex; flex-direction: column; gap: 9px; grid-column: span 1; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-2);
}
.field label .req { color: var(--bronze-deep); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 2px;
  border-radius: 0;
  transition: border-color 0.35s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238a8172' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 26px;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.7; }
.field input::placeholder, .field textarea::placeholder { color: #b3aa99; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--taupe); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--bronze); box-shadow: 0 1px 0 var(--bronze); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #a4472f; box-shadow: 0 1px 0 #a4472f; }
.field__error {
  display: none;
  font-size: 12px;
  color: #a4472f;
  letter-spacing: 0.02em;
}
.field.has-error .field__error { display: block; animation: err-in 0.4s var(--ease-soft); }
@keyframes err-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.consent { grid-column: 1 / -1; display: flex; gap: 14px; align-items: flex-start; font-size: 13.5px; color: var(--taupe-2); cursor: pointer; }
.consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--bronze-deep); flex-shrink: 0; cursor: pointer; }
.consent.has-error { color: #a4472f; }

.form__footer { grid-column: 1 / -1; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.form__note { font-size: 12.5px; color: var(--taupe); max-width: 40ch; }

.btn[disabled] { opacity: 0.6; cursor: wait; }
.btn .spinner {
  width: 14px; height: 14px;
  border: 1.5px solid rgba(244,240,232,0.35);
  border-top-color: var(--ivory);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn__arrow { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  text-align: left;
  border: 1px solid var(--line-soft);
  background: var(--ivory);
  padding: clamp(36px, 5vw, 64px);
}
.form-success.is-visible { display: block; animation: success-in 0.8s var(--ease-lux); }
@keyframes success-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.form-success__seal {
  width: 62px; height: 62px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--bronze-deep);
}
.form-success .display { margin-bottom: 18px; }
.form-success p { color: var(--taupe-2); max-width: 52ch; }
.form-success .ref {
  margin: 26px 0;
  padding: 16px 22px;
  border: 1px dashed var(--line);
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ---------- Related strip ---------- */
.related { border-top: 1px solid var(--line); }

/* ---------- Not found ---------- */
.not-found { text-align: center; padding: calc(var(--header-h) + 15vh) 0 15vh; }
.not-found .display { margin: 20px 0 18px; }
.not-found p { color: var(--taupe-2); margin-bottom: 34px; }

/* ---------- Utility ---------- */
.mt-xl { margin-top: clamp(56px, 7vw, 96px); }
.center { text-align: center; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 300;
  background: var(--ink);
  color: var(--ivory);
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.skip-link:focus { left: 12px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .exp-item, .principle { grid-template-columns: 64px 1fr; }
  .exp-item__text, .principle__text { grid-column: 2; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .enquiry-grid, .stay-card { grid-template-columns: 1fr; }
  .journey-row, .journey-row:nth-child(even) .journey-row__media { grid-template-columns: 1fr; order: 0; }
  .dest-row { grid-template-columns: 40px 1fr auto; }
  .dest-row__meta { display: none; }
  .dest-row__peek { display: none; }
  .detail-meta { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: 1fr; }
  .gallery .media:nth-child(1), .gallery .media:nth-child(2), .gallery .media:nth-child(3) {
    grid-column: 1 / 13; margin-top: 0; aspect-ratio: 4 / 3;
  }
  .hero__meta { gap: 22px 40px; }
  .filters { position: static; }
  .credits-list { columns: 1; }
}

@media (max-width: 600px) {
  :root { --header-h: 72px; }
  .cards, .cards--2 { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .intro__stats { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .timeline__item { grid-template-columns: 1fr; gap: 8px; }
  .includes { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .scroll-cue { display: none; }
  .brand__name { font-size: 19px; }
  .article-hero .media { aspect-ratio: 4 / 3; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
