/* ==========================================================================
   Starlight Glass — Apple-inspired design with Liquid Glass controls
   ========================================================================== */

:root {
	--font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
	--text: #1d1d1f;
	--text-secondary: #6e6e73;
	--bg: #f5f5f7;
	--white: #ffffff;
	--accent: #0071e3;
	--accent-hover: #0077ed;
	--hero-bg: #000000;
	--radius-lg: 28px;
	--radius-md: 20px;
	--radius-pill: 980px;
	--glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
	--glass-border: rgba(255, 255, 255, 0.6);
	--glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 1px rgba(255, 255, 255, 0.25);
	--glass-bg-dark: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
	--glass-border-dark: rgba(255, 255, 255, 0.28);
	--glass-shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -1px 1px rgba(255, 255, 255, 0.12);
	--ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
	--header-height: 64px;
}

/* ---------- Reset / base ---------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 24px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.25s ease;
}

a:hover {
	color: var(--accent-hover);
}

h1, h2, h3 {
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

.container {
	width: min(1120px, 92%);
	margin-inline: auto;
}

.section {
	padding: clamp(72px, 10vw, 130px) 0;
	position: relative;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	width: auto;
	height: auto;
	clip: auto;
	margin: 0;
	padding: 10px 20px;
	top: 12px;
	left: 12px;
	z-index: 1000;
	background: var(--accent);
	color: #fff;
	border-radius: var(--radius-pill);
}

/* ---------- Liquid Glass primitives ---------- */

.liquid-glass {
	position: relative;
	background: var(--glass-bg);
	-webkit-backdrop-filter: blur(22px) saturate(180%);
	backdrop-filter: blur(22px) saturate(180%);
	border: 1px solid var(--glass-border);
	box-shadow: var(--glass-shadow);
}

.liquid-glass::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.35));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	opacity: 0.8;
}

.glass-card {
	border-radius: var(--radius-lg);
	padding: clamp(28px, 4vw, 48px);
	transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring);
}

.glass-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75), inset 0 -1px 1px rgba(255, 255, 255, 0.25);
}

/* ---------- Buttons ---------- */

.btn-liquid {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 30px;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1));
	-webkit-backdrop-filter: blur(18px) saturate(180%);
	backdrop-filter: blur(18px) saturate(180%);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -1px 1px rgba(255, 255, 255, 0.15);
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.01em;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring), background 0.3s ease;
}

.btn-liquid::after {
	content: "";
	position: absolute;
	top: 0;
	left: -80%;
	width: 55%;
	height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	transform: skewX(-20deg);
	transition: left 0.6s ease;
}

.btn-liquid:hover {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
	color: #fff;
}

.btn-liquid:hover::after {
	left: 130%;
}

.btn-liquid:active {
	transform: translateY(0) scale(0.98);
}

.btn-liquid .btn-icon {
	transition: transform 0.4s var(--ease-spring);
}

.btn-liquid:hover .btn-icon {
	transform: translateY(2px);
}

/* ---------- Header ---------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 500;
	padding: 14px clamp(12px, 3vw, 28px) 0;
}

body.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

.header-inner {
	max-width: 1120px;
	margin-inline: auto;
	min-height: var(--header-height);
	border-radius: var(--radius-pill);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 26px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.3));
	transition: box-shadow 0.4s ease, background 0.4s ease;
}

.site-header.is-scrolled .header-inner {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.02em;
}

.brand-star {
	display: inline-flex;
	color: var(--accent);
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
	border-radius: 12px;
}

.custom-logo {
	display: block;
	max-height: 40px;
	width: auto;
	border-radius: 10px;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list a {
	display: inline-block;
	padding: 8px 16px;
	border-radius: var(--radius-pill);
	color: var(--text);
	font-size: 15px;
	font-weight: 500;
	transition: background 0.3s ease, color 0.3s ease;
}

.nav-list a:hover {
	background: rgba(255, 255, 255, 0.55);
	color: var(--text);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--glass-border);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
}

.nav-toggle-line {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: var(--text);
	transition: transform 0.35s var(--ease-spring), opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
	transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child {
	transform: translateY(-4px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: radial-gradient(1200px 700px at 50% -10%, #1b1b2a 0%, var(--hero-bg) 60%);
	color: #f5f5f7;
	position: relative;
	overflow: hidden;
	padding: calc(var(--header-height) + 60px) 0 90px;
}

.hero-orbs .orb,
.services-orbs .orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.55;
	pointer-events: none;
	animation: orbFloat 14s ease-in-out infinite alternate;
}

.orb-1 { width: 480px; height: 480px; background: #0a84ff; top: -120px; left: -100px; }
.orb-2 { width: 420px; height: 420px; background: #bf5af2; bottom: -140px; right: -80px; animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; background: #ff9f0a; top: 45%; left: 60%; opacity: 0.35; animation-delay: -8s; }

@keyframes orbFloat {
	from { transform: translate3d(0, 0, 0) scale(1); }
	to { transform: translate3d(40px, -50px, 0) scale(1.12); }
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-eyebrow {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(245, 245, 247, 0.6);
	margin-bottom: 18px;
}

.hero-title {
	font-size: clamp(44px, 8.5vw, 96px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.02;
	margin: 0 0 20px;
	background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.65));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-tagline {
	font-size: clamp(19px, 2.6vw, 27px);
	font-weight: 500;
	color: rgba(245, 245, 247, 0.75);
	max-width: 720px;
	margin: 0 auto 40px;
	letter-spacing: -0.01em;
}

.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 34px;
	transform: translateX(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--glass-bg-dark);
	border-color: var(--glass-border-dark);
	box-shadow: var(--glass-shadow-dark);
	color: rgba(255, 255, 255, 0.85);
	z-index: 2;
	animation: bounceHint 2.4s ease-in-out infinite;
}

.hero-scroll:hover {
	color: #fff;
}

@keyframes bounceHint {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Sections shared ---------- */

.section-eyebrow {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}

.section-title {
	font-size: clamp(30px, 4.6vw, 52px);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: clamp(30px, 5vw, 56px);
}

/* ---------- About ---------- */

.about-section {
	background: var(--bg);
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(20px, 3vw, 32px);
}

.about-card p {
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.7;
	color: var(--text-secondary);
	margin: 0;
}

/* ---------- Services ---------- */

.services-section {
	background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
	overflow: hidden;
}

.orb-4 { width: 380px; height: 380px; background: rgba(10, 132, 255, 0.25); top: -100px; right: -80px; filter: blur(110px); }
.orb-5 { width: 320px; height: 320px; background: rgba(191, 90, 242, 0.2); bottom: -120px; left: -60px; filter: blur(110px); animation-delay: -6s; }

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 3vw, 32px);
	position: relative;
	z-index: 2;
}

.service-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.service-icon {
	width: 62px;
	height: 62px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	background: linear-gradient(135deg, rgba(0, 113, 227, 0.14), rgba(0, 113, 227, 0.05));
	border: 1px solid rgba(0, 113, 227, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-title {
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
}

.service-text {
	font-size: 16px;
	line-height: 1.65;
	color: var(--text-secondary);
	margin: 0;
}

/* ---------- Contact ---------- */

.contact-section {
	background: radial-gradient(900px 500px at 80% 0%, #e8f0ff 0%, var(--bg) 55%);
}

.contact-card {
	max-width: 680px;
	margin-inline: auto;
}

.contact-form {
	display: grid;
	gap: 20px;
}

.form-field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 8px;
}

.input-liquid {
	width: 100%;
	padding: 14px 18px;
	font-family: inherit;
	font-size: 16px;
	color: var(--text);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	backdrop-filter: blur(14px) saturate(160%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 -1px 2px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.04);
	outline: none;
	transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.input-liquid:focus {
	border-color: rgba(0, 113, 227, 0.55);
	box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.85);
}

textarea.input-liquid {
	resize: vertical;
	min-height: 130px;
}

.form-honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
	height: 0;
	overflow: hidden;
}

.btn-submit {
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 113, 227, 0.9), rgba(0, 119, 237, 0.75));
	border-color: rgba(255, 255, 255, 0.4);
	justify-self: start;
}

.btn-submit:hover .btn-icon {
	transform: translateX(3px);
}

.form-notice {
	padding: 14px 20px;
	border-radius: 16px;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 22px;
}

.form-notice-success {
	background: rgba(52, 199, 89, 0.14);
	border: 1px solid rgba(52, 199, 89, 0.4);
	color: #248a3d;
}

.form-notice-error {
	background: rgba(255, 59, 48, 0.12);
	border: 1px solid rgba(255, 59, 48, 0.4);
	color: #d70015;
}

/* ---------- Footer ---------- */

.site-footer {
	background: #000;
	color: rgba(245, 245, 247, 0.85);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 0.8fr;
	gap: clamp(28px, 5vw, 60px);
	padding: clamp(56px, 8vw, 90px) 0 40px;
}

.footer-star {
	color: #0a84ff;
}

.site-footer .custom-logo {
	max-height: 44px;
}

.footer-name {
	font-size: 19px;
	font-weight: 700;
	color: #f5f5f7;
	margin: 14px 0 6px;
	letter-spacing: -0.02em;
}

.footer-tagline {
	font-size: 14px;
	color: rgba(245, 245, 247, 0.55);
	max-width: 320px;
}

.footer-heading {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(245, 245, 247, 0.45);
	margin-bottom: 16px;
}

.footer-contact address {
	font-style: normal;
	font-size: 15px;
	line-height: 1.7;
}

.footer-contact a,
.footer-nav a {
	color: rgba(245, 245, 247, 0.85);
}

.footer-contact a:hover,
.footer-nav a:hover {
	color: #fff;
}

.footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	font-size: 15px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 22px 0;
	font-size: 13px;
	color: rgba(245, 245, 247, 0.45);
}

.footer-bottom p {
	margin: 0;
}

/* ---------- Generic page / posts ---------- */

.page-section {
	padding-top: calc(var(--header-height) + 80px);
	min-height: 70vh;
}

.entry-content :where(p, ul, ol) {
	color: var(--text-secondary);
}

.post-meta {
	color: var(--text-secondary);
	font-size: 14px;
}

.post-thumbnail {
	margin: 24px 0;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.comments-area {
	margin-top: 32px;
}

.site-main .post + .post {
	margin-top: 24px;
}

.entry-title {
	font-size: clamp(22px, 3vw, 30px);
}

.comment-list {
	padding-left: 20px;
	color: var(--text-secondary);
}

.not-found {
	text-align: center;
}

/* ---------- WordPress components (Liquid Glass) ---------- */

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 32px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	border-radius: var(--radius-pill);
	background: var(--glass-bg);
	-webkit-backdrop-filter: blur(18px) saturate(180%);
	backdrop-filter: blur(18px) saturate(180%);
	border: 1px solid var(--glass-border);
	box-shadow: var(--glass-shadow);
	color: var(--text);
	font-size: 15px;
	font-weight: 600;
	transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-spring), background 0.3s ease;
}

.page-numbers:hover {
	transform: translateY(-2px);
	color: var(--text);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.page-numbers.current {
	background: linear-gradient(135deg, rgba(0, 113, 227, 0.9), rgba(0, 119, 237, 0.75));
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.page-numbers.dots {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.comment-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}

.comment-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.comment-form textarea {
	width: 100%;
	padding: 14px 18px;
	font-family: inherit;
	font-size: 16px;
	color: var(--text);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	backdrop-filter: blur(14px) saturate(160%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 10px rgba(0, 0, 0, 0.04);
	outline: none;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.comment-form input:not([type="submit"]):focus,
.comment-form textarea:focus {
	border-color: rgba(0, 113, 227, 0.55);
	box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.comment-form .submit {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: linear-gradient(135deg, rgba(0, 113, 227, 0.9), rgba(0, 119, 237, 0.75));
	box-shadow: 0 8px 24px rgba(0, 113, 227, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-spring);
}

.comment-form .submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(0, 113, 227, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.comment-reply-link {
	display: inline-flex;
	padding: 5px 14px;
	border-radius: var(--radius-pill);
	background: var(--glass-bg);
	-webkit-backdrop-filter: blur(14px) saturate(170%);
	backdrop-filter: blur(14px) saturate(170%);
	border: 1px solid var(--glass-border);
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
}

.page-links {
	margin-top: 20px;
	font-weight: 600;
}

/* Light-background liquid button variant (e.g. 404 page) */
.not-found .btn-liquid {
	background: linear-gradient(135deg, rgba(0, 113, 227, 0.9), rgba(0, 119, 237, 0.75));
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 8px 24px rgba(0, 113, 227, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* ---------- Reveal animation ---------- */

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.orb, .hero-scroll { animation: none; }
	* { transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
	.services-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.nav-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: absolute;
		top: calc(100% + 12px);
		left: 12px;
		right: 12px;
		border-radius: var(--radius-md);
		padding: 12px;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.55));
		-webkit-backdrop-filter: blur(24px) saturate(180%);
		backdrop-filter: blur(24px) saturate(180%);
		border: 1px solid var(--glass-border);
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.7);
		opacity: 0;
		transform: translateY(-10px) scale(0.98);
		pointer-events: none;
		transition: opacity 0.35s var(--ease-spring), transform 0.35s var(--ease-spring);
	}

	.primary-nav.is-open {
		opacity: 1;
		transform: translateY(0) scale(1);
		pointer-events: auto;
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.nav-list a {
		display: block;
		text-align: center;
		padding: 12px;
	}

	.about-grid,
	.services-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.btn-submit {
		justify-self: stretch;
	}
}
