/* ==========================================================================
   PAXASO — Monochrome Plus Design System
   ========================================================================== */

:root {
  --sage-050: #F7F8F2;
  --sage-100: #ECEEE3;
  --sage-150: #DFE3D1;
  --sage-200: #D0D6BC;
  --sage-300: #B3BE9B;
  --sage-400: #8E9C6E;
  --sage-500: #6D7C4E;
  --sage-600: #545F3C;
  --sage-700: #3F4A2D;
  --sage-800: #2C3420;
  --sage-900: #1C2115;

  --accent: #C1571E;
  --accent-dark: #9C4517;
  --accent-light: #E8965F;
  --accent-tint: #FBE9DC;

  --paper: #FBFAF5;
  --paper-alt: #F3F2EA;
  --ink: #23261C;
  --ink-soft: #4B5240;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(28,33,21,0.07), 0 1px 1px rgba(28,33,21,0.05);
  --shadow-md: 0 6px 16px rgba(28,33,21,0.08), 0 2px 6px rgba(28,33,21,0.06);
  --shadow-lg: 0 20px 45px rgba(28,33,21,0.14), 0 6px 16px rgba(28,33,21,0.08);
  --shadow-accent: 0 10px 28px rgba(193,87,30,0.32), 0 2px 8px rgba(193,87,30,0.2);

  --ease: cubic-bezier(.22,1,.36,1);
  --container-w: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: 'Unbounded', sans-serif;
  color: var(--sage-900);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
  min-height: 44px;
  white-space: nowrap;
}
.btn i { transition: transform .35s var(--ease); font-size: 0.85em; }

.btn--accent {
  background: var(--accent);
  color: var(--paper);
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(193,87,30,0.4), 0 4px 10px rgba(193,87,30,0.25);
}
.btn--accent:hover i { transform: translateX(4px); }

.btn--outline {
  background: transparent;
  color: var(--sage-800);
  border: 1.5px solid var(--sage-300);
}
.btn--outline:hover {
  border-color: var(--sage-700);
  background: var(--sage-100);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn--large { padding: 18px 38px; font-size: 1rem; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header--scrolled {
  background: rgba(251, 250, 245, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  padding: 14px 0;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--sage-900);
  transition: opacity .3s var(--ease);
}
.header__logo:hover { opacity: 0.75; }
.header__logo-img { border-radius: 8px; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-full);
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width .35s var(--ease);
  border-radius: var(--radius-full);
}
.nav__link:hover { color: var(--sage-900); background: var(--sage-100); }
.nav__link:hover::after { width: 22px; }
.nav__link--active { color: var(--sage-900); font-weight: 600; }
.nav__link--active::after { width: 22px; background: var(--sage-700); }

.header__cta-btn {
  padding: 11px 22px;
  border-radius: var(--radius-full);
  background: var(--sage-800);
  color: var(--paper);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.header__cta-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--sage-900);
  font-size: 1.2rem;
  background: var(--sage-100);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.nav__toggle:hover { background: var(--sage-200); transform: rotate(90deg); }


.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav--open { visibility: visible; pointer-events: auto; }
.mobile-nav__overlay {
  position: absolute; inset: 0;
  background: rgba(28,33,21,0.55);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.mobile-nav--open .mobile-nav__overlay { opacity: 1; }
.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100vh;
  width: min(85vw, 380px);
  background: var(--sage-900);
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,0.3);
}
.mobile-nav--open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__close {
  align-self: flex-end;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: var(--paper);
  font-size: 1.2rem;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.mobile-nav__close:hover { background: var(--accent); transform: rotate(90deg); }
.mobile-nav__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav__link {
  display: block;
  padding: 16px 6px;
  font-family: 'Unbounded', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(251,250,245,0.85);
  border-bottom: 1px solid rgba(251,250,245,0.1);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.mobile-nav__link:hover { color: var(--accent-light); padding-left: 14px; }
.mobile-nav__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
}
.mobile-nav__contact {
  color: rgba(251,250,245,0.7);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 10px;
  transition: color .3s var(--ease);
}
.mobile-nav__contact:hover { color: var(--accent-light); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(140px, 20vw, 200px) 0 0;
  background: linear-gradient(180deg, var(--sage-050) 0%, var(--paper) 100%);
  overflow: hidden;
}
.hero__inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-tint);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}
.hero__title { margin-bottom: 28px; }
.hero__line {
  display: block;
}
.hero__line--1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  color: var(--sage-900);
}
.hero__line--2 {
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  font-weight: 500;
  color: var(--sage-600);
  margin-top: 6px;
}
.hero__line--3 {
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--accent);
  margin-top: 6px;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero__cta { margin-bottom: 60px; }
.hero__image-wrap {
  width: 100%;
  height: clamp(260px, 40vw, 460px);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero__image-wrap:hover .hero__image { transform: scale(1.04); }

/* ==========================================================================
   SECTION HEADING
   ========================================================================== */

.section-heading { max-width: 640px; margin-bottom: 56px; }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading__tag {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 14px;
}
.section-heading__title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-heading__text { color: var(--ink-soft); font-size: 1.02rem; }

/* ==========================================================================
   QUAD GRID
   ========================================================================== */

.quad-intro { padding: clamp(70px, 10vw, 120px) 0; }
.quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.quad-grid__item {
  background: var(--paper);
  border: 1px solid var(--sage-150);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background-color .4s var(--ease);
}
.quad-grid__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-300);
  background: var(--sage-050);
}
.quad-grid__icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: var(--sage-800);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
  transition: background-color .4s var(--ease), transform .4s var(--ease);
}
.quad-grid__item:hover .quad-grid__icon {
  background: var(--accent);
  transform: rotate(-6deg) scale(1.05);
}
.quad-grid__title { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.quad-grid__text { color: var(--ink-soft); font-size: 0.97rem; }

/* ==========================================================================
   STATS
   ========================================================================== */

.stats {
  background: var(--sage-900);
  padding: 70px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats__number {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 8px;
}
.stats__label {
  font-size: 0.88rem;
  color: rgba(251,250,245,0.6);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   SPLIT FEATURE
   ========================================================================== */

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split-feature--reverse { direction: rtl; }
.split-feature--reverse > * { direction: ltr; }
.split-feature__image-col { overflow: hidden; }
.split-feature__image {
  width: 100%; height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.split-feature__image-col:hover .split-feature__image { transform: scale(1.05); }
.split-feature__text-col {
  padding: clamp(40px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sage-050);
}
.split-feature__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin: 14px 0 20px;
}
.split-feature__text {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 1rem;
}

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: 8px;
  position: relative;
  width: fit-content;
  transition: gap .3s var(--ease);
}
.link-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.link-underline:hover { gap: 12px; }
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ==========================================================================
   SESSIONS SWIPER
   ========================================================================== */

.sessions { padding: clamp(70px, 10vw, 120px) 0; background: var(--paper-alt); }
.sessions__swiper { padding-bottom: 60px; }
.session-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--sage-150);
  height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.session-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.session-card__image { width: 100%; height: 210px; object-fit: cover; transition: transform .6s var(--ease); }
.session-card:hover .session-card__image { transform: scale(1.06); }
.session-card__body { padding: 28px; }
.session-card__number {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.session-card__title { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.session-card__text { color: var(--ink-soft); font-size: 0.95rem; }

.swiper-pagination-bullet { background: var(--sage-400); opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--accent); opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: var(--sage-700); }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 1.4rem; }

/* ==========================================================================
   DUAL CTA
   ========================================================================== */

.dual-cta { padding: clamp(60px, 8vw, 100px) 0; }
.dual-cta__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--sage-800);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
}
.dual-cta__primary, .dual-cta__secondary { color: var(--paper); }
.dual-cta__label {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-300);
  margin-bottom: 14px;
}
.dual-cta__title { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 600; margin-bottom: 14px; color: var(--paper); }
.dual-cta__text { color: rgba(251,250,245,0.75); margin-bottom: 26px; font-size: 0.96rem; }
.dual-cta__divider { width: 1px; height: 140px; background: rgba(251,250,245,0.15); }
.dual-cta .btn--outline { color: var(--paper); border-color: rgba(251,250,245,0.3); }
.dual-cta .btn--outline:hover { background: rgba(251,250,245,0.1); border-color: var(--paper); }

/* ==========================================================================
   CONTACT PREVIEW
   ========================================================================== */

.contact-preview { padding: clamp(60px, 8vw, 110px) 0; }
.contact-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-preview__card {
  background: var(--paper);
  border: 1px solid var(--sage-150);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.contact-preview__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-300);
}
.contact-preview__icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-full);
  background: var(--sage-100);
  color: var(--sage-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin: 0 auto 18px;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.contact-preview__card:hover .contact-preview__icon {
  background: var(--accent);
  color: var(--paper);
  transform: scale(1.1);
}
.contact-preview__title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.contact-preview__text { color: var(--ink-soft); font-size: 0.92rem; }
.contact-preview__text a { transition: color .3s var(--ease); }
.contact-preview__text a:hover { color: var(--accent-dark); }

/* ==========================================================================
   DISCLAIMER STRIP
   ========================================================================== */

.disclaimer-strip { padding: 30px 0 80px; }
.disclaimer-strip__text {
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: var(--sage-100);
  padding: 16px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ==========================================================================
   PAGE HERO (secondary pages)
   ========================================================================== */

.page-hero {
  padding: clamp(150px, 18vw, 190px) 0 clamp(60px, 8vw, 90px);
  background: var(--sage-900);
}
.page-hero__tag {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 20px;
}
.page-hero__text {
  font-size: 1.05rem;
  color: rgba(251,250,245,0.75);
  max-width: 680px;
}
.page-hero--legal { background: var(--sage-700); }

/* ==========================================================================
   CONTENT BLOCK
   ========================================================================== */

.content-block { padding: clamp(60px, 9vw, 100px) 0; }
.content-block--tinted { background: var(--sage-050); }
.content-block__narrow { max-width: 760px; margin: 0 auto; }
.content-block__lead {
  font-size: 1.2rem;
  color: var(--sage-800);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.7;
}
.content-block__heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.content-block__text {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ==========================================================================
   GALLERY STRIP
   ========================================================================== */

.gallery-strip { padding: clamp(50px, 8vw, 90px) 0; }
.gallery-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gallery-strip__grid--single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.gallery-strip__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform .6s var(--ease), box-shadow .4s var(--ease);
}
.gallery-strip__image:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

/* ==========================================================================
   SESSION DETAIL
   ========================================================================== */

.session-detail { padding: clamp(60px, 9vw, 100px) 0; }
.session-detail--tinted { background: var(--sage-050); }
.session-detail__grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: start;
}
.session-detail__grid--reverse { grid-template-columns: 1fr 140px; }
.session-detail__grid--reverse .session-detail__number-col { order: 2; }
.session-detail__big-number {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--sage-200);
  line-height: 1;
}
.session-detail__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; margin-bottom: 18px; }
.session-detail__text { color: var(--ink-soft); margin-bottom: 16px; }
.session-detail__points { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.session-detail__points li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.session-detail__points i { color: var(--accent); margin-top: 4px; }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.contact-form-section { padding: clamp(50px, 7vw, 90px) 0; }
.contact-form-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--sage-050);
  border: 1px solid var(--sage-150);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 56px);
}
.contact-form__row { margin-bottom: 20px; }
.contact-form__row--main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 8px; }
.contact-form__label { font-size: 0.86rem; font-weight: 500; color: var(--sage-800); }
.contact-form__optional { color: var(--ink-soft); font-weight: 400; }
.contact-form__input, .contact-form__textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sage-200);
  background: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  resize: none;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.contact-form__row--footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.contact-form__checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.contact-form__checkbox a { color: var(--accent-dark); font-weight: 500; transition: color .3s var(--ease); }
.contact-form__checkbox a:hover { color: var(--accent); }
.contact-form__submit { min-width: 200px; justify-content: center; }

/* ==========================================================================
   LOCATION DETAIL
   ========================================================================== */

.location-detail { padding: clamp(40px, 7vw, 90px) 0 clamp(80px, 10vw, 120px); }
.location-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.location-detail__map {
  width: 100%; height: 380px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   THANKS PAGE
   ========================================================================== */

.thanks { padding: clamp(150px, 18vw, 190px) 0 100px; }
.thanks__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.thanks__title { font-size: clamp(2rem, 4.5vw, 2.7rem); font-weight: 700; margin-bottom: 18px; }
.thanks__text { color: var(--ink-soft); margin-bottom: 32px; font-size: 1.05rem; }

.timeline { margin-top: 70px; text-align: left; display: flex; flex-direction: column; gap: 0; }
.timeline__item {
  display: flex;
  gap: 20px;
  padding-bottom: 44px;
  position: relative;
}
.timeline__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 21px; top: 46px; bottom: 0;
  width: 2px;
  background: var(--sage-200);
}
.timeline__marker {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--sage-200);
  color: var(--sage-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform .3s var(--ease);
}
.timeline__item--done .timeline__marker { background: var(--sage-700); color: var(--paper); }
.timeline__item--highlight .timeline__marker { background: var(--accent); color: var(--paper); box-shadow: var(--shadow-accent); }
.timeline__item--upcoming .timeline__marker { background: var(--sage-100); color: var(--sage-400); }
.timeline__title { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.timeline__text { color: var(--ink-soft); font-size: 0.94rem; }
.timeline__item--upcoming .timeline__title { color: var(--ink-soft); }

/* ==========================================================================
   LEGAL ACCORDION
   ========================================================================== */

.legal-section { padding: 60px 0 120px; }
.accordion-legal { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.accordion-legal__item {
  border: 1px solid var(--sage-150);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.accordion-legal__item:hover { border-color: var(--sage-300); box-shadow: var(--shadow-sm); }
.accordion-legal__item--open { box-shadow: var(--shadow-md); border-color: var(--sage-300); }
.accordion-legal__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--sage-900);
  text-align: left;
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
.accordion-legal__header:hover { background: var(--sage-050); color: var(--accent-dark); }
.accordion-legal__chevron { transition: transform .4s var(--ease); color: var(--sage-500); }
.accordion-legal__item--open .accordion-legal__chevron { transform: rotate(180deg); color: var(--accent); }
.accordion-legal__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.accordion-legal__inner { padding: 0 26px 26px; color: var(--ink-soft); }
.accordion-legal__inner p { margin-bottom: 14px; }
.accordion-legal__inner p:last-child { margin-bottom: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer { background: var(--sage-900); color: var(--paper); }
.footer__cta {
  padding: clamp(60px, 9vw, 110px) 0;
  text-align: center;
  border-bottom: 1px solid rgba(251,250,245,0.1);
}
.footer__cta-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--paper);
  max-width: 780px;
  margin: 0 auto 20px;
}
.footer__cta-text {
  color: rgba(251,250,245,0.65);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.02rem;
}
.footer__main { padding: 64px 0; border-bottom: 1px solid rgba(251,250,245,0.1); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--paper);
}
.footer__brand-text { color: rgba(251,250,245,0.6); font-size: 0.92rem; max-width: 300px; }
.footer__col-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(251,250,245,0.5);
  margin-bottom: 18px;
}
.footer__list { display: flex; flex-direction: column; gap: 12px; }
.footer__list a {
  color: rgba(251,250,245,0.75);
  font-size: 0.92rem;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
  display: inline-block;
}
.footer__list a:hover { color: var(--accent-light); padding-left: 6px; }
.footer__list--contact li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(251,250,245,0.75);
  font-size: 0.92rem;
}
.footer__list--contact i { color: var(--accent-light); margin-top: 3px; }
.footer__bottom { padding: 26px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(251,250,245,0.45);
}

/* ==========================================================================
   COOKIE CONSENT (top banner)
   ========================================================================== */

.cookie-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--sage-900);
  color: var(--paper);
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: 0.88rem; color: rgba(251,250,245,0.85); flex: 1; min-width: 220px; }
.cookie-banner__text a { color: var(--accent-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__btn {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'Unbounded', sans-serif;
  white-space: nowrap;
  transition: transform .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.cookie-banner__btn--reject { background: rgba(251,250,245,0.1); color: var(--paper); }
.cookie-banner__btn--reject:hover { background: rgba(251,250,245,0.18); transform: translateY(-2px); }
.cookie-banner__btn--customize { background: transparent; border: 1.5px solid rgba(251,250,245,0.3); color: var(--paper); }
.cookie-banner__btn--customize:hover { border-color: var(--paper); transform: translateY(-2px); }
.cookie-banner__btn--accept { background: var(--accent); color: var(--paper); }
.cookie-banner__btn--accept:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-accent); }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal--visible { display: flex; }
.cookie-modal__overlay { position: absolute; inset: 0; background: rgba(28,33,21,0.6); backdrop-filter: blur(3px); }
.cookie-modal__panel {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.cookie-modal__title { font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
.cookie-modal__desc { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 26px; }
.cookie-modal__category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sage-150);
}
.cookie-modal__category:last-of-type { border-bottom: none; }
.cookie-modal__category-title { font-weight: 600; font-size: 0.96rem; margin-bottom: 4px; }
.cookie-modal__category-text { color: var(--ink-soft); font-size: 0.86rem; }
.cookie-switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-switch__track {
  position: absolute; inset: 0;
  background: var(--sage-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color .3s var(--ease);
}
.cookie-switch__track::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: var(--paper);
  border-radius: 50%;
  transition: transform .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.cookie-switch input:checked + .cookie-switch__track { background: var(--accent); }
.cookie-switch input:checked + .cookie-switch__track::before { transform: translateX(20px); }
.cookie-switch input:disabled + .cookie-switch__track { opacity: 0.5; cursor: not-allowed; }
.cookie-modal__actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.cookie-modal__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background: var(--sage-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-700);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.cookie-modal__close:hover { background: var(--sage-200); transform: rotate(90deg); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .quad-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature--reverse { direction: ltr; }
  .split-feature--reverse .split-feature__image-col { order: -1; }
  .contact-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .dual-cta__grid { grid-template-columns: 1fr; }
  .dual-cta__divider { display: none; }
  .location-detail__grid { grid-template-columns: 1fr; }
  .session-detail__grid, .session-detail__grid--reverse { grid-template-columns: 80px 1fr; }
  .session-detail__grid--reverse .session-detail__number-col { order: 0; }
  .gallery-strip__grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav, .header__cta-btn { display: none; }
  .nav__toggle { display: flex; }
  .contact-form__row--main { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .contact-preview__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner__actions { justify-content: center; }
  .contact-form__row--footer { flex-direction: column; align-items: stretch; }
  .contact-form__submit { width: 100%; justify-content: center; }
}
</peer>