/*
Theme Name: Mashial
Theme URI: https://Mashialllc.com
Author: Mashial LLC
Author URI: https://Mashialllc.com
Description: A dark, modern single-page theme for Mashial LLC — AI ad-creative production for e-commerce brands. Custom-built with numbered marketing sections, pricing, testimonials and a credit-based service layout.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mashial
*/

/* ============================================================
   Design tokens
   ============================================================ */
:root {
	--bg:        #0a0a0b;
	--bg-soft:   #101012;
	--surface:   #141418;
	--surface-2: #1a1a20;
	--border:    #26262e;
	--border-2:  #33333d;
	--text:      #f4f4f6;
	--muted:     #a2a2ad;
	--muted-2:   #76767f;
	--accent:    #c8ff44;
	--accent-2:  #a6e02f;
	--accent-ink:#0a0a0b;
	--radius:    16px;
	--radius-sm: 10px;
	--maxw:      1180px;
	--ease:      cubic-bezier(.22,.61,.36,1);
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--font-disp: 'Space Grotesk', var(--font-sans);
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .2s var(--ease), opacity .2s var(--ease); }
a:hover { color: var(--accent); }

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

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; list-style: none; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 1000; background: var(--accent); color: var(--accent-ink); padding: .6rem 1rem; border-radius: 8px; }

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}
.container.narrow { max-width: 760px; }

.section { padding: 96px 0; position: relative; }
.section-hero { padding-top: 120px; }

.eyebrow {
	display: inline-block;
	font-family: var(--font-disp);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-2);
	margin-bottom: 1rem;
}

.section-head { max-width: 720px; margin: 0 0 56px; }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); }
.section-lede { color: var(--muted); font-size: 1.1rem; margin-top: 1rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	font-family: var(--font-disp);
	font-weight: 600;
	font-size: 0.98rem;
	line-height: 1;
	padding: 0.85rem 1.4rem;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-2); color: var(--accent-ink); }

.btn-outline { border-color: var(--border-2); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,.08); color: var(--text); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10,10,11,.72);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--border); background: rgba(10,10,11,.9); }

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-text { font-family: var(--font-disp); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; }
.brand-dot { color: var(--accent); }
.custom-logo { max-height: 40px; width: auto; }

.main-navigation { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
	font-family: var(--font-disp);
	font-weight: 500;
	font-size: 0.98rem;
	color: var(--muted);
	position: relative;
}
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: .75rem; }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 42px; height: 42px;
	align-items: center; justify-content: center;
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 10px;
	cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); transition: transform .25s var(--ease), opacity .2s var(--ease); }

/* ============================================================
   Hero (001)
   ============================================================ */
.section-hero {
	background:
		radial-gradient(60% 50% at 80% 0%, rgba(200,255,68,.10), transparent 70%),
		radial-gradient(50% 40% at 10% 10%, rgba(120,120,255,.06), transparent 70%);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.25fr .9fr;
	gap: 56px;
	align-items: center;
}
.hero-title { font-size: clamp(2.4rem, 5.6vw, 4.2rem); letter-spacing: -0.03em; }
.hero-sub { color: var(--muted); font-size: 1.2rem; margin: 1.5rem 0 2rem; max-width: 36ch; }

.hero-form { display: flex; gap: .6rem; max-width: 520px; }
.hero-input {
	flex: 1;
	background: var(--surface);
	border: 1px solid var(--border-2);
	border-radius: 999px;
	color: var(--text);
	padding: 0.95rem 1.3rem;
	font-size: 1rem;
	font-family: var(--font-sans);
	min-width: 0;
}
.hero-input::placeholder { color: var(--muted-2); }
.hero-input:focus { outline: none; border-color: var(--accent); }
.hero-note { color: var(--muted-2); font-size: .92rem; margin-top: 1.1rem; }

.hero-panel {
	background: linear-gradient(180deg, var(--surface-2), var(--surface));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.4rem;
	box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
}
.panel-head {
	display: flex; align-items: center; gap: .6rem;
	font-family: var(--font-disp); font-size: .9rem; color: var(--muted);
	padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.panel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(200,255,68,.15); }
.panel-status { margin-left: auto; color: var(--accent-2); font-size: .8rem; }
.panel-list { padding: 1rem 0; }
.panel-list li { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; color: var(--muted); }
.panel-list strong { color: var(--text); font-family: var(--font-disp); font-size: 1.15rem; }
.panel-foot {
	display: flex; justify-content: space-between; align-items: baseline;
	padding-top: 1rem; border-top: 1px solid var(--border); color: var(--muted);
}
.panel-foot strong { font-family: var(--font-disp); font-size: 1.6rem; color: var(--accent); }

.logo-strip {
	display: flex; flex-wrap: wrap; gap: 2.5rem;
	margin-top: 72px; padding-top: 32px; border-top: 1px solid var(--border);
}
.logo-strip span { font-family: var(--font-disp); font-weight: 600; color: var(--muted-2); font-size: 1.1rem; letter-spacing: .02em; }

/* ============================================================
   Process (002)
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.8rem 1.5rem;
	transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.step-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.step-num { font-family: var(--font-disp); font-size: 2rem; font-weight: 700; color: var(--accent); display: block; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step-card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ============================================================
   Services (003)
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem 1.7rem;
	position: relative;
	transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); background: var(--surface-2); }
.service-index {
	font-family: var(--font-disp); font-size: .8rem; font-weight: 600;
	color: var(--accent-2); letter-spacing: .1em;
}
.service-card h3 { font-size: 1.3rem; margin: .8rem 0 .6rem; }
.service-card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ============================================================
   Studio (004)
   ============================================================ */
.studio-window {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 40px 80px -40px rgba(0,0,0,.8);
}
.studio-bar {
	display: flex; align-items: center; gap: .5rem;
	padding: .9rem 1.2rem; border-bottom: 1px solid var(--border); background: var(--bg-soft);
}
.studio-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #febc2e; } .dot.green { background: #28c840; }
.studio-url { margin-left: 1rem; font-size: .85rem; color: var(--muted-2); font-family: var(--font-disp); }

.studio-body { display: grid; grid-template-columns: 220px 1fr; min-height: 380px; }
.studio-side { border-right: 1px solid var(--border); padding: 1.2rem; display: flex; flex-direction: column; gap: .4rem; background: var(--bg-soft); }
.studio-side-item { padding: .7rem .9rem; border-radius: 10px; color: var(--muted); font-family: var(--font-disp); font-size: .92rem; }
.studio-side-item.active { background: rgba(200,255,68,.12); color: var(--accent); }

.studio-canvas {
	padding: 1.4rem;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
	align-content: start;
}
.studio-tile {
	margin: 0;
	aspect-ratio: 3 / 4;
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
}
.studio-tile img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ease);
}
.studio-tile:hover img { transform: scale(1.05); }
.tile-tag {
	position: absolute; top: 10px; left: 10px; z-index: 2;
	font-family: var(--font-disp); font-size: .68rem; font-weight: 600;
	color: var(--accent-ink); background: var(--accent);
	padding: .2rem .55rem; border-radius: 6px;
}
.tile-duration {
	position: absolute; top: 10px; right: 10px; z-index: 2;
	font-family: var(--font-disp); font-size: .7rem; font-weight: 600;
	color: #fff; background: rgba(0,0,0,.6);
	backdrop-filter: blur(4px);
	padding: .2rem .5rem; border-radius: 6px;
}
.tile-play {
	position: absolute; top: 50%; left: 50%; z-index: 2;
	transform: translate(-50%, -50%);
	width: 52px; height: 52px;
	display: flex; align-items: center; justify-content: center;
	color: var(--accent-ink);
	background: rgba(255,255,255,.92);
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(0,0,0,.45);
	transition: transform .25s var(--ease), background .25s var(--ease);
}
.studio-tile.is-video:hover .tile-play { transform: translate(-50%, -50%) scale(1.12); background: var(--accent); }

/* ============================================================
   Results (005)
   ============================================================ */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card {
	background: linear-gradient(180deg, var(--surface-2), var(--surface));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2.2rem 1.8rem;
	transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.result-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.result-mult { font-family: var(--font-disp); font-size: 3rem; font-weight: 700; color: var(--accent); display: block; line-height: 1; }
.result-card h3 { font-size: 1.25rem; margin: 1.1rem 0 .5rem; }
.result-card p { color: var(--muted); margin: 0; }

/* ============================================================
   Testimonials (006)
   ============================================================ */
.testimonials-grid {
	columns: 3; column-gap: 20px;
}
.testimonial-card {
	break-inside: avoid;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.7rem;
	margin: 0 0 20px;
}
.stars { color: var(--accent); letter-spacing: .15em; margin-bottom: .8rem; }
.testimonial-card blockquote { margin: 0 0 1rem; font-size: 1.05rem; color: var(--text); }
.testimonial-card figcaption { color: var(--muted-2); font-family: var(--font-disp); font-size: .9rem; }

/* ============================================================
   Pricing (007)
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem 1.8rem;
	position: relative;
	transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.price-card:hover { transform: translateY(-4px); }
.price-featured {
	border-color: var(--accent);
	background: linear-gradient(180deg, rgba(200,255,68,.06), var(--surface));
	box-shadow: 0 30px 60px -35px rgba(200,255,68,.4);
}
.price-badge {
	position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	background: var(--accent); color: var(--accent-ink);
	font-family: var(--font-disp); font-weight: 600; font-size: .78rem;
	padding: .35rem .9rem; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.4rem; }
.price { margin: 1rem 0 .25rem; }
.price .amount { font-family: var(--font-disp); font-size: 3rem; font-weight: 700; }
.price-credits { color: var(--accent-2); font-family: var(--font-disp); font-weight: 500; margin-bottom: 1.4rem; }
.price-features { margin-bottom: 1.8rem; }
.price-features li { padding: .55rem 0; color: var(--muted); border-bottom: 1px solid var(--border); display: flex; gap: .6rem; }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.price-features li:last-child { border-bottom: none; }

/* ============================================================
   About
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-copy p { color: var(--muted); font-size: 1.1rem; }

/* ============================================================
   CTA (008)
   ============================================================ */
.cta-box {
	text-align: center;
	background:
		radial-gradient(70% 120% at 50% 0%, rgba(200,255,68,.14), transparent 70%),
		var(--surface);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 72px 32px;
}
.cta-title { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: .6rem 0 1rem; }
.cta-box p { color: var(--muted); font-size: 1.15rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Contact (009)
   ============================================================ */
.section-contact--page { padding-top: 120px; }
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: start;
}
.contact-info .section-title { margin-bottom: 1rem; }
.contact-details { margin-top: 2rem; display: grid; gap: 1.4rem; }
.contact-details li { display: flex; flex-direction: column; gap: .2rem; }
.contact-label {
	font-family: var(--font-disp); font-size: .75rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2);
}
.contact-details a, .contact-details span:not(.contact-label) { color: var(--text); font-size: 1.05rem; }
.contact-details a:hover { color: var(--accent); }

.contact-form {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: block; margin-bottom: 1.1rem; }
.field > span {
	display: block; margin-bottom: .5rem;
	font-family: var(--font-disp); font-size: .85rem; font-weight: 500; color: var(--muted);
}
.field > span em { color: var(--muted-2); font-style: normal; font-weight: 400; }
.field input, .field textarea {
	width: 100%;
	background: var(--bg-soft);
	border: 1px solid var(--border-2);
	border-radius: var(--radius-sm);
	color: var(--text);
	padding: .85rem 1rem;
	font-size: 1rem;
	font-family: var(--font-sans);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { margin-top: .4rem; }
.form-fineprint { color: var(--muted-2); font-size: .85rem; margin: 1rem 0 0; }
.mashial-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-notice {
	border-radius: var(--radius-sm);
	padding: .9rem 1.1rem;
	margin-bottom: 1.4rem;
	font-size: .95rem;
	border: 1px solid var(--border-2);
}
.form-notice.is-success { background: rgba(200,255,68,.1); border-color: var(--accent); color: var(--accent); }
.form-notice.is-error { background: rgba(255,90,90,.1); border-color: #ff5a5a; color: #ff8a8a; }

/* ============================================================
   Legal pages
   ============================================================ */
.legal-page { padding-top: 120px; }
.legal-date { color: var(--muted); margin-top: .5rem; }
.legal-page .entry-content h2 { font-size: 1.35rem; margin: 2.4rem 0 .8rem; }
.legal-page .entry-content ul { margin: 0 0 1rem 1.2rem; list-style: disc; }
.legal-page .entry-content li { color: var(--muted); padding: .25rem 0; }
.legal-disclaimer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--muted-2); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); padding: 72px 0 36px; background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-tagline { color: var(--muted); margin-top: 1rem; max-width: 30ch; }
.footer-col h4 { font-family: var(--font-disp); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2); margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: .65rem; }
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: var(--accent); }
.footer-address { color: var(--muted); }
.footer-bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: .9rem; }
.footer-bottom p { margin: 0; }

/* ============================================================
   Blog / pages
   ============================================================ */
.post-item { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.post-title { font-size: 1.6rem; margin-bottom: .5rem; }
.post-meta { color: var(--muted-2); font-size: .9rem; margin-bottom: 1rem; }
.post-excerpt { color: var(--muted); }
.entry-content { color: var(--text); }
.entry-content p { color: var(--muted); }
.entry-content a { color: var(--accent); text-decoration: underline; }
.entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.pagination a, .pagination .current { padding: .4rem .8rem; border: 1px solid var(--border); border-radius: 8px; margin-right: .4rem; display: inline-block; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-sub { max-width: none; }
	.services-grid, .results-grid, .pricing-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
	.testimonials-grid { columns: 2; }
	.about-grid { grid-template-columns: 1fr; gap: 24px; }
	.contact-grid { grid-template-columns: 1fr; gap: 32px; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.studio-body { grid-template-columns: 1fr; }
	.studio-side { flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 720px) {
	body { font-size: 16px; }
	.section { padding: 64px 0; }
	.section-hero { padding-top: 88px; }

	.main-navigation {
		position: fixed; inset: 72px 0 auto 0;
		background: var(--bg-soft); border-bottom: 1px solid var(--border);
		padding: 1rem 24px 1.5rem; margin: 0;
		transform: translateY(-120%); transition: transform .3s var(--ease);
		visibility: hidden;
	}
	.nav-open .main-navigation { transform: none; visibility: visible; }
	.nav-menu { flex-direction: column; align-items: flex-start; gap: 0; }
	.nav-menu li { width: 100%; }
	.nav-menu a { display: block; padding: .9rem 0; border-bottom: 1px solid var(--border); width: 100%; }

	.nav-toggle { display: flex; }
	.header-actions .btn-primary { display: none; }

	.hero-form { flex-direction: column; }
	.hero-input, .hero-form .btn { width: 100%; }

	.services-grid, .results-grid, .pricing-grid, .steps-grid, .footer-grid { grid-template-columns: 1fr; }
	.field-row { grid-template-columns: 1fr; gap: 0; }
	.contact-form { padding: 1.4rem; }
	.testimonials-grid { columns: 1; }
	.studio-canvas { grid-template-columns: repeat(2, 1fr); }
	.logo-strip { gap: 1.5rem; }
}

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