/* ─────────────────────────────────────────
   INNAYA · Камертон — Landing CSS
   Design tokens from: 01_visual/DESIGN.md
   ───────────────────────────────────────── */

/* ─── Tokens ─── */
:root {
  --cream:         #FDF7E6;
  --near-black:    #1A160D;
  --dark-burgundy: #671102;
  --red:           #C61917;
  --light-blue:    #D4E8F6;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; max-width: 100%; }
img, video { max-width: 100%; height: auto; }

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.65, 0.2, 1),
              transform 1.1s cubic-bezier(0.2, 0.65, 0.2, 1),
              filter 1.1s cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Image-specific reveal: zoom-out + soft blur clear */
.reveal-img {
  opacity: 0;
  transform: scale(1.08);
  filter: blur(6px);
  transition: opacity 1.4s cubic-bezier(0.2, 0.65, 0.2, 1),
              transform 1.6s cubic-bezier(0.2, 0.65, 0.2, 1),
              filter 1.4s cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: opacity, transform, filter;
}
.reveal-img.in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Continuous Ken Burns zoom on key photos */
@keyframes ken-burns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}
.about__photo.in {
  animation: ken-burns 22s ease-in-out infinite;
}

/* Gentle float on program map */
@keyframes soft-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.program-map.in img {
  animation: soft-float 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img { opacity: 1; transform: none; filter: none; transition: none; }
  .about__photo.in, .program-map.in img { animation: none; }
  html { scroll-behavior: auto; }
}

body {
  background: var(--cream);
  color: var(--near-black);
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--dark-burgundy);
  line-height: 1.15;
}

.label {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.label--burgundy { color: var(--dark-burgundy); }
.label--cream    { color: rgba(253, 247, 230, 0.55); }

/* ─── Wordmark (logo as CSS mask, paints with currentColor) ─── */
.wordmark {
  display: inline-block;
  width: 130px;
  height: 25px;
  font-size: 0;
  color: var(--dark-burgundy);
  background-color: currentColor;
  -webkit-mask: url('../assets/innaya-wordmark.svg') left center / contain no-repeat;
          mask: url('../assets/innaya-wordmark.svg') left center / contain no-repeat;
  text-decoration: none;
  vertical-align: middle;
  transition: color 0.3s, opacity 0.3s;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  width: 100%;
  padding: 16px 24px;
  background: var(--dark-burgundy);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 24px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn:hover { opacity: 0.85; }

.btn--outline {
  background: transparent;
  color: var(--dark-burgundy);
  border-color: rgba(103, 17, 2, 0.35);
}

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

/* ─── Layout ─── */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.section          { padding: 100px 0; background: var(--cream); }
.section--dark    { background: var(--dark-burgundy); }
.section--blue    { background: var(--light-blue); }

/* ─── Section divider ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.divider__line {
  flex: 1;
  height: 1px;
  background: var(--red);
}
.divider__line--cream { background: rgba(253, 247, 230, 0.2); }
.divider__line--dark  { background: rgba(103, 17, 2, 0.2); }

/* ─── Decorative glyph (4-point celestial sparkle) ─── */
.glyph {
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-color: var(--red);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 0 L9.4 6.6 L16 8 L9.4 9.4 L8 16 L6.6 9.4 L0 8 L6.6 6.6 Z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 0 L9.4 6.6 L16 8 L9.4 9.4 L8 16 L6.6 9.4 L0 8 L6.6 6.6 Z'/></svg>") center / contain no-repeat;
}
.glyph--cream    { background-color: rgba(253, 247, 230, 0.7); }
.glyph--burgundy { background-color: var(--dark-burgundy); }

/* ─── Paper grain (subtle) on cream sections ─── */
.section,
.invitation,
.hero {
  position: relative;
}
.section:not(.section--dark):not(.section--blue)::after,
.invitation::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.34 0 0 0 0 0.05 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
/* keep content above grain */
.section > *,
.invitation > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}

nav .wordmark,
nav .nav__link {
  color: var(--cream);
  opacity: 0.9;
  transition: color 0.3s, opacity 0.3s;
}

nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(26, 22, 13, 0.08);
}

nav.scrolled .wordmark { color: var(--dark-burgundy); opacity: 1; }
nav.scrolled .nav__link { color: var(--near-black); opacity: 0.65; }
nav.scrolled .nav__link:hover { opacity: 1; }

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--near-black);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.nav__link:hover { opacity: 1; }

.nav__cta {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--dark-burgundy);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 24px;
  transition: opacity 0.2s;
}
.nav__cta:hover { opacity: 0.85; }

/* ═══════════════════════════════════════
   HERO (full-bleed video)
═══════════════════════════════════════ */
.hero--video {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: var(--near-black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(253, 247, 230, 0.55) 0%,
      rgba(253, 247, 230, 0.10) 22%,
      rgba(26, 22, 13, 0.05) 60%,
      rgba(26, 22, 13, 0.55) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 140px;
}

.hero__eyebrow {
  margin-bottom: 32px;
  color: var(--cream);
  opacity: 0.85;
  text-shadow: 0 1px 12px rgba(26, 22, 13, 0.4);
}

.hero__phrase {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--cream);
  line-height: 1.15;
  max-width: 720px;
  text-shadow: 0 2px 24px rgba(26, 22, 13, 0.5);
}

.hero__sign {
  margin-top: 36px;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: var(--cream);
  opacity: 0.7;
}
.hero__scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
}

/* ═══════════════════════════════════════
   INVITATION (Камертон CTA section)
═══════════════════════════════════════ */
.invitation {
  padding: 80px 0 130px;
  text-align: center;
}

/* Centered hairline ornament at the top — section break */
.invitation__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 80px;
  max-width: 360px;
  padding: 0 24px;
}
.invitation__rule-line {
  flex: 1;
  height: 1px;
  background: rgba(103, 17, 2, 0.25);
}
.invitation__rule-glyph {
  width: 14px;
  height: 14px;
  background-color: var(--dark-burgundy);
  opacity: 0.6;
  flex-shrink: 0;
}

.invitation__eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.invitation__title {
  font-size: clamp(3.2rem, 9vw, 6rem);
  margin: 0 auto 32px;
  max-width: 12ch;
}

.invitation__subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 52ch;
  margin: 0 auto 48px;
  opacity: 0.8;
}

.invitation__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   EPIGRAPH (quiet transition on cream)
═══════════════════════════════════════ */
.epigraph {
  background: var(--cream);
  padding: 130px 0;
  text-align: center;
}

.epigraph__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 720px;
}

.epigraph__glyph {
  width: 16px;
  height: 16px;
  background-color: var(--dark-burgundy);
  opacity: 0.55;
}

.epigraph__text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  color: var(--dark-burgundy);
  line-height: 1.3;
  letter-spacing: 0.005em;
}

.epigraph__accent {
  font-style: normal;
  position: relative;
  white-space: nowrap;
  background-image: linear-gradient(transparent 70%, rgba(198, 25, 23, 0.18) 70%);
  padding: 0 4px;
}

.epigraph__sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--near-black);
  opacity: 0.6;
  max-width: 50ch;
}

/* ═══════════════════════════════════════
   ABOUT INNA (editorial: photo + text)
═══════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--dark-burgundy);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 980px;
}

.about__photo {
  aspect-ratio: 3 / 4;
  background-color: #4a0e02;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: sticky;
  top: 100px;
}

.about__text { min-width: 0; }

.about h2 {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 32px;
}

.about p {
  color: var(--cream);
  opacity: 0.85;
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 24px;
  max-width: 60ch;
}
.about p:last-of-type { margin-bottom: 0; }

/* ═══════════════════════════════════════
   WHAT IS KAMERTON
═══════════════════════════════════════ */
.what h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 36px;
  max-width: 24ch;
}

.what__lead {
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 20px;
  max-width: 60ch;
  opacity: 0.85;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}

.metric {
  padding: 32px 24px 32px 0;
}
.metric + .metric {
  padding-left: 24px;
  border-left: 1px solid rgba(103, 17, 2, 0.14);
}

.metric__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  color: var(--dark-burgundy);
  line-height: 1;
  margin-bottom: 10px;
}

.metric__label {
  font-size: 0.82rem;
  line-height: 1.55;
  opacity: 0.6;
}

/* ═══════════════════════════════════════
   FOR WHOM
═══════════════════════════════════════ */
.for-whom { background: var(--light-blue); }

.for-whom h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 48px;
  max-width: 22ch;
}

.pain-list { list-style: none; }

.pain-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(103, 17, 2, 0.12);
}
.pain-item:first-child { border-top: 1px solid rgba(103, 17, 2, 0.12); }

.pain-item__dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 9px;
}

.pain-item__text {
  font-size: 1rem;
  line-height: 1.65;
}

.for-whom__closing {
  margin-top: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--dark-burgundy);
  line-height: 1.4;
  max-width: 30ch;
}

/* ═══════════════════════════════════════
   FORMAT
═══════════════════════════════════════ */
.format h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 48px;
  max-width: 22ch;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.format-card {
  padding: 36px 32px;
  background: rgba(253, 247, 230, 0.6);
  border: 1.5px solid rgba(103, 17, 2, 0.1);
  border-radius: 20px;
}

.format-card .label { margin-bottom: 12px; }

.format-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--dark-burgundy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.format-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   PROGRAM STRUCTURE
═══════════════════════════════════════ */
.program { background: var(--dark-burgundy); }

.program__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.program h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 56px;
}

.program__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

.program-map {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}
.program-map img {
  display: block;
  width: 100%;
  height: auto;
}

.phases { display: flex; flex-direction: column; }

.phase {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(253, 247, 230, 0.12);
}
.phase:first-child { border-top: 1px solid rgba(253, 247, 230, 0.12); }

.phase__range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--cream);
  opacity: 0.28;
  line-height: 1;
  padding-top: 4px;
}

.phase__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}

.phase__text {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.72;
  line-height: 1.7;
}

.phase__pills {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 5px 13px;
  border: 1px solid rgba(253, 247, 230, 0.22);
  border-radius: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0.6;
}

/* ═══════════════════════════════════════
   MANIFEST LINE
═══════════════════════════════════════ */
.manifest {
  background: var(--cream);
  padding: 140px 0;
  text-align: center;
  position: relative;
}

.manifest__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.manifest__glyph {
  width: 16px;
  height: 16px;
  background-color: var(--dark-burgundy);
  opacity: 0.6;
}

.manifest__text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  color: var(--dark-burgundy);
  line-height: 1.3;
  letter-spacing: 0.005em;
}

.manifest__accent {
  font-style: normal;
  position: relative;
  white-space: nowrap;
  background-image: linear-gradient(transparent 70%, rgba(198, 25, 23, 0.18) 70%);
  padding: 0 4px;
}

/* ═══════════════════════════════════════
   TARIFFS
═══════════════════════════════════════ */
.tariffs__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.tariffs h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 12px;
}

.tariffs__lead {
  font-size: 1rem;
  opacity: 0.65;
  margin-bottom: 56px;
  max-width: 60ch;
}

.tariff-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 28px);
  align-items: stretch;
}

.tariff-card {
  padding: clamp(32px, 3.5vw, 56px) clamp(28px, 3vw, 48px);
  border: 1.5px solid rgba(103, 17, 2, 0.12);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.tariff-card__includes { flex-grow: 1; }

.tariff-card--featured {
  background: var(--dark-burgundy);
  border-color: var(--dark-burgundy);
}

.tariff-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--dark-burgundy);
  margin-bottom: 8px;
}

.tariff-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  color: var(--dark-burgundy);
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.tariff-card--featured .tariff-card__price { color: var(--cream); }

.tariff-card--featured .tariff-card__name { color: var(--cream); }

.tariff-card__tier {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.tariff-card--featured .tariff-card__tier { color: rgba(253, 247, 230, 0.5); }

.tariff-card__includes {
  list-style: none;
  margin-bottom: 32px;
}

.tariff-card__includes li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.6;
  padding: 8px 0;
  color: var(--near-black);
  opacity: 0.78;
}

.tariff-card--featured .tariff-card__includes li {
  color: var(--cream);
  opacity: 0.85;
}

.tariff-card__includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 9px;
}

.tariff-card--featured .tariff-card__includes li::before {
  background: rgba(253, 247, 230, 0.4);
}

.tariff-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.45;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   REVIEWS (full-width, 3-column grid)
═══════════════════════════════════════ */
.reviews__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.reviews h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 56px;
  max-width: 26ch;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.review {
  position: relative;
  padding: 40px 34px 32px;
  background: rgba(253, 247, 230, 0.55);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.review::before {
  content: '“';
  position: absolute;
  top: 14px;
  left: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.4rem;
  color: var(--dark-burgundy);
  opacity: 0.22;
  line-height: 1;
  pointer-events: none;
}

.review__quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--dark-burgundy);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.review__author {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-burgundy);
  opacity: 0.55;
}

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.final-cta { text-align: center; padding: 120px 0; }

.final-cta h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin: 24px auto 20px;
  max-width: 22ch;
}

.final-cta p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 50ch;
  margin: 0 auto 48px;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 260px;
  margin: 0 auto;
}

.think-link {
  font-size: 0.8rem;
  color: var(--near-black);
  opacity: 0.45;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.think-link:hover { opacity: 0.75; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  padding: 40px 32px;
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .wordmark { color: rgba(253, 247, 230, 0.45); width: 104px; height: 20px; }

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 247, 230, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(253, 247, 230, 0.7); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .program__grid { grid-template-columns: 1fr; gap: 40px; }
  .program-map { position: static; max-width: 540px; }
}

@media (max-width: 820px) {
  .reviews__list { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reviews__list .review:nth-child(3) { grid-column: 1 / -1; }
  .tariff-cards { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 640px) {
  nav { padding: 18px 20px; }
  .nav__links { display: none; }

  /* Softer reveal on small screens — feels right at smaller scale */
  .reveal { transform: translateY(36px); transition-duration: 0.8s; }
  .reveal-img { transform: scale(1.05); transition-duration: 1.1s; }

  .hero { padding-top: 110px; padding-bottom: 72px; }
  .hero__phrase { margin-bottom: 40px; }
  .hero-video__meta { padding: 12px 16px; }
  .invitation__actions { max-width: 100%; }

  .epigraph { padding: 90px 0; }
  .epigraph__inner { gap: 22px; }

  .reviews__list { grid-template-columns: 1fr; gap: 14px; }
  .review { padding: 32px 26px 26px; }
  .review::before { font-size: 3.4rem; top: 10px; left: 16px; }
  .review__quote { font-size: 1.15rem; }

  .manifest { padding: 80px 0; }
  .manifest__inner { padding: 0 24px; gap: 24px; }
  .manifest__text br { display: none; }
  .manifest__accent { white-space: normal; }

  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__photo {
    aspect-ratio: 4 / 5;
    position: static;
    max-width: 360px;
  }

  .metrics { grid-template-columns: 1fr; }
  .metric + .metric {
    border-left: none;
    border-top: 1px solid rgba(103, 17, 2, 0.14);
    padding-left: 0;
  }

  .format-grid { grid-template-columns: 1fr; gap: 14px; }

  .phase { grid-template-columns: 1fr; gap: 10px; }
  .phase__range { font-size: 1.6rem; }

  .tariff-card { padding: 32px 24px; }

  footer { flex-direction: column; align-items: flex-start; padding: 32px 20px; }
  .footer-links { flex-direction: column; gap: 16px; }
}
