/* ============================================================
   Amazing Star Media — main.css
   Constellation-studio aesthetic: deep ink violet, warm paper,
   star-gold accent. Fraunces (display) + Schibsted Grotesk (UI).
   ============================================================ */

:root {
	--ink: #170a2b;
	--ink-2: #20103d;
	--ink-3: #2c1854;
	--paper: #f6f1e7;
	--paper-2: #efe7d8;
	--gold: #f0b24a;
	--gold-deep: #d99427;
	--lilac: #b9a3f5;
	--text-ink: #2a1c45;
	--text-soft: #5d5273;
	--text-light: #ece5fa;
	--text-light-soft: #b0a4cc;
	--line-dark: rgba(185, 163, 245, .18);
	--line-paper: rgba(42, 28, 69, .14);
	--radius: 18px;
	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Schibsted Grotesk", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	background: var(--ink);
	color: var(--text-ink);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 480; line-height: 1.08; letter-spacing: -.01em; }
h2 { font-size: clamp(34px, 4.6vw, 58px); }
h2 em, h1 em { font-style: italic; color: var(--gold-deep); }
.section--ink h2 em { color: var(--gold); }

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

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.container--narrow { width: min(820px, calc(100% - 48px)); }

/* ---------- buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .02em;
	padding: 14px 30px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s, background .25s, color .25s;
}
.btn--gold {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
	color: var(--ink);
	box-shadow: 0 8px 24px -8px rgba(240, 178, 74, .55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(240, 178, 74, .65); }
.btn--ghost { color: var(--text-light); border-color: var(--line-dark); background: rgba(185,163,245,.06); }
.btn--ghost:hover { background: rgba(185,163,245,.14); transform: translateY(-2px); }
.btn--full { width: 100%; border: 0; font-size: 16px; }

/* ---------- navigation ---------- */
.nav {
	position: fixed; inset: 0 0 auto 0; z-index: 50;
	transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.is-scrolled {
	background: rgba(23, 10, 43, .82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 var(--line-dark);
}
.nav__inner {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
	display: flex; align-items: center; gap: 36px;
	padding: 18px 0;
}
.nav.is-scrolled .nav__inner { padding: 12px 0; }
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__star { width: 26px; height: 26px; fill: var(--gold); filter: drop-shadow(0 0 8px rgba(240,178,74,.5)); }
.nav__word { font-family: var(--font-display); font-size: 19px; font-weight: 560; color: var(--text-light); letter-spacing: .01em; }
.nav__word em { font-style: italic; color: var(--gold); margin-left: 6px; font-weight: 420; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
	color: var(--text-light-soft); text-decoration: none; font-size: 15px; font-weight: 600;
	transition: color .2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta { padding: 11px 24px; font-size: 14px; }
.nav__burger { display: none; }

/* ---------- hero ---------- */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex; flex-direction: column; justify-content: center;
	background:
		radial-gradient(1100px 600px at 75% -10%, rgba(99, 60, 180, .35), transparent 60%),
		radial-gradient(800px 500px at 10% 110%, rgba(240, 178, 74, .12), transparent 55%),
		var(--ink);
	overflow: hidden;
	padding: 140px 0 80px;
}
.hero__sky { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__glow {
	position: absolute; left: 50%; top: -340px; transform: translateX(-50%);
	width: 900px; height: 620px; border-radius: 50%;
	background: radial-gradient(closest-side, rgba(185,163,245,.22), transparent 70%);
	pointer-events: none;
}
.hero__inner { position: relative; width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.hero__eyebrow {
	color: var(--gold); font-weight: 700; font-size: 13px;
	letter-spacing: .22em; text-transform: uppercase; margin-bottom: 28px;
}
.hero__title { font-size: clamp(44px, 7.2vw, 96px); color: var(--text-light); font-weight: 440; }
.hero__title span { display: block; }
.hero__title em { color: var(--gold); }
.hero__sub {
	margin-top: 30px; max-width: 560px;
	color: var(--text-light-soft); font-size: 19px;
}
.hero__actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
	margin-top: 72px;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
	border-top: 1px solid var(--line-dark); padding-top: 36px;
	max-width: 980px;
}
.stat strong {
	font-family: var(--font-display); font-weight: 480;
	font-size: clamp(34px, 3.6vw, 52px); color: var(--text-light); display: block; line-height: 1;
}
.stat__hk { color: var(--gold) !important; }
.stat span { color: var(--text-light-soft); font-size: 14px; display: block; margin-top: 8px; max-width: 170px; }
.hero__scroll {
	position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
	width: 26px; height: 44px; border: 1.5px solid var(--line-dark); border-radius: 999px;
}
.hero__scroll span {
	position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
	background: var(--gold); border-radius: 4px;
	animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 0%,100% { transform: translateY(0); opacity: 1 } 60% { transform: translateY(16px); opacity: 0 } 61% { opacity: 0 } 70% { transform: translateY(0) } }

/* ---------- marquee ---------- */
.marquee {
	background: var(--gold);
	overflow: hidden; white-space: nowrap;
	padding: 16px 0;
	transform: rotate(-1.1deg) scale(1.02);
	margin: -26px 0;
	position: relative; z-index: 5;
	box-shadow: 0 14px 40px -18px rgba(0,0,0,.5);
}
.marquee__track { display: inline-flex; align-items: center; gap: 34px; animation: scroll 30s linear infinite; padding-right: 34px; }
.marquee__track span {
	font-family: var(--font-display); font-style: italic; font-weight: 520;
	color: var(--ink); font-size: 19px;
}
.marquee__track i { font-style: normal; color: var(--ink); opacity: .55; font-size: 13px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { position: relative; padding: 130px 0; }
.section--paper {
	background:
		radial-gradient(900px 400px at 90% 0%, rgba(240,178,74,.10), transparent 60%),
		var(--paper);
}
.section--paper + .section--paper { padding-top: 90px; }
.section--ink {
	background:
		radial-gradient(1000px 500px at 15% 0%, rgba(99,60,180,.30), transparent 60%),
		var(--ink);
	color: var(--text-light);
}
.kicker {
	font-weight: 800; font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
	color: var(--gold-deep); margin-bottom: 18px;
}
.kicker::before { content: "✦ "; }
.kicker--gold { color: var(--gold); }
.section__head { max-width: 720px; margin-bottom: 64px; }
.section__head--light h2 { color: var(--text-light); }
.section__lede { margin-top: 20px; font-size: 18px; color: var(--text-soft); }
.section__head--light .section__lede { color: var(--text-light-soft); }

/* ---------- services ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
	position: relative;
	background: #fffdf8;
	border: 1px solid var(--line-paper);
	border-radius: var(--radius);
	padding: 34px 30px 30px;
	transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s, border-color .3s;
	overflow: hidden;
}
.service::after {
	content: "✦";
	position: absolute; right: 22px; top: 18px;
	color: var(--gold); opacity: 0; transform: rotate(-30deg) scale(.6);
	transition: opacity .3s, transform .4s cubic-bezier(.2,.8,.3,1);
	font-size: 20px;
}
.service:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(42,28,69,.35); border-color: rgba(217,148,39,.45); }
.service:hover::after { opacity: 1; transform: rotate(0) scale(1); }
.service__no {
	font-family: var(--font-display); font-style: italic;
	color: var(--gold-deep); font-size: 15px; letter-spacing: .08em;
}
.service h3 { font-size: 25px; margin: 14px 0 12px; }
.service p { color: var(--text-soft); font-size: 15.5px; }
.service ul { margin-top: 18px; list-style: none; }
.service li {
	font-size: 14px; font-weight: 600; color: var(--text-ink);
	padding: 7px 0 7px 22px; position: relative;
	border-top: 1px dashed var(--line-paper);
}
.service li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-deep); font-size: 11px; top: 10px; }

/* ---------- phones ---------- */
.phones {
	display: flex; justify-content: center; align-items: flex-end; gap: 34px;
	margin: 30px 0 60px;
	perspective: 1400px;
}
.phone {
	width: 250px; flex: 0 0 auto;
	background: linear-gradient(160deg, #3a2767, #1d0f38);
	border: 1px solid var(--line-dark);
	border-radius: 38px;
	padding: 12px;
	box-shadow: 0 40px 80px -30px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.08);
	transition: transform .5s cubic-bezier(.2,.8,.3,1);
}
.phone--left  { transform: rotateY(14deg) rotateZ(-4deg) translateY(14px); }
.phone--right { transform: rotateY(-14deg) rotateZ(4deg) translateY(14px); }
.phone--center { width: 270px; z-index: 2; }
.phone--left:hover, .phone--right:hover, .phone--center:hover { transform: translateY(-10px); }
.phone__screen {
	background: #120726;
	border-radius: 28px; overflow: hidden;
	aspect-ratio: 9 / 18.5;
}
.app { padding: 18px 16px; height: 100%; display: flex; flex-direction: column; gap: 12px; font-size: 12.5px; }
.app__bar { display: flex; justify-content: center; }
.app__bar i { width: 64px; height: 5px; border-radius: 5px; background: rgba(255,255,255,.18); }
.app__hello { color: var(--text-light-soft); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }
.app__balance { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); border-radius: 16px; padding: 14px; color: var(--ink); }
.app__balance span { font-size: 11px; font-weight: 700; opacity: .75; display: block; }
.app__balance strong { font-family: var(--font-display); font-size: 22px; font-weight: 560; }
.app__chips { display: flex; gap: 6px; }
.app__chips b { flex: 1; text-align: center; background: rgba(185,163,245,.12); border: 1px solid var(--line-dark); color: var(--text-light); border-radius: 999px; padding: 6px 0; font-size: 10.5px; }
.app__rows { display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }
.app__row { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.04); border-radius: 10px; padding: 8px 10px; color: var(--text-light); }
.app__row b { margin-left: auto; font-size: 11.5px; color: var(--text-light-soft); }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot--g { background: #62d99a; } .dot--v { background: var(--lilac); } .dot--o { background: var(--gold); }

.ring { position: relative; display: flex; justify-content: center; margin: 6px 0; }
.ring svg { width: 128px; height: 128px; transform: rotate(-90deg); }
.ring__bg { fill: none; stroke: rgba(185,163,245,.15); stroke-width: 10; }
.ring__fg {
	fill: none; stroke: var(--gold); stroke-width: 10; stroke-linecap: round;
	stroke-dasharray: 314; stroke-dashoffset: 78;
}
.is-visible .ring__fg { animation: ringfill 1.6s cubic-bezier(.3,.7,.3,1) both .4s; }
@keyframes ringfill { from { stroke-dashoffset: 314 } to { stroke-dashoffset: 78 } }
.ring__txt { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring__txt strong { font-family: var(--font-display); color: var(--text-light); font-size: 24px; font-weight: 520; }
.ring__txt span { color: var(--text-light-soft); font-size: 10.5px; text-transform: uppercase; letter-spacing: .14em; }
.app__meters { display: flex; flex-direction: column; gap: 10px; }
.meter span { color: var(--text-light-soft); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.meter__bar { height: 7px; background: rgba(185,163,245,.14); border-radius: 7px; margin-top: 4px; overflow: hidden; }
.meter__bar i { display: block; height: 100%; border-radius: 7px; background: linear-gradient(90deg, var(--lilac), var(--gold)); }

.bubble { max-width: 86%; padding: 9px 12px; border-radius: 14px; font-size: 11.5px; line-height: 1.45; }
.bubble--them { background: rgba(185,163,245,.14); color: var(--text-light); border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble--me { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink); font-weight: 600; border-bottom-right-radius: 4px; align-self: flex-end; }
.app__input { margin-top: auto; display: flex; align-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); border-radius: 999px; padding: 8px 8px 8px 14px; color: var(--text-light-soft); font-size: 11px; }
.app__input b { margin-left: auto; background: var(--gold); color: var(--ink); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; }

.industries { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.industries span {
	border: 1px solid var(--line-dark); color: var(--text-light-soft);
	border-radius: 999px; padding: 10px 22px; font-size: 14px; font-weight: 600;
	transition: color .25s, border-color .25s, background .25s;
}
.industries span:hover { color: var(--gold); border-color: rgba(240,178,74,.5); background: rgba(240,178,74,.06); }

/* ---------- process ---------- */
.steps {
	list-style: none;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
	counter-reset: step;
}
.step {
	position: relative;
	border-top: 2px solid var(--text-ink);
	padding: 26px 18px 0 0;
}
.step::before {
	content: ""; position: absolute; top: -6px; left: 0;
	width: 10px; height: 10px; border-radius: 50%;
	background: var(--gold-deep);
	box-shadow: 0 0 0 4px rgba(217,148,39,.22);
}
.step__no { font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--gold-deep); line-height: 1; display: block; }
.step h3 { font-size: 24px; margin: 12px 0 10px; }
.step p { font-size: 15px; color: var(--text-soft); }
.step__tag {
	display: inline-block; margin-top: 16px;
	font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
	color: var(--gold-deep); border: 1px dashed rgba(217,148,39,.5); border-radius: 999px; padding: 5px 14px;
}

/* ---------- studio ---------- */
.studio { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.studio > *, .contact > * { min-width: 0; }
.studio__media { position: relative; }
.studio__media img {
	border-radius: var(--radius);
	border: 1px solid var(--line-dark);
	box-shadow: 0 40px 90px -40px rgba(0,0,0,.8);
	transform: rotate(-2deg);
}
.studio__badge {
	position: absolute; right: -22px; bottom: -26px;
	background: var(--gold); color: var(--ink);
	border-radius: 16px; padding: 16px 20px;
	display: flex; align-items: center; gap: 12px;
	font-weight: 800; font-size: 13px; line-height: 1.3; letter-spacing: .04em;
	box-shadow: 0 20px 40px -16px rgba(0,0,0,.5);
	transform: rotate(2deg);
}
.studio__badge svg { width: 26px; height: 26px; fill: var(--ink); }
.studio__copy h2 { color: var(--text-light); margin-bottom: 24px; }
.studio__copy > p { color: var(--text-light-soft); margin-bottom: 16px; }
.studio__values { list-style: none; margin-top: 30px; border-top: 1px solid var(--line-dark); }
.studio__values li {
	padding: 16px 0 16px 30px; border-bottom: 1px solid var(--line-dark);
	color: var(--text-light-soft); font-size: 15.5px; position: relative;
}
.studio__values li::before { content: "✦"; position: absolute; left: 2px; top: 17px; color: var(--gold); font-size: 13px; }
.studio__values strong { color: var(--text-light); }

/* ---------- faq ---------- */
.faqs details {
	border-bottom: 1px solid var(--line-paper);
	padding: 6px 0;
}
.faqs summary {
	list-style: none; cursor: pointer;
	display: flex; align-items: center; gap: 18px;
	font-family: var(--font-display); font-size: 22px; font-weight: 520;
	padding: 18px 0;
	transition: color .2s;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary:hover { color: var(--gold-deep); }
.faqs summary i {
	margin-left: auto; flex: 0 0 auto;
	width: 30px; height: 30px; border-radius: 50%;
	border: 1.5px solid var(--line-paper);
	position: relative; transition: transform .3s, background .3s, border-color .3s;
}
.faqs summary i::before, .faqs summary i::after {
	content: ""; position: absolute; background: var(--text-ink); transition: background .3s;
}
.faqs summary i::before { width: 12px; height: 1.5px; left: 8px; top: 13.5px; }
.faqs summary i::after { width: 1.5px; height: 12px; left: 13.5px; top: 8px; }
.faqs details[open] summary i { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); }
.faqs details p { color: var(--text-soft); padding: 0 60px 22px 0; font-size: 16px; }

/* ---------- contact ---------- */
.section--contact { overflow: hidden; }
.hero__glow--contact { top: auto; bottom: -380px; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; position: relative; }
.contact__copy h2 { color: var(--text-light); margin-bottom: 22px; }
.contact__copy > p { color: var(--text-light-soft); max-width: 420px; }
.contact__meta { margin-top: 44px; display: flex; flex-direction: column; gap: 26px; }
.contact__meta span {
	display: block; font-size: 12px; font-weight: 800; letter-spacing: .2em;
	text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.contact__meta a { color: var(--text-light); font-family: var(--font-display); font-size: 24px; text-decoration: none; border-bottom: 1px solid var(--line-dark); transition: border-color .2s, color .2s; }
.contact__meta a:hover { color: var(--gold); border-color: var(--gold); }
.contact__meta address { font-style: normal; color: var(--text-light-soft); }

.contact__form {
	background: rgba(255, 253, 248, .035);
	border: 1px solid var(--line-dark);
	border-radius: 24px;
	padding: 38px;
	backdrop-filter: blur(6px);
}
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: block; margin-bottom: 18px; }
.field span {
	display: block; font-size: 12px; font-weight: 800; letter-spacing: .14em;
	text-transform: uppercase; color: var(--text-light-soft); margin-bottom: 8px;
}
.field input, .field textarea {
	width: 100%;
	background: rgba(23,10,43,.5);
	border: 1px solid var(--line-dark);
	border-radius: 12px;
	color: var(--text-light);
	font-family: var(--font-body); font-size: 15.5px;
	padding: 13px 16px;
	transition: border-color .25s, box-shadow .25s;
	resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(176,164,204,.45); }
.field input:focus, .field textarea:focus {
	outline: none; border-color: var(--gold);
	box-shadow: 0 0 0 4px rgba(240,178,74,.15);
}
.contact__hint { margin-top: 14px; text-align: center; font-size: 13px; color: var(--text-light-soft); }

/* ---------- footer ---------- */
.footer { background: #100621; border-top: 1px solid var(--line-dark); padding: 54px 0; }
.footer__inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; margin-left: auto; }
.footer__links a { color: var(--text-light-soft); text-decoration: none; font-size: 14px; font-weight: 600; transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__copy { width: 100%; color: rgba(176,164,204,.55); font-size: 13px; line-height: 1.7; }

.go-top {
	position: fixed; right: 26px; bottom: 26px; z-index: 40;
	width: 46px; height: 46px; border-radius: 50%;
	background: var(--gold); color: var(--ink);
	display: grid; place-items: center;
	font-size: 19px; font-weight: 800; text-decoration: none;
	box-shadow: 0 12px 28px -10px rgba(240,178,74,.6);
	opacity: 0; transform: translateY(14px); pointer-events: none;
	transition: opacity .3s, transform .3s;
}
.go-top.is-on { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; } .d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; } .d4 { transition-delay: .48s; }
.d5 { transition-delay: .60s; } .d6 { transition-delay: .72s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.marquee__track { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
	.services { grid-template-columns: repeat(2, 1fr); }
	.steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
	.phones { gap: 18px; }
	.phone { width: 220px; }
	.phone--center { width: 236px; }
	.studio, .contact { grid-template-columns: 1fr; gap: 56px; }
	.studio__media { max-width: 520px; }
}

@media (max-width: 760px) {
	body { font-size: 16px; }
	h2 { font-size: clamp(28px, 7.6vw, 40px); }
	.hero__title { font-size: clamp(34px, 9.6vw, 56px); }
	.hero__sub { font-size: 17px; }
	.section { padding: 90px 0; }
	.nav__links, .nav__cta { display: none; }
	.nav__burger {
		display: flex; flex-direction: column; gap: 6px; justify-content: center;
		margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px;
	}
	.nav__burger span { width: 24px; height: 2px; background: var(--text-light); transition: transform .3s, opacity .3s; }
	.nav.is-open .nav__burger span:first-child { transform: translateY(4px) rotate(45deg); }
	.nav.is-open .nav__burger span:last-child { transform: translateY(-4px) rotate(-45deg); }
	.nav.is-open { background: rgba(23,10,43,.96); }
	.nav.is-open .nav__links {
		display: flex; flex-direction: column; gap: 4px;
		position: absolute; top: 100%; left: 0; right: 0;
		background: rgba(23,10,43,.96); backdrop-filter: blur(14px);
		padding: 12px 24px 28px;
		box-shadow: 0 30px 40px -20px rgba(0,0,0,.6);
	}
	.nav.is-open .nav__links a { padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--line-dark); }
	.hero { padding-top: 120px; }
	.hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.services { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.phones { flex-direction: column; align-items: center; perspective: none; }
	.phone--left, .phone--right { transform: none; }
	.phone, .phone--center { width: min(270px, 80vw); }
	.faqs summary { font-size: 19px; }
	.faqs details p { padding-right: 0; }
	.contact__form { padding: 26px 20px; }
	.field-pair { grid-template-columns: 1fr; gap: 0; }
	.studio__badge { right: 8px; bottom: -18px; }
	.footer__links { margin-left: 0; }
}
