:root {
  --canvas: #ffffff;
  --canvas-2: #f4f7f7;
  --white: #ffffff;
  --ink: #111111;
  --muted: #5a5a5a;
  --line: rgba(17, 17, 17, 0.1);
  --clay: #f06000;
  --clay-dark: #d44e00;
  --clay-soft: #ff9a55;
  --sage: #00a89d;
  --sage-soft: #7dd4cc;
  --sun: #ffb347;
  --lavender: #e02070;
  --sky: #b8e8e4;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.1);
  --shadow-lg: 0 40px 80px rgba(17, 17, 17, 0.14);
  --radius: 20px;
  --radius-lg: 28px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --brand: "Unbounded", "Outfit", system-ui, sans-serif;
  --edge-gap: 4mm;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background:
    radial-gradient(ellipse 700px 500px at 0% 0%, rgba(240, 96, 0, 0.08), transparent 55%),
    radial-gradient(ellipse 600px 400px at 100% 10%, rgba(0, 168, 157, 0.1), transparent 50%),
    radial-gradient(ellipse 500px 400px at 50% 100%, rgba(224, 32, 112, 0.08), transparent 55%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--edge-gap);
  position: relative;
  z-index: 1;
}
.narrow {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--edge-gap);
}

@media (max-width: 1180px) {
  .brand-motto { display: none; }
  .nav-links { font-size: 0.98rem; }
  .nav-links a { padding: 6px 7px 8px; }
}

@media (min-width: 1170px) {
  .container { max-width: none; }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 10px 0 6px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.42) 72%,
    transparent 100%
  );
  border-bottom: 0;
}
.site-header > .container {
  max-width: 1240px;
}
.header-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border-radius: 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 18px 40px rgba(17, 17, 17, 0.06);
}
.header-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    118deg,
    var(--clay) 0%,
    var(--lavender) 48%,
    var(--sage) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}
.site-header.is-scrolled .header-frame {
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 48px rgba(17, 17, 17, 0.1);
}
.site-header.is-scrolled .header-frame::before { opacity: 0.85; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 22px;
  padding: 10px 18px 10px 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  line-height: 1.1;
  flex-shrink: 0;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.brand-name {
  display: flex;
  align-items: baseline;
  font-family: var(--brand);
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: -0.08em;
  line-height: 0.85;
}
.brand-name span { display: inline-block; }
.brand-name .c { color: var(--clay); }
.brand-name .e {
  color: var(--lavender);
  font-style: italic;
  transform: translateY(-1px);
}
.brand-name .g { color: var(--sage); }
.brand-motto {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}
.brand-logo {
  height: 64px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 4px 10px rgba(240, 96, 0, 0.22));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.brand:hover .brand-logo {
  transform: scale(1.06) rotate(-3deg);
}
.nav, .nav-drawer__top, .brand, .header-frame {
  overflow: visible;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--clay);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 800;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 4px;
  font-size: 1.05rem;
}
.nav-links a {
  position: relative;
  padding: 6px 10px 8px;
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  opacity: 0.58;
  letter-spacing: -0.01em;
  transition: opacity 0.25s, transform 0.25s;
}
.nav-links a:hover,
.nav-links a.is-active {
  opacity: 1;
  transform: translateY(-1px);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 2px;
  height: 1.5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--clay), var(--lavender), var(--sage));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.9;
}
.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}
.nav-cta, .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  padding-left: 16px;
}
.nav-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(var(--clay), var(--lavender), var(--sage));
  opacity: 0.55;
}
.lang-switch {
  display: flex;
  gap: 2px;
  background: var(--canvas-2);
  padding: 3px;
  border-radius: 999px;
}
.lang-switch a {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.lang-switch a.is-active,
.lang-switch a.active {
  background: var(--ink);
  color: #fff;
}

/* ——— Language dropdown ——— */
.lang-dropdown { position: relative; }
.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.site-header .lang-dropdown__toggle {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
}
.lang-dropdown__toggle:hover,
.lang-dropdown.is-open .lang-dropdown__toggle {
  border-color: transparent;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
}
.lang-dropdown__chev {
  transition: transform 0.25s;
  opacity: 0.65;
}
.lang-dropdown.is-open .lang-dropdown__chev { transform: rotate(180deg); }
.lang-dropdown__menu {
  position: fixed;
  top: auto;
  right: auto;
  left: auto;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  pointer-events: none;
}
.lang-dropdown.is-open .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lang-dropdown__menu[hidden] { display: none; }
.lang-dropdown__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  transition: background 0.15s;
}
.lang-dropdown__opt:hover { background: var(--canvas-2); }
.lang-dropdown__opt.is-active {
  background: rgba(196, 101, 74, 0.12);
  color: var(--clay);
}
.lang-dropdown__opt-label { font-weight: 700; }
.lang-dropdown__opt-name { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.lang-dropdown__opt.is-active .lang-dropdown__opt-name { color: var(--clay); opacity: 0.8; }
.nav-drawer__lang {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.nav-drawer__lang-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-drawer__lang .lang-dropdown__menu {
  /* position set in JS via fixed coords */
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 12px 32px rgba(196, 101, 74, 0.35);
}
.btn--primary:hover { background: var(--clay-dark); }
.btn--light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { background: var(--white); }
.btn--text {
  background: none;
  border: 0;
  padding: 14px 8px;
  color: var(--ink);
  font-weight: 600;
  box-shadow: none;
}
.btn--text:hover { color: var(--clay); transform: none; }

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__blobs { display: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: blob-drift 14s ease-in-out infinite alternate;
}
.blob--1 { width: 420px; height: 420px; background: var(--clay-soft); top: -10%; right: 5%; }
.blob--2 { width: 320px; height: 320px; background: var(--sage-soft); bottom: 10%; left: -5%; animation-delay: -4s; }
.blob--3 { width: 260px; height: 260px; background: var(--lavender); top: 40%; right: 35%; animation-delay: -8s; opacity: 0.4; }
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(24px, -18px) scale(1.08); }
}

.hero__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding-block: 96px 72px;
}
.hero__copy {
  text-align: center;
  max-width: min(92vw, 90rem);
  width: 100%;
  margin-inline: auto;
}
.hero__brand {
  margin: 0 0 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}
.hero h1 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: pre-line;
}
.hero h1 em {
  font-style: italic;
  color: var(--clay);
  display: block;
  white-space: pre-line;
}
.hero__lead {
  margin: 0 auto 32px;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 80ch;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
}

.hero__mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 420px;
}
.mosaic {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 0;
}
.mosaic--a { grid-row: 1 / 3; animation: mosaic-float 6s ease-in-out infinite; }
.mosaic--b { animation: mosaic-float 6s ease-in-out infinite 1s; }
.mosaic--c { animation: mosaic-float 6s ease-in-out infinite 2s; }
@keyframes mosaic-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mosaic-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  will-change: opacity, transform;
  transition:
    opacity 1.4s cubic-bezier(0.45, 0.05, 0.15, 1),
    transform 1.75s cubic-bezier(0.22, 1, 0.36, 1);
  filter: sepia(0.12) saturate(1.08) contrast(1.04);
  transform: scale(1.1);
  pointer-events: none;
}
.mosaic-carousel img.is-active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.02);
}
/* Slot A — мягкий zoom-out */
.mosaic--a.mosaic-carousel img:not(.is-active) {
  transform: scale(1.12);
}
.mosaic--a.mosaic-carousel img.is-active {
  transform: scale(1.02);
}
/* Slot B — лёгкий сдвиг справа */
.mosaic--b.mosaic-carousel img:not(.is-active) {
  transform: scale(1.08) translateX(5%);
}
.mosaic--b.mosaic-carousel img.is-active {
  transform: scale(1.02) translateX(0);
}
/* Slot C — лёгкий подъём снизу */
.mosaic--c.mosaic-carousel img:not(.is-active) {
  transform: scale(1.08) translateY(4%);
}
.mosaic--c.mosaic-carousel img.is-active {
  transform: scale(1.02) translateY(0);
}
.mosaic-carousel:hover img.is-active { transform: scale(1.06); }
.mosaic--b.mosaic-carousel:hover img.is-active { transform: scale(1.06) translateX(0); }
.mosaic--c.mosaic-carousel:hover img.is-active { transform: scale(1.06) translateY(0); }

/* warm photo treatment */
.photo-tile {
  position: relative;
  overflow: hidden;
  background: var(--canvas-2);
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.12) saturate(1.08) contrast(1.04);
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 23, 20, 0.02), rgba(196, 101, 74, 0.18));
  pointer-events: none;
}
.photo-tile:hover img { transform: scale(1.06); }
.gallery__item.photo-tile span,
.program-card__visual.photo-tile + .program-card__body { z-index: 1; }
.gallery__item.photo-tile span {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.program-card__visual.photo-tile { min-height: 160px; padding: 0; }
.program-card__visual.photo-tile img { min-height: 160px; }

/* ——— Quiz ——— */
.quiz-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(300px, 1.5fr);
  grid-template-rows: auto 1fr;
  gap: 0 56px;
  align-items: stretch;
  min-height: min(56vh, 520px);
}
.quiz-layout .section-head {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
  align-self: start;
}
.quiz-wrap {
  grid-column: 2;
  grid-row: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.quiz {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 640px;
}
.quiz__progress {
  height: 4px;
  background: var(--canvas-2);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 18px;
}
.quiz__bar {
  display: block;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--clay), var(--sage));
  border-radius: 99px;
  transition: width 0.35s ease;
}
.quiz__step-label {
  margin: 0 0 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
}
.quiz__panel { display: none; }
.quiz__panel.is-active { display: block; animation: quiz-in 0.35s ease; }
@keyframes quiz-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.quiz__question {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
}
.quiz__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.quiz__opt {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: var(--canvas);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.quiz__opt:hover { border-color: rgba(196, 101, 74, 0.35); transform: translateY(-2px); }
.quiz__opt.is-selected {
  border-color: var(--clay);
  background: rgba(196, 101, 74, 0.1);
  color: var(--clay-dark);
}
.quiz__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}
.quiz__result-eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
}
.quiz__result-title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 600;
}
.quiz__result-summary { margin: 0 0 22px; color: var(--muted); }
.quiz__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* ——— Day story scroll ——— */
.day-story { padding-bottom: 72px; overflow: hidden; }
.day-story__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px var(--edge-gap) 16px;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  scrollbar-width: thin;
}
.day-story__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.day-story__track.is-paused {
  cursor: grab;
}
.day-story__track::-webkit-scrollbar { height: 6px; }
.day-story__track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.day-card {
  flex: 0 0 min(300px, 82vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.day-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--sage));
  border-radius: 0 0 4px 4px;
}
.day-card__time {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clay);
}
.day-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.25rem;
}
.day-card p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ——— Marquee ——— */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
  gap: 48px;
}
.marquee__track span {
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Sections ——— */
.section { padding: 96px 0; position: relative; z-index: 1; }
.section--soft { background: var(--canvas-2); }
.section--dark {
  background: var(--ink);
  color: #f5f0ea;
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
  gap: 28px 48px;
  align-items: start;
}
.section-head--split .section__title {
  margin: 0;
}
.section-head--split .section__lead {
  margin: 0;
  max-width: none;
}
.section-head--light .section__title { color: #fff; }
.section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.section__title {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section__lead { margin: 0; color: var(--muted); font-size: 1.08rem; max-width: 54ch; line-height: 1.7; }
.section--dark .section__lead { color: rgba(245, 240, 234, 0.7); }

/* ——— Bento services ——— */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bento__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.bento__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clay), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.bento__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.bento__card:hover::before { transform: scaleX(1); }
.bento__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clay);
  margin-bottom: 12px;
}
.bento__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--canvas-2);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--clay);
  margin-bottom: 16px;
}
.bento__card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
}
.bento__card p { margin: 0; flex: 1; color: var(--muted); font-size: 0.95rem; }
.card__link {
  display: inline-block;
  margin-top: 18px;
  color: var(--clay);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap 0.2s;
}

/* legacy cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--canvas-2);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--clay);
  margin-bottom: 14px;
}
.card h3 { margin: 0 0 8px; font-family: var(--display); font-size: 1.3rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* chips / pills */
.chip-row, .pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip, .pill {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f0ea;
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.25s, transform 0.25s;
}
.pill {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}
.chip:hover, .pill:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.14); }
.pill:hover { background: var(--canvas); }

/* ——— Programs ——— */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.program-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.program-card__visual {
  min-height: 160px;
  position: relative;
}
.program-card__visual--1,
.program-card__visual--2,
.program-card__visual--3,
.program-card__visual--4 { background: none; }
.program-card__body { padding: 24px 26px; }
.program-card__body h3 { margin: 0 0 8px; font-family: var(--display); font-size: 1.35rem; }
.program-card__body p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ——— Stats ——— */
.stats-band {
  padding: 0;
  background: transparent;
  color: #fff;
}
.stats-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 56px 0 52px;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(240, 96, 0, 0.78) 0%,
    rgba(224, 32, 112, 0.48) 48%,
    rgba(0, 168, 157, 0.74) 100%
  );
  border-radius: 0;
  box-shadow: none;
}
.stats-banner__title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  font-style: normal;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.stats-banner__lead {
  margin: 0 auto 36px;
  max-width: 52ch;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.stats-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 56px;
  max-width: 980px;
  margin-inline: auto;
  text-align: left;
}
.stats-why .why-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}
.stats-why .why-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.stats-why .why-item__icon svg {
  width: 24px;
  height: 24px;
}
.stats-why .why-item--1 .why-item__icon { background: #f06000; }
.stats-why .why-item--2 .why-item__icon { background: #1aa69e; }
.stats-why .why-item--3 .why-item__icon { background: #e04090; }
.stats-why .why-item--4 .why-item__icon { background: #e24a1c; }
.stats-why .why-item h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
.stats-why .why-item p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.stats-banner__sub {
  margin: 0 auto 28px;
  max-width: 50ch;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.stats-banner .btn {
  position: relative;
  z-index: 3;
  min-width: 168px;
  margin-top: 36px;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.88);
  color: #fff;
  box-shadow: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.stats-banner .btn:hover {
  background: var(--ink);
}
.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 28px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.stat {
  width: min(100%, 196px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  background: var(--ink);
  color: #fff;
  border: 0;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.28);
}
.stat__n {
  display: block;
  font-family: var(--brand);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.stat__n::after { content: "+"; font-size: 0.55em; opacity: 0.75; }
.stat:last-child .stat__n::after { content: "%"; }
.stat__l {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 11ch;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.78);
}

/* ——— Gallery run (mosaic marquee) ——— */
.gallery-section { padding-bottom: 64px; overflow: hidden; }
.gallery-run {
  overflow: hidden;
  padding: 10px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.gallery-run__inner {
  display: flex;
  width: max-content;
  gap: 8px;
  padding-inline: var(--edge-gap);
  animation: gallery-marquee 42s linear infinite;
  will-change: transform;
}
.gallery-run.is-paused .gallery-run__inner {
  animation-play-state: paused;
}
@keyframes gallery-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 4px)); }
}
.gallery-run__set {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: flex-start;
  height: 372px;
}
.gallery-run__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  height: 100%;
}
.gallery-run__col--0 { margin-top: 0; }
.gallery-run__col--1 { margin-top: 22px; }
.gallery-run__col--2 { margin-top: 6px; }
.gallery-run__col--3 { margin-top: 28px; }
.gallery-run__col--4 { margin-top: 12px; }
.gallery-run__col--1 { transform: rotate(0.45deg); }
.gallery-run__col--3 { transform: rotate(-0.4deg); }
.gallery-run__card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: 0;
  box-shadow: 0 8px 24px rgba(26, 23, 20, 0.1);
}
.gallery-run__col:nth-child(odd) .gallery-run__card:first-child {
  border-radius: 26px 14px 22px 18px;
}
.gallery-run__col:nth-child(even) .gallery-run__card:last-child {
  border-radius: 14px 24px 18px 26px;
}
.gallery-run__card--tall {
  flex: 1 1 auto;
  width: 196px;
}
.gallery-run__card--wide {
  flex: 0 0 148px;
  width: 268px;
}
.gallery-run__card--sq {
  flex: 1 1 200px;
  width: 218px;
}
.gallery-run__card--compact {
  flex: 0 0 118px;
  width: 188px;
}
.gallery-run__card--mini {
  flex: 0 0 92px;
  width: 188px;
}
.gallery-run__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.gallery-run__card span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: #fff;
  font-family: var(--display);
  font-size: 0.95rem;
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.gallery-run__card:hover {
  transform: scale(1.04) rotate(-0.3deg);
  box-shadow: 0 14px 32px rgba(26, 23, 20, 0.16);
  z-index: 2;
}

/* ——— Gallery (legacy grid) ——— */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
  margin-top: 32px;
}
.gallery__item {
  border-radius: var(--radius);
  display: grid;
  place-items: end start;
  padding: 18px 20px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s;
  min-height: 130px;
}
.gallery__item.photo-tile { padding: 0; }
.gallery__item.photo-tile span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 0;
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item--1 { grid-column: span 5; grid-row: span 2; }
.gallery__item--2 { grid-column: span 4; }
.gallery__item--3 { grid-column: span 3; }
.gallery__item--4 { grid-column: span 4; }
.gallery__item--5 { grid-column: span 3; grid-row: span 2; }

/* ——— Home steps (CEG) ——— */
.home-steps {
  padding: 72px 0 64px;
  background: #fff;
  color: var(--ink);
  text-align: center;
}
.home-steps__title {
  margin: 0 0 48px;
  font-family: var(--brand);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.home-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
  margin: 0 0 44px;
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 44px;
}
.home-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.home-step__n {
  width: 76px;
  height: 76px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--brand);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.home-step__t {
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.home-step:nth-child(1) .home-step__n,
.home-step:nth-child(1) .home-step__t {
  color: var(--clay);
}
.home-step:nth-child(1) .home-step__n { border-color: var(--clay); }
.home-step:nth-child(2) .home-step__n,
.home-step:nth-child(2) .home-step__t {
  color: var(--lavender);
}
.home-step:nth-child(2) .home-step__n { border-color: var(--lavender); }
.home-step:nth-child(3) .home-step__n,
.home-step:nth-child(3) .home-step__t {
  color: var(--sage);
}
.home-step:nth-child(3) .home-step__n { border-color: var(--sage); }
.home-step__d {
  margin: 0;
  max-width: 28ch;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}
.home-steps__cta .btn {
  min-width: 200px;
  border-radius: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.home-ceg .home-steps__cta {
  margin-top: 36px;
  text-align: center;
}

/* ——— Home popular events ——— */
.home-events {
  padding: 24px 0 72px;
  background: #fff;
  text-align: center;
}
.home-events__title {
  margin: 0 0 36px;
  text-align: center;
}
.home-events__slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.home-events__viewport {
  overflow: hidden;
}
.home-events__track {
  display: flex;
  gap: 20px;
  transition: transform 0.32s ease;
}
.home-event {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  text-align: left;
  background: var(--canvas-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  contain: content;
}
.home-event__link { display: block; color: inherit; height: 100%; }
.home-event__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(240, 96, 0, 0.18), rgba(0, 168, 157, 0.22));
}
.home-event__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-event__body { padding: 18px 20px 22px; }
.home-event__body h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.home-event__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.home-events__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.home-events__nav:hover {
  background: var(--clay);
  transform: scale(1.05);
}
.home-events__cta .btn {
  min-width: 200px;
  border-radius: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
@media (max-width: 980px) {
  .home-event { flex: 0 0 calc((100% - 20px) / 2); }
}

/* ——— Reviews ——— */
.section--reviews .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section--reviews .quote-feature {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* "safe" keeps the first card reachable when the row overflows */
.section--reviews .reviews-scroll {
  justify-content: safe center;
}
.quote-feature {
  margin: 0 0 40px;
  padding: 0;
  border: 0;
  max-width: 820px;
}
.quote-feature p {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}
.quote-feature cite {
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clay);
}
.reviews-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.reviews-scroll::-webkit-scrollbar { height: 6px; }
.reviews-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.review {
  flex: 0 0 min(320px, 85vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.review__text {
  margin: 0 0 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
}
.review__meta { margin: 0; color: var(--muted); font-size: 0.85rem; font-weight: 600; }

.quote {
  background: var(--ink);
  color: #f5f0ea;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow);
}
.quote p { margin: 0; font-family: var(--display); font-size: 1.4rem; font-style: italic; line-height: 1.45; }
.quote cite { display: block; margin-top: 16px; color: var(--clay-soft); font-style: normal; font-size: 0.9rem; }

/* ——— Timeline ——— */
.timeline { display: grid; gap: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--clay), var(--sage));
}
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 0;
}
.step__n {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--display);
  font-size: 1.1rem;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--canvas-2);
}
.step h3 { margin: 0 0 4px; font-family: var(--display); font-size: 1.2rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.cms-block--steps {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.timeline--compact {
  margin-top: 8px;
  flex: 1;
  overflow: auto;
}
.timeline--compact::before {
  left: 13px;
  box-shadow: none;
}
.timeline--compact .step {
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 10px 0;
}
.timeline--compact .step__n {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  box-shadow: 0 0 0 4px var(--white);
}
.timeline--compact .step h3 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}
.timeline--compact .step p {
  font-size: 0.82rem;
  line-height: 1.45;
}
.steps .step {
  grid-template-columns: 1fr;
  padding: 20px 24px;
  margin-bottom: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ——— CTA ——— */
.cta-band {
  margin: 24px 0 80px;
  background: linear-gradient(135deg, var(--clay) 0%, #b85a42 50%, var(--sage) 120%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
}
.cta-band p { margin: 0 0 28px; opacity: 0.92; max-width: 48ch; margin-inline: auto; }

/* ——— Pages ——— */
.page-hero, .page-header {
  padding: 88px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  right: -8%;
  top: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 101, 74, 0.14), transparent 68%);
  pointer-events: none;
}
.page-header::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -4%;
  bottom: -40px;
  border-radius: 40% 60% 55% 45%;
  background: radial-gradient(circle, rgba(74, 124, 111, 0.12), transparent 70%);
  pointer-events: none;
}
.page-header > .container { position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.page-hero h1, .page-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.08;
}
.page-title em {
  font-style: italic;
  color: var(--clay);
  font-weight: 500;
}
.page-hero p,
.page-header .section__lead {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
  font-size: 1.08rem;
  line-height: 1.65;
}
.about-intro {
  margin-top: 8px;
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 40px 56px;
  align-items: center;
}
.about-hero__copy {
  min-width: 0;
}
.about-hero__copy .about-intro {
  max-width: none;
}
.about-hero__logo {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
}
.about-hero__logo img {
  position: relative;
  z-index: 1;
  width: min(400px, 78%);
  height: auto;
  filter: drop-shadow(0 20px 44px rgba(240, 96, 0, 0.2));
  animation: logo-enter 1.1s cubic-bezier(0.22, 1, 0.36, 1) both,
    logo-float 6.5s ease-in-out 1.1s infinite;
}
.about-hero__halo {
  position: absolute;
  width: min(420px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(240, 96, 0, 0.28),
    rgba(214, 31, 105, 0.22),
    rgba(26, 166, 158, 0.24),
    rgba(240, 96, 0, 0.28)
  );
  filter: blur(38px);
  opacity: 0.75;
  animation: logo-halo 22s linear infinite;
}
@keyframes logo-enter {
  from {
    opacity: 0;
    transform: scale(0.86) translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-1.2deg);
  }
}
@keyframes logo-halo {
  to {
    transform: rotate(360deg);
  }
}
.about-intro p {
  margin: 0 0 14px;
}
.about-intro p:last-child {
  margin-bottom: 0;
}
.page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  transition: color 0.2s, gap 0.2s;
}
.page-back:hover { color: var(--clay); gap: 12px; }

.page-cta {
  margin: 48px 0 0;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ink) 0%, #2c2622 60%, #3d4f48 130%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}
.page-cta h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}
.page-cta p { margin: 0; opacity: 0.78; max-width: 42ch; }
.page-cta .btn--primary {
  background: var(--clay);
  box-shadow: 0 10px 28px rgba(196, 101, 74, 0.35);
}

/* Detail meta chips */
.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 24px;
}
.detail-meta > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.detail-meta > div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.detail-meta span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
}
.detail-meta strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

/* About — manifesto opener */
.about-manifesto {
  display: block;
  max-width: 920px;
  margin: 0 auto;
}
.about-manifesto__quote {
  margin: 0;
  padding: 42px 38px;
  border: none;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff 0%, #fff6f0 55%, #f0f7f4 100%);
  border-left: 5px solid var(--clay);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  box-shadow: var(--shadow);
  text-align: center;
}
.about-manifesto__facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-fact {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-fact:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.about-fact__n {
  font-family: var(--brand);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--clay);
  line-height: 1;
}
.about-fact__t {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.about-fact:nth-child(2) { border-top: 3px solid var(--lavender); }
.about-fact:nth-child(3) { border-top: 3px solid var(--sage); }

/* About — mission + values mosaic */
.mission-block {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mission-block::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: 18px;
  font-family: var(--display);
  font-size: 9rem;
  line-height: 1;
  color: rgba(196, 101, 74, 0.12);
  pointer-events: none;
}
.mission-block h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.8rem;
  position: relative;
}
.mission-block p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 58ch;
  position: relative;
}
.value-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.value-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 20px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.value-tile:nth-child(3n+1) { background: linear-gradient(160deg, #fff, #f8ebe6); }
.value-tile:nth-child(3n+2) { background: linear-gradient(160deg, #fff, #eaf3f0); }
.value-tile:nth-child(3n) { background: linear-gradient(160deg, #fff, #f7f0e0); }
.value-tile:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: var(--shadow);
}
.approach-strip {
  margin-top: 36px;
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: var(--canvas-2);
  border-left: 4px solid var(--sage);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.story-block {
  margin-top: 40px;
}
.story-block .section__title { margin-bottom: 12px; }
.story-block .section__lead { margin: 0; max-width: 62ch; }

.pillar-grid,
.connect-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillar-card,
.connect-card,
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.pillar-card:hover,
.connect-card:hover,
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pillar-card__n,
.connect-card__n {
  display: block;
  margin-bottom: 14px;
  font-family: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--clay);
}
.pillar-card h3,
.connect-card h3,
.why-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}
.pillar-card p,
.connect-card p,
.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.connect-card {
  position: relative;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.connect-card::before {
  content: "";
  display: block;
  height: 3px;
  margin: -28px -24px 18px;
  background: linear-gradient(90deg, var(--ceg-accent, var(--clay)), transparent 85%);
  opacity: 0.9;
}
.connect-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 42%, rgba(255, 255, 255, 0.66) 50%, transparent 58%);
  transform: translateX(-130%);
  pointer-events: none;
}
.connect-card:nth-child(1) { --ceg-accent: var(--clay); }
.connect-card:nth-child(2) { --ceg-accent: var(--lavender); }
.connect-card:nth-child(3) { --ceg-accent: var(--sage); }
.connect-card:nth-child(1) { animation-delay: 0s; }
.connect-card:nth-child(2) { animation-delay: 0.35s; }
.connect-card:nth-child(3) { animation-delay: 0.7s; }
.connect-card.reveal.is-in {
  animation:
    connect-pop 0.65s cubic-bezier(0.22, 1, 0.36, 1) both,
    connect-breathe 4.6s ease-in-out infinite 0.8s;
  animation-delay: calc(var(--i, 1) * 0.08s), calc(0.8s + var(--i, 1) * 0.08s);
}
.connect-card.reveal.is-in::after {
  animation: connect-shine 3.4s ease-in-out infinite;
  animation-delay: calc(1s + var(--i, 1) * 0.12s);
}
.connect-card.is-alive {
  animation: connect-breathe 4.6s ease-in-out infinite;
}
.connect-card.is-alive::after {
  animation: connect-shine 3.4s ease-in-out infinite;
}
.connect-card:hover {
  border-color: color-mix(in srgb, var(--ceg-accent, var(--clay)) 45%, var(--line));
  box-shadow: 0 18px 40px rgba(28, 22, 18, 0.12);
}
.connect-card__n {
  color: var(--ceg-accent, var(--clay));
}
.connect-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}
.connect-card p {
  max-width: 34ch;
}
@keyframes connect-pop {
  from {
    transform: translateY(10px) scale(0.985);
    opacity: 0.92;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes connect-breathe {
  0%, 100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow: 0 16px 34px color-mix(in srgb, var(--ceg-accent, var(--clay)) 18%, rgba(28, 22, 18, 0.14));
  }
}
@keyframes connect-shine {
  0%, 62% {
    transform: translateX(-130%);
  }
  76% {
    transform: translateX(130%);
  }
  100% {
    transform: translateX(130%);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .connect-card {
    animation: connect-breathe 4.6s ease-in-out infinite;
  }
  .connect-card::after {
    animation: connect-shine 3.4s ease-in-out infinite;
  }
}
.why-card:nth-child(1) { border-top: 3px solid var(--clay); }
.why-card:nth-child(2) { border-top: 3px solid var(--lavender); }
.why-card:nth-child(3) { border-top: 3px solid var(--sage); }

/* Research */
.research-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.research-hero__aside {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}
.research-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.85;
  animation: research-drift 10s ease-in-out infinite;
}
.research-hero__orb--1 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(240, 96, 0, 0.45), transparent 70%);
  top: 10%;
  left: 18%;
}
.research-hero__orb--2 {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(214, 31, 105, 0.35), transparent 70%);
  right: 16%;
  top: 28%;
  animation-delay: -3s;
}
.research-hero__orb--3 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(26, 166, 158, 0.4), transparent 70%);
  bottom: 12%;
  left: 36%;
  animation-delay: -6s;
}
.research-hero__mark {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clay);
}
.research-hero__studies {
  margin-top: 18px;
}
.research-hero__studies .section__title {
  margin-bottom: 18px;
}
.research-hero__studies .brand-strip {
  margin: 0;
}
@keyframes research-drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.06); }
}
.research-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.research-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: transform 0.35s, box-shadow 0.35s;
}
.research-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.research-stat__n {
  display: block;
  margin-bottom: 12px;
  font-family: var(--brand);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--clay);
  line-height: 1;
}
.research-stat:nth-child(2) .research-stat__n { color: var(--lavender); }
.research-stat:nth-child(3) .research-stat__n { color: var(--sage); }
.research-stat:nth-child(4) .research-stat__n { color: var(--ink); }
.research-stat h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.15rem;
}
.research-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
/* Research — brand logo strip */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: -20px 0 40px;
}
.brand-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(28, 22, 18, 0.05);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  animation: brand-pop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.09s);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}
.brand-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.75) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.brand-chip:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(28, 22, 18, 0.12);
  border-color: rgba(240, 96, 0, 0.35);
}
.brand-chip:hover::after {
  transform: translateX(120%);
}
.brand-chip__mark {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--brand);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
.brand-chip--google .brand-chip__mark b:nth-child(1) { color: #4285f4; }
.brand-chip--google .brand-chip__mark b:nth-child(2) { color: #ea4335; }
.brand-chip--google .brand-chip__mark b:nth-child(3) { color: #fbbc05; }
.brand-chip--google .brand-chip__mark b:nth-child(4) { color: #4285f4; }
.brand-chip--google .brand-chip__mark b:nth-child(5) { color: #34a853; }
.brand-chip--google .brand-chip__mark b:nth-child(6) { color: #ea4335; }
.brand-chip--gallup .brand-chip__mark { color: #1c3d6e; }
.brand-chip--mit .brand-chip__mark {
  color: #a31f34;
  letter-spacing: 0.06em;
}
.brand-chip--harvard .brand-chip__mark {
  color: #a51c30;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-chip--deloitte .brand-chip__mark { color: #1c1a17; }
.brand-chip--deloitte .brand-chip__mark i {
  width: 7px;
  height: 7px;
  margin-left: 4px;
  border-radius: 50%;
  background: #86bc25;
  align-self: flex-end;
  margin-bottom: 2px;
}
.brand-chip--mckinsey .brand-chip__mark {
  color: #051c2c;
  align-items: baseline;
  gap: 6px;
}
.brand-chip--mckinsey .brand-chip__mark em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}
@keyframes brand-pop {
  to {
    opacity: 1;
    transform: none;
  }
}

.research-rail {
  display: grid;
  gap: 18px;
}
.research-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.research-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--clay);
}
.research-card--2::before { background: var(--lavender); }
.research-card--3::before { background: var(--sage); }
.research-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  align-items: center;
}
.research-card__year {
  font-family: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--clay);
}
.research-card__tag,
.research-card__metric {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.research-card__tag {
  background: rgba(240, 96, 0, 0.1);
  color: var(--clay-dark);
}
.research-card__metric {
  background: var(--canvas-2);
  color: var(--ink);
}
.research-card__title {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.55rem;
}
.research-card__finding,
.research-card__example {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 72ch;
}
.research-card__example { margin-bottom: 0; }
.research-card__finding span,
.research-card__example span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
}
.research-card__example span { color: var(--sage); }
.research-takeaways {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.research-take {
  background: linear-gradient(165deg, #fff 0%, #fff8f3 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.research-take__n {
  display: block;
  margin-bottom: 12px;
  font-family: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clay);
  letter-spacing: 0.08em;
}
.research-take h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.2rem;
}
.research-take p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 600;
  transition: border-color 0.25s, transform 0.25s, color 0.25s;
}
.link-card em {
  font-style: normal;
  color: var(--clay);
  transition: transform 0.25s;
}
.link-card:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateY(-2px);
}
.link-card:hover em { transform: translateX(4px); }

.format-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.format-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.format-chip:nth-child(1) { color: var(--clay); border-color: rgba(240, 96, 0, 0.28); }
.format-chip:nth-child(2) { color: var(--lavender); border-color: rgba(224, 32, 112, 0.28); }
.format-chip:nth-child(3) { color: var(--sage); border-color: rgba(0, 168, 157, 0.28); }

.page-header.has-bg-video {
  background: transparent;
}
.page-header.has-bg-video::before,
.page-header.has-bg-video::after {
  display: none;
}

.cms-blocks {
  padding-top: 8px;
}
.cms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cms-grid--stack-authors .cms-block--video {
  grid-row: span 2;
}
.cms-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cms-block__media {
  margin: -20px -20px 18px;
}
.cms-block__media img,
.cms-block__video video {
  width: 100%;
  display: block;
}
.cms-block__video video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  pointer-events: none;
  background: #000;
}
.cms-block--video:not(:has(.cms-block__body)):not(:has(.cms-block__title)) {
  padding: 0;
  display: flex;
  height: 100%;
}
.cms-block--video:not(:has(.cms-block__body)):not(:has(.cms-block__title)) .cms-block__media {
  margin: 0;
  flex: 1;
  display: flex;
  min-height: 280px;
}
.cms-block--video:not(:has(.cms-block__body)):not(:has(.cms-block__title)) .cms-block__video video {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.cms-block__title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.5rem;
}
.cms-block__body {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.cms-block__body p {
  margin: 0 0 1em;
}
.cms-block__body p:last-child {
  margin-bottom: 0;
}

.about-pillars {
  text-align: center;
}
.about-pillars__title {
  margin: 0 auto 36px;
  max-width: none;
  white-space: nowrap;
  text-align: center;
}
.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
  text-align: left;
}
.about-pillars__grid .section__lead {
  margin: 0;
  max-width: none;
}

/* Contact · Experiment · Grow — desktop expand / mobile accordion */
.ceg-expand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ceg-col {
  --ceg-accent: var(--clay);
  flex: 1 1 0;
  min-width: 0;
  min-height: min-content;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    flex-grow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s,
    box-shadow 0.45s,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ceg-col--1 { --ceg-accent: var(--clay); }
.ceg-col--2 { --ceg-accent: var(--lavender); }
.ceg-col--3 { --ceg-accent: var(--sage); }
.ceg-col.is-open {
  flex-grow: 2.35;
  border-color: color-mix(in srgb, var(--ceg-accent) 45%, var(--line));
  box-shadow: 0 18px 40px rgba(28, 22, 18, 0.12);
  transform: translateY(-4px);
}
.ceg-col:not(.is-open) {
  flex-grow: 0.72;
}
.ceg-col__head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 22px 22px 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
}
.ceg-col__n {
  font-family: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ceg-accent);
  flex-shrink: 0;
}
.ceg-col__t {
  flex: 1;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  transition: font-size 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ceg-col:not(.is-open) .ceg-col__t {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.ceg-col__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s, transform 0.4s;
}
.ceg-col__icon::before,
.ceg-col__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ceg-accent);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.ceg-col__icon::before {
  width: 10px;
  height: 2px;
}
.ceg-col__icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.35s, opacity 0.35s;
}
.ceg-col.is-open .ceg-col__icon {
  border-color: color-mix(in srgb, var(--ceg-accent) 50%, transparent);
  background: color-mix(in srgb, var(--ceg-accent) 12%, white);
  transform: rotate(90deg);
}
.ceg-col.is-open .ceg-col__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.ceg-col__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ceg-col.is-open .ceg-col__body {
  grid-template-rows: 1fr;
}
.ceg-col__body-inner {
  overflow: hidden;
  min-height: 0;
}
.ceg-col.is-open .ceg-col__body-inner {
  min-height: min-content;
}
.ceg-col__body-inner p {
  margin: 0;
  padding: 0 22px 24px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.08s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}
.ceg-col.is-open .ceg-col__body-inner p {
  opacity: 1;
  transform: none;
}
.ceg-col::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--ceg-accent), transparent 85%);
  opacity: 0.55;
  transition: opacity 0.35s;
}
.ceg-col.is-open::before {
  opacity: 1;
}

@media (max-width: 860px) {
  .ceg-expand {
    flex-direction: column;
    gap: 10px;
  }
  .ceg-col,
  .ceg-col.is-open,
  .ceg-col:not(.is-open) {
    flex: none;
    transform: none;
  }
  .ceg-col:not(.is-open) .ceg-col__t,
  .ceg-col.is-open .ceg-col__t {
    font-size: 1.25rem;
  }
  .ceg-col.is-open {
    box-shadow: 0 12px 28px rgba(28, 22, 18, 0.1);
  }
}

.photo-slider-section {
  padding-top: 24px;
  padding-bottom: 8px;
}
.about-ceg {
  padding-top: 12px;
  padding-bottom: 28px;
}
.about-ceg__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 36px 48px;
  align-items: stretch;
}
.about-ceg__copy {
  max-width: 62ch;
}
.about-ceg__copy .section__title {
  margin-bottom: 20px;
}
.about-ceg__copy p {
  margin: 0 0 1.05em;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-ceg__copy p:last-child { margin-bottom: 0; }
.about-ceg__media {
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #1a1714;
  justify-self: center;
  align-self: center;
  box-shadow: var(--shadow);
}
.about-ceg__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.photo-slider {
  position: relative;
}
.photo-slider__stage {
  position: relative;
  min-height: clamp(320px, 52vw, 560px);
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  background: #1a1714;
  box-shadow: 0 24px 60px rgba(28, 22, 18, 0.18);
}
.photo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.06) translateY(18px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.9s;
  z-index: 1;
}
.photo-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
  z-index: 2;
}
.photo-slide.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: scale(1.04) translateY(-10px);
  z-index: 3;
  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(0.4, 0, 1, 1);
}
.photo-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.photo-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.12);
  transition: transform 6.5s ease-out;
}
.photo-slide.is-active .photo-slide__media img {
  transform: scale(1);
}
.photo-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 23, 20, 0.05) 20%, rgba(26, 23, 20, 0.72) 100%),
    linear-gradient(90deg, rgba(26, 23, 20, 0.35), transparent 45%);
  pointer-events: none;
}
.photo-slide__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(22px, 4vw, 40px);
  padding-bottom: clamp(36px, 5vw, 52px);
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease 0.25s, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.photo-slide.is-active .photo-slide__copy {
  opacity: 1;
  transform: none;
}
.photo-slide__copy h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.photo-slide__copy p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  font-size: 1rem;
}
.photo-slider__progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
}
.photo-slider__progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--clay), #ff9a4a);
  border-radius: inherit;
}
.photo-slider.is-running .photo-slider__progress i {
  animation: photo-progress 5.2s linear forwards;
}
@keyframes photo-progress {
  from { width: 0; }
  to { width: 100%; }
}
.photo-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.photo-slider__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s, background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.25s;
}
.photo-slider__btn:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(240, 96, 0, 0.18);
}
.photo-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.photo-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, width 0.25s;
}
.photo-slider__dot.is-active {
  width: 22px;
  border-radius: 99px;
  background: var(--clay);
}
@media (prefers-reduced-motion: reduce) {
  .photo-slide,
  .photo-slide__media img,
  .photo-slide__copy,
  .photo-slider__progress i {
    transition: none !important;
    animation: none !important;
  }
}
.cms-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cms-author__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(240, 96, 0, 0.14);
  background: var(--canvas-2);
}
.cms-author__photo--empty {
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--clay);
}
.cms-author__name {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
}
.cms-author__role {
  display: block;
  color: var(--clay);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Program category chip */
.cat-chip {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(196, 101, 74, 0.1);
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Case / project cards */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.case-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--clay), var(--sage));
}
.case-card:nth-child(3n+2)::before { background: linear-gradient(180deg, var(--sage), var(--sun)); }
.case-card:nth-child(3n)::before { background: linear-gradient(180deg, var(--sun), var(--clay)); }
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.case-card__index {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  color: rgba(196, 101, 74, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.case-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}
.case-card p { margin: 0; flex: 1; color: var(--muted); font-size: 0.95rem; }
.case-card__meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clay);
}

/* Blog story cards */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.story-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.story-card__mark {
  height: 8px;
  background: linear-gradient(90deg, var(--clay), var(--sage), var(--sun));
}
.story-card:nth-child(3n+2) .story-card__mark {
  background: linear-gradient(90deg, var(--sage), var(--sky), var(--clay));
}
.story-card:nth-child(3n) .story-card__mark {
  background: linear-gradient(90deg, var(--sun), var(--clay), var(--lavender));
}
.story-card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.story-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
}
.story-card p { margin: 0; flex: 1; color: var(--muted); font-size: 0.95rem; }
.story-card__link {
  margin-top: 18px;
  color: var(--clay);
  font-weight: 700;
  font-size: 0.88rem;
}

/* Results mosaic */
.results-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.results-mosaic .pill {
  margin: 0;
  padding: 16px 18px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  text-align: center;
  border-radius: 18px;
}
.results-mosaic .pill:nth-child(odd) {
  background: linear-gradient(145deg, #fff, #f8ebe6);
}
.results-mosaic .pill:nth-child(even) {
  background: linear-gradient(145deg, #fff, #eaf3f0);
}

/* Contact panel */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.contact-panel {
  background: var(--ink);
  color: rgba(245, 240, 234, 0.85);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.contact-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 101, 74, 0.35), transparent 70%);
}
.contact-panel h2 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 1.8rem;
  color: #fff;
  position: relative;
}
.contact-row {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  position: relative;
}
.contact-row span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay-soft);
}
.contact-row strong,
.contact-row a {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  position: relative;
}
.contact-socials .btn {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.contact-socials .btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Detail article */
.detail-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow);
  line-height: 1.75;
  color: var(--muted);
}
.detail-body h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--ink);
}

/* FAQ polish */
.faq details {
  transition: box-shadow 0.25s, border-color 0.25s;
}
.faq details[open] {
  border-color: rgba(196, 101, 74, 0.35);
  box-shadow: 0 12px 32px rgba(26, 23, 20, 0.08);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--canvas-2);
  color: var(--clay);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font);
  transition: transform 0.25s, background 0.25s;
}
.faq details[open] summary::after {
  content: "–";
  background: var(--clay);
  color: #fff;
  transform: rotate(180deg);
}

.prose { color: var(--ink); }
.prose p { margin: 0 0 14px; }
.prose ul { padding-left: 1.1rem; color: var(--muted); }

.list-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.list-check li {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.list-check li::before { content: "→"; color: var(--clay); font-weight: 700; }

/* ——— Forms ——— */
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-card--compact {
  padding: 22px;
}
.form-card--compact .form-row { gap: 10px; margin-bottom: 10px; }
.form-card--compact .form-field--block { margin-bottom: 10px; }
.form-card--compact label,
.form-card--compact .form-field {
  gap: 4px;
  font-size: 0.78rem;
}
.form-card--compact input,
.form-card--compact select,
.form-card--compact textarea {
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 0.92rem;
}
.form-card--compact .btn { margin-top: 4px; padding: 11px 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.form-alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}
.form-alert--ok { background: #e0f2ec; color: var(--sage); }
.form-alert--error, .form-alert--err { background: #fde8e4; color: #8a1f11; }
.form-field {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.form-field--block { margin-bottom: 14px; }
.form-role-build {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.form-slide {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: stretch;
  background: var(--canvas);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 4px;
}
.form-slide__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  height: 28px;
  border-radius: 999px;
  background: var(--clay);
  box-shadow: 0 6px 14px rgba(240, 96, 0, 0.28);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.form-slide__opt {
  position: relative;
  z-index: 1;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.form-slide__opt.is-on { color: #fff; }
.form-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.form-pick {
  appearance: none;
  border: 1.5px solid var(--line);
  background: var(--canvas);
  color: var(--ink);
  border-radius: 999px;
  padding: 5px 9px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
.form-pick:hover {
  border-color: rgba(240, 96, 0, 0.45);
  transform: translateY(-1px);
}
.form-pick[aria-pressed="true"] {
  background: rgba(240, 96, 0, 0.1);
  border-color: var(--clay);
  color: var(--clay-dark);
}
.form-goal-select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
label { display: grid; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: var(--canvas);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(196, 101, 74, 0.15);
  background: #fff;
}
.help { color: var(--muted); font-size: 0.8rem; }
.error { color: #b42318; font-size: 0.8rem; }
.alert { padding: 14px 16px; border-radius: 14px; margin-bottom: 16px; font-weight: 600; }
.alert--ok { background: #e0f2ec; color: var(--sage); }
.alert--err { background: #fde8e4; color: #8a1f11; }

/* ——— FAQ ——— */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--display);
  font-size: 1.1rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--muted); margin: 12px 0 0; }

/* ——— Footer ——— */
.site-footer {
  margin-top: 40px;
  background: var(--ink);
  color: rgba(245, 240, 234, 0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand {
  margin-bottom: 14px;
  max-width: 280px;
}
.footer-logo__mark {
  display: block;
  width: 132px;
  height: auto;
  margin-bottom: 12px;
}
.footer-logo__motto {
  margin: 0 0 6px;
  font-family: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}
.footer-logo__c--orange { color: #f07020; }
.footer-logo__c--pink { color: #e04090; }
.footer-logo__c--teal { color: #1aa69e; }
.footer-logo__sep {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0.2em;
  font-weight: 600;
}
.footer-logo__sub {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}
.site-footer h4 { margin: 0 0 14px; color: var(--clay-soft); font-family: var(--display); font-size: 1.1rem; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* ——— Float CTA ——— */
.float-cta {
  position: fixed;
  right: var(--edge-gap);
  bottom: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
  transition-delay: 0.5s;
}
.is-tg-webapp .float-cta { display: none; }
.float-cta a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--clay);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: float-bob 3.5s ease-in-out infinite;
}
.float-cta a img {
  width: 26px;
  height: 26px;
  display: block;
  pointer-events: none;
}
.float-cta a:nth-child(2) { animation-delay: 0.3s; }
.float-cta a:nth-child(3) { animation-delay: 0.6s; }
.float-cta a:hover {
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.float-cta a.wa { background: #25d366; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35); }
.float-cta a.tg { background: #2aabee; box-shadow: 0 10px 28px rgba(42, 171, 238, 0.35); }
.float-cta a.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  box-shadow: 0 10px 28px rgba(214, 36, 159, 0.3);
}
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ——— Mobile nav ——— */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(26, 23, 20, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(320px, 88vw);
  height: 100%;
  background:
    radial-gradient(ellipse 280px 180px at 100% 0%, rgba(240, 96, 0, 0.1), transparent 60%),
    radial-gradient(ellipse 220px 160px at 0% 100%, rgba(0, 168, 157, 0.1), transparent 55%),
    var(--canvas);
  padding: 20px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.15);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer__top { display: flex; align-items: center; justify-content: space-between; }
.nav-drawer__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--canvas-2);
  cursor: pointer;
}
.nav-drawer__links { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.nav-drawer__links a {
  padding: 11px 14px;
  border-radius: 14px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  transition: background 0.2s, color 0.2s;
}
.nav-drawer__links a:hover,
.nav-drawer__links a.is-active {
  background: var(--canvas-2);
  color: var(--clay);
}
body.nav-locked, body.popup-locked { overflow: hidden; }

/* ——— Lead popup ——— */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s, visibility 0.35s;
}
.lead-popup.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0.5);
  backdrop-filter: blur(8px);
}
.lead-popup__card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.lead-popup.is-open .lead-popup__card { transform: none; }
.lead-popup__x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--canvas-2);
  cursor: pointer;
}
.lead-popup__sparkle { margin: 0 0 12px; color: var(--clay); letter-spacing: 8px; font-size: 0.8rem; }
.lead-popup h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.25;
}
.lead-popup p { margin: 0 0 24px; color: var(--muted); }
.lead-popup__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in, .reveal.in { opacity: 1; transform: none; }
.bento__card.reveal { transition-delay: calc(var(--i, 1) * 0.08s); }

/* ——— Background video sections ——— */
.has-bg-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.has-bg-video > .container,
.has-bg-video > .stats-banner,
.has-bg-video > .cta-band,
.has-bg-video > .day-story__track {
  position: relative;
  z-index: 2;
}
.bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-video video,
.bg-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--video-opacity, 0.3);
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.05);
}
.bg-video__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.88));
}
.section--dark.has-bg-video { background: transparent; }
.section--soft.has-bg-video { background: transparent; }
.stats-band.has-bg-video { background: transparent; }
.section--dark.has-bg-video .bg-video__shade {
  background:
    linear-gradient(180deg, rgba(26, 23, 20, 0.55), rgba(26, 23, 20, 0.82));
}
.stats-band.has-bg-video .bg-video video,
.stats-band.has-bg-video .bg-video img {
  opacity: var(--video-opacity, 0.78);
  filter: saturate(1.08) contrast(1.04) brightness(0.92);
}
.stats-band.has-bg-video .bg-video__shade {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(17, 17, 17, 0.18) 100%
  );
}
#quiz.has-bg-video .bg-video__shade {
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.55) 42%,
    rgba(255, 255, 255, 0.38) 100%
  );
}
#quiz.has-bg-video .bg-video video {
  opacity: var(--video-opacity, 0.52);
  filter: saturate(1.15) contrast(1.08);
}
#quiz .quiz {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}
.cta-band-wrap .bg-video__shade {
  background: linear-gradient(135deg, rgba(240, 96, 0, 0.78), rgba(224, 32, 112, 0.55), rgba(0, 168, 157, 0.78));
}
.cta-band-wrap {
  position: relative;
  margin: 24px 0 80px;
  overflow: hidden;
}
.cta-band-wrap .cta-band {
  margin: 0;
  background: transparent;
  position: relative;
  z-index: 2;
  box-shadow: none;
}
.hero.has-bg-video .bg-video video,
.hero.has-bg-video .bg-video img {
  opacity: var(--video-opacity, 0.72);
  filter: saturate(1.12) contrast(1.06) brightness(0.9);
}
.hero.has-bg-video .bg-video__shade {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.28) 45%,
    rgba(255, 255, 255, 0.4) 100%
  );
}
.hero.has-bg-video .hero__grid {
  position: relative;
  z-index: 2;
}
.hero.has-bg-video .hero__copy {
  position: relative;
  background: transparent;
}
.hero.has-bg-video .hero__copy::before {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .float-cta { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .gallery-run__inner { animation: none; }
  .gallery-run__col--1,
  .gallery-run__col--3 { transform: none; }
  .bg-video video,
  .bg-video img { display: none; }
}

@media (max-width: 960px) {
  .quiz-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
    min-height: auto;
  }
  .quiz-layout .section-head {
    grid-column: 1;
    grid-row: 1;
  }
  .quiz-wrap {
    grid-column: 1;
    grid-row: 2;
    min-height: auto;
  }
  .about-ceg__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-ceg__media {
    width: min(78vw, 320px);
  }
  .nav-links { display: none; }
  .nav-cta__btn { display: none; }
  .nav-burger { display: flex; }
  .site-header { padding: 8px 0 4px; }
  .header-frame { border-radius: 22px; }
  .nav { padding: 8px 10px 8px 8px; gap: 10px; }
  .nav-cta { padding-left: 0; }
  .nav-cta::before { display: none; }
  .brand {
    gap: 8px;
    max-width: calc(100% - 96px);
  }
  .brand-name { font-size: 1.22rem; letter-spacing: -0.06em; }
  .brand-motto { display: none; }
  .nav-drawer .brand-motto { display: block; font-size: 0.62rem; }
  .brand-logo {
    height: 40px;
    max-width: 46px;
  }
  .brand:hover .brand-logo { transform: none; }
  .hero {
    min-height: auto;
    padding: 0;
  }
  .hero__grid {
    width: 100%;
    padding-block: 40px 48px;
    padding-inline: 16px;
  }
  .hero__copy {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    padding-inline: 0;
  }
  .hero h1 {
    margin: 0 auto 14px;
    font-size: clamp(1.28rem, 5.2vw, 1.72rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
  }
  .hero__lead {
    margin: 0 auto 22px;
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 36ch;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
    gap: 10px 14px;
  }
  .hero__actions .btn {
    font-size: 0.88rem;
    padding: 11px 18px;
  }
  .hero__mosaic { display: none; }
  .float-cta {
    bottom: 16px;
    gap: 8px;
  }
  .float-cta a {
    width: 42px;
    height: 42px;
  }
  .bento, .grid-3, .grid-2, .program-grid, .footer-grid, .form-grid, .form-row, .form-role-build, .stats-grid,
  .case-grid, .story-grid, .value-mosaic, .contact-layout, .detail-meta,
  .pillar-grid, .connect-grid, .why-grid, .link-grid, .about-manifesto,
  .research-stats, .research-takeaways, .research-hero__grid {
    grid-template-columns: 1fr;
  }
  .research-hero__aside {
    display: none;
  }
  .research-hero__grid { gap: 0; }
  .research-hero .page-title,
  .research-hero .section__lead { display: none; }
  .research-hero .page-eyebrow { margin-bottom: 0; }
  .home-steps { padding: 40px 0 32px; }
  .home-steps__grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
  .home-steps__title { margin-bottom: 28px; font-size: 1.4rem; }
  .home-step__n { width: 64px; height: 64px; font-size: 1.35rem; }
  .home-step__t { font-size: 1.05rem; }
  .home-step__d { max-width: 38ch; font-size: 0.9rem; }
  .home-events { padding: 4px 0 40px; }
  .home-events__title { margin-bottom: 22px; }
  .home-events__slider {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "view view"
      "prev next";
    gap: 12px 16px;
    margin-bottom: 24px;
  }
  .home-events__viewport { grid-area: view; }
  .home-event { flex: 0 0 100%; }
  .home-events__nav {
    position: static;
    top: auto;
    width: 44px;
    height: 44px;
    justify-self: center;
  }
  .home-events__nav--prev { grid-area: prev; justify-self: end; }
  .home-events__nav--next { grid-area: next; justify-self: start; }
  .stats-banner { padding: 32px 0 28px; }
  .stats-banner__title { font-size: 1.6rem; }
  .stats-banner__lead { font-size: 0.92rem; max-width: none; margin-bottom: 24px; }
  .stats-why { grid-template-columns: 1fr; gap: 22px; }
  .stats-banner__sub { font-size: 0.82rem; max-width: none; margin-bottom: 20px; }
  .stats-banner .btn,
  .home-steps__cta .btn,
  .home-events__cta .btn {
    min-width: 0;
    width: min(100%, 280px);
  }
  .marquee { padding: 12px 0; }
  .marquee__track span { font-size: 1.05rem; }
  .section { padding: 52px 0; }
  .page-hero, .page-header { padding: 32px 0 20px; }
  .section-head { margin-bottom: 28px; }
  .section-head--split {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-pillars__title {
    font-size: clamp(1.35rem, 6.4vw, 2rem);
  }
  .about-pillars__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .about-pillars__grid .section__lead {
    max-width: 52ch;
    margin-inline: auto;
  }
  .about-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-hero__logo {
    order: -1;
  }
  .about-hero__logo img { width: min(260px, 62%); }
  .about-hero__halo { width: min(280px, 70%); filter: blur(28px); }
  .footer-logo__motto { font-size: 0.68rem; }
  .footer-logo__sub { font-size: 0.55rem; letter-spacing: 0.05em; }
  .about-manifesto__quote { padding: 28px 24px; }
  .cms-grid { grid-template-columns: 1fr; }
  .cms-grid--stack-authors .cms-block--video { grid-row: auto; }
  .detail-meta { grid-template-columns: 1fr 1fr; }
  .link-grid { grid-template-columns: 1fr 1fr; }
  .page-cta { padding: 28px 24px; }
  .mission-block { padding: 28px 24px; }
  .program-card { grid-template-columns: 1fr; }
  .program-card__visual { min-height: 120px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 110px; }
  .gallery__item--1, .gallery__item--5 { grid-column: span 2; grid-row: span 1; }
  .gallery__item--2, .gallery__item--3, .gallery__item--4 { grid-column: span 1; }
  .gallery-run__set { height: 280px; gap: 6px; }
  .gallery-run__col { gap: 6px; }
  .gallery-run__col--1 { margin-top: 14px; }
  .gallery-run__col--3 { margin-top: 18px; }
  .gallery-run__card--tall { width: 148px; }
  .gallery-run__card--wide { width: 198px; flex-basis: 112px; }
  .gallery-run__card--sq { width: 158px; }
  .gallery-run__card--compact { width: 138px; flex-basis: 88px; }
  .gallery-run__card--mini { width: 138px; flex-basis: 72px; }
  .gallery-run__inner { animation-duration: 34s; gap: 6px; }
  .cta-band { padding: 36px 18px; margin-bottom: 36px; }
  .cta-band h2 { font-size: 1.45rem; }
  .cta-band-wrap { margin: 12px 0 36px; }
  .bg-video video,
  .bg-video img { opacity: calc(var(--video-opacity, 0.3) * 0.7); }
  :root { --edge-gap: 16px; }
  .container, .narrow { padding-inline: 16px; }
  #lead {
    padding-bottom: 96px;
  }
  .form-card {
    padding: 20px 16px;
  }
  .form-card--compact input,
  .form-card--compact select,
  .form-card--compact textarea,
  .form-card input,
  .form-card select,
  .form-card textarea {
    font-size: 16px;
  }
  .form-picks { justify-content: flex-start; }
  .form-pick { min-height: 40px; }
  .site-footer {
    padding: 40px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .float-cta {
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }
  .lead-popup__card {
    margin: 16px;
    width: calc(100% - 32px);
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hero__lead { max-width: none; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .home-event { flex: 0 0 100%; }
  .home-events__title,
  .home-steps__title { padding-inline: 4px; }
  .footer-logo__mark { width: 108px; }
}
