/* ==============================================================
   ATYA — TERRA MOTION EDITION 2.1.0
   Visual system designed as a reusable premium Terra foundation.
   No wheel/touch interception. Decorative layers never capture clicks.
   ============================================================== */

:root {
  --terra-scroll: 0;
  --terra-direction: 0;
  --terra-velocity: 0;
  --terra-ease: cubic-bezier(.16, 1, .3, 1);
  --terra-ease-soft: cubic-bezier(.22, .72, .2, 1);
  --terra-dark: #263426;
  --terra-deep: #314632;
  --terra-sage: #87A982;
  --terra-sage-soft: #DDE8D9;
  --terra-sage-mist: #EEF3EA;
  --terra-sun: #FFD700;
  --terra-sun-pale: #FFF4A8;
  --terra-linen: #F3EEE4;
  --terra-paper: #FFFDF7;
  --terra-clay: #C98D70;
  --terra-line: rgba(38, 52, 38, .14);
  --terra-shadow: 0 42px 120px rgba(52, 69, 51, .16);
  --terra-shadow-tight: 0 24px 70px rgba(52, 69, 51, .13);
}

html {
  background: var(--terra-paper);
}

body {
  background:
    radial-gradient(circle at 16% 7%, rgba(135, 169, 130, .08), transparent 25rem),
    var(--terra-paper);
}

main {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

/* Original base transitions must never hide content before JavaScript. */
.image-settle,
.section-heading,
.activity-card,
.team-card,
.location-card,
.gallery-item,
[data-reveal],
[data-line-reveal] {
  opacity: 1;
  transform: none;
  clip-path: none;
}

/* Global progress and living line. */
html::after {
  content: "";
  position: fixed;
  z-index: 50000;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  transform: scaleX(var(--terra-scroll));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--terra-sage), var(--terra-sun));
  box-shadow: 0 0 22px rgba(255, 215, 0, .28);
  pointer-events: none;
}

.terra-atmosphere,
.terra-grain,
.terra-thread {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.terra-atmosphere {
  overflow: hidden;
}

.terra-grain {
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.terra-thread {
  left: auto;
  right: clamp(16px, 3vw, 54px);
  width: clamp(38px, 4vw, 72px);
  height: 100vh;
  overflow: visible;
  opacity: .24;
}

.terra-thread path {
  fill: none;
  stroke: var(--terra-sage);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.terra-section-indicator {
  --indicator-progress: 0;
  position: fixed;
  z-index: 90;
  left: clamp(12px, 1.5vw, 28px);
  top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-50%) rotate(-90deg) translateX(-50%);
  transform-origin: 0 0;
  pointer-events: none;
  color: var(--terra-deep);
}

.terra-section-indicator span {
  min-width: 90px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-align: right;
  text-transform: uppercase;
}

.terra-section-indicator i {
  position: relative;
  width: 80px;
  height: 1px;
  background: rgba(49, 70, 50, .18);
}

.terra-section-indicator i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(var(--indicator-progress));
  transform-origin: left;
  background: var(--terra-sun);
}

/* Shared typography motion. */
[data-title-reveal] {
  display: block;
}

.terra-word-mask {
  display: inline-flex;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: .05em;
  margin-bottom: -.05em;
}

.terra-word {
  display: inline-block;
}

:where(.terra-motion) [data-title-reveal] .terra-word {
  transform: translate3d(0, 112%, 0) rotate(1.8deg);
  opacity: .01;
  transition:
    transform 1.05s var(--terra-ease) calc(var(--reveal-delay, 0ms) + var(--word-index) * 58ms),
    opacity .48s ease calc(var(--reveal-delay, 0ms) + var(--word-index) * 58ms);
}

:where(.terra-motion) [data-title-reveal].is-visible .terra-word {
  transform: translate3d(0, 0, 0) rotate(0);
  opacity: 1;
}

:where(.terra-motion) [data-reveal],
:where(.terra-motion) .stat-card,
:where(.terra-motion) .journey-list > li,
:where(.terra-motion) .rates-placeholder > article,
:where(.terra-motion) .team-card,
:where(.terra-motion) .location-card,
:where(.terra-motion) .showcase-card,
:where(.terra-motion) .gallery-item,
:where(.terra-motion) .posts-grid > article {
  opacity: .001;
  transition:
    opacity .72s ease var(--reveal-delay, 0ms),
    transform 1.08s var(--terra-ease) var(--reveal-delay, 0ms),
    clip-path 1.08s var(--terra-ease) var(--reveal-delay, 0ms);
}

:where(.terra-motion) [data-reveal="up"],
:where(.terra-motion) .stat-card,
:where(.terra-motion) .journey-list > li,
:where(.terra-motion) .rates-placeholder > article,
:where(.terra-motion) .team-card,
:where(.terra-motion) .location-card,
:where(.terra-motion) .showcase-card,
:where(.terra-motion) .gallery-item,
:where(.terra-motion) .posts-grid > article {
  transform: translate3d(0, 42px, 0) scale(.985);
}

:where(.terra-motion) [data-reveal="left"] {
  transform: translate3d(-48px, 0, 0);
}

:where(.terra-motion) [data-reveal="right"] {
  transform: translate3d(48px, 0, 0);
}

:where(.terra-motion) [data-reveal].is-visible,
:where(.terra-motion) .stat-card.is-visible,
:where(.terra-motion) .journey-list > li.is-visible,
:where(.terra-motion) .rates-placeholder > article.is-visible,
:where(.terra-motion) .team-card.is-visible,
:where(.terra-motion) .location-card.is-visible,
:where(.terra-motion) .showcase-card.is-visible,
:where(.terra-motion) .gallery-item.is-visible,
:where(.terra-motion) .posts-grid > article.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-glow-card] {
  position: relative;
  isolation: isolate;
}

[data-glow-card]::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0;
  background: radial-gradient(260px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 215, 0, .22), transparent 72%);
  transition: opacity .45s ease;
  pointer-events: none;
}

[data-glow-card]:hover::before {
  opacity: 1;
}

[data-image-parallax] {
  overflow: hidden;
}

[data-image-parallax] img {
  transform: translate3d(0, var(--image-shift, 0), 0) scale(1.075);
  transition: transform .18s linear;
  will-change: transform;
}

.button.magnetic {
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
}

/* Header refinement. */
.site-header {
  padding: 20px 0;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--shell);
  height: 1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  background: rgba(49, 70, 50, .1);
  transition: transform .45s var(--terra-ease);
  pointer-events: none;
}

.site-header.is-scrolled::after {
  transform: translateX(-50%) scaleX(1);
}

.site-header.is-scrolled {
  background: rgba(255, 253, 247, .88);
  box-shadow: 0 12px 50px rgba(50, 68, 49, .05);
}

.primary-nav a {
  letter-spacing: .03em;
}

.header-cta {
  box-shadow: 0 12px 36px rgba(38, 52, 38, .16);
}

/* Hero — immersive Terra architecture. */
.hero {
  --hero-pointer-x: 0;
  --hero-pointer-y: 0;
  --hero-scroll: 0;
  position: relative;
  min-height: 100svh;
  padding: clamp(132px, 13vh, 180px) 0 74px;
  overflow: clip;
  background:
    radial-gradient(circle at calc(75% + var(--hero-pointer-x) * 3%) calc(33% + var(--hero-pointer-y) * 3%), rgba(255, 215, 0, .2), transparent 18rem),
    radial-gradient(circle at 8% 88%, rgba(135, 169, 130, .17), transparent 30rem),
    linear-gradient(140deg, #FFFDF8 0%, #F3EEE4 54%, #FAF8EF 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(49, 70, 50, .06) 8% calc(8% + 1px), transparent calc(8% + 1px) 92%, rgba(49, 70, 50, .06) 92% calc(92% + 1px), transparent calc(92% + 1px)),
    linear-gradient(rgba(255,255,255,.5), transparent 42%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 4;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .72fr);
  gap: clamp(58px, 8vw, 126px);
}

.hero-copy {
  transform: translate3d(0, calc(var(--hero-scroll) * -36px), 0);
  will-change: transform;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--terra-deep);
}

.hero .eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--terra-sun);
}

.hero .display {
  max-width: 940px;
  font-size: clamp(62px, 7.3vw, 122px);
  line-height: .89;
  letter-spacing: -.07em;
  color: var(--terra-deep);
}

.hero-lead {
  max-width: 690px;
  margin-top: 34px;
  padding-left: clamp(0px, 6vw, 92px);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.78;
}

.hero-actions {
  padding-left: clamp(0px, 6vw, 92px);
}

.hero-event {
  width: max-content;
  max-width: 100%;
  margin-left: clamp(0px, 6vw, 92px);
  padding: 11px 18px 11px 11px;
  border: 1px solid rgba(49, 70, 50, .12);
  border-radius: 999px;
  background: rgba(255, 253, 247, .64);
  backdrop-filter: blur(12px);
}

.hero-event > span {
  box-shadow: 0 0 0 8px rgba(255, 215, 0, .1);
}

.hero-visual {
  position: relative;
  width: min(100%, 590px);
  justify-self: end;
  transform:
    translate3d(calc(var(--hero-pointer-x) * 12px), calc(var(--hero-scroll) * 42px + var(--hero-pointer-y) * 10px), 0)
    rotate(calc(-1.8deg + var(--hero-pointer-x) * 1.2deg));
  will-change: transform;
}

.arch--hero {
  position: relative;
  height: min(72vh, 820px);
  border-radius: 52% 52% 11% 11% / 31% 31% 7% 7%;
  box-shadow: var(--terra-shadow);
  border: 9px solid rgba(255, 253, 247, .82);
  isolation: isolate;
}

.arch--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 50%, rgba(38, 52, 38, .22));
  pointer-events: none;
}

.hero-visual__halo {
  position: absolute;
  z-index: -2;
  inset: -44px -58px -56px -52px;
  border: 1px solid rgba(135, 169, 130, .28);
  border-radius: 52% 48% 12% 10% / 33% 31% 7% 8%;
  transform: rotate(3.2deg);
}

.hero-visual__halo::before,
.hero-visual__halo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-visual__halo::before {
  width: 120px;
  height: 120px;
  top: 4%;
  right: -24px;
  border: 1px solid rgba(255, 215, 0, .58);
}

.hero-visual__halo::after {
  width: 18px;
  height: 18px;
  left: -7px;
  bottom: 25%;
  background: var(--terra-sun);
  box-shadow: 0 0 0 13px rgba(255, 215, 0, .12);
}

.hero-visual__line {
  position: absolute;
  z-index: 4;
  inset: -3% -9% auto auto;
  width: 55%;
  height: 80%;
  pointer-events: none;
}

.hero-visual__line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-visual__line path {
  fill: none;
  stroke: var(--terra-sun);
  stroke-width: 1.2;
  stroke-dasharray: 8 10;
  vector-effect: non-scaling-stroke;
  animation: terraDash 11s linear infinite;
}

.hero-visual figcaption {
  right: -32px;
  bottom: 7%;
  z-index: 5;
  min-width: 170px;
  padding: 21px 24px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 30px 30px 30px 8px;
  background: rgba(255, 253, 247, .82);
  box-shadow: 0 24px 70px rgba(38, 52, 38, .14);
}

.hero-visual figcaption span {
  position: relative;
  padding-left: 16px;
}

.hero-visual figcaption span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terra-sun);
  transform: translateY(-50%);
}

.hero-seal {
  position: absolute;
  z-index: 6;
  left: -68px;
  top: 14%;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--terra-deep);
  color: var(--terra-paper);
  box-shadow: 0 20px 50px rgba(38, 52, 38, .2);
}

.hero-seal span {
  font: 600 23px/1 var(--heading);
  letter-spacing: .08em;
}

.hero-seal i {
  position: absolute;
  inset: 8px;
  animation: terraRotate 20s linear infinite;
  font-size: 7px;
  font-style: normal;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
  color: var(--terra-sun);
}

.hero-wordmark {
  position: absolute;
  z-index: 1;
  left: -.035em;
  bottom: -.115em;
  font: 700 clamp(190px, 29vw, 580px)/.7 var(--heading);
  letter-spacing: -.13em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(49, 70, 50, .085);
  transform: translate3d(calc(var(--hero-scroll) * -40px), calc(var(--hero-scroll) * 18px), 0);
  pointer-events: none;
  user-select: none;
}

.hero-sun-orbit {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 86px);
  top: 14%;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  pointer-events: none;
}

.hero-sun-orbit__disc,
.hero-sun-orbit__ring {
  position: absolute;
  border-radius: 50%;
}

.hero-sun-orbit__disc {
  inset: 42%;
  background: var(--terra-sun);
  box-shadow: 0 0 70px rgba(255, 215, 0, .32);
}

.hero-sun-orbit__ring {
  inset: 18%;
  border: 1px solid rgba(255, 215, 0, .25);
  animation: terraPulse 7s ease-in-out infinite;
}

.hero-sun-orbit__ring--2 {
  inset: 5%;
  border-style: dashed;
  border-color: rgba(135, 169, 130, .22);
  animation: terraRotate 30s linear infinite reverse;
}

.hero-ambient__shape {
  animation-duration: 13s;
  mix-blend-mode: multiply;
}

.hero-ambient__shape--1 {
  left: -130px !important;
  top: 20% !important;
  width: 340px !important;
  height: 280px !important;
  background: rgba(135, 169, 130, .15) !important;
}

.hero-ambient__shape--2 {
  right: 22% !important;
  bottom: -120px !important;
  width: 330px !important;
  height: 260px !important;
}

.hero-scroll {
  position: absolute;
  z-index: 7;
  left: clamp(22px, 4vw, 70px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--terra-deep);
}

.hero-scroll span {
  position: relative;
  width: 1px;
  height: 52px;
  overflow: hidden;
  background: rgba(49, 70, 50, .18);
}

.hero-scroll span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--terra-sun);
  animation: terraScrollCue 2s var(--terra-ease) infinite;
}

.hero-scroll em {
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* Moving trust ribbon. */
.trust-strip {
  position: relative;
  z-index: 3;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: var(--terra-deep);
}

.trust-marquee {
  overflow: hidden;
}

.trust-marquee__track {
  display: flex;
  width: max-content;
  animation: terraMarquee 34s linear infinite;
}

.trust-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 28px;
  padding: 22px 14px;
}

.trust-marquee__group span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 253, 247, .84);
  white-space: nowrap;
}

.trust-marquee__group i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra-sun);
  box-shadow: 0 0 0 6px rgba(255, 215, 0, .09);
}

/* Statistics become an editorial installation. */
.stats {
  position: relative;
  overflow: clip;
  padding-top: clamp(110px, 12vw, 180px);
  padding-bottom: clamp(120px, 13vw, 190px);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 215, 0, .1), transparent 22rem),
    var(--terra-paper);
}

.stats-layout {
  position: relative;
}

.stats-layout .section-heading {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.stats-layout .section-heading > p:last-child {
  margin-top: 28px;
  margin-left: min(11vw, 150px);
  max-width: 590px;
  color: var(--muted);
}

.stats-orbit {
  position: absolute;
  top: -30px;
  right: -60px;
  width: min(35vw, 460px);
  aspect-ratio: 1;
  pointer-events: none;
}

.stats-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(135, 169, 130, .2);
  border-radius: 50%;
}

.stats-orbit span:nth-child(2) {
  inset: 18%;
  border-style: dashed;
  animation: terraRotate 28s linear infinite;
}

.stats-orbit span:nth-child(3) {
  inset: 43%;
  border: 0;
  background: var(--terra-sun);
  box-shadow: 0 0 80px rgba(255, 215, 0, .28);
}

.stats-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 82px;
}

.stat-card {
  position: relative;
  grid-column: span 3;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid rgba(49, 70, 50, .11);
  border-radius: 32px 32px 130px 32px;
  background: rgba(255, 253, 247, .76);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform .6s var(--terra-ease), box-shadow .6s var(--terra-ease), border-radius .6s var(--terra-ease);
}

.stat-card:nth-child(even) {
  transform: translateY(48px);
  border-radius: 130px 32px 32px 32px;
}

.stat-card:hover {
  transform: translateY(-10px) rotate(-.4deg);
  box-shadow: var(--terra-shadow-tight);
  border-radius: 56px 120px 56px 56px;
}

.stat-card:nth-child(even):hover {
  transform: translateY(38px) rotate(.4deg);
}

.stat-card__index {
  position: absolute;
  top: 24px;
  left: 26px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--terra-deep);
}

.stat-card strong {
  position: relative;
  z-index: 2;
  font: 600 clamp(78px, 7.6vw, 122px)/.78 var(--heading);
  letter-spacing: -.09em;
  color: var(--terra-sage);
}

.stat-card p {
  position: relative;
  z-index: 2;
  max-width: 150px;
  margin: 26px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--terra-dark);
}

.stat-card > i {
  position: absolute;
  right: -38px;
  top: -32px;
  width: 150px;
  height: 150px;
  border-radius: 45% 55% 62% 38%;
  border: 1px solid rgba(135, 169, 130, .18);
  transform: rotate(25deg);
}

/* Journey / scroll story. */
.journey {
  position: relative;
  padding: clamp(110px, 13vw, 190px) 0;
  overflow: clip;
  background:
    linear-gradient(120deg, rgba(255,255,255,.28), transparent 40%),
    var(--terra-sage-soft);
}

.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 49.95%, rgba(49, 70, 50, .055) 50%, transparent 50.05%);
  pointer-events: none;
}

.journey-light {
  position: absolute;
  width: 50vw;
  aspect-ratio: 1;
  right: -18vw;
  top: -20vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, .24), transparent 67%);
  pointer-events: none;
}

.journey-grid {
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: start;
}

.journey-sticky {
  position: sticky;
  top: 132px;
  align-self: start;
  display: grid;
  grid-template-columns: 1fr 18px;
  gap: 38px;
}

.journey-progress {
  position: relative;
  width: 1px;
  height: 360px;
  margin-top: 14px;
  background: rgba(49, 70, 50, .14);
}

.journey-progress span {
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: top;
  background: var(--terra-sun);
}

.journey-progress i {
  position: absolute;
  left: 50%;
  top: calc(var(--step-progress, 0) * 100%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--terra-sun);
  box-shadow: 0 0 0 8px rgba(255, 215, 0, .15);
}

.journey-list {
  display: grid;
  gap: 42px;
}

.journey-list li {
  position: relative;
  min-height: 360px;
  grid-template-columns: 74px 1fr;
  align-content: end;
  padding: 46px;
  border: 1px solid rgba(49, 70, 50, .11) !important;
  border-radius: 34px 138px 34px 34px;
  background: rgba(255, 253, 247, .72);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(49, 70, 50, .06);
  transition: transform .7s var(--terra-ease), background .45s, box-shadow .6s, border-radius .6s;
}

.journey-list li:nth-child(even) {
  border-radius: 138px 34px 34px 34px;
}

.journey-list li.is-active {
  transform: translate3d(-18px, 0, 0) rotate(-.25deg);
  background: rgba(255, 253, 247, .94);
  box-shadow: var(--terra-shadow-tight);
  border-radius: 56px 120px 56px 56px;
}

.journey-list > li > span {
  align-self: start;
  font-size: 10px;
  color: var(--terra-deep);
}

.journey-list h3 {
  max-width: 520px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: .98;
}

.journey-list p {
  max-width: 500px;
}

.journey-label {
  margin-bottom: 12px !important;
  font-size: 9px !important;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra-sage) !important;
}

.journey-list li > i {
  position: absolute;
  right: -65px;
  top: -70px;
  width: 230px;
  height: 230px;
  border-radius: 47% 53% 60% 40%;
  background: rgba(135, 169, 130, .11);
  transform: rotate(20deg) scale(.82);
  transition: transform .8s var(--terra-ease), background .5s;
}

.journey-list li.is-active > i {
  transform: rotate(43deg) scale(1.05);
  background: rgba(255, 215, 0, .2);
}

/* About — layered editorial composition. */
.about {
  position: relative;
  padding: clamp(120px, 14vw, 210px) 0;
  background:
    radial-gradient(circle at 12% 88%, rgba(135, 169, 130, .11), transparent 24rem),
    var(--terra-paper);
}

.about-grid {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  gap: clamp(80px, 11vw, 170px);
}

.about-media-stack {
  position: relative;
  min-height: 760px;
}

.arch--portrait {
  position: absolute;
  inset: 0 8% 0 0;
  height: 100%;
  border-radius: 48% 48% 9% 9% / 30% 30% 6% 6%;
  box-shadow: var(--terra-shadow);
  border: 8px solid var(--terra-paper);
}

.about-media-stack::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -28px 1% -26px -28px;
  border: 1px solid rgba(135, 169, 130, .28);
  border-radius: 50% 48% 11% 9% / 31% 29% 7% 6%;
  transform: rotate(-2.5deg);
}

.about-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 6px;
  padding: 20px 24px;
  border-radius: 24px 24px 24px 7px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 253, 247, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(49, 70, 50, .12);
}

.about-card span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra-sage);
}

.about-card strong {
  max-width: 200px;
  font: 600 18px/1.2 var(--heading);
  color: var(--terra-deep);
}

.about-card--top {
  right: -18px;
  top: 13%;
}

.about-card--bottom {
  left: -24px;
  bottom: 10%;
}

.about-rings {
  position: absolute;
  z-index: 3;
  right: -35px;
  bottom: 20%;
  width: 130px;
  aspect-ratio: 1;
  pointer-events: none;
}

.about-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, .46);
}

.about-rings span:nth-child(2) { inset: 24%; }
.about-rings span:nth-child(3) { inset: 44%; background: var(--terra-sun); border: 0; }

.about-copy > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.82;
}

.values-cloud {
  position: relative;
  margin-top: 44px;
}

.values-cloud span {
  padding: 11px 17px;
  background: rgba(255, 253, 247, .66);
  transition: transform .35s var(--terra-ease), background .35s;
}

.values-cloud span:hover {
  transform: translateY(-4px) rotate(-1deg);
  background: var(--terra-sun-pale);
}

/* Activities — cinematic horizontal story. */
.horizontal-story {
  position: relative;
  background: var(--terra-deep);
  color: var(--terra-paper);
}

.horizontal-story__intro {
  position: relative;
  z-index: 4;
  padding-top: clamp(115px, 12vw, 180px);
  padding-bottom: 68px;
}

.horizontal-story .section-heading h2,
.horizontal-story .section-heading p,
.horizontal-story .eyebrow {
  color: var(--terra-paper);
}

.horizontal-story .section-heading > p {
  color: rgba(255, 253, 247, .68);
}

.horizontal-story__stage {
  position: relative;
  min-height: 100vh;
}

.horizontal-story__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  overflow: clip;
  padding: 92px 0 28px;
  background:
    radial-gradient(circle at calc(20% + var(--horizontal-progress, 0) * 55%) 45%, rgba(255, 215, 0, .14), transparent 24rem),
    linear-gradient(120deg, #2B3D2C, #1F2E21);
}

.horizontal-story__sticky::before {
  content: "ATYA";
  position: absolute;
  left: -2vw;
  bottom: -.13em;
  font: 700 min(38vw, 560px)/.72 var(--heading);
  letter-spacing: -.12em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 253, 247, .075);
  transform: translateX(calc(var(--horizontal-progress, 0) * -8vw));
  pointer-events: none;
}

.activity-toolbar {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.activity-filters {
  margin: 0;
}

.activity-filters button {
  border-color: rgba(255, 253, 247, .22);
  color: rgba(255, 253, 247, .76);
}

.activity-filters button.is-active,
.activity-filters button:hover {
  color: var(--terra-dark);
}

.horizontal-story__status {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  font: 600 12px/1 var(--heading);
  letter-spacing: .1em;
  color: var(--terra-paper);
}

.horizontal-story__status i {
  position: relative;
  width: 52px;
  height: 1px;
  background: rgba(255, 253, 247, .2);
}

.horizontal-story__status i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(var(--horizontal-progress, 0));
  transform-origin: left;
  background: var(--terra-sun);
}

.horizontal-story__viewport {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: visible;
  outline: none;
}

.activity-grid.horizontal-story__track {
  display: flex;
  width: max-content;
  gap: clamp(22px, 2.4vw, 38px);
  padding: 28px max(7vw, calc((100vw - 1260px) / 2)) 44px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.horizontal-story .activity-card {
  flex: 0 0 clamp(340px, 31vw, 520px);
  min-height: min(61vh, 640px);
  padding: clamp(27px, 2.5vw, 38px);
  border: 1px solid rgba(255, 253, 247, .13);
  border-radius: 42px 150px 42px 42px;
  background: rgba(255, 253, 247, .93);
  color: var(--terra-dark);
  box-shadow: 0 26px 80px rgba(10, 18, 11, .18);
  transform: scale(.93) rotate(.8deg);
  opacity: .72;
  transition: transform .72s var(--terra-ease), opacity .55s, border-radius .65s var(--terra-ease), box-shadow .6s;
}

.horizontal-story .activity-card:nth-child(even) {
  border-radius: 150px 42px 42px 42px;
  transform: scale(.93) rotate(-.8deg);
}

.horizontal-story .activity-card:nth-child(3n) {
  border-radius: 42px 42px 150px 42px;
}

.horizontal-story .activity-card.is-current,
.horizontal-story .activity-card:hover {
  transform: scale(1) rotate(0);
  opacity: 1;
  border-radius: 72px 132px 72px 72px;
  box-shadow: 0 42px 120px rgba(8, 15, 9, .28);
}

.activity-card__top {
  position: relative;
  z-index: 3;
}

.activity-icon {
  width: 54px;
  height: 54px;
  background: var(--terra-deep);
  box-shadow: 0 0 0 10px rgba(135, 169, 130, .1);
}

.activity-orbit {
  position: relative;
  height: 148px;
  margin: 22px 0 8px;
  display: grid;
  place-items: center;
}

.activity-orbit i {
  position: absolute;
  inset: 8px 22%;
  border: 1px solid rgba(135, 169, 130, .28);
  border-radius: 50%;
}

.activity-orbit i:nth-child(2) {
  inset: 24px 29%;
  border-style: dashed;
  animation: terraRotate 16s linear infinite;
}

.activity-orbit i:nth-child(3) {
  inset: 44px 36%;
  border: 0;
  background: var(--terra-sun);
  box-shadow: 0 0 40px rgba(255, 215, 0, .28);
}

.activity-orbit b {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--terra-deep);
}

.activity-orbit b svg {
  width: 34px;
  height: 34px;
}

.horizontal-story .activity-card h3 {
  font-size: clamp(33px, 3vw, 48px);
}

.horizontal-story .activity-card > p {
  font-size: 14px;
  line-height: 1.68;
}

.horizontal-story .activity-card dl {
  margin-top: auto;
}

.horizontal-story__hint {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 253, 247, .6);
}

.horizontal-story__hint span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.horizontal-story__hint i {
  position: relative;
  width: 110px;
  height: 1px;
  background: rgba(255, 253, 247, .15);
}

.horizontal-story__hint i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(var(--horizontal-progress, 0));
  transform-origin: left;
  background: var(--terra-sun);
}

/* Planning — framed data architecture. */
.schedule {
  position: relative;
  padding: clamp(120px, 13vw, 190px) 0;
  background:
    linear-gradient(135deg, rgba(135, 169, 130, .09), transparent 38%),
    var(--terra-linen);
}

.schedule-frame {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  margin-top: 72px;
  border: 1px solid rgba(49, 70, 50, .1);
  border-radius: 38px 120px 38px 38px;
  overflow: hidden;
  box-shadow: var(--terra-shadow-tight);
  background: var(--terra-paper);
}

.schedule-frame > aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  overflow: hidden;
  background: var(--terra-deep);
  color: var(--terra-paper);
}

.schedule-frame > aside span {
  font: 600 92px/.8 var(--heading);
  letter-spacing: -.09em;
  color: var(--terra-sun);
}

.schedule-frame > aside p {
  max-width: 100px;
  margin: 18px 0 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.schedule-frame > aside i {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, .24);
}

.schedule-table-wrap {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.schedule-table thead th {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--terra-paper);
  color: var(--terra-deep);
  border-bottom: 1px solid rgba(49, 70, 50, .13);
}

.schedule-table th,
.schedule-table td {
  padding: 23px 26px;
}

.schedule-table tbody tr {
  transition: background .25s, transform .25s;
}

.schedule-table tbody tr:hover {
  background: var(--terra-sage-mist);
}

/* Team — premium horizontal rail, next card always visible. */
.team {
  position: relative;
  padding: clamp(120px, 13vw, 190px) 0;
  overflow: clip;
}

.side-scroll {
  margin-top: 64px;
}

.side-scroll__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.side-scroll__toolbar > span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra-sage);
}

.side-scroll__toolbar > div {
  display: flex;
  gap: 8px;
}

.side-scroll__toolbar button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(49, 70, 50, .14);
  border-radius: 50%;
  background: var(--terra-paper);
  cursor: pointer;
  transition: transform .3s var(--terra-ease), background .3s, opacity .3s;
}

.side-scroll__toolbar button:hover:not(:disabled) {
  transform: scale(1.08);
  background: var(--terra-sun);
}

.side-scroll__toolbar button:disabled {
  opacity: .32;
  cursor: default;
}

.team-grid.side-scroll__track {
  display: flex;
  grid-template-columns: none;
  gap: 22px;
  margin-top: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  padding: 12px 9vw 48px 2px;
}

.team-grid.side-scroll__track::-webkit-scrollbar { display: none; }

.team-card {
  flex: 0 0 clamp(270px, 25vw, 360px);
  min-height: 470px;
  padding: 16px;
  scroll-snap-align: start;
  border: 1px solid rgba(49, 70, 50, .09);
  border-radius: 34px 34px 122px 34px;
  background: var(--terra-linen);
  overflow: hidden;
  transition: transform .55s var(--terra-ease), border-radius .55s var(--terra-ease), box-shadow .55s;
}

.team-card:nth-child(even) {
  border-radius: 122px 34px 34px 34px;
}

.team-card:hover {
  transform: translateY(-10px) rotate(-.35deg);
  border-radius: 64px 112px 64px 64px;
  box-shadow: var(--terra-shadow-tight);
}

.team-monogram,
.team-portrait {
  height: 310px;
  border-radius: 48% 48% 10% 10% / 30% 30% 7% 7%;
}

.team-monogram {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 215, 0, .55), transparent 25%),
    var(--terra-sage-soft);
}

.team-monogram span {
  font-size: 112px;
  letter-spacing: -.07em;
}

.team-monogram i {
  width: 190px;
  height: 190px;
  opacity: .5;
  animation: terraBlob 9s ease-in-out infinite;
}

.side-scroll__progress {
  width: 100%;
  height: 2px;
  margin-top: 4px;
  overflow: hidden;
  background: rgba(49, 70, 50, .1);
}

.side-scroll__progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--terra-sage), var(--terra-sun));
}

/* Forum full-bleed signature. */
.material-break {
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: clamp(100px, 12vw, 180px) 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 215, 0, .14), transparent 23rem),
    linear-gradient(130deg, #2D4030 0%, #1D2B1F 100%);
}

.material-break::before {
  width: min(58vw, 850px);
  height: min(58vw, 850px);
  right: -18vw;
  top: -22vw;
  border-color: rgba(255, 215, 0, .16);
}

.material-break__light {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 36%, rgba(255,255,255,.04) 50%, transparent 64%);
  transform: translateX(calc((var(--terra-scroll) - .5) * 20%));
  pointer-events: none;
}

.material-grid {
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: clamp(80px, 11vw, 170px);
}

.organic-frame {
  position: relative;
  height: min(69vh, 720px);
  border-radius: 48% 52% 41% 59% / 57% 44% 56% 43%;
  border: 8px solid rgba(255, 253, 247, .08);
  box-shadow: 0 42px 120px rgba(6, 12, 7, .28);
}

.organic-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(29, 43, 31, .34));
  pointer-events: none;
}

.organic-frame__label {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 8%;
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--terra-sun);
  color: var(--terra-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.material-grid h2 {
  font-size: clamp(52px, 5.7vw, 88px);
  line-height: .94;
}

.material-grid p {
  max-width: 720px;
  line-height: 1.8;
}

.material-word {
  position: absolute;
  left: -2vw;
  bottom: -.14em;
  font: 700 min(18vw, 280px)/.8 var(--heading);
  letter-spacing: -.1em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 253, 247, .07);
  pointer-events: none;
}

/* Rates, showcases, gallery. */
.rates {
  padding: clamp(120px, 13vw, 190px) 0;
}

.rates-placeholder {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 70px;
}

.rates-placeholder > article {
  position: relative;
  grid-column: span 3;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid rgba(49, 70, 50, .09);
  border-radius: 34px 110px 34px 34px;
  background: var(--terra-linen);
  overflow: hidden;
  transition: transform .55s var(--terra-ease), box-shadow .55s, border-radius .55s;
}

.rates-placeholder > article:nth-child(even) {
  transform: translateY(42px);
  border-radius: 110px 34px 34px 34px;
}

.rates-placeholder > article:hover {
  transform: translateY(-8px);
  border-radius: 62px 100px 62px 62px;
  box-shadow: var(--terra-shadow-tight);
}

.rates-placeholder > article:nth-child(even):hover {
  transform: translateY(34px);
}

.rates-placeholder .rate-index {
  position: absolute;
  left: 26px;
  top: 24px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--terra-deep);
}

.rates-placeholder > article > i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--terra-sun);
  font-style: normal;
  box-shadow: 0 0 0 12px rgba(255, 215, 0, .1);
}

.rates-placeholder > article > i svg { width: 23px; }
.rates-placeholder h3 { font-size: 29px; }

.showcase {
  padding: clamp(120px, 13vw, 190px) 0;
}

.showcase-card {
  position: relative;
  border: 1px solid rgba(49, 70, 50, .08);
  box-shadow: 0 18px 60px rgba(49, 70, 50, .07);
  transition: transform .6s var(--terra-ease), border-radius .6s, box-shadow .6s;
}

.showcase-card:nth-child(odd) { border-radius: 38px 130px 38px 38px; }
.showcase-card:nth-child(even) { border-radius: 130px 38px 38px 38px; }

.showcase-card:hover {
  transform: translateY(-9px) rotate(-.25deg);
  border-radius: 64px 112px 64px 64px;
  box-shadow: var(--terra-shadow-tight);
}

.gallery {
  padding: clamp(120px, 13vw, 190px) 0;
}

.gallery-mosaic {
  grid-auto-rows: 250px;
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: 38px 120px 38px 38px;
  box-shadow: 0 18px 60px rgba(49, 70, 50, .09);
}

.gallery-item:nth-child(even) { border-radius: 120px 38px 38px 38px; }

.gallery-item > span {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--terra-sun);
  color: var(--terra-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: scale(.78);
  opacity: 0;
  transition: transform .45s var(--terra-ease), opacity .35s;
}

.gallery-item:hover > span {
  transform: scale(1);
  opacity: 1;
}

.reviews {
  position: relative;
  overflow: clip;
  padding: clamp(110px, 12vw, 170px) 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 215, 0, .13), transparent 22rem),
    var(--terra-deep);
}

.reviews::after {
  content: "“";
  position: absolute;
  right: 4vw;
  bottom: -.28em;
  font: 600 min(44vw, 620px)/1 Georgia, serif;
  color: rgba(255, 253, 247, .035);
  pointer-events: none;
}

.reviews blockquote {
  background: rgba(255, 253, 247, .035);
  backdrop-filter: blur(8px);
  transition: transform .5s var(--terra-ease), background .4s;
}

.reviews blockquote:hover {
  transform: translateY(-8px);
  background: rgba(255, 253, 247, .07);
}

/* FAQ and contact. */
.faq {
  padding: clamp(120px, 13vw, 190px) 0;
}

.faq-sticky {
  position: sticky;
  top: 128px;
  align-self: start;
}

.accordion-item {
  position: relative;
  transition: padding .4s var(--terra-ease), background .35s, border-radius .4s;
}

.accordion-item.is-open {
  padding-inline: 24px;
  border-radius: 28px 82px 28px 28px;
  background: rgba(255, 253, 247, .72);
}

.accordion button {
  font-size: clamp(20px, 2vw, 28px);
}

.accordion button span {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: baseline;
}

.accordion button em {
  font: 800 9px/1 var(--body);
  letter-spacing: .15em;
  color: var(--terra-sage);
}

.contact {
  position: relative;
  padding: clamp(120px, 13vw, 190px) 0;
  overflow: clip;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 215, 0, .12), transparent 20rem),
    var(--terra-paper);
}

.contact-blob {
  position: absolute;
  z-index: 0;
  right: -16vw;
  bottom: -23vw;
  width: 60vw;
  aspect-ratio: 1;
  border-radius: 45% 55% 62% 38%;
  background: rgba(135, 169, 130, .11);
  transform: rotate(calc(12deg + var(--terra-scroll) * 18deg));
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
}

.contact-copy {
  top: 128px;
}

.contact-form-shell {
  position: relative;
}

.contact-form-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px;
  border: 1px solid rgba(135, 169, 130, .23);
  border-radius: 90px 38px 90px 38px;
  transform: rotate(-1deg);
}

.contact .registration-form {
  padding: clamp(30px, 4vw, 58px);
  border-radius: 86px 32px 86px 32px;
  box-shadow: var(--terra-shadow-tight);
  background: rgba(243, 238, 228, .92);
  backdrop-filter: blur(10px);
}

.contact-direct a {
  position: relative;
  transition: padding .35s var(--terra-ease), color .3s;
}

.contact-direct a:hover {
  padding-left: 14px;
  color: var(--terra-sage);
}

/* Local, practical and blog. */
.area {
  padding: clamp(110px, 12vw, 170px) 0;
}

.location-card {
  min-height: 320px;
  align-content: end;
  border: 1px solid rgba(49, 70, 50, .08);
  background: var(--terra-linen);
  transition: transform .55s var(--terra-ease), box-shadow .55s, border-radius .55s;
}

.location-card:hover {
  transform: translateY(-8px);
  border-radius: 60px 100px 60px 60px;
  box-shadow: var(--terra-shadow-tight);
}

.practical {
  padding: 62px 0;
  background: var(--terra-sage-soft);
}

.practical-grid > div {
  position: relative;
  padding-left: 30px;
}

.practical-grid > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terra-sun);
  box-shadow: 0 0 0 7px rgba(255, 215, 0, .1);
}

.blog-preview {
  padding: clamp(110px, 12vw, 170px) 0;
}

.posts-grid article {
  border: 1px solid rgba(49, 70, 50, .08);
  border-radius: 34px 100px 34px 34px;
  transition: transform .55s var(--terra-ease), box-shadow .55s, border-radius .55s;
}

.posts-grid article:hover {
  transform: translateY(-8px);
  border-radius: 60px 94px 60px 60px;
  box-shadow: var(--terra-shadow-tight);
}

/* Footer signature. */
.site-footer {
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(120px, 14vw, 210px);
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 215, 0, .12), transparent 22rem),
    linear-gradient(135deg, #2B3F2D, #18241A);
}

.footer-sun {
  right: -100px;
  top: -100px;
  width: min(48vw, 660px);
  height: min(48vw, 660px);
  animation: terraRotate 60s linear infinite;
}

.footer-signature p {
  font-size: clamp(54px, 7.3vw, 108px);
  line-height: .92;
  letter-spacing: -.075em;
}

.footer-signature .atya-logo {
  width: 280px;
}

.footer-grid {
  grid-template-columns: 1.5fr .7fr .55fr;
  align-items: end;
}

/* Drawer/lightbox safety and richer finish. */
.registration-drawer,
.lightbox {
  z-index: 60000;
}

.drawer-backdrop {
  backdrop-filter: blur(8px);
}

.drawer-panel {
  background: var(--terra-paper);
  box-shadow: -30px 0 100px rgba(20, 30, 21, .24);
}

.lightbox {
  background: rgba(20, 29, 21, .92);
  backdrop-filter: blur(14px);
}

/* Animations. */
@keyframes terraRotate { to { transform: rotate(360deg); } }
@keyframes terraDash { to { stroke-dashoffset: -180; } }
@keyframes terraMarquee { to { transform: translateX(-50%); } }
@keyframes terraScrollCue {
  0% { transform: translateY(-105%); }
  45%, 55% { transform: translateY(0); }
  100% { transform: translateY(105%); }
}
@keyframes terraPulse {
  0%, 100% { transform: scale(.94); opacity: .48; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes terraBlob {
  0%, 100% { border-radius: 45% 55% 62% 38%; transform: rotate(12deg) scale(.94); }
  50% { border-radius: 58% 42% 38% 62%; transform: rotate(35deg) scale(1.05); }
}

/* Tablet and smaller desktop. */
@media (max-width: 1180px) {
  .terra-section-indicator { display: none; }
  .hero-grid { grid-template-columns: 1fr .68fr; gap: 54px; }
  .hero-seal { left: -38px; }
  .stat-card { grid-column: span 6; min-height: 280px; }
  .stat-card:nth-child(even) { transform: none; }
  .rates-placeholder > article { grid-column: span 6; }
  .rates-placeholder > article:nth-child(even) { transform: none; }
  .schedule-frame { grid-template-columns: 160px minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .7fr .55fr; }
}

/* Mobile/tablet: all motion remains native and no sticky horizontal lock. */
@media (max-width: 979px) {
  .terra-thread { display: none; }
  .site-header { padding: 10px 0; }
  .hero {
    min-height: auto;
    padding: 132px 0 78px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }
  .hero-copy,
  .hero-visual {
    transform: none;
  }
  .hero .display { font-size: clamp(60px, 12vw, 100px); }
  .hero-lead,
  .hero-actions,
  .hero-event { padding-left: 0; margin-left: 0; }
  .hero-visual {
    justify-self: end;
    width: min(92%, 620px);
  }
  .arch--hero { height: min(74vh, 720px); }
  .hero-seal { left: -32px; }
  .hero-wordmark { font-size: 47vw; bottom: -.03em; }
  .hero-scroll { display: none; }
  .hero-sun-orbit { right: -12vw; top: 42%; width: 64vw; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { grid-column: auto; }
  .stats-layout .section-heading > p:last-child { margin-left: 0; }

  .journey-grid { grid-template-columns: 1fr; }
  .journey-sticky,
  .faq-sticky,
  .contact-copy { position: static; }
  .journey-sticky { grid-template-columns: 1fr; }
  .journey-progress { display: none; }
  .journey-list li { min-height: 310px; }
  .journey-list li.is-active { transform: none; }

  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-media-stack { width: min(92%, 620px); min-height: 720px; }

  .horizontal-story__intro { padding-bottom: 46px; }
  .horizontal-story__stage { min-height: 0; height: auto !important; }
  .horizontal-story__sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: block;
    padding: 22px 0 80px;
    overflow: hidden;
  }
  .activity-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .activity-filters {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .activity-filters::-webkit-scrollbar { display: none; }
  .activity-filters button { flex: 0 0 auto; }
  .horizontal-story__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .horizontal-story__viewport::-webkit-scrollbar { display: none; }
  .activity-grid.horizontal-story__track {
    transform: none !important;
    padding: 24px 28px 40px;
    gap: 18px;
  }
  .horizontal-story .activity-card {
    flex-basis: min(82vw, 440px);
    min-height: 590px;
    scroll-snap-align: center;
    transform: none;
    opacity: 1;
  }
  .horizontal-story__hint { margin-top: 18px; }

  .schedule-frame { grid-template-columns: 1fr; }
  .schedule-frame > aside { min-height: 190px; }
  .schedule-frame > aside span { font-size: 80px; }

  .material-grid { grid-template-columns: 1fr; gap: 70px; }
  .organic-frame { width: min(92%, 620px); }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .site-footer { min-height: auto; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1260px); }
  .section { padding: 88px 0; }
  .hero { padding-top: 116px; }
  .hero .display { font-size: clamp(52px, 15.5vw, 78px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-event { width: 100%; border-radius: 24px; }
  .hero-visual { width: 100%; }
  .arch--hero { height: 520px; border-width: 6px; }
  .hero-visual figcaption { right: 6px; }
  .hero-seal { left: 8px; top: -30px; width: 92px; height: 92px; }
  .hero-seal i { display: none; }
  .hero-sun-orbit { display: none; }

  .trust-marquee__group { gap: 18px; padding-block: 18px; }
  .trust-marquee__group span { font-size: 9px; }

  .stats { padding: 92px 0 112px; }
  .stats-grid { grid-template-columns: 1fr; margin-top: 54px; }
  .stat-card,
  .stat-card:nth-child(even) { min-height: 240px; transform: none; }
  .stat-card strong { font-size: 82px; }
  .stats-orbit { opacity: .6; }

  .journey { padding: 92px 0; }
  .journey-list { gap: 20px; }
  .journey-list li { min-height: 330px; grid-template-columns: 48px 1fr; padding: 30px; border-radius: 28px 94px 28px 28px; }
  .journey-list h3 { font-size: 38px; }

  .about { padding: 100px 0; }
  .about-media-stack { width: 100%; min-height: 560px; }
  .about-card { padding: 15px 17px; }
  .about-card--top { right: 0; }
  .about-card--bottom { left: 0; }
  .about-rings { right: -12px; }

  .horizontal-story__intro { padding-top: 94px; }
  .horizontal-story .section-heading h2 { font-size: clamp(40px, 12vw, 58px); }
  .activity-grid.horizontal-story__track { padding-inline: 14px 38px; }
  .horizontal-story .activity-card { flex-basis: 86vw; min-height: 610px; padding: 26px; }
  .activity-orbit { height: 120px; }
  .horizontal-story__status { display: none; }

  .schedule-frame { border-radius: 30px 74px 30px 30px; }
  .schedule-frame > aside { padding: 26px; }

  .team-grid.side-scroll__track { padding-right: 56px; }
  .team-card { flex-basis: 82vw; min-height: 430px; }
  .team-monogram,
  .team-portrait { height: 275px; }

  .material-break { min-height: auto; padding: 96px 0; }
  .organic-frame { width: 100%; height: 480px; }
  .material-grid h2 { font-size: 52px; }
  .material-word { font-size: 25vw; }

  .rates-placeholder { grid-template-columns: 1fr; }
  .rates-placeholder > article,
  .rates-placeholder > article:nth-child(even) { grid-column: auto; min-height: 280px; transform: none; }

  .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 290px; }
  .gallery-item,
  .gallery-item--wide { grid-column: auto; }
  .gallery-item--tall { grid-row: auto; }

  .accordion-item.is-open { padding-inline: 14px; }
  .accordion button span { grid-template-columns: 32px 1fr; }

  .contact .registration-form { padding: 25px; border-radius: 54px 24px 54px 24px; }
  .contact-form-shell::before { inset: -10px; border-radius: 62px 28px 62px 28px; }

  .area-grid,
  .practical-grid,
  .posts-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 250px; }
  .footer-signature p { font-size: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html::after,
  .terra-atmosphere,
  .hero-scroll,
  .hero-visual__line,
  .hero-sun-orbit { display: none !important; }
  .trust-marquee__track,
  .hero-seal i,
  .team-monogram i,
  .footer-sun { animation: none !important; }
  [data-image-parallax] img,
  .hero-copy,
  .hero-visual,
  .horizontal-story__track,
  .stat-card,
  .stat-card:nth-child(even),
  .rates-placeholder > article,
  .rates-placeholder > article:nth-child(even) {
    transform: none !important;
  }
  [data-reveal],
  [data-title-reveal],
  .stat-card,
  .journey-list > li,
  .rates-placeholder > article,
  .team-card,
  .location-card,
  .showcase-card,
  .gallery-item,
  .posts-grid > article {
    opacity: 1 !important;
  }
  .terra-word { transform: none !important; opacity: 1 !important; }
}

/* ==============================================================
   PLANNING 2.1 — PREMIUM LIVING WEEK
   A schedule should feel like an editorial object, not a spreadsheet.
   ============================================================== */
.schedule-premium {
  position: relative;
  isolation: isolate;
  padding: clamp(118px, 12vw, 180px) 0 clamp(105px, 11vw, 160px);
  overflow: clip;
  color: var(--terra-paper);
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 215, 0, .16), transparent 25rem),
    radial-gradient(circle at 8% 84%, rgba(135, 169, 130, .18), transparent 31rem),
    linear-gradient(145deg, #223222 0%, var(--terra-deep) 48%, #263c2a 100%);
}

.schedule-premium::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.schedule-premium__shell {
  position: relative;
  z-index: 2;
}

.schedule-premium__year {
  position: absolute;
  z-index: 0;
  right: -2.5vw;
  top: 24px;
  font: 600 clamp(150px, 21vw, 360px)/.8 var(--heading);
  letter-spacing: -.1em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 253, 247, .075);
  transform: translate3d(0, calc(var(--terra-scroll) * -36px), 0);
  pointer-events: none;
  white-space: nowrap;
}

.schedule-premium__halo {
  position: absolute;
  z-index: 0;
  right: clamp(-110px, -5vw, -40px);
  top: clamp(90px, 10vw, 160px);
  width: clamp(250px, 29vw, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, .18);
  pointer-events: none;
  animation: scheduleOrbit 24s linear infinite;
}

.schedule-premium__halo::before,
.schedule-premium__halo::after,
.schedule-premium__halo i {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.schedule-premium__halo::before {
  inset: 17%;
  border: 1px solid rgba(135, 169, 130, .28);
}

.schedule-premium__halo::after {
  inset: 39%;
  background: var(--terra-sun);
  box-shadow: 0 0 80px rgba(255, 215, 0, .22);
}

.schedule-premium__halo i:nth-child(1) {
  left: 49.5%;
  top: -4%;
  width: 1px;
  height: 108%;
  border-radius: 0;
  background: rgba(255, 215, 0, .19);
}

.schedule-premium__halo i:nth-child(2) {
  left: -4%;
  top: 49.5%;
  width: 108%;
  height: 1px;
  border-radius: 0;
  background: rgba(255, 215, 0, .19);
}

.schedule-premium__halo i:nth-child(3) {
  left: 12%;
  top: 10%;
  width: 11px;
  height: 11px;
  background: var(--terra-sun);
  box-shadow: 0 0 0 8px rgba(255, 215, 0, .08);
}

.schedule-premium__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .62fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: end;
  max-width: 1160px;
}

.schedule-premium .eyebrow {
  color: var(--terra-sun);
}

.schedule-premium__header h2 {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--terra-paper);
  font-size: clamp(62px, 8.4vw, 126px);
  line-height: .82;
  letter-spacing: -.075em;
}

.schedule-premium__intro {
  position: relative;
  padding: 0 0 10px 32px;
  border-left: 1px solid rgba(255, 253, 247, .18);
}

.schedule-premium__intro > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 253, 247, .72);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.schedule-premium__facts {
  display: flex;
  gap: 24px;
  margin-top: 34px;
}

.schedule-premium__facts span {
  display: grid;
  gap: 3px;
  color: rgba(255, 253, 247, .52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.schedule-premium__facts strong {
  color: var(--terra-paper);
  font: 600 28px/1 var(--heading);
  letter-spacing: -.04em;
}

.schedule-day-tabs {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  margin: clamp(64px, 8vw, 104px) 0 24px;
  padding: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  border: 1px solid rgba(255, 253, 247, .12);
  border-radius: 999px;
  background: rgba(255, 253, 247, .055);
  backdrop-filter: blur(14px);
}

.schedule-day-tabs::-webkit-scrollbar { display: none; }

.schedule-day-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 84px;
  min-height: 46px;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 253, 247, .62);
  cursor: pointer;
  transition: color .28s var(--terra-ease), background .35s var(--terra-ease), transform .35s var(--terra-ease);
}

.schedule-day-tabs button:hover,
.schedule-day-tabs button.is-active {
  color: var(--terra-dark);
  background: var(--terra-sun);
  transform: translateY(-1px);
}

.schedule-day-tabs button span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.schedule-day-tabs button small {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 253, 247, .1);
  font-size: 9px;
  font-weight: 900;
}

.schedule-day-tabs button.is-active small,
.schedule-day-tabs button:hover small {
  background: rgba(38, 52, 38, .12);
}

.schedule-week {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.schedule-day {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  min-width: 0;
  padding: 24px 17px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, .11);
  border-radius: 26px 26px 78px 26px;
  background:
    radial-gradient(circle 260px at var(--glow-x) var(--glow-y), rgba(255, 215, 0, .09), transparent 65%),
    rgba(255, 253, 247, .055);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .55s var(--terra-ease), border-color .4s, background .4s;
}

.schedule-day:nth-child(even) {
  margin-top: 34px;
  border-radius: 70px 26px 26px 26px;
}

.schedule-day:hover,
.schedule-day.is-active {
  z-index: 2;
  border-color: rgba(255, 215, 0, .28);
  background:
    radial-gradient(circle 300px at var(--glow-x) var(--glow-y), rgba(255, 215, 0, .12), transparent 65%),
    rgba(255, 253, 247, .085);
  transform: translateY(-8px);
}

.schedule-day__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: end;
  min-height: 72px;
  padding: 0 4px 18px;
}

.schedule-day__header > span {
  align-self: start;
  color: rgba(255, 253, 247, .34);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.schedule-day__header small {
  display: block;
  margin-bottom: 6px;
  color: var(--terra-sun);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.schedule-day__header h3 {
  margin: 0;
  color: var(--terra-paper);
  font-size: clamp(27px, 2.5vw, 39px);
  line-height: .95;
  letter-spacing: -.055em;
}

.schedule-day__header b {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--terra-sun);
  color: var(--terra-dark);
  font-size: 10px;
}

.schedule-day__line {
  position: relative;
  height: 1px;
  margin: 0 4px 9px;
  overflow: hidden;
  background: rgba(255, 253, 247, .1);
}

.schedule-day__line i {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--terra-sun), transparent);
  transition: transform 1s var(--terra-ease);
}

.schedule-day:hover .schedule-day__line i,
.schedule-day.is-active .schedule-day__line i {
  transform: scaleX(1);
}

.schedule-day__events {
  display: grid;
}

.schedule-event {
  position: relative;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 10px;
  padding: 19px 2px 20px;
  border-bottom: 1px solid rgba(255, 253, 247, .085);
}

.schedule-event:last-child { border-bottom: 0; }

.schedule-event__marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.schedule-event__marker::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: -21px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 253, 247, .14), transparent);
}

.schedule-event:last-child .schedule-event__marker::after { display: none; }

.schedule-event__marker span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: var(--terra-dark);
  background: var(--terra-sage);
  box-shadow: 0 0 0 5px rgba(135, 169, 130, .08);
}

.schedule-event--langues .schedule-event__marker span { background: var(--terra-sun); }
.schedule-event--culture-loisirs .schedule-event__marker span { background: var(--terra-clay); }
.schedule-event__marker svg { width: 14px; height: 14px; }

.schedule-event__content { min-width: 0; }

.schedule-event__time {
  color: var(--terra-sun-pale);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .015em;
}

.schedule-event h4 {
  margin: 7px 0 4px;
  color: var(--terra-paper);
  font: 600 18px/1.06 var(--heading);
  letter-spacing: -.035em;
}

.schedule-event p {
  margin: 0;
  overflow: hidden;
  color: rgba(255, 253, 247, .53);
  font-size: 11px;
  line-height: 1.4;
  text-overflow: ellipsis;
}

.schedule-event footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.schedule-event footer span,
.schedule-event footer em {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 5px 7px;
  border-radius: 999px;
  color: rgba(255, 253, 247, .56);
  background: rgba(255, 253, 247, .065);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.schedule-event footer em {
  color: var(--terra-dark);
  background: var(--terra-sun-pale);
}

.schedule-event footer svg { width: 10px; height: 10px; }

.schedule-premium__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 253, 247, .12);
}

.schedule-premium__footer p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(255, 253, 247, .58);
  font-size: 12px;
}

.schedule-premium__footer p > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terra-sun);
  box-shadow: 0 0 0 7px rgba(255, 215, 0, .08);
}

.button--sun {
  border-color: var(--terra-sun);
  background: var(--terra-sun);
  color: var(--terra-dark);
}

.button--sun::before {
  background: var(--terra-paper);
  color: var(--terra-dark);
}

.schedule-premium__empty {
  margin-top: 70px;
  padding: 50px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.05);
}

@keyframes scheduleOrbit {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .schedule-week {
    grid-template-columns: repeat(5, minmax(245px, 1fr));
    padding-bottom: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, .5) rgba(255,255,255,.08);
  }
  .schedule-day { scroll-snap-align: start; }
}

@media (max-width: 840px) {
  .schedule-premium {
    padding: 96px 0 92px;
  }

  .schedule-premium__header {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .schedule-premium__header h2 {
    font-size: clamp(58px, 16vw, 94px);
  }

  .schedule-premium__intro {
    padding-left: 22px;
  }

  .schedule-premium__halo {
    right: -140px;
    top: 180px;
    opacity: .55;
  }

  .schedule-premium__year {
    right: -60px;
    top: 40px;
    font-size: 170px;
  }

  .schedule-day-tabs {
    position: sticky;
    z-index: 5;
    top: 76px;
    width: 100%;
    margin-top: 54px;
    background: rgba(38, 52, 38, .88);
  }

  .schedule-day-tabs button {
    flex: 1 0 74px;
    min-width: 74px;
    justify-content: center;
  }

  .schedule-week {
    display: block;
    overflow: visible;
    padding: 0;
  }

  .terra-js .schedule-day:not(.is-active) {
    display: none;
  }

  .schedule-day,
  .schedule-day:nth-child(even) {
    min-height: 0;
    margin-top: 0;
    padding: 28px 22px 22px;
    border-radius: 28px 28px 84px 28px;
    transform: none;
  }

  .schedule-day:hover,
  .schedule-day.is-active {
    transform: none;
  }

  .schedule-day__header h3 { font-size: 42px; }
  .schedule-event { grid-template-columns: 36px minmax(0, 1fr); gap: 14px; }
  .schedule-event__marker span { width: 32px; height: 32px; }
  .schedule-event h4 { font-size: 22px; }
  .schedule-event__time { font-size: 13px; }
  .schedule-event p { font-size: 12px; }

  .schedule-premium__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .schedule-premium__facts {
    gap: 18px;
  }

  .schedule-premium__facts strong { font-size: 24px; }
  .schedule-day-tabs { top: 68px; }
  .schedule-day-tabs button { padding-inline: 11px; }
  .schedule-day-tabs button small { display: none; }
  .schedule-premium__footer .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .schedule-premium__halo { animation: none; }
  .schedule-premium__year { transform: none; }
  .schedule-day,
  .schedule-day:hover,
  .schedule-day.is-active { transform: none; }
}

/* Staggered entrance stays progressive: it only applies after JavaScript adds terra-motion. */
.terra-motion .schedule-week .schedule-day {
  opacity: 0;
  transform: translateY(58px) rotate(.8deg);
}

.terra-motion .schedule-week.is-visible .schedule-day {
  opacity: 1;
  transform: translateY(0) rotate(0);
  transition:
    opacity .8s var(--terra-ease),
    transform 1.05s var(--terra-ease),
    border-color .4s,
    background .4s;
}

.terra-motion .schedule-week.is-visible .schedule-day:nth-child(2) { transition-delay: 70ms; }
.terra-motion .schedule-week.is-visible .schedule-day:nth-child(3) { transition-delay: 140ms; }
.terra-motion .schedule-week.is-visible .schedule-day:nth-child(4) { transition-delay: 210ms; }
.terra-motion .schedule-week.is-visible .schedule-day:nth-child(5) { transition-delay: 280ms; }

.terra-motion .schedule-week.is-visible .schedule-day:hover,
.terra-motion .schedule-week.is-visible .schedule-day.is-active {
  transform: translateY(-8px) rotate(0);
}

.schedule-event__content {
  transition: transform .38s var(--terra-ease);
}

.schedule-event:hover .schedule-event__content {
  transform: translateX(4px);
}

@media (max-width: 840px) {
  .terra-motion .schedule-week .schedule-day,
  .terra-motion .schedule-week.is-visible .schedule-day,
  .terra-motion .schedule-week.is-visible .schedule-day:hover,
  .terra-motion .schedule-week.is-visible .schedule-day.is-active {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .terra-motion .schedule-week .schedule-day,
  .terra-motion .schedule-week.is-visible .schedule-day {
    opacity: 1;
    transform: none;
  }
  .schedule-event:hover .schedule-event__content { transform: none; }
}

/* ==============================================================
   3.0.1 — SCROLL STABILITY PATCH
   Keep the cinematic desktop sequence, but avoid mobile Safari
   compositing/reflow pressure around the Planning → Forum → Tarifs handoff.
   ============================================================== */
.horizontal-story__stage {
  overflow-anchor: none;
}

@media (max-width: 979px) {
  .activity-grid.horizontal-story__track {
    will-change: auto;
  }

  [data-image-parallax] img,
  .cinema-ready .hero-wordmark,
  .cinema-ready .material-word,
  .cinema-ready .schedule-premium__year {
    filter: none !important;
  }
}

/* Safari/iOS keeps hidden fixed and backdrop-filter layers in GPU memory.
   Removing only those expensive layers preserves the design and animations
   while preventing the browser from reloading the page at the Tarifs area. */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 979px) {
    body::before,
    body.cinema-ready::after {
      display: none !important;
    }

    .site-header,
    .schedule-day-tabs,
    .schedule-day,
    .activity-card,
    .stat-card,
    .journey-list > li,
    .contact-form-shell,
    .drawer-backdrop,
    .lightbox {
      -webkit-backdrop-filter: none !important;
      backdrop-filter: none !important;
    }

    .horizontal-story__sticky,
    .terra-manifesto__stage {
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }
  }
}


/* ============================================================== 
   3.0.2 — iOS / TOUCH MEMORY-SAFE MODE
   Safari may terminate a long page when fixed noise layers, sticky glass,
   continuous transforms and full-resolution uploads coexist. This mode keeps
   the premium layout while removing only the costly mobile compositing path.
   ============================================================== */
@media (max-width: 979px) {
  html.atya-mobile-safe,
  html.atya-mobile-safe body {
    scroll-behavior: auto !important;
  }

  html.atya-mobile-safe::after,
  html.atya-mobile-safe .terra-atmosphere,
  html.atya-mobile-safe .terra-grain,
  html.atya-mobile-safe .terra-thread,
  html.atya-mobile-safe .terra-section-indicator {
    display: none !important;
  }

  html.atya-mobile-safe main {
    isolation: auto;
    overflow-x: clip;
    overflow-y: visible;
  }

  html.atya-mobile-safe .site-header,
  html.atya-mobile-safe .hero-kinetic,
  html.atya-mobile-safe .hero-event,
  html.atya-mobile-safe .schedule-day-tabs,
  html.atya-mobile-safe .schedule-day,
  html.atya-mobile-safe .activity-card,
  html.atya-mobile-safe .stat-card,
  html.atya-mobile-safe .journey-list > li,
  html.atya-mobile-safe .contact-form-shell,
  html.atya-mobile-safe .drawer-backdrop,
  html.atya-mobile-safe .lightbox {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  html.atya-mobile-safe .site-header {
    background: rgba(255, 253, 248, .97);
  }

  html.atya-mobile-safe .schedule-day-tabs {
    position: relative;
    top: auto;
  }

  html.atya-mobile-safe [data-image-parallax] img,
  html.atya-mobile-safe .hero-copy,
  html.atya-mobile-safe .hero-visual,
  html.atya-mobile-safe .hero::after,
  html.atya-mobile-safe .hero-copy::before,
  html.atya-mobile-safe .hero-wordmark,
  html.atya-mobile-safe .material-word,
  html.atya-mobile-safe .schedule-premium__year,
  html.atya-mobile-safe .material-break__light,
  html.atya-mobile-safe .terra-manifesto__line,
  html.atya-mobile-safe .terra-manifesto__sun,
  html.atya-mobile-safe .terra-manifesto__words,
  html.atya-mobile-safe .terra-manifesto__atmosphere span,
  html.atya-mobile-safe .schedule-premium::before {
    transform: none !important;
    filter: none !important;
    will-change: auto !important;
  }

  html.atya-mobile-safe main *,
  html.atya-mobile-safe .site-header *,
  html.atya-mobile-safe .site-footer * {
    will-change: auto !important;
  }

  html.atya-mobile-safe .hero-ambient__shape,
  html.atya-mobile-safe .hero-visual__line path,
  html.atya-mobile-safe .hero-seal i,
  html.atya-mobile-safe .hero-sun-orbit__ring,
  html.atya-mobile-safe .hero-scroll span::after,
  html.atya-mobile-safe .trust-marquee__track,
  html.atya-mobile-safe .stats-orbit span,
  html.atya-mobile-safe .about-rings,
  html.atya-mobile-safe .team-monogram i,
  html.atya-mobile-safe .schedule-premium__halo,
  html.atya-mobile-safe .footer-sun,
  html.atya-mobile-safe .activity-orbit i,
  html.atya-mobile-safe .hero-kinetic__pulse i {
    animation: none !important;
  }

  html.atya-mobile-safe .hero-ambient__shape,
  html.atya-mobile-safe .arch--hero::after {
    mix-blend-mode: normal !important;
  }

  html.atya-mobile-safe .schedule-premium__halo,
  html.atya-mobile-safe .hero-sun-orbit,
  html.atya-mobile-safe .hero-visual__line {
    display: none !important;
  }

  html.atya-mobile-safe :where(.terra-motion) [data-reveal],
  html.atya-mobile-safe :where(.terra-motion) [data-title-reveal],
  html.atya-mobile-safe :where(.terra-motion) .stat-card,
  html.atya-mobile-safe :where(.terra-motion) .journey-list > li,
  html.atya-mobile-safe :where(.terra-motion) .rates-placeholder > article,
  html.atya-mobile-safe :where(.terra-motion) .team-card,
  html.atya-mobile-safe :where(.terra-motion) .location-card,
  html.atya-mobile-safe :where(.terra-motion) .showcase-card,
  html.atya-mobile-safe :where(.terra-motion) .gallery-item,
  html.atya-mobile-safe :where(.terra-motion) .posts-grid > article {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}


/* v3.0.3 — navigation and carousel refinement */
html { scroll-padding-top: 92px; }

/* Keep season figures on a single premium line on desktop. */
@media (min-width: 980px) {
  .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .stat-card { grid-column: auto; min-height: 285px; }
  .stat-card:nth-child(even), .stat-card:nth-child(even):hover { transform: none; }

  /* Registration steps aligned horizontally instead of stacked. */
  .journey-grid { grid-template-columns: 1fr; gap: 52px; }
  .journey-sticky { position: relative; top: auto; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; }
  .journey-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .journey-list li { min-height: 360px; margin: 0; transform: none !important; }
  .journey-progress { display: none; }

  /* Reduce the cinematic hold so there is no empty gap before activities. */
  .terra-manifesto { height: 175vh; }
}

.activity-navigation { display:flex; align-items:center; gap:12px; }
.activity-nav {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,253,247,.25);
  background: rgba(255,253,247,.08); color: var(--terra-paper);
  font-size: 22px; line-height: 1; cursor: pointer;
  transition: transform .25s var(--terra-ease), background .25s, color .25s;
}
.activity-nav:hover { transform: translateY(-2px); background: var(--terra-sun); color: var(--terra-dark); }

@media (max-width: 979px) {
  html { scroll-padding-top: 72px; }
  /* Native horizontal rows with a clear glimpse of the following card. */
  .stats-grid {
    display:flex; overflow-x:auto; gap:14px; margin-top:48px;
    padding: 0 14vw 24px 0; scroll-snap-type:x mandatory;
    scrollbar-width:none; overscroll-behavior-inline:contain;
  }
  .stats-grid::-webkit-scrollbar, .journey-list::-webkit-scrollbar { display:none; }
  .stat-card, .stat-card:nth-child(even) {
    flex:0 0 min(72vw, 330px); min-height:270px; transform:none;
    scroll-snap-align:start;
  }

  .journey-list {
    display:flex; overflow-x:auto; gap:16px; padding:0 17vw 20px 0;
    scroll-snap-type:x mandatory; scrollbar-width:none;
    overscroll-behavior-inline:contain;
  }
  .journey-list li {
    flex:0 0 min(78vw, 390px); min-height:330px; margin:0;
    scroll-snap-align:start;
  }

  .terra-manifesto { height:auto !important; }
  .terra-manifesto__stage { min-height:760px !important; }
  .horizontal-story__intro { padding-top:76px; }

  .activity-toolbar { gap:14px; }
  .activity-navigation { width:100%; justify-content:space-between; }
  .horizontal-story__status { display:flex !important; }
  .activity-grid.horizontal-story__track { padding-right:18vw; }
  .horizontal-story .activity-card { flex-basis:min(78vw, 410px); scroll-snap-align:start; }
}

@media (max-width: 680px) {
  .stats-grid { grid-template-columns:none; padding-right:20vw; }
  .stat-card, .stat-card:nth-child(even) { flex-basis:76vw; min-height:245px; }
  .journey-list { padding-right:19vw; }
  .journey-list li { flex-basis:79vw; }
  .terra-manifesto__stage { min-height:720px !important; padding-bottom:54px !important; }
  .horizontal-story__intro { padding-top:72px; }
  .horizontal-story .activity-card { flex-basis:79vw; min-height:590px; }
}

/* v3.0.4 — desktop-only final alignment refinements. Mobile rules remain untouched. */
@media (min-width: 980px) {
  /* Season: four rigorously uniform cards, regardless of label length. */
  .stats-grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
  }
  .stat-card,
  .stat-card:nth-child(even) {
    width: 100%;
    min-height: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 54px 28px 38px;
  }
  .stat-card p {
    min-height: 54px;
    max-width: 185px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* Registration: centre the heading and the three cards as one balanced composition. */
  .journey-grid {
    justify-items: center;
  }
  .journey-sticky {
    width: min(900px, 100%);
    display: block;
    text-align: center;
  }
  .journey-sticky .section-heading {
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
  }
  .journey-sticky .section-heading > p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .journey-list {
    width: 100%;
    align-items: stretch;
  }
  .journey-list li {
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 34px 42px;
  }
  .journey-list > li > span {
    position: absolute;
    top: 28px;
    left: 30px;
  }
  .journey-list li > div,
  .journey-list h3,
  .journey-list p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* The manifesto ends directly into Activities, without an empty cinematic hold. */
  .terra-manifesto {
    height: 120vh;
    margin-bottom: 0;
  }
  .horizontal-story__intro {
    padding-top: 82px;
  }

  /* Desktop wheel scroll drives the complete horizontal activity sequence. */
  .horizontal-story__viewport {
    overflow: hidden;
  }
  .activity-grid.horizontal-story__track {
    will-change: transform;
  }
}


/* v3.0.5 — desktop activities controlled by arrows only. Mobile stays unchanged. */
@media (min-width: 980px) {
  /* End the manifesto exactly at the next section: no residual sticky hold. */
  .terra-manifesto {
    height: 100svh !important;
    min-height: 680px;
    margin: 0 !important;
    padding: 0 !important;
  }
  .terra-manifesto__stage {
    height: 100svh;
    min-height: 680px;
  }
  .activities.horizontal-story {
    margin-top: 0 !important;
  }
  .horizontal-story__intro {
    padding-top: 76px;
  }

  /* The activity section is now a normal carousel, never a wheel-driven scene. */
  .horizontal-story__stage {
    height: auto !important;
    min-height: 0;
  }
  .horizontal-story__sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 760px;
    overflow: hidden;
    padding: 72px 0 38px;
  }
  .horizontal-story__viewport {
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .horizontal-story__viewport::-webkit-scrollbar { display: none; }
  .activity-grid.horizontal-story__track {
    transform: none !important;
    will-change: auto;
    padding-right: max(7vw, calc((100vw - 1260px) / 2));
  }
  .horizontal-story__hint { display: none; }

  /* More visible, premium desktop arrows. */
  .activity-navigation { gap: 14px; }
  .activity-nav {
    width: 54px;
    height: 54px;
    border-width: 1px;
    border-color: rgba(255,253,247,.42);
    background: rgba(255,253,247,.11);
    box-shadow: 0 12px 34px rgba(0,0,0,.16);
    font-size: 26px;
  }
  .activity-nav:disabled {
    opacity: .3;
    cursor: default;
    transform: none;
  }
}
