/* ============================================================
   HÖLISTIKMAT — Living Mindfully in Motion
   Paleta y tipografía según brandbook (2026)
   Ivy Presto Headline → Fraunces · Covik Sans → DM Sans · Coax → Poppins
   ============================================================ */

:root {
  /* Paleta oficial */
  --sage:     #C9D6C9;  /* Sacred Sage */
  --olive:    #919A7F;  /* Grounded Olive */
  --stone:    #DBD9D5;  /* Soft Stone */
  --sky:      #9CB4C7;  /* Quiet Sky */
  --aura:     #E6E2ED;  /* Morning Aura */
  --solar:    #ED8C57;  /* Solar Flow */
  --linen:    #E5DDCE;  /* Warm Linen */
  --lilac:    #A69498;  /* Inner Lilac */
  --vitality: #DEBFAD;  /* Soft Vitality */

  --ink:      #1E1E1C;
  --charcoal: #29282599;
  --charcoal-solid: #292825;
  --cream:    #F3F0E9;

  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --label: "Poppins", "DM Sans", sans-serif;

  --header-h: 88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); border: 0;
}

:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }

/* ============ TIPOGRAFÍA BASE ============ */

.eyebrow {
  font-family: var(--label);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .75;
}

.eyebrow-cream { color: var(--cream); opacity: .92; }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.12;
  letter-spacing: .01em;
  margin-top: 18px;
}

.section-title em, .hero-title em, .about-title em,
.retreats-title em, .news-title em {
  font-style: italic;
  font-weight: 300;
}

/* ============ BOTONES ============ */

.btn {
  display: inline-block;
  font-family: var(--label);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 17px 44px;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
  border: 1px solid transparent;
  text-align: center;
}

.btn-pill { border-radius: 999px; }

.btn-solid-cream { background: var(--cream); color: var(--ink); }
.btn-solid-cream:hover { background: #fff; }

.btn-solid-dark { background: var(--ink); color: var(--cream); }
.btn-solid-dark:hover { background: #000; }

.btn-outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }

.btn-outline-cream { border-color: rgba(243,240,233,.75); color: var(--cream); background: transparent; padding: 12px 28px; }
.btn-outline-cream:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

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

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--charcoal-solid);
  height: var(--header-h);
}

.header-inner {
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav ul, .nav-list { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-left { justify-self: start; }
.nav-right { justify-self: end; gap: 30px; }

.nav-link {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  letter-spacing: .02em;
  color: var(--cream);
  white-space: nowrap;
  transition: opacity .2s ease;
}
.nav-link:hover { opacity: .65; }
.nav-link-muted { font-size: 16px; opacity: .8; }

.brand { justify-self: center; display: block; }
.brand-logo { height: 34px; width: auto; }

.burger {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  justify-self: end;
}
.burger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 40;
  background: var(--charcoal-solid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; text-align: center; display: grid; gap: 22px; }
.mobile-link {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--cream);
}
.mobile-cta { margin-top: 8px; }

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

.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  height: calc(100svh - var(--header-h));
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-h);
}

.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,30,28,.30) 0%, rgba(30,30,28,.16) 45%, rgba(30,30,28,.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 24px;
  max-width: 900px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 8.5vw, 108px);
  line-height: 1.05;
  margin: 26px 0 22px;
  text-shadow: 0 2px 30px rgba(30,30,28,.25);
}

.hero-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(17px, 2vw, 21px);
  letter-spacing: .02em;
  margin-bottom: 40px;
}

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream);
  opacity: .85;
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============ MANIFIESTO · diapositiva p3 del brandbook ============ */

.manifesto {
  position: relative;
  background: var(--linen) url('images/paper-linen.jpg') center / cover no-repeat;
  padding: 170px 24px;
  text-align: center;
  overflow: hidden;
}

.manifesto-logo {
  height: clamp(38px, 4.6vw, 54px);
  width: auto;
  margin: 0 auto 48px;
}

.manifesto-caps {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.7vw, 19px);
  letter-spacing: .16em;
  line-height: 2;
  text-transform: uppercase;
  max-width: 620px;
  margin: 0 auto;
}

.paren {
  position: absolute;
  top: 50%;
  transform: translateY(-54%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(300px, 42vw, 560px);
  line-height: 1;
  color: var(--ink);
  opacity: .16;
  pointer-events: none;
  user-select: none;
}
.paren-left  { left: clamp(-40px, 2vw, 80px); }
.paren-right { right: clamp(-40px, 2vw, 80px); }

.manifesto-inner { max-width: 720px; margin: 0 auto; position: relative; }

.sun-icon { width: 54px; height: auto; margin: 0 auto 34px; opacity: .85; }
.sun-small { width: 40px; margin-bottom: 26px; }

.sun-spin { animation: spin 80s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.manifesto-big {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.25;
}
.manifesto-big em { font-style: italic; }

.manifesto-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 32px);
  margin-top: 38px;
}

.manifesto-small { margin-top: 16px; font-size: 16px; opacity: .8; }

/* ============ THE RITUAL / DROP 01 ============ */

.ritual {
  background: var(--sage);
  padding: 130px 24px;
  text-align: center;
}

.ritual-inner { max-width: 780px; margin: 0 auto; }

.ritual-title, .drop-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 11vw, 140px);
  line-height: 1;
  margin: 22px 0 10px;
}
.ritual-title em, .drop-title em { font-style: italic; }

.ritual-date {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: .38em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 28px;
}

.ritual-copy { max-width: 560px; margin: 0 auto 22px; }
.ritual-copy-last { margin-bottom: 46px; }
.ritual-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  margin: 0 auto 24px;
}
.ritual-note { font-size: 15.5px; opacity: .8; margin: -14px auto 26px; }

.countdown {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(12px, 3vw, 30px);
  margin-bottom: 48px;
}

.count-cell { display: grid; gap: 4px; min-width: 64px; }

.count-num {
  font-family: var(--serif);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  font-size: clamp(44px, 6.5vw, 76px);
  line-height: 1;
}

.count-label {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .7;
}

.count-sep {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  opacity: .45;
  align-self: start;
}

.ritual-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============ CLASES ============ */

.classes {
  background: var(--stone);
  padding: 130px 40px 140px;
}

.section-head { text-align: center; margin-bottom: 70px; }

.class-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  max-width: 1500px;
  margin: 0 auto;
}

/* --- Marquee "coming soon" --- */

.marquee {
  background: var(--solar);
  color: var(--ink);
  overflow: hidden;
  transform: rotate(-1.4deg);
  width: 106vw;
  margin: 0 0 76px calc(50% - 53vw);
  padding: 20px 0;
  box-shadow: 0 10px 30px rgba(30,30,28,.10);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-seq {
  display: flex;
  align-items: center;
  gap: 38px;
  padding-right: 38px;
  white-space: nowrap;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: .04em;
}

.marquee-seq em { font-style: italic; }

.marquee-seq span {
  font-family: var(--label);
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: .34em;
  text-transform: uppercase;
}

.marquee-seq img { width: 26px; height: auto; opacity: .9; }

@keyframes marquee { to { transform: translateX(-50%); } }

.marquee:hover .marquee-track { animation-play-state: paused; }

/* --- Badges coming soon --- */

.soon-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--solar);
  color: var(--ink);
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  transform: rotate(-4deg);
}

.soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--solar);
  color: var(--ink);
  font-family: var(--label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 999px;
  margin-bottom: 26px;
  animation: pulse 2.6s ease-in-out infinite;
}

.soon-pill-sun { width: 20px; height: auto; }

@keyframes pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(237,140,87,.55); }
  50%      { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(237,140,87,0); }
}

.class-card { text-align: left; }

.class-media {
  position: relative;
  aspect-ratio: 3 / 4.4;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--linen);
}
.class-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.class-card:hover .class-media img { transform: scale(1.045); }

.class-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: .01em;
}

.class-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--olive);
  margin: 4px 0 12px;
}

.class-desc { font-size: 15.5px; line-height: 1.6; opacity: .88; }

/* ============ NOSOTRAS · diapositiva p34 del brandbook ============ */

.about {
  background: var(--stone);
  color: var(--ink);
  padding: 160px 24px;
  text-align: center;
}

.about-inner { max-width: 860px; margin: 0 auto; }

.about-caps {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.18;
  letter-spacing: .05em;
  text-transform: uppercase;
  max-width: 700px;
  margin: 26px auto 26px;
}

.about-voice {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
  opacity: .85;
}

/* ============ NUESTRO ENFOQUE · diapositiva p5 del brandbook ============ */

.slide-p5 { background: var(--linen); line-height: 0; }
.slide-p5 img { display: block; width: 100%; height: auto; }

/* ============ FRASE · diapositiva p100 del brandbook ============ */

.quote-slide {
  background: var(--aura);
  padding: 64px 24px;
  text-align: center;
}

.quote-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 26px;
}
.quote-text em { font-style: italic; }

.quote-sun { margin: 0 auto; display: block; width: 30px; }

/* ============ NOSOTRAS · video ============ */

.video-feature {
  position: relative;
  background: var(--charcoal-solid);
  line-height: 0;
}

.video-bg {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: cover;
}

.video-eyebrow {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.5;
  text-shadow: 0 1px 14px rgba(30,30,28,.4);
}

/* ============ CREAMOS · diapositiva p4 del brandbook ============ */

.creamos {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.creamos-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.creamos-text {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin-left: clamp(24px, 9vw, 160px);
  padding: 40px 10px;
  text-align: center;
}

.creamos-caps {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: .15em;
  line-height: 2;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 22px rgba(30,30,28,.18);
}

@media (max-width: 760px) {
  .creamos { min-height: 70vh; }
  .creamos-text { margin: 0 auto; padding: 60px 24px; }
}

/* ============ RETIROS ============ */

.retreats {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px;
}

.retreats-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.retreats-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,30,28,.42), rgba(30,30,28,.30));
}

.retreats-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--cream);
  max-width: 760px;
}

.retreats-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.1;
  margin: 22px 0 20px;
}

.retreats-copy { max-width: 540px; margin: 0 auto 38px; opacity: .92; }

/* ============ HABITAR / ECOSISTEMA ============ */

.habitar {
  background: var(--sage) url('images/paper-sage.jpg') center / cover no-repeat;
  padding: 150px 24px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.habitar-inner { max-width: 700px; }

.habitar-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.12;
  margin: 20px 0 26px;
}

.habitar-copy { max-width: 560px; margin: 0 auto 44px; font-size: clamp(17px, 1.9vw, 19px); }

.habitar-lead {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 26px;
}

.habitar-list {
  list-style: none;
  display: grid;
  gap: 16px;
  max-width: 430px;
  margin: 0 auto 46px;
  text-align: left;
}

.habitar-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  background: rgba(243,240,233,.55);
  border: 1px solid rgba(30,30,28,.10);
  border-radius: 999px;
  padding: 13px 26px;
}

.habitar-list img { width: 22px; height: auto; flex-shrink: 0; }

.habitar-drop {
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 27px);
  line-height: 1.45;
  margin-bottom: 40px;
}
.habitar-drop em { font-style: italic; }

.btn-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  padding: 20px 52px;
}

.btn-sun { width: 20px; height: auto; display: inline-block; }

.ob-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ============ ONBOARDING (mini typeform) ============ */

.onboarding {
  position: fixed; inset: 0;
  z-index: 110;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.onboarding.open { opacity: 1; pointer-events: auto; }

.ob-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: rgba(30,30,28,.10);
}
.ob-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--olive);
  transition: width .4s ease;
}

.ob-back {
  position: absolute;
  top: 24px; left: 30px;
  background: none; border: 0;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
  width: 48px; height: 48px;
  transition: opacity .2s ease;
}
.ob-back:hover { opacity: .6; }

.ob-viewport {
  max-width: 640px;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  text-align: center;
  padding: 30px 4px;
}

.ob-step { animation: obIn .45s ease; }
@keyframes obIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.ob-sun { width: 56px; margin-bottom: 28px; }

.ob-count {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 22px;
}

.ob-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.15;
  margin-bottom: 22px;
}
.ob-title em { font-style: italic; }

.ob-copy { max-width: 480px; margin: 0 auto 18px; }
.brand-name { font-family: var(--serif); font-style: italic; }
.ob-copy-small { font-size: 15.5px; opacity: .8; margin-bottom: 30px; }

.ob-magic {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 6px 0 36px;
}

.ob-options {
  display: grid;
  gap: 13px;
  max-width: 460px;
  margin: 6px auto 26px;
}

.ob-options-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 560px;
}

.ob-option {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16.5px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(30,30,28,.35);
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.ob-option:hover { border-color: var(--ink); background: rgba(30,30,28,.05); }
.ob-option.selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.ob-input {
  width: min(420px, 100%);
  padding: 17px 26px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  color: var(--ink);
  background: rgba(30,30,28,.04);
  border: 1px solid rgba(30,30,28,.30);
  border-radius: 999px;
  text-align: center;
  margin: 8px 0 26px;
  transition: border-color .2s ease, background-color .2s ease;
}
.ob-input::placeholder { color: rgba(30,30,28,.45); }
.ob-input:focus { outline: none; border-color: var(--ink); background: #fff; }

.ob-check {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 26px;
  font-size: 14.5px;
  text-align: left;
  cursor: pointer;
}
.ob-check input { margin-top: 4px; accent-color: var(--olive); width: 16px; height: 16px; cursor: pointer; }

.ob-error {
  color: #A4442A;
  font-size: 14.5px;
  margin: -10px 0 20px;
}

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

.site-footer {
  background: var(--charcoal-solid);
  color: var(--cream);
  text-align: center;
  padding: 90px 24px 50px;
}

.footer-logo { height: 92px; width: auto; margin: 0 auto 44px; }

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin-bottom: 38px;
}
.footer-nav a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  transition: opacity .2s ease;
}
.footer-nav a:hover { opacity: .65; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 44px;
}
.footer-social a { opacity: .85; transition: opacity .2s ease; }
.footer-social a:hover { opacity: 1; }

.footer-copy {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .55;
}

/* ============ DROP 01 OVERLAY ============ */

.drop-overlay {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(30,30,28,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.drop-overlay.open { opacity: 1; pointer-events: auto; }

.drop-close {
  position: absolute;
  top: 28px; right: 34px;
  background: none; border: 0;
  font-size: 26px;
  font-family: var(--serif);
  color: var(--ink);
  cursor: pointer;
  width: 48px; height: 48px;
  transition: opacity .2s ease;
}
.drop-close:hover { opacity: .6; }

.drop-content {
  position: relative;
  background: var(--sage);
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: clamp(40px, 6vw, 60px) clamp(24px, 5vw, 56px);
  box-shadow: 0 30px 80px rgba(30,30,28,.35);
}

.drop-content .drop-close { top: 12px; right: 16px; }

.drop-content .drop-title { font-size: clamp(48px, 8vw, 80px); }

.drop-content .count-num { font-size: clamp(32px, 5vw, 50px); }
.drop-content .count-sep { font-size: clamp(22px, 3vw, 34px); }
.drop-content .countdown { margin-bottom: 34px; }

.drop-sun { width: 44px; margin-bottom: 20px; }

.drop-copy {
  font-size: 16px;
  opacity: .8;
  margin: -14px 0 40px;
}

.countdown-big { margin-top: 10px; }

/* ============ REVEAL ANIMATIONS ============ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .sun-spin { animation: none; }
  .scroll-cue { animation: none; }
  .class-media img { transition: none; }
  .marquee-track { animation: none; }
  .soon-pill { animation: none; }
  .ob-step { animation: none; }
}

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

@media (max-width: 1240px) {
  .class-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
}

@media (max-width: 1100px) {
  .nav-left, .nav-right { display: none; }
  .burger { display: flex; }
  .header-inner { grid-template-columns: 44px 1fr 44px; }
  .brand { grid-column: 2; }
  .burger { grid-column: 3; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .brand-logo { height: 27px; }
  .class-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .classes { padding: 90px 22px 100px; }
  .manifesto, .ritual, .about, .newsletter { padding-top: 100px; padding-bottom: 100px; }
  .paren { opacity: .10; }
  .count-cell { min-width: 52px; }
  .ritual-actions .btn { width: 100%; }
  .hero-img { object-position: 68% 20%; }
  .habitar { padding: 110px 22px; }
  .habitar-inner { min-width: 0; max-width: 100%; }
  .btn-big, .ob-submit { white-space: normal; line-height: 1.5; padding: 16px 30px; }
  .habitar-list li { font-size: 16px; padding: 12px 20px; gap: 13px; }
}

@media (max-width: 480px) {
  .class-grid { grid-template-columns: 1fr; max-width: 340px; }
  .hero-title { font-size: 15vw; }
}
