:root {
  --ink: #171514;
  --soft-ink: #3c3631;
  --muted: #756b63;
  --paper: #fbf8f2;
  --milk: #fffdf8;
  --sand: #eee0d2;
  --clay: #b96555;
  --clay-dark: #8f3f35;
  --moss: #2f604e;
  --moss-soft: #dce8df;
  --sky: #dfeef0;
  --line: rgba(23, 21, 20, 0.13);
  --line-light: rgba(255, 255, 255, 0.42);
  --shadow: 0 28px 80px rgba(50, 35, 28, 0.18);
  --hero-side-shade: rgba(17, 15, 14, 0.96);
  --scroll-progress: 0px;
  --content-max: 1320px;
  --wide-gutter: max(24px, calc((100% - var(--content-max)) / 2));
  --section-y: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(226, 238, 235, 0.54)),
    #f4f8f6;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.52;
}

body::selection {
  color: #fff;
  background: var(--clay);
}

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

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

.site-frame {
  min-height: 100vh;
  background: var(--paper);
}

.site-header {
  position: fixed;
  inset: 16px auto auto 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  width: min(calc(100% - 48px), var(--content-max));
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 248, 242, 0.82);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-navigation,
.nav,
.header-socials,
.social-links,
.social-link,
.page-switch,
.nav-toggle,
.nav-cta,
.button,
.format-top {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-size: 14px;
  font-weight: 820;
  line-height: 1.1;
}

.brand-label {
  white-space: nowrap;
}

.brand-clock {
  position: relative;
  isolation: isolate;
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: visible;
}

.brand-clock::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.05);
}

.brand-clock--classic {
  color: #fff;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.34), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(185, 101, 85, 0.18) 46%, rgba(0, 0, 0, 0.36));
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 12px 34px rgba(185, 101, 85, 0.3);
}

.brand-clock--classic::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: 0;
  border-radius: inherit;
  background: conic-gradient(from 120deg, rgba(185, 101, 85, 0), rgba(243, 196, 187, 0.46), rgba(185, 101, 85, 0));
  filter: blur(8px);
  opacity: 0.72;
  animation: clockAura 4.6s ease-in-out infinite;
}

.site-header.is-scrolled .brand-clock--classic {
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 24%, rgba(185, 101, 85, 0.22), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 224, 210, 0.82));
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.45),
    0 0 0 1px rgba(23, 21, 20, 0.1),
    0 12px 34px rgba(50, 35, 28, 0.12);
}

.site-header.is-scrolled .brand-clock::before {
  border-color: rgba(23, 21, 20, 0.2);
}

.clock-tick,
.clock-hand,
.clock-pin {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.clock-tick {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 5px;
  margin-top: -17px;
  margin-left: -1px;
  border-radius: 99px;
  background: currentColor;
  opacity: 0.62;
  transform-origin: 1px 17px;
}

.clock-tick--3 {
  transform: rotate(90deg);
}

.clock-tick--6 {
  transform: rotate(180deg);
}

.clock-tick--9 {
  transform: rotate(270deg);
}

.clock-hand {
  bottom: 50%;
  left: 50%;
  border-radius: 99px;
  background: currentColor;
  transform-origin: 50% 100%;
}

.clock-hand--hour {
  width: 3px;
  height: 9px;
  transform: translateX(-50%) rotate(312deg);
}

.clock-hand--minute {
  width: 2px;
  height: 14px;
  transform: translateX(-50%) rotate(38deg);
}

.clock-hand--second {
  z-index: 3;
  width: 1px;
  height: 16px;
  background: var(--clay);
  box-shadow: 0 0 10px rgba(243, 196, 187, 0.86);
  animation: clockSecond 60s steps(60) infinite;
}

.clock-pin {
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.header-navigation {
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.nav {
  justify-content: center;
  gap: 2px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 4px;
  color: currentColor;
  background: rgba(15, 13, 12, 0.16);
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.nav-context {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 3px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 10px 0 7px;
  color: #f3c4bb;
  font-size: 10px;
  font-weight: 860;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-context::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.nav a {
  border-radius: 6px;
  padding: 8px 9px;
  opacity: 0.74;
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-current {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav {
  border-color: rgba(23, 21, 20, 0.1);
  background: rgba(23, 21, 20, 0.035);
}

.site-header.is-scrolled .nav-context {
  border-color: rgba(23, 21, 20, 0.12);
  color: var(--clay-dark);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a.is-current {
  color: var(--clay-dark);
  background: rgba(185, 101, 85, 0.1);
}

.page-switch {
  flex: 0 0 auto;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(243, 196, 187, 0.42);
  border-radius: 8px;
  padding: 5px 10px;
  color: #fff;
  background: rgba(185, 101, 85, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.page-switch:hover {
  border-color: rgba(243, 196, 187, 0.74);
  background: rgba(185, 101, 85, 0.36);
  transform: translateY(-2px);
}

.page-switch-icon,
.page-switch-arrow,
.nav-toggle-icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-switch-arrow {
  width: 15px;
  height: 15px;
  opacity: 0.68;
  transition: transform 180ms ease;
}

.page-switch:hover .page-switch-arrow {
  transform: translateX(2px);
}

.page-switch-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
  white-space: nowrap;
}

.page-switch-copy small {
  color: #f3c4bb;
  font-size: 9px;
  font-weight: 820;
  text-transform: uppercase;
}

.page-switch-copy strong {
  font-size: 12px;
  font-weight: 820;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}

.language-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.language-trigger {
  position: relative;
  min-width: 66px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  padding: 0 11px 0 13px;
  color: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 28px rgba(14, 11, 10, 0.08);
  font: inherit;
  cursor: pointer;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  backdrop-filter: blur(14px);
}

.language-trigger:hover,
.language-switcher.is-open .language-trigger {
  border-color: rgba(243, 196, 187, 0.78);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(185, 101, 85, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 34px rgba(50, 35, 28, 0.14);
  transform: translateY(-1px);
}

.language-trigger:focus-visible {
  box-shadow: inset 0 0 0 2px #f3c4bb, 0 12px 34px rgba(50, 35, 28, 0.14);
}

.language-code {
  min-width: 20px;
  font-size: 11px;
  font-weight: 860;
  text-align: center;
}

.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: 184px;
  border: 1px solid rgba(23, 21, 20, 0.11);
  border-radius: 8px;
  padding: 6px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 22px 58px rgba(50, 35, 28, 0.2), inset 0 1px 0 #fff;
  animation: languageMenuIn 160ms ease both;
  backdrop-filter: blur(20px);
}

.language-option {
  position: relative;
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 12px;
  gap: 8px;
  align-items: center;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.language-option span {
  color: var(--clay-dark);
  font-size: 10px;
  font-weight: 860;
}

.language-option strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-option::after {
  content: "";
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid transparent;
  border-left: 1.5px solid transparent;
  transform: translateY(-1px) rotate(-45deg);
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--clay-dark);
  background: rgba(185, 101, 85, 0.1);
  outline: none;
}

.language-option[aria-checked="true"] {
  color: var(--clay-dark);
  background: rgba(185, 101, 85, 0.13);
}

.language-option[aria-checked="true"]::after {
  border-color: var(--clay-dark);
}

.site-header.is-scrolled .language-trigger,
.masterclasses-page .language-trigger {
  border-color: rgba(23, 21, 20, 0.15);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 229, 218, 0.72));
  box-shadow: inset 0 1px 0 #fff, 0 10px 26px rgba(50, 35, 28, 0.08);
}

.site-header.is-scrolled .page-switch {
  border-color: transparent;
  color: #fff;
  background: var(--clay);
  box-shadow: 0 10px 24px rgba(185, 101, 85, 0.2);
}

.site-header.is-scrolled .page-switch:hover {
  background: var(--clay-dark);
}

.site-header.is-scrolled .page-switch-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle-icon--close {
  display: none;
}

.site-header.is-menu-open .nav-toggle-icon--menu {
  display: none;
}

.site-header.is-menu-open .nav-toggle-icon--close {
  display: block;
}

.header-socials,
.social-links {
  gap: 10px;
}

.social-link {
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.site-header .social-link {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .social-link {
  border-color: rgba(23, 21, 20, 0.18);
  background: rgba(255, 253, 248, 0.72);
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-cta,
.button {
  position: relative;
  overflow: hidden;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta::after,
.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -68%;
  width: 54%;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 8%, rgba(255, 255, 255, 0.44) 48%, transparent 78%);
  transform: skewX(-18deg);
}

.nav-cta {
  color: var(--ink);
  background: #fff;
}

.site-header.is-scrolled .nav-cta {
  color: #fff;
  background: var(--ink);
}

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

.button:hover::after,
.nav-cta:hover::after {
  animation: buttonSheen 860ms ease;
}

.button.primary {
  color: #fff;
  background: var(--clay);
}

.button.primary:hover {
  background: var(--clay-dark);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button.dark {
  color: #fff;
  background: var(--ink);
}

.button.light {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.82);
}

.button.light:hover {
  border-color: rgba(185, 101, 85, 0.44);
  background: var(--sand);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  max-width: min(calc(100% - 48px), var(--content-max));
  min-height: 90vh;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  color: #fff;
  background: #171514;
  box-shadow:
    -44vw 0 0 var(--hero-side-shade),
    44vw 0 0 var(--hero-side-shade),
    0 38px 110px rgba(54, 67, 62, 0.16);
  isolation: isolate;
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-lustre {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 0 38%,
    rgba(255, 255, 255, 0.16) 44%,
    rgba(243, 196, 187, 0.13) 49%,
    transparent 58% 100%
  );
  background-size: 240% 100%;
  background-position: calc(-120% + var(--scroll-progress)) center;
  mix-blend-mode: screen;
  opacity: 0.78;
  animation: heroLustre 9s ease-in-out infinite;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
  transform: scale(1.04);
  animation: slowLens 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 14, 13, 0.86), rgba(18, 14, 13, 0.48) 46%, rgba(18, 14, 13, 0.15)),
    linear-gradient(0deg, rgba(18, 14, 13, 0.92), rgba(18, 14, 13, 0) 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 54px;
  align-items: end;
  min-height: 82vh;
  padding: 132px 42px 120px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #f3c4bb;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.visual-rail {
  display: grid;
  gap: 12px;
}

.rail-card {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(145deg, rgba(31, 25, 23, 0.66), rgba(31, 25, 23, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(0.82);
  will-change: transform;
}

.rail-card span {
  display: block;
  margin-bottom: 28px;
  color: #f3c4bb;
  font-weight: 860;
}

.rail-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.rail-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 610;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(22, 19, 18, 0.62);
  backdrop-filter: blur(16px);
}

.hero-bottom div {
  min-height: 112px;
  padding: 26px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-bottom strong {
  display: block;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.hero-bottom span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: var(--section-y) var(--wide-gutter);
}

.float-section {
  position: relative;
  overflow: hidden;
}

.float-section > :not(.beauty-floats) {
  position: relative;
  z-index: 1;
}

.beauty-floats {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.beauty-float {
  position: absolute;
  display: block;
  opacity: 0.18;
  filter: drop-shadow(0 18px 28px rgba(50, 35, 28, 0.1));
  transform: rotate(var(--float-rotate, 0deg));
  animation: floatBeauty 18s ease-in-out infinite;
}

.beauty-float:nth-child(1) {
  top: 13%;
  right: 8%;
  --float-rotate: -20deg;
  animation-delay: -2s;
}

.beauty-float:nth-child(2) {
  top: 48%;
  left: 5%;
  --float-rotate: 16deg;
  animation-delay: -7s;
}

.beauty-float:nth-child(3) {
  right: 18%;
  bottom: 10%;
  --float-rotate: 28deg;
  animation-delay: -11s;
}

.beauty-float--petal {
  width: 34px;
  height: 58px;
  border-radius: 70% 30% 70% 30%;
  background: linear-gradient(160deg, rgba(185, 101, 85, 0.5), rgba(243, 196, 187, 0.18));
}

.beauty-float--comb {
  width: 70px;
  height: 34px;
  border-top: 2px solid rgba(143, 63, 53, 0.34);
  border-radius: 8px 8px 0 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(143, 63, 53, 0.3) 0 2px,
    transparent 2px 8px
  );
}

.beauty-float--mirror {
  width: 44px;
  height: 58px;
  border: 2px solid rgba(47, 96, 78, 0.28);
  border-radius: 50% 50% 46% 46%;
}

.beauty-float--mirror::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: -20px;
  width: 10px;
  height: 24px;
  border-radius: 999px;
  background: rgba(47, 96, 78, 0.24);
  transform: rotate(-18deg);
}

.beauty-float--serum {
  width: 24px;
  height: 42px;
  border-radius: 72% 28% 66% 34%;
  background: linear-gradient(160deg, rgba(223, 238, 240, 0.92), rgba(47, 96, 78, 0.14));
}

section[id],
.masterclass-list[id] {
  scroll-margin-top: 96px;
}

.section-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-head p,
.split-copy p,
.scan-copy p,
.final-copy p {
  color: var(--muted);
  font-size: 18px;
}

.symptom-grid,
.format-grid,
.proof-grid,
.journey {
  display: grid;
  gap: 18px;
}

.symptom-grid,
.format-grid,
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.symptom-card,
.format-card,
.proof-card,
.journey-step,
.scan-quiz,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--milk);
}

.symptom-card {
  min-height: 260px;
  padding: 28px;
}

.flow-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 28px;
  align-items: center;
  max-width: 1080px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 18px 70px rgba(50, 35, 28, 0.1);
  backdrop-filter: blur(16px);
}

.flow-note strong {
  display: block;
  font-size: 18px;
}

.flow-note span {
  grid-column: 1;
  color: var(--muted);
}

.flow-note .button {
  grid-row: 1 / span 2;
  grid-column: 2;
  min-width: 230px;
}

.symptom-card span,
.journey-step span,
.format-top span,
.proof-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--moss);
  background: var(--moss-soft);
  font-size: 12px;
  font-weight: 800;
}

.symptom-card h3 {
  margin-top: 72px;
}

.symptom-card p,
.journey-step p,
.format-card p,
.proof-card p,
details p {
  color: var(--muted);
}

.editorial-split {
  display: grid;
  grid-template-columns: var(--wide-gutter) minmax(460px, 650px) minmax(0, 670px) var(--wide-gutter);
  min-height: 700px;
  background: var(--sand);
}

.split-image {
  grid-column: 2;
  min-height: 0;
  display: flex;
  align-items: stretch;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.split-copy {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.method-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.method-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.method-list strong {
  color: var(--clay-dark);
}

.method-list span {
  color: var(--soft-ink);
}

.program {
  background: var(--milk);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.video-copy {
  max-width: 620px;
}

.video-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.video-shell {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(185, 101, 85, 0.1)),
    #0e0d0c;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(0deg, rgba(14, 13, 12, 0.82), rgba(14, 13, 12, 0.06) 58%);
  z-index: 1;
}

.video-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 360ms ease, filter 360ms ease;
}

.video-shell:hover img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  transition: background 220ms ease, transform 220ms ease;
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.video-shell:hover .play-icon {
  background: rgba(185, 101, 85, 0.82);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-shell.is-playing {
  cursor: default;
}

.video-shell.is-playing::before {
  display: none;
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-caption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}

.video-caption strong,
.video-caption span {
  display: block;
}

.video-caption strong {
  max-width: 430px;
  font-size: 20px;
  line-height: 1.16;
}

.video-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 780;
}

.journey {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  isolation: isolate;
}

.journey::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 26px;
  left: 26px;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 101, 85, 0), rgba(185, 101, 85, 0.8), rgba(47, 96, 78, 0.56));
  transform: scaleX(0);
  transform-origin: left;
}

.journey.is-visible::before {
  animation: journeyLine 1200ms cubic-bezier(0.2, 0.82, 0.24, 1) 160ms forwards;
}

.journey-step {
  position: relative;
  z-index: 1;
  min-height: 320px;
  padding: 26px;
  box-shadow: 0 18px 70px rgba(50, 35, 28, 0.06);
}

.journey-step h3 {
  margin-top: 76px;
}

.diagnostic {
  background: var(--sky);
}

.scan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: 42px;
  align-items: center;
}

.scan-copy {
  max-width: 760px;
}

.scan-quiz {
  padding: 28px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.scan-quiz label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  color: var(--soft-ink);
}

.scan-quiz input {
  accent-color: var(--moss);
  margin-top: 4px;
}

.scan-quiz p {
  margin: 12px 0 0;
  color: var(--muted);
}

.formats {
  background: var(--paper);
}

.format-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.format-card.main {
  color: #fff;
  background: var(--moss);
  box-shadow: var(--shadow);
}

.format-card.main p,
.format-card.main li {
  color: rgba(255, 255, 255, 0.78);
}

.format-card.main .format-top span {
  color: var(--ink);
  background: #fff;
}

.format-card.main .format-top strong {
  color: #fff;
}

.format-top {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 54px;
}

.format-top strong {
  color: var(--clay-dark);
}

ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

.format-card ul {
  margin-bottom: 26px;
}

li + li {
  margin-top: 8px;
}

.format-card .button {
  margin-top: auto;
}

.format-note {
  max-width: 920px;
  margin: 24px auto 0;
  border: 1px solid rgba(185, 101, 85, 0.18);
  border-radius: 8px;
  padding: 18px 22px;
  color: var(--soft-ink);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 18px 60px rgba(50, 35, 28, 0.07);
  text-align: center;
}

.results {
  background: #f2e8df;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--milk);
  box-shadow: 0 18px 70px rgba(50, 35, 28, 0.08);
}

.result-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8ded5;
}

.result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.result-card:hover .result-media img {
  transform: scale(1.035);
}

.result-media span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  color: #fff;
  background: rgba(23, 21, 20, 0.42);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 840;
}

.result-copy {
  padding: 26px;
}

.result-copy h3 {
  margin-bottom: 10px;
}

.result-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.result-kicker {
  margin-bottom: 10px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.results-note {
  max-width: 860px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.masterclasses-teaser {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr);
  min-height: 680px;
  color: #fff;
  background: #1f1b19;
}

.teaser-image {
  min-height: 620px;
  overflow: hidden;
}

.teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.teaser-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
  padding: 78px clamp(36px, 7vw, 110px);
}

.teaser-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.teaser-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 30px;
}

.teaser-tags a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  box-shadow: 0 0 0 rgba(243, 196, 187, 0);
  font-size: 13px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.teaser-tags a:hover,
.teaser-tags a:focus-visible {
  border-color: rgba(243, 196, 187, 0.8);
  color: #fff;
  background: rgba(185, 101, 85, 0.3);
  box-shadow: 0 0 22px rgba(243, 196, 187, 0.32), inset 0 0 14px rgba(255, 255, 255, 0.08);
  outline: none;
  transform: translateY(-2px);
}

.teaser-copy .button {
  align-self: flex-start;
}

@media (min-width: 620px) {
  .teaser-tags {
    flex-wrap: nowrap;
  }
}

.proof {
  background: var(--sand);
}

.proof-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.86)),
    var(--milk);
  box-shadow: 0 18px 70px rgba(50, 35, 28, 0.08);
}

.proof-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 101, 85, 0.72), rgba(47, 96, 78, 0));
  opacity: 0.6;
}

.proof-card h3 {
  margin-top: 58px;
}

.proof-card p {
  padding: 0;
  font-size: 17px;
}

.proof-card span {
  margin: 0;
}

.faq-list {
  max-width: 900px;
}

details {
  padding: 0 24px;
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 780;
}

details p {
  margin-bottom: 24px;
}

.final-cta {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 100px 42px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(23, 21, 20, 0.86), rgba(47, 96, 78, 0.64)),
    url("assets/final-gulfiza.jpg");
  background-position: center;
  background-size: cover;
}

.final-copy {
  max-width: 760px;
}

.final-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 24px 0;
  color: #fff;
  background: linear-gradient(120deg, #171514 0%, #251d1a 54%, #17231f 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 196, 187, 0.72), transparent);
}

.footer-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 84px), calc(var(--content-max) - 84px));
  margin: 0 auto;
}

.footer-top,
.footer-nav,
.footer-nav a,
.footer-brand {
  display: flex;
  align-items: center;
}

.footer-top {
  gap: clamp(20px, 2.4vw, 42px);
  min-height: 42px;
}

.site-footer--main .footer-top {
  justify-content: space-between;
}

.site-footer--main .footer-nav {
  flex: 1 1 auto;
  justify-content: space-evenly;
  gap: 12px;
}

.footer-brand {
  flex: 0 0 auto;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 840;
  white-space: nowrap;
}

.footer-brand .brand-clock {
  flex-basis: 38px;
  width: 38px;
  height: 38px;
}

.footer-nav {
  flex: 0 0 auto;
  gap: 24px;
}

.footer-nav a {
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 740;
  white-space: nowrap;
  transition: color 180ms ease;
}

.footer-nav a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 24px;
}

.footer-nav a:hover {
  color: #f3c4bb;
}

.footer-nav span {
  color: #f3c4bb;
  font-size: 10px;
  font-weight: 840;
}

.footer-motto {
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 620;
  white-space: nowrap;
}

.site-footer .social-links {
  flex: 0 0 auto;
  gap: 8px;
  margin-left: 0;
}

.site-footer .social-link {
  width: 38px;
  height: 38px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.site-footer .social-link:hover {
  border-color: rgba(243, 196, 187, 0.58);
  color: #f3c4bb;
  background: rgba(255, 255, 255, 0.1);
}

.footer-wordmark {
  position: absolute;
  right: 0;
  bottom: -22px;
  left: 0;
  z-index: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.035);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

/* Masterclass catalog */
.masterclasses-page {
  background: #eee8e1;
}

.masterclasses-page .site-header {
  color: var(--ink);
  background: rgba(251, 248, 242, 0.82);
  box-shadow: 0 1px 0 rgba(23, 21, 20, 0.08);
  backdrop-filter: blur(18px);
}

.masterclasses-page .site-header .brand-clock--classic {
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 24%, rgba(185, 101, 85, 0.22), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 224, 210, 0.82));
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.45),
    0 0 0 1px rgba(23, 21, 20, 0.1),
    0 12px 34px rgba(50, 35, 28, 0.12);
}

.masterclasses-page .site-header .brand-clock::before {
  border-color: rgba(23, 21, 20, 0.2);
}

.masterclasses-page .site-header .social-link {
  border-color: rgba(23, 21, 20, 0.18);
  background: rgba(255, 253, 248, 0.72);
}

.masterclasses-page .site-header .nav {
  border-color: rgba(23, 21, 20, 0.1);
  background: rgba(23, 21, 20, 0.035);
}

.masterclasses-page .site-header .nav-context {
  border-color: rgba(23, 21, 20, 0.12);
  color: var(--clay-dark);
}

.masterclasses-page .site-header .nav a:hover,
.masterclasses-page .site-header .nav a.is-current {
  color: var(--clay-dark);
  background: rgba(185, 101, 85, 0.1);
}

.masterclasses-page .site-header .page-switch--back {
  border-color: rgba(23, 21, 20, 0.14);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: none;
}

.masterclasses-page .site-header .page-switch--back:hover {
  border-color: rgba(185, 101, 85, 0.38);
  background: #fff;
}

.masterclasses-page .site-header .page-switch--back .page-switch-copy small {
  color: var(--clay-dark);
}

.masterclasses-page .site-header .nav-cta {
  color: #fff;
  background: var(--ink);
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.8fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  max-width: var(--content-max);
  min-height: 92vh;
  margin: 0 auto;
  padding: 132px 42px 72px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.94), transparent 30%),
    linear-gradient(135deg, #f8f2eb, #eadbcf);
  box-shadow: 0 38px 110px rgba(54, 42, 35, 0.14);
}

.catalog-copy {
  max-width: 720px;
}

.catalog-copy h1 {
  margin-bottom: 26px;
  font-size: 68px;
  line-height: 0.98;
}

.catalog-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--muted);
  font-size: 19px;
}

.catalog-copy .hero-actions {
  margin-top: 30px;
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.catalog-stats strong,
.catalog-stats span {
  display: block;
}

.catalog-stats strong {
  font-size: 18px;
}

.catalog-stats span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-visual {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: min(660px, 72vh);
}

.catalog-visual figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d7c8bc;
}

.catalog-visual-main {
  grid-row: 1 / span 2;
}

.catalog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.catalog-visual figure:hover img {
  transform: scale(1.035);
}

.catalog-intro {
  background: var(--paper);
}

.catalog-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-jump a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--soft-ink);
  background: rgba(255, 253, 248, 0.72);
  font-size: 14px;
  font-weight: 720;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.catalog-jump a:hover {
  border-color: rgba(185, 101, 85, 0.36);
  color: #fff;
  background: var(--clay);
  transform: translateY(-2px);
}

.masterclass-list {
  background: var(--milk);
}

.masterclass-list--body {
  background: #eef2ed;
}

.masterclass-entry {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: center;
  min-height: 780px;
  border-top: 1px solid var(--line);
  padding: 100px var(--wide-gutter);
  scroll-margin-top: 96px;
}

.masterclass-entry:target {
  animation: masterclassFocus 1500ms ease both;
}

.masterclass-entry:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  background: #f4ebe3;
}

.masterclass-entry:nth-child(even) .masterclass-media {
  grid-column: 2;
}

.masterclass-entry:nth-child(even) .masterclass-copy {
  grid-row: 1;
  grid-column: 1;
}

.masterclass-media {
  height: min(650px, 74vh);
  overflow: hidden;
  border-radius: 8px;
  background: #dfd2c7;
  box-shadow: 0 30px 90px rgba(50, 35, 28, 0.16);
}

.masterclass-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.masterclass-entry:hover .masterclass-media img {
  transform: scale(1.025);
}

.masterclass-copy {
  max-width: 800px;
}

.masterclass-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.masterclass-meta strong {
  color: var(--clay-dark);
}

.masterclass-copy h2 {
  max-width: 760px;
}

.masterclass-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.masterclass-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 34px 0 32px;
}

.masterclass-columns > div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.masterclass-columns h3 {
  font-size: 16px;
}

.masterclass-columns ul {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.masterclass-quote {
  margin: 0 0 28px;
  border-left: 2px solid var(--clay);
  padding-left: 18px;
  color: var(--soft-ink);
  font-size: 18px;
  font-weight: 720;
}

.chooser {
  color: #fff;
  background: #201c1a;
}

.chooser .eyebrow {
  color: #f3c4bb;
}

.chooser-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.chooser-item {
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 21px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.chooser-item:hover {
  border-color: rgba(243, 196, 187, 0.46);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.chooser-item span,
.chooser-item strong {
  display: block;
}

.chooser-item span {
  margin-bottom: 52px;
  color: #f3c4bb;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.chooser-item strong {
  font-size: 18px;
}

.chooser-item p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.catalog-final {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
  overflow: hidden;
  padding: 100px 42px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(23, 21, 20, 0.88), rgba(23, 21, 20, 0.34)),
    url("assets/final-gulfiza.jpg") center / cover;
}

.catalog-final .eyebrow {
  color: #f3c4bb;
}

.catalog-final .final-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.catalog-final .hero-actions {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease var(--reveal-delay, 0ms), transform 720ms ease var(--reveal-delay, 0ms);
}

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

@keyframes slowLens {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes heroLustre {
  0%,
  100% {
    background-position: calc(-120% + var(--scroll-progress)) center;
  }

  48%,
  56% {
    background-position: calc(140% + var(--scroll-progress)) center;
  }
}

@keyframes buttonSheen {
  from {
    transform: translateX(0) skewX(-18deg);
  }

  to {
    transform: translateX(330%) skewX(-18deg);
  }
}

@keyframes languageMenuIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes masterclassFocus {
  0% {
    box-shadow: inset 0 0 0 2px rgba(185, 101, 85, 0.7), inset 0 0 90px rgba(185, 101, 85, 0.12);
  }

  100% {
    box-shadow: inset 0 0 0 0 rgba(185, 101, 85, 0), inset 0 0 90px rgba(185, 101, 85, 0);
  }
}

@keyframes clockSecond {
  from {
    transform: translateX(-50%) rotate(0turn);
  }

  to {
    transform: translateX(-50%) rotate(1turn);
  }
}

@keyframes clockAura {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.96) rotate(0deg);
  }

  50% {
    opacity: 0.82;
    transform: scale(1.08) rotate(18deg);
  }
}

@keyframes journeyLine {
  from {
    transform: scaleX(0);
    opacity: 0.2;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes floatBeauty {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--float-rotate, 0deg));
  }

  45% {
    transform: translate3d(14px, -18px, 0) rotate(calc(var(--float-rotate, 0deg) + 8deg));
  }

  70% {
    transform: translate3d(-8px, 10px, 0) rotate(calc(var(--float-rotate, 0deg) - 5deg));
  }
}

@media (hover: hover) {
  .symptom-card,
  .format-card,
  .proof-card,
  .journey-step,
  .scan-quiz {
    transition-property: opacity, transform, border-color, box-shadow;
    transition-duration: 720ms, 220ms, 220ms, 220ms;
    transition-timing-function: ease;
    transition-delay: var(--reveal-delay, 0ms), 0ms, 0ms, 0ms;
  }

  .symptom-card:hover,
  .format-card:hover,
  .proof-card:hover,
  .journey-step:hover,
  .scan-quiz:hover {
    border-color: rgba(185, 101, 85, 0.34);
    box-shadow: 0 24px 80px rgba(50, 35, 28, 0.12);
    transform: translateY(-4px);
  }
}

@media (min-width: 1440px) {
  .hero {
    margin-top: 0;
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 1080px) {
  .hero-inner,
  .editorial-split,
  .scan-layout,
  .video-section {
    grid-template-columns: 1fr;
  }

  .visual-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey,
  .format-grid,
  .proof-grid,
  .symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-copy {
    padding: 56px 42px;
  }

  .split-image,
  .split-copy {
    grid-column: 1;
  }

  .split-image img {
    height: auto;
    object-fit: contain;
  }

  .video-copy {
    max-width: 760px;
  }

  .journey::before {
    display: none;
  }

  .footer-shell {
    width: calc(100% - 64px);
  }

  .footer-top {
    gap: 16px;
  }

  .footer-brand > span:last-child {
    display: none;
  }

  .footer-brand .brand-clock {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .footer-nav {
    gap: 16px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .footer-nav a + a {
    padding-left: 16px;
  }

  .footer-motto {
    font-size: 13px;
  }

  .site-footer .social-links {
    gap: 6px;
  }

  .site-footer .social-link {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .brand-label {
    display: none;
  }

  .header-navigation {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    border: 1px solid rgba(23, 21, 20, 0.1);
    border-radius: 8px;
    padding: 10px;
    color: var(--ink);
    background: rgba(251, 248, 242, 0.97);
    box-shadow: 0 24px 70px rgba(50, 35, 28, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
    backdrop-filter: blur(20px);
  }

  .site-header.is-menu-open {
    color: var(--ink);
    background: rgba(251, 248, 242, 0.97);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open .header-navigation {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-navigation .nav {
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
    border-color: rgba(23, 21, 20, 0.1);
    background: rgba(23, 21, 20, 0.035);
  }

  .header-navigation .nav-context {
    border-color: rgba(23, 21, 20, 0.12);
    color: var(--clay-dark);
  }

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

  .header-navigation .nav a:hover,
  .header-navigation .nav a.is-current {
    color: var(--clay-dark);
    background: rgba(185, 101, 85, 0.1);
  }

  .header-navigation .page-switch:not(.page-switch--back) {
    justify-content: center;
    border-color: transparent;
    color: #fff;
    background: var(--clay);
  }

  .header-navigation .page-switch {
    grid-column: 1;
  }

  .header-navigation .language-switcher {
    grid-column: 2;
    min-width: 124px;
    gap: 8px;
    justify-self: end;
    justify-content: space-between;
    color: var(--ink);
  }

  .header-navigation .language-trigger {
    border-color: rgba(23, 21, 20, 0.14);
    color: var(--ink);
    background: #fff;
  }

  .header-navigation .language-label {
    position: static;
    width: auto;
    height: auto;
    margin-left: 12px;
    overflow: visible;
    clip-path: none;
    color: var(--muted);
    font-size: 12px;
    font-weight: 720;
  }

  .header-navigation .page-switch:not(.page-switch--back) .page-switch-copy small {
    color: rgba(255, 255, 255, 0.72);
  }

  .nav-toggle {
    display: flex;
  }

  .header-socials {
    justify-self: end;
  }

  .site-header.is-menu-open .brand-clock--classic {
    color: var(--ink);
    background:
      radial-gradient(circle at 30% 24%, rgba(185, 101, 85, 0.22), transparent 25%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 224, 210, 0.82));
  }

  .site-header.is-menu-open .brand-clock::before {
    border-color: rgba(23, 21, 20, 0.2);
  }

  .site-header.is-menu-open .social-link {
    border-color: rgba(23, 21, 20, 0.18);
    background: rgba(255, 253, 248, 0.72);
  }

  .site-header.is-menu-open .nav-toggle,
  .site-header.is-menu-open .nav-cta {
    border-color: var(--ink);
    color: #fff;
    background: var(--ink);
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .footer-shell {
    width: calc(100% - 40px);
  }

  .footer-top {
    gap: 12px;
  }

  .footer-nav {
    gap: 12px;
  }

  .footer-nav span {
    display: none;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-nav a + a {
    padding-left: 12px;
  }

  .footer-motto {
    font-size: 12px;
  }

  .site-footer .social-link {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 760px) {
  .site-frame {
    box-shadow: none;
  }

  .site-header {
    inset: 12px auto auto 50%;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 10px;
    width: calc(100% - 24px);
    padding: 10px 12px;
  }

  .brand-label {
    display: none;
  }

  .header-navigation {
    align-items: stretch;
    justify-content: stretch;
  }

  .header-navigation .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .header-navigation .nav-context {
    grid-column: 1 / -1;
    justify-content: center;
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 21, 20, 0.1);
    padding: 7px 9px 11px;
    text-align: center;
  }

  .header-navigation .nav a {
    padding: 11px 9px;
  }

  .header-navigation .page-switch {
    min-height: 50px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .header-navigation .language-switcher {
    min-height: 50px;
  }

  .header-navigation .language-trigger {
    min-height: 48px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .header-socials {
    gap: 8px;
  }

  .header-socials .social-link {
    width: 36px;
    height: 36px;
  }

  .hero {
    max-width: none;
    min-height: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-inner {
    min-height: 840px;
    gap: 24px;
    padding: 112px 18px 56px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 21px;
  }

  .hero-lead,
  .section-head p,
  .split-copy p,
  .scan-copy p,
  .final-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .flow-note {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .flow-note span,
  .flow-note .button {
    grid-column: 1;
    grid-row: auto;
  }

  .flow-note .button {
    min-width: 0;
  }

  .visual-rail,
  .hero-bottom,
  .journey,
  .format-grid,
  .proof-grid,
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .hero-bottom div {
    min-height: auto;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section,
  .final-cta {
    padding: 70px 18px;
  }

  .beauty-float {
    opacity: 0.12;
  }

  .beauty-float:nth-child(2) {
    display: none;
  }

  .symptom-card,
  .journey-step {
    min-height: auto;
    padding: 24px;
  }

  .symptom-card h3,
  .journey-step h3 {
    margin-top: 48px;
  }

  .split-image {
    min-height: 0;
  }

  .split-copy {
    padding: 56px 18px;
  }

  .method-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .format-card,
  .scan-quiz {
    padding: 24px;
  }

  .format-top {
    margin-bottom: 42px;
  }

  .site-footer {
    display: block;
    padding: 22px 0;
  }

  .footer-shell {
    width: calc(100% - 36px);
  }

  .footer-top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px 14px;
  }

  .footer-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 16px;
  }

  .site-footer--main .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-nav a {
    font-size: 12px;
  }

  .site-footer--main .footer-nav a {
    justify-content: center;
    font-size: 11px;
    text-align: center;
    white-space: normal;
  }

  .site-footer:not(.site-footer--main) .footer-nav a:nth-child(2) {
    justify-self: end;
  }

  .footer-nav a + a {
    border-left: 0;
    padding-left: 0;
  }

  .footer-motto {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    margin-left: 0;
    font-size: 13px;
    text-align: center;
  }

  .site-footer .social-links {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
  }

  .footer-wordmark {
    bottom: -6px;
    font-size: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .hero-lustre,
  .button::after,
  .nav-cta::after,
  .journey::before,
  .beauty-float {
    display: none;
  }
}

@media (max-width: 1080px) {
  .results-grid,
  .chooser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .catalog-copy {
    max-width: 820px;
  }

  .catalog-visual {
    height: 580px;
  }

  .masterclass-entry,
  .masterclass-entry:nth-child(even) {
    gap: 52px;
  }
}

@media (max-width: 900px) {
  .masterclasses-teaser,
  .masterclass-entry,
  .masterclass-entry:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .masterclass-entry:nth-child(even) .masterclass-media {
    grid-row: 1;
    grid-column: 1;
  }

  .masterclass-entry:nth-child(even) .masterclass-copy {
    grid-row: 2;
    grid-column: 1;
  }

  .teaser-image {
    min-height: 560px;
  }

  .teaser-copy {
    max-width: none;
  }

  .masterclass-entry {
    min-height: auto;
  }

  .masterclass-media {
    height: 620px;
  }

}

@media (max-width: 760px) {
  .hero-media img {
    object-position: 28% center;
  }

  .hero-inner {
    min-height: auto;
  }

  .visual-rail {
    gap: 10px;
  }

  .rail-card {
    padding: 16px;
  }

  .rail-card span {
    margin-bottom: 12px;
  }

  .rail-card p {
    font-size: 14px;
  }

  .results-grid,
  .chooser-grid,
  .catalog-stats,
  .masterclass-columns {
    grid-template-columns: 1fr;
  }

  .result-copy {
    padding: 22px;
  }

  .teaser-image {
    min-height: 440px;
  }

  .teaser-copy {
    padding: 62px 18px 70px;
  }

  .teaser-copy > p:not(.eyebrow),
  .masterclass-lead,
  .catalog-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .teaser-copy .button {
    align-self: stretch;
  }

  .catalog-hero {
    min-height: auto;
    gap: 44px;
    padding: 112px 18px 60px;
    border-radius: 0;
  }

  .catalog-copy h1 {
    font-size: 45px;
  }

  .catalog-stats {
    gap: 0;
    margin-top: 38px;
  }

  .catalog-stats div {
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .catalog-visual {
    height: 470px;
    gap: 8px;
  }

  .catalog-jump {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .catalog-jump a {
    display: flex;
    min-height: 52px;
    align-items: center;
    border-radius: 8px;
    padding: 10px 12px;
  }

  .masterclass-entry,
  .masterclass-entry:nth-child(even) {
    gap: 36px;
    padding: 70px 18px;
  }

  .masterclass-media {
    height: 500px;
  }

  .masterclass-meta {
    margin-bottom: 34px;
  }

  .masterclass-columns {
    gap: 12px;
    margin: 28px 0;
  }

  .chooser-item {
    min-height: 220px;
  }

  .catalog-final {
    min-height: 620px;
    padding: 82px 18px;
    background-position: 57% center;
  }

}

@media (max-width: 460px) {
  .catalog-jump {
    grid-template-columns: 1fr;
  }

  .catalog-copy h1 {
    font-size: 40px;
  }

  .catalog-visual {
    grid-template-columns: 1fr 0.7fr;
    height: 420px;
  }

  .masterclass-media {
    height: 440px;
  }
}

@media (max-width: 360px) {
  .site-header {
    inset: 8px auto auto 50%;
    grid-template-columns: 36px minmax(0, 1fr) 36px auto;
    gap: 6px;
    width: calc(100% - 16px);
    padding: 8px;
  }

  .brand-clock {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .brand-clock--classic::after {
    inset: -4px;
  }

  .header-socials {
    gap: 4px;
  }

  .header-socials .social-link {
    width: 30px;
    height: 30px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 5px;
    font-size: 12px;
  }

  .site-footer--main .footer-nav span {
    display: none;
  }

  .header-navigation {
    top: calc(100% + 6px);
  }
}
