:root {
  --bg: #050608;
  --ink: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.72);
  --muted-2: rgba(245, 241, 232, 0.46);
  --line: rgba(245, 241, 232, 0.14);
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.075);
  --gold: #c8943a;
  --gold-2: #f1d27a;
  --bronze: #8d611d;
  --charcoal: #121419;
  --paper: #f2eadc;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 8, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 8, 0.94);
  border-bottom-color: rgba(241, 210, 122, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  transition: min-height 0.28s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 62px;
}

.logo {
  width: auto;
  height: 44px;
  transition: height 0.28s ease, opacity 0.28s ease;
}

.site-header.is-scrolled .logo {
  height: 38px;
  opacity: 0.94;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  gap: 5px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-140%) rotate(16deg);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:hover::after {
  transform: translateX(420%) rotate(16deg);
}

.btn-gold {
  color: #111111;
  background: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-2);
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.24);
}

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

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22vh;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0), var(--bg));
  pointer-events: none;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.08) brightness(0.72);
  transform: scale(1.035);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.58) 44%, rgba(5, 6, 8, 0.12)),
    linear-gradient(180deg, rgba(5, 6, 8, 0.16), rgba(5, 6, 8, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 12vh 0 16vh;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal 0.78s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-reveal:nth-child(2) {
  animation-delay: 120ms;
}

.hero-reveal:nth-child(3) {
  animation-delay: 230ms;
}

.hero-reveal:nth-child(4) {
  animation-delay: 340ms;
}

.kicker {
  margin: 0 0 18px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gold-kicker {
  color: var(--gold-2);
}

.display-title,
.section-title,
.service-card h3,
.work-body h3,
.timeline h3,
.contact-form-card h3,
.briefing-grid h2 {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.display-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.86;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

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

.gold-thread {
  position: relative;
  height: 80px;
  overflow: hidden;
  pointer-events: auto;
}

.gold-thread svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gold-thread path {
  fill: none;
  stroke: rgba(241, 210, 122, 0.42);
  stroke-width: 1.1;
  filter: drop-shadow(0 0 10px rgba(200, 148, 58, 0.34));
  transition: d 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}

.gold-thread::before,
.gold-thread::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 210, 122, 0.32), transparent);
  opacity: 0.65;
}

.gold-thread::after {
  right: 0;
  left: auto;
}

.section-thread {
  height: 72px;
  margin: -36px 0;
  z-index: 1;
}

.card-thread {
  height: 44px;
  margin: 8px 0 4px;
}

.card-thread path {
  stroke: rgba(241, 210, 122, 0.34);
  stroke-width: 1;
}

.premium-proof {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 0%, rgba(200, 148, 58, 0.12), transparent 28%),
    #08090c;
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(241, 210, 122, 0.14);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.proof-signal {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    #0d0f13;
}

.proof-signal strong {
  font-family: "Bebas Neue", Arial, sans-serif;
  color: var(--gold-2);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.82;
}

.proof-signal span {
  max-width: 230px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.briefing-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0f13;
}

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

.briefing-grid article {
  min-height: 240px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.briefing-grid article:last-child {
  border-right: 0;
}

.briefing-grid span,
.service-number,
.timeline span,
.contact-card span,
.badge {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.briefing-grid h2 {
  margin: 76px 0 12px;
  font-size: 2rem;
  line-height: 1;
}

.briefing-grid p,
.service-card p,
.work-body p,
.timeline p,
.section-copy,
.contact-card a,
.footer-inner {
  color: var(--muted);
}

.section {
  padding: clamp(72px, 10vw, 126px) 0;
  scroll-margin-top: 92px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.section-title {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.9;
  max-width: 12ch;
  overflow-wrap: normal;
  text-wrap: balance;
}

.split-head,
.transformation-copy,
.process-layout > div:first-child,
.contact-grid > div:first-child {
  position: relative;
}

.split-head::before,
.transformation-copy::before,
.process-layout > div:first-child::before,
.contact-grid > div:first-child::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: min(180px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-head.is-visible::before,
.transformation-layout.is-visible .transformation-copy::before,
.process-layout.is-visible > div:first-child::before,
.contact-grid.is-visible > div:first-child::before {
  transform: scaleX(1);
}

.section-copy {
  max-width: 620px;
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.service-band {
  padding-top: 0;
}

.service-catalog-head {
  max-width: 850px;
  margin-bottom: 48px;
}

.service-catalog-head .section-title {
  margin-bottom: 24px;
}

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

.service-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 28% 12%, rgba(241, 210, 122, 0.1), transparent 26%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background 0.42s ease, border-color 0.42s ease, transform 0.42s ease, box-shadow 0.42s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(140deg, rgba(241, 210, 122, 0), rgba(241, 210, 122, 0.22), rgba(241, 210, 122, 0));
  opacity: 0;
  transition: opacity 0.42s ease;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  background:
    radial-gradient(circle at 26% 10%, rgba(241, 210, 122, 0.16), transparent 30%),
    var(--surface-2);
  border-color: rgba(241, 210, 122, 0.46);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(200, 148, 58, 0.12);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-visual {
  position: relative;
  height: 176px;
  margin: 24px 0 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #101216;
  border: 1px solid rgba(241, 210, 122, 0.14);
  border-radius: 6px;
}

.service-card-visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05) brightness(0.76);
  transform: scale(1.01);
  transition: transform 1.05s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.42s ease;
}

.service-card-visual::before,
.service-card-visual::after,
.service-card-visual span {
  content: "";
  position: absolute;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.42s ease;
}

.service-card-visual::before {
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(241, 210, 122, 0.24);
}

.service-card-visual::after {
  z-index: 1;
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.08), rgba(5, 6, 8, 0.58)),
    radial-gradient(circle at 18% 14%, rgba(241, 210, 122, 0.2), transparent 26%);
  opacity: 0.84;
}

.service-card-visual span {
  z-index: 3;
  inset: 28px auto auto 28px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(241, 210, 122, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(200, 148, 58, 0.2);
}

.service-card:hover .service-card-visual img {
  filter: saturate(1) contrast(1.1) brightness(0.88);
  transform: scale(1.065);
}

.service-card:hover .service-card-visual::before,
.service-card:hover .service-card-visual::after,
.service-card:hover .service-card-visual span {
  transform: scale(1.055) translate3d(2px, -2px, 0);
}

.service-identity {
  background:
    radial-gradient(circle at 72% 28%, rgba(241, 210, 122, 0.22), transparent 24%),
    linear-gradient(135deg, #101216, #281d0d);
}

.service-web {
  background:
    linear-gradient(90deg, rgba(241, 210, 122, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(241, 210, 122, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, #101216, #1c2628);
  background-size: 44px 44px, 44px 44px, auto;
}

.service-presentation {
  background:
    radial-gradient(circle at 26% 24%, rgba(241, 210, 122, 0.2), transparent 22%),
    linear-gradient(135deg, #101216, #2f2415);
}

.service-campaign {
  background:
    radial-gradient(circle at 78% 72%, rgba(241, 210, 122, 0.24), transparent 22%),
    linear-gradient(135deg, #101216, #2c1710);
}

.service-print {
  background:
    linear-gradient(120deg, rgba(241, 210, 122, 0.16), transparent 28%),
    linear-gradient(135deg, #101216, #2d2a22);
}

.service-motion {
  background:
    radial-gradient(circle at 22% 50%, rgba(241, 210, 122, 0.18), transparent 18%),
    radial-gradient(circle at 64% 50%, rgba(241, 210, 122, 0.22), transparent 18%),
    linear-gradient(135deg, #101216, #1b1710);
}

.service-card h3 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 0.98;
}

.service-card p {
  margin: 12px 0 0;
  line-height: 1.65;
}

.service-card strong {
  color: var(--gold-2);
}

.service-summary {
  margin-top: 0;
  color: rgba(245, 241, 232, 0.78);
}

.service-reveal {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(241, 210, 122, 0.18);
  border-radius: 6px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.42s ease, transform 0.42s ease, border-color 0.42s ease, background 0.42s ease;
}

.service-card:hover .service-reveal,
.service-card:focus-within .service-reveal {
  opacity: 1;
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(241, 210, 122, 0.34);
}

.service-reveal p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-link::after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.28s ease;
}

.service-card-link:hover::after,
.service-card-link:focus-visible::after {
  transform: translateX(4px);
}

.transformation-section {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.transformation-section::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto auto;
  width: 42vw;
  height: 42vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(circle, rgba(200, 148, 58, 0.18), transparent 62%);
  pointer-events: none;
}

.transformation-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

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

.transformation-copy .section-title {
  margin-bottom: 24px;
}

.transformation-points {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.transformation-points article {
  padding: 24px;
  background: #0d0f13;
}

.transformation-points span {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.transformation-points p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.transformation-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #0d0f13;
  border: 1px solid rgba(241, 210, 122, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.transformation-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.1), rgba(5, 6, 8, 0) 48%, rgba(200, 148, 58, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(5, 6, 8, 0.18));
  z-index: 1;
  pointer-events: none;
}

.transformation-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transform: scale(1.012);
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.transformation-layout.is-visible .transformation-visual img {
  transform: scale(1);
}

.comparison-slider {
  cursor: ew-resize;
  margin-bottom: 72px;
  overflow: visible;
  touch-action: none;
  user-select: none;
}

.comparison-slider .comparison-base,
.comparison-slider .comparison-top {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.comparison-slider .comparison-base {
  z-index: 0;
}

.comparison-slider .comparison-top {
  z-index: 1;
  clip-path: inset(0 0 0 var(--split));
}

.comparison-slider input {
  position: absolute;
  inset: auto 24px -48px;
  z-index: 6;
  width: calc(100% - 48px);
  height: 32px;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

.comparison-slider input::-webkit-slider-runnable-track {
  height: 4px;
  background:
    linear-gradient(
      90deg,
      var(--gold-2) 0 var(--split),
      rgba(255, 255, 255, 0.22) var(--split) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.comparison-slider input::-webkit-slider-thumb {
  width: 64px;
  height: 64px;
  margin-top: -31px;
  appearance: none;
  background: transparent;
  border: 0;
}

.comparison-slider input::-moz-range-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.comparison-slider input::-moz-range-progress {
  height: 4px;
  background: var(--gold-2);
  border-radius: 999px;
}

.comparison-slider input::-moz-range-thumb {
  width: 64px;
  height: 64px;
  background: transparent;
  border: 0;
}

.comparison-handle {
  position: absolute;
  inset: 0 auto 0 var(--split);
  z-index: 4;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-2), transparent);
  transform: translateX(-1px);
  pointer-events: none;
}

.comparison-handle span {
  position: absolute;
  top: auto;
  bottom: -60px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #111111;
  background: var(--gold-2);
  border: 4px solid rgba(5, 6, 8, 0.86);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
}

.comparison-handle span::before {
  content: "<>";
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.before-after-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(5, 6, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
  color: #111111;
  background: var(--gold-2);
}

.transformation-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: rgba(241, 210, 122, 0.18);
}

.transformation-metrics article {
  display: grid;
  gap: 8px;
  padding: 26px 28px;
  background: #0d0f13;
}

.transformation-metrics strong {
  font-family: "Bebas Neue", Arial, sans-serif;
  color: var(--gold-2);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
}

.transformation-metrics span {
  color: var(--muted);
  font-weight: 800;
}

.showcase-section {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0), rgba(13, 15, 19, 0.74) 48%, rgba(5, 6, 8, 0)),
    var(--bg);
}

.showcase-shell {
  margin-top: 54px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 28%, rgba(200, 148, 58, 0.12), transparent 28%),
    #07080a;
}

.showcase-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.showcase-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 0.82s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.82s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.showcase-copy h3 {
  max-width: 520px;
  margin: 20px 0 20px;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(3.1rem, 6vw, 6.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.showcase-copy p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.comparison-frame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #111318;
  border: 1px solid rgba(241, 210, 122, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.comparison-frame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.comparison-frame.comparison-slider img {
  min-height: 100%;
}

.comparison-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.08), rgba(5, 6, 8, 0) 52%, rgba(200, 148, 58, 0.1)),
    linear-gradient(180deg, transparent, rgba(5, 6, 8, 0.18));
  pointer-events: none;
}

.comparison-divider {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 2;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-2), transparent);
}

.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: #111111;
  background: var(--gold-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.comparison-render {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.render-before,
.render-after {
  min-height: 430px;
  padding: clamp(24px, 4vw, 42px);
}

.render-before {
  color: #1c1c1a;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(236, 232, 224, 0.96)),
    #f4f0e8;
}

.render-after {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(241, 210, 122, 0.25), transparent 26%),
    linear-gradient(135deg, #111318, #33240e);
}

.render-before strong,
.render-after strong {
  display: block;
  margin-bottom: 92px;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.render-before span,
.render-after span {
  display: block;
  max-width: 240px;
  padding: 13px 0;
  border-top: 1px solid currentColor;
  font-weight: 800;
  opacity: 0.72;
}

.brand-render .render-after {
  background:
    radial-gradient(circle at 72% 22%, rgba(241, 210, 122, 0.34), transparent 24%),
    linear-gradient(140deg, #0b0c0f, #4a3210);
}

.web-render .render-before {
  background:
    linear-gradient(180deg, #fafafa, #e9e7e1);
}

.web-render .render-after {
  background:
    radial-gradient(circle at 22% 20%, rgba(241, 210, 122, 0.2), transparent 24%),
    linear-gradient(140deg, #0d0f13, #1e2528 52%, #5a3b12);
}

.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
}

.showcase-arrow,
.showcase-dots button {
  cursor: pointer;
}

.showcase-arrow {
  min-width: 84px;
  padding: 10px 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.showcase-arrow:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(241, 210, 122, 0.3);
}

.showcase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.showcase-dots button {
  width: 42px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  border: 0;
  border-radius: 999px;
  transition: width 0.24s ease, background 0.24s ease;
}

.showcase-dots button.is-active {
  width: 78px;
  background: var(--gold-2);
}

.section-dark {
  background: var(--paper);
  color: #15120d;
}

.section-dark .gold-kicker,
.section-dark .badge {
  color: #8f641c;
}

.section-dark .section-copy,
.section-dark .work-body p {
  color: rgba(21, 18, 13, 0.7);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  background: rgba(21, 18, 13, 0.18);
}

.work-card {
  position: relative;
  overflow: hidden;
  background: #fbf7ee;
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}

.work-card:hover {
  box-shadow: 0 20px 64px rgba(21, 18, 13, 0.18);
  transform: translateY(-7px);
}

.work-media {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #17191d;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-card:hover .work-media img {
  transform: scale(1.055);
}

.work-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}

.work-card:hover .work-media::after {
  transform: scaleX(1);
}

.work-reveal {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 16px;
  color: var(--ink);
  background: rgba(5, 6, 8, 0.78);
  border: 1px solid rgba(241, 210, 122, 0.28);
  opacity: 0;
  transform: translateY(16px);
  backdrop-filter: blur(14px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.work-card:hover .work-reveal,
.work-card:focus-within .work-reveal {
  opacity: 1;
  transform: translateY(0);
}

.work-reveal span {
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.work-reveal strong {
  color: var(--gold-2);
  font-size: 0.95rem;
}

.gradient-1 {
  background:
    radial-gradient(circle at 24% 20%, rgba(241, 210, 122, 0.38), transparent 25%),
    linear-gradient(135deg, #16181e, #42301a);
}

.gradient-2 {
  background:
    radial-gradient(circle at 78% 24%, rgba(245, 241, 232, 0.2), transparent 24%),
    linear-gradient(135deg, #0d0f13, #725321);
}

.placeholder-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-body {
  min-height: 270px;
  padding: 28px;
}

.work-body h3 {
  margin: 20px 0 16px;
  color: #15120d;
  font-size: 2.35rem;
  line-height: 0.95;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 7vw, 104px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.timeline article {
  min-height: 290px;
  padding: 28px 22px 0 0;
  border-right: 1px solid var(--line);
  transition: border-color 0.28s ease;
}

.timeline article:hover {
  border-color: rgba(241, 210, 122, 0.28);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline h3 {
  margin: 84px 0 12px;
  font-size: 2.1rem;
  line-height: 1;
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 148, 58, 0.12), transparent 28%),
    var(--bg);
}

.process-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.process-copy .section-title {
  margin-bottom: 24px;
}

.process-board {
  display: block;
}

.process-board-visual {
  position: absolute;
  z-index: 4;
  top: var(--process-card-top, 0px);
  left: 28px;
  right: 0;
  height: var(--process-panel-height, clamp(300px, 24vw, 350px));
  min-height: 0;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 22%, rgba(241, 210, 122, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #0d0f13;
  border: 1px solid rgba(241, 210, 122, 0.18);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  pointer-events: none;
  transition:
    top 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.42s ease,
    box-shadow 0.42s ease;
}

.process-board-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(241, 210, 122, 0.12);
}

.process-board-visual::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 210, 122, 0.7), transparent);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-board[data-active="1"] .process-board-visual::after {
  transform: scaleX(0.55);
}

.process-board[data-active="2"] .process-board-visual::after {
  transform: scaleX(0.76);
}

.process-board[data-active="3"] .process-board-visual::after {
  transform: scaleX(1);
}

.process-board-frame {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 54px);
  opacity: 0;
  transform: translateY(18px) scale(1.015);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-board-frame::before,
.process-board-frame::after {
  content: "";
  position: absolute;
  opacity: 0.8;
  pointer-events: none;
}

.process-board-frame::before {
  inset: 44px auto auto 44px;
  width: min(260px, 40%);
  height: 180px;
  border: 1px solid rgba(241, 210, 122, 0.18);
  background:
    linear-gradient(90deg, rgba(241, 210, 122, 0.22) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(241, 210, 122, 0.16) 0 1px, transparent 1px 100%);
  background-size: 42px 42px;
}

.process-board-frame::after {
  right: 54px;
  top: 54px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(241, 210, 122, 0.26);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(200, 148, 58, 0.08), 0 0 28px rgba(200, 148, 58, 0.08);
}

.process-board-frame.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-board-frame span {
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-board-frame strong {
  max-width: 560px;
  margin-top: 18px;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.85;
  text-transform: uppercase;
  text-wrap: balance;
}

.process-steps {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 28px;
  --process-card-top: 0px;
  --process-panel-height: clamp(300px, 24vw, 350px);
}

.process-progress-line {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.process-progress-line::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: var(--process-progress, 12%);
  background: linear-gradient(180deg, var(--gold-2), rgba(200, 148, 58, 0.14));
  box-shadow: 0 0 20px rgba(200, 148, 58, 0.3);
  transition: height 0.62s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  transition: background 0.42s ease, border-color 0.42s ease, transform 0.42s ease, box-shadow 0.42s ease;
}

.process-step > * {
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -34px;
  width: 13px;
  height: 13px;
  background: #121419;
  border: 1px solid rgba(241, 210, 122, 0.28);
  border-radius: 50%;
  transition: background 0.42s ease, box-shadow 0.42s ease, transform 0.42s ease;
}

.process-step.is-active {
  min-height: calc(var(--process-panel-height, 330px) + 210px);
  padding-top: calc(var(--process-panel-height, 330px) + 46px);
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 210, 122, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.035);
  border-color: rgba(241, 210, 122, 0.22);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  transform: none;
}

.process-step.is-active > * {
  opacity: 1;
  transform: none;
}

.process-step.is-active::before {
  background: var(--gold-2);
  box-shadow: 0 0 24px rgba(241, 210, 122, 0.45);
  transform: scale(1.08);
}

.process-step span {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 44px 0 12px;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proof-band div {
  display: grid;
  gap: 18px;
  min-height: 250px;
  padding: clamp(28px, 5vw, 58px);
  background: #0d0f13;
}

.proof-band strong {
  font-family: "Bebas Neue", Arial, sans-serif;
  color: var(--gold-2);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.8;
}

.proof-band span {
  max-width: 360px;
  color: var(--muted);
  font-weight: 700;
}

.clients-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(241, 210, 122, 0.1), transparent 24%),
    #07080a;
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 94px);
  align-items: start;
}

.clients-copy .section-title {
  margin-bottom: 24px;
}

.client-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.client-tile {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 24px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #0d0f13;
  transition: background 0.28s ease, transform 0.28s ease;
}

.client-tile:hover {
  background:
    linear-gradient(145deg, rgba(241, 210, 122, 0.1), rgba(255, 255, 255, 0.025)),
    #0d0f13;
  transform: translateY(-3px);
}

.client-tile img {
  width: min(480px, 96%);
  max-height: 184px;
  object-fit: contain;
  opacity: 0.84;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.2));
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.client-tile:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.past-client {
  opacity: 0.82;
}

.contact-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(200, 148, 58, 0.16), transparent 28%),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  gap: clamp(32px, 7vw, 96px);
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.contact-card:hover {
  background: var(--surface-2);
  border-color: rgba(241, 210, 122, 0.2);
  transform: translateY(-3px);
}

.contact-card a {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-form-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 2rem;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.contact-form textarea {
  resize: vertical;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(241, 210, 122, 0.08);
  border: 1px solid rgba(241, 210, 122, 0.22);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status[data-state] {
  display: block;
}

.form-status[data-state="success"] {
  color: var(--gold-2);
}

.form-status[data-state="error"] {
  color: #f4c9bd;
  border-color: rgba(244, 201, 189, 0.24);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted-2);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(200, 148, 58, 0.28);
  border-color: var(--gold);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-2);
}

.seo-page-main {
  min-height: 72vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(200, 148, 58, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(5, 6, 8, 0));
}

.seo-hero {
  padding: clamp(86px, 12vw, 150px) 0 clamp(52px, 7vw, 88px);
}

.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
}

.seo-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  text-wrap: balance;
}

.seo-hero p:not(.kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.seo-hero img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(241, 210, 122, 0.24);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.seo-hero-simple img {
  aspect-ratio: 16 / 9;
}

.seo-panel-section,
.seo-related-section {
  padding: clamp(42px, 6vw, 76px) 0;
}

.seo-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(241, 210, 122, 0.16);
  border: 1px solid rgba(241, 210, 122, 0.16);
}

.seo-panel-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 18% 16%, rgba(241, 210, 122, 0.08), transparent 26%),
    #0d0f13;
}

.seo-panel-grid h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
}

.seo-panel-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.seo-related {
  display: grid;
  gap: 20px;
}

.seo-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-link-grid a {
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(241, 210, 122, 0.24);
  border-radius: 4px;
  font-weight: 800;
}

.seo-link-grid a:hover,
.seo-link-grid a:focus-visible {
  color: #111111;
  background: var(--gold-2);
}

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

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms);
}

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.075) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (max-width: 1060px) {
  .split-head,
  .process-layout,
  .transformation-layout,
  .clients-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-layout {
    gap: clamp(76px, 14vw, 108px);
  }

  .briefing-grid,
  .services-grid,
  .transformation-metrics,
  .proof-strip-inner,
  .client-wall,
  .work-grid,
  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-stage {
    min-height: 850px;
  }

  .showcase-panel {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-copy {
    position: static;
  }

  .process-board-visual {
    position: absolute;
    top: var(--process-card-top, 0px);
  }

  .timeline article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .header-inner {
    min-height: 66px;
  }

  .logo {
    height: 38px;
  }

  .nav,
  .site-header .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    transition: grid-template-rows 0.28s ease, opacity 0.28s ease, padding 0.28s ease;
  }

  .site-header.is-menu-open .mobile-menu {
    grid-template-rows: 1fr;
    padding: 0 0 18px;
    opacity: 1;
  }

  .mobile-menu > * {
    min-height: 0;
  }

  .mobile-menu nav {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--line);
  }

  .mobile-menu a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    color: var(--muted);
    background: rgba(8, 9, 11, 0.94);
    font-weight: 800;
  }

  .mobile-menu a:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.055);
  }

  .site-header .mobile-menu .btn {
    display: flex;
    width: 100%;
    margin-top: 12px;
    color: #111111;
    background: var(--gold);
  }

  .site-header.is-scrolled .header-inner,
  .header-inner {
    min-height: 66px;
  }

  .site-header.is-scrolled .logo,
  .logo {
    height: 38px;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero-content {
    padding-bottom: 12vh;
  }

  .display-title {
    font-size: clamp(3.35rem, 13vw, 5rem);
    line-height: 0.9;
  }

  .section-title {
    max-width: 10.5ch;
    font-size: clamp(2.75rem, 13vw, 4.3rem);
    line-height: 0.92;
  }

  .process-copy {
    padding-bottom: 34px;
  }

  .process-board {
    margin-top: 34px;
  }

  .hero .kicker {
    max-width: 32ch;
    letter-spacing: 0.1em;
    line-height: 1.45;
  }

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

  .briefing-grid,
  .services-grid,
  .transformation-metrics,
  .proof-strip-inner,
  .client-wall,
  .work-grid,
  .timeline,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .showcase-stage {
    min-height: 860px;
  }

  .showcase-panel {
    padding: 24px;
  }

  .showcase-copy h3 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .comparison-frame,
  .comparison-frame img,
  .render-before,
  .render-after {
    min-height: 320px;
  }

  .comparison-divider span {
    width: 62px;
    height: 62px;
    font-size: 0.54rem;
  }

  .render-before,
  .render-after {
    padding: 20px;
  }

  .render-before strong,
  .render-after strong {
    margin-bottom: 54px;
  }

  .showcase-controls {
    padding: 16px;
  }

  .showcase-arrow {
    min-width: 64px;
    padding-inline: 10px;
  }

  .showcase-dots button {
    width: 26px;
  }

  .showcase-dots button.is-active {
    width: 44px;
  }

  .briefing-grid article,
  .service-card,
  .client-tile,
  .timeline article,
  .proof-signal,
  .proof-band div {
    min-height: auto;
  }

  .service-card {
    padding: 22px;
  }

  .service-card-visual {
    height: 150px;
    margin: 22px 0;
  }

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

  .gold-thread {
    height: 58px;
  }

  .section-thread {
    margin: -26px 0;
  }

  .process-board-visual {
    left: 22px;
    height: 252px;
    min-height: 0;
  }

  .process-board-frame {
    align-content: center;
    padding: 24px;
  }

  .process-board-frame::before {
    width: min(220px, 52%);
    height: 136px;
  }

  .process-board-frame::after {
    width: 100px;
    height: 100px;
    right: 34px;
    top: 42px;
  }

  .process-board-frame strong {
    max-width: 8ch;
    margin-top: 12px;
    font-size: clamp(2.35rem, 11.6vw, 3.55rem);
    line-height: 0.9;
  }

  .process-board-frame span {
    font-size: 0.7rem;
    line-height: 1.1;
  }

  .process-steps {
    padding-left: 22px;
  }

  .process-step {
    min-height: 220px;
    padding: 22px;
  }

  .process-step.is-active {
    min-height: 334px;
    padding-top: 328px;
    background:
      radial-gradient(circle at 18% 18%, rgba(241, 210, 122, 0.08), transparent 28%),
      rgba(255, 255, 255, 0.035);
    border-color: rgba(241, 210, 122, 0.22);
  }

  .process-step.is-active > * {
    opacity: 1;
    transform: none;
  }

  .process-step::before {
    left: -28px;
  }

  .process-step h3 {
    margin: 38px 0 12px;
    font-size: 2rem;
  }

  .briefing-grid article,
  .timeline article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .briefing-grid h2,
  .service-card h3,
  .timeline h3 {
    margin-top: 44px;
  }

  .transformation-visual,
  .transformation-visual img {
    min-height: 270px;
  }

  .comparison-slider .comparison-base,
  .comparison-slider .comparison-top {
    min-height: 100%;
  }

  .comparison-handle span {
    width: 46px;
    height: 46px;
    bottom: -56px;
  }

  .before-after-label {
    top: 12px;
  }

  .before-label {
    left: 12px;
  }

  .after-label {
    right: 12px;
  }

  .work-body {
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* Cohesive site refactor: tighter flow, fewer repeated blocks, safer process layout. */
main {
  display: flex;
  flex-direction: column;
}

.briefing-strip,
.intro-section,
.showcase-section,
.proof-band,
.transformation-metrics {
  display: none;
}

.premium-proof {
  order: 1;
}

.service-band {
  order: 2;
}

.transformation-section {
  order: 3;
}

.process-section {
  order: 4;
}

.section-dark {
  order: 5;
}

.clients-section {
  order: 6;
}

.contact-section {
  order: 7;
}

.section {
  padding: clamp(52px, 7vw, 86px) 0;
}

.value-section {
  padding: clamp(46px, 6vw, 78px) 0 clamp(28px, 3.4vw, 44px);
}

.value-section .section-thread {
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  margin: 0;
  opacity: 0.72;
}

.value-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  margin-bottom: 30px;
}

.value-title-block {
  display: grid;
  align-content: end;
}

.value-title-block .kicker {
  margin-bottom: clamp(14px, 1.8vw, 22px);
}

.value-head .section-title {
  max-width: 13ch;
}

.value-head > .section-copy {
  align-self: end;
  max-width: 620px;
}

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

.proof-signal {
  min-height: 176px;
  padding: 24px;
}

.proof-signal h3,
.service-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.proof-signal h3 {
  font-weight: 900;
}

.service-catalog-head {
  max-width: none;
  margin-bottom: 34px;
}

.service-band {
  padding-top: clamp(28px, 3.2vw, 42px);
}

.service-catalog-head .section-title {
  max-width: 12ch;
  margin-bottom: 18px;
}

.service-card {
  min-height: auto;
  padding: 22px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.85rem;
}

.service-card h4 {
  margin-bottom: 10px;
}

.service-summary {
  font-size: 0.94rem;
  line-height: 1.6;
}

.service-reveal {
  margin-top: 16px;
  padding: 15px;
}

.service-card-visual {
  height: 168px;
  margin: 20px 0 22px;
}

.card-thread {
  height: 30px;
  margin: 0 0 6px;
}

.transformation-section {
  padding-top: clamp(44px, 6vw, 78px);
}

.transformation-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr);
}

.transformation-copy .section-title {
  max-width: 11ch;
}

.transformation-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.transformation-points article {
  padding: 20px;
}

.transformation-points ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.transformation-points li {
  position: relative;
  padding-left: 18px;
}

.transformation-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 1px;
  background: var(--gold-2);
}

.transformation-visual,
.transformation-visual img {
  min-height: 340px;
}

.transformation-gallery {
  display: grid;
  gap: 18px;
  align-self: center;
}

.transformation-gallery-stage {
  position: relative;
}

.transformation-gallery .comparison-slider .comparison-base,
.transformation-gallery .comparison-slider .comparison-top {
  background: #0d0f13;
  object-fit: contain;
}

.transformation-gallery .comparison-slider {
  margin-bottom: 116px;
}

.transformation-gallery .before-after-label {
  top: auto;
  bottom: -104px;
  z-index: 7;
  backdrop-filter: none;
  pointer-events: none;
}

.transformation-gallery .before-label {
  left: 24px;
}

.transformation-gallery .after-label {
  right: 24px;
}

.transformation-comparison-panel {
  display: none;
}

.transformation-comparison-panel.is-active {
  display: block;
}

.transformation-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.gallery-arrow {
  min-width: 86px;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(241, 210, 122, 0.28);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.gallery-arrow-next,
.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: #111111;
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  transform: translateY(-2px);
}

.gallery-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(241, 210, 122, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.gallery-dots button.is-active,
.gallery-dots button:hover,
.gallery-dots button:focus-visible {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: scale(1.18);
}

.process-section {
  padding-top: clamp(54px, 7vw, 90px);
}

.process-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 110px;
  padding-bottom: 0;
}

.process-copy .section-title {
  max-width: 10.5ch;
}

.process-board {
  margin-top: 0;
}

.process-steps {
  gap: 12px;
  padding-left: 28px;
  --process-panel-height: clamp(260px, 21vw, 330px);
}

.process-board-visual {
  position: sticky;
  top: 96px;
  left: auto;
  right: auto;
  height: var(--process-panel-height);
  margin-bottom: 14px;
}

.process-step,
.process-step.is-active {
  min-height: auto;
  padding: 22px 24px;
}

.process-step.is-active {
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 210, 122, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(241, 210, 122, 0.34);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.process-step.is-active > * {
  opacity: 1;
  transform: none;
}

.process-step h3 {
  margin: 30px 0 10px;
}

.section-dark {
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(241, 210, 122, 0.08), transparent 24%),
    #08090c;
}

.section-dark .section-copy,
.section-dark .work-body p {
  color: var(--muted);
}

.section-dark .work-body h3 {
  color: var(--ink);
}

.work-grid {
  margin-top: 34px;
  background: rgba(241, 210, 122, 0.14);
}

.work-card {
  background: #0d0f13;
  border: 1px solid rgba(245, 241, 232, 0.1);
}

.work-card:hover {
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.32);
}

.work-body {
  min-height: auto;
  padding: 24px;
}

.work-body p {
  margin: 10px 0 0;
}

.work-body strong {
  color: var(--gold-2);
}

.work-media {
  height: 250px;
}

.placeholder-label {
  display: none;
}

.clients-section {
  padding-top: clamp(48px, 6vw, 80px);
}

.clients-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.2fr);
  align-items: center;
}

.clients-copy {
  align-self: center;
}

.client-wall {
  align-self: center;
}

.client-tile {
  min-height: 160px;
}

.client-tile img {
  max-height: 140px;
}

.contact-section {
  padding-top: clamp(54px, 7vw, 86px);
}

@media (max-width: 1060px) {
  .value-head,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-copy,
  .process-board-visual {
    position: relative;
    top: auto;
  }

  .process-board-visual {
    height: 280px;
  }

  .transformation-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 42px 0;
  }

  .value-section {
    padding: 38px 0 24px;
  }

  .value-section .section-thread {
    top: -20px;
  }

  .value-head {
    gap: 18px;
    margin-bottom: 22px;
  }

  .value-title-block .kicker {
    margin-bottom: 12px;
  }

  .outcome-grid,
  .transformation-points {
    grid-template-columns: 1fr;
  }

  .proof-signal {
    min-height: auto;
  }

  .service-card-visual {
    height: 148px;
  }

  .transformation-visual,
  .transformation-visual img {
    min-height: 280px;
  }

  .process-layout {
    gap: 28px;
  }

  .process-board {
    margin-top: 0;
  }

  .process-board-visual {
    height: 238px;
  }

  .process-step,
  .process-step.is-active {
    min-height: auto;
    padding: 20px;
  }

  .process-board-frame strong {
    max-width: 10ch;
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .work-media {
    height: 220px;
  }

  .client-tile {
    min-height: 132px;
  }
}

/* Reliable process interaction: visual changes above compact, tappable steps. */
.process-board-visual {
  position: sticky;
  top: 96px;
  left: auto;
  right: auto;
  height: clamp(260px, 21vw, 330px);
  margin-bottom: 14px;
}

.process-step,
.process-step.is-active {
  min-height: auto;
  padding: 22px 24px;
}

.process-step {
  cursor: pointer;
  outline: 0;
}

.process-step:hover,
.process-step:focus-visible {
  border-color: rgba(241, 210, 122, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.process-step.is-active {
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 210, 122, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(241, 210, 122, 0.42);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.process-step.is-active > * {
  opacity: 1;
  transform: none;
}

.process-step.is-active h3,
.process-step:hover h3,
.process-step:focus-visible h3 {
  color: var(--gold-2);
}

.process-step h3 {
  margin: 28px 0 10px;
}

@media (max-width: 1060px) {
  .process-board-visual {
    position: relative;
    top: auto;
    height: 280px;
  }
}

@media (max-width: 760px) {
  .process-board-visual {
    height: 238px;
  }

  .process-step,
  .process-step.is-active {
    min-height: auto;
    padding: 20px;
  }

  .process-step h3 {
    margin: 24px 0 10px;
  }
}

/* Traveling process visual: moves with the active step without covering copy. */
.process-steps {
  --process-panel-top: 0px;
  --process-panel-height: clamp(190px, 15vw, 250px);
  --process-panel-width: min(42%, 460px);
}

.process-board-visual {
  position: absolute;
  z-index: 3;
  top: var(--process-panel-top);
  right: 0;
  left: auto;
  width: var(--process-panel-width);
  height: var(--process-panel-height);
  margin: 0;
  transition:
    top 0.68s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.process-step {
  min-height: 152px;
  padding: 20px calc(var(--process-panel-width) + 30px) 20px 24px;
}

.process-step.is-active {
  min-height: calc(var(--process-panel-height) + 36px);
}

.process-step p {
  max-width: 46ch;
}

@media (max-width: 1060px) {
  .process-steps {
    --process-panel-height: 238px;
    --process-panel-width: 100%;
  }

  .process-board-visual {
    position: absolute;
    top: var(--process-panel-top);
    right: 0;
    width: calc(100% - 0px);
  }

  .process-step {
    min-height: 160px;
    padding: 22px;
  }

  .process-step.is-active {
    min-height: calc(var(--process-panel-height) + 156px);
    padding-top: calc(var(--process-panel-height) + 28px);
  }
}

@media (max-width: 760px) {
  .process-steps {
    --process-panel-height: 208px;
  }

  .process-step {
    min-height: auto;
    padding: 20px;
  }

  .process-step.is-active {
    min-height: calc(var(--process-panel-height) + 148px);
    padding-top: calc(var(--process-panel-height) + 26px);
  }
}

/* Process scale polish: keep the left headline and traveling panel in proportion. */
.process-copy .section-title {
  max-width: 12ch;
  font-size: clamp(3.6rem, 5.2vw, 6.2rem);
  line-height: 0.92;
}

.process-copy .section-copy {
  max-width: 520px;
}

.process-board-frame {
  padding: clamp(22px, 3.5vw, 38px);
}

.process-board-frame::before {
  width: min(250px, 38%);
  height: 150px;
}

.process-board-frame::after {
  width: clamp(90px, 9vw, 132px);
  height: clamp(90px, 9vw, 132px);
}

.process-board-frame strong {
  max-width: 9.5ch;
  font-size: clamp(3.3rem, 5.6vw, 5.9rem);
  line-height: 0.88;
}

@media (max-width: 1060px) {
  .process-copy .section-title {
    max-width: 12ch;
    font-size: clamp(3.2rem, 9vw, 5.2rem);
  }

  .process-board-frame strong {
    font-size: clamp(3rem, 8vw, 4.8rem);
  }
}

@media (max-width: 760px) {
  .process-copy .section-title {
    max-width: 11ch;
    font-size: clamp(2.85rem, 12vw, 4.2rem);
  }

  .process-board-frame {
    padding: 20px;
  }

  .process-board-frame::before {
    width: min(210px, 52%);
    height: 120px;
  }

  .process-board-frame::after {
    width: 86px;
    height: 86px;
  }

  .process-board-frame strong {
    max-width: 10ch;
    font-size: clamp(2.55rem, 11vw, 3.45rem);
  }
}

/* Stable process board: no overlay collisions, steps drive the visual above. */
.process-board {
  display: grid;
  gap: 16px;
}

.process-steps {
  --process-panel-top: 0px;
  --process-panel-height: clamp(230px, 19vw, 300px);
  --process-panel-width: 100%;
  display: grid;
  gap: 12px;
  padding-left: 28px;
}

.process-board-visual {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  height: var(--process-panel-height);
  margin: 0 0 4px;
  overflow: hidden;
}

.process-step,
.process-step.is-active {
  min-height: auto;
  padding: 20px 22px;
}

.process-step p {
  max-width: 58ch;
}

.process-board-frame {
  overflow: hidden;
}

.process-board-frame strong {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

@media (max-width: 1060px) {
  .process-board-visual {
    height: 260px;
  }
}

@media (max-width: 760px) {
  .process-steps {
    padding-left: 22px;
  }

  .process-board-visual {
    height: 220px;
  }

  .process-step,
  .process-step.is-active {
    padding: 18px 20px;
  }

  .process-board-frame strong {
    font-size: clamp(2.4rem, 10vw, 3.35rem);
  }
}

/* Process board in active step: real layout, no overlay positioning. */
.process-steps {
  --process-panel-height: clamp(230px, 19vw, 300px);
  display: grid;
  gap: 12px;
  padding-left: 28px;
}

.process-board-visual {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  height: var(--process-panel-height);
  margin: 0 0 22px;
  overflow: hidden;
  pointer-events: none;
}

.process-step,
.process-step.is-active {
  min-height: auto;
  padding: 20px 22px;
}

.process-step.is-active {
  border-color: rgba(241, 210, 122, 0.42);
}

.process-step p {
  max-width: 58ch;
}

.process-board-frame {
  padding: clamp(22px, 3.5vw, 38px);
  overflow: hidden;
}

.process-board-frame img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.03);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.72s ease;
}

.process-board-frame.is-active img {
  opacity: 0.86;
  transform: scale(1);
}

.process-board-frame::before {
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  border: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.86), rgba(8, 9, 12, 0.4) 48%, rgba(8, 9, 12, 0.18)),
    linear-gradient(180deg, rgba(8, 9, 12, 0.14), rgba(8, 9, 12, 0.78));
  opacity: 1;
}

.process-board-frame::after {
  inset: auto 26px 24px;
  z-index: 2;
  width: auto;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(241, 210, 122, 0.78), transparent);
  box-shadow: 0 0 24px rgba(200, 148, 58, 0.22);
}

.process-board-frame span,
.process-board-frame strong {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.process-board-frame strong {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

@media (max-width: 1060px) {
  .process-board-visual {
    height: 260px;
  }
}

@media (max-width: 760px) {
  .process-steps {
    padding-left: 22px;
  }

  .process-board-visual {
    height: 220px;
    margin-bottom: 18px;
  }

  .process-step,
  .process-step.is-active {
    padding: 18px 20px;
  }

  .process-board-frame {
    padding: 20px;
  }

  .process-board-frame strong {
    font-size: clamp(2.4rem, 10vw, 3.35rem);
  }
}

/* Editorial flow refinement: tighter story, less repetition, clearer hierarchy. */
html {
  scroll-behavior: smooth;
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  order: 1;
}

.value-section {
  order: 2;
}

.briefing-strip,
.intro-section,
.showcase-section,
.proof-band {
  display: none;
}

.service-band {
  order: 3;
  padding: clamp(52px, 7vw, 88px) 0 clamp(48px, 6vw, 78px);
}

.transformation-section {
  order: 4;
  padding: clamp(50px, 7vw, 86px) 0 clamp(48px, 6vw, 76px);
}

#process {
  order: 5;
}

#work {
  order: 6;
}

.clients-section {
  order: 7;
}

.contact-section {
  order: 8;
}

.section {
  padding: clamp(54px, 7vw, 94px) 0;
}

.section-title {
  font-size: clamp(2.65rem, 4.9vw, 4.85rem);
  line-height: 0.92;
  max-width: 13ch;
}

.split-head {
  gap: clamp(24px, 4vw, 62px);
}

.split-head::before,
.transformation-copy::before,
.process-layout > div:first-child::before,
.contact-grid > div:first-child::before {
  top: -22px;
}

.section-copy {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.68;
}

.value-section {
  padding: clamp(42px, 5vw, 66px) 0 clamp(28px, 3.8vw, 46px);
}

.value-head {
  display: block;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  gap: 0;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.value-head .section-title {
  font-size: clamp(2.75rem, 4.7vw, 4.7rem);
}

.value-head > .section-copy {
  max-width: 620px;
  margin-top: 20px;
}

.proof-signal {
  min-height: 190px;
  padding: clamp(20px, 2.4vw, 28px);
}

.proof-signal strong {
  font-size: clamp(3.2rem, 5vw, 5rem);
}

.service-catalog-head {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(26px, 3.5vw, 38px);
  text-align: left;
}

.service-catalog-head .section-title {
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 5vw, 5.1rem);
  max-width: 12ch;
}

.service-catalog-head .section-copy {
  max-width: 620px;
}

.services-grid {
  gap: 16px;
}

.service-card {
  min-height: auto;
  padding: 22px;
}

.service-card-visual {
  height: 154px;
  margin: 18px 0 20px;
}

.service-card h3 {
  font-size: clamp(1.8rem, 2.2vw, 2.15rem);
}

.service-card h4 {
  margin-bottom: 8px;
  line-height: 1.35;
}

.service-card p {
  line-height: 1.56;
}

.service-summary {
  font-size: 0.95rem;
}

.service-reveal {
  max-height: 0;
  margin-top: 0;
  padding: 0 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
}

.service-card:hover .service-reveal,
.service-card:focus-visible .service-reveal,
.service-card:focus-within .service-reveal,
.service-card.is-open .service-reveal {
  max-height: 210px;
  margin-top: 16px;
  padding: 16px;
  opacity: 1;
  transform: translateY(0);
}

.service-card:focus-visible {
  outline: 2px solid rgba(241, 210, 122, 0.48);
  outline-offset: 3px;
}

.transformation-layout {
  gap: clamp(28px, 5vw, 64px);
}

.transformation-copy .section-title {
  max-width: 10.8ch;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  margin-bottom: 18px;
}

.transformation-points {
  margin-top: 26px;
}

.transformation-points article {
  padding: 20px;
}

.transformation-visual {
  min-height: 360px;
}

.transformation-visual img {
  min-height: 360px;
}

.transformation-metrics {
  display: none;
}

.process-section {
  padding: clamp(54px, 7vw, 92px) 0;
}

.process-layout {
  gap: clamp(28px, 4.4vw, 62px);
}

.process-copy .section-title {
  font-size: clamp(3.05rem, 5vw, 5.7rem);
  max-width: 12ch;
}

.process-board-frame strong {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.process-step h3 {
  margin: 20px 0 8px;
}

.process-step,
.process-step.is-active {
  padding: 18px 20px;
}

.section-dark {
  padding: clamp(52px, 7vw, 88px) 0;
}

.section-dark .section-title {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  max-width: 12ch;
}

.work-head {
  display: block;
}

.work-head .section-copy {
  max-width: 620px;
  margin-top: 20px;
}

.work-grid {
  margin-top: 28px;
}

.work-media {
  height: 220px;
}

.work-body {
  padding: 22px;
}

.work-body h3 {
  font-size: clamp(2rem, 2.7vw, 2.75rem);
}

.clients-section {
  padding: clamp(48px, 6vw, 78px) 0;
}

.clients-copy .section-title {
  font-size: clamp(2.8rem, 4.8vw, 4.7rem);
}

.contact-section {
  padding: clamp(50px, 6.5vw, 84px) 0;
}

.contact-grid {
  gap: clamp(24px, 4vw, 58px);
}

.contact-grid .section-title {
  font-size: clamp(2.85rem, 4.8vw, 4.9rem);
}

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

@media (max-width: 760px) {
  .section,
  .service-band,
  .transformation-section,
  .process-section,
  .section-dark,
  .clients-section,
  .contact-section {
    padding: 38px 0;
  }

  .section-title,
  .service-catalog-head .section-title,
  .transformation-copy .section-title,
  .process-copy .section-title,
  .section-dark .section-title,
  .clients-copy .section-title,
  .contact-grid .section-title {
    font-size: clamp(2.5rem, 11vw, 4rem);
    max-width: 12ch;
  }

  .value-section {
    padding: 36px 0 26px;
  }

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

  .service-card {
    padding: 20px;
  }

  .service-card-visual {
    height: 150px;
  }

  .transformation-visual,
  .transformation-visual img {
    min-height: 240px;
  }

  .work-media {
    height: 205px;
  }
}

@media (max-width: 900px) {
  .seo-hero-grid,
  .seo-panel-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    padding: 72px 0 42px;
  }

  .seo-panel-grid article {
    min-height: auto;
  }

  .seo-landing .site-header .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    font-size: 0.82rem;
  }

  .seo-landing .site-header .btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-image,
  .transformation-visual img,
  .service-card-visual img,
  .service-card-visual::before,
  .service-card-visual::after,
  .service-card-visual span,
  .work-media img,
  .process-board-frame,
  .process-step {
    transform: none;
  }

  .hero-reveal,
  .motion-reveal,
  .service-reveal,
  .work-reveal,
  .process-board-frame.is-active {
    opacity: 1;
    transform: none;
  }

  .work-reveal {
    position: static;
    margin: 14px;
    color: var(--ink);
  }
}
