/* Контур — editorial luxury (Vogue-inspired) + SD accents in UI only */
:root {
  --cream: #f6f3ed;
  --cream-dark: #ebe6dc;
  --ink: #1a1816;
  --ink-soft: #3d3935;
  --muted: #6b6560;
  --light: #faf8f5;
  /* Spiral dynamics — design only */
  --sd-blue: #3d5a73;
  --sd-blue-bg: #e8eef3;
  --sd-green: #4a6356;
  --sd-green-bg: #e6ebe8;
  --sd-warm: #9a6b47;
  --sd-warm-bg: #f3ebe3;
  --sd-gold: #8a7344;
  --editorial-red: #c41e3a;
  --editorial-red-bg: #f8e8ec;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-brand: "Syne", system-ui, sans-serif;
  --max: 1160px;
  --pad: clamp(4rem, 9vw, 7rem);
  --header-h: 68px;
  --top-h: 38px;
  --text-base: 1.125rem;
  --leading: 1.75;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--muted);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--top-h);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 600; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1.15rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section-pad { padding: var(--pad) 0; }
.section--cream { background: var(--cream); }
.section--sage { background: var(--sd-green-bg); }
.section--ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  position: relative;
}

.section--ink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--editorial-red);
}

.text-light { color: var(--light) !important; }

/* Global texture & collage */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.collage-lines {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.06;
}

.collage-lines__svg {
  position: absolute;
  width: 40vmax;
  right: -10%;
  top: 30%;
  color: var(--sd-blue);
  animation: drift 25s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-3%, 5%) rotate(8deg); }
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--light);
  padding: 0.85rem 0;
  border-block: 3px solid var(--ink);
}

.marquee--reverse { background: var(--cream-dark); color: var(--ink); }
.marquee--red { background: var(--editorial-red); color: var(--light); }

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 32s; }

.marquee__track span {
  padding-right: 3rem;
  white-space: nowrap;
}

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

/* Cover hero — magazine strips */
.cover-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(6rem, 14vh, 9rem) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 6vw, 4rem);
}

.cover-hero__meta {
  position: absolute;
  top: calc(var(--top-h) + var(--header-h) + 1rem);
  left: clamp(1rem, 4vw, 2.5rem);
  right: clamp(1rem, 4vw, 2.5rem);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cover-hero__brand {
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--light);
}

.cover-hero__issue {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.cover-hero__barcode {
  width: 48px;
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    var(--light) 0,
    var(--light) 2px,
    transparent 2px,
    transparent 4px
  );
  opacity: 0.5;
}

.cover-hero__strips {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(6px, 1.2vw, 14px);
  padding: 0 clamp(4px, 1vw, 8px);
  padding-top: calc(var(--top-h) + var(--header-h));
}

.cover-hero__strip {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0.92);
  animation: stripIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cover-hero__strip:nth-child(1) { animation-delay: 0.1s; }
.cover-hero__strip:nth-child(2) { animation-delay: 0.25s; }
.cover-hero__strip:nth-child(3) { animation-delay: 0.4s; }

@keyframes stripIn {
  to { opacity: 1; transform: scaleY(1); }
}

.cover-hero__strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  transform: scale(1.15);
}

.cover-hero__strip:nth-child(1) img { object-position: 18% 30%; }
.cover-hero__strip:nth-child(2) img { object-position: 50% 25%; }
.cover-hero__strip:nth-child(3) img { object-position: 82% 35%; }

.cover-hero__halftone {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(circle, var(--sd-blue) 1px, transparent 1px);
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
  animation: halftoneShift 12s linear infinite;
}

@keyframes halftoneShift {
  from { background-position: 0 0; }
  to { background-position: 8px 8px; }
}

@keyframes cardPop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cover-hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.cover-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 14vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: #fff;
  margin: 0 0 1.5rem;
  mix-blend-mode: normal;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.9), 0 0 80px rgba(0, 0, 0, 0.5);
}

.cover-hero__title-line {
  display: block;
}

.cover-hero__title-line--accent {
  color: #fff;
  -webkit-text-stroke: 0;
  padding-left: 0.05em;
}

.cover-hero__box {
  max-width: 32rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-left: 4px solid var(--editorial-red);
}

.cover-hero .hero-offer {
  font-size: 1.15rem;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 0.75rem;
  padding-left: 0;
  border-left: none;
  text-shadow: none;
  font-weight: 500;
}

.cover-hero .deck {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
  text-shadow: none;
}

.cover-hero .btn--primary {
  background: var(--editorial-red);
}

.cover-hero .btn--primary:hover {
  background: #a01830;
}

.cover-hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* Top note */
.top-note {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--top-h);
  display: flex;
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.top-note__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-note__sep {
  width: 24px;
  height: 1px;
  background: var(--sd-warm);
  opacity: 0.8;
}

.top-note__link {
  color: var(--sd-warm-bg);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* Header */
.header {
  position: sticky;
  top: var(--top-h);
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.45s, border-color 0.45s, box-shadow 0.45s, color 0.45s;
}

.header--on-hero .logo,
.header--on-hero .nav a,
.header--on-hero .menu-toggle span {
  color: var(--light);
}

.header--on-hero .logo__mark { color: var(--light); }

.header--on-hero .menu-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.header--scrolled {
  background: rgba(246, 243, 237, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(26, 24, 22, 0.08);
  box-shadow: 0 1px 0 rgba(26, 24, 22, 0.06);
}

.header--scrolled .logo,
.header--scrolled .nav a,
.header--scrolled .menu-toggle span {
  color: var(--ink);
}

.header--scrolled .logo__mark { color: var(--sd-blue); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
}

.logo__word {
  font-family: var(--font-brand);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo__mark { color: var(--sd-blue); flex-shrink: 0; }

/* Watermark logo on scroll */
.logo-watermark {
  position: fixed;
  z-index: 50;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.logo-watermark.is-visible {
  opacity: 0.18;
  transform: scale(1);
}

.logo-watermark.is-pulse {
  opacity: 0.35;
  transform: scale(1.06);
  filter: drop-shadow(0 0 20px rgba(196, 30, 58, 0.15));
}

.logo-watermark__mark {
  width: 48px;
  height: 48px;
}

.logo-watermark__word {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .logo-watermark { right: 1rem; bottom: 1rem; }
  .logo-watermark__mark { width: 36px; height: 36px; }
}

.nav {
  display: none;
  gap: 2.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav a:hover { color: var(--sd-blue); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 24, 22, 0.15);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.2s;
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.25rem 1.25rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
}

.mobile-nav a {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-toggle, .mobile-nav { display: none !important; }
  .header__cta { display: inline-flex; }
}

.header__cta { display: none; }

/* Typography */
.masthead {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.kicker--blue { color: var(--sd-blue); }
.kicker--green { color: var(--sd-green); }
.kicker--warm { color: var(--sd-warm); }
.kicker--light { color: rgba(255, 255, 255, 0.55); }

.lead {
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36rem;
}

.lead--light { color: rgba(255, 255, 255, 0.88); }

.deck {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.body-lg {
  font-size: 1.125rem;
  line-height: var(--leading);
  color: var(--ink-soft);
  max-width: 34rem;
}

.section-deck {
  font-size: 1.15rem;
  max-width: 30rem;
  margin-inline: auto;
  text-align: center;
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  line-height: 1.45;
  color: var(--ink);
  border-left: 3px solid var(--sd-green);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

.hero-offer {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 1rem;
}

.deck {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-enter > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-enter > *:nth-child(1) { animation-delay: 0.1s; }
.hero-enter > *:nth-child(2) { animation-delay: 0.2s; }
.hero-enter > *:nth-child(3) { animation-delay: 0.32s; }
.hero-enter > *:nth-child(4) { animation-delay: 0.44s; }
.hero-enter > *:nth-child(5) { animation-delay: 0.56s; }
.hero-enter > *:nth-child(6) { animation-delay: 0.68s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.about-block { margin-bottom: 2.5rem; max-width: 40rem; }

.stats-editorial--solo .stats-editorial__grid {
  max-width: 100%;
}

@media (min-width: 860px) {
  .stats-editorial--solo { max-width: 100%; }
}

/* Layout */
.layout-split {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 860px) {
  .layout-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .layout-split--reverse .editorial-figure { order: -1; }
  .layout-split--center { align-items: center; }
}

.grid-3 {
  display: grid;
  gap: 1px;
  background: rgba(26, 24, 22, 0.08);
}

@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.section-head {
  margin-bottom: 3.5rem;
  text-align: center;
}

/* Figures */
.editorial-figure { margin: 0; }

.editorial-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.editorial-figure--tall img { aspect-ratio: 3 / 4; }

.editorial-figure--framed {
  position: relative;
}

.editorial-figure--framed::before {
  content: "";
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--sd-blue);
  z-index: -1;
  opacity: 0.6;
  transition: transform 0.5s ease;
}

.editorial-figure--framed:hover::before {
  transform: translate(6px, -6px);
}

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

.section--collage::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: 5%;
  top: 10%;
  background: var(--editorial-red);
  opacity: 0.08;
  transform: rotate(12deg);
  pointer-events: none;
}

.editorial-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

.stats-editorial__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1px;
}

.stats-editorial__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26, 24, 22, 0.08);
}

.stat-block {
  padding: 1.5rem 1rem;
  background: var(--light);
  text-align: center;
}

.stat-block--warm { background: var(--sd-warm-bg); }

.stat-block__n {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.stat-block__l {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
}

/* Philosophy */
.philosophy-points li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.25rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  border-top: 1px solid rgba(74, 99, 86, 0.2);
}

.philosophy-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 6px;
  height: 6px;
  background: var(--sd-green);
  border-radius: 50%;
}

/* Method */
.method-panel {
  padding: 2rem;
  background: var(--sd-blue-bg);
  border-top: 3px solid var(--sd-blue);
}

.process-steps li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.15rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(61, 90, 115, 0.15);
  opacity: 0.4;
  transition: opacity 0.45s;
}

.process-steps li.is-active {
  opacity: 1;
  color: var(--ink);
  font-weight: 500;
}

.process-steps li span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--sd-blue);
  min-width: 1.75rem;
}

/* Tiles */
.tile {
  padding: 2rem 1.75rem;
  background: var(--light);
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.tile--blue { border-top: 3px solid var(--sd-blue); }
.tile--green { border-top: 3px solid var(--sd-green); }
.tile--warm { border-top: 3px solid var(--sd-warm); }

.tile h3 { margin-bottom: 0.65rem; }
.tile p { margin: 0; font-size: 1.05rem; flex: 1; }

.tile__offer {
  margin-top: 1.25rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 24, 22, 0.08);
  font-size: 0.85rem !important;
  font-weight: 500;
  color: var(--sd-warm) !important;
  letter-spacing: 0.02em;
}

.tile--highlight {
  background: var(--sd-warm-bg);
}

.tile--highlight h3 { color: var(--sd-warm); }

/* Diagnostic dark section */
.list-light li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

.list-light li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sd-warm);
}

.diagnostic-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.diagnostic-panel__meta {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.diagnostic-panel__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

.diagnostic-panel__count {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--light);
}

.diagnostic-panel__count span { color: #d4a574; }

.diagnostic-panel__bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
  overflow: hidden;
}

.diagnostic-panel__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--sd-warm), #d4a574);
  transition: width 1.2s ease;
}

.diagnostic-panel__note {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.65;
}

/* Model */
.model-list li {
  padding: 1.1rem 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(26, 24, 22, 0.1);
}

.model-list li:last-child { border-bottom: none; }

/* Directions — editorial grid */
.directions {
  display: grid;
  gap: 1px;
  background: rgba(26, 24, 22, 0.1);
  border: 1px solid rgba(26, 24, 22, 0.1);
}

@media (min-width: 640px) {
  .directions { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .directions { grid-template-columns: repeat(3, 1fr); }
}

.direction {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 2rem 1.75rem;
  background: var(--light);
  transition: background 0.35s;
}

.direction:hover { background: #fff; }

.direction__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.direction__num {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.direction__tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  background: var(--sd-warm-bg);
  color: var(--sd-warm);
}

.direction h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
}

.direction__ctx {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.direction__result {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--ink);
  flex: 1;
}

.direction__how {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.direction__offer {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  padding: 1rem 1.1rem;
  background: var(--editorial-red-bg);
  border: 2px solid var(--editorial-red);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

.offer-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  background: var(--editorial-red);
  padding: 0.25rem 0.55rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.direction__cta {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sd-blue);
}

.direction__cta:hover { color: var(--sd-warm); }

/* SD accent borders per direction */
.direction--audit { border-top: 3px solid var(--sd-blue); }
.direction--audit .direction__num { color: var(--sd-blue); }

.direction--launch { border-top: 3px solid var(--sd-green); }
.direction--launch .direction__num { color: var(--sd-green); }

.direction--sales { border-top: 3px solid var(--sd-blue); }
.direction--sales .direction__num { color: var(--sd-blue); }

.direction--turnkey { border-top: 3px solid var(--sd-gold); }
.direction--turnkey .direction__num { color: var(--sd-gold); }

.direction--insta { border-top: 3px solid var(--sd-warm); }
.direction--insta .direction__num { color: var(--sd-warm); }

.direction--unblock { border-top: 3px solid var(--sd-green); }
.direction--unblock .direction__num { color: var(--sd-green); }

/* Cycle */
.cycle { list-style: none; }

.cycle__item {
  padding: 1.15rem 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--light);
  color: var(--muted);
  opacity: 0.45;
  transition: opacity 0.4s, color 0.4s, background 0.4s;
}

.cycle__item.is-lit {
  opacity: 1;
  color: var(--ink);
  background: var(--sd-blue-bg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s, background 0.25s;
}

.btn--primary {
  background: var(--ink);
  color: var(--light);
}

.btn--primary:hover { background: var(--sd-blue); }

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--light);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--light {
  background: var(--light);
  color: var(--ink);
  margin-top: 1.5rem;
}

.btn--light:hover { background: var(--sd-warm-bg); }

.btn--full { width: 100%; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Form */
.form {
  padding: 2.5rem;
  background: var(--light);
  border: 1px solid rgba(26, 24, 22, 0.08);
}

.form input {
  width: 100%;
  padding: 1rem 0;
  font: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 24, 22, 0.15);
  outline: none;
  margin-bottom: 0.25rem;
}

.form input:focus { border-color: var(--sd-blue); }

.form input::placeholder { color: var(--muted); }

.form__note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  text-align: center;
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
}

.footer a:hover { color: var(--light); }

.form__status {
  min-height: 1.25rem;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.form__status.is-error { color: #8b3a3a; }
.form__status.is-success { color: var(--sd-green); }

.form.is-loading button { opacity: 0.6; pointer-events: none; }

.tile,
.direction,
.stat-block {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.tile:hover,
.direction:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 24, 22, 0.08);
}

.editorial-figure img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-figure:hover img {
  transform: scale(1.02);
}

/* Reveal */
.reveal, .reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--clip {
  clip-path: inset(100% 0 0 0);
  transform: none;
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.reveal--clip.is-visible {
  clip-path: inset(0 0 0 0);
}

.reveal.is-visible,
.reveal-group.is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal-group.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-group > *,
  .hero-enter > *,
  .cover-hero__strip {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .marquee__track { animation: none; }
  .process-steps li { opacity: 1; }
  .logo-watermark { display: none; }
  .tile:hover, .direction:hover { transform: none; box-shadow: none; }
  .cover-hero__halftone { animation: none; }
  .collage-lines__svg { animation: none; }
}
