:root {
  --ink: #4a1d2d;
  --ink-deep: #2b0d19;
  --wine: #681c35;
  --rose: #c96f78;
  --rose-dark: #9f4258;
  --blush: #efc4ba;
  --paper: #fffaf6;
  --paper-soft: #f8eee8;
  --paper-deep: #efddd5;
  --text: #5d3c36;
  --muted: #80665f;
  --line: rgba(74, 29, 45, 0.14);
  --line-light: rgba(255, 250, 246, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1320px, calc(100vw - 96px));
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --shadow: 0 28px 80px rgba(77, 42, 40, 0.13);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink-deep);
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper-soft);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  height: auto;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
p,
figure,
ol,
ul {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

button,
[href] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #d04f70;
  outline-offset: 4px;
}

::selection {
  background: var(--rose-dark);
  color: var(--paper);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink-deep);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(100px, 10vw, 160px) 0;
}

.page-progress {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--blush));
  box-shadow: 0 0 16px rgba(201, 111, 120, 0.55);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  color: var(--ink);
  transition: min-height 0.35s var(--ease), background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  min-height: 68px;
  background: rgba(255, 250, 246, 0.84);
  box-shadow: 0 12px 38px rgba(74, 29, 45, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  min-height: 44px;
  font: italic 600 23px/1 var(--serif);
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 7px rgba(201, 111, 120, 0.13);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-contact {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contacts {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(74, 29, 45, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.34);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.header-contact svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-social {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(74, 29, 45, 0.22);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.34);
  color: var(--ink);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

.header-social:hover {
  color: var(--rose-dark);
  border-color: rgba(159, 66, 88, 0.35);
  background: rgba(255, 245, 240, 0.55);
  transform: translateY(-1px);
}

.header-social svg {
  width: 18px;
  height: 18px;
}

.header-contact:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #f0ddd4;
  color: var(--ink);
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -4;
  max-width: none;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.92) contrast(0.99);
  transform: scale(1.012);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.99) 0%, rgba(255, 250, 246, 0.94) 31%, rgba(255, 250, 246, 0.58) 50%, rgba(255, 250, 246, 0.06) 75%, transparent 100%),
    linear-gradient(0deg, rgba(255, 250, 246, 0.72) 0%, transparent 24%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 54vw;
  aspect-ratio: 1;
  left: -20vw;
  top: -28vw;
  border-radius: 50%;
  background: rgba(239, 196, 186, 0.45);
  filter: blur(90px);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(159, 66, 88, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-a {
  width: min(46vw, 700px);
  aspect-ratio: 1;
  right: -18vw;
  top: 12vh;
}

.hero-orbit-b {
  width: min(25vw, 390px);
  aspect-ratio: 1;
  right: -4vw;
  top: 28vh;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: max(720px, 100svh);
  padding: 128px 0 102px;
}

.eyebrow,
.mini-kicker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  color: var(--rose-dark);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero-title {
  max-width: 820px;
  color: var(--ink);
  font: 400 clamp(68px, 7.2vw, 112px) / 0.87 var(--serif);
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.hero-title > span {
  display: block;
  overflow: hidden;
  padding: 0 0 0.09em;
}

.hero-title > span > i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
  animation: title-in 1.1s var(--ease) forwards;
}

.hero-title > span:nth-child(1) > i { animation-delay: 0.12s; }
.hero-title > span:nth-child(2) > i { animation-delay: 0.24s; }
.hero-title > span:nth-child(3) > i { animation-delay: 0.36s; }

.hero-title em,
.section-title em,
.bundle-card em,
.mood-copy em,
.about-copy em,
.contact-title em {
  color: var(--rose-dark);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 620px;
  margin-top: 28px;
  padding-left: 19px;
  border-left: 1px solid rgba(159, 66, 88, 0.34);
  color: rgba(74, 29, 45, 0.75);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.68;
}

.hero-lead strong {
  color: var(--ink);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.35s ease, box-shadow 0.35s ease;
}

.button-primary {
  padding: 8px 8px 8px 28px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 20px 45px rgba(74, 29, 45, 0.18);
}

.button-primary span {
  font: italic 500 20px/1 var(--serif);
}

.button-primary i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font: normal 20px/1 var(--sans);
  transition: transform 0.35s var(--ease);
}

.button-primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 25px 55px rgba(74, 29, 45, 0.24);
  transform: translateY(-3px);
}

.button-primary:hover i {
  transform: rotate(-32deg);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.hero-proof p {
  display: grid;
  grid-template-columns: auto minmax(0, 140px);
  align-items: center;
  column-gap: 10px;
}

.hero-proof strong {
  color: var(--ink);
  font: italic 500 27px/1 var(--serif);
}

.hero-proof span {
  color: rgba(74, 29, 45, 0.62);
  font-size: 8px;
  line-height: 1.45;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-proof > i {
  width: 1px;
  height: 28px;
  background: rgba(74, 29, 45, 0.16);
}

.hero-enter {
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.8s ease 0.65s forwards;
}

.hero-actions { animation-delay: 0.82s; }
.hero-proof { animation-delay: 0.95s; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100vw - 1320px) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 44px;
  color: rgba(74, 29, 45, 0.62);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(74, 29, 45, 0.23);
  border-radius: 50%;
  font-style: normal;
  animation: cue 1.8s ease-in-out infinite;
}

.hero-side-note {
  position: absolute;
  z-index: 3;
  right: 22px;
  top: 50%;
  color: rgba(74, 29, 45, 0.42);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg);
}

.ticker {
  position: relative;
  z-index: 4;
  height: 78px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  height: 100%;
  padding-right: 52px;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font: italic 500 clamp(24px, 2.3vw, 35px) / 1 var(--serif);
}

.ticker i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(52px, 6vw, 86px);
}

.chapter {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.chapter b {
  color: var(--rose-dark);
  font: italic 500 27px/1 var(--serif);
  letter-spacing: 0;
}

.chapter i {
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.chapter-light,
.section-note-light {
  color: rgba(255, 250, 246, 0.65);
}

.chapter-light b {
  color: var(--blush);
}

.section-note {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-kicker {
  margin-bottom: 22px;
  color: var(--rose-dark);
}

.mini-kicker-light {
  color: var(--blush);
}

.section-title {
  color: var(--ink);
  font: 400 clamp(56px, 6.2vw, 94px) / 0.92 var(--serif);
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-title-light {
  color: var(--paper);
}

.section-title-light em {
  color: var(--blush);
}

.section-lead {
  max-width: 67ch;
  color: var(--text);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 300;
  line-height: 1.7;
}

.section-lead-light {
  color: rgba(255, 250, 246, 0.72);
}

.approach {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(239, 196, 186, 0.42), transparent 26%),
    linear-gradient(180deg, var(--paper-soft), #f2e0d8);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.82fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

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

.approach-copy .section-lead {
  margin-top: 28px;
}

.time-stat {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 42px;
}

.time-stat strong {
  color: var(--rose-dark);
  font: italic 500 clamp(65px, 6vw, 94px) / 0.82 var(--serif);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.time-stat span {
  padding-left: 22px;
  border-left: 1px solid rgba(159, 66, 88, 0.32);
  color: var(--text);
  font: italic 500 19px/1.15 var(--serif);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
  list-style: none;
}

.approach-steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 116px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.approach-steps li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 35%;
  height: 2px;
  background: var(--rose-dark);
  transition: width 0.7s var(--ease);
}

.approach-steps li:hover::before {
  width: 100%;
}

.approach-steps b {
  color: var(--rose-dark);
  font: italic 500 20px/1 var(--serif);
}

.approach-steps strong,
.approach-steps span {
  display: block;
}

.approach-steps strong {
  margin-bottom: 7px;
  color: var(--ink);
  font: 500 19px/1.05 var(--serif);
}

.approach-steps span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.approach-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(74, 29, 45, 0.1);
  border-radius: var(--radius-lg);
  background: #ead7cf;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.approach-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(43, 13, 25, 0.6));
  pointer-events: none;
}

.approach-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}

.approach-visual:hover img {
  transform: scale(1.075);
}

.approach-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--paper);
}

.approach-visual figcaption span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.approach-visual figcaption strong {
  font: italic 500 29px/1 var(--serif);
}

.visual-index {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 25px;
  color: rgba(255, 250, 246, 0.65);
  font: italic 400 82px/1 var(--serif);
}

.services {
  overflow: hidden;
  background: var(--paper);
}

.services::after {
  content: "УСЛУГИ";
  position: absolute;
  top: 180px;
  right: -60px;
  color: rgba(159, 66, 88, 0.045);
  font: italic 600 min(20vw, 300px) / 1 var(--serif);
  transform: rotate(-8deg);
  pointer-events: none;
}

.services .shell {
  position: relative;
  z-index: 2;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 8vw, 140px);
  align-items: end;
  margin-bottom: 68px;
}

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

.service-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(480px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.88), transparent 45%),
    linear-gradient(150deg, #fffdfb, #f3e4de);
  box-shadow: 0 22px 65px rgba(91, 58, 52, 0.09);
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease, border-color 0.45s ease;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  background:
    radial-gradient(480px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.8), transparent 45%),
    linear-gradient(150deg, #f9efea, #ecd6cf);
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(159, 66, 88, 0.25);
  box-shadow: 0 30px 78px rgba(91, 58, 52, 0.14);
  transform: translateY(-7px);
}

.service-head {
  display: grid;
  grid-template-columns: 46px 1fr 50px;
  gap: 17px;
  align-items: start;
  width: 100%;
  min-height: 126px;
  padding: 32px 32px 22px;
  border: 0;
  background: transparent;
  text-align: left;
}

.service-head:focus-visible {
  outline-offset: -6px;
}

.service-no {
  color: var(--rose-dark);
  font: italic 500 25px/1 var(--serif);
}

.service-heading strong,
.service-heading small {
  display: block;
}

.service-heading strong {
  color: var(--ink);
  font: 500 clamp(28px, 2.5vw, 39px) / 0.98 var(--serif);
}

.service-heading small {
  max-width: 430px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(159, 66, 88, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--rose-dark);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-toggle {
  display: none;
}

.price-list {
  padding: 0 32px 27px;
}

.price-list > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.price-list span {
  max-width: 68%;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.price-list small {
  display: block;
  margin-top: 4px;
  color: #6b4a41;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.price-list strong {
  color: var(--rose-dark);
  font: 500 20px/1.1 var(--serif);
  text-align: right;
  white-space: nowrap;
}

.bundle-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 70px;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  margin-top: 24px;
  padding: clamp(36px, 5vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.7), transparent 25%),
    linear-gradient(135deg, #fffaf6 0%, #f1ded7 58%, #e8c9c1 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.bundle-card::before,
.bundle-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -105px;
  top: -150px;
  width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(159, 66, 88, 0.14);
  border-radius: 50%;
}

.bundle-card::after {
  right: -32px;
  top: -77px;
  width: 185px;
}

.bundle-copy h3 {
  color: var(--ink);
  font: 500 clamp(38px, 4vw, 60px) / 0.96 var(--serif);
  letter-spacing: -0.035em;
}

.bundle-copy > p:last-child {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.bundle-price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  color: var(--rose-dark);
  white-space: nowrap;
}

.bundle-price span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bundle-price strong {
  font: italic 500 clamp(52px, 5vw, 74px) / 0.9 var(--serif);
  letter-spacing: -0.04em;
}

.bundle-price b {
  margin-left: 5px;
  font: 500 25px/1 var(--serif);
}

.round-link {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 25px;
  transition: background 0.3s ease, transform 0.4s var(--ease);
}

.round-link:hover {
  background: var(--rose-dark);
  transform: rotate(45deg) scale(1.06);
}

.services-conversion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 32px;
  padding: 26px 30px;
  border-block: 1px solid var(--line);
}

.services-conversion strong {
  display: block;
  color: var(--ink);
  font: italic 500 24px/1.1 var(--serif);
}

.services-conversion p {
  max-width: 690px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s var(--ease);
}

.text-link:hover {
  gap: 18px;
  color: var(--rose-dark);
}

.mood-break {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--paper);
  isolation: isolate;
}

.mood-break > img,
.mood-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mood-break > img {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 2s var(--ease);
}

.mood-break:hover > img {
  transform: scale(1.065);
}

.mood-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(43, 13, 25, 0.78), rgba(43, 13, 25, 0.12) 62%), linear-gradient(0deg, rgba(43, 13, 25, 0.32), transparent 45%);
}

.mood-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 78vh;
}

.mood-copy p {
  margin-bottom: 21px;
  color: var(--blush);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.mood-copy h2 {
  max-width: 830px;
  color: var(--paper);
  font: 400 clamp(58px, 7.2vw, 108px) / 0.9 var(--serif);
  letter-spacing: -0.045em;
}

.mood-copy em {
  color: var(--blush);
}

.mood-link {
  position: absolute;
  right: max(48px, calc((100vw - 1320px) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mood-link i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 246, 0.38);
  border-radius: 50%;
  font-style: normal;
}

.cases {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(201, 111, 120, 0.13), transparent 24%),
    linear-gradient(160deg, #38101f 0%, #230a14 100%);
  color: var(--paper);
}

.cases-intro,
.reviews-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.68fr);
  gap: clamp(36px, 8vw, 140px);
  align-items: end;
  margin-bottom: 68px;
}

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

.case-card {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 246, 0.12);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 26px 72px rgba(10, 2, 6, 0.22);
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
}

.case-card:nth-child(2) {
  transform: translateY(32px);
}

.case-card:hover {
  z-index: 2;
  box-shadow: 0 34px 88px rgba(10, 2, 6, 0.34);
  transform: translateY(-8px);
}

.case-card:nth-child(2):hover {
  transform: translateY(22px);
}

.case-visual {
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
  background: #ead8d0;
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: transform 0.8s var(--ease);
}

.case-card:hover .case-visual img {
  transform: scale(1.055);
}

.case-copy {
  position: relative;
  min-height: 390px;
  padding: 30px;
}

.case-no {
  display: block;
  margin-bottom: 30px;
  color: var(--rose-dark);
  font: italic 500 24px/1 var(--serif);
}

.case-copy h3 {
  min-height: 1.95em;
  color: var(--ink);
  font: 500 clamp(32px, 3vw, 44px) / 0.95 var(--serif);
  letter-spacing: -0.025em;
}

.case-copy > p:not(.case-result) {
  min-height: 3.2em;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.case-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
  list-style: none;
}

.case-copy li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-result {
  margin: 22px 0 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.case-result b {
  color: var(--ink);
  font-weight: 500;
}

.portfolio-link {
  display: grid;
  grid-template-columns: 1fr auto 52px;
  gap: 22px;
  align-items: center;
  min-height: 86px;
  margin-top: 70px;
  padding: 0 28px;
  border-block: 1px solid var(--line-light);
  color: var(--paper);
  transition: background 0.35s ease;
}

.portfolio-link:hover {
  background: rgba(255, 250, 246, 0.06);
}

.portfolio-link span {
  color: rgba(255, 250, 246, 0.6);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-link strong {
  font: italic 500 26px/1 var(--serif);
}

.portfolio-link i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-style: normal;
}

.reviews {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%, rgba(239, 196, 186, 0.16), transparent 26%),
    linear-gradient(150deg, #6d3346 0%, #491c2d 100%);
  color: var(--paper);
}

.review-carousel {
  position: relative;
}

.review-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px max(48px, calc((100vw - 1320px) / 2)) 30px;
  padding-right: calc(100vw - 360px);
  scroll-padding-inline: max(48px, calc((100vw - 1320px) / 2));
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(360px, 76vw);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 246, 0.22);
  border-radius: 27px;
  background: #f4e5df;
  box-shadow: 0 24px 65px rgba(31, 7, 17, 0.3);
  scroll-snap-align: start;
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}

.review-card:nth-child(3n + 2) {
  transform: translateY(16px);
}

.review-card:hover {
  box-shadow: 0 32px 78px rgba(31, 7, 17, 0.42);
  transform: translateY(-5px) rotate(-0.4deg);
}

.review-card:nth-child(3n + 2):hover {
  transform: translateY(10px) rotate(0.4deg);
}

.review-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
  background: #f4e5df;
}

.review-card figcaption {
  padding: 15px 18px 17px;
  color: var(--text);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}

.review-buttons {
  display: flex;
  gap: 10px;
}

.review-buttons button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 250, 246, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  font-size: 20px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease), opacity 0.3s ease;
}

.review-buttons button:hover:not(:disabled) {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.review-buttons button:disabled {
  cursor: default;
  opacity: 0.35;
}

.contact {
  overflow: hidden;
  padding-bottom: 36px;
  background:
    radial-gradient(circle at 8% 15%, rgba(239, 196, 186, 0.32), transparent 24%),
    linear-gradient(180deg, var(--paper-soft), #edd8d0);
}

.contact-glow {
  position: absolute;
  right: -15vw;
  bottom: -15vw;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(159, 66, 88, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 250, 246, 0.15), 0 0 0 100px rgba(255, 250, 246, 0.08);
}

.contact .shell {
  position: relative;
  z-index: 2;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.05fr);
  gap: clamp(50px, 9vw, 145px);
  padding: clamp(38px, 6vw, 82px);
  border: 1px solid rgba(74, 29, 45, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 246, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.about-copy {
  padding-right: clamp(0px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.about-copy h2 {
  color: var(--ink);
  font: 500 clamp(42px, 4.5vw, 68px) / 0.95 var(--serif);
  letter-spacing: -0.035em;
}

.about-copy > p:last-child,
.contact-lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.72;
}

.contact-title {
  color: var(--ink);
  font: 400 clamp(62px, 7vw, 104px) / 0.86 var(--serif);
  letter-spacing: -0.05em;
}

.contact-button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  width: min(100%, 390px);
  min-height: 155px;
  margin-top: 35px;
  padding: 26px 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, #eab9ae, #d99b91);
  box-shadow: 0 24px 65px rgba(91, 58, 52, 0.17);
  color: var(--ink);
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}

.contact-button span {
  font: italic 500 31px/0.95 var(--serif);
}

.contact-button i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 22px;
  font-style: normal;
  transition: transform 0.4s var(--ease);
}

.contact-button:hover {
  box-shadow: 0 30px 78px rgba(91, 58, 52, 0.23);
  transform: translateY(-6px);
}

.contact-button:hover i {
  transform: rotate(45deg);
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
  color: var(--muted);
  list-style: none;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-trust li {
  position: relative;
  padding-left: 15px;
}

.contact-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 90px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-footer i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
}

.mobile-project-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.78s ease, transform 0.78s var(--ease);
}

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

.js .approach-steps .reveal:nth-child(2),
.js .cases-grid .reveal:nth-child(2) { transition-delay: 0.08s; }

.js .approach-steps .reveal:nth-child(3),
.js .cases-grid .reveal:nth-child(3) { transition-delay: 0.16s; }

.services,
.cases,
.reviews,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: auto 1000px;
}

@keyframes title-in {
  to { transform: none; }
}

@keyframes rise-in {
  to { opacity: 1; transform: none; }
}

@keyframes hero-drift {
  from { transform: scale(1.012) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-0.8%, 0, 0); }
}

@keyframes cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 56px, 960px);
  }

  .site-header {
    padding-inline: 28px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero-title {
    max-width: 720px;
  }

  .approach-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    gap: 44px;
  }

  .approach-visual,
  .approach-visual img {
    min-height: 560px;
  }

  .services-intro,
  .cases-intro,
  .reviews-intro {
    gap: 55px;
  }

  .case-copy {
    padding: 25px;
  }

  .contact-card {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100% - 48px);
    --radius-lg: 34px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(255, 250, 246, 0.98) 0%, rgba(255, 250, 246, 0.9) 43%, rgba(255, 250, 246, 0.35) 68%, rgba(255, 250, 246, 0.05) 100%);
  }

  .hero-content {
    justify-content: flex-end;
  }

  .hero-side-note,
  .hero-orbit {
    display: none;
  }

  .approach-grid,
  .services-intro,
  .cases-intro,
  .reviews-intro,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .approach-visual,
  .approach-visual img {
    min-height: 520px;
  }

  .services-intro,
  .cases-intro,
  .reviews-intro {
    gap: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    display: flex;
    gap: 18px;
    width: auto;
    margin-inline: calc(var(--shell) * -0.025);
    padding: 6px 2.5% 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cases-grid::-webkit-scrollbar {
    display: none;
  }

  .case-card,
  .case-card:nth-child(2) {
    flex: 0 0 min(430px, 78vw);
    transform: none;
    scroll-snap-align: start;
  }

  .case-card:hover,
  .case-card:nth-child(2):hover {
    transform: none;
  }

  .case-copy {
    min-height: 365px;
  }

  .portfolio-link {
    margin-top: 30px;
  }

  .about-copy {
    padding: 0 0 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-copy {
    padding-top: 5px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 40px);
    --radius-sm: 15px;
    --radius-md: 23px;
    --radius-lg: 28px;
  }

  html {
    scroll-padding-top: 64px;
  }

  .section {
    padding: 86px 0;
  }

  .site-header,
  .site-header.scrolled {
    min-height: 66px;
    padding-inline: 20px;
  }

  .brand {
    font-size: 20px;
  }

  .header-contact {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    background: rgba(255, 250, 246, 0.62);
  }

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

  .header-contact svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    min-height: max(690px, 100svh);
  }

  .hero-video {
    object-position: 58% center;
    animation: none;
    transform: none;
  }

  .hero-content {
    min-height: max(690px, 100svh);
    padding: 102px 0 116px;
  }

  .eyebrow {
    gap: 11px;
    margin-bottom: 16px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .eyebrow::before {
    width: 27px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(43px, 12.4vw, 58px);
    line-height: 0.92;
    letter-spacing: -0.045em;
  }

  .hero-lead {
    margin-top: 17px;
    padding-left: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 16px;
    margin-top: 22px;
  }

  .button {
    min-height: 54px;
  }

  .button-primary {
    padding-left: 22px;
  }

  .button-primary span {
    font-size: 18px;
  }

  .button-primary i {
    width: 39px;
    height: 39px;
  }

  .hero-proof {
    gap: 14px;
    margin-top: 22px;
  }

  .hero-proof strong {
    font-size: 22px;
  }

  .hero-proof span {
    font-size: 7px;
  }

  .hero-proof p {
    grid-template-columns: auto minmax(0, 104px);
  }

  .scroll-cue {
    right: 20px;
    bottom: 18px;
  }

  .scroll-cue span {
    display: none;
  }

  .ticker {
    height: 62px;
  }

  .ticker-track {
    gap: 32px;
    padding-right: 32px;
  }

  .ticker span {
    font-size: 23px;
  }

  .section-top {
    margin-bottom: 44px;
  }

  .chapter {
    gap: 9px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .chapter b {
    font-size: 22px;
  }

  .chapter i {
    width: 24px;
  }

  .section-note {
    display: none;
  }

  .mini-kicker {
    margin-bottom: 16px;
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: 0.2em;
  }

  .section-title {
    font-size: clamp(48px, 14vw, 65px);
    line-height: 0.91;
  }

  .section-lead {
    font-size: 15px;
    line-height: 1.62;
  }

  .approach-copy .section-lead {
    margin-top: 20px;
  }

  .time-stat {
    gap: 13px;
    margin-top: 30px;
  }

  .time-stat strong {
    font-size: clamp(50px, 14vw, 64px);
  }

  .time-stat span {
    padding-left: 13px;
    font-size: 15px;
  }

  .approach-steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 36px;
  }

  .approach-steps li {
    min-height: 82px;
    padding-top: 16px;
  }

  .approach-visual,
  .approach-visual img {
    min-height: 440px;
  }

  .approach-visual {
    margin-top: 2px;
  }

  .approach-visual img {
    object-position: 62% center;
  }

  .approach-visual figcaption {
    left: 22px;
    bottom: 22px;
  }

  .visual-index {
    right: 18px;
    font-size: 62px;
  }

  .services::after {
    display: none;
  }

  .services-intro,
  .cases-intro,
  .reviews-intro {
    margin-bottom: 42px;
  }

  .services-grid {
    gap: 13px;
  }

  .service-card:hover {
    transform: none;
  }

  .service-head {
    grid-template-columns: 35px 1fr 42px;
    gap: 11px;
    align-items: center;
    min-height: 108px;
    padding: 23px 20px;
  }

  .service-no {
    font-size: 20px;
  }

  .service-heading strong {
    font-size: 27px;
  }

  .service-heading small {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    transition: transform 0.35s var(--ease);
  }

  .service-toggle {
    position: absolute;
    right: 23px;
    bottom: 14px;
    display: block;
    width: 14px;
    height: 14px;
  }

  .service-toggle::before,
  .service-toggle::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 1px;
    width: 12px;
    height: 1px;
    background: var(--rose-dark);
    transition: transform 0.3s var(--ease);
  }

  .service-toggle::after {
    transform: rotate(90deg);
  }

  .service-head[aria-expanded="true"] .service-toggle::after {
    transform: rotate(0);
  }

  .service-head[aria-expanded="true"] .service-icon {
    transform: rotate(-7deg) scale(1.05);
  }

  .price-list {
    padding: 0 20px 20px;
  }

  .js .service-head[aria-expanded="false"] + .price-list {
    display: none;
  }

  .price-list > div {
    gap: 13px;
    padding: 13px 0;
  }

  .price-list span {
    max-width: 61%;
    font-size: 13px;
  }

  .price-list small {
    font-size: 11px;
    color: #6b4a41;
  }

  .price-list strong {
    max-width: 40%;
    font-size: 18px;
    white-space: normal;
  }

  .bundle-card {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 14px;
    padding: 29px 23px;
  }

  .bundle-copy h3 {
    font-size: 39px;
  }

  .bundle-copy > p:last-child {
    font-size: 14px;
  }

  .bundle-price strong {
    font-size: 57px;
  }

  .round-link {
    position: absolute;
    right: 22px;
    bottom: 26px;
    width: 52px;
    height: 52px;
  }

  .services-conversion {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 20px;
    padding: 24px 2px;
  }

  .services-conversion strong {
    font-size: 22px;
  }

  .mood-break,
  .mood-copy {
    min-height: 72svh;
  }

  .mood-shade {
    background: linear-gradient(0deg, rgba(43, 13, 25, 0.82), rgba(43, 13, 25, 0.12) 72%);
  }

  .mood-copy {
    justify-content: flex-end;
    padding-bottom: 105px;
  }

  .mood-copy h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .mood-link {
    right: 20px;
    bottom: 23px;
  }

  .mood-link span {
    display: none;
  }

  .cases-grid {
    margin-inline: -20px;
    padding: 6px 20px 24px;
    scroll-padding-inline: 20px;
  }

  .case-card,
  .case-card:nth-child(2) {
    flex-basis: 84vw;
  }

  .case-copy {
    min-height: 350px;
    padding: 24px 22px;
  }

  .case-no {
    margin-bottom: 22px;
  }

  .case-copy h3 {
    min-height: auto;
    font-size: 37px;
  }

  .case-copy > p:not(.case-result) {
    min-height: auto;
  }

  .portfolio-link {
    grid-template-columns: 1fr 46px;
    padding: 0 10px;
  }

  .portfolio-link span {
    display: none;
  }

  .portfolio-link strong {
    font-size: 24px;
  }

  .review-track {
    gap: 13px;
    padding: 4px 20px 22px;
    scroll-padding-inline: 20px;
  }

  .review-card {
    flex-basis: 86vw;
    border-radius: 22px;
  }

  .review-card,
  .review-card:nth-child(3n + 2),
  .review-card:hover,
  .review-card:nth-child(3n + 2):hover {
    transform: none;
  }

  .review-card figcaption {
    padding: 13px 15px 15px;
    font-size: 9px;
  }

  .review-controls {
    margin-top: 12px;
  }

  .review-buttons button {
    width: 48px;
    height: 48px;
  }

  .contact {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .contact-card {
    gap: 40px;
    padding: 30px 22px;
  }

  .about-copy {
    padding-bottom: 36px;
  }

  .about-copy h2 {
    font-size: 47px;
  }

  .about-copy > p:last-child,
  .contact-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .contact-title {
    font-size: clamp(57px, 17vw, 75px);
  }

  .contact-button {
    min-height: 140px;
    padding: 23px;
  }

  .contact-trust {
    flex-direction: column;
    gap: 10px;
  }

  .site-footer {
    min-height: 80px;
    gap: 10px;
    font-size: 8px;
  }

  .mobile-project-cta {
    position: fixed;
    z-index: 450;
    left: 14px;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 7px 8px 7px 22px;
    border: 1px solid rgba(255, 250, 246, 0.15);
    border-radius: 999px;
    background: rgba(43, 13, 25, 0.93);
    box-shadow: 0 18px 45px rgba(43, 13, 25, 0.28);
    color: var(--paper);
    font: italic 500 18px/1 var(--serif);
    backdrop-filter: blur(15px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
    transition: opacity 0.35s ease, transform 0.35s var(--ease);
  }

  .mobile-project-cta.visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-project-cta i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    font: normal 18px/1 var(--sans);
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header,
  .site-header.scrolled {
    padding-inline: 16px;
  }

  .hero-content {
    padding-inline: 0;
  }

  .hero-title {
    font-size: clamp(45px, 14.1vw, 55px);
  }

  .hero-actions {
    gap: 11px;
  }

  .button-primary {
    padding-left: 18px;
  }

  .button-primary span {
    font-size: 17px;
  }

  .hero-proof span {
    letter-spacing: 0.1em;
  }

  .section-title {
    font-size: clamp(44px, 13vw, 52px);
  }

  .time-stat strong {
    font-size: 48px;
  }

  .time-stat span {
    font-size: 14px;
  }

  .service-head {
    grid-template-columns: 31px 1fr 38px;
    padding-inline: 16px;
  }

  .service-heading strong {
    font-size: 25px;
  }

  .service-heading small {
    font-size: 11px;
  }

  .service-icon {
    width: 36px;
    height: 36px;
  }

  .service-toggle {
    right: 18px;
  }

  .price-list {
    padding-inline: 16px;
  }

  .round-link {
    width: 48px;
    height: 48px;
  }

  .case-card,
  .case-card:nth-child(2),
  .review-card {
    flex-basis: 88vw;
  }
}

@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero-content {
    padding: 82px 0 70px;
  }

  .hero-title {
    max-width: 620px;
    font-size: 56px;
  }

  .hero-video {
    object-position: 65% 35%;
  }

  .hero-lead {
    max-width: 520px;
    margin-top: 13px;
    font-size: 13px;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-proof {
    display: none;
  }

  .mood-break,
  .mood-copy {
    min-height: 540px;
  }
}

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

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

  .hero-video {
    display: none;
  }

  .hero {
    background: #f0ddd4 url("hero_poster.jpg") 60% center / cover no-repeat;
  }

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

/* ========================================================================== */
/* SURREAL GLASS / SCROLL LAB — second design pass                            */
/* ========================================================================== */

.site-header {
  transition:
    min-height 0.35s var(--ease),
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    transform 0.38s var(--ease);
  will-change: transform;
}

.site-header.header-hidden {
  transform: translate3d(0, -112%, 0);
}

.hero-content::before {
  width: min(750px, 62vw);
}

.button-primary,
.lab-cta,
.contact-button {
  position: relative;
  isolation: isolate;
}

.button-primary::after,
.lab-cta::after,
.contact-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 12%;
  right: 12%;
  bottom: -13px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(133, 211, 255, 0.42), rgba(218, 152, 255, 0.5), rgba(255, 167, 212, 0.42));
  filter: blur(15px);
  opacity: 0.72;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.button-primary:hover::after,
.lab-cta:hover::after,
.contact-button:hover::after {
  opacity: 1;
  transform: scaleX(1.08);
}

.glass-lab {
  position: relative;
  height: 190svh;
  min-height: 1280px;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 18%, rgba(167, 216, 255, 0.3), transparent 27rem),
    radial-gradient(circle at 84% 26%, rgba(255, 179, 220, 0.3), transparent 28rem),
    radial-gradient(circle at 62% 92%, rgba(189, 171, 255, 0.36), transparent 30rem),
    linear-gradient(160deg, #f3f5f8 0%, #e9e9f0 52%, #f4f1f6 100%);
  color: var(--ink);
  isolation: isolate;
}

.glass-lab::before,
.glass-lab::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(46vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 48% 52% 62% 38% / 40% 48% 52% 60%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.85), transparent 18%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(171, 206, 255, 0.14) 42%, rgba(229, 170, 255, 0.15));
  box-shadow: inset -35px -38px 70px rgba(110, 91, 175, 0.09), 0 40px 100px rgba(71, 58, 111, 0.08);
  pointer-events: none;
}

.glass-lab::before {
  left: -18vw;
  top: 13%;
  transform: rotate(-22deg);
}

.glass-lab::after {
  right: -20vw;
  bottom: 4%;
  transform: rotate(34deg);
}

.glass-lab-sticky {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 104px 0 70px;
}

.glass-lab-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(54px, 7vw, 120px);
  align-items: center;
}

.glass-lab-copy {
  position: relative;
  z-index: 4;
  max-width: 580px;
}

.glass-lab-copy .chapter {
  margin-bottom: 62px;
}

.glass-lab-copy h2 {
  color: var(--ink);
  font: 400 clamp(58px, 5.7vw, 88px) / 0.93 var(--sans);
  letter-spacing: -0.067em;
  text-wrap: balance;
}

.glass-lab-copy h2 em {
  color: var(--rose-dark);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

.glass-lab-copy > p:not(.chapter, .mini-kicker) {
  max-width: 54ch;
  margin-top: 28px;
  color: rgba(47, 42, 57, 0.68);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.68;
}

.lab-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-width: 260px;
  min-height: 64px;
  margin-top: 34px;
  padding: 8px 9px 8px 27px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.2)),
    linear-gradient(90deg, rgba(154, 226, 255, 0.68), rgba(211, 178, 255, 0.66));
  box-shadow:
    0 19px 36px rgba(77, 82, 128, 0.21),
    0 5px 0 rgba(150, 139, 205, 0.18),
    inset 0 2px 2px rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(101, 86, 167, 0.16);
  color: #282333;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.lab-cta i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 19px;
  font-style: normal;
}

.lab-cta:hover {
  box-shadow:
    0 25px 50px rgba(79, 76, 143, 0.26),
    0 5px 0 rgba(150, 139, 205, 0.16),
    inset 0 2px 2px #fff;
  transform: translateY(-4px);
}

.lab-scroll-status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  max-width: 420px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lab-scroll-status > i {
  position: relative;
  overflow: hidden;
  height: 2px;
  border-radius: 99px;
  background: rgba(77, 67, 103, 0.12);
}

.lab-scroll-status > i b {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #8bd8ff, #a888f0 56%, #f1a6d2);
  box-shadow: 0 0 12px rgba(124, 100, 221, 0.4);
  transform: scaleX(var(--lab-progress, 0));
  transform-origin: left center;
}

.lab-scroll-status strong {
  color: var(--ink);
  font: italic 500 16px/1 var(--serif);
  letter-spacing: 0;
}

.glass-lab-stage {
  position: relative;
  min-height: 660px;
  perspective: 1200px;
  isolation: isolate;
}

.glass-lab-stage::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 4%;
  right: 1%;
  top: 7%;
  bottom: 6%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 54px;
  background:
    radial-gradient(circle at 76% 17%, rgba(242, 174, 218, 0.22), transparent 31%),
    radial-gradient(circle at 19% 78%, rgba(145, 218, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.11));
  box-shadow: 0 38px 100px rgba(53, 48, 77, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px) saturate(1.25);
}

.lab-halo {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.58;
}

.lab-halo-a {
  top: 7%;
  right: 2%;
  width: 260px;
  height: 220px;
  background: rgba(238, 159, 215, 0.38);
}

.lab-halo-b {
  left: 3%;
  bottom: 5%;
  width: 290px;
  height: 240px;
  background: rgba(120, 209, 255, 0.35);
}

.lab-widget {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.57), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, rgba(195, 223, 255, 0.22), rgba(245, 183, 224, 0.2));
  box-shadow:
    0 24px 48px rgba(54, 49, 82, 0.2),
    0 7px 0 rgba(118, 105, 169, 0.09),
    inset 0 2px 2px rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(95, 80, 154, 0.12);
  color: #373140;
  backdrop-filter: blur(22px) saturate(1.32);
  will-change: transform, opacity;
}

.lab-widget::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 13%;
  right: 13%;
  bottom: -14px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(116, 213, 255, 0.45), rgba(222, 149, 255, 0.48), rgba(255, 151, 207, 0.38));
  filter: blur(15px);
}

.lab-widget-start {
  top: 10%;
  left: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 290px;
  min-height: 78px;
  padding: 11px 12px 11px 25px;
  border-radius: 23px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22)),
    linear-gradient(90deg, rgba(143, 221, 255, 0.72), rgba(209, 176, 255, 0.6));
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lab-widget-start i {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.38);
  font-size: 22px;
  font-style: normal;
}

.lab-widget-search {
  top: 17%;
  right: 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 285px;
  min-height: 67px;
  padding: 0 20px;
  border-radius: 19px;
  font-size: 13px;
  font-weight: 300;
}

.lab-widget-search > i {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: 0.62;
}

.lab-widget-search > i::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 8px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(46deg);
}

.lab-widget-select {
  top: 34%;
  left: 14%;
  width: 285px;
  padding: 17px;
  border-radius: 24px;
}

.lab-widget-select p {
  display: flex;
  justify-content: space-between;
  padding: 3px 5px 14px;
  font-size: 13px;
}

.lab-widget-select p i {
  font-size: 18px;
  font-style: normal;
}

.lab-widget-select ul {
  display: grid;
  gap: 7px;
  list-style: none;
}

.lab-widget-select li {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 11px;
  background: linear-gradient(90deg, rgba(188, 171, 255, 0.55), rgba(205, 228, 255, 0.52));
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lab-widget-select li:nth-child(2) {
  background: linear-gradient(90deg, rgba(246, 177, 217, 0.55), rgba(231, 191, 245, 0.5));
}

.lab-widget-select li:nth-child(3) {
  background: linear-gradient(90deg, rgba(255, 210, 171, 0.55), rgba(184, 235, 218, 0.5));
}

.lab-widget-toggle {
  top: 48%;
  right: 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 210px;
  min-height: 65px;
  padding: 0 16px 0 20px;
  border-radius: 19px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lab-widget-toggle > i {
  position: relative;
  width: 55px;
  height: 29px;
  border-radius: 99px;
  background: linear-gradient(90deg, #9f8bef, #d6c9ff);
  box-shadow: inset 0 2px 5px rgba(71, 55, 124, 0.17), 0 0 17px rgba(137, 111, 226, 0.24);
}

.lab-widget-toggle > i b {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 21px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 8px rgba(49, 38, 83, 0.2);
}

.lab-widget-toast {
  right: 1%;
  bottom: 20%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 225px;
  min-height: 66px;
  padding: 0 21px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.2)),
    linear-gradient(90deg, rgba(163, 239, 205, 0.62), rgba(192, 238, 217, 0.42));
  font-size: 13px;
  font-weight: 400;
}

.lab-widget-toast > i {
  position: relative;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(57, 115, 83, 0.3);
  border-radius: 7px;
  color: transparent;
}

.lab-widget-toast > i::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid #3f7858;
  border-bottom: 1.5px solid #3f7858;
  transform: rotate(-45deg);
}

.lab-widget-card {
  left: 8%;
  bottom: 5%;
  width: 330px;
  padding: 15px;
  border-radius: 28px;
}

.lab-card-visual {
  position: relative;
  overflow: hidden;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 19px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 190, 224, 0.72), transparent 32%),
    radial-gradient(circle at 24% 76%, rgba(139, 219, 255, 0.68), transparent 38%),
    linear-gradient(135deg, #e1dcf2, #f2e9f0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.lab-card-visual i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

.lab-card-visual i:nth-child(1) {
  left: 37%;
  top: 18%;
  width: 80px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #fff, rgba(166, 143, 245, 0.58) 45%, rgba(247, 168, 219, 0.35));
  box-shadow: 0 16px 28px rgba(75, 55, 134, 0.18);
}

.lab-card-visual i:nth-child(2) {
  left: 12%;
  bottom: 14%;
  width: 42px;
  aspect-ratio: 1;
  background: rgba(255, 211, 170, 0.64);
}

.lab-card-visual i:nth-child(3) {
  right: 11%;
  top: 13%;
  width: 32px;
  aspect-ratio: 1;
  background: rgba(146, 223, 255, 0.64);
}

.lab-widget-card > p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 6px 3px;
}

.lab-widget-card strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.lab-widget-card span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-track {
  padding-right: max(48px, calc((100vw - 1320px) / 2));
  scroll-snap-type: x proximity;
}

@media (min-width: 901px) {
  .case-card {
    position: relative;
    min-height: clamp(650px, 52vw, 740px);
    border-radius: 36px;
    isolation: isolate;
  }

  .case-card:nth-child(2) {
    transform: translateY(38px);
  }

  .case-visual {
    position: absolute;
    z-index: 0;
    inset: 10px;
    aspect-ratio: auto;
    margin: 0;
  }

  .case-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 47%, rgba(27, 21, 37, 0.24));
    pointer-events: none;
  }

  .case-copy {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 22px;
    overflow: hidden;
    min-height: 0;
    max-height: 164px;
    padding: 23px 24px 25px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.63);
    box-shadow: 0 18px 45px rgba(40, 31, 57, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(1.25);
    transition: max-height 0.52s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
  }

  .case-card:hover .case-copy,
  .case-card:focus-within .case-copy {
    max-height: 620px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 25px 62px rgba(40, 31, 57, 0.22), inset 0 1px 0 #fff;
  }

  .case-no {
    position: absolute;
    top: 26px;
    right: 26px;
    margin: 0;
    font-size: 19px;
  }

  .case-copy h3 {
    min-height: 0;
    padding-right: 58px;
    font-size: clamp(31px, 2.5vw, 40px);
  }

  .case-copy > p:not(.case-result) {
    min-height: 0;
    margin-top: 10px;
  }

  .case-copy ul,
  .case-result,
  .case-facts,
  .case-link,
  .case-copy .text-link {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease 0.08s, transform 0.35s var(--ease) 0.06s;
  }

  .case-card:hover .case-copy ul,
  .case-card:hover .case-result,
  .case-card:hover .case-facts,
  .case-card:hover .case-link,
  .case-card:hover .case-copy .text-link,
  .case-card:focus-within .case-copy ul,
  .case-card:focus-within .case-result,
  .case-card:focus-within .case-facts,
  .case-card:focus-within .case-link,
  .case-card:focus-within .case-copy .text-link {
    opacity: 1;
    transform: none;
  }
}

/* ========================================================================== */
/* Mobile reliability pass — one final source of truth for navigation, media  */
/* and horizontal carousels.                                                   */
/* ========================================================================== */

.menu-toggle,
.mobile-nav,
.case-carousel-controls {
  display: none;
}

.approach-brief {
  min-height: 620px;
  background:
    radial-gradient(circle at 82% 16%, rgba(248, 190, 222, 0.68), transparent 31%),
    radial-gradient(circle at 17% 72%, rgba(159, 220, 255, 0.72), transparent 36%),
    linear-gradient(155deg, #f8f8fd, #e8e4f5 57%, #f5edf6);
}

.approach-brief::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(238, 235, 247, 0.3) 72%, rgba(216, 210, 231, 0.86));
}

.brief-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  padding: 0;
}

.brief-orbit {
  position: absolute;
  top: 35px;
  right: 20px;
  display: grid;
  place-content: center;
  width: 205px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.94), rgba(205, 192, 249, 0.34) 45%, rgba(255, 188, 222, 0.18) 70%, transparent 71%);
  box-shadow: inset 0 1px 0 #fff, 0 25px 70px rgba(89, 69, 151, 0.14);
  color: #5f51af;
  text-align: center;
}

.brief-orbit::before,
.brief-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(132, 108, 221, 0.2);
  border-radius: 50%;
}

.brief-orbit::before {
  inset: 14px;
}

.brief-orbit::after {
  inset: 38px;
  border-color: rgba(239, 164, 208, 0.25);
}

.brief-orbit > i {
  position: absolute;
  top: 25px;
  left: 47px;
  width: 15px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: linear-gradient(145deg, #8fd6fb, #b39af5 54%, #f0abd4);
  box-shadow: 0 0 22px rgba(135, 105, 229, 0.4);
}

.brief-orbit span,
.brief-orbit small {
  position: relative;
  z-index: 1;
  display: block;
}

.brief-orbit span {
  font: italic 500 50px/0.9 var(--serif);
  letter-spacing: -0.05em;
}

.brief-orbit small {
  margin-top: 8px;
  color: rgba(65, 57, 79, 0.58);
  font: 500 8px/1 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brief-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  top: 140px;
  right: 48px;
  bottom: 108px;
  left: 40px;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(242, 239, 250, 0.52));
  box-shadow: inset 0 1px 0 #fff, 0 30px 80px rgba(69, 52, 122, 0.17);
  backdrop-filter: blur(22px) saturate(1.18);
}

.brief-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(82, 68, 116, 0.1);
  color: rgba(53, 47, 66, 0.65);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-card-head span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brief-card-head span i {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #8fd5fb, #aa8bea 55%, #eea7cf);
  box-shadow: 0 0 0 5px rgba(171, 143, 235, 0.1);
}

.brief-card-head b {
  font-weight: 400;
}

.brief-card ol {
  display: grid;
  gap: 10px;
  margin-top: 17px;
  list-style: none;
}

.brief-card li {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 67px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(221, 237, 255, 0.56), rgba(250, 220, 237, 0.46));
}

.brief-card li > i,
.brief-card > p > i {
  display: grid;
  place-items: center;
  width: 35px;
  aspect-ratio: 1;
  border: 1px solid rgba(97, 75, 173, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  color: #7761cc;
  font-style: normal;
}

.brief-card li span,
.brief-card > p span {
  display: grid;
  gap: 4px;
}

.brief-card li b,
.brief-card > p b {
  color: #3d3749;
  font-size: 12px;
  font-weight: 500;
}

.brief-card li small,
.brief-card > p small {
  color: rgba(61, 55, 73, 0.55);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-card > p {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 62px;
  margin-top: 12px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(188, 240, 217, 0.54), rgba(212, 232, 255, 0.5));
}

.brief-card > p > i {
  color: #4b8164;
}

.approach-brief figcaption {
  right: 32px;
  bottom: 27px;
  color: #40394d;
}

.approach-brief .visual-index {
  color: rgba(91, 72, 165, 0.3);
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header,
  .site-header.scrolled {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    gap: 8px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(79, 66, 106, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(1.18);
  }

  .menu-toggle span {
    position: absolute;
    width: 17px;
    height: 1.5px;
    border-radius: 99px;
    background: #332d3e;
    transition: transform 0.24s ease, top 0.24s ease;
  }

  .menu-toggle span:first-child {
    top: 17px;
  }

  .menu-toggle span:last-child {
    top: 24px;
  }

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

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

  .site-header.menu-open {
    background: rgba(247, 246, 251, 0.92);
    backdrop-filter: blur(22px) saturate(1.18);
  }

  .mobile-nav:not([hidden]) {
    position: fixed;
    z-index: 100;
    top: 74px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    background:
      radial-gradient(circle at 10% 5%, rgba(169, 222, 255, 0.36), transparent 36%),
      radial-gradient(circle at 90% 95%, rgba(245, 182, 218, 0.32), transparent 38%),
      rgba(246, 244, 251, 0.94);
    box-shadow: 0 28px 70px rgba(45, 35, 72, 0.2), inset 0 1px 0 #fff;
    backdrop-filter: blur(24px) saturate(1.22);
  }

  .mobile-nav a {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    min-height: 58px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.42);
    color: #302a3b;
    font: 500 22px/1 var(--serif);
  }

  .mobile-nav a span {
    color: #7662cd;
    font: italic 500 13px/1 var(--serif);
  }

  .mobile-nav .mobile-nav-telegram {
    margin-top: 4px;
    background: linear-gradient(90deg, rgba(174, 220, 250, 0.72), rgba(207, 187, 250, 0.7), rgba(244, 185, 218, 0.68));
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .case-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 12px;
  }

  .case-carousel-controls > p {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .case-carousel-controls > p i {
    font: normal 20px/1 var(--sans);
    animation: case-hint 1.5s ease-in-out infinite;
  }

  .case-carousel-controls > div {
    display: flex;
    gap: 9px;
  }

  .case-carousel-controls button {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 20px;
    transition: opacity 0.2s ease, background 0.2s ease;
  }

  .case-carousel-controls button:disabled {
    opacity: 0.3;
  }
}

@media (max-width: 760px) {
  .hero,
  .hero-content {
    min-height: max(790px, 100svh);
  }

  .hero {
    background-position: 82% center;
  }

  .hero-video {
    display: block;
    object-fit: cover;
    object-position: 82% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(246, 244, 249, 0.02) 0%, rgba(246, 244, 249, 0.04) 35%, rgba(246, 244, 249, 0.72) 48%, rgba(246, 244, 249, 0.98) 63%, #f6f4f9 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(219, 205, 240, 0.05));
  }

  .hero-content {
    display: block;
    padding: clamp(365px, 47svh, 430px) 0 88px;
  }

  .hero-content::before {
    top: clamp(350px, 45svh, 415px);
    bottom: 20px;
    left: -10px;
    right: -10px;
    width: auto;
    height: auto;
    border-radius: 30px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.64), rgba(238, 234, 247, 0.62));
    backdrop-filter: blur(12px) saturate(1.12);
  }

  .hero-content > * {
    position: relative;
    z-index: 1;
  }

  .hero-title,
  .hero-lead,
  .section-title,
  .section-lead,
  .case-copy,
  .review-card figcaption {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-title {
    font-size: clamp(42px, 12.6vw, 51px);
    line-height: 0.92;
  }

  .hero-lead {
    font-size: 13px;
    line-height: 1.52;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .approach-brief,
  .approach-visual {
    width: 100%;
    min-height: 520px;
  }

  .brief-visual {
    padding: 0;
  }

  .brief-orbit {
    top: 25px;
    right: 8px;
    width: 142px;
  }

  .brief-orbit span {
    font-size: 36px;
  }

  .brief-orbit > i {
    top: 17px;
    left: 31px;
    width: 12px;
  }

  .brief-card {
    top: 112px;
    right: 28px;
    bottom: 100px;
    left: 16px;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 14px;
    border-radius: 24px;
  }

  .brief-card-head {
    padding-bottom: 10px;
    font-size: 7px;
  }

  .brief-card ol {
    gap: 6px;
    margin-top: 10px;
  }

  .brief-card li {
    grid-template-columns: 34px 1fr;
    min-height: 48px;
    padding: 6px 9px;
    border-radius: 15px;
  }

  .brief-card li > i,
  .brief-card > p > i {
    width: 31px;
    border-radius: 10px;
  }

  .brief-card > p {
    grid-template-columns: 34px 1fr;
    min-height: 46px;
    margin-top: 8px;
    padding: 6px 9px;
    border-radius: 15px;
  }

  .approach-brief figcaption {
    left: 20px;
    right: 20px;
    bottom: 22px;
    max-width: calc(100% - 40px);
  }

  .approach-brief figcaption strong {
    font-size: 25px;
  }

  .approach-brief .visual-index {
    top: 14px;
    right: 18px;
    font-size: 52px;
  }

  .cases-grid {
    align-items: stretch;
    margin-inline: -20px;
    padding: 8px 20px 24px;
    scroll-padding-inline: 20px;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y;
  }

  .case-card,
  .case-card:nth-child(2) {
    flex: 0 0 calc(100vw - 58px);
    max-width: 430px;
    height: auto;
  }

  .case-visual {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    margin: 8px;
    aspect-ratio: 1122 / 1402;
    background:
      radial-gradient(circle at 18% 12%, rgba(205, 191, 255, 0.28), transparent 38%),
      radial-gradient(circle at 86% 82%, rgba(255, 202, 226, 0.24), transparent 42%),
      linear-gradient(155deg, #f4f3fa, #e9e7f2);
  }

  .case-visual img,
  .case-card:hover .case-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .case-copy {
    position: relative;
    inset: auto;
    min-height: 292px;
    max-height: none;
    padding: 23px 22px 25px;
  }

  .case-copy ul,
  .case-result {
    opacity: 1;
    transform: none;
  }

  .case-copy h3 {
    font-size: 35px;
  }

  .review-card {
    flex-basis: calc(100vw - 58px);
  }

  .review-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 390px) {
  .cases-grid {
    margin-inline: -16px;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }

  .case-card,
  .case-card:nth-child(2),
  .review-card {
    flex-basis: calc(100vw - 48px);
  }

  .hero-content {
    padding-top: clamp(340px, 46svh, 390px);
  }

  .hero-content::before {
    top: clamp(327px, 44svh, 377px);
  }
}

@keyframes case-hint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@media (prefers-reduced-motion: reduce) {
  .case-carousel-controls > p i {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .glass-lab-grid {
    grid-template-columns: minmax(310px, 0.72fr) minmax(500px, 1.28fr);
    gap: 36px;
  }

  .glass-lab-stage {
    transform: scale(0.88);
    transform-origin: center;
  }
}

@media (max-width: 900px) {
  .hero-content::before {
    width: auto;
  }

  .glass-lab {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .glass-lab-sticky {
    position: relative;
    min-height: auto;
    padding: 100px 0 86px;
  }

  .glass-lab-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .glass-lab-copy {
    max-width: 680px;
  }

  .glass-lab-copy .chapter {
    margin-bottom: 46px;
  }

  .glass-lab-stage {
    min-height: 620px;
    transform: none;
  }

  .lab-widget {
    opacity: 1 !important;
    transform: none !important;
  }

  .lab-scroll-status > i b {
    transform: scaleX(1);
  }

  .review-track {
    padding-right: 24px;
    scroll-snap-type: x mandatory;
  }
}

@media (max-width: 760px) {
  .glass-lab-sticky {
    padding: 86px 0 72px;
  }

  .glass-lab-copy h2 {
    font-size: clamp(46px, 13vw, 61px);
  }

  .glass-lab-copy > p:not(.chapter, .mini-kicker) {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  .lab-cta {
    width: min(100%, 300px);
    min-height: 60px;
    margin-top: 28px;
  }

  .lab-scroll-status {
    margin-top: 36px;
  }

  .glass-lab-stage {
    min-height: 520px;
    margin-inline: -8px;
  }

  .glass-lab-stage::before {
    inset: 2% 0 3%;
    border-radius: 34px;
    backdrop-filter: blur(10px);
  }

  .lab-widget {
    backdrop-filter: blur(13px) saturate(1.18);
  }

  .lab-widget-start {
    top: 6%;
    left: 2%;
    width: 226px;
    min-height: 62px;
    padding-left: 18px;
    border-radius: 19px;
    font-size: 10px;
  }

  .lab-widget-start i {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .lab-widget-search {
    top: 21%;
    right: 1%;
    width: 226px;
    min-height: 58px;
    font-size: 11px;
  }

  .lab-widget-select {
    top: 34%;
    left: 2%;
    width: 230px;
    padding: 13px;
  }

  .lab-widget-select li {
    padding: 8px 10px;
    font-size: 9px;
  }

  .lab-widget-toggle {
    top: 50%;
    right: 1%;
    width: 176px;
    min-height: 55px;
    font-size: 9px;
  }

  .lab-widget-toast {
    right: 3%;
    bottom: 18%;
    min-width: 185px;
    min-height: 55px;
    font-size: 11px;
  }

  .lab-widget-card {
    left: 1%;
    bottom: 3%;
    width: 238px;
    padding: 11px;
  }

  .lab-card-visual {
    height: 92px;
  }

  .lab-card-visual i:nth-child(1) {
    width: 58px;
  }

  .lab-widget-card > p {
    padding-top: 11px;
  }

  .lab-widget-card strong {
    font-size: 11px;
  }

  .lab-widget-card span {
    font-size: 6px;
  }

  .review-track {
    padding-right: 20px;
  }
}

@media (max-width: 390px) {
  .glass-lab-stage {
    min-height: 500px;
  }

  .lab-widget-start,
  .lab-widget-search {
    width: 210px;
  }

  .lab-widget-select {
    width: 216px;
  }

  .lab-widget-toggle {
    width: 164px;
  }

  .lab-widget-card {
    width: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.header-hidden {
    transform: none;
  }

  .glass-lab {
    height: auto;
    min-height: 0;
  }

  .glass-lab-sticky {
    position: relative;
  }

  .lab-widget {
    opacity: 1 !important;
    transform: none !important;
  }

  .lab-scroll-status > i b {
    transform: scaleX(1);
  }
}

/* ========================================================================== */
/* AI ERA / LIQUID GLASS — 2026 redesign                                     */
/* ========================================================================== */

:root {
  --ink: #1d1926;
  --ink-deep: #111019;
  --wine: #6653d9;
  --rose: #9a86f0;
  --rose-dark: #6d58cf;
  --blush: #f3b8ca;
  --paper: #fbfaff;
  --paper-soft: #f3f1f8;
  --paper-deep: #e9e5f2;
  --text: #464150;
  --muted: #706a7d;
  --line: rgba(50, 41, 73, 0.13);
  --line-light: rgba(255, 255, 255, 0.52);
  --lavender: #c4b8ff;
  --sky: #9edbff;
  --peach: #ffd0aa;
  --pink: #f4b7dc;
  --glass: rgba(255, 255, 255, 0.54);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 30px 90px rgba(59, 48, 91, 0.14);
  --shadow-glass: 0 22px 70px rgba(72, 60, 111, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

html {
  background: var(--paper-soft);
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(196, 184, 255, 0.34), transparent 26rem),
    radial-gradient(circle at 92% 38%, rgba(255, 208, 170, 0.2), transparent 28rem),
    var(--paper-soft);
  color: var(--text);
}

:focus-visible {
  outline-color: #6954d7;
}

::selection {
  background: #7560de;
  color: #fff;
}

.page-progress i {
  background: linear-gradient(90deg, #806af1, #e6a7df 52%, #83d5ff);
  box-shadow: 0 0 18px rgba(128, 106, 241, 0.52);
}

.site-header {
  color: var(--ink);
}

.site-header.scrolled {
  background: rgba(248, 247, 252, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 45px rgba(50, 41, 73, 0.08);
  backdrop-filter: blur(24px) saturate(1.45);
}

.brand {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.brand-dot {
  background: linear-gradient(145deg, #a58fff, #f2abd8);
  box-shadow: 0 0 0 7px rgba(137, 113, 232, 0.12), 0 0 18px rgba(137, 113, 232, 0.44);
}

.header-contact {
  border-color: rgba(69, 55, 105, 0.18);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.header-contact:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #6f5bd9, #9b7bea);
  color: #fff;
  box-shadow: 0 14px 35px rgba(98, 77, 192, 0.26);
}

.hero {
  background: #eae7f1;
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(156, 133, 245, 0.34), transparent 22%),
    radial-gradient(circle at 92% 80%, rgba(255, 186, 213, 0.31), transparent 25%),
    radial-gradient(circle at 54% 92%, rgba(151, 218, 255, 0.24), transparent 28%);
  pointer-events: none;
}

.hero::after {
  left: -16vw;
  top: -19vw;
  width: 44vw;
  background: rgba(206, 194, 255, 0.42);
  filter: blur(110px);
}

.hero-video {
  object-position: 64% center;
  filter: saturate(0.85) contrast(0.96) brightness(1.04);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(247, 246, 251, 0.96) 0%, rgba(247, 246, 251, 0.88) 33%, rgba(247, 246, 251, 0.46) 54%, rgba(247, 246, 251, 0.08) 76%, rgba(247, 246, 251, 0.02) 100%),
    linear-gradient(0deg, rgba(240, 237, 247, 0.54), transparent 32%);
}

.hero-content {
  isolation: isolate;
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -44px;
  top: 106px;
  bottom: 74px;
  width: min(810px, 67vw);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 46px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.61), rgba(255, 255, 255, 0.26)),
    radial-gradient(circle at 82% 12%, rgba(203, 187, 255, 0.3), transparent 35%);
  box-shadow: 0 38px 100px rgba(45, 39, 67, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(19px) saturate(1.25);
}

.hero-title,
.section-title,
.contact-title,
.mood-copy h2 {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(63px, 6.65vw, 102px);
  line-height: 0.91;
}

.hero-title em,
.section-title em,
.bundle-card em,
.mood-copy em,
.about-copy em,
.contact-title em {
  color: var(--rose-dark);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

.eyebrow,
.mini-kicker {
  color: var(--rose-dark);
}

.eyebrow::before {
  background: linear-gradient(90deg, #6d58cf, #e7a9d4);
}

.hero-lead {
  max-width: 585px;
  border-left-color: rgba(109, 88, 207, 0.3);
  color: rgba(29, 25, 38, 0.7);
}

.button-primary {
  background: linear-gradient(135deg, #1c1925 0%, #49405e 100%);
  box-shadow: 0 20px 45px rgba(38, 30, 58, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button-primary i {
  background: linear-gradient(145deg, #f6c6d8, #b6a3ff 58%, #a5ddff);
  color: #211b30;
}

.button-primary:hover {
  background: linear-gradient(135deg, #5f4dc6, #9272e4);
  box-shadow: 0 25px 60px rgba(80, 60, 168, 0.3);
}

.hero-orbit {
  border-color: rgba(122, 101, 220, 0.2);
  box-shadow: inset 0 0 50px rgba(193, 178, 255, 0.12), 0 0 60px rgba(183, 165, 255, 0.1);
}

.hero-orbit-a {
  transform: rotate(-18deg) scaleY(0.58);
}

.hero-orbit-b {
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.82), rgba(191, 171, 255, 0.18) 37%, rgba(237, 173, 215, 0.16) 60%, transparent 72%);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: inset -18px -18px 38px rgba(111, 83, 203, 0.12), 0 24px 60px rgba(75, 55, 128, 0.12);
}

.hero-interface {
  position: absolute;
  z-index: 4;
  top: 24%;
  right: max(54px, calc((100vw - 1320px) / 2 + 18px));
  width: min(330px, 24vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(231, 224, 249, 0.22));
  box-shadow: 0 28px 80px rgba(42, 34, 66, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  color: #292234;
  backdrop-filter: blur(22px) saturate(1.35);
}

.hero-interface-top,
.hero-interface-tags {
  display: flex;
  align-items: center;
}

.hero-interface-top {
  gap: 9px;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-interface-top i {
  flex: 1;
  height: 1px;
  background: rgba(51, 42, 72, 0.14);
}

.hero-interface-top b {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5e7d69;
  font-weight: 500;
}

.hero-interface-top b::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #82b596;
  box-shadow: 0 0 9px rgba(73, 149, 104, 0.45);
}

.hero-interface-core {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  margin: 18px 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 23px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 205, 158, 0.5), transparent 42%),
    linear-gradient(135deg, rgba(170, 150, 252, 0.63), rgba(244, 181, 218, 0.57) 55%, rgba(152, 216, 255, 0.6));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 34px rgba(104, 80, 177, 0.15);
}

.core-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.42), 0 0 26px rgba(255, 255, 255, 0.22);
}

.core-ring::before,
.core-ring::after,
.core-ring i {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.core-ring::before {
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.72);
}

.core-ring::after {
  width: 22px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.85);
}

.core-ring i {
  top: 4px;
  right: 12px;
  width: 7px;
  aspect-ratio: 1;
  background: #fff;
}

.hero-interface-core strong,
.hero-interface-core small {
  display: block;
}

.hero-interface-core strong {
  color: rgba(33, 26, 49, 0.86);
  font: 500 25px/1 var(--sans);
  letter-spacing: -0.06em;
}

.hero-interface-core small {
  margin-top: 8px;
  color: rgba(33, 26, 49, 0.66);
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-interface-tags {
  justify-content: space-between;
  gap: 7px;
}

.hero-interface-tags span {
  flex: 1;
  padding: 8px 5px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  font-size: 7px;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.scroll-cue i {
  border-color: rgba(72, 57, 105, 0.24);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

.ticker {
  border-color: rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(239, 232, 254, 0.72), rgba(255, 239, 245, 0.74), rgba(233, 247, 255, 0.78));
  box-shadow: 0 14px 45px rgba(58, 44, 92, 0.07);
  backdrop-filter: blur(16px);
}

.ticker span {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.ticker i {
  background: linear-gradient(145deg, #8873e7, #efabd6);
  box-shadow: 0 0 12px rgba(128, 104, 222, 0.33);
}

.section-title {
  line-height: 0.96;
}

.chapter b,
.time-stat strong,
.service-no,
.case-no,
.bundle-price {
  color: var(--rose-dark);
}

.approach,
.services,
.contact {
  background:
    radial-gradient(circle at 84% 12%, rgba(200, 187, 255, 0.34), transparent 27rem),
    radial-gradient(circle at 9% 86%, rgba(255, 207, 224, 0.22), transparent 25rem),
    linear-gradient(180deg, #f8f7fb, #efedf6);
}

.approach::before,
.services::before,
.cases::before,
.reviews::before {
  content: "";
  position: absolute;
  width: clamp(190px, 26vw, 430px);
  aspect-ratio: 1.2;
  border-radius: 45% 55% 62% 38% / 42% 42% 58% 58%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(191, 174, 255, 0.26));
  box-shadow: inset -24px -22px 50px rgba(102, 83, 178, 0.08), 0 32px 80px rgba(77, 61, 125, 0.08);
  pointer-events: none;
}

.approach::before {
  right: -10vw;
  top: 8%;
  transform: rotate(24deg);
}

.approach-grid,
.services .shell,
.cases .shell,
.reviews .shell {
  position: relative;
  z-index: 1;
}

.approach-steps li {
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.approach-steps li::before {
  top: auto;
  bottom: -1px;
  left: 18px;
  width: 38%;
  background: linear-gradient(90deg, #806adf, #e8a8d2);
}

.approach-visual {
  border-color: rgba(255, 255, 255, 0.76);
  border-radius: 48px;
  background: #e5e0ef;
  box-shadow: var(--shadow-glass);
}

.approach-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 17px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 34px;
  pointer-events: none;
}

.approach-visual::after {
  background: linear-gradient(180deg, transparent 42%, rgba(25, 19, 38, 0.62));
}

.services {
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 184, 217, 0.2), transparent 24rem),
    radial-gradient(circle at 89% 54%, rgba(155, 216, 255, 0.22), transparent 27rem),
    #f7f6fb;
}

.services::before {
  left: -11vw;
  bottom: 13%;
  background: linear-gradient(145deg, rgba(255, 233, 219, 0.72), rgba(239, 177, 216, 0.2));
  transform: rotate(-21deg);
}

.services::after {
  color: rgba(103, 82, 192, 0.035);
  font-family: var(--sans);
  font-style: normal;
}

.service-card,
.service-card:nth-child(2),
.service-card:nth-child(3) {
  border-color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(520px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.92), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(230, 225, 246, 0.58));
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(18px) saturate(1.2);
}

.service-card:nth-child(2) {
  background:
    radial-gradient(520px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.9), transparent 48%),
    linear-gradient(145deg, rgba(255, 249, 245, 0.76), rgba(250, 213, 226, 0.52));
}

.service-card:nth-child(3) {
  background:
    radial-gradient(520px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.9), transparent 48%),
    linear-gradient(145deg, rgba(244, 250, 255, 0.76), rgba(202, 232, 250, 0.48));
}

.service-card:nth-child(4) {
  background:
    radial-gradient(520px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.9), transparent 48%),
    linear-gradient(145deg, rgba(249, 247, 255, 0.78), rgba(207, 195, 255, 0.5));
}

.service-card:hover {
  border-color: rgba(135, 111, 224, 0.28);
  box-shadow: 0 34px 90px rgba(68, 51, 118, 0.18), inset 0 1px 0 #fff;
}

.service-heading strong,
.bundle-copy h3,
.case-copy h3,
.about-copy h2 {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.service-icon {
  border-color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(200, 187, 255, 0.46));
  box-shadow: 0 10px 28px rgba(95, 71, 172, 0.14), inset 0 1px 0 #fff;
}

.bundle-card {
  border-color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 88% 9%, rgba(255, 255, 255, 0.88), transparent 23%),
    linear-gradient(128deg, rgba(255, 255, 255, 0.8), rgba(211, 199, 255, 0.58) 42%, rgba(248, 191, 220, 0.5) 73%, rgba(170, 222, 252, 0.52));
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(22px);
}

.bundle-card::before,
.bundle-card::after {
  border-color: rgba(255, 255, 255, 0.52);
}

.round-link {
  background: linear-gradient(145deg, #332d43, #7661d2);
  box-shadow: 0 16px 34px rgba(68, 50, 139, 0.25);
}

.round-link:hover {
  background: linear-gradient(145deg, #6b55cd, #a578e7);
}

.mood-break {
  min-height: 760px;
  margin: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 54px;
  box-shadow: 0 32px 90px rgba(48, 38, 72, 0.16);
}

.mood-shade {
  background:
    linear-gradient(90deg, rgba(32, 25, 48, 0.72), rgba(75, 62, 111, 0.22) 58%, rgba(235, 198, 227, 0.14)),
    linear-gradient(0deg, rgba(30, 22, 44, 0.42), transparent 50%);
}

.mood-copy {
  min-height: 760px;
}

.mood-copy h2 {
  max-width: 900px;
  line-height: 0.94;
}

.mood-copy p,
.mood-copy em {
  color: #e8dcff;
}

.mood-link {
  right: max(34px, calc((100vw - 1320px) / 2));
  padding: 4px 4px 4px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.cases {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(197, 180, 255, 0.39), transparent 28rem),
    radial-gradient(circle at 92% 88%, rgba(255, 192, 219, 0.28), transparent 30rem),
    linear-gradient(180deg, #efedf7, #f8f7fb);
  color: var(--text);
}

.cases::before {
  right: -8vw;
  top: 15%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(148, 211, 248, 0.25));
  transform: rotate(35deg);
}

.chapter-light,
.section-note-light,
.section-title-light,
.section-lead-light {
  color: inherit;
}

.chapter-light b,
.section-title-light em,
.mini-kicker-light {
  color: var(--rose-dark);
}

.cases-grid {
  align-items: start;
  perspective: 1400px;
}

.case-card {
  border-color: rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(18px) saturate(1.18);
}

.case-card:nth-child(2) {
  transform: translateY(38px);
}

.case-card:hover {
  box-shadow: 0 38px 96px rgba(65, 49, 112, 0.22), inset 0 1px 0 #fff;
  transform: translateY(-9px) rotateX(1deg);
}

.case-card:nth-child(2):hover {
  transform: translateY(27px) rotateX(1deg);
}

.case-visual {
  aspect-ratio: 4 / 5;
  margin: 10px;
  border-radius: 25px;
  background: #e9e5f1;
}

.case-visual img {
  object-fit: cover;
  object-position: center;
}

.case-copy {
  min-height: 370px;
  padding: 25px 29px 31px;
}

.case-copy h3 {
  min-height: 1.95em;
}

.case-copy li {
  border-color: rgba(99, 80, 179, 0.15);
  background: rgba(255, 255, 255, 0.5);
}

.portfolio-link {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.portfolio-link:hover {
  background: rgba(255, 255, 255, 0.76);
}

.portfolio-link span {
  color: var(--muted);
}

.portfolio-link i {
  border-color: rgba(91, 72, 161, 0.18);
  background: linear-gradient(145deg, #ffffff, #d8ccff);
}

.reviews {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(154, 216, 255, 0.28), transparent 26rem),
    radial-gradient(circle at 11% 90%, rgba(247, 185, 217, 0.24), transparent 28rem),
    linear-gradient(155deg, #f8f7fc, #ebe8f4);
  color: var(--text);
}

.reviews::before {
  left: -10vw;
  top: 18%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(247, 188, 219, 0.22));
  transform: rotate(-27deg);
}

.review-card {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.67);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(15px);
}

.review-card img {
  background: #f4f1f7;
}

.review-card:hover,
.review-card:nth-child(3n + 2):hover {
  box-shadow: 0 34px 88px rgba(64, 48, 108, 0.2), inset 0 1px 0 #fff;
}

.review-buttons button {
  border-color: rgba(89, 70, 153, 0.17);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.review-buttons button:hover:not(:disabled) {
  background: linear-gradient(145deg, #765fd9, #a77de7);
  color: #fff;
  box-shadow: 0 13px 30px rgba(92, 68, 180, 0.23);
}

.contact {
  background:
    radial-gradient(circle at 8% 16%, rgba(194, 178, 255, 0.38), transparent 27rem),
    radial-gradient(circle at 94% 85%, rgba(255, 200, 220, 0.34), transparent 30rem),
    linear-gradient(180deg, #efedf6, #f8f7fb);
}

.contact-glow {
  border-color: rgba(129, 104, 219, 0.12);
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.2), 0 0 0 100px rgba(201, 186, 255, 0.08);
}

.contact-card {
  border-color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 92% 8%, rgba(171, 218, 248, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(231, 225, 247, 0.55));
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(22px) saturate(1.18);
}

.contact-button {
  background:
    radial-gradient(circle at 22% 15%, rgba(255, 221, 177, 0.78), transparent 38%),
    linear-gradient(145deg, #c7b5ff, #efaed3 64%, #9fdcff);
  box-shadow: 0 25px 70px rgba(91, 68, 156, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.contact-button i {
  background: linear-gradient(145deg, #26202f, #5f4c9b);
}

.contact-button:hover {
  box-shadow: 0 34px 88px rgba(85, 61, 162, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-trust li::before,
.site-footer i {
  background: linear-gradient(145deg, #7c65df, #eda7d2);
}

.js .cases-grid .case-card.reveal {
  opacity: 0;
  transform: translateY(54px) scale(0.985);
}

.js .cases-grid .case-card:nth-child(2).reveal {
  transform: translateY(92px) scale(0.985);
}

.js .cases-grid .case-card.reveal.revealed {
  opacity: 1;
  transform: none;
}

.js .cases-grid .case-card:nth-child(2).reveal.revealed {
  transform: translateY(38px);
}

.js .cases-grid .case-card.reveal.revealed:hover {
  transform: translateY(-9px) rotateX(1deg);
}

.js .cases-grid .case-card:nth-child(2).reveal.revealed:hover {
  transform: translateY(27px) rotateX(1deg);
}

@media (max-width: 1100px) {
  .hero-interface {
    right: 28px;
    width: 290px;
  }

  .hero-interface-core {
    grid-template-columns: 74px 1fr;
  }

  .core-ring {
    width: 68px;
  }

  .case-copy {
    padding-inline: 24px;
  }
}

@media (max-width: 900px) {
  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(244, 242, 249, 0.98) 0%, rgba(244, 242, 249, 0.9) 41%, rgba(244, 242, 249, 0.32) 65%, rgba(244, 242, 249, 0.04) 100%),
      radial-gradient(circle at 85% 16%, rgba(193, 174, 255, 0.22), transparent 28%);
  }

  .hero-content::before {
    left: -18px;
    right: -18px;
    top: auto;
    bottom: 66px;
    width: auto;
    height: 570px;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(15px) saturate(1.18);
  }

  .hero-interface {
    top: 94px;
    right: 24px;
    width: 205px;
    padding: 11px;
    border-radius: 22px;
  }

  .hero-interface-core {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    margin: 10px 0;
    padding: 10px;
    border-radius: 16px;
  }

  .core-ring {
    width: 44px;
  }

  .core-ring::before {
    inset: 8px;
  }

  .core-ring::after {
    width: 12px;
  }

  .hero-interface-core strong {
    font-size: 18px;
  }

  .hero-interface-core small {
    margin-top: 4px;
    font-size: 6px;
  }

  .hero-interface-tags span {
    padding: 5px 2px;
    font-size: 5px;
  }

  .mood-break {
    margin: 16px;
    border-radius: 38px;
  }

  .cases-grid {
    perspective: none;
  }

  .case-card,
  .case-card:nth-child(2),
  .case-card:hover,
  .case-card:nth-child(2):hover,
  .js .cases-grid .case-card.reveal,
  .js .cases-grid .case-card:nth-child(2).reveal,
  .js .cases-grid .case-card.reveal.revealed,
  .js .cases-grid .case-card:nth-child(2).reveal.revealed,
  .js .cases-grid .case-card.reveal.revealed:hover,
  .js .cases-grid .case-card:nth-child(2).reveal.revealed:hover {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header.scrolled {
    background: rgba(247, 246, 251, 0.8);
  }

  .header-contact {
    background: rgba(255, 255, 255, 0.58);
  }

  .hero-video {
    object-position: 58% center;
    filter: saturate(0.88) contrast(0.97) brightness(1.03);
  }

  .hero-content::before {
    left: -12px;
    right: -12px;
    bottom: 65px;
    height: 510px;
    border-radius: 30px;
    backdrop-filter: blur(10px) saturate(1.1);
  }

  .hero-interface {
    top: 82px;
    right: 18px;
    width: 172px;
    opacity: 0.92;
    backdrop-filter: blur(12px);
  }

  .hero-interface-top {
    font-size: 6px;
  }

  .hero-title {
    font-size: clamp(44px, 13.2vw, 59px);
    line-height: 0.92;
  }

  .approach::before,
  .services::before,
  .cases::before,
  .reviews::before {
    opacity: 0.55;
  }

  .approach-steps li {
    margin-bottom: 10px;
    padding: 17px 15px;
  }

  .service-card,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .case-card,
  .review-card,
  .contact-card {
    backdrop-filter: blur(10px) saturate(1.08);
  }

  .mood-break,
  .mood-copy {
    min-height: 72svh;
  }

  .mood-break {
    margin: 10px;
    border-radius: 30px;
  }

  .mood-copy h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .mood-link {
    right: 14px;
  }

  .case-card {
    border-radius: 29px;
  }

  .case-visual {
    margin: 8px;
    border-radius: 22px;
  }

  .case-copy {
    min-height: 350px;
  }

  .mobile-project-cta {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(31, 26, 43, 0.9);
    box-shadow: 0 18px 45px rgba(44, 31, 75, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px) saturate(1.2);
  }

  .mobile-project-cta i {
    background: linear-gradient(145deg, #f4bfd5, #bba7ff 62%, #a7ddff);
  }
}

@media (max-width: 390px) {
  .hero-interface {
    right: 14px;
    width: 158px;
  }

  .hero-interface-core {
    grid-template-columns: 40px 1fr;
    gap: 7px;
    padding: 8px;
  }

  .core-ring {
    width: 38px;
  }

  .hero-interface-core strong {
    font-size: 16px;
  }

  .hero-content::before {
    height: 500px;
  }
}

@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero-content::before {
    top: 70px;
    bottom: 36px;
    width: min(650px, 75vw);
    height: auto;
  }

  .hero-interface {
    top: 78px;
    right: 18px;
    width: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    background: #ebe8f2 url("hero_poster.jpg") 60% center / cover no-repeat;
  }

  .js .cases-grid .case-card.reveal,
  .js .cases-grid .case-card:nth-child(2).reveal,
  .js .cases-grid .case-card.reveal.revealed,
  .js .cases-grid .case-card:nth-child(2).reveal.revealed {
    opacity: 1;
    transform: none;
  }
}

/* Final precedence for shared components changed by the second pass. */
.hero-content::before {
  width: min(750px, 62vw);
}

.review-track {
  padding-right: max(48px, calc((100vw - 1320px) / 2));
  scroll-snap-type: x proximity;
}

@media (min-width: 901px) {
  .case-card {
    position: relative;
    min-height: clamp(650px, 52vw, 740px);
    border-radius: 36px;
    isolation: isolate;
  }

  .case-visual {
    position: absolute;
    z-index: 0;
    inset: 10px;
    aspect-ratio: auto;
    margin: 0;
  }

  .case-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 47%, rgba(27, 21, 37, 0.24));
    pointer-events: none;
  }

  .case-copy {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 22px;
    overflow: hidden;
    min-height: 0;
    max-height: 164px;
    padding: 23px 24px 25px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.63);
    box-shadow: 0 18px 45px rgba(40, 31, 57, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(1.25);
    transition: max-height 0.52s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
  }

  .case-card:hover .case-copy,
  .case-card:focus-within .case-copy {
    max-height: 620px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 25px 62px rgba(40, 31, 57, 0.22), inset 0 1px 0 #fff;
  }

  .case-no {
    position: absolute;
    top: 26px;
    right: 26px;
    margin: 0;
    font-size: 19px;
  }

  .case-copy h3 {
    min-height: 0;
    padding-right: 58px;
    font-size: clamp(31px, 2.5vw, 40px);
  }

  .case-copy > p:not(.case-result) {
    min-height: 0;
    margin-top: 10px;
  }

  .case-copy ul,
  .case-result,
  .case-facts,
  .case-link,
  .case-copy .text-link {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease 0.08s, transform 0.35s var(--ease) 0.06s;
  }

  .case-card:hover .case-copy ul,
  .case-card:hover .case-result,
  .case-card:hover .case-facts,
  .case-card:hover .case-link,
  .case-card:hover .case-copy .text-link,
  .case-card:focus-within .case-copy ul,
  .case-card:focus-within .case-result,
  .case-card:focus-within .case-facts,
  .case-card:focus-within .case-link,
  .case-card:focus-within .case-copy .text-link {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero-content::before {
    width: auto;
  }

  .review-track {
    padding-right: 24px;
    scroll-snap-type: x mandatory;
  }
}

@media (max-width: 760px) {
  .review-track {
    padding-right: 20px;
  }
}

@media (min-width: 901px) and (max-height: 800px) {
  .glass-lab-sticky {
    padding: 70px 0 26px;
  }

  .glass-lab-grid {
    gap: 34px;
  }

  .glass-lab-copy .chapter {
    margin-bottom: 28px;
  }

  .glass-lab-copy h2 {
    font-size: clamp(53px, 5vw, 68px);
  }

  .glass-lab-copy > p:not(.chapter, .mini-kicker) {
    margin-top: 18px;
    font-size: 14px;
  }

  .lab-cta {
    min-height: 58px;
    margin-top: 22px;
  }

  .lab-scroll-status {
    margin-top: 24px;
  }

  .glass-lab-stage {
    min-height: 570px;
    transform: scale(0.86);
    transform-origin: center;
  }
}

/* Third-pass refinements: strict rhythm, seamless services ticker and tidy UI assembly. */
.ticker-track {
  gap: 0;
  padding-right: 0;
  animation-duration: 38s;
}

.ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 52px;
  padding-right: 52px;
}

.cases-grid {
  align-items: stretch;
}

.case-card:nth-child(2),
.js .cases-grid .case-card:nth-child(2).reveal.revealed {
  transform: none;
}

.case-card:nth-child(2):hover,
.js .cases-grid .case-card:nth-child(2).reveal.revealed:hover {
  transform: translateY(-9px) rotateX(1deg);
}

.review-track {
  align-items: stretch;
}

.review-card,
.review-card:nth-child(3n + 2) {
  display: flex;
  height: auto;
  flex-direction: column;
  transform: none;
}

.review-card figcaption {
  display: flex;
  flex: 1;
  align-items: center;
  min-height: 60px;
}

.review-card:hover,
.review-card:nth-child(3n + 2):hover {
  transform: translateY(-5px);
}

.glass-lab-stage::before {
  inset: 3%;
}

.lab-widget-start {
  top: 8%;
  left: 7%;
}

.lab-widget-search {
  top: 8%;
  right: 7%;
}

.lab-widget-select {
  top: 31%;
  left: 7%;
}

.lab-widget-toggle {
  top: 34%;
  right: 10%;
}

.lab-widget-toast {
  right: 7%;
  bottom: 18%;
}

.lab-widget-card {
  left: 7%;
  bottom: 8%;
}

.approach-visual img {
  object-position: center;
  transform: scale(1.001);
}

.approach-visual:hover img {
  transform: scale(1.025);
}

@media (max-width: 760px) {
  .ticker-group {
    gap: 32px;
    padding-right: 32px;
  }

  .glass-lab-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 0;
    padding: 18px;
    margin-inline: 0;
  }

  .glass-lab-stage::before {
    inset: 0;
  }

  .glass-lab-stage .lab-widget {
    position: relative;
    inset: auto;
    width: auto;
    min-width: 0;
    transform: none !important;
  }

  .lab-widget-start,
  .lab-widget-search,
  .lab-widget-select,
  .lab-widget-card {
    grid-column: 1 / -1;
  }

  .lab-widget-start,
  .lab-widget-search {
    min-height: 58px;
  }

  .lab-widget-toggle,
  .lab-widget-toast {
    min-height: 58px;
    padding-inline: 14px;
  }

  .lab-widget-toast {
    gap: 8px;
  }

  .lab-widget-card {
    padding: 12px;
  }

  .lab-card-visual {
    height: 112px;
  }

  .review-card figcaption {
    min-height: 56px;
  }

  .approach-visual img {
    object-position: center;
  }
}

/* Fourth-pass refinement: the assembly screen is a real 01→04 process, not a collage. */
.hero-interface,
.hero-side-note,
.hero-orbit,
.scroll-cue {
  display: none;
}

@media (min-width: 901px) {
  .hero-content::before {
    width: min(720px, 48vw);
  }

  .hero-title {
    max-width: min(720px, 48vw);
  }

  .hero-lead {
    max-width: min(620px, 43vw);
  }
}

.lab-flow-shell {
  position: absolute;
  inset: 6%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lab-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  padding-inline: 8px;
  color: rgba(55, 49, 64, 0.6);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lab-flow-head p {
  display: flex;
  align-items: center;
  gap: 9px;
}

.lab-flow-head p i {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #8ccff7, #bb8ff1 52%, #efadd3);
  box-shadow: 0 0 0 5px rgba(188, 164, 240, 0.11), 0 0 16px rgba(140, 117, 224, 0.28);
}

.lab-flow-head strong {
  font-weight: 400;
}

.lab-flow-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  list-style: none;
}

.lab-flow-shell .lab-widget {
  position: relative;
  inset: auto;
  width: auto;
  min-width: 0;
}

.lab-flow-shell .lab-widget::after {
  left: 16%;
  right: 16%;
  bottom: -8px;
  height: 14px;
  opacity: 0.46;
  filter: blur(13px);
}

.lab-phase {
  display: grid;
  grid-template-columns: 48px minmax(150px, 1fr) minmax(165px, 0.84fr);
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 13px 17px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.27)),
    linear-gradient(90deg, rgba(181, 220, 255, 0.12), rgba(239, 183, 221, 0.12));
}

.lab-phase > b {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.35);
  color: #7562c7;
  font: italic 500 17px/1 var(--serif);
  box-shadow: inset 0 1px 0 #fff, 0 8px 18px rgba(80, 63, 137, 0.08);
}

.lab-phase > div {
  display: grid;
  gap: 5px;
}

.lab-phase > div strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.lab-phase > div span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lab-phase-ui {
  justify-self: stretch;
  min-width: 0;
}

.lab-phase-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(216, 233, 255, 0.63), rgba(250, 211, 233, 0.58));
  color: rgba(55, 49, 64, 0.64);
  font-size: 9px;
}

.lab-phase-search i {
  position: relative;
  width: 16px;
  aspect-ratio: 1;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.lab-phase-search i::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 6px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.lab-phase-lines {
  display: grid;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.28);
}

.lab-phase-lines i {
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(169, 149, 244, 0.56), rgba(212, 223, 255, 0.46));
}

.lab-phase-lines i:nth-child(2) {
  width: 83%;
  background: linear-gradient(90deg, rgba(244, 174, 215, 0.54), rgba(234, 202, 244, 0.4));
}

.lab-phase-lines i:nth-child(3) {
  width: 62%;
  background: linear-gradient(90deg, rgba(139, 212, 245, 0.5), rgba(188, 231, 218, 0.42));
}

.lab-phase-orbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(210, 236, 255, 0.4), rgba(252, 217, 236, 0.42));
}

.lab-phase-orbs i {
  width: 24px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: linear-gradient(145deg, #a6dfff, #a88df0);
  box-shadow: 0 8px 15px rgba(93, 71, 158, 0.12);
}

.lab-phase-orbs i:nth-child(2) {
  width: 31px;
  background: radial-gradient(circle at 30% 25%, #fff, #b699f4 42%, #efabd4);
}

.lab-phase-orbs i:nth-child(3) {
  background: linear-gradient(145deg, #ffd0b9, #f1a9d6);
}

.lab-phase-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 11px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(179, 236, 211, 0.46), rgba(210, 229, 255, 0.4));
  color: rgba(55, 49, 64, 0.69);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lab-phase-switch > i {
  position: relative;
  width: 43px;
  height: 23px;
  border-radius: 99px;
  background: linear-gradient(90deg, #9d87ec, #cdbbff);
  box-shadow: inset 0 2px 4px rgba(72, 54, 128, 0.15);
}

.lab-phase-switch > i b {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 17px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 7px rgba(48, 37, 82, 0.18);
}

.lab-flow-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  margin-top: 13px;
  padding: 10px 12px 10px 17px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3)),
    linear-gradient(90deg, rgba(163, 239, 205, 0.48), rgba(184, 218, 255, 0.4), rgba(238, 183, 222, 0.4));
}

.lab-flow-result > p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lab-flow-result > p > i {
  display: grid;
  place-items: center;
  width: 32px;
  aspect-ratio: 1;
  border: 1px solid rgba(57, 115, 83, 0.25);
  border-radius: 10px;
  color: #46775a;
  font-style: normal;
}

.lab-flow-result > p > span {
  display: grid;
  gap: 4px;
}

.lab-flow-result small {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lab-flow-result strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.lab-flow-result > b {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding-inline: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(158, 217, 252, 0.56), rgba(192, 166, 247, 0.5), rgba(241, 174, 215, 0.46));
  color: #393244;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .hero-title,
  .hero-lead {
    max-width: none;
  }

  .glass-lab-stage {
    display: block;
    padding: 14px;
  }

  .lab-flow-shell {
    position: relative;
    inset: auto;
    padding: 8px;
  }

  .lab-flow-head {
    padding-inline: 3px;
  }

  .lab-flow-list {
    gap: 9px;
    margin-top: 12px;
  }

  .lab-phase {
    grid-template-columns: 42px 1fr;
    gap: 8px 11px;
    min-height: 0;
    padding: 13px;
  }

  .lab-phase > b {
    width: 38px;
  }

  .lab-phase-ui {
    grid-column: 2;
    min-height: 38px;
  }

  .lab-flow-result {
    align-items: stretch;
    flex-direction: column;
    padding: 13px;
  }

  .lab-flow-result > b {
    width: 100%;
  }
}

@media (min-width: 901px) and (hover: none),
       (min-width: 901px) and (pointer: coarse) {
  .case-card .case-copy {
    max-height: 420px;
    background: rgba(255, 255, 255, 0.82);
  }

  .case-copy ul,
  .case-result,
  .case-copy .text-link {
    opacity: 1;
    transform: none;
  }
}

/* Show every case visual in full on desktop; the quiet lower field holds the glass caption. */
@media (min-width: 901px) {
  .review-track {
    padding-right: calc(100vw - 360px - max(48px, calc((100vw - 1320px) / 2)));
    scroll-snap-type: x mandatory;
  }

  .case-card {
    min-height: clamp(610px, 44vw, 650px);
  }

  .case-visual {
    background:
      radial-gradient(circle at 18% 12%, rgba(205, 191, 255, 0.32), transparent 38%),
      radial-gradient(circle at 86% 82%, rgba(255, 202, 226, 0.28), transparent 42%),
      linear-gradient(155deg, #f4f3fa, #e9e7f2);
  }

  .case-visual img,
  .case-card:hover .case-visual img {
    object-fit: contain;
    object-position: center top;
    transform: none;
  }
}

/* Final mobile precedence: keep this block last. */
.approach-visual.approach-brief {
  min-height: 620px;
  background:
    radial-gradient(circle at 82% 16%, rgba(248, 190, 222, 0.68), transparent 31%),
    radial-gradient(circle at 17% 72%, rgba(159, 220, 255, 0.72), transparent 36%),
    linear-gradient(155deg, #f8f8fd, #e8e4f5 57%, #f5edf6);
}

.approach-visual.approach-brief::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(238, 235, 247, 0.3) 72%, rgba(216, 210, 231, 0.86));
}

@media (max-width: 900px) {
  .site-header,
  .site-header.scrolled {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    gap: 8px;
  }

  .case-carousel-controls {
    display: flex;
  }
}

@media (max-width: 760px) {
  .hero,
  .hero-content {
    min-height: max(790px, 100svh);
  }

  .hero {
    background-position: 82% center;
  }

  .hero-video {
    display: block;
    object-fit: cover;
    object-position: 82% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(246, 244, 249, 0.02) 0%, rgba(246, 244, 249, 0.04) 35%, rgba(246, 244, 249, 0.72) 48%, rgba(246, 244, 249, 0.98) 63%, #f6f4f9 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(219, 205, 240, 0.05));
  }

  .hero-content {
    display: block;
    padding: clamp(365px, 47svh, 430px) 0 88px;
  }

  .hero-content::before {
    top: clamp(350px, 45svh, 415px);
    bottom: 20px;
    left: -10px;
    right: -10px;
    width: auto;
    height: auto;
    border-radius: 30px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(42px, 12.6vw, 51px);
    line-height: 0.92;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.52;
  }

  .approach-visual.approach-brief {
    width: 100%;
    min-height: 520px;
  }

  .approach-brief figcaption {
    left: 20px;
    right: 20px;
    bottom: 22px;
    max-width: calc(100% - 40px);
  }

  .cases-grid {
    display: flex;
    align-items: stretch;
    gap: 14px;
    width: auto;
    margin-inline: -20px;
    padding: 8px 20px 24px;
    overflow-x: auto;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .case-card,
  .case-card:nth-child(2) {
    position: relative;
    flex: 0 0 calc(100vw - 58px);
    width: auto;
    max-width: 430px;
    min-height: 0;
    height: auto;
    transform: none;
    scroll-snap-align: start;
  }

  .case-visual {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    margin: 8px;
    aspect-ratio: 1122 / 1402;
  }

  .case-visual img,
  .case-card:hover .case-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .case-copy {
    position: relative;
    inset: auto;
    min-height: 292px;
    max-height: none;
    padding: 23px 22px 25px;
  }

  .case-copy ul,
  .case-result {
    opacity: 1;
    transform: none;
  }

  .review-card {
    flex-basis: calc(100vw - 58px);
  }

  .review-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 390px) {
  .hero-content {
    padding-top: clamp(340px, 46svh, 390px);
  }

  .hero-content::before {
    top: clamp(327px, 44svh, 377px);
  }

  .case-card,
  .case-card:nth-child(2),
  .review-card {
    flex-basis: calc(100vw - 48px);
  }
}

/* Fifth-pass correction: visible media stage and controls before the cases. */
.approach-brief figcaption {
  z-index: 4;
  right: auto;
  bottom: 34px;
  max-width: calc(100% - 64px);
  padding: 11px 15px 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  background: rgba(250, 249, 253, 0.7);
  box-shadow: 0 14px 36px rgba(57, 44, 91, 0.13), inset 0 1px 0 #fff;
  color: #40394d;
  backdrop-filter: blur(16px) saturate(1.12);
}

@media (max-width: 900px) {
  .case-carousel-controls {
    display: flex;
    margin: -17px 0 18px;
  }

  .case-carousel-controls > p {
    color: #40384c;
    font-size: 10px;
    font-weight: 500;
  }

  .case-carousel-controls button {
    width: 52px;
    height: 52px;
    border-color: rgba(64, 56, 76, 0.22);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #40384c;
  }

  .case-carousel-controls #caseNext {
    border-color: rgba(255, 255, 255, 0.75);
    background: linear-gradient(145deg, #b9e4ff, #c9b6ff 54%, #f1b6d8);
    box-shadow: 0 14px 34px rgba(14, 4, 28, 0.3), inset 0 1px 0 #fff;
    color: #2f283a;
  }
}

@media (max-width: 760px) {
  .hero,
  .hero-content {
    min-height: max(820px, 100svh);
  }

  .hero-video {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: clamp(360px, 50svh, 450px);
    object-fit: cover;
    object-position: 74% center;
  }

  .hero {
    background-position: 74% top;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(246, 244, 249, 0.01) 0%, rgba(246, 244, 249, 0.02) 38%, rgba(246, 244, 249, 0.35) 48%, rgba(246, 244, 249, 0.95) 58%, #f6f4f9 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(219, 205, 240, 0.04));
  }

  .hero-content {
    padding: clamp(395px, 53svh, 475px) 0 88px;
  }

  .hero-content::before {
    top: clamp(378px, 51svh, 458px);
    bottom: 20px;
  }

  .cases-intro {
    margin-bottom: 34px;
  }

  .cases-grid {
    gap: 14px;
  }

  .case-card,
  .case-card:nth-child(2) {
    flex-basis: min(79vw, 430px);
  }

  .approach-brief figcaption {
    left: 30px;
    right: auto;
    bottom: 32px;
    max-width: calc(100% - 60px);
    padding: 9px 13px 10px;
  }
}

@media (max-width: 390px) {
  .hero-video {
    height: 360px;
    object-position: 74% center;
  }

  .hero-content {
    padding-top: 395px;
  }

  .hero-content::before {
    top: 378px;
  }

  .case-card,
  .case-card:nth-child(2),
  .review-card {
    flex-basis: 79vw;
  }

  .case-carousel-controls > p span {
    max-width: 118px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   ДОБАВЛЕНИЯ 2026-07-15 — правки после ревью:
   • FAQ секция
   • факты и ссылки в карточках кейсов
   • Instagram-заглушка (шапка, меню, контакт)
   • компактный sticky CTA с auto-hide логикой (класс .cta-hidden)
   ═══════════════════════════════════════════════════════════════════ */

.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
}
.review-card figcaption b {
  color: var(--ink);
  font: 500 14px/1.2 var(--sans);
  letter-spacing: 0.03em;
}
.review-card figcaption span {
  color: var(--muted);
  font: 400 11px/1.4 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Кейсы: dl с фактами (Формат, Срок, Объём, Результат) ── */
.case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 18px 0 14px;
  padding: 16px 0 4px;
  border-top: 1px solid var(--line);
}
.case-facts > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.case-facts dt {
  color: var(--muted);
  font: 500 9px/1 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.case-facts dd {
  margin: 0;
  color: var(--ink);
  font: 400 13px/1.4 var(--sans);
}
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 8px 16px 8px 18px;
  border: 1px solid rgba(74, 29, 45, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font: 500 11px/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
  align-self: flex-start;
}
.case-link:hover {
  background: rgba(74, 29, 45, 0.05);
  border-color: rgba(74, 29, 45, 0.34);
  transform: translateY(-1px);
}
.case-link i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(74, 29, 45, 0.24);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  transition: transform 0.3s var(--ease);
}
.case-link:hover i {
  transform: rotate(-30deg);
}

@media (max-width: 760px) {
  .case-facts {
    gap: 10px 16px;
    margin: 14px 0 10px;
    padding: 12px 0 2px;
  }
  .case-facts dd {
    font-size: 12px;
  }
}

/* ── FAQ ── */
.faq {
  padding: 100px 0 80px;
}
.faq-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}
.faq-intro .section-title {
  font-size: clamp(38px, 4.2vw, 62px);
}
.faq-intro .section-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 960px;
}
.faq-item {
  border: 1px solid rgba(74, 29, 45, 0.12);
  border-radius: 22px;
  background: rgba(255, 250, 246, 0.7);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(159, 66, 88, 0.28);
  background: rgba(255, 250, 246, 0.94);
  box-shadow: 0 18px 46px rgba(74, 29, 45, 0.08);
}
.faq-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: "";
}
.faq-no {
  color: var(--rose-dark);
  font: italic 500 20px/1 var(--serif);
  min-width: 32px;
}
.faq-q {
  font: 500 clamp(17px, 1.5vw, 21px) / 1.35 var(--serif);
  letter-spacing: -0.01em;
}
.faq-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(74, 29, 45, 0.22);
  border-radius: 50%;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease);
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
}
.faq-toggle::before {
  width: 12px;
  height: 1.2px;
}
.faq-toggle::after {
  width: 1.2px;
  height: 12px;
}
.faq-item[open] .faq-toggle {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: var(--paper);
  transform: rotate(90deg);
}
.faq-item[open] .faq-toggle::after {
  opacity: 0;
}
.faq-a {
  padding: 0 26px 24px 78px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  animation: faqIn 0.4s var(--ease);
}
.faq-a p {
  margin: 0;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .faq {
    padding: 70px 0 60px;
  }
  .faq-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px;
  }
  .faq-item summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px 20px;
  }
  .faq-no {
    font-size: 17px;
    min-width: 26px;
  }
  .faq-q {
    font-size: 16px;
  }
  .faq-toggle {
    width: 28px;
    height: 28px;
  }
  .faq-a {
    padding: 0 20px 20px 60px;
    font-size: 14px;
  }
}

/* ── Instagram-заглушка в контактах ── */
.contact-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 22px 13px 18px;
  border: 1px solid rgba(74, 29, 45, 0.2);
  border-radius: 999px;
  color: var(--ink);
  font: 500 12px/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 250, 246, 0.5);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}
.contact-secondary:hover {
  color: var(--rose-dark);
  border-color: rgba(159, 66, 88, 0.36);
  background: rgba(255, 245, 240, 0.7);
  transform: translateY(-1px);
}
.contact-secondary svg {
  width: 18px;
  height: 18px;
}

/* ── Mobile-nav Instagram-ссылка ── */
.mobile-nav-instagram {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  margin-top: 8px;
  border: 1px solid rgba(74, 29, 45, 0.18);
  border-radius: 22px;
  color: var(--muted) !important;
  font: 500 13px/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-nav-instagram span {
  color: var(--rose-dark) !important;
  font-size: 16px;
}

/* ── Sticky mobile CTA — компактнее + hide/show по скроллу ── */
@media (max-width: 760px) {
  .mobile-project-cta {
    min-height: 50px;
    padding: 6px 6px 6px 20px;
    border-radius: 999px;
    background: rgba(43, 13, 25, 0.88);
    backdrop-filter: blur(14px) saturate(1.15);
    font-size: 12.5px;
    letter-spacing: 0.09em;
    box-shadow: 0 12px 32px rgba(43, 13, 25, 0.22);
    transition: opacity 0.35s ease, transform 0.35s var(--ease), background 0.35s ease;
  }
  .mobile-project-cta i {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
  .mobile-project-cta.cta-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }
}

/* ── Меньше давления бегущей строки на первом экране ── */
.ticker-track {
  animation-duration: 44s !important;
}

/* Фото в блоке о бережном отношении ко времени клиента. */
.approach-visual.approach-photo {
  background: #f0dde0;
}

.approach-visual.approach-photo::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 46%);
}

.approach-visual.approach-photo > .approach-photo-image {
  object-position: center;
}

.approach-photo > .brief-visual,
.approach-photo > figcaption,
.approach-photo > .visual-index {
  display: none;
}

/* Mobile hero proportions from the approved reference. */
@media (max-width: 760px) {
  :root {
    --hero-mobile-media-height: clamp(360px, 110vw, 450px);
  }

  .hero-video {
    height: var(--hero-mobile-media-height);
    object-position: 74% center;
  }

  .hero-content {
    padding-top: calc(var(--hero-mobile-media-height) + 35px);
  }

  .hero-content::before {
    top: calc(var(--hero-mobile-media-height) + 18px);
  }
}

/* Uniform captions and edge-to-edge photo in the client-time block. */
.review-card figcaption,
.review-card figcaption b,
.review-card figcaption span {
  width: 100%;
  text-align: center;
}

.review-card figcaption {
  justify-content: center;
}

.approach-visual.approach-photo > .approach-photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

/* Readability scale: larger supporting copy without changing display headings. */
body {
  font-size: 17px;
}

.desktop-nav {
  font-size: 12px;
}

.header-contact {
  font-size: 11px;
}

.eyebrow,
.mini-kicker,
.chapter,
.section-note {
  font-size: 11px;
}

.hero-lead {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.65;
}

.hero-proof span {
  font-size: 10px;
}

.section-lead {
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.68;
}

.glass-lab-copy > p:not(.chapter, .mini-kicker) {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.65;
}

.approach-steps span {
  font-size: 12px;
  line-height: 1.55;
}

.service-heading small {
  font-size: 16px;
}

.price-list span {
  font-size: 15px;
}

.price-list small {
  font-size: 13px;
}

.bundle-copy > p:last-child {
  font-size: 17px;
}

.bundle-price span,
.portfolio-link span {
  font-size: 11px;
}

.services-conversion p {
  font-size: 15px;
}

.text-link,
.case-link,
.contact-secondary {
  font-size: 12px;
}

.mood-copy > p,
.mood-link {
  font-size: 11px;
}

.case-copy > p:not(.case-result) {
  font-size: 16px;
}

.case-copy li,
.case-facts dt {
  font-size: 10.5px;
}

.case-facts dd,
.case-result {
  font-size: 14px;
}

.review-card figcaption b {
  font-size: 15px;
}

.review-card figcaption span {
  font-size: 12px;
  line-height: 1.5;
}

.faq-intro .section-lead {
  font-size: 18px;
  line-height: 1.65;
}

.faq-q {
  font-size: clamp(20px, 1.65vw, 23px);
}

.faq-a {
  font-size: 17px;
  line-height: 1.7;
}

.about-copy > p:last-child,
.contact-lead {
  font-size: clamp(17px, 1.3vw, 19px);
}

.contact-trust,
.site-footer {
  font-size: 11px;
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .eyebrow,
  .mini-kicker,
  .chapter {
    font-size: 10px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .section-lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .glass-lab-copy > p:not(.chapter, .mini-kicker) {
    font-size: 16px;
  }

  .approach-steps span {
    font-size: 12px;
  }

  .service-heading small {
    font-size: 14px;
    line-height: 1.5;
  }

  .price-list span {
    font-size: 15px;
  }

  .price-list small {
    font-size: 13px;
  }

  .bundle-copy > p:last-child,
  .about-copy > p:last-child,
  .contact-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .services-conversion p {
    font-size: 15px;
  }

  .case-copy > p:not(.case-result) {
    font-size: 15.5px;
  }

  .case-facts dd,
  .case-result {
    font-size: 14px;
  }

  .review-card figcaption span {
    font-size: 12px;
  }

  .faq-intro .section-lead {
    font-size: 17px;
  }

  .faq-q {
    font-size: 18px;
  }

  .faq-a {
    font-size: 16px;
  }

  .contact-trust,
  .site-footer {
    font-size: 10px;
  }
}

/* Mobile approach: one connected card with the image leading the story. */
@media (max-width: 900px) {
  .approach-grid {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 32px;
    background:
      radial-gradient(circle at 82% 6%, rgba(218, 203, 255, 0.36), transparent 34%),
      linear-gradient(155deg, rgba(255, 255, 255, 0.72), rgba(238, 234, 247, 0.8));
    box-shadow: 0 28px 78px rgba(61, 48, 97, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .approach-visual.approach-photo {
    order: -1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .approach-visual.approach-photo::before {
    inset: 12px 12px 0;
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
  }

  .approach-visual.approach-photo::after {
    z-index: 1;
    background: linear-gradient(180deg, transparent 66%, rgba(244, 241, 248, 0.2) 82%, rgba(244, 241, 248, 0.94) 100%);
  }

  .approach-visual.approach-photo > .approach-photo-image {
    object-position: center 43%;
  }

  .approach-copy {
    padding: 18px 30px 38px;
  }

  .approach-copy .section-lead {
    margin-top: 22px;
  }

  .approach-steps li {
    background: rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 760px) {
  .approach-visual.approach-photo {
    aspect-ratio: 4 / 3;
  }

  .approach-copy {
    padding: 10px 20px 28px;
  }
}

/* Desktop rhythm: keep sections distinct without stacking oversized gaps. */
@media (min-width: 901px) {
  .section {
    padding-block: clamp(72px, 4vw, 88px);
  }

  .faq {
    padding-block: clamp(72px, 4vw, 88px);
  }

  .contact {
    padding-top: clamp(72px, 4vw, 88px);
    padding-bottom: 36px;
  }

  .section-top {
    margin-bottom: clamp(44px, 3vw, 56px);
  }

  .services-intro,
  .cases-intro,
  .reviews-intro {
    margin-bottom: clamp(44px, 3vw, 56px);
  }

  .portfolio-link {
    margin-top: 48px;
  }
}

@media (max-width: 900px) {
  .approach.section,
  .services.section,
  .cases.section,
  .reviews.section {
    padding-block: 72px;
  }

  .faq {
    padding-block: 64px;
  }

  .contact {
    padding-top: 72px;
  }

  .section-top {
    margin-bottom: 36px;
  }

  .services-intro,
  .cases-intro,
  .reviews-intro {
    margin-bottom: 34px;
  }
}

.about-body {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 19px);
  font-weight: 300;
  line-height: 1.72;
}

.about-body p + p {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .about-body {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .about-body p + p {
    margin-top: 16px;
  }
}

/* Compact, balanced final screen on desktop. */
@media (min-width: 901px) {
  .contact {
    padding-top: clamp(32px, 2.35vw, 44px);
    padding-bottom: 18px;
  }

  .contact .section-top {
    margin-bottom: clamp(22px, 1.65vw, 30px);
  }

  .contact-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(34px, 3.8vw, 64px);
    align-items: stretch;
    padding: clamp(34px, 3vw, 50px);
  }

  .about-copy {
    display: flex;
    min-width: 0;
    padding-right: clamp(34px, 3.2vw, 56px);
    flex-direction: column;
    justify-content: center;
  }

  .about-copy h2 {
    font-size: clamp(48px, 3.8vw, 64px);
    line-height: 0.92;
  }

  .about-body {
    max-width: 640px;
    margin-top: 18px;
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.5;
  }

  .about-body p + p {
    margin-top: 10px;
  }

  .contact-copy {
    display: flex;
    min-width: 0;
    padding-left: clamp(4px, 0.6vw, 10px);
    flex-direction: column;
    justify-content: center;
  }

  .contact-title {
    font-size: clamp(62px, 5.25vw, 88px);
    line-height: 0.84;
  }

  .contact-lead {
    max-width: 640px;
    margin-top: 18px;
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.55;
  }

  .contact-button {
    width: 100%;
    min-height: 116px;
    margin-top: 22px;
    padding: 22px 24px;
    border-radius: 28px;
  }

  .contact-button span {
    font-size: clamp(26px, 2vw, 31px);
  }

  .contact-secondary {
    align-self: flex-start;
    margin-top: 10px;
    padding-block: 11px;
  }

  .contact-trust {
    gap: 8px 18px;
    margin-top: 14px;
    font-size: 10px;
  }

  .site-footer {
    min-height: 48px;
  }
}
