:root {
  color-scheme: dark;
  --font-original: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-variant-clean: Aptos, "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-variant-editorial: "Segoe UI Variable Display", "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-variant-sharp: Bahnschrift, "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-variant-akomy: Akomy, Bahnschrift, "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-body: var(--font-original);
  --font-display: var(--font-original);
  --font-ui: var(--font-original);
  font-family: var(--font-body);
  --bg: #08090a;
  --surface: rgba(18, 20, 22, 0.74);
  --surface-strong: rgba(26, 29, 31, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f3ee;
  --muted: #b5b2aa;
  --soft: #797e83;
  --teal: #65d1c9;
  --champagne: #d8b66a;
  --steel: #8ca1b3;
  --danger: #ff6b5f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 10%, rgba(101, 209, 201, 0.12), transparent 28rem),
    linear-gradient(180deg, #08090a 0%, #0d0f10 44%, #090a0b 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.38;
}

body::after {
  position: fixed;
  inset: -12% -8%;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 22%, rgba(216, 182, 106, 0.12), transparent 20rem),
    radial-gradient(circle at 78% 12%, rgba(101, 209, 201, 0.1), transparent 22rem),
    radial-gradient(circle at 55% 72%, rgba(216, 182, 106, 0.08), transparent 24rem);
  filter: blur(10px);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem max(1.25rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  font-family: var(--font-ui);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(216, 182, 106, 0.2), rgba(101, 209, 201, 0.1));
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-text {
  color: #ece8df;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.86rem;
}

.nav a {
  position: relative;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(27rem, 0.74fr) minmax(36rem, 1.26fr);
  align-items: center;
  min-height: auto;
  padding: 6.4rem max(1.25rem, calc((100vw - 1440px) / 2)) 2.2rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-process-video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-process-video {
  opacity: 0;
  filter: blur(10px) saturate(0.96) contrast(1.15) brightness(0.78);
  transform: scale(1.12);
  transition: opacity 700ms ease;
}

.hero-media.has-process-video .hero-process-video {
  opacity: 0.62;
}

.hero-media.has-process-video img {
  opacity: 0.24;
  filter: saturate(0.82) contrast(1.08) brightness(0.75);
}

.hero-media img {
  opacity: 0.64;
  filter: saturate(0.92) contrast(1.05);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.95) 0%, rgba(8, 9, 10, 0.74) 38%, rgba(8, 9, 10, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.68) 0%, rgba(8, 9, 10, 0.1) 42%, #08090a 100%);
}

.hero-content {
  max-width: 38rem;
  padding-top: 1.2rem;
}

.eyebrow {
  margin: 0 0 1.05rem;
  color: var(--champagne);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  font-family: var(--font-display);
  max-width: 40rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(105deg, #fff8e7 0%, #f1d58b 34%, #d9f7f4 72%, #8edbd5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3.8rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 2.8rem rgba(216, 182, 106, 0.14);
  text-wrap: balance;
}

h1 span {
  display: block;
}

h2 {
  font-family: var(--font-display);
  margin-bottom: 0;
  background: linear-gradient(105deg, #f5f3ee 0%, #d8b66a 55%, #8edbd5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.9rem;
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-family: var(--font-display);
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-copy {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-actions,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 1.15rem;
  cursor: pointer;
  font-family: var(--font-ui);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.filter-button:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 182, 106, 0.46);
  box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.22);
}

.button-primary:hover {
  background: #ffe69b;
}

.button-secondary:hover,
.filter-button:hover {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.button-primary {
  border-color: rgba(216, 182, 106, 0.62);
  background: linear-gradient(135deg, #ffe69b 0%, #d8b66a 100%);
  color: #11110f;
  font-weight: 800;
  box-shadow: 0 1rem 2rem rgba(216, 182, 106, 0.14);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 0.85rem;
  justify-self: end;
  width: min(100%, 54rem);
  min-width: 0;
  margin-top: 0;
  border: 0;
  border-radius: 12px;
  padding: 0.85rem;
  background:
    linear-gradient(135deg, rgba(101, 209, 201, 0.1), transparent 48%),
    linear-gradient(225deg, rgba(216, 182, 106, 0.08), transparent 44%),
    rgba(8, 10, 11, 0.46);
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  transform: translateX(2.8rem);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.hero-showcase:hover {
  transform: translateX(2.8rem) translateY(-6px);
  background:
    linear-gradient(135deg, rgba(101, 209, 201, 0.13), transparent 48%),
    linear-gradient(225deg, rgba(216, 182, 106, 0.12), transparent 44%),
    rgba(10, 12, 13, 0.58);
}

.hero-showcase::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background:
    radial-gradient(circle at 22% 12%, rgba(216, 182, 106, 0.16), transparent 18rem),
    radial-gradient(circle at 92% 8%, rgba(101, 209, 201, 0.13), transparent 16rem);
  filter: blur(8px);
}

.showcase-topline,
.showcase-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.showcase-topline {
  padding: 0.25rem 0.15rem 0.55rem;
  border-radius: 8px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.showcase-topline:hover {
  background: rgba(255, 255, 255, 0.04);
}

.showcase-topline span,
.showcase-metrics span {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.showcase-topline strong {
  color: var(--champagne);
  font-size: 0.86rem;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.hero-showcase:hover .showcase-topline strong {
  color: #f5d98f;
}

.showcase-frame {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
  border: 0;
  border-radius: 10px;
  padding: 0;
  background: transparent;
}

.showcase-video {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #090b0c;
  box-shadow:
    0 1rem 2.2rem rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase-video::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 55%, rgba(8, 9, 10, 0.56)),
    radial-gradient(circle at 72% 18%, rgba(216, 182, 106, 0.2), transparent 12rem);
  pointer-events: none;
}

.showcase-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transform: scale(1.02);
  pointer-events: none;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-copy,
.showcase-topline span,
.section-intro .eyebrow,
.section-intro h2,
.section-head .eyebrow,
.section-head h2,
.expertise-grid span,
.expertise-grid h3,
.expertise-grid p,
.service-grid h3,
.service-grid p,
.process span,
.process strong,
.process p,
.final-cta .eyebrow,
.final-cta h2,
.final-cta p,
.footer span,
.footer a {
  transition:
    transform 160ms ease,
    color 160ms ease,
    text-shadow 160ms ease;
}

.hero-content .eyebrow:hover,
.hero-content h1:hover,
.hero-copy:hover,
.showcase-topline span:hover,
.section-intro .eyebrow:hover,
.section-intro h2:hover,
.section-head .eyebrow:hover,
.section-head h2:hover,
.expertise-grid span:hover,
.expertise-grid h3:hover,
.expertise-grid p:hover,
.service-grid h3:hover,
.service-grid p:hover,
.process span:hover,
.process strong:hover,
.process p:hover,
.final-cta .eyebrow:hover,
.final-cta h2:hover,
.final-cta p:hover,
.footer span:hover,
.footer a:hover {
  transform: translateY(-1px);
  text-shadow: 0 0 1.1rem rgba(216, 182, 106, 0.18);
}

.hero-copy:hover,
.expertise-grid p:hover,
.service-grid p:hover,
.process p:hover,
.final-cta p:hover,
.footer a:hover {
  color: #d6d1c6;
}

.expertise-grid span,
.process span {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
}

.section,
.section-pad,
.hero-proof,
.final-cta,
.footer {
  width: min(1440px, calc(100% - 3rem));
  margin: 0 auto;
}

.hero-proof {
  display: grid;
  gap: 2rem;
  padding: 1.4rem 0 4.5rem;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(216, 182, 106, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.09), transparent 34%),
    rgba(13, 15, 17, 0.82);
  box-shadow:
    0 1.5rem 3.8rem rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.proof-stats article {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  grid-template-areas:
    "icon number"
    "icon label";
  column-gap: 1rem;
  align-items: center;
  padding: 1.65rem 2rem;
  transition:
    transform 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.proof-stats article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.proof-stats article:hover .proof-icon {
  border-color: rgba(216, 182, 106, 0.48);
  color: #ffe69b;
  box-shadow:
    inset 0 0 1.8rem rgba(216, 182, 106, 0.12),
    0 0 1.4rem rgba(216, 182, 106, 0.12);
}

.proof-stats article:hover strong {
  color: #ffe69b;
}

.proof-stats article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.proof-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(216, 182, 106, 0.28);
  border-radius: 50%;
  color: var(--champagne);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 1.8rem rgba(216, 182, 106, 0.08);
  transition:
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.proof-stats strong {
  grid-area: number;
  color: var(--champagne);
  font-size: 2rem;
  line-height: 1;
  transition: color 200ms ease;
}

.proof-stats p {
  grid-area: label;
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.proof-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(24rem, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.reviews-panel {
  padding-right: 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.mini-section-head h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.45rem;
  background: none;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.2;
}

.mini-section-head h2::after {
  position: absolute;
  bottom: -0.48rem;
  left: 0;
  width: 2.2rem;
  height: 2px;
  content: "";
  background: var(--champagne);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.review-cards article {
  min-height: 10.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.95rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(16, 18, 20, 0.72);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.review-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 182, 106, 0.28);
  background: rgba(23, 25, 27, 0.9);
}

.review-cards span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--champagne);
  font-size: 0.78rem;
}

.review-cards p {
  margin-bottom: 1rem;
  color: #d9d3c8;
  font-size: 0.82rem;
  line-height: 1.5;
}

.review-cards strong {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
}

.review-cards small {
  color: var(--soft);
  font-size: 0.72rem;
}

.workflow-panel {
  display: grid;
  gap: 1.2rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  text-align: center;
  padding: 0.2rem 0.35rem;
  border-radius: 8px;
  transition:
    transform 200ms ease,
    background 200ms ease;
}

.workflow li:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.025);
}

.workflow li::before {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(216, 182, 106, 0.32);
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 50% 15%, rgba(216, 182, 106, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 1.4rem rgba(216, 182, 106, 0.1);
  transition:
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.workflow li:hover::before {
  border-color: rgba(216, 182, 106, 0.54);
  background:
    radial-gradient(circle at 50% 15%, rgba(216, 182, 106, 0.22), transparent 58%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 1.8rem rgba(216, 182, 106, 0.16);
}

.workflow li > span::after {
  position: absolute;
  top: 1.1rem;
  left: calc(50% - 0.6rem);
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: 2px solid var(--champagne);
  opacity: 0.88;
  transition:
    border-color 200ms ease,
    opacity 200ms ease,
    filter 200ms ease;
}

.workflow li:hover > span::after,
.workflow li:hover span::before {
  border-color: #ffe69b;
  opacity: 1;
  filter: drop-shadow(0 0 0.45rem rgba(216, 182, 106, 0.24));
}

.workflow li[data-icon="chat"] > span::after {
  border-radius: 4px;
  box-shadow: inset 0 -0.34rem 0 rgba(216, 182, 106, 0.13);
}

.workflow li[data-icon="chat"] span::before {
  position: absolute;
  top: 1.95rem;
  left: calc(50% - 0.04rem);
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  border-right: 2px solid var(--champagne);
  border-bottom: 2px solid var(--champagne);
  transform: rotate(30deg);
}

.workflow li[data-icon="folder"] > span::after {
  top: 1.18rem;
  height: 0.92rem;
  border-radius: 3px;
  border-top-left-radius: 2px;
}

.workflow li[data-icon="folder"] span::before {
  position: absolute;
  top: 1.02rem;
  left: calc(50% - 0.55rem);
  width: 0.58rem;
  height: 0.22rem;
  content: "";
  border: 2px solid var(--champagne);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.workflow li[data-icon="clapper"] > span::after {
  top: 1.05rem;
  height: 1.05rem;
  border-radius: 3px;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(216, 182, 106, 0.34) 22% 35%, transparent 35% 58%, rgba(216, 182, 106, 0.34) 58% 72%, transparent 72%),
    linear-gradient(180deg, rgba(216, 182, 106, 0.12), transparent);
}

.workflow li[data-icon="clapper"] span::before {
  position: absolute;
  top: 0.93rem;
  left: calc(50% - 0.66rem);
  width: 1.32rem;
  height: 0.28rem;
  content: "";
  border: 2px solid var(--champagne);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  transform: skewX(-14deg);
}

.workflow li[data-icon="send"] > span::after {
  top: 1.14rem;
  left: calc(50% - 0.48rem);
  width: 0;
  height: 0;
  border-width: 0.66rem 0 0.66rem 1.35rem;
  border-style: solid;
  border-color: transparent transparent transparent var(--champagne);
  opacity: 0.92;
  transform: translateX(0.08rem) rotate(-12deg);
}

.workflow li[data-icon="send"]:hover > span::after {
  border-color: transparent transparent transparent #ffe69b;
}

.workflow li + li::after {
  position: absolute;
  top: 1.65rem;
  right: calc(50% + 2.7rem);
  width: calc(100% - 3.8rem);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(216, 182, 106, 0.18), rgba(255, 255, 255, 0.34));
}

.workflow span {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
}

.workflow strong {
  color: #d9d3c8;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.workflow li > span {
  color: #d9d3c8;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 200ms ease;
}

.workflow li:hover > span {
  color: #fff5d5;
}

.workflow-cta {
  justify-self: end;
  margin-top: 0.2rem;
}

.section {
  padding: 5.2rem 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.2fr);
  gap: 3rem;
}

.section-intro p:not(.eyebrow),
.section-head p:not(.eyebrow) {
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head > div:first-child {
  max-width: 46rem;
}

.compact {
  align-items: start;
}

.expertise-grid,
.service-grid,
.portfolio-grid {
  display: grid;
  gap: 1rem;
}

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

.expertise-grid article,
.service-grid article,
.work-card,
.process li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.expertise-grid article:hover,
.service-grid article:hover,
.process li:hover {
  transform: translateY(-5px);
  border-color: rgba(101, 209, 201, 0.34);
  background: var(--surface-strong);
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.24);
}

.expertise-grid article:hover h3,
.service-grid article:hover h3,
.process li:hover strong {
  color: #fff5d5;
}

.expertise-grid article {
  display: grid;
  align-content: space-between;
  min-height: 17rem;
  padding: 1.25rem;
}

.expertise-grid p,
.service-grid p,
.process p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tag-cloud {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-cloud span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.035);
  color: #ddd6c7;
  font-size: 0.9rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.tag-cloud span:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 182, 106, 0.42);
  background: rgba(216, 182, 106, 0.1);
  color: var(--text);
}

.filter-button {
  min-height: 2.6rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.filter-button.is-active {
  border-color: rgba(101, 209, 201, 0.52);
  background: rgba(101, 209, 201, 0.12);
  color: var(--text);
}

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

.work-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 182, 106, 0.34);
  background: var(--surface-strong);
}

.work-preview {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(101, 209, 201, 0.24), transparent 38%),
    linear-gradient(145deg, #171b1e, #0b0d0e 62%, rgba(216, 182, 106, 0.18));
}

a.work-preview {
  cursor: pointer;
}

a.work-preview:focus-visible {
  outline: 2px solid rgba(216, 182, 106, 0.72);
  outline-offset: -4px;
}

a.work-preview:hover::before {
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0) 0%, rgba(8, 9, 10, 0.24) 100%),
    radial-gradient(circle at 80% 18%, rgba(216, 182, 106, 0.3), transparent 16rem);
}

.work-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.94) contrast(1.04) brightness(0.82);
  transition:
    transform 320ms ease,
    filter 320ms ease;
}

.work-preview-label {
  position: absolute;
  inset: auto 1rem 1rem auto;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  background: rgba(8, 9, 10, 0.54);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-preview-player {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.work-preview[data-provider="vimeo"] {
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.2), transparent 34%),
    linear-gradient(145deg, #131719, #090b0c 58%, rgba(101, 209, 201, 0.2));
}

.work-card:hover .work-preview img {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.08) brightness(0.96);
}

.work-card[data-shape="vertical"] .work-preview {
  aspect-ratio: 4 / 5;
}

.work-preview::before {
  position: absolute;
  content: "";
}

.work-preview::before {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.02) 0%, rgba(8, 9, 10, 0.36) 100%),
    radial-gradient(circle at 80% 18%, rgba(216, 182, 106, 0.24), transparent 16rem);
  pointer-events: none;
}

.work-body {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
}

.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--soft);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.work-card h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.work-tags span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 0.35rem 0.48rem;
  color: var(--muted);
  font-size: 0.76rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.work-card:hover .work-tags span {
  border-color: rgba(101, 209, 201, 0.22);
  background: rgba(101, 209, 201, 0.07);
  color: #ddd6c7;
}

.work-tags span:hover {
  transform: translateY(-1px);
}

.work-link {
  position: relative;
  justify-self: start;
  color: var(--champagne);
  font-weight: 800;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.work-link::after {
  position: absolute;
  right: 0;
  bottom: -0.18rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.work-link:hover {
  color: #f5d98f;
  transform: translateX(3px);
}

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

.work-link[aria-disabled="true"] {
  color: var(--soft);
  cursor: default;
}

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

.service-grid article {
  min-height: 13rem;
  padding: 1.25rem;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: 3rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  padding: 1.25rem;
}

.process strong {
  display: block;
  margin: 1.3rem 0 0.55rem;
  font-size: 1.08rem;
}

.final-cta {
  display: grid;
  gap: 1.8rem;
  padding: 3rem 2.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 32%, rgba(216, 182, 106, 0.1), transparent 24rem),
    radial-gradient(circle at 82% 22%, rgba(101, 209, 201, 0.08), transparent 24rem),
    rgba(7, 8, 9, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.final-cta-top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2.35rem;
  align-items: start;
}

.final-copy {
  display: grid;
  align-content: start;
  padding-top: 0.6rem;
}

.final-copy h2 {
  max-width: 38.5rem;
  font-size: clamp(2.85rem, 3.2vw, 3.7rem);
  line-height: 1.15;
}

.final-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.25rem 0 2.15rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.final-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.final-benefits article {
  display: grid;
  justify-items: center;
  gap: 0.72rem;
  min-width: 0;
  padding: 0 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.final-benefits article:first-child {
  border-left: 0;
  padding-left: 0;
}

.final-benefits article:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 182, 106, 0.34);
  background: linear-gradient(180deg, rgba(216, 182, 106, 0.07), transparent 82%);
}

.benefit-icon,
.final-plane {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.85rem;
  height: 3.85rem;
  border: 1px solid rgba(216, 182, 106, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 182, 106, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 0 1.5rem rgba(216, 182, 106, 0.09);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.final-benefits article:hover .benefit-icon,
.final-contact:hover .final-plane {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(216, 182, 106, 0.56);
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 182, 106, 0.24), transparent 58%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 2rem rgba(216, 182, 106, 0.18);
}

.benefit-icon::before,
.benefit-icon::after,
.final-plane::before,
.final-plane::after {
  position: absolute;
  content: "";
}

.benefit-chat::before {
  width: 1.26rem;
  height: 0.9rem;
  border: 2px solid var(--champagne);
  border-radius: 3px;
}

.benefit-chat::after {
  right: 1.16rem;
  bottom: 1.18rem;
  width: 0.38rem;
  height: 0.38rem;
  border-right: 2px solid var(--champagne);
  border-bottom: 2px solid var(--champagne);
  transform: rotate(35deg);
}

.benefit-clapper::before {
  width: 1.35rem;
  height: 1rem;
  border: 2px solid var(--champagne);
  border-radius: 3px;
  background: linear-gradient(90deg, transparent 0 28%, rgba(216, 182, 106, 0.3) 28% 42%, transparent 42% 66%, rgba(216, 182, 106, 0.3) 66% 80%, transparent 80%);
}

.benefit-clapper::after {
  top: 1.14rem;
  width: 1.42rem;
  height: 0.28rem;
  border: 2px solid var(--champagne);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  transform: skewX(-12deg);
}

.benefit-flash::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.45rem 0.96rem 0.15rem;
  border-color: transparent transparent var(--champagne) transparent;
  transform: translate(-0.12rem, -0.24rem) skewX(-12deg);
}

.benefit-flash::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.96rem 0.15rem 0 0.45rem;
  border-color: var(--champagne) transparent transparent transparent;
  transform: translate(0.16rem, 0.28rem) skewX(-12deg);
}

.benefit-award::before {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--champagne);
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.22rem rgba(216, 182, 106, 0.14);
}

.benefit-award::after {
  bottom: 1.08rem;
  width: 0.9rem;
  height: 0.8rem;
  border-right: 2px solid var(--champagne);
  border-bottom: 2px solid var(--champagne);
  border-left: 2px solid var(--champagne);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 50% 70%, 22% 100%);
}

.final-benefits h3 {
  margin: 0;
  color: var(--champagne);
  font-size: 0.88rem;
  line-height: 1.2;
}

.final-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.final-side {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-width: 0;
}

.final-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.final-shot {
  position: relative;
  display: block;
  min-height: 14.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #08090a;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.final-shot::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.04), rgba(8, 9, 10, 0.62)),
    radial-gradient(circle at 78% 14%, rgba(216, 182, 106, 0.2), transparent 9rem);
  pointer-events: none;
}

.final-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.75);
  transform: scale(1.03);
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.final-shot span {
  position: absolute;
  top: 1.05rem;
  left: 1.05rem;
  z-index: 2;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.final-shot:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 182, 106, 0.4);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.34);
}

.final-shot:hover img {
  filter: saturate(1.02) contrast(1.12) brightness(0.9);
  transform: scale(1.09);
}

.final-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: 1.25rem;
  align-items: end;
  min-height: 12.8rem;
  padding: 1.35rem 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(216, 182, 106, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(13, 15, 17, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: default;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.final-brief:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 182, 106, 0.36);
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(15, 17, 19, 0.88);
  box-shadow:
    0 1.2rem 2.4rem rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.final-brief span:first-child {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-brief h3 {
  margin: 0;
  color: #fff5d5;
  font-size: 1.32rem;
  line-height: 1.18;
}

.final-brief p {
  max-width: 25rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.final-brief-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.final-brief-list li {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  cursor: default;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.final-brief:hover .final-brief-list li {
  border-color: rgba(216, 182, 106, 0.18);
  background: rgba(216, 182, 106, 0.055);
}

.final-brief-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 182, 106, 0.4);
  background: rgba(216, 182, 106, 0.11);
}

.final-brief-list strong {
  color: var(--champagne);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.final-brief-list span {
  color: #ded9cc;
  font-size: 0.9rem;
  line-height: 1.25;
  transition: color 180ms ease;
}

.final-brief-list li:hover strong {
  color: #ffe69b;
}

.final-brief-list li:hover span {
  color: #fff5d5;
}

.final-contact {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(18rem, 0.62fr);
  gap: 1.25rem;
  align-items: center;
  margin: 0;
  border: 1px solid rgba(216, 182, 106, 0.18);
  border-radius: 8px;
  padding: 1.45rem 2.4rem;
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.09), transparent 34%),
    rgba(14, 16, 18, 0.82);
  box-shadow:
    0 1.5rem 3.4rem rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.final-contact:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 182, 106, 0.34);
  box-shadow:
    0 1.8rem 4rem rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.final-plane {
  width: 4rem;
  height: 4rem;
}

.final-plane::before {
  width: 0;
  height: 0;
  border-width: 0.85rem 0 0.85rem 1.75rem;
  border-style: solid;
  border-color: transparent transparent transparent var(--champagne);
  transform: rotate(-18deg) translateX(0.08rem);
}

.final-plane::after {
  width: 0.7rem;
  height: 0.62rem;
  border-left: 3px solid #08090a;
  transform: rotate(-18deg) translate(0.18rem, 0.12rem);
}

.final-contact-copy {
  padding-right: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.final-contact h2 {
  margin: 0 0 0.45rem;
  background: none;
  color: #fff5d5;
  font-size: 1.38rem;
  line-height: 1.2;
}

.final-contact h2 a {
  position: relative;
  color: var(--champagne);
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.final-contact h2 a::after {
  position: absolute;
  right: 0;
  bottom: -0.1rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.final-contact h2 a:hover {
  color: #ffe69b;
  text-shadow: 0 0 1rem rgba(216, 182, 106, 0.22);
}

.final-contact h2 a:hover::after {
  transform: scaleX(1);
}

.final-contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.final-telegram {
  width: 100%;
  min-height: 3.15rem;
  font-size: 0.98rem;
}

.final-note {
  grid-column: 3;
  justify-self: center;
  font-size: 0.82rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  color: var(--soft);
  font-size: 0.9rem;
}

[data-reveal] {
  transform: translateY(18px);
  opacity: 1;
  transition:
    transform 700ms ease,
    opacity 700ms ease;
}

html.js [data-reveal] {
  opacity: 0;
}

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

.hero-showcase[data-reveal] {
  transform: translateX(2.8rem) translateY(18px);
}

.hero-showcase[data-reveal].is-visible {
  transform: translateX(2.8rem);
}

.hero-showcase[data-reveal].is-visible:hover {
  transform: translateX(2.8rem) translateY(-6px);
}

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

@media (min-width: 981px) {
  html {
    font-size: 18px;
  }

  .site-header {
    padding: 1.05rem max(1.25rem, calc((100vw - 1440px) / 2));
  }

  .hero {
    grid-template-columns: minmax(29rem, 0.74fr) minmax(48rem, 1.26fr);
    min-height: auto;
    padding: 6rem max(1.5rem, calc((100vw - 1440px) / 2)) 2.4rem;
  }

  .hero-content {
    max-width: 38rem;
  }

  h1 {
    max-width: 39rem;
    font-size: 3.95rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  .hero-copy {
    max-width: 35rem;
    font-size: 1.08rem;
  }

  .button {
    min-height: 3.35rem;
    padding: 0 1.45rem;
    font-size: 1.05rem;
  }

  .hero-showcase {
    justify-self: stretch;
    width: 100%;
    max-width: 56rem;
    padding: 1.1rem;
  }

  .showcase-video {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .section,
  .section-pad,
  .hero-proof,
  .final-cta,
  .footer {
    width: min(1440px, calc(100% - 3rem));
  }

  .section {
    padding: 6rem 0;
  }

  .section-grid,
  .process-section {
    gap: 3.6rem;
  }

  .expertise-grid,
  .service-grid,
  .portfolio-grid,
  .review-cards,
  .process {
    gap: 1.15rem;
  }

  .expertise-grid article {
    min-height: 18.5rem;
    padding: 1.45rem;
  }

  .service-grid article,
  .process li {
    padding: 1.45rem;
  }

  .work-body {
    padding: 1.25rem;
  }

  .work-card h3 {
    font-size: 1.32rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .hero,
  .section-grid,
  .proof-bottom,
  .final-cta-top,
  .process-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 5.2rem;
  }

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

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .hero-showcase {
    justify-self: start;
    width: min(100%, 50rem);
    margin-top: 2.5rem;
    margin-bottom: 0;
    transform: none;
  }

  .final-cta {
    padding: 2.25rem 1.5rem 1.5rem;
  }

  .final-side {
    order: -1;
  }

  .final-contact {
    grid-template-columns: auto 1fr;
    padding: 1.35rem 1.4rem;
  }

  .final-contact-copy {
    padding-right: 0;
    border-right: 0;
  }

  .final-telegram,
  .final-note {
    grid-column: 1 / -1;
  }

  .showcase-video {
    min-height: 20rem;
  }

  .expertise-grid,
  .portfolio-grid,
  .service-grid,
  .proof-stats,
  .review-cards {
    grid-template-columns: 1fr 1fr;
  }

  .final-benefits,
  .final-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-brief {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .reviews-panel {
    padding-right: 0;
    border-right: 0;
  }

  .proof-stats article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .proof-stats article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .tag-cloud {
    grid-column: auto;
  }

  .section-head {
    display: grid;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: start;
    padding: 0.9rem 1rem;
  }

  .brand-text {
    display: inline;
    font-size: 0.76rem;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.78rem;
  }

  .hero {
    padding: 4.2rem 1rem 3.5rem;
    overflow-x: clip;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(8, 9, 10, 0.82) 0%, rgba(8, 9, 10, 0.78) 55%, #08090a 100%),
      linear-gradient(90deg, rgba(8, 9, 10, 0.88), rgba(8, 9, 10, 0.35));
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-showcase {
    justify-self: stretch;
    width: 100%;
    max-width: calc(100vw - 2rem);
    margin-top: 1.45rem;
    border-radius: 10px;
    padding: 0.55rem;
    overflow: hidden;
  }

  .showcase-topline,
  .showcase-metrics {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .showcase-topline {
    padding: 0.2rem 0.15rem 0.45rem;
  }

  .showcase-topline span {
    font-size: 0.68rem;
  }

  .showcase-topline strong {
    font-size: 0.86rem;
  }

  .showcase-video {
    display: block;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
  }

  .showcase-video iframe {
    display: block;
    transform: none;
  }

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

  .button,
  .filter-button {
    flex: 1 1 auto;
  }

  .section,
  .section-pad,
  .hero-proof,
  .final-cta,
  .footer {
    width: calc(100% - 2rem);
  }

  .expertise-grid,
  .portfolio-grid,
  .service-grid,
  .proof-stats,
  .review-cards,
  .final-cta-top,
  .final-gallery,
  .workflow,
  .process {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 2rem 0.85rem 1rem;
    gap: 1.5rem;
  }

  .final-copy h2 {
    font-size: 2.45rem;
  }

  .final-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .final-benefits {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .final-brief {
    padding: 1.15rem;
  }

  .final-brief h3 {
    font-size: 1.18rem;
  }

  .final-brief-list li {
    grid-template-columns: 2.35rem 1fr;
    padding: 0.68rem;
  }

  .final-benefits article,
  .final-benefits article:first-child {
    justify-items: start;
    grid-template-columns: 3.85rem 1fr;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0 0;
    text-align: left;
  }

  .final-benefits article:first-child {
    border-top: 0;
  }

  .final-benefits article .benefit-icon {
    grid-row: 1 / span 2;
  }

  .final-shot {
    min-height: 12.2rem;
  }

  .final-contact {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1rem;
    padding: 1rem;
  }

  .final-plane {
    width: 4rem;
    height: 4rem;
  }

  .final-telegram,
  .final-note {
    grid-column: auto;
  }

  .final-note {
    justify-self: start;
  }

  .hero-proof {
    padding: 0 0 3.5rem;
  }

  .proof-stats article,
  .proof-stats article:nth-child(3),
  .proof-stats article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    padding: 1.25rem;
  }

  .proof-stats article:first-child {
    border-top: 0;
  }

  .proof-bottom {
    gap: 2.4rem;
  }

  .review-cards article {
    min-height: auto;
  }

  .workflow li {
    justify-items: start;
    grid-template-columns: 3.4rem 1fr;
    text-align: left;
  }

  .workflow li::before {
    grid-row: 1 / span 2;
  }

  .workflow li > span::after {
    top: 1.1rem;
    left: 1.1rem;
  }

  .workflow li[data-icon="chat"] span::before,
  .workflow li[data-icon="folder"] span::before,
  .workflow li[data-icon="clapper"] span::before {
    left: 1.04rem;
  }

  .workflow li[data-icon="send"] > span::after {
    left: 1.18rem;
  }

  .workflow li + li::after {
    display: none;
  }

  .workflow span,
  .workflow strong {
    justify-self: start;
  }

  .workflow-cta {
    justify-self: stretch;
  }

  .section {
    padding: 4rem 0;
  }

  .expertise-grid article,
  .service-grid article {
    min-height: 12rem;
  }

  .work-card[data-shape="vertical"] .work-preview {
    aspect-ratio: 16 / 11;
  }

  .footer {
    display: grid;
    gap: 0.8rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    gap: 0.7rem;
    padding: 0.72rem 0.85rem;
  }

  .brand {
    gap: 0.5rem;
    min-width: 0;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
    font-size: 0.68rem;
  }

  .brand-text {
    max-width: 7.6rem;
    overflow: hidden;
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    gap: 0.62rem;
    font-size: 0.72rem;
  }

  .hero {
    justify-items: center;
    padding: 3.65rem 0.85rem 2.9rem;
    text-align: center;
  }

  .hero-content {
    display: grid;
    justify-items: center;
    width: 100%;
    max-width: 22rem;
  }

  .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.68rem;
  }

  h1 {
    max-width: 20rem;
    font-size: 2.05rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 21rem;
    margin-bottom: 1.35rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 21rem;
  }

  .button,
  .filter-button {
    min-height: 2.75rem;
    padding: 0 0.85rem;
    font-size: 0.9rem;
  }

  .hero-showcase,
  .hero-showcase[data-reveal],
  .hero-showcase[data-reveal].is-visible,
  .hero-showcase[data-reveal].is-visible:hover {
    justify-self: center;
    width: min(100%, 22rem);
    max-width: 100%;
    margin: 1.25rem auto 0;
    transform: none !important;
  }

  .hero-showcase {
    gap: 0.5rem;
    border-radius: 8px;
    padding: 0.48rem;
  }

  .showcase-topline {
    justify-content: center;
    padding: 0.15rem 0.1rem 0.36rem;
    text-align: center;
  }

  .showcase-topline span {
    width: 100%;
    font-size: 0.62rem;
  }

  .showcase-frame,
  .showcase-video {
    width: 100%;
  }

  .hero-proof,
  .section,
  .final-cta,
  .footer {
    width: min(100% - 1.5rem, 24rem);
  }

  .hero-proof {
    justify-items: center;
    padding-bottom: 2.8rem;
  }

  .proof-stats,
  .review-cards,
  .workflow,
  .portfolio-grid,
  .final-gallery,
  .final-benefits {
    width: 100%;
  }

  .proof-stats article {
    grid-template-columns: 2.65rem 1fr;
    column-gap: 0.85rem;
    padding: 0.95rem;
    text-align: left;
  }

  .proof-icon {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 0.9rem;
  }

  .proof-stats strong {
    font-size: 1.55rem;
  }

  .proof-stats p,
  .review-cards p,
  .workflow li > span {
    font-size: 0.82rem;
  }

  .proof-bottom {
    width: 100%;
    gap: 1.8rem;
  }

  .mini-section-head {
    text-align: center;
  }

  .mini-section-head h2 {
    font-size: 1.18rem;
  }

  .mini-section-head h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .review-cards article {
    padding: 0.86rem;
  }

  .workflow li {
    grid-template-columns: 2.9rem 1fr;
    gap: 0.75rem;
    padding: 0.15rem 0;
  }

  .workflow li::before {
    width: 2.85rem;
    height: 2.85rem;
  }

  .workflow li > span::after {
    top: 0.84rem;
    left: 0.82rem;
    transform: scale(0.82);
    transform-origin: center;
  }

  .workflow li[data-icon="chat"] span::before,
  .workflow li[data-icon="folder"] span::before,
  .workflow li[data-icon="clapper"] span::before {
    left: 0.8rem;
    transform: scale(0.82);
    transform-origin: center;
  }

  .workflow li[data-icon="send"] > span::after {
    left: 0.95rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-head {
    justify-items: center;
    gap: 1.05rem;
    margin-bottom: 1.35rem;
    text-align: center;
  }

  .section-head > div:first-child {
    max-width: 22rem;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin: 0 auto;
  }

  .work-card {
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
  }

  .work-preview,
  .work-card[data-shape="vertical"] .work-preview {
    aspect-ratio: 16 / 10;
  }

  .work-body {
    gap: 0.72rem;
    padding: 0.82rem;
  }

  .work-meta {
    gap: 0.6rem;
    font-size: 0.66rem;
  }

  .work-card h3 {
    font-size: 1.04rem;
  }

  .work-tags {
    gap: 0.34rem;
  }

  .work-tags span {
    padding: 0.28rem 0.38rem;
    font-size: 0.68rem;
  }

  .final-cta {
    justify-items: center;
    padding: 1.55rem 0.75rem 0.9rem;
    text-align: center;
  }

  .final-copy,
  .final-side {
    width: 100%;
  }

  .final-copy h2 {
    font-size: 2rem;
  }

  .final-copy > p:not(.eyebrow) {
    max-width: 21rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.9rem;
  }

  .final-benefits article,
  .final-benefits article:first-child {
    grid-template-columns: 3rem 1fr;
    padding-top: 0.85rem;
  }

  .benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .final-shot {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .final-brief {
    padding: 0.95rem;
    text-align: left;
  }

  .final-brief h3 {
    font-size: 1.04rem;
  }

  .final-contact {
    justify-items: center;
    text-align: center;
  }

  .final-note {
    justify-self: center;
  }

  .footer {
    justify-items: center;
    text-align: center;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .hero {
    justify-items: center;
  }

  .hero-content {
    display: grid;
    justify-items: center;
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy {
    margin-right: auto;
    margin-left: auto;
  }

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

  .hero-showcase,
  .hero-showcase[data-reveal],
  .hero-showcase[data-reveal].is-visible,
  .hero-showcase[data-reveal].is-visible:hover {
    justify-self: center;
    width: min(100%, 44rem);
    margin-right: auto;
    margin-left: auto;
    transform: none !important;
  }

  .portfolio-grid {
    gap: 0.85rem;
  }

  .work-card {
    max-width: 25rem;
    margin: 0 auto;
  }

  .work-body {
    gap: 0.82rem;
    padding: 0.95rem;
  }

  .work-card h3 {
    font-size: 1.1rem;
  }

  .work-tags span {
    font-size: 0.7rem;
  }
}

@media (max-width: 680px) {
  .work-card[data-shape="vertical"] {
    max-width: 18.5rem;
  }

  .work-card[data-shape="vertical"] .work-preview {
    aspect-ratio: 4 / 5;
  }

  .work-card[data-shape="horizontal"] .work-preview,
  .work-preview {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .hero-proof {
    gap: 1.25rem;
    padding-bottom: 2.25rem;
  }

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

  .proof-stats article,
  .proof-stats article:nth-child(3),
  .proof-stats article:nth-child(4) {
    grid-template-columns: 2rem 1fr;
    column-gap: 0.55rem;
    padding: 0.68rem;
    border-top: 0;
  }

  .proof-stats article:nth-child(odd) {
    border-left: 0;
  }

  .proof-stats article:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.11);
  }

  .proof-stats article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .proof-icon {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.72rem;
  }

  .proof-stats strong {
    font-size: 1.22rem;
  }

  .proof-stats p {
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .proof-bottom {
    gap: 1.25rem;
  }

  .mini-section-head h2 {
    margin-bottom: 0.9rem;
    font-size: 1.02rem;
  }

  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .review-cards article {
    min-height: 0;
    padding: 0.62rem;
  }

  .review-cards span {
    margin-bottom: 0.38rem;
    font-size: 0.62rem;
  }

  .review-cards p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 0.45rem;
    overflow: hidden;
    font-size: 0.68rem;
    line-height: 1.28;
    -webkit-line-clamp: 3;
  }

  .review-cards strong {
    font-size: 0.68rem;
  }

  .review-cards small {
    font-size: 0.6rem;
  }

  .workflow-panel {
    gap: 0.8rem;
  }

  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .workflow li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    align-items: center;
    gap: 0.45rem;
    min-height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 0.48rem;
    background: rgba(255, 255, 255, 0.025);
  }

  .workflow li::before {
    width: 1.9rem;
    height: 1.9rem;
  }

  .workflow li > span {
    font-size: 0.66rem;
    line-height: 1.18;
  }

  .workflow li > span::after {
    top: 0.54rem;
    left: 0.53rem;
    transform: scale(0.58);
  }

  .workflow li[data-icon="chat"] span::before,
  .workflow li[data-icon="folder"] span::before,
  .workflow li[data-icon="clapper"] span::before {
    left: 0.52rem;
    transform: scale(0.58);
  }

  .workflow li[data-icon="send"] > span::after {
    left: 0.64rem;
  }

  .workflow-cta {
    min-height: 2.55rem;
  }

  .section {
    padding: 2.65rem 0;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem;
  }

  .work-card,
  .work-card[data-shape="vertical"] {
    max-width: none;
  }

  .work-preview,
  .work-card[data-shape="horizontal"] .work-preview {
    aspect-ratio: 16 / 11;
  }

  .work-card[data-shape="vertical"] .work-preview {
    aspect-ratio: 4 / 5;
  }

  .work-body {
    gap: 0.45rem;
    padding: 0.58rem;
  }

  .work-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    font-size: 0.55rem;
  }

  .work-card h3 {
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .work-tags {
    gap: 0.22rem;
  }

  .work-tags span {
    padding: 0.2rem 0.28rem;
    font-size: 0.56rem;
  }

  .final-cta {
    gap: 1rem;
    padding: 1.1rem 0.62rem 0.75rem;
  }

  .final-copy h2 {
    font-size: 1.55rem;
  }

  .final-copy > p:not(.eyebrow) {
    margin: 0.75rem auto 1rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .final-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.52rem;
  }

  .final-benefits article,
  .final-benefits article:first-child {
    display: grid;
    grid-template-columns: 1.8rem 1fr;
    gap: 0.38rem;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    padding: 0.52rem;
    background: rgba(255, 255, 255, 0.025);
    text-align: left;
  }

  .benefit-icon {
    width: 1.55rem;
    height: 1.55rem;
  }

  .final-benefits h3 {
    font-size: 0.68rem;
  }

  .final-benefits p {
    display: -webkit-box;
    grid-column: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.62rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
  }

  .final-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .final-brief {
    padding: 0.7rem;
  }

  .final-brief h3 {
    font-size: 0.9rem;
  }

  .final-brief p {
    margin-top: 0.45rem;
    font-size: 0.72rem;
  }

  .final-brief-list {
    gap: 0.35rem;
  }

  .final-brief-list li {
    grid-template-columns: 1.8rem 1fr;
    gap: 0.45rem;
    padding: 0.48rem;
  }

  .final-brief-list strong,
  .final-brief-list span {
    font-size: 0.68rem;
  }

  .final-contact {
    gap: 0.65rem;
    padding: 0.75rem;
  }
}
