/* ═══════════════════════════════════════════════════════════
   PRESTIG STROY — PREMIUM CSS
   Architecture: Token → Base → Layout → Components → Utils
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Palette */
  --color-dark:        #0e0e0e;
  --color-dark-2:      #141414;
  --color-dark-3:      #1a1a1a;
  --color-dark-4:      #232323;
  --color-border:      rgba(255,255,255,.07);
  --color-border-hi:   rgba(255,255,255,.13);
  --color-gold:        #c5a05a;
  --color-gold-light:  #d9b87a;
  --color-gold-dim:    rgba(197,160,90,.12);
  --color-gold-dim2:   rgba(197,160,90,.06);
  --color-white:       #f0ede8;
  --color-muted:       rgba(240,237,232,.45);
  --color-muted-2:     rgba(240,237,232,.28);

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;

  /* Scale */
  --text-xs:    clamp(.65rem,  1.2vw,  .72rem);
  --text-sm:    clamp(.78rem,  1.5vw,  .875rem);
  --text-base:  clamp(.9rem,   1.6vw,  1rem);
  --text-lg:    clamp(1rem,    2vw,    1.2rem);
  --text-xl:    clamp(1.2rem,  2.5vw,  1.5rem);
  --text-2xl:   clamp(1.5rem,  3vw,    2rem);
  --text-3xl:   clamp(2rem,    4vw,    2.8rem);
  --text-4xl:   clamp(2.6rem,  5.5vw,  4rem);
  --text-5xl:   clamp(3.2rem,  7vw,    5.5rem);

  /* Spacing */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-5:   20px;
  --sp-6:   24px;
  --sp-8:   32px;
  --sp-10:  40px;
  --sp-12:  48px;
  --sp-16:  64px;
  --sp-20:  80px;
  --sp-24:  96px;
  --sp-32:  128px;

  /* Section rhythm */
  --section-py: clamp(80px, 10vw, 140px);

  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;

  /* Transitions */
  --ease-out:   cubic-bezier(.22, 1, .36, 1);
  --ease-in:    cubic-bezier(.7, 0, .84, 0);
  --ease-inout: cubic-bezier(.76, 0, .24, 1);
  --dur-fast:   180ms;
  --dur-base:   320ms;
  --dur-slow:   560ms;
  --dur-xslow:  900ms;

  /* Z-index */
  --z-base:   1;
  --z-float:  10;
  --z-header: 100;
  --z-menu:   200;
  --z-modal:  300;
  --z-cursor: 400;
  --z-loader: 500;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

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

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

ul, ol { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, select, textarea {
  font-family: var(--font-body);
}

:focus-visible {
  outline: 1.5px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--color-dark); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 2px; }

/* ── SELECTION ──────────────────────────────────────────── */
::selection {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

.section {
  padding-block: var(--section-py);
  position: relative;
}

/* ── TYPOGRAPHY BASE ────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-5);
}

.eyebrow--light { color: rgba(240,237,232,.5); }

.section__head {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--color-white);
}

.section__title em {
  font-style: italic;
  color: var(--color-gold);
}

/* ── CURSOR ─────────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
  mix-blend-mode: normal;
  will-change: transform;
}

.cursor__dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--dur-base) var(--ease-out),
              height var(--dur-base) var(--ease-out),
              opacity var(--dur-base);
}

.cursor__ring {
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid rgba(197,160,90,.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--dur-slow) var(--ease-out),
              height var(--dur-slow) var(--ease-out),
              border-color var(--dur-base),
              opacity var(--dur-base);
}

.cursor--hover .cursor__dot {
  width: 14px; height: 14px;
}

.cursor--hover .cursor__ring {
  width: 64px; height: 64px;
  border-color: rgba(197,160,90,.6);
}

.cursor--click .cursor__dot {
  width: 6px; height: 6px;
}

@media (hover: none) {
  .cursor { display: none; }
  body { cursor: auto; }
}

/* ── LOADER ─────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: var(--z-loader);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  transition: opacity var(--dur-slow) var(--ease-out),
              visibility var(--dur-slow);
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__line {
  width: 120px;
  height: 1px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}

.loader__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(-100%);
  animation: loader-fill 1.2s var(--ease-out) forwards .1s;
}

@keyframes loader-fill {
  to { transform: translateX(0); }
}

.loader__label {
  font-size: var(--text-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-muted);
  animation: fade-in .6s var(--ease-out) both .2s;
}

/* ── HEADER ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  padding-block: var(--sp-6);
  transition: background var(--dur-slow) var(--ease-out),
              border-color var(--dur-slow),
              padding var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-slow);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding-block: var(--sp-4);
  background: rgba(14,14,14,.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--color-border);
}

.header__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo__mark {
  width: 36px; height: 36px;
  background: var(--color-gold);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0;
  flex-shrink: 0;
}

.logo__text { display: flex; flex-direction: column; }

.logo__name {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--color-white);
  line-height: 1.2;
}

.logo__name em {
  font-style: normal;
  color: var(--color-gold);
}

.logo__tagline {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 1;
}

/* Nav */
.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--color-muted);
  position: relative;
  transition: color var(--dur-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width var(--dur-base) var(--ease-out);
}

.nav__link:hover {
  color: var(--color-white);
}

.nav__link:hover::after { width: 100%; }

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-white);
  transition: color var(--dur-base);
}

.header__phone:hover { color: var(--color-gold); }

.header__phone-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74,222,128,.4);
  animation: pulse-green 2.4s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.4); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
}

.burger__line {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--color-white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-fast);
}

.burger.open .burger__line:first-child {
  transform: translateY(6.75px) rotate(45deg);
}

.burger.open .burger__line:last-child {
  transform: translateY(-6.75px) rotate(-45deg);
}

/* ── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: var(--color-dark-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 12vw, 120px) clamp(20px, 6vw, 60px) clamp(40px, 6vw, 60px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease-out),
              visibility var(--dur-slow);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-menu) - 1);
  background: rgba(0,0,0,.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow), visibility var(--dur-slow);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: auto;
}

.mobile-nav__item {
  overflow: hidden;
}

.mobile-nav__link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: -.01em;
  line-height: 1.2;
  padding-block: .3em;
  transition: color var(--dur-base);
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease-out),
              opacity var(--dur-slow) var(--ease-out),
              color var(--dur-base);
}

.mobile-menu.open .mobile-nav__link {
  transform: none;
  opacity: 1;
}

.mobile-nav__item:nth-child(1) .mobile-nav__link { transition-delay: .05s; }
.mobile-nav__item:nth-child(2) .mobile-nav__link { transition-delay: .1s; }
.mobile-nav__item:nth-child(3) .mobile-nav__link { transition-delay: .15s; }
.mobile-nav__item:nth-child(4) .mobile-nav__link { transition-delay: .2s; }
.mobile-nav__item:nth-child(5) .mobile-nav__link { transition-delay: .25s; }

.mobile-nav__link:hover { color: var(--color-gold); }

.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: clamp(40px, 8vw, 64px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out) .3s,
              transform var(--dur-slow) var(--ease-out) .3s;
}

.mobile-menu.open .mobile-menu__footer {
  opacity: 1;
  transform: none;
}

.mobile-menu__phone {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-muted);
  transition: color var(--dur-base);
}

.mobile-menu__phone:hover { color: var(--color-white); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: .04em;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--dur-base),
              color var(--dur-base),
              border-color var(--dur-base),
              transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base);
  white-space: nowrap;
  user-select: none;
}

/* Sizes */
.btn--sm  { font-size: var(--text-xs); padding: 9px 18px; }
.btn--md  { font-size: var(--text-sm); padding: 13px 24px; }
.btn--lg  { font-size: var(--text-base); padding: 16px 32px; }
.btn--full { width: 100%; }

/* Variants */
.btn--gold {
  background: var(--color-gold);
  color: var(--color-dark);
}
.btn--gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(197,160,90,.25);
}
.btn--gold:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-border-hi);
}
.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-dim2);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover {
  color: var(--color-white);
  border-color: var(--color-border-hi);
}

.btn__icon {
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
}

.btn:hover .btn__icon { transform: translate(2px, -2px); }

/* ── REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-xslow) var(--ease-out),
              transform var(--dur-xslow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 100px;
  padding-bottom: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .032;
  mix-blend-mode: overlay;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__glow--1 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(197,160,90,.08) 0%, transparent 70%);
  animation: glow-drift 12s ease-in-out infinite alternate;
}

.hero__glow--2 {
  width: 400px; height: 400px;
  bottom: 10%; left: 5%;
  background: radial-gradient(circle, rgba(197,160,90,.04) 0%, transparent 70%);
  animation: glow-drift 16s ease-in-out infinite alternate-reverse;
}

@keyframes glow-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

.hero__content {
  position: relative;
  z-index: var(--z-base);
  padding-top: clamp(40px, 8vw, 80px);
}

.hero__eyebrow {
  margin-bottom: var(--sp-8);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--color-white);
  margin-bottom: var(--sp-8);
  max-width: 680px;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-10);
  max-width: 440px;
  font-weight: 300;
}

.hero__br { display: none; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Hero stats */
.hero__meta {
  position: relative;
  z-index: var(--z-base);
  margin-top: clamp(48px, 8vw, 88px);
}

.hero__stats {

    display: flex;
    align-items: stretch;
    gap: 0;

    margin-top: clamp(56px, 8vw, 96px);

    padding:
        clamp(22px, 3vw, 30px)
        clamp(24px, 3vw, 32px);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 20px;

    background:
        linear-gradient(
            to bottom,
            rgba(14,14,14,.34),
            rgba(14,14,14,.58)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.24);

    position: relative;
    z-index: 5;
}

.hero__stat {
  flex: 1;
  min-width: 120px;
  padding-right: clamp(20px, 4vw, 48px);
}

.hero__stat-divider {

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,.14),
            transparent
        );

    margin-inline:
        clamp(18px, 3vw, 36px);

    align-self: stretch;

    flex-shrink: 0;
}

.hero__stat-value {

    font-family: var(--font-display);

    font-size: clamp(2rem, 3vw, 2.8rem);

    font-weight: 500;

    line-height: 1;

    color: #f4e7c2;

    text-shadow:
        0 2px 10px rgba(0,0,0,.45);

    margin-bottom: 10px;

    display: block;
}

.hero__stat-label {

    font-size: 11px;

    line-height: 1.5;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: rgba(255,255,255,.72);

    font-weight: 400;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: clamp(24px, 4vw, 40px);
  right: clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  z-index: var(--z-base);
  animation: fade-in .8s var(--ease-out) 1.4s both;
}

.hero__scroll-label {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-muted-2);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: .4; transform: scaleY(.7); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* ── TICKER ─────────────────────────────────────────────── */
.ticker {
  border-block: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-dark-2);
  padding-block: 14px;
  user-select: none;
}

.ticker__track {
  overflow: hidden;
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  white-space: nowrap;
  animation: ticker-slide 30s linear infinite;
  width: max-content;
}

.ticker__inner span {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.ticker__sep {
  color: var(--color-gold) !important;
  flex-shrink: 0;
}

@keyframes ticker-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker:hover .ticker__inner {
  animation-play-state: paused;
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about {
  background: var(--color-dark-2);
  border-block: 1px solid var(--color-border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.about__text p {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.8;
  font-weight: 300;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-6);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  background: var(--color-dark-3);
  transition: border-color var(--dur-base), background var(--dur-base);
}

.about__value:hover {
  border-color: var(--color-border-hi);
  background: var(--color-dark-4);
}

.about__value-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--color-border-hi);
  background: var(--color-gold-dim2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.about__value > div:last-child {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.about__value strong {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white);
}

.about__value span {
  font-size: var(--text-xs);
  color: var(--color-muted);
  line-height: 1.5;
}

/* ── PORTFOLIO ──────────────────────────────────────────── */
.work { background: var(--color-dark); }

.work__filters {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.filter-btn {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 7px 16px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: color var(--dur-base),
              border-color var(--dur-base),
              background var(--dur-base);
}

.filter-btn:hover,
.filter-btn--active {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: var(--color-gold-dim2);
}

/* Work grid — editorial asymmetrical */
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.project { grid-column: span 4; }
.project--large { grid-column: span 6; grid-row: span 2; }
.project--wide  { grid-column: span 8; }

.project__inner {
  height: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--color-dark-3);
  transition: border-color var(--dur-base), box-shadow var(--dur-slow);
  display: flex;
  flex-direction: column;
}

.project__inner:hover {
  border-color: var(--color-border-hi);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}

.project__media {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.project__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-dark-3), var(--color-dark-4));
}

.project__ph-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.project__ph-icon {
  color: var(--color-muted-2);
  position: relative;
  z-index: 1;
}

.project__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,14,14,.96) 0%,
    rgba(14,14,14,.4) 40%,
    transparent 70%
  );
  transition: opacity var(--dur-base);
}

.project__inner:hover .project__overlay {
  opacity: .75;
}

.project__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold-dim2);
  opacity: 0;
  transition: opacity var(--dur-slow);
}

.project__inner:hover .project__media::after { opacity: 1; }

.project__info {
  padding: clamp(16px, 2vw, 22px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.project__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.project__type {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(197,160,90,.3);
  padding: 2px 8px;
  border-radius: 100px;
}

.project__area {
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--color-muted-2);
}

.project__title {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
}

.project__desc {
  font-size: var(--text-xs);
  color: var(--color-muted);
  line-height: 1.5;
  display: none;
}

.project--large .project__desc { display: block; }

.project__arrow {
  position: absolute;
  top: clamp(16px, 2vw, 22px);
  right: clamp(16px, 2vw, 22px);
  width: 36px; height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur-base),
              transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base),
              color var(--dur-base);
}

.project__inner:hover .project__arrow {
  opacity: 1;
  transform: none;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.work__cta {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
}

/* ── PROCESS ────────────────────────────────────────────── */
.process {
  background: var(--color-dark-2);
  border-block: 1px solid var(--color-border);
}

.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  counter-reset: none;
}

.process__item {
  background: var(--color-dark-2);
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  transition: background var(--dur-base);
}

.process__item:hover {
  background: var(--color-dark-3);
}

.process__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--color-gold);
  opacity: .5;
  line-height: 1;
  transition: opacity var(--dur-base);
}

.process__item:hover .process__num { opacity: 1; }

.process__title {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--sp-2);
}

.process__text {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing { background: var(--color-dark); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.plan {
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  background: var(--color-dark-2);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  position: relative;
  transition: border-color var(--dur-base), transform var(--dur-slow) var(--ease-out);
}

.plan:hover {
  border-color: var(--color-border-hi);
  transform: translateY(-4px);
}

.plan--featured {
  border-color: var(--color-gold);
  background: linear-gradient(160deg, var(--color-dark-2), rgba(197,160,90,.05));
  transform: translateY(-8px);
}

.plan--featured:hover { transform: translateY(-14px); }

.plan__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-gold);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: var(--sp-3);
  align-self: flex-start;
}

.plan__index {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-gold);
  opacity: .2;
  line-height: 1;
  margin-bottom: -.4em;
}

.plan__name {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-white);
  font-family: var(--font-display);
}

.plan__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
}

.plan__price {
  padding-block: var(--sp-6);
  border-block: 1px solid var(--color-border);
}

.plan__amount {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--color-white);
}

.plan__unit {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-left: var(--sp-1);
}

.plan__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.plan__features li {
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.plan__features li::before {
  content: '';
  flex-shrink: 0;
  width: 4px; height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: .7;
}

/* ── TRUST / REVIEWS ────────────────────────────────────── */
.trust {
  background: var(--color-dark-2);
  border-top: 1px solid var(--color-border);
}

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

.review {
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  background: var(--color-dark-3);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: border-color var(--dur-base);
}

.review:hover { border-color: var(--color-border-hi); }

.review__stars {
  display: flex;
  gap: 4px;
  color: var(--color-gold);
}

.review__text {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.65;
  flex: 1;
}

.review__author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-border);
}

.review__name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white);
}

.review__project {
  font-size: var(--text-xs);
  color: var(--color-muted-2);
}

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  padding: 0;
  overflow: hidden;
}

.cta-band__inner {
  position: relative;
  padding-block: clamp(72px, 10vw, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(197,160,90,.07) 0%, transparent 70%),
    var(--color-dark-3);
  z-index: -1;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--color-white);
}

.cta-band__title em {
  font-style: italic;
  color: var(--color-gold);
}

.cta-band__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── QUIZ ───────────────────────────────────────────────── */
.quiz {
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
}

.quiz__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.quiz__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--color-white);
  margin-block: var(--sp-5) var(--sp-6);
}

.quiz__title em {
  font-style: italic;
  color: var(--color-gold);
}

.quiz__sub {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: var(--sp-8);
}

.quiz__trust {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.quiz__trust li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 300;
}

.quiz__trust li svg { color: var(--color-gold); flex-shrink: 0; }

/* Form panel */
.quiz__form {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
}

.quiz__progress {
  height: 2px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--sp-3);
}

.quiz__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 2px;
  transition: width .5s var(--ease-out);
}

.quiz__step-label {
  font-size: var(--text-xs);
  letter-spacing: .08em;
  color: var(--color-muted-2);
  margin-bottom: var(--sp-8);
}

.quiz__step { display: none; }
.quiz__step--active { display: block; }

.quiz__question {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--sp-6);
  border: none;
  display: block;
  width: 100%;
}

.quiz__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.quiz__option {
  cursor: pointer;
}

.quiz__radio {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.quiz__option-label {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--color-muted);
  background: var(--color-dark-3);
  transition: all var(--dur-base);
  cursor: pointer;
}

.quiz__option-label svg { color: var(--color-muted-2); transition: color var(--dur-base); }

.quiz__option-label:hover {
  border-color: var(--color-border-hi);
  color: var(--color-white);
  background: var(--color-dark-4);
}

.quiz__option-label:hover svg { color: var(--color-gold); }

.quiz__radio:checked + .quiz__option-label {
  border-color: var(--color-gold);
  color: var(--color-white);
  background: var(--color-gold-dim);
}

.quiz__radio:checked + .quiz__option-label svg { color: var(--color-gold); }

.quiz__nav {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}

/* Quiz success */
.quiz__success {
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 0;
}

.quiz__success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-6);
  color: var(--color-gold);
}

.quiz__success h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}

.quiz__success p {
  font-size: var(--text-base);
  color: var(--color-muted);
}

/* ── FORM FIELDS ────────────────────────────────────────── */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.form-field { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-field__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted-2);
}

.form-field__input {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: 300;
  transition: border-color var(--dur-base), background var(--dur-base);
  appearance: none;
  -webkit-appearance: none;
}

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

.form-field__input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-dark-4);
}

select.form-field__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(240,237,232,.3)' stroke-width='1.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-privacy {
  font-size: var(--text-xs);
  color: var(--color-muted-2);
  text-align: center;
  margin-top: var(--sp-4);
  line-height: 1.5;
}

.form-privacy a {
  color: var(--color-gold);
  text-decoration: underline;
  text-decoration-color: rgba(197,160,90,.4);
}

/* ── CONTACTS ───────────────────────────────────────────── */
.contact { background: var(--color-dark-2); border-top: 1px solid var(--color-border); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--color-border);
}

.contact__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact__label {
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted-2);
}

.contact__value {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-white);
  transition: color var(--dur-base);
}

.contact__value a:hover { color: var(--color-gold); }

.contact__note {
  font-size: var(--text-xs);
  color: var(--color-muted-2);
}

/* Map placeholder */
.map-placeholder {
  position: relative;
  height: clamp(280px, 40vw, 420px);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-4);
  cursor: pointer;
  transition: border-color var(--dur-base);
}

.map-placeholder:hover { border-color: var(--color-border-hi); }

.map-placeholder__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .6;
}

.map-placeholder__pin {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(197,160,90,.3));
  animation: pin-bounce .8s ease-in-out infinite alternate;
}

@keyframes pin-bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-6px); }
}

.map-placeholder__label {
  position: relative;
  z-index: 1;
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: .06em;
  text-align: center;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--color-dark-2);
  border-top: 1px solid var(--color-border);
  padding-block: clamp(40px, 6vw, 64px);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-12);
  margin-bottom: clamp(32px, 5vw, 48px);
  padding-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  max-width: 280px;
}

.footer__desc {
  font-size: var(--text-sm);
  color: var(--color-muted-2);
  line-height: 1.7;
  font-weight: 300;
}

.footer__nav {
  display: flex;
  gap: clamp(32px, 6vw, 80px);
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer__nav a {
  font-size: var(--text-sm);
  color: var(--color-muted);
  transition: color var(--dur-base);
  font-weight: 300;
}

.footer__nav a:hover { color: var(--color-gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__copy,
.footer__legal a {
  font-size: var(--text-xs);
  color: var(--color-muted-2);
}

.footer__legal a {
  transition: color var(--dur-base);
}

.footer__legal a:hover { color: var(--color-gold); }

/* ── MODAL ──────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease-out),
              visibility var(--dur-slow);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  background: var(--color-dark-2);
  border: 1px solid var(--color-border-hi);
  border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 48px);
  width: 100%;
  max-width: 640px;
  max-height: 90svh;
  overflow-y: auto;
  transform: translateY(20px) scale(.97);
  transition: transform var(--dur-slow) var(--ease-out);
}

.modal.is-open .modal__panel {
  transform: none;
}

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-dark-3);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-base), color var(--dur-base);
}

.modal__close:hover {
  border-color: var(--color-border-hi);
  color: var(--color-white);
}

.modal__head {
  margin-bottom: var(--sp-8);
}

.modal__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.1;
  margin-block: var(--sp-3) var(--sp-3);
}

.modal__sub {
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 300;
}

.modal__success {
  text-align: center;
  padding: clamp(32px, 5vw, 56px) 0;
}

.modal__success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-6);
  color: var(--color-gold);
}

.modal__success h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}

.modal__success p {
  font-size: var(--text-base);
  color: var(--color-muted);
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */

/* 1200px */
@media (max-width: 1200px) {
  .work__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
  }
  .project         { grid-column: span 3; }
  .project--large  { grid-column: span 4; }
  .project--wide   { grid-column: span 6; }
}

/* 1024px */
@media (max-width: 1024px) {
  .nav, .header__actions .btn { display: none; }
  .burger { display: flex; }

  .about__grid       { grid-template-columns: 1fr; }
  .pricing__grid     { grid-template-columns: 1fr; gap: 12px; }
  .plan--featured    { transform: none; order: -1; }
  .reviews__grid     { grid-template-columns: 1fr; }
  .quiz__inner       { grid-template-columns: 1fr; }
  .contact__grid     { grid-template-columns: 1fr; }
  .process__list     { grid-template-columns: 1fr 1fr; }
  .cta-band__inner   { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }
}

/* 768px */
@media (max-width: 768px) {
  .hero__br { display: block; }
  .hero__stats { gap: 0; }
  .hero__stat { min-width: 100px; }
  .hero__scroll { display: none; }

  .work__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .project, .project--large, .project--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .process__list     { grid-template-columns: 1fr; gap: 1px; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .quiz__options     { grid-template-columns: 1fr; }
  .footer__top       { flex-direction: column; }
  .footer__nav       { flex-wrap: wrap; gap: var(--sp-8); }
  .footer__bottom    { flex-direction: column; text-align: center; }
}

/* 480px */
@media (max-width: 480px) {
  .hero__actions     { flex-direction: column; width: 100%; }
  .btn--lg           { width: 100%; justify-content: center; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
  .hero__stats       { flex-direction: column; gap: var(--sp-4); }
  .hero__stat-divider { display: none; }
  .hero__stat        { padding-right: 0; }
  .modal__panel      { padding: var(--sp-6); }
  .quiz__nav         { flex-direction: column; }
}
.hero__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 62% center;

    z-index: 1;

    filter:
        brightness(.82)
        contrast(1.04)
        saturate(1.02);

    transform: scale(1.03);

    animation: heroZoom 18s cubic-bezier(.22,1,.36,1) infinite alternate;
}

@keyframes heroZoom {

    from {
        transform: scale(1.01);
    }

    to {
        transform: scale(1.05);
    }

}
.hero::after {
    content: '';

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 220px;

    z-index: 4;

    background: linear-gradient(
        to bottom,
        rgba(11,13,18,0),
        rgba(11,13,18,.78) 70%,
        #0b0d12 100%
    );

    pointer-events: none;
}
/* ─────────────────────────────────────────
   MOBILE PREMIUM OPTIMIZATION
───────────────────────────────────────── */

@media (max-width: 768px) {

    /* HERO */

    .hero {

        min-height: auto;

        padding-top: 64px;
        padding-bottom: 24px;

        justify-content: flex-start;
    }

    .hero__content {

        padding-top: 24px;
    }

    .hero__title {

        font-size: clamp(1.95rem, 8.9vw, 3rem);

        line-height: .9;

        letter-spacing: -.05em;

        max-width: 320px;
        
        margin-bottom:18px;
    }

    .hero__sub {

        font-size: 15px;

        line-height: 1.7;

        max-width: 100%;

        margin-bottom: 28px;
    }

    /* HERO IMAGE */

    .hero__image {

        object-position: 62% center;

        transform: scale(1);

        animation: none;

        filter:
            brightness(.74)
            contrast(1.02)
            saturate(1.02);
    }

    /* HEADER */

    .header {

        padding-block: 14px;
    }

    .header.scrolled {

        padding-block: 10px;
    }

    .header__inner {

        gap: 14px;
    }

    /* HERO STATS */

    .hero__stats {

        flex-direction: column;

        gap: 18px;

        padding: 22px;

        margin-top: 32px;
    }

    .hero__stat-divider {

        display: none;
    }

    .hero__stat {

        padding-right: 0;
    }

    .hero__stat-value {

        font-size: 1.9rem;
    }

    /* BUTTONS */

    .hero__actions {

        flex-direction: column;

        width: 100%;

        gap: 12px;
    }

    .hero__actions .btn {

        width: 100%;

        justify-content: center;

        min-height: 56px;

        font-size: 14px;
    }

    /* SECTION SPACING */

    :root {

        --section-py: 72px;
    }

    .section__head {

        margin-bottom: 40px;
    }

    /* TYPOGRAPHY */

    .section__title {

        line-height: .98;

        letter-spacing: -.03em;
    }

    .section__title em {

        display: inline-block;
    }

    /* PERFORMANCE */

    .hero__glow {

        filter: blur(50px);
    }

    .project__inner:hover {

        box-shadow: 0 10px 30px rgba(0,0,0,.28);
    }

    .modal__overlay {

        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

}
/* ─────────────────────────────────────────
   MOBILE LUXURY REFINEMENT
───────────────────────────────────────── */

@media (max-width: 768px) {

    /* HEADER */

    .header {

        padding-block: 10px;
    }

    .header__inner {

        min-height: 56px;
    }

    .logo__mark {

        width: 44px;
        height: 44px;
    }

    .header__phone {

        font-size: 14px;
    }

    /* HERO */

    .hero {

        padding-top: 64px;
        padding-bottom: 140px;
    }

    .hero__content {

        padding-top: 0;
    }

    .hero__eyebrow {
        
        padding-top: 34px;

        margin-bottom: 18px;
    }

    .hero__title {

        margin-bottom: 20px;

        max-width: 92%;
    }

    .hero__sub {

    font-size: 15px;

    line-height: 1.55;

    color: rgba(255,255,255,.72);

    max-width: 310px;
}

    /* IMAGE */

    .hero__image {

        filter:
            brightness(.58)
            contrast(1.04)
            saturate(1.02);
    }

    .hero::before {

        content: '';

        position: absolute;

        inset: 0;

        z-index: 2;

        background:
            linear-gradient(
                to bottom,
                rgba(0,0,0,.38) 0%,
                rgba(0,0,0,.18) 26%,
                rgba(0,0,0,.62) 100%
            );

        pointer-events: none;
    }

    .hero__content,
    .hero__meta {

        position: relative;

        z-index: 5;
    }

    /* BUTTONS */

    .hero__actions {

        gap: 14px;
    }

    .hero__actions .btn {

    min-height: 62px;

    font-weight: 500;

    letter-spacing: .03em;

    box-shadow:
        0 10px 30px rgba(0,0,0,.22);
}

    /* STATS */

    @media (max-width: 768px) {

    .hero__meta {

        margin-top: 42px;
    }

    .hero__stats {

        display: grid;

        grid-template-columns: 1fr;

        gap: 14px;

        padding-top: 0;
        
        padding:28px 22px;

        border-top: none;
    }

    .hero__stat {

        padding: 22px 22px;

        border-radius: 24px;
        
        padding-bottom: 18px;

        background: rgba(10,10,10,.42);

        border: 1px solid rgba(255,255,255,.08);

        backdrop-filter: blur(18px);

        -webkit-backdrop-filter: blur(18px);

        box-shadow:
            0 10px 40px rgba(0,0,0,.28),
            inset 0 1px 0 rgba(255,255,255,.03);
    }

    .hero__stat-divider {

        display: none;
    }

    .hero__stat-value {

        font-size: 2.8rem;

        line-height: 1;

        margin-bottom: 8px;

        color: #d4b06a;
    }

    .hero__stat-label {

        font-size: 12px;

        letter-spacing: .12em;

        text-transform: uppercase;

        color: rgba(255,255,255,.56);

        line-height: 1.5;
    }


    /* SECTION RHYTHM */

    section {

        overflow: hidden;
    }

    .section {

        padding-block: 78px;
    }

    .section__title {

        max-width: 100%;
    }

}
@media (max-width: 768px) {

    .header {

        background: rgba(8,8,8,.38);

        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        border-bottom: 1px solid rgba(255,255,255,.05);
    }

}
@media (max-width: 768px) {

    .hero::before {

        background:
            linear-gradient(
                to bottom,
                rgba(10,10,10,.22) 0%,
                rgba(10,10,10,.38) 38%,
                rgba(10,10,10,.72) 72%,
                #0e0e0e 100%
            );
    }

}
@media (max-width: 768px) {

    .btn--outline {

        background: rgba(0,0,0,.22);

        border: 1px solid rgba(255,255,255,.12);

        color: rgba(255,255,255,.88);

        backdrop-filter: blur(12px);

        -webkit-backdrop-filter: blur(12px);
    }

}
.hero::before {

    content: '';

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.18) 0%,
            rgba(0,0,0,.28) 32%,
            rgba(0,0,0,.62) 68%,
            rgba(0,0,0,.82) 100%
        );

    pointer-events: none;
}
@media (max-width: 768px) {

    .hero__content {

        padding-inline: 24px;

        max-width: 92%;
    }

}
/* ─────────────────────────────────────────
   QUIZ CONSENTS
───────────────────────────────────────── */

.quiz__submit-block {
    width: 100%;
    margin-top: 24px;
}

.quiz__consents-wrap,
.form-consents {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.form-checkbox {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    width: 100%;

    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {

    appearance: checkbox;
    -webkit-appearance: checkbox;

    width: 18px;
    height: 18px;

    min-width: 18px;
    min-height: 18px;

    margin: 2px 0 0 0;

    flex-shrink: 0;

    accent-color: var(--color-gold);

    cursor: pointer;
}

.form-checkbox span {

    display: block;

    flex: 1;

    min-width: 0;

    font-size: 13px;
    line-height: 1.6;

    color: rgba(240,237,232,.72);
}

.form-checkbox a {

    color: var(--color-gold);

    text-decoration: underline;

    text-decoration-color: rgba(197,160,90,.35);
}

.form-checkbox a:hover {

    color: var(--color-gold-light);
}