/* =============================================================
   Deebix — Dark Luxury Theme
   Logical properties throughout → same file serves RTL + LTR.
   ============================================================= */

:root {
	--ink: #0a0e14;          /* page background */
	--surface: #10161f;      /* cards */
	--surface-2: #161e2a;    /* raised */
	--gold: #c9a24b;         /* champagne gold */
	--gold-bright: #e8c97a;
	--text: #edf0f5;
	--muted: #97a0b1;
	--line: rgba(201, 162, 75, 0.16);
	--line-soft: rgba(255, 255, 255, 0.06);
	--radius: 16px;
	--container: 1200px;
	--font-ar: 'Tajawal', system-ui, sans-serif;
	--font-display: 'Poppins', 'Tajawal', sans-serif;
	--font-body: 'Inter', 'Tajawal', sans-serif;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--ink);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}
body.lang-ar { font-family: var(--font-ar); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	line-height: 1.25;
	margin: 0 0 0.6em;
	font-weight: 700;
	letter-spacing: -0.01em;
}
body.lang-ar h1, body.lang-ar h2, body.lang-ar h3,
body.lang-ar h4, body.lang-ar h5, body.lang-ar h6 {
	font-family: var(--font-ar);
	font-weight: 800;
	letter-spacing: 0;
}
.h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.gold { color: var(--gold); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 780px; }
.section { padding-block: clamp(64px, 9vw, 110px); position: relative; }

/* ---------- Accessibility ---------- */
.skip-link {
	position: absolute; inset-inline-start: -999px; top: 0;
	background: var(--gold); color: var(--ink); padding: 10px 18px; z-index: 200;
}
.skip-link:focus { inset-inline-start: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
	position: fixed; inset-inline: 0; top: 0; height: 3px; z-index: 120;
	background: transparent;
}
#scrollProgress {
	display: block; height: 100%; width: 0;
	background: linear-gradient(90deg, var(--gold), var(--gold-bright));
	transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.site-header {
	position: fixed; inset-inline: 0; top: 0; z-index: 100;
	padding-block: 18px;
	transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
	background: rgba(10, 14, 20, 0.86);
	backdrop-filter: blur(14px);
	padding-block: 10px;
	box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; }

.brand-mark {
	font-family: var(--font-display);
	font-weight: 800; font-size: 1.5rem; letter-spacing: 0.01em;
	display: inline-flex; align-items: baseline;
}
.brand-dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--gold); margin-inline-start: 4px;
	box-shadow: 0 0 12px var(--gold);
}
.custom-logo { max-height: 48px; width: auto; }

.site-nav { margin-inline-start: auto; }
.nav-list { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
	display: block; padding: 8px 14px; color: var(--muted);
	font-weight: 500; border-radius: 8px; position: relative;
	transition: color 0.25s;
}
.nav-list a::after {
	content: ''; position: absolute; inset-inline: 14px; bottom: 4px; height: 1.5px;
	background: var(--gold); transform: scaleX(0); transform-origin: center;
	transition: transform 0.3s var(--ease);
}
.nav-list a:hover, .nav-list .current-menu-item > a { color: var(--text); }
.nav-list a:hover::after, .nav-list .current-menu-item > a::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
	border: 1px solid var(--line); border-radius: 999px;
	padding: 6px 14px; font-size: 0.85rem; font-weight: 600; color: var(--gold);
	transition: background 0.25s, color 0.25s;
}
.lang-switch:hover { background: var(--gold); color: var(--ink); }

.nav-toggle {
	display: none; flex-direction: column; gap: 5px;
	background: none; border: 0; padding: 8px;
}
.nav-toggle span {
	width: 24px; height: 2px; background: var(--text);
	transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 14px 30px; border-radius: 999px;
	font-weight: 600; font-size: 0.95rem; line-height: 1;
	border: 1px solid transparent;
	transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-gold {
	background: linear-gradient(135deg, var(--gold), var(--gold-bright));
	color: #14100a;
}
.btn-gold:hover { box-shadow: 0 8px 28px rgba(201, 162, 75, 0.35); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn .dx-icon { width: 18px; height: 18px; }
[dir="rtl"] .btn .dx-icon, [dir="rtl"] .card-link .dx-icon { transform: scaleX(-1); }

/* ---------- Hero ---------- */
.hero {
	min-height: 100svh;
	display: grid; place-items: center; text-align: center;
	position: relative; overflow: hidden;
	padding-block: 140px 90px;
}
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-glow {
	position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(600px 320px at 50% 8%, rgba(201, 162, 75, 0.12), transparent 70%),
		radial-gradient(900px 500px at 50% 110%, rgba(44, 76, 120, 0.18), transparent 70%);
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero-kicker {
	color: var(--gold); font-weight: 600; letter-spacing: 0.14em;
	text-transform: uppercase; font-size: 0.8rem; margin-bottom: 18px;
}
body.lang-ar .hero-kicker { letter-spacing: 0.04em; font-size: 0.95rem; }
.hero-title {
	font-size: clamp(2.2rem, 5.6vw, 4rem);
	margin-bottom: 14px;
	background: linear-gradient(180deg, #fff 30%, #b9c2d4);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-typing {
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 2.6vw, 1.6rem);
	color: var(--gold-bright); min-height: 2.2em; font-weight: 600;
}
body.lang-ar .hero-typing { font-family: var(--font-ar); }
.caret {
	display: inline-block; width: 2px; height: 1.1em;
	background: var(--gold); margin-inline-start: 4px;
	animation: blink 1s steps(1) infinite; vertical-align: -0.15em;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-sub { color: var(--muted); max-width: 620px; margin-inline: auto; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

.hero-scroll-hint {
	position: absolute; bottom: 26px; inset-inline: 0; display: grid; place-items: center;
}
.hero-scroll-hint span {
	width: 22px; height: 36px; border: 1.5px solid var(--line);
	border-radius: 12px; position: relative;
}
.hero-scroll-hint span::after {
	content: ''; position: absolute; top: 7px; inset-inline-start: 50%;
	width: 3px; height: 7px; margin-inline-start: -1.5px;
	background: var(--gold); border-radius: 2px;
	animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Section heads ---------- */
.section-head { margin-bottom: 46px; }
.eyebrow {
	color: var(--gold); font-size: 0.8rem; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase;
}
body.lang-ar .eyebrow { letter-spacing: 0.05em; font-size: 0.95rem; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-top: 8px; }
.head-rule {
	display: block; width: 64px; height: 2px; margin-top: 14px;
	background: linear-gradient(90deg, var(--gold), transparent);
}

/* ---------- Cards ---------- */
.cards-grid {
	display: grid; gap: 26px;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.card {
	background: var(--surface);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	padding: 32px 28px;
	position: relative; overflow: hidden;
	transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card::before {
	content: ''; position: absolute; inset: 0 0 auto;
	height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
	opacity: 0; transition: opacity 0.35s;
}
.card:hover {
	transform: translateY(-6px);
	border-color: var(--line);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}
.card:hover::before { opacity: 1; }

.card-icon {
	display: inline-grid; place-items: center;
	width: 58px; height: 58px; border-radius: 14px;
	background: rgba(201, 162, 75, 0.1); color: var(--gold);
	margin-bottom: 20px;
	transition: transform 0.35s var(--ease), background 0.35s;
}
.card:hover .card-icon, .why-item:hover .card-icon { transform: scale(1.08) rotate(-4deg); background: rgba(201, 162, 75, 0.18); }
.dx-icon { width: 26px; height: 26px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card-link {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--gold); font-weight: 600; font-size: 0.9rem;
	transition: gap 0.25s var(--ease);
}
.card-link:hover { gap: 12px; }
.card-link .dx-icon { width: 16px; height: 16px; }

.post-card { padding: 0; }
.card-thumb img { width: 100%; aspect-ratio: 16/10.5; object-fit: cover; transition: transform 0.5s var(--ease); }
.post-card:hover .card-thumb img { transform: scale(1.05); }
.card-thumb { display: block; overflow: hidden; }
.card-body { padding: 24px 26px 28px; }
.card-meta { color: var(--gold); font-size: 0.8rem; font-weight: 600; }
.card-body h3 { font-size: 1.15rem; margin-top: 8px; }
.card-body h3 a:hover { color: var(--gold-bright); }

/* ---------- About ---------- */
.about-grid {
	display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center;
}
.about-media { position: relative; will-change: transform; }
.about-media img, .media-placeholder, .video-wrap {
	border-radius: var(--radius); width: 100%;
}
.media-placeholder {
	aspect-ratio: 4/3; display: grid; place-items: center;
	background: linear-gradient(135deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line-soft); font-size: 2rem;
}
.media-frame {
	position: absolute; inset: 18px -18px -18px 18px;
	border: 1px solid var(--line); border-radius: var(--radius); z-index: -1;
}
[dir="rtl"] .media-frame { inset: 18px 18px -18px -18px; }
.video-wrap iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: var(--radius); }
.about-copy p { color: var(--muted); }

/* ---------- Why us ---------- */
.why-us { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent); }
.why-grid { display: grid; gap: 34px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.why-item h3 { font-size: 1.1rem; }
.why-item p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Portfolio ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filter-btn {
	background: none; border: 1px solid var(--line-soft); color: var(--muted);
	padding: 8px 20px; border-radius: 999px; font-size: 0.88rem; font-weight: 500;
	transition: all 0.25s;
}
.filter-btn:hover { color: var(--text); border-color: var(--line); }
.filter-btn.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 700; }

.work-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.work-card {
	position: relative; border-radius: var(--radius); overflow: hidden;
	aspect-ratio: 4/3; background: var(--surface-2);
	transition: opacity 0.3s, transform 0.35s var(--ease);
}
.work-card.is-hidden { display: none; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.work-card:hover img { transform: scale(1.07); }
.work-overlay {
	position: absolute; inset: 0; display: flex; flex-direction: column;
	justify-content: flex-end; padding: 22px;
	background: linear-gradient(180deg, transparent 40%, rgba(6, 9, 14, 0.92));
	opacity: 0; transition: opacity 0.35s;
}
.work-card:hover .work-overlay { opacity: 1; }
.work-type { color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.work-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-top: 4px; }
body.lang-ar .work-title { font-family: var(--font-ar); }

/* ---------- Stats ---------- */
.stats {
	background:
		radial-gradient(500px 200px at 50% 0, rgba(201,162,75,0.07), transparent),
		var(--surface);
	border-block: 1px solid var(--line-soft);
}
.stats-grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); text-align: center; }
.stat-num {
	font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.2rem);
	font-weight: 800; color: var(--gold-bright); display: inline-flex; align-items: baseline;
}
.stat-num i { font-style: normal; font-size: 0.6em; color: var(--gold); }
.stat-label { display: block; color: var(--muted); margin-top: 6px; font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.carousel-track {
	display: flex; gap: 24px; overflow-x: auto;
	scroll-snap-type: x mandatory; padding-block: 6px 18px;
	scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.testimonial-card {
	flex: 0 0 min(440px, 88%); scroll-snap-align: start;
	background: var(--surface); border: 1px solid var(--line-soft);
	border-radius: var(--radius); padding: 34px 30px; margin: 0;
	position: relative;
}
.quote-mark { color: var(--gold); opacity: 0.55; }
.quote-mark .dx-icon { width: 32px; height: 32px; }
.testimonial-card blockquote { margin: 14px 0 22px; color: var(--text); font-size: 1rem; line-height: 1.8; }
.testimonial-card figcaption { display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; align-items: center; }
.testimonial-card .avatar {
	grid-row: span 2; width: 48px; height: 48px;
	border-radius: 50%; object-fit: cover; border: 1.5px solid var(--gold);
}
.client-name { font-weight: 700; }
.client-role { color: var(--muted); font-size: 0.85rem; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 8px; }
.carousel-dots button {
	width: 8px; height: 8px; border-radius: 50%; border: 0;
	background: var(--line-soft); padding: 0; transition: all 0.25s;
}
.carousel-dots button.is-active { background: var(--gold); width: 22px; border-radius: 999px; }

/* ---------- CTA band ---------- */
.cta-band { padding-block: 0; }
.cta-inner {
	background:
		radial-gradient(420px 220px at 85% 0, rgba(201,162,75,0.14), transparent),
		linear-gradient(135deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line);
	border-radius: calc(var(--radius) + 8px);
	padding: clamp(44px, 6vw, 72px);
	text-align: center;
	margin-block: clamp(64px, 9vw, 110px);
}
.cta-inner h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-inner p { color: var(--muted); max-width: 520px; margin-inline: auto; margin-bottom: 28px; }

/* ---------- Page hero / inner pages ---------- */
.page-hero {
	padding: 160px 0 60px; text-align: center;
	background: radial-gradient(560px 260px at 50% -40px, rgba(201,162,75,0.1), transparent);
	border-bottom: 1px solid var(--line-soft);
}
.page-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0; }
.page-meta { color: var(--muted); font-size: 0.9rem; }

.single-thumb img { border-radius: var(--radius); width: 100%; }
.entry-content { color: #cdd4e0; }
.entry-content h2, .entry-content h3 { color: var(--text); margin-top: 1.6em; }
.entry-content a { color: var(--gold); border-bottom: 1px solid var(--line); }
.entry-content img { border-radius: 12px; }
.entry-content blockquote {
	border-inline-start: 3px solid var(--gold);
	margin-inline: 0; padding-inline-start: 20px; color: var(--muted); font-style: italic;
}
.entry-content pre { background: var(--surface); padding: 18px; border-radius: 10px; overflow-x: auto; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 54px; align-items: start; }
.contact-form { display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 8px; font-weight: 600; font-size: 0.92rem; }
.contact-form input, .contact-form textarea, .search-form input {
	background: var(--surface); border: 1px solid var(--line-soft);
	border-radius: 10px; padding: 13px 16px; color: var(--text);
	font: inherit; transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus, .search-form input:focus {
	outline: none; border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.14);
}
.hp-field { position: absolute; inset-inline-start: -9999px; }
.form-note { padding: 14px 18px; border-radius: 10px; font-weight: 600; }
.form-note.is-ok { background: rgba(64, 168, 110, 0.12); color: #6fd8a2; border: 1px solid rgba(64,168,110,0.3); }
.form-note.is-err { background: rgba(200, 70, 70, 0.12); color: #ef9a9a; border: 1px solid rgba(200,70,70,0.3); }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.footer-contact .dx-icon { width: 19px; height: 19px; color: var(--gold); flex: 0 0 auto; }
.footer-contact a:hover { color: var(--gold-bright); }

.search-form { display: flex; gap: 10px; max-width: 460px; margin-bottom: 40px; }
.search-form input { flex: 1; }

/* ---------- 404 ---------- */
.error-404 { min-height: 70svh; display: grid; place-items: center; text-align: center; padding-top: 140px; }
.error-code {
	font-family: var(--font-display); font-weight: 800;
	font-size: clamp(6rem, 18vw, 11rem); line-height: 1;
	background: linear-gradient(180deg, #2a3242, #141a24);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.error-code .gold {
	background: linear-gradient(180deg, var(--gold-bright), var(--gold));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.error-inner p { color: var(--muted); max-width: 440px; margin-inline: auto; }
.error-inner .search-form { margin: 34px auto 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); background: #080b10; margin-top: 40px; }
.footer-grid {
	display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px;
	padding-block: 64px 44px;
}
.footer-col h3 { font-size: 1rem; color: var(--gold); margin-bottom: 18px; }
.footer-col p { color: var(--muted); font-size: 0.93rem; }
.footer-col .nav-list { flex-direction: column; gap: 2px; }
.footer-col .nav-list a { padding: 6px 0; }
.footer-col .nav-list a::after { display: none; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
	width: 38px; height: 38px; border-radius: 50%;
	border: 1px solid var(--line-soft); display: grid; place-items: center;
	color: var(--muted); font-weight: 700; font-size: 0.85rem;
	transition: all 0.25s;
}
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-block: 20px; }
.footer-bottom p { margin: 0; color: var(--muted); font-size: 0.85rem; text-align: center; }

/* ---------- Pagination ---------- */
.pagination { margin-top: 46px; }
.nav-links { display: flex; gap: 8px; justify-content: center; }
.nav-links .page-numbers {
	min-width: 40px; height: 40px; display: grid; place-items: center;
	border: 1px solid var(--line-soft); border-radius: 10px; color: var(--muted);
	padding-inline: 12px; transition: all 0.25s;
}
.nav-links .page-numbers:hover, .nav-links .current { border-color: var(--gold); color: var(--gold); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.stagger .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger .reveal:nth-child(6) { transition-delay: 0.4s; }

/* Page fade transition */
body { animation: pageIn 0.5s var(--ease); }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body.is-leaving { opacity: 0; transition: opacity 0.25s ease; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
	.reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
	.nav-toggle { display: flex; }
	.header-cta { display: none; }
	.site-nav {
		position: fixed; inset: 0; top: 0; z-index: -1;
		background: rgba(8, 11, 16, 0.98); backdrop-filter: blur(10px);
		display: grid; place-items: center;
		opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
	}
	.site-nav.is-open { opacity: 1; pointer-events: auto; z-index: 90; }
	.nav-list { flex-direction: column; text-align: center; gap: 12px; }
	.nav-list a { font-size: 1.3rem; color: var(--text); }
}
@media (max-width: 560px) {
	.footer-grid { grid-template-columns: 1fr; }
	.hero-actions .btn { width: 100%; justify-content: center; }
	.container { padding-inline: 18px; }
}
