/* Global TM — Editorial premium redesign */

/* ===== Fonts (self-hosted, cyrillic + latin subsets) ===== */
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/manrope-400-cyrillic.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/manrope-400-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/manrope-700-cyrillic.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/manrope-700-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Playfair Display';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/playfair-600-cyrillic.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Playfair Display';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/playfair-600-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== Tokens ===== */
:root {
	/* Canvas */
	--color-bg:          #FAF7F2;
	--color-surface:     #FFFFFF;
	--color-surface-alt: #F2EDE4;

	/* Text */
	--color-ink:         #1F2430;
	--color-ink-soft:    #5A5F6B;
	--color-ink-muted:   #8A8F9A;

	/* Brand navy */
	--color-navy:        #3B477B;
	--color-navy-deep:   #262E4F;
	--color-blue:        #468CC7;

	/* Accent — navy, matching Global TM's black-navy-white identity */
	--color-accent:       #1B2340;
	--color-accent-hover: #0F1526;

	/* Supporting */
	--color-brass: #8C93A8;
	--color-error: #B3261E;
	--color-border: #E4DDD2;
	--color-border-dark: rgba(255,255,255,.16);

	--font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
	--font-base: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

	--space-1:4px; --space-2:8px; --space-3:12px; --space-4:16px; --space-5:24px;
	--space-6:32px; --space-7:48px; --space-8:64px; --space-9:96px; --space-10:128px;
	--section-y: clamp(64px, 9vw, 128px);

	--container-width: 1240px;
	--container-narrow: 760px;
	--radius: 2px;
	--radius-lg: 4px;
	--shadow-card: 0 1px 2px rgba(31,36,48,.04), 0 12px 32px rgba(31,36,48,.06);
}

/* ===== Reset / base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-ink);
	font-family: var(--font-base);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 32px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--section-y) 0; }
.section--alt { background: var(--color-surface-alt); }
.section--surface { background: var(--color-surface); }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--color-navy-deep); text-wrap: balance; margin: 0; }
h1 { font-size: clamp(34px, 5.2vw, 62px); line-height: 1.08; letter-spacing: -.01em; }
h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.16; }
h3 { font-size: clamp(20px, 2vw, 25px); line-height: 1.28; font-weight: 600; }
p { margin: 0; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--color-brass);
	margin-bottom: var(--space-4);
}
.eyebrow::before {
	content: "";
	width: 24px;
	height: 1px;
	background: var(--color-brass);
}

.section__head { max-width: 640px; margin-bottom: var(--space-8); }
.section__head h2 { margin-bottom: var(--space-3); }
.section__head p { font-size: 17px; color: var(--color-ink-soft); }
.section__head--center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .eyebrow::before { display: none; }

/* ===== Buttons ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 32px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .01em;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
	white-space: nowrap;
}
.btn--primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: var(--color-accent-hover); }
.btn--outline { background: transparent; border-color: var(--color-navy-deep); color: var(--color-navy-deep); }
.btn--outline:hover { background: var(--color-navy-deep); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); color: #fff; backdrop-filter: blur(2px); }
.btn--ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; }
.btn--block { width: 100%; }

/* ===== Header ===== */
.site-header {
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-5);
	height: 84px;
}
.site-logo__img { height: 42px; width: auto; }
.primary-nav { display: flex; align-items: center; gap: var(--space-7); }
.primary-nav__list { display: flex; align-items: center; gap: var(--space-6); }
.primary-nav__list a {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--color-ink-soft);
	transition: color .15s ease;
}
.primary-nav__list a:hover { color: var(--color-accent); }
.nav-phone { padding: 12px 22px; font-size: 14px; }
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-navy-deep); }

/* ===== Hero (editorial, full-bleed photo) ===== */
.hero--editorial {
	position: relative;
	min-height: clamp(520px, 76vh, 760px);
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
}
.hero--editorial__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero--editorial__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero--editorial__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(15,18,30,.82) 0%, rgba(15,18,30,.5) 46%, rgba(15,18,30,.22) 75%);
	z-index: 1;
}
.hero--editorial__scrim--heavy {
	background: linear-gradient(180deg, rgba(24,29,51,.93) 0%, rgba(38,46,79,.9) 50%, rgba(20,23,34,.95) 100%);
	backdrop-filter: blur(3px);
}
.hero--editorial__content {
	position: relative;
	z-index: 2;
	padding: var(--space-6) var(--space-6) var(--space-7);
	margin-bottom: var(--space-8);
	max-width: 720px;
	background: rgba(13,16,28,.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: var(--radius-lg);
}
.hero--editorial .eyebrow { color: #C7CCDB; }
.hero--editorial .eyebrow::before { background: #C7CCDB; }
.hero--editorial h1 { color: #fff; }
.hero--editorial__sub { font-size: 18px; color: rgba(255,255,255,.86); margin-top: var(--space-4); max-width: 56ch; }
.hero--editorial__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }
.hero--editorial__micro { margin-top: var(--space-5); font-size: 13.5px; color: rgba(255,255,255,.68); }
.hero--editorial__micro span:not(:last-child)::after { content: "·"; margin: 0 8px; }

/* type-led hero (no photo — Торговое) */
.hero--type {
	background: var(--color-navy-deep);
	color: #fff;
	padding: var(--space-10) 0;
	position: relative;
	overflow: hidden;
}
.hero--type::after {
	content: "";
	position: absolute;
	right: -10%;
	top: -20%;
	width: 60%;
	height: 140%;
	border: 1px solid rgba(255,255,255,.08);
	transform: rotate(8deg);
}
.hero--type .eyebrow { color: var(--color-brass); }
.hero--type h1 { color: #fff; max-width: 780px; }
.hero--type__sub { font-size: 18px; color: rgba(255,255,255,.78); margin-top: var(--space-4); max-width: 60ch; }
.hero--type__actions { margin-top: var(--space-6); }

/* ===== Trust strip ===== */
.trust-strip {
	background: var(--color-navy-deep);
	color: #fff;
}
.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.trust-strip__item {
	padding: var(--space-7) var(--space-5);
	text-align: center;
	border-left: 1px solid var(--color-border-dark);
}
.trust-strip__item:first-child { border-left: none; }
.trust-strip__num {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 600;
	color: var(--color-brass);
	margin-bottom: 6px;
}
.trust-strip__label { font-size: 13.5px; color: rgba(255,255,255,.75); }

/* ===== Directions grid (compact cards, home only) ===== */
.directions__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-5);
}
.direction-card {
	display: block;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
}
.direction-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.direction-card__image { width: 100%; height: 200px; object-fit: cover; }
.direction-card__body { padding: var(--space-5); }
.direction-card__body h3 { margin-bottom: 6px; }
.direction-card__body p { font-size: 14.5px; color: var(--color-ink-soft); margin-bottom: var(--space-3); }
.direction-card__price { font-family: var(--font-display); font-size: 15px; color: var(--color-brass); font-weight: 600; }
.direction-card__link { font-size: 13.5px; font-weight: 700; color: var(--color-accent); display: inline-block; margin-top: var(--space-2); }

/* ===== Work filter tabs ===== */
.work-filter {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-bottom: var(--space-7);
}
.work-filter__btn {
	padding: 10px 22px;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	font-family: var(--font-base);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-ink-soft);
	cursor: pointer;
	transition: all .15s ease;
}
.work-filter__btn:hover { border-color: var(--color-navy); color: var(--color-ink); }
.work-filter__btn.is-active { background: var(--color-navy-deep); border-color: var(--color-navy-deep); color: #fff; }
.work-card.is-hidden { display: none; }

/* ===== Work grid (selling cards with material + price + CTA) — masonry: each frame follows its own photo's proportions, nothing forced-cropped */
.work-grid {
	columns: 3 280px;
	column-gap: var(--space-6);
}
.work-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	break-inside: avoid;
	margin-bottom: var(--space-6);
}
.work-card__media { overflow: hidden; line-height: 0; }
.work-card__media img { width: 100%; height: auto; display: block; transition: transform .4s ease; }
.work-card:hover .work-card__media img { transform: scale(1.045); }
.work-card__body { padding: var(--space-5); }
.work-card__title { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.work-card__material { font-size: 13.5px; color: var(--color-ink-soft); margin-bottom: var(--space-4); }
.work-card__footer { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding-top: var(--space-4); border-top: 1px solid var(--color-border); }
.work-card__price { font-family: var(--font-display); font-weight: 600; color: var(--color-brass); font-size: 16px; }
.work-card__price span { display: block; font-family: var(--font-base); font-weight: 500; font-size: 11px; color: var(--color-ink-muted); text-transform: uppercase; letter-spacing: .04em; }
.work-card__cta { font-size: 13.5px; font-weight: 700; color: var(--color-accent); }
.work-card__cta:hover { color: var(--color-accent-hover); }

/* ===== Detail gallery ===== */
.detail-gallery {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr 1fr;
	gap: var(--space-5);
	align-items: end;
}
.detail-gallery__item { overflow: hidden; }
.detail-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery__item:nth-child(1) { aspect-ratio: 3/4; }
.detail-gallery__item:nth-child(2) { aspect-ratio: 3/4; margin-top: var(--space-9); }
.detail-gallery__item:nth-child(3) { aspect-ratio: 3/4; }

/* ===== Materials ===== */
.materials__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-6);
}
.materials__item { border-top: 2px solid var(--color-brass); padding-top: var(--space-4); }
.materials__item h3 { font-size: 18px; margin-bottom: 8px; }
.materials__item p { font-size: 14.5px; color: var(--color-ink-soft); }

/* ===== Process steps ===== */
.process-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--space-5);
	position: relative;
}
.process-steps::before {
	content: "";
	position: absolute;
	top: 26px;
	left: 5%;
	right: 5%;
	height: 1px;
	background: var(--color-border);
	z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-step__num {
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 600;
	color: var(--color-surface);
	background: var(--color-accent);
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-4);
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--color-ink-soft); }

/* ===== Why us ===== */
.why-us__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-6);
}
.why-us__item {
	padding: var(--space-6);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
}
.why-us__item h3 { margin-bottom: 10px; }
.why-us__item p { font-size: 15px; color: var(--color-ink-soft); }

/* ===== Production story ===== */
.production-story {
	background: var(--color-navy-deep);
	color: #fff;
}
.production-story__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-9);
	align-items: center;
}
.production-story__text .eyebrow { color: var(--color-brass); }
.production-story__text h2 { color: #fff; margin-bottom: var(--space-4); }
.production-story__text p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: var(--space-6); }
.production-story__photos { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-4); }
.production-story__photos img { width: 100%; height: 100%; object-fit: cover; }
.production-story__photos .is-tall { grid-row: span 2; aspect-ratio: 3/4; }
.production-story__photos .is-wide { aspect-ratio: 4/3; }

/* ===== Pricing ===== */
.pricing-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); align-items: start; }
.pricing-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	padding: var(--space-6);
}
.pricing-card--featured {
	border-color: var(--color-accent);
	border-top: 3px solid var(--color-accent);
	box-shadow: var(--shadow-card);
	transform: translateY(-8px);
}
.pricing-card__badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--color-accent);
	background: rgba(122,46,59,.08);
	padding: 4px 10px;
	margin-bottom: var(--space-4);
}
.pricing-card__name { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: var(--space-2); }
.pricing-card__price { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--color-brass); }
.pricing-card__unit { font-size: 13px; color: var(--color-ink-muted); margin-bottom: var(--space-5); }
.pricing-card__includes { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-6); }
.pricing-card__includes li { position: relative; padding-left: 22px; font-size: 14px; color: var(--color-ink-soft); }
.pricing-card__includes li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--color-brass); font-weight: 700; }
.pricing-note { text-align: center; font-size: 13.5px; color: var(--color-ink-muted); margin-top: var(--space-6); }

/* ===== Testimonials ===== */
.testimonials__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
.testimonial-card { position: relative; aspect-ratio: 9/16; overflow: hidden; background: var(--color-navy-deep); }
.testimonial-card__poster { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.testimonial-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__play {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(20,23,34,.75) 0%, rgba(20,23,34,.05) 55%);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimonial-card__play svg { width: 46px; height: 46px; }
.testimonial-card__play svg circle { fill: rgba(255,255,255,.16); stroke: #fff; stroke-width: 1.2; }
.testimonial-card__play svg path { fill: #fff; }
.testimonial-card.is-playing .testimonial-card__play { display: none; }
.testimonial-card__caption {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: var(--space-4);
	color: #fff;
	font-size: 13px;
	z-index: 3;
}
.testimonial-card.is-playing .testimonial-card__caption { display: none; }
.testimonial-card__caption strong { display: block; font-size: 14px; }

/* ===== Quiz / calculator ===== */
.quiz {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	padding: var(--space-8) var(--space-7);
	position: relative;
}
.quiz__progress {
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--color-border);
}
.quiz__progress-bar {
	display: block;
	height: 100%;
	background: var(--color-accent);
	transition: width .3s ease;
	width: 25%;
}
.quiz__step { display: none; }
.quiz__step.is-active { display: block; animation: quizFade .25s ease; }
@keyframes quizFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.quiz__question { text-align: center; margin-bottom: var(--space-6); }
.quiz__options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-4);
}
.quiz__option {
	padding: 20px 18px;
	border: 1.5px solid var(--color-border);
	background: var(--color-bg);
	border-radius: var(--radius);
	font-family: var(--font-base);
	font-size: 15px;
	font-weight: 600;
	color: var(--color-ink);
	cursor: pointer;
	text-align: center;
	transition: border-color .15s ease, background .15s ease;
}
.quiz__option:hover { border-color: var(--color-navy); }
.quiz__option.is-selected { border-color: var(--color-accent); background: var(--color-surface); color: var(--color-accent); }
.quiz__form { padding: 0; border: none; }
.quiz__back {
	margin-top: var(--space-6);
	background: none;
	border: none;
	color: var(--color-ink-muted);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}
.quiz__back:hover { color: var(--color-ink); }

/* ===== Brand statement ===== */
.statement {
	padding: var(--space-9) 0;
	text-align: center;
}
.statement__text {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(24px, 3.4vw, 38px);
	line-height: 1.35;
	color: var(--color-navy-deep);
	text-wrap: balance;
}
.statement__attribution {
	margin-top: var(--space-5);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--color-brass);
}

/* ===== CTA band ===== */
.cta-band { background: var(--color-accent); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: var(--space-3); }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: var(--space-6); font-size: 16px; }

/* ===== Lead form (functionality untouched — restyled only) ===== */
.lead-form-section { background: var(--color-navy-deep); color: #fff; padding: var(--section-y) 0; }
.lead-form-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-9); align-items: center; }
.lead-form-section__inner > * { min-width: 0; }
.lead-form-section h2 { color: #fff; }
.lead-form-section__text p { color: rgba(255,255,255,.75); margin-top: var(--space-3); }
.lead-form {
	background: var(--color-surface);
	padding: var(--space-7);
}
.lead-form__row { margin-bottom: var(--space-4); }
.lead-form__row input {
	width: 100%;
	padding: 15px 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	font-size: 15px;
	font-family: inherit;
	background: #fff;
}
.lead-form__row input.is-invalid { border-color: var(--color-error); }
.lead-form__error { display: none; font-size: 12px; color: var(--color-error); margin-top: 6px; }
.lead-form__error.is-visible { display: block; }

.phone-field {
	position: relative;
	display: flex;
	align-items: stretch;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fff;
	transition: border-color .15s ease;
}
.phone-field:focus-within { border-color: var(--color-navy); }
.phone-field.is-invalid { border-color: var(--color-error); }
.phone-field__toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	padding: 15px 10px 15px 16px;
	border: none;
	border-right: 1px solid var(--color-border);
	background: transparent;
	font-size: 15px;
	font-family: inherit;
	color: var(--color-ink);
	cursor: pointer;
	white-space: nowrap;
}
.phone-field__flag { font-size: 18px; line-height: 1; }
.phone-field__dial { font-weight: 700; }
.phone-field__chevron { width: 10px; height: 10px; margin-left: 2px; opacity: .5; transition: transform .15s ease; }
.phone-field.is-open .phone-field__chevron { transform: rotate(180deg); }
.phone-field .phone-field__number {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	border: none;
	background: transparent;
	padding: 15px 16px;
	font-size: 15px;
	font-family: inherit;
	color: var(--color-ink);
	outline: none;
}
.phone-field__dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: 0 12px 28px rgba(20,23,34,.16);
	list-style: none;
	margin: 0;
	padding: 6px;
	z-index: 20;
}
.phone-field__dropdown[hidden] { display: none; }
.phone-field__option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: calc(var(--radius) / 2);
	font-size: 14px;
	color: var(--color-ink);
	cursor: pointer;
}
.phone-field__option:hover, .phone-field__option.is-active { background: var(--color-surface-alt); }
.phone-field__option-flag { font-size: 16px; }
.phone-field__option-dial { color: var(--color-ink-muted); margin-left: auto; font-size: 13px; }

.lead-form .btn { width: 100%; border: none; font-size: 16px; margin-top: var(--space-2); }
.lead-form__note { font-size: 12px; color: var(--color-ink-muted); margin-top: var(--space-4); }
.lead-form__result { font-size: 14px; font-weight: 700; margin-top: var(--space-2); }
.lead-form__result.is-success { color: #1e7d3c; }
.lead-form__result.is-error { color: var(--color-error); }

/* ===== Footer ===== */
.site-footer { background: #12172B; color: rgba(255,255,255,.7); border-top: 1px solid rgba(140,147,168,.28); }
.site-footer .site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-8); padding-top: var(--space-9); padding-bottom: var(--space-7); }
.site-logo__text { font-family: var(--font-display); font-size: 20px; color: #fff; letter-spacing: .04em; }
.site-footer__col p { margin-top: var(--space-4); font-size: 14.5px; line-height: 1.7; }
.site-footer__col h4 { font-family: var(--font-base); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--color-brass); margin-bottom: var(--space-4); }
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { font-size: 14.5px; transition: color .15s ease; }
.site-footer__col a:hover { color: #fff; }
.site-footer .site-footer__bottom { border-top: 1px solid var(--color-border-dark); padding-top: var(--space-5); padding-bottom: var(--space-7); font-size: 13px; }

/* ===== Floating WhatsApp button ===== */
.whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 6px 20px rgba(20,23,34,.28);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 200;
	transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 34px; height: 34px; }
@media (max-width: 640px) {
	.whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
	.whatsapp-float svg { width: 30px; height: 30px; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.directions__grid { grid-template-columns: repeat(2, 1fr); }
	.work-grid { columns: 2 240px; }
	.materials__grid { grid-template-columns: repeat(2, 1fr); }
	.why-us__grid { grid-template-columns: 1fr; }
	.process-steps { grid-template-columns: repeat(3, 1fr); }
	.process-steps::before { display: none; }
	.trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.trust-strip__item:nth-child(3) { border-left: none; }
	.pricing-tiers { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
	.pricing-card--featured { transform: none; }
	.testimonials__grid { grid-template-columns: repeat(3, 1fr); }
	.production-story__grid { grid-template-columns: 1fr; gap: var(--space-6); }
	.detail-gallery { grid-template-columns: 1fr 1fr; }
	.detail-gallery__item:nth-child(3) { grid-column: span 2; aspect-ratio: 16/9; }
}

@media (max-width: 860px) {
	.primary-nav { display: none; position: absolute; top: 84px; left: 0; right: 0; background: var(--color-surface); border-bottom: 1px solid var(--color-border); flex-direction: column; align-items: stretch; padding: var(--space-5); gap: var(--space-5); }
	.primary-nav.is-open { display: flex; }
	.primary-nav__list { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
	.nav-toggle { display: flex; }
	.container { padding: 0 20px; }
	.section { padding: var(--space-8) 0; }
	.lead-form-section__inner { grid-template-columns: 1fr; gap: var(--space-6); }
	.hero--editorial__content { max-width: 100%; }
}

@media (max-width: 640px) {
	.directions__grid { grid-template-columns: 1fr; }
	.work-grid { columns: 1; }
	.materials__grid { grid-template-columns: 1fr; }
	.process-steps { grid-template-columns: 1fr; }
	.trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.trust-strip__item { padding: var(--space-5) var(--space-3); }
	.testimonials__grid { grid-template-columns: repeat(2, 1fr); }
	.detail-gallery { grid-template-columns: 1fr; }
	.detail-gallery__item:nth-child(2) { margin-top: 0; }
	.detail-gallery__item:nth-child(3) { grid-column: span 1; aspect-ratio: 3/4; }
	.site-footer .site-footer__inner { grid-template-columns: 1fr; gap: var(--space-6); }
	.site-footer .site-footer__bottom { text-align: center; }
	.hero--editorial { min-height: 560px; }
	.hero--editorial__content { margin-bottom: var(--space-6); padding: var(--space-5); }
	.production-story__photos { grid-template-columns: 1fr 1fr; }
}
