:root {
  --pine: #16352c;
  --pine-deep: #0c1f1a;
  --lake: #4a7a8c;
  --mist: #d5e4ea;
  --snow: #f4f8f7;
  --saffron: #c97b2a;
  --saffron-deep: #a35f1a;
  --ink: #14241f;
  --muted: #5a6f68;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--snow);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

/* ——— Page loader ——— */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(201, 123, 42, 0.18), transparent 60%),
    linear-gradient(165deg, #0a1a15 0%, var(--pine-deep) 45%, #122820 100%);
  color: #fff;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader.is-done .loader-inner {
  transform: translateY(-18px) scale(0.96);
  opacity: 0;
  transition: transform 0.55s var(--ease-out), opacity 0.55s;
}

.loader-inner {
  text-align: center;
  padding: 2rem;
  max-width: 28rem;
}

.loader-mountains {
  width: min(220px, 55vw);
  margin: 0 auto 1.5rem;
}

.loader-peak {
  fill: rgba(255, 255, 255, 0.12);
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.2;
  stroke-linejoin: round;
  transform-origin: center bottom;
}

.peak-1 {
  animation: peakRise 1.4s var(--ease-out) both;
}

.peak-2 {
  fill: rgba(201, 123, 42, 0.18);
  stroke: rgba(232, 184, 109, 0.55);
  animation: peakRise 1.4s var(--ease-out) 0.15s both;
}

.loader-snow {
  fill: #fff;
  opacity: 0.85;
  animation: snowTwinkle 1.6s ease-in-out 0.5s infinite alternate;
}

@keyframes peakRise {
  from {
    opacity: 0;
    transform: translateY(28px) scaleY(0.85);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes snowTwinkle {
  from {
    opacity: 0.45;
  }
  to {
    opacity: 1;
  }
}

.loader-brand {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.loader-brand .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: charIn 0.55s var(--ease-out) forwards;
}

@keyframes charIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.loader-tag {
  margin: 0 0 1.75rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.7s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.loader-bar {
  width: min(220px, 60vw);
  height: 2px;
  margin: 0 auto 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.loader-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--saffron), #e8b86d, #fff);
  background-size: 200% 100%;
  animation: barShimmer 1.4s linear infinite;
  transition: width 0.25s ease-out;
}

@keyframes barShimmer {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

.loader-pct {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

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

img.img-loading {
  opacity: 0;
}

img:not(.img-loading) {
  opacity: 1;
  transition: opacity 0.75s var(--ease-out);
}

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

/* ——— Scroll progress ——— */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 1100;
  background: linear-gradient(90deg, var(--saffron), #e8b86d);
  box-shadow: 0 0 12px rgba(201, 123, 42, 0.45);
  transition: width 0.1s linear;
}

/* ——— Nav ——— */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--nav-h);
  padding-block: 0.35rem;
  background: transparent;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.site-nav.scrolled {
  background: rgba(12, 31, 26, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(12, 31, 26, 0.28);
}

.navbar-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: #fff !important;
  transition: opacity 0.25s, transform 0.35s var(--ease-out);
}

.navbar-brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 0.85rem !important;
  position: relative;
  transition: color 0.25s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 1.5px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding-inline: 1.15rem !important;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff !important;
  transform: translateY(-1px);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
  padding: 0.4rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(201, 123, 42, 0.35);
}

.navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(12, 31, 26, 0.98);
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin-left: 0;
    display: inline-block;
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav-link::after {
    display: none;
  }
}

/* ——— Buttons ——— */
.btn-primary {
  --bs-btn-bg: var(--saffron);
  --bs-btn-border-color: var(--saffron);
  --bs-btn-hover-bg: var(--saffron-deep);
  --bs-btn-hover-border-color: var(--saffron-deep);
  --bs-btn-active-bg: var(--saffron-deep);
  --bs-btn-active-border-color: var(--saffron-deep);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding-inline: 1.6rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 123, 42, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding-inline: 1.6rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.35s var(--ease-out), border-color 0.3s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ——— Hero slider ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 1.25rem) 0 5.5rem;
  color: #fff;
  overflow: hidden;
}

.hero.is-ready .brand-mark,
.hero.is-ready .hero-caption,
.hero.is-ready .hero-actions,
.hero.is-ready .hero-controls,
.hero.is-ready .scroll-hint {
  opacity: 1;
  transform: none;
}

.brand-mark,
.hero-caption,
.hero-actions,
.hero-controls {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.scroll-hint {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), border-color 0.3s, transform 0.3s;
}

.hero.is-ready .brand-mark {
  transition-delay: 0.05s;
}
.hero.is-ready .hero-caption {
  transition-delay: 0.18s;
}
.hero.is-ready .hero-actions {
  transition-delay: 0.32s;
}
.hero.is-ready .hero-controls {
  transition-delay: 0.45s;
}
.hero.is-ready .scroll-hint {
  transition-delay: 0.55s;
  opacity: 1;
}

@media (max-width: 575.98px) {
  .hero {
    align-items: center;
    padding-bottom: 5rem;
  }

  .brand-mark {
    font-size: clamp(2rem, 9vw, 2.6rem);
    margin-bottom: 0.85rem;
  }

  .hero-headline {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }

  .hero-lede {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .btn-lg {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero-controls {
    bottom: 4.75rem;
  }
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  clip-path: inset(0 0 0 100%);
  transition:
    opacity 1.1s var(--ease-out),
    visibility 1.1s,
    clip-path 1.25s var(--ease-out);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  clip-path: inset(0 0 0 0);
}

.hero-slide.is-leaving {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 0.9s var(--ease-out) 0.15s,
    visibility 0.9s 0.15s,
    clip-path 1.15s var(--ease-out);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.12);
  will-change: transform;
}

.hero-slide.is-active .hero-image[data-ken="zoom-in"] {
  animation: kenZoomIn 7.5s linear forwards;
}

.hero-slide.is-active .hero-image[data-ken="zoom-out"] {
  animation: kenZoomOut 7.5s linear forwards;
}

.hero-slide.is-active .hero-image[data-ken="pan-right"] {
  animation: kenPanRight 7.5s linear forwards;
}

.hero-slide.is-active .hero-image[data-ken="pan-left"] {
  animation: kenPanLeft 7.5s linear forwards;
}

@keyframes kenZoomIn {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.2) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes kenZoomOut {
  from {
    transform: scale(1.22) translate3d(-2%, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(0, 1%, 0);
  }
}

@keyframes kenPanRight {
  from {
    transform: scale(1.16) translate3d(-3%, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(2%, -1%, 0);
  }
}

@keyframes kenPanLeft {
  from {
    transform: scale(1.16) translate3d(3%, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(-2%, 1%, 0);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 31, 26, 0.55) 0%, rgba(12, 31, 26, 0.28) 32%, rgba(12, 31, 26, 0.55) 58%, rgba(12, 31, 26, 0.9) 100%),
    linear-gradient(90deg, rgba(12, 31, 26, 0.62) 0%, transparent 60%);
}

.hero-glow {
  position: absolute;
  inset: auto -10% -20% 20%;
  z-index: 2;
  height: 45%;
  background: radial-gradient(ellipse at center, rgba(201, 123, 42, 0.22), transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.08) 48%, transparent 62%);
  transform: translateX(-120%);
  opacity: 0;
}

.hero.is-transitioning .hero-shine {
  animation: shineSweep 1.1s var(--ease-out);
}

@keyframes shineSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes glowPulse {
  from {
    opacity: 0.55;
    transform: scale(1);
  }
  to {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 42rem;
  padding-bottom: 0.5rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero-caption {
  min-height: 7.5rem;
  margin-bottom: 0.25rem;
}

.hero-headline,
.hero-lede {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out),
    filter 0.45s var(--ease-out);
}

.hero-caption.is-out .hero-headline,
.hero-caption.is-out .hero-lede {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
}

.hero-caption.is-out .hero-lede {
  transition-delay: 0.05s;
}

.hero-caption:not(.is-out) .hero-lede {
  transition-delay: 0.08s;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 1rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-lede {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-controls {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.45rem 0.55rem 0.45rem 0.45rem;
  border-radius: 999px;
  background: rgba(12, 31, 26, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}

.hero-nav:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: scale(1.06);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.15rem;
  background: transparent;
  backdrop-filter: none;
}

.hero-dot {
  position: relative;
  width: 2.1rem;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  overflow: hidden;
}

.hero-dot span {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--saffron), #e8b86d);
  border-radius: inherit;
}

.hero-dot.is-active span {
  animation: dotFill var(--slide-duration, 6.5s) linear forwards;
}

@keyframes dotFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero.is-ready .scroll-hint {
  transform: translateX(-50%);
}

.scroll-hint:hover {
  border-color: #fff;
  transform: translateX(-50%) translateY(2px);
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  animation: scrollPulse 1.8s var(--ease-out) infinite;
}

@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ——— Sections ——— */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 0.65rem;
}

.eyebrow.light {
  color: #e8b86d;
}

.section-intro {
  max-width: 34rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-intro h2,
.story-panel h2,
.contact h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--pine-deep);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.section-intro p,
.contact-lede {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

/* Experiences */
.experiences {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(74, 122, 140, 0.14), transparent),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(201, 123, 42, 0.06), transparent),
    var(--snow);
}

.experience-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .experience-grid {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 38rem;
  }

  .experience-panel:first-child {
    grid-row: 1 / -1;
  }
}

.experience-panel {
  position: relative;
  overflow: hidden;
  min-height: 16rem;
  isolation: isolate;
  border-radius: 0.35rem;
  box-shadow: 0 18px 40px rgba(12, 31, 26, 0.12);
}

.experience-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter 1.1s;
  filter: saturate(0.95) brightness(0.92);
}

.experience-panel:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) brightness(1);
}

.experience-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 1.85rem 1.5rem;
  background: linear-gradient(transparent, rgba(12, 31, 26, 0.92));
  color: #fff;
  z-index: 1;
  transform: translateY(6px);
  transition: transform 0.45s var(--ease-out);
}

.experience-panel:hover .experience-copy {
  transform: translateY(0);
}

.experience-copy h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.experience-copy p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28rem;
}

/* Seasons */
.seasons {
  padding: 2.75rem 0;
  background: linear-gradient(180deg, #e4eeea, #f0f5f3);
  border-block: 1px solid rgba(22, 53, 44, 0.08);
}

.seasons-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .seasons-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.season-item {
  text-align: center;
  padding: 1rem 0.5rem;
  transition: transform 0.4s var(--ease-out);
}

.season-item:hover {
  transform: translateY(-4px);
}

.season-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(22, 53, 44, 0.1);
  color: var(--pine-deep);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease-out);
}

.season-item:hover .season-icon {
  background: var(--saffron);
  color: #fff;
  transform: scale(1.08);
}

.season-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--pine-deep);
  margin-bottom: 0.2rem;
}

.season-item span:last-child {
  font-size: 0.88rem;
  color: #4a5f57;
}

/* Journeys */
.journeys {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(201, 123, 42, 0.12), transparent),
    var(--pine-deep);
  color: #fff;
}

.journeys .section-intro h2 {
  color: #fff;
}

.journeys .section-intro p {
  color: rgba(255, 255, 255, 0.7);
}

.journey-link {
  display: block;
  height: 100%;
  color: inherit;
}

.journey {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.journey-media {
  position: relative;
  overflow: hidden;
  border-radius: 0.35rem;
}

.journey-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.9s;
  filter: saturate(0.92);
}

.journey-link:hover .journey-media img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.journey-media .journey-days {
  position: absolute;
  top: 1rem;
  left: 1rem;
  margin: 0;
  padding: 0.35rem 0.75rem;
  background: rgba(12, 31, 26, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8b86d;
  font-weight: 500;
}

.journey figcaption {
  padding: 1.35rem 0 0;
}

.journey h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  transition: color 0.3s;
}

.journey-link:hover h3 {
  color: var(--saffron);
}

.journey p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
}

.journey-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #e8b86d;
  letter-spacing: 0.04em;
  transition: gap 0.35s var(--ease-out), color 0.3s;
}

.journey-link:hover .journey-cta {
  gap: 0.7rem;
  color: #fff;
}

/* Story */
.story {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 12vw, 8rem);
  color: #fff;
  overflow: hidden;
}

.story-media {
  position: absolute;
  inset: 0;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: storyDrift 28s ease-in-out infinite alternate;
}

@keyframes storyDrift {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12) translateY(-2%);
  }
}

.story-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 31, 26, 0.92) 0%, rgba(12, 31, 26, 0.58) 48%, rgba(12, 31, 26, 0.28) 100%);
}

.story .container {
  position: relative;
  z-index: 1;
}

.story-panel {
  max-width: 32rem;
}

.story-panel h2 {
  color: #fff;
}

.story-panel > p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
}

.story-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.story-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.story-panel.is-visible .story-points li {
  opacity: 1;
  transform: none;
}

.story-panel.is-visible .story-points li:nth-child(1) {
  transition-delay: 0.15s;
}
.story-panel.is-visible .story-points li:nth-child(2) {
  transition-delay: 0.28s;
}
.story-panel.is-visible .story-points li:nth-child(3) {
  transition-delay: 0.4s;
}

.story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--saffron);
}

/* Gallery */
.gallery {
  background: var(--snow);
}

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

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-template-rows: 14rem 14rem;
  }

  .gallery-item.tall {
    grid-row: 1 / -1;
  }

  .gallery-item.wide {
    grid-column: 2 / -1;
  }
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.35rem;
  min-height: 14rem;
  box-shadow: 0 12px 32px rgba(12, 31, 26, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 1s;
  filter: saturate(0.94);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

/* Contact */
.contact {
  background:
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(74, 122, 140, 0.12), transparent),
    linear-gradient(180deg, #e8f0ed 0%, var(--snow) 45%);
}

.inquiry-form {
  background: #fff;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(12, 31, 26, 0.08);
  border: 1px solid rgba(22, 53, 44, 0.06);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.inquiry-form:focus-within {
  box-shadow: 0 24px 60px rgba(12, 31, 26, 0.12);
  transform: translateY(-2px);
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-control,
.form-select {
  border: 1px solid #c9d6d1;
  border-radius: 0.5rem;
  padding: 0.75rem 0.95rem;
  font-size: 0.95rem;
  background: var(--snow);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--lake);
  box-shadow: 0 0 0 3px rgba(74, 122, 140, 0.2);
  background: #fff;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.contact-details a,
.contact-details p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: var(--pine);
  font-size: 0.98rem;
  transition: color 0.25s, transform 0.3s var(--ease-out);
}

.contact-details a:hover {
  color: var(--saffron);
  transform: translateX(4px);
}

.contact-details i {
  color: var(--saffron);
  font-size: 1.15rem;
  width: 1.25rem;
  text-align: center;
}

.form-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: var(--pine);
  font-size: 0.9rem;
  font-weight: 500;
  animation: fadeIn 0.5s var(--ease-out);
}

.form-note i {
  color: #2f7d4a;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Footer */
.site-footer {
  background: var(--pine-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.25rem 0;
  font-size: 0.9rem;
}

.footer-brand {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  transition: color 0.25s;
}

.footer-links a:hover {
  color: #e8b86d;
}

/* Floating UI */
.float-whatsapp,
.back-top {
  position: fixed;
  z-index: 1050;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(12, 31, 26, 0.28);
  transition: transform 0.35s var(--ease-out), opacity 0.35s, box-shadow 0.35s;
}

.float-whatsapp {
  right: 1.25rem;
  bottom: 1.25rem;
  background: #25d366;
  color: #fff;
  font-size: 1.55rem;
  animation: floatIn 0.7s var(--ease-out) 1.2s both;
}

.float-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.back-top {
  right: 1.25rem;
  bottom: 5rem;
  background: var(--pine-deep);
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--saffron);
  transform: translateY(-2px);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.85);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Reveal animations ——— */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero .reveal {
  transition-duration: 1.15s;
}

.hero .reveal:nth-child(1) {
  transition-delay: 0.12s;
}
.hero .reveal:nth-child(2) {
  transition-delay: 0.28s;
}
.hero .reveal:nth-child(3) {
  transition-delay: 0.42s;
}
.hero .reveal:nth-child(4) {
  transition-delay: 0.56s;
}

.experience-panel.reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.experience-panel.reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.gallery-item.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.gallery-item.reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.gallery-item.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.journeys .col-md-4.reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.journeys .col-md-4.reveal:nth-child(3) {
  transition-delay: 0.24s;
}

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

  .hero-image,
  .story-media img,
  .hero-glow,
  .scroll-hint span,
  .float-whatsapp,
  .loader-peak,
  .loader-snow,
  .loader-bar-fill,
  .hero-shine {
    animation: none !important;
  }

  .hero-slide {
    transition: opacity 0.35s ease;
    clip-path: none !important;
  }

  .reveal,
  .story-points li,
  .brand-mark,
  .hero-caption,
  .hero-actions,
  .hero-controls,
  .scroll-hint {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-loader {
    transition: none;
  }
}
