:root {
  --ink: #1b1021;
  --ink-soft: #3a2744;
  --paper: #fbf5e7;
  --paper-2: #fffaf0;
  --muted: #776a7e;
  --line: rgba(83, 36, 100, 0.16);
  --purple: #532464;
  --purple-dark: #23102c;
  --purple-soft: #744382;
  --yellow: #f9b41c;
  --yellow-soft: #ffd777;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(83, 36, 100, 0.18);
  --header-h: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  color: var(--paper-2);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(251, 245, 231, 0.94);
  box-shadow: 0 12px 36px rgba(83, 36, 100, 0.1);
  backdrop-filter: blur(18px);
}

.top-strip {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.site-header.is-scrolled .top-strip,
.site-header.menu-open .top-strip {
  border-color: var(--line);
}

.top-strip span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.nav-shell {
  display: grid;
  min-height: 62px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 190px;
  height: 48px;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.9);
  padding: 7px 10px;
  box-shadow: 0 14px 34px rgba(35, 16, 44, 0.16);
}

.brand img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a.is-active,
.site-header.menu-open .nav-links a:hover,
.site-header.menu-open .nav-links a.is-active {
  background: rgba(83, 36, 100, 0.1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-cta {
  padding: 10px 15px;
  color: var(--purple-dark);
  background: var(--yellow);
  box-shadow: 0 10px 26px rgba(249, 180, 28, 0.28);
}

.nav-cta svg,
.button svg,
.tab-button svg,
.service-card svg,
.media-badge svg,
.contact-list svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-h) + 46px) 0 86px;
  color: var(--paper-2);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(35, 16, 44, 0.92), rgba(35, 16, 44, 0.56) 52%, rgba(83, 36, 100, 0.18)),
    linear-gradient(0deg, rgba(35, 16, 44, 0.74), rgba(35, 16, 44, 0.08) 52%, rgba(35, 16, 44, 0.38)),
    url("assets/generated-hero.jpg") center / cover;
  transform: scale(1.04);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.pixel-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, black 0%, black 52%, transparent 92%);
}

.ink-orbit {
  position: absolute;
  right: max(24px, 7vw);
  bottom: 128px;
  z-index: -1;
  display: grid;
  width: clamp(160px, 19vw, 280px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  opacity: 0.78;
}

.ink-orbit span {
  position: absolute;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--tone);
  box-shadow: 0 0 34px color-mix(in srgb, var(--tone), transparent 35%);
  animation: orbit 9s linear infinite;
  animation-delay: var(--delay);
}

.hero-content {
  display: grid;
  max-width: 780px;
  min-width: 0;
  gap: 20px;
}

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

.eyebrow {
  margin: 0;
  color: color-mix(in srgb, currentColor, var(--yellow) 48%);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(4.8rem, 15vw, 12.5rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
}

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

.button {
  padding: 12px 18px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.nav-cta:hover,
.tab-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--purple-dark);
  background: linear-gradient(90deg, var(--yellow), var(--yellow-soft));
  box-shadow: 0 18px 44px rgba(249, 180, 28, 0.26);
}

.button-ghost {
  color: var(--paper-2);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(35, 16, 44, 0.84);
  backdrop-filter: blur(14px);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band {
  padding: 72px 0;
  color: var(--paper-2);
  background:
    linear-gradient(90deg, var(--purple-dark), var(--purple) 56%, #2f1638);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 44px;
  align-items: end;
}

.intro-grid h2,
.section-heading h2,
.production-copy h2,
.contact-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy,
.production-copy > p,
.contact-copy > p {
  margin: 0;
  color: color-mix(in srgb, currentColor, transparent 24%);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.boostez-panel {
  grid-column: 2;
  display: grid;
  min-height: 150px;
  align-items: center;
  border: 1px solid rgba(249, 180, 28, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.03)),
    rgba(83, 36, 100, 0.36);
  padding: clamp(18px, 3vw, 28px);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.1),
    0 20px 60px rgba(35, 16, 44, 0.22);
}

.boostez-panel img {
  width: min(420px, 100%);
  height: auto;
  justify-self: center;
  filter: drop-shadow(0 18px 24px rgba(35, 16, 44, 0.24));
}

.quality-markers {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.quality-markers span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(249, 180, 28, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.08);
  padding: 10px 14px;
  color: var(--paper-2);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(12px);
}

.services-section,
.gallery-section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  max-width: 820px;
  gap: 8px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 670px;
  margin-bottom: 28px;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-2);
  padding: 10px 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.tab-button.is-active {
  border-color: rgba(83, 36, 100, 0.72);
  background: var(--purple);
  color: var(--paper-2);
  box-shadow: 0 14px 34px rgba(83, 36, 100, 0.18);
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  min-height: 442px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.service-visual {
  min-height: 360px;
  background: var(--ink);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 220ms ease,
    transform 650ms ease;
}

.service-showcase.is-swapping .service-visual img {
  opacity: 0;
  transform: scale(1.03);
}

.service-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(26px, 4vw, 48px);
  position: relative;
}

.service-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(var(--yellow), var(--purple), var(--yellow-soft));
}

.service-kicker {
  margin: 0;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-copy h3,
.work-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.service-copy p {
  margin: 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-weight: 700;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--yellow);
  box-shadow: 6px 0 0 var(--purple), 12px 0 0 var(--yellow-soft);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 204px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(83, 36, 100, 0.32);
  box-shadow: 0 18px 44px rgba(83, 36, 100, 0.13);
}

.service-card svg {
  width: 28px;
  height: 28px;
  color: var(--purple);
}

.service-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.finishes-section {
  padding: 96px 0;
  background:
    linear-gradient(180deg, var(--paper), var(--paper-2));
}

.finishes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.finish-card {
  position: relative;
  display: grid;
  min-height: 240px;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(83, 36, 100, 0.16);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 24px;
  box-shadow: 0 18px 54px rgba(83, 36, 100, 0.08);
}

.finish-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 180, 28, 0.34), transparent 70%);
}

.finish-card svg {
  width: 30px;
  height: 30px;
  color: var(--yellow);
  stroke-width: 2.2;
}

.finish-card h3,
.premium-step h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: 1.08rem;
  line-height: 1.12;
}

.finish-card p,
.premium-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.materials-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 0;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid rgba(83, 36, 100, 0.16);
  border-radius: var(--radius);
  background: var(--purple-dark);
  color: var(--paper-2);
  box-shadow: var(--shadow);
}

.materials-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.materials-panel div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(26px, 4vw, 48px);
}

.materials-panel span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.materials-panel h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1;
}

.materials-panel p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.before-after-section {
  padding: 104px 0;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 78% 18%, rgba(249, 180, 28, 0.2), transparent 22%),
    linear-gradient(135deg, var(--purple-dark), var(--purple));
}

.before-after-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(420px, 0.94fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.before-after-copy {
  display: grid;
  gap: 18px;
}

.before-after-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  font-weight: 900;
  line-height: 0.98;
}

.before-after-copy p {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
}

.comparison {
  --position: 58%;
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: var(--radius);
  background: var(--purple-dark);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.comparison-layer,
.comparison-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-layer img {
  object-fit: cover;
}

.comparison-before img {
  filter: grayscale(1) saturate(0.2) brightness(0.55) contrast(0.92);
}

.comparison-before::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 16, 44, 0.7), rgba(35, 16, 44, 0.2)),
    repeating-linear-gradient(45deg, rgba(255, 250, 240, 0.08) 0 1px, transparent 1px 14px);
}

.comparison-after {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-layer span {
  position: absolute;
  z-index: 2;
  top: 16px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.88);
  color: var(--purple-dark);
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-before span {
  left: 16px;
}

.comparison-after span {
  right: 16px;
  background: var(--yellow);
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 2px;
  transform: translateX(-1px);
  background: var(--yellow);
}

.comparison-handle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: var(--purple-dark);
  background: var(--yellow);
  padding: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  opacity: 0;
}

.premium-process-section {
  padding: 96px 0;
  background:
    linear-gradient(180deg, var(--paper-2), var(--paper));
}

.premium-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: process;
}

.premium-step {
  position: relative;
  display: grid;
  min-height: 260px;
  align-content: start;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(83, 36, 100, 0.16);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 24px;
}

.premium-step::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--yellow));
}

.premium-step span {
  color: rgba(83, 36, 100, 0.22);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 0.86;
}

.premium-step svg {
  width: 28px;
  height: 28px;
  color: var(--purple);
}

.production-section {
  padding: 104px 0;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 14% 22%, rgba(249, 180, 28, 0.26), transparent 24%),
    linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 52%, #1b1021 100%);
}

.production-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.production-copy {
  display: grid;
  gap: 22px;
}

.process-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 120px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.process-step span {
  color: var(--yellow);
  font-weight: 900;
}

.process-step strong {
  font-size: 1.03rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.production-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

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

.media-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--yellow);
  padding: 12px 14px;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

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

.work-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--paper-2);
  background: var(--ink);
  isolation: isolate;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(35, 16, 44, 0.04), rgba(35, 16, 44, 0.86)),
    linear-gradient(90deg, rgba(249, 180, 28, 0.22), transparent 42%);
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 650ms ease;
}

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

.work-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
}

.work-card span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.clients-section {
  overflow: hidden;
  padding: 76px 0 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 36s linear infinite;
}

.logo-track img {
  width: 170px;
  height: 92px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px;
  filter: grayscale(1);
  opacity: 0.78;
}

.contact-section {
  padding: 104px 0;
  color: var(--paper-2);
  background:
    linear-gradient(90deg, rgba(249, 180, 28, 0.18), transparent 38%),
    linear-gradient(135deg, var(--purple-dark), var(--purple) 54%, #1b1021);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 22px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
}

.contact-list svg {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--yellow);
  padding: 9px;
}

.quote-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(20px, 4vw, 30px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--paper-2);
  background: rgba(16, 16, 20, 0.68);
  padding: 12px 13px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.quote-form select option {
  color: var(--ink);
  background: var(--paper-2);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(249, 180, 28, 0.18);
  background: rgba(16, 16, 20, 0.86);
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.site-footer {
  padding: 30px 0;
  background: var(--paper);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 999px;
  color: var(--purple-dark);
  background: linear-gradient(90deg, var(--yellow), var(--yellow-soft));
  padding: 12px 16px;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(35, 16, 44, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(35, 16, 44, 0.3);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-weight: 800;
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.4%, 1.2%, 0);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(132%) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(132%) rotate(-360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 980px) {
  :root {
    --header-h: 82px;
  }

  .top-strip {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(251, 245, 231, 0.97);
    padding: 10px;
    box-shadow: 0 24px 54px rgba(83, 36, 100, 0.18);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(16px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px;
  }

  .nav-cta {
    display: none;
  }

  .brand {
    width: 170px;
  }

  .hero {
    min-height: 84svh;
    padding-top: calc(var(--header-h) + 54px);
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(35, 16, 44, 0.9), rgba(35, 16, 44, 0.5)),
      linear-gradient(0deg, rgba(35, 16, 44, 0.74), rgba(35, 16, 44, 0.14)),
      url("assets/generated-hero.jpg") center / cover;
  }

  .ink-orbit {
    right: -56px;
    bottom: 102px;
    opacity: 0.42;
  }

  .intro-grid,
  .service-showcase,
  .materials-panel,
  .before-after-grid,
  .production-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .boostez-panel {
    grid-column: 1;
  }

  .service-cards,
  .finishes-grid,
  .premium-process-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-showcase {
    min-height: 0;
  }

  .production-media img {
    aspect-ratio: 16 / 10;
  }

  .comparison {
    min-height: 390px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 82svh;
    padding-bottom: 78px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 16.5vw, 4.25rem);
  }

  .brand {
    width: 152px;
    height: 44px;
  }

  .brand img {
    max-height: 38px;
  }

  .boostez-panel {
    min-height: 122px;
    padding: 18px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-actions,
  .service-tabs {
    display: grid;
  }

  .button,
  .tab-button {
    width: 100%;
  }

  .intro-band,
  .services-section,
  .finishes-section,
  .before-after-section,
  .premium-process-section,
  .gallery-section,
  .production-section,
  .contact-section {
    padding: 70px 0;
  }

  .service-cards,
  .finishes-grid,
  .premium-process-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .materials-panel img {
    min-height: 270px;
  }

  .comparison {
    min-height: 310px;
  }

  .comparison-layer span {
    top: 12px;
    padding: 7px 10px;
  }

  .comparison-handle svg {
    width: 42px;
    height: 42px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 11px 14px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .service-visual {
    min-height: 260px;
  }

  .service-copy {
    padding: 28px 22px;
  }

  .process-step {
    grid-template-columns: 42px 1fr;
  }

  .process-step p {
    grid-column: 2;
  }

  .work-card,
  .work-card img {
    min-height: 300px;
  }

  .logo-track img {
    width: 142px;
    height: 78px;
    padding: 14px;
  }

  .contact-list a {
    grid-template-columns: 34px 1fr;
    font-size: 0.93rem;
  }

  .contact-list svg {
    width: 34px;
    height: 34px;
  }
}

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

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