:root {
  --cream: #e4e0d1;
  --lilac: #ecdeef;
  --taupe: #bdac97;
  --rose: #dfc1bf;
  --paper: #fffaf5;
  --paper-strong: #fffdfa;
  --ink: #292522;
  --muted: #6d625a;
  --line: rgba(41, 37, 34, 0.14);
  --shadow: 0 24px 70px rgba(111, 89, 72, 0.16);
  --radius: 8px;
  --blend-size: clamp(140px, 22vw, 320px);
  --areas-blend-size: clamp(84px, 12vw, 170px);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

html {
  overflow-x: clip;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(125deg, rgba(236, 222, 239, 0.72), rgba(255, 250, 245, 0.9) 42%),
    var(--paper);
}

body::selection {
  background: var(--rose);
  color: var(--ink);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.ambient {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  contain: paint;
  clip-path: inset(0);
  pointer-events: none;
}

.ambient__line {
  position: absolute;
  width: 1px;
  height: 42rem;
  background: linear-gradient(transparent, rgba(189, 172, 151, 0.42), transparent);
  transform: rotate(28deg);
  opacity: 0.42;
}

.ambient__line--one {
  left: 16%;
  top: 12rem;
}

.ambient__line--two {
  right: 16%;
  top: 2rem;
  animation: shimmer 7s ease-in-out infinite;
}

.ambient__line--three {
  right: 42%;
  bottom: -12rem;
  transform: rotate(-38deg);
  animation: shimmer 9s ease-in-out infinite reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 74px;
  margin: 0;
  padding: 0.75rem max(1rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(41, 37, 34, 0.08);
  background: rgba(255, 250, 245, 0.64);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.7rem;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(189, 172, 151, 0.5);
  border-radius: 50%;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.72);
}

.nav a {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(189, 172, 151, 0.16);
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  padding: 0.7rem 1.05rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.88rem;
}

.button {
  padding: 0.84rem 1.15rem;
}

.button--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 40px rgba(41, 37, 34, 0.22);
}

.button--secondary {
  background: var(--taupe);
  color: #1f1b18;
}

.button--ghost {
  border: 1px solid rgba(41, 37, 34, 0.16);
  background: rgba(255, 250, 245, 0.56);
  color: var(--ink);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #8d7465;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 7.2rem);
  font-weight: 500;
  line-height: 0.92;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

h3 {
  font-size: 1.18rem;
}

.hero__lead {
  max-width: 43rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 2.25rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 36rem;
  margin: 0;
}

.hero__facts div {
  min-height: 78px;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.66);
}

.hero__facts dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 0.25rem 0 0;
  font-weight: 800;
}

.hero__visual {
  min-height: 620px;
}

.symbol-field {
  position: relative;
  display: grid;
  place-items: center;
  overflow: clip;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin-left: auto;
}

.symbol-field::before {
  position: absolute;
  inset: 11%;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 250, 245, 0.92), rgba(236, 222, 239, 0.48) 58%, transparent 70%),
    conic-gradient(from 180deg, rgba(223, 193, 191, 0.45), rgba(189, 172, 151, 0.34), rgba(236, 222, 239, 0.7), rgba(223, 193, 191, 0.45));
  filter: blur(4px);
  animation: breathe 7s ease-in-out infinite;
}

.symbol-field__logo {
  position: relative;
  z-index: 2;
  width: 56%;
  border-radius: 50%;
  box-shadow: var(--shadow);
  object-fit: cover;
  animation: levitate 6s ease-in-out infinite;
}

.ring {
  position: absolute;
  border: 1px solid rgba(189, 172, 151, 0.44);
  border-radius: 50%;
  animation: rotate 24s linear infinite;
}

.ring--one {
  inset: 5%;
  border-style: dashed;
}

.ring--two {
  inset: 20%;
  animation-direction: reverse;
}

.floating-word {
  position: absolute;
  z-index: 3;
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(189, 172, 151, 0.38);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.76);
  box-shadow: 0 14px 38px rgba(111, 89, 72, 0.12);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  animation: floatWord 5.5s ease-in-out infinite;
}

.floating-word--one {
  top: 15%;
  left: 8%;
}

.floating-word--two {
  right: 4%;
  top: 30%;
  animation-delay: -1.5s;
}

.floating-word--three {
  right: 15%;
  bottom: 13%;
  animation-delay: -3s;
}

.floating-word--four {
  left: 5%;
  bottom: 26%;
  animation-delay: -2s;
}

.intro-band {
  position: relative;
  background:
    linear-gradient(to bottom, var(--paper) 0, rgba(236, 222, 239, 0) var(--blend-size)),
    linear-gradient(to top, var(--paper) 0, rgba(236, 222, 239, 0) var(--blend-size)),
    rgba(236, 222, 239, 0.52);
}

.intro-band::before,
.intro-band::after,
.method::before,
.method::after,
.areas::before,
.areas::after {
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  height: clamp(86px, 14vw, 190px);
  content: "";
  display: none;
  pointer-events: none;
}

.intro-band::before {
  top: 0;
  background: linear-gradient(to bottom, var(--paper), rgba(236, 222, 239, 0));
}

.intro-band::after {
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 250, 245, 0), var(--paper));
}

.intro-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.7rem 0;
}

.intro-band p {
  max-width: 56rem;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.18;
}

.intro-band span {
  width: min(26vw, 260px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--taupe));
}

.section,
.booking-section,
.areas {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

#sesiones,
#sobre,
#metodo,
#reserva {
  scroll-margin-top: 120px;
}

.section__heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section__heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.story-panel {
  min-height: 360px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.72);
  box-shadow: 0 16px 50px rgba(111, 89, 72, 0.08);
}

.story-panel--warm {
  background: linear-gradient(135deg, rgba(228, 224, 209, 0.72), rgba(255, 253, 250, 0.78));
}

.story-panel span,
.value-card strong {
  color: #8d7465;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-panel h3 {
  margin: 1.5rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1;
}

.story-panel p,
.mission-card p,
.value-card span {
  color: var(--muted);
  line-height: 1.72;
}

.essence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  border: 1px solid rgba(41, 37, 34, 0.12);
  border-radius: var(--radius);
  background: rgba(41, 37, 34, 0.12);
  overflow: hidden;
}

.essence-strip div {
  min-height: 118px;
  padding: 1rem;
  background: rgba(236, 222, 239, 0.42);
}

.essence-strip strong,
.essence-strip span {
  display: block;
}

.essence-strip strong {
  margin-bottom: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 500;
}

.essence-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.session-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.74);
  box-shadow: 0 12px 44px rgba(111, 89, 72, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.session-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(223, 193, 191, 0.18), transparent 48%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.session-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 172, 151, 0.7);
  background: rgba(255, 253, 250, 0.94);
}

.session-card:hover::before {
  opacity: 1;
}

.session-card--featured {
  background: linear-gradient(135deg, rgba(236, 222, 239, 0.78), rgba(255, 250, 245, 0.84));
}

.session-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.session-card__top span {
  max-width: 12rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.24rem, 1.8vw, 1.42rem);
  line-height: 1.05;
}

.session-card__top strong {
  flex: 0 0 auto;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(189, 172, 151, 0.22);
  font-size: 0.9rem;
  line-height: 1;
}

.session-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.values-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(to bottom, var(--paper) 0, rgba(255, 250, 245, 0) var(--blend-size)),
    linear-gradient(to top, var(--paper) 0, rgba(255, 250, 245, 0) var(--blend-size)),
    linear-gradient(135deg, rgba(228, 224, 209, 0.62), rgba(255, 250, 245, 0.92) 42%, rgba(223, 193, 191, 0.2));
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.belief-list {
  display: grid;
  gap: 0.7rem;
}

.belief-list span {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(189, 172, 151, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.66);
  color: var(--muted);
  font-weight: 800;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.mission-card {
  min-height: 230px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.72);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.value-card {
  min-height: 148px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.66);
}

.value-card strong,
.value-card span {
  display: block;
}

.value-card span {
  margin-top: 0.75rem;
  font-size: 0.94rem;
}

.method {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(to bottom, var(--paper) 0, rgba(228, 224, 209, 0) var(--blend-size)),
    linear-gradient(to top, var(--cream) 0, rgba(228, 224, 209, 0) var(--blend-size)),
    linear-gradient(rgba(41, 37, 34, 0.055), rgba(41, 37, 34, 0.055)),
    var(--cream);
}

.method::before {
  top: 0;
  background: linear-gradient(to bottom, var(--paper), rgba(228, 224, 209, 0));
}

.method::after {
  bottom: 0;
  background: linear-gradient(to bottom, rgba(228, 224, 209, 0), var(--cream));
}

.method__timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(41, 37, 34, 0.13);
  background: rgba(41, 37, 34, 0.13);
}

.phase {
  min-height: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 250, 245, 0.76);
}

.phase span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
  border: 1px solid rgba(189, 172, 151, 0.7);
  border-radius: 50%;
  color: #8d7465;
  font-weight: 900;
}

.phase p {
  color: var(--muted);
  line-height: 1.72;
}

.method-quote {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 0 1.2rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid rgba(189, 172, 151, 0.72);
  color: #5c514b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.phase-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.phase-list li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.phase-list strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.areas {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  padding-block: clamp(5.5rem, 10vw, 9rem);
  background:
    linear-gradient(to bottom, var(--cream) 0, rgba(236, 222, 239, 0) var(--areas-blend-size)),
    linear-gradient(to top, var(--paper) 0, rgba(236, 222, 239, 0) var(--areas-blend-size)),
    linear-gradient(135deg, rgba(223, 193, 191, 0.34), rgba(236, 222, 239, 0.62) 48%, rgba(228, 224, 209, 0.64)),
    var(--lilac);
}

.areas::before {
  top: 0;
  background: linear-gradient(to bottom, var(--cream), rgba(236, 222, 239, 0));
}

.areas::after {
  bottom: 0;
  background: linear-gradient(to bottom, rgba(236, 222, 239, 0), var(--paper));
}

.areas__content {
  position: sticky;
  z-index: 1;
  top: 110px;
}

.areas__list,
.area-groups {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.2vw, 1rem);
}

.area-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-card {
  padding: 1rem;
  border: 1px solid rgba(41, 37, 34, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.62);
  box-shadow: 0 12px 34px rgba(111, 89, 72, 0.08);
}

.area-card h3 {
  margin-bottom: 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.area-card ul {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.area-card li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.45;
}

.area-card li::before {
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--taupe);
  content: "";
}

.area-pill {
  min-height: clamp(52px, 4.4vw, 60px);
  padding: clamp(0.82rem, 1.1vw, 1rem) clamp(1rem, 1.5vw, 1.3rem);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.7);
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 800;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 1.1rem;
  align-items: start;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.manifesto__statement p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.manifesto__list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(41, 37, 34, 0.12);
  border-radius: var(--radius);
  background: rgba(41, 37, 34, 0.12);
  overflow: hidden;
}

.manifesto__list p {
  margin: 0;
  padding: 1rem;
  background: rgba(255, 253, 250, 0.72);
  color: var(--muted);
  line-height: 1.65;
}

.booking-copy {
  position: sticky;
  top: 104px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.78);
  box-shadow: var(--shadow);
}

.booking-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.booking-widget {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(236, 222, 239, 0.48);
}

.booking-widget__header span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-embed {
  position: relative;
  min-height: 780px;
}

.booking-embed iframe {
  display: block;
  width: 100%;
  min-height: 780px;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.75;
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes levitate {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

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

@keyframes floatWord {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 980px) {
  .hero,
  .areas,
  .booking-section,
  .values-layout,
  .manifesto {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__visual {
    min-height: auto;
  }

  .symbol-field {
    margin: 0 auto;
  }

  .sessions-grid,
  .method__timeline,
  .values-grid,
  .area-groups {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid,
  .mission-grid,
  .essence-strip {
    grid-template-columns: 1fr;
  }

  .phase {
    min-height: 220px;
    padding: 1.25rem;
  }

  .phase span {
    width: 34px;
    height: 34px;
    margin-bottom: 1.25rem;
  }

  .areas__content,
  .booking-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .ambient__line {
    display: none;
  }

  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  #sesiones,
  #metodo,
  #reserva {
    scroll-margin-top: 154px;
  }

  .brand {
    flex: 1;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .nav a {
    flex: 1;
    text-align: center;
  }

  .hero {
    padding-top: 1.2rem;
  }

  h1 {
    max-width: 9ch;
  }

  .hero__facts,
  .sessions-grid,
  .method__timeline,
  .values-grid,
  .area-groups {
    grid-template-columns: 1fr;
  }

  .story-panel {
    min-height: 0;
  }

  .mission-card,
  .value-card {
    min-height: 0;
  }

  .phase {
    min-height: 0;
    padding: 0.9rem;
  }

  .phase span {
    width: 30px;
    height: 30px;
    margin-bottom: 0.65rem;
    font-size: 0.84rem;
  }

  .phase h3 {
    margin-bottom: 0.35rem;
  }

  .phase p {
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .intro-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-band span {
    width: 100%;
  }

  .symbol-field {
    width: min(100%, 430px);
  }

  .floating-word {
    font-size: 0.76rem;
  }

  .booking-embed,
  .booking-embed iframe {
    min-height: 720px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .header-cta {
    padding-inline: 0.85rem;
  }

  .brand small {
    display: none;
  }

  .hero__actions .button {
    width: 100%;
  }

  .session-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
