/* ==========================================================================
   EXACT FIT — Design System
   Ink #111114 · Paper #F7F5F1 · Red #E0312E · Beige #EDE8DF
   ========================================================================== */

:root {
	--ink: #111114;
	--carbon: #1C1C21;
	--paper: #F7F5F1;
	--white: #FFFFFF;
	--red: #E0312E;
	--red-deep: #B7221F;
	--concrete: #8A8A8E;
	--warm-grey: #D8D4CD;
	--beige: #EDE8DF;
	--whatsapp: #1FA855;
	--font-display: 'Space Grotesk', sans-serif;
	--font-body: 'Inter', sans-serif;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--container: 1280px;
	--radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
}

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

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.25; }

p { margin: 0 0 1em; }
a { color: inherit; }

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

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--ink); color: var(--white); padding: 12px 20px;
}
.skip-link:focus { left: 0; }

/* --- Eyebrows, underline accent --- */
.eyebrow {
	font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--concrete); margin: 0 0 16px;
}
.eyebrow-red { color: var(--red); }

.u-red {
	background-image: linear-gradient(var(--red), var(--red));
	background-repeat: no-repeat;
	background-position: 0 96%;
	background-size: 0% 4px;
	transition: background-size 0.6s var(--ease) 0.3s;
	padding-bottom: 2px;
}
.is-visible .u-red, .u-red.is-visible { background-size: 100% 4px; }

/* --- Buttons --- */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 15px; font-weight: 600;
	padding: 14px 28px;
	border-radius: 6px;
	border: 1.5px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
	text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red-deep); }
.btn-primary:hover { background: var(--red-deep); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--carbon); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #178a45; }
.btn-block { width: 100%; }

.link-arrow {
	font-size: 15px; font-weight: 600; color: var(--red);
	text-decoration: none; position: relative;
}
.link-arrow span { display: inline-block; transition: transform 0.2s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow::after {
	content: ''; position: absolute; left: 0; bottom: -3px;
	width: 0; height: 1.5px; background: var(--red);
	transition: width 0.25s var(--ease);
}
.link-arrow:hover::after { width: 100%; }

/* --- Header --- */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
	padding: 20px 0;
}
.site-header.is-scrolled {
	background: var(--paper);
	border-bottom: 1px solid var(--warm-grey);
	padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { text-decoration: none; display: flex; align-items: center; }
.brand img { max-height: 44px; width: auto; }
.brand-text {
	font-family: var(--font-display); font-weight: 700; font-size: 22px;
	letter-spacing: 0.02em; color: var(--white);
	transition: color 0.3s ease;
}
.site-header.is-scrolled .brand-text, .on-light .brand-text { color: var(--ink); }
.brand-slash { color: var(--red); }
.site-footer .brand-text { color: var(--white); font-size: 24px; }

.nav-list {
	display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
}
.nav-list a {
	font-size: 15px; font-weight: 500; text-decoration: none;
	color: rgba(255,255,255,0.85);
	transition: color 0.2s ease;
}
.site-header.is-scrolled .nav-list a { color: var(--ink); }
.nav-list a:hover { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-wa { color: var(--whatsapp); display: inline-flex; }
.header-wa svg { width: 26px; height: 26px; }
.header-cta { padding: 11px 20px; font-size: 14px; }

.nav-toggle {
	display: none; background: none; border: none; cursor: pointer;
	width: 44px; height: 44px; padding: 10px; flex-direction: column;
	justify-content: center; gap: 7px;
}
.nav-toggle span {
	display: block; height: 2px; width: 100%; background: var(--white);
	transition: transform 0.3s var(--ease), background 0.3s ease;
}
.site-header.is-scrolled .nav-toggle span, .nav-open .nav-toggle span { background: var(--ink); }
.nav-open .nav-toggle span { background: var(--white); }
.nav-open .nav-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-open .nav-toggle span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.nav-mobile-contact { display: none; }

/* --- Sections --- */
.section { padding: 120px 0; }
.section-tight { padding: 90px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-beige { background: var(--beige); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-sub { font-size: 18px; color: var(--concrete); }
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* --- Hero --- */
.hero {
	position: relative; min-height: 92vh;
	display: flex; flex-direction: column; justify-content: flex-end;
	background: var(--ink); color: var(--white);
	overflow: hidden;
}
.hero-bg {
	position: absolute; inset: 0;
	background:
		linear-gradient(100deg, rgba(17,17,20,0.92) 30%, rgba(17,17,20,0.55) 70%, rgba(17,17,20,0.35)),
		radial-gradient(ellipse at 75% 35%, #3a3a42 0%, #232328 45%, #111114 100%);
	/* Replace with a real photo:
	   background-image: linear-gradient(100deg, rgba(17,17,20,0.85) 25%, rgba(17,17,20,0.25) 75%), url('../img/hero.jpg');
	   background-size: cover; background-position: center; */
}
.hero-inner { position: relative; z-index: 2; padding-top: 160px; padding-bottom: 80px; }
.hero h1 { max-width: 14ch; }
.hero-sub { font-size: 19px; color: rgba(255,255,255,0.72); max-width: 52ch; margin-bottom: 36px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-wa {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--whatsapp); font-weight: 600; font-size: 15px; text-decoration: none;
}
.hero-wa svg { width: 20px; height: 20px; }
.hero-wa:hover { text-decoration: underline; }

.hero-trust { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.14); }
.trust-strip {
	display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
	padding-top: 18px; padding-bottom: 18px;
	font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--concrete);
}
.trust-strip i { color: var(--red); font-style: normal; }

/* --- About --- */
.about-grid {
	display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start;
}
.about-body { font-size: 18px; max-width: 60ch; }
.counters {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--warm-grey);
}
.counter-num, .counter-plus {
	font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums;
}
.counter-plus { color: var(--red); }
.counter p { font-size: 14px; color: var(--concrete); margin: 4px 0 0; }

/* --- Services --- */
.services-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
	background: var(--white); border: 1px solid var(--warm-grey);
	border-radius: var(--radius); padding: 32px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(17,17,20,0.08);
	border-color: var(--ink);
}
.service-icon {
	width: 56px; height: 56px; border: 1px solid var(--warm-grey); border-radius: 6px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px; color: var(--ink);
	transition: color 0.2s ease, border-color 0.2s ease;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { color: var(--red); border-color: var(--red); }
.service-card h3 { font-size: 19px; }
.service-card p { font-size: 15px; color: var(--concrete); min-height: 3.2em; }

/* --- Why --- */
.why-grid { display: grid; grid-template-columns: 4fr 7fr; gap: 80px; }
.why-head { position: sticky; top: 120px; align-self: start; }
.why-head p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-point {
	background: var(--carbon); border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius); padding: 28px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.why-point:hover { border-color: rgba(224,49,46,0.6); box-shadow: inset 3px 0 0 var(--red); }
.why-num {
	font-family: var(--font-display); font-size: 14px; font-weight: 600;
	color: var(--red); letter-spacing: 0.1em;
}
.why-point h3 { font-size: 17px; margin: 10px 0 8px; }
.why-point p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }

/* --- Process --- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step-num {
	font-family: var(--font-display); font-size: 32px; font-weight: 600;
	color: var(--red); font-variant-numeric: tabular-nums;
}
.step-line {
	height: 2px; background: var(--warm-grey); margin: 14px 0 18px;
	position: relative; overflow: hidden;
}
.step-line::after {
	content: ''; position: absolute; inset: 0; background: var(--red);
	transform: translateX(-101%); transition: transform 0.8s var(--ease);
}
.process-step.is-visible .step-line::after { transform: translateX(0); }
.process-step:nth-child(2) .step-line::after { transition-delay: 0.2s; }
.process-step:nth-child(3) .step-line::after { transition-delay: 0.4s; }
.process-step:nth-child(4) .step-line::after { transition-delay: 0.6s; }
.process-step h3 { font-size: 19px; }
.process-step p { font-size: 15px; color: #5F5E5A; }
.process-note {
	margin-top: 56px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
	font-weight: 500;
}

/* --- Portfolio --- */
.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
	font-family: var(--font-body); font-size: 14px; font-weight: 500;
	padding: 9px 18px; border-radius: 99px;
	background: transparent; border: 1px solid var(--warm-grey);
	color: var(--ink); cursor: pointer;
	transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.portfolio-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px;
}
.project-card { display: block; }
.project-card.is-hidden { display: none; }
.project-wide { grid-column: span 2; }
.project-img {
	border-radius: var(--radius); aspect-ratio: 4 / 3; position: relative;
	overflow: hidden; margin-bottom: 18px;
}
.project-wide .project-img { aspect-ratio: 8 / 4.5; }
.project-tag {
	position: absolute; top: 14px; left: 14px;
	background: rgba(17,17,20,0.78); color: var(--white);
	font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
	padding: 6px 12px; border-radius: 4px;
}
.project-card h3 { font-size: 19px; margin-bottom: 6px; }
.project-card p { font-size: 15px; color: var(--concrete); }

/* Placeholder "photo" surfaces — replace with real images */
.ph-img { background: var(--carbon); position: relative; }
.ph-img::after {
	content: '/'; position: absolute; right: 16px; bottom: 8px;
	font-family: var(--font-display); font-size: 48px; font-weight: 700;
	color: rgba(224,49,46,0.35);
}
.ph-img.has-img::after { content: none; }
.ph-1 { background: linear-gradient(135deg, #2b2b31, #1C1C21 60%, #26262c); }
.ph-2 { background: linear-gradient(135deg, #3a322c, #221f1c 65%); }
.ph-3 { background: linear-gradient(135deg, #2c3138, #1d2024 60%); }
.ph-4 { background: linear-gradient(135deg, #33302b, #1f1d1a 70%); }
.ph-5 { background: linear-gradient(135deg, #362d2d, #211c1c 60%); }
.ph-6 { background: linear-gradient(135deg, #2e2e35, #1b1b20 65%); }
.ph-before { background: linear-gradient(120deg, #4a443c, #35312b 60%); }
.ph-after { background: linear-gradient(120deg, #23232a, #15151a 60%); }

/* --- Before / After --- */
.ba-wrap { max-width: 960px; margin: 0 auto; }
.ba-slider {
	position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius);
	overflow: hidden; user-select: none;
}
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-label {
	position: absolute; top: 16px; left: 16px;
	background: rgba(247,245,241,0.9); color: var(--ink);
	font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
	padding: 6px 12px; border-radius: 4px;
}
.ba-label-after { left: auto; right: 16px; background: var(--red); color: var(--white); }
.ba-range {
	position: absolute; inset: 0; width: 100%; height: 100%;
	opacity: 0; cursor: ew-resize; margin: 0; z-index: 3;
}
.ba-handle {
	position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
	background: var(--red); transform: translateX(-50%); z-index: 2; pointer-events: none;
}
.ba-handle span {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	background: var(--red); color: var(--white);
	width: 44px; height: 44px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 14px; letter-spacing: -1px;
}
.ba-caption { text-align: center; font-size: 14px; color: var(--concrete); margin-top: 16px; }

/* --- Spaces --- */
.spaces-scroll {
	display: flex; gap: 20px; overflow-x: auto; padding: 0 24px 24px;
	scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.spaces-scroll::-webkit-scrollbar { height: 6px; }
.spaces-scroll::-webkit-scrollbar-thumb { background: var(--warm-grey); border-radius: 3px; }
.space-card { flex: 0 0 280px; scroll-snap-align: start; }
.space-img { aspect-ratio: 3 / 4; border-radius: var(--radius); margin-bottom: 16px; }
.space-card h3 { font-size: 18px; margin-bottom: 4px; }
.space-card p { font-size: 14px; color: var(--concrete); }

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial {
	margin: 0; background: var(--white); border: 1px solid var(--warm-grey);
	border-radius: var(--radius); padding: 36px;
}
.stars { color: var(--red); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.testimonial p { font-size: 17px; line-height: 1.6; }
.testimonial cite {
	font-style: normal; font-size: 14px; font-weight: 600; color: var(--concrete);
}

/* --- CTA band --- */
.cta-band { padding: 140px 0; }
.cta-inner { text-align: center; max-width: 760px; }
.cta-inner h2 { margin-bottom: 20px; }
.cta-inner > p { color: rgba(255,255,255,0.65); font-size: 18px; margin-bottom: 36px; }
.cta-center { justify-content: center; }
.cta-phone { margin-top: 32px; font-size: 15px; color: var(--concrete); }
.cta-phone a { color: var(--white); font-weight: 600; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-rows { list-style: none; padding: 0; margin: 32px 0 0; }
.contact-rows li {
	display: grid; grid-template-columns: 120px 1fr; gap: 16px;
	padding: 16px 0; border-bottom: 1px solid var(--warm-grey);
	font-size: 15px; align-items: baseline;
}
.contact-rows strong { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--concrete); }
.contact-rows a { color: var(--ink); font-weight: 500; text-decoration: none; }
.contact-rows a:hover { color: var(--red); }

.contact-form-wrap {
	background: var(--white); border-radius: var(--radius);
	border-top: 4px solid var(--red);
	box-shadow: 0 16px 48px rgba(17,17,20,0.07);
	padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
	display: block; font-size: 13px; font-weight: 600;
	letter-spacing: 0.04em; margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea {
	width: 100%; font-family: var(--font-body); font-size: 16px;
	padding: 13px 16px; border: 1px solid var(--warm-grey); border-radius: 6px;
	background: var(--paper); color: var(--ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
	outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,49,46,0.12);
}
.form-trust { font-size: 13px; color: var(--concrete); text-align: center; margin: 14px 0 0; }
.form-feedback { font-size: 14px; color: var(--red); text-align: center; margin: 10px 0 0; min-height: 1em; }
.form-success { text-align: center; padding: 40px 0; }
.form-success h3 { font-size: 28px; }

/* --- FAQ --- */
.faq-container { max-width: 820px; }
.faq h2 { margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid var(--warm-grey); }
.faq-item summary {
	font-family: var(--font-display); font-weight: 600; font-size: 18px;
	padding: 22px 44px 22px 0; cursor: pointer; list-style: none;
	position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
	position: absolute; right: 0; top: 50%; transform: translateY(-50%);
	width: 24px; height: 24px;
}
.faq-toggle::before, .faq-toggle::after {
	content: ''; position: absolute; background: var(--red);
	top: 50%; left: 50%; transition: transform 0.25s var(--ease);
}
.faq-toggle::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item p { padding: 0 44px 24px 0; color: #5F5E5A; margin: 0; }

/* --- Footer --- */
.site-footer { background: var(--ink); color: var(--white); padding: 80px 0 0; }
.footer-grid {
	display: grid; grid-template-columns: 2fr 1fr 1.4fr 1.6fr; gap: 48px;
	padding-bottom: 64px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 15px; margin: 20px 0 24px; max-width: 34ch; }
.footer-social { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-social a {
	font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none;
}
.footer-social a:hover { color: var(--red); }
.footer-col h3 {
	font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--concrete); margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 15px; color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-services ul { columns: 2; column-gap: 24px; }
.footer-contact li { color: rgba(255,255,255,0.75); font-size: 15px; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	padding: 24px 0; font-size: 13px; color: var(--concrete); flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }
.footer-tagline { font-family: var(--font-display); letter-spacing: 0.04em; }

/* --- Floating WhatsApp --- */
.wa-float {
	position: fixed; right: 24px; bottom: 24px; z-index: 90;
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--whatsapp); color: var(--white);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(0,0,0,0.25);
	transition: transform 0.2s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }
.wa-pulse {
	position: absolute; inset: 0; border-radius: 50%;
	border: 2px solid var(--whatsapp);
	animation: wa-pulse 4s ease-out infinite;
}
@keyframes wa-pulse {
	0%, 70% { transform: scale(1); opacity: 0.5; }
	100% { transform: scale(1.7); opacity: 0; }
}

/* --- Mobile action bar --- */
.mobile-action-bar {
	display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
	transform: translateY(110%); transition: transform 0.35s var(--ease);
}
.mobile-action-bar.is-shown { transform: translateY(0); }
.mobile-action-bar a {
	flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
	font-size: 15px; font-weight: 600; text-decoration: none;
	padding: 16px; color: var(--white);
}
.mobile-action-bar svg { width: 20px; height: 20px; }
.mab-call { background: var(--ink); }
.mab-wa { background: var(--whatsapp); }

/* --- Reveal animations --- */
.reveal {
	opacity: 0; transform: translateY(24px);
	transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.wa-pulse { animation: none; }
	.u-red { background-size: 100% 4px; transition: none; }
	.step-line::after { transform: none; transition: none; }
}

/* --- Announcement strip (homepage only, inside fixed header) --- */
.announce-bar {
	display: flex; align-items: center; gap: 16px;
	background: var(--ink);
	border-bottom: 1px solid rgba(255,255,255,0.12);
	padding: 8px 24px;
	margin: -20px 0 16px;
	font-size: 13px; color: rgba(255,255,255,0.85);
	text-decoration: none;
}
.site-header.is-scrolled .announce-bar { display: none; }
.announce-label {
	flex-shrink: 0;
	background: var(--red); color: var(--white);
	font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
	padding: 3px 10px; border-radius: 4px;
}
.announce-marquee { flex: 1; overflow: hidden; min-width: 0; }
.announce-track {
	display: inline-flex; white-space: nowrap;
	animation: announce-scroll 30s linear infinite;
}
.announce-track > span { padding-right: 64px; }
.announce-bar:hover .announce-track { animation-play-state: paused; }
@keyframes announce-scroll {
	to { transform: translateX(-50%); }
}
.announce-more {
	flex-shrink: 0; color: var(--white); font-weight: 600; font-size: 12px;
	border-bottom: 1px solid var(--red);
	transition: color 0.2s ease;
}
.announce-bar:hover .announce-more { color: var(--red); }

@media (prefers-reduced-motion: reduce) {
	.announce-track { animation: none; }
	.announce-track > span + span { display: none; }
	.announce-marquee { text-overflow: ellipsis; overflow: hidden; }
}

/* --- Announcements page --- */
.announcement-featured {
	background: var(--white);
	border: 1px solid var(--warm-grey); border-top: 4px solid var(--red);
	border-radius: var(--radius);
	box-shadow: 0 16px 48px rgba(17,17,20,0.07);
	padding: 48px;
	display: flex; gap: 40px; align-items: flex-start;
}
.announcement-icon {
	flex: 0 0 80px; width: 80px; height: 80px;
	border: 1px solid var(--warm-grey); border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	color: var(--red);
}
.announcement-icon svg { width: 40px; height: 40px; }
.announcement-meta {
	display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
	margin-bottom: 16px;
}
.announce-cat {
	font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--red); border: 1px solid rgba(224,49,46,0.35);
	padding: 5px 12px; border-radius: 99px;
}
.announce-date {
	font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
	text-transform: uppercase; color: var(--concrete);
}
.announcement-featured h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.announcement-featured p { font-size: 16px; color: #5F5E5A; max-width: 70ch; margin-bottom: 24px; }

.announcement-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.announcement-card {
	background: var(--white); border: 1px solid var(--warm-grey);
	border-radius: var(--radius); padding: 32px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}
.announcement-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(17,17,20,0.08);
	border-color: var(--ink);
}
.announcement-card h3 { font-size: 20px; margin-bottom: 10px; }
.announcement-card p { font-size: 15px; color: var(--concrete); margin-bottom: 18px; }

/* --- Inner page hero (services, projects) --- */
.page-hero {
	background: var(--ink); color: var(--white);
	padding: 180px 0 80px; position: relative;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 20ch; }
.page-hero .hero-sub { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 60ch; margin-bottom: 32px; }
.page-hero .hero-trust { margin-top: 56px; }
.project-hero { min-height: 70vh; }

/* --- Service page blocks --- */
.services-grid-2 { grid-template-columns: 1fr 1fr; }
.service-card-lg { padding: 44px; }
.service-card-lg .service-card-title { font-size: 26px; margin: 0 0 12px; }
.service-card-lg p { min-height: 0; font-size: 16px; }
.service-card-ctas { display: flex; align-items: center; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.service-card-links { display: flex; gap: 22px; flex-wrap: wrap; }
.service-title-link { text-decoration: none; color: inherit; }
.service-title-link:hover { color: var(--red); }

.whatwedo { margin-top: 80px; }
.whatwedo h2, .who-for h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 28px; }
.check-list {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px;
}
.check-list li {
	position: relative; padding: 14px 0 14px 30px;
	border-bottom: 1px solid var(--warm-grey); font-size: 16px;
}
.check-list li::before {
	content: '/'; position: absolute; left: 4px; top: 12px;
	font-family: var(--font-display); font-weight: 700; color: var(--red);
}
.who-for { margin-top: 64px; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
	font-size: 14px; font-weight: 500; padding: 10px 18px;
	border: 1px solid var(--warm-grey); border-radius: 99px; background: var(--white);
}
.process-grid-7 { grid-template-columns: repeat(4, 1fr); row-gap: 48px; }

/* --- Project cards: hover overlay + arrow --- */
.project-link { text-decoration: none; color: inherit; display: block; }
.project-img { isolation: isolate; }
.project-hover {
	position: absolute; inset: 0; z-index: 1;
	background: rgba(17,17,20,0.55);
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
	opacity: 0; transition: opacity 0.35s var(--ease);
}
.project-card:hover .project-hover { opacity: 1; }
.project-arrow {
	width: 52px; height: 52px; border-radius: 50%;
	background: var(--red); color: var(--white);
	display: flex; align-items: center; justify-content: center;
	font-size: 20px; transform: translateY(8px);
	transition: transform 0.35s var(--ease);
}
.project-card:hover .project-arrow { transform: translateY(0); }
.project-view {
	color: var(--white); font-size: 13px; font-weight: 600;
	letter-spacing: 0.08em; text-transform: uppercase;
}
.project-card:hover .project-img { box-shadow: 0 20px 48px rgba(17,17,20,0.18); }
.project-card h3 a, .project-link h3 { transition: color 0.2s ease; }
.project-card:hover h3 { color: var(--red); }
.project-loc {
	font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
	text-transform: uppercase; color: var(--concrete); margin: 0 0 6px;
}
.related-grid { margin-bottom: 0; }

/* --- Project snapshot --- */
.snapshot-grid {
	display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.snapshot-item {
	background: var(--white); border: 1px solid var(--warm-grey);
	border-radius: var(--radius); padding: 20px;
	border-top: 3px solid var(--red);
}
.snapshot-label {
	display: block; font-size: 12px; font-weight: 600;
	letter-spacing: 0.1em; text-transform: uppercase; color: var(--concrete);
	margin-bottom: 6px;
}
.snapshot-value { font-family: var(--font-display); font-weight: 600; font-size: 16px; }

/* --- Case study content --- */
.case-container { max-width: 820px; }
.case-study h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 1.8em 0 0.6em;
	padding-top: 0.6em; position: relative;
}
.case-study h2::before {
	content: ''; position: absolute; top: 0; left: 0;
	width: 48px; height: 3px; background: var(--red);
}
.case-study h2:first-child { margin-top: 0; }
.case-study p { font-size: 17px; color: #3a3a3e; }
.case-study ul { padding-left: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
.case-study ul li { position: relative; padding: 10px 0 10px 28px; border-bottom: 1px solid var(--warm-grey); }
.case-study ul li::before {
	content: '/'; position: absolute; left: 2px; top: 8px;
	font-family: var(--font-display); font-weight: 700; color: var(--red);
}
.case-study img { border-radius: var(--radius); margin: 24px 0; }

/* --- Journey timeline (animated) ---
   Reveal: fade-up, 0.7s, staggered 0.14s per step (delay set by JS).
   Progress: red line fills with scroll, soft glow at the tip.
   Active: passed markers turn red; the current step's dot pulses and
   its card lifts slightly with a more prominent heading. */
.journey { position: relative; max-width: 760px; }
.journey-track {
	position: absolute; left: 27px; top: 8px; bottom: 8px;
	width: 2px; background: var(--warm-grey); overflow: visible;
}
.journey-progress {
	position: absolute; top: 0; left: 0; width: 100%; height: 0%;
	background: var(--red);
	box-shadow: 0 0 10px rgba(224, 49, 46, 0.35);
	transition: height 0.25s linear;
}
.journey-progress::after {
	content: ''; position: absolute; bottom: -3px; left: 50%;
	width: 8px; height: 8px; border-radius: 50%;
	transform: translateX(-50%);
	background: var(--red);
	box-shadow: 0 0 12px rgba(224, 49, 46, 0.55);
}

.journey-step {
	display: flex; gap: 28px; padding-bottom: 36px; position: relative;
	opacity: 0; transform: translateY(28px);
	transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.journey-step.is-visible { opacity: 1; transform: none; }
.journey-step:last-child { padding-bottom: 0; }

.journey-marker {
	flex: 0 0 56px; width: 56px; height: 56px; border-radius: 50%;
	background: var(--ink); color: var(--white);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 600; font-size: 15px;
	position: relative; z-index: 1;
	border: 3px solid var(--beige);
	transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease);
}
.journey-step.is-passed .journey-marker { background: var(--red); }
.journey-step.is-current .journey-marker {
	background: var(--red);
	box-shadow: 0 0 0 4px rgba(224, 49, 46, 0.15), 0 0 18px rgba(224, 49, 46, 0.3);
	transform: scale(1.06);
}
.journey-step.is-current .journey-marker::after {
	content: ''; position: absolute; inset: -3px; border-radius: 50%;
	border: 2px solid var(--red);
	animation: journey-pulse 2.2s var(--ease) infinite;
}
@keyframes journey-pulse {
	0% { transform: scale(1); opacity: 0.6; }
	70%, 100% { transform: scale(1.55); opacity: 0; }
}

.journey-card {
	flex: 1; background: var(--white);
	border: 1px solid var(--warm-grey); border-radius: var(--radius);
	padding: 24px 28px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}
.journey-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(17, 17, 20, 0.08);
	border-color: var(--ink);
}
.journey-step.is-current .journey-card {
	transform: scale(1.015);
	border-color: var(--ink);
	box-shadow: 0 12px 32px rgba(17, 17, 20, 0.07);
}
.journey-card h3 {
	font-size: 19px; margin: 0 0 6px;
	transition: color 0.3s ease;
}
.journey-card h3::before {
	content: '/ '; color: var(--red); opacity: 0;
	margin-left: -16px; transition: opacity 0.4s ease, margin 0.4s var(--ease);
}
.journey-step.is-current .journey-card h3::before { opacity: 1; margin-left: 0; }
.journey-step.is-current .journey-card h3 { color: var(--ink); }
.journey-card p { font-size: 15px; color: #5F5E5A; margin: 0; max-width: 56ch; }

@media (prefers-reduced-motion: reduce) {
	.journey-step { opacity: 1; transform: none; transition: none; }
	.journey-progress { transition: none; }
	.journey-step.is-current .journey-marker::after { animation: none; }
	.journey-card, .journey-marker { transition: none; }
}

.testimonial-feature { max-width: 820px; margin: 0 auto; }
.testimonial-feature p { font-size: 21px; line-height: 1.55; font-family: var(--font-display); font-weight: 500; }

/* --- Blog / inner pages --- */
.page-plain { padding: 160px 0 100px; }
.page-plain .entry-content { max-width: 760px; }
.page-plain h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
	background: var(--white); border: 1px solid var(--warm-grey);
	border-radius: var(--radius); padding: 28px;
}
.post-card h2 { font-size: 21px; }
.post-card a { text-decoration: none; }
.post-meta { font-size: 13px; color: var(--concrete); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.services-grid-2 { grid-template-columns: 1fr; }
	.process-grid-7 { grid-template-columns: repeat(2, 1fr); }
	.snapshot-grid { grid-template-columns: repeat(3, 1fr); }
	.why-grid { grid-template-columns: 1fr; gap: 48px; }
	.why-head { position: static; }
	.portfolio-grid { grid-template-columns: repeat(2, 1fr); }
	.project-wide { grid-column: span 2; }
	.about-grid { grid-template-columns: 1fr; gap: 32px; }
	.contact-grid { grid-template-columns: 1fr; gap: 56px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.section { padding: 72px 0; }
	.section-tight { padding: 56px 0; }
	.cta-band { padding: 88px 0; }

	.header-cta { display: none; }
	.nav-toggle { display: flex; }
	.main-nav {
		position: fixed; inset: 0; z-index: -1;
		background: var(--ink);
		display: flex; flex-direction: column; justify-content: center;
		padding: 96px 32px 48px;
		opacity: 0; visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	.nav-open .main-nav { opacity: 1; visibility: visible; z-index: 99; }
	.nav-open .nav-toggle { position: relative; z-index: 100; }
	.main-nav .nav-list { flex-direction: column; gap: 8px; }
	.main-nav .nav-list a {
		font-family: var(--font-display); font-size: 32px; font-weight: 600;
		color: var(--white); display: block; padding: 8px 0;
	}
	.nav-mobile-contact {
		display: flex; flex-direction: column; gap: 16px; margin-top: 48px;
	}
	.nav-phone { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 16px; }

	.hero { min-height: 100svh; }
	.hero-inner { padding-top: 130px; }
	.hero-ctas { flex-direction: column; align-items: stretch; }
	.hero-ctas .btn { width: 100%; }
	.hero-wa { justify-content: center; }
	.trust-strip { font-size: 11px; gap: 10px; }

	.counters { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
	.services-grid { grid-template-columns: 1fr; }
	.service-card p { min-height: 0; }
	.why-points { grid-template-columns: 1fr; }
	.process-grid { grid-template-columns: 1fr; gap: 36px; }
	.portfolio-grid { grid-template-columns: 1fr; }
	.project-wide { grid-column: span 1; }
	.testimonial-grid { grid-template-columns: 1fr; }
	.contact-form-wrap { padding: 28px 20px; }
	.contact-rows li { grid-template-columns: 1fr; gap: 4px; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; }
	.footer-bottom { flex-direction: column; text-align: center; padding-bottom: 90px; }
	.post-list { grid-template-columns: 1fr; }

	.mobile-action-bar { display: flex; }
	.wa-float { bottom: 84px; right: 16px; }

	.page-hero { padding: 140px 0 56px; }
	.announce-bar { padding: 7px 16px; margin: -20px 0 12px; gap: 10px; font-size: 12px; }
	.announce-label { font-size: 10px; padding: 3px 8px; }
	.announce-more { display: none; }
	.announcement-featured { flex-direction: column; gap: 24px; padding: 28px 22px; }
	.announcement-icon { flex-basis: 64px; width: 64px; height: 64px; }
	.announcement-grid { grid-template-columns: 1fr; }
	.check-list { grid-template-columns: 1fr; }
	.case-study ul { grid-template-columns: 1fr; }
	.process-grid-7 { grid-template-columns: 1fr; }
	.snapshot-grid { grid-template-columns: 1fr 1fr; }
	.service-card-lg { padding: 28px 22px; }
	.journey-track { left: 21px; }
	.journey-marker { flex-basis: 44px; width: 44px; height: 44px; font-size: 13px; }
	.journey-step { gap: 18px; padding-bottom: 28px; }
	.journey-card { padding: 18px 20px; }
	.journey-step.is-current .journey-card { transform: none; }
}
