/* ==========================================================
   AARVELLA PAGES CSS
   Cleaned structure + fixed booking popup
   Applies to: stylists.html, about.html, blog.html, find-us.html
========================================================== */

/* ==========================================================
   01. DESIGN TOKENS
========================================================== */

:root {
	--gold: #d4af37;
	--dark-gold: #c5a021;
	--black: #0a0a0a;
	--charcoal: #141414;
	--ink: #0e0e0e;
	--white: #f7f3ea;
	--muted: rgba(247, 243, 234, 0.72);
	--soft: rgba(255, 255, 255, 0.08);
	--line: rgba(212, 175, 55, 0.18);
	--glass: rgba(10, 10, 10, 0.54);
	--radius: 28px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--transition: all 0.4s ease;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-soft: cubic-bezier(0.25, 0.8, 0.25, 1);
	--duration-fast: 0.25s;
	--duration-medium: 0.45s;
}


/* ==========================================================
   02. RESET + BASE
========================================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--black);
	color: var(--white);
	font-family: "Inter", sans-serif;
	line-height: 1.65;
	overflow-x: hidden;
}

body.menu-open,
body.booking-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

h1,
h2,
h3 {
	font-family: "Poppins", sans-serif;
	font-weight: 650;
	letter-spacing: -0.04em;
	color: var(--gold);
}

.gold {
	color: var(--gold);
}

.eyebrow {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	color: var(--gold);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 0.72rem;
	font-weight: 700;
}

.eyebrow::before {
	content: "";
	width: 36px;
	height: 1px;
	background: var(--gold);
	opacity: 0.6;
}


/* ==========================================================
   03. HEADER + NAVIGATION
========================================================== */

.site-header {
	position: fixed;
	top: clamp(12px, 2vw, 22px);
	left: 0;
	width: 100%;
	z-index: 3000;
	padding-inline: clamp(14px, 3vw, 48px);
	transition:
		transform 0.45s var(--ease),
		opacity 0.35s ease;
}

.nav-shell {
	min-height: clamp(62px, 7vw, 76px);
	padding-inline: clamp(18px, 3vw, 42px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-radius: clamp(14px, 1.5vw, 22px);
	background: rgba(10, 10, 10, 0.42);
	backdrop-filter: blur(18px) saturate(150%);
	-webkit-backdrop-filter: blur(20px) saturate(155%);
	box-shadow:
		0 18px 50px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logo { 
	font-size: 2rem;
	letter-spacing: 4px;
	font-weight: bold;
	position: relative;
	z-index: 3001;
	background: transparent !important;
}

/* Logo Hyperlink Cleanup */
.logo-link {
	text-decoration: none;
	color: inherit;
}

.logo-link:hover .logo {
	text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2vw, 32px);
}

.desktop-nav a {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: rgba(247, 243, 234, 0.86);
	position: relative;
}

.desktop-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 0.35s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
	color: var(--gold);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
	width: 100%;
}

.site-header.nav-hidden {
	transform: translateY(-140%);
	opacity: 0;
}

.site-header.nav-visible {
	transform: translateY(0);
	opacity: 1;
}

/* ==========================================================
   04. MOBILE NAVIGATION
========================================================== */

.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	position: relative;
	z-index: 3100;
}

.hamburger span {
	width: 30px;
	height: 2px;
	background: var(--gold);
	transition: 0.35s var(--ease);
}

.hamburger.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(82vw, 390px);
	height: 100vh;
	background: rgba(8, 8, 8, 0.76);
	backdrop-filter: blur(22px) saturate(160%);
	-webkit-backdrop-filter: blur(22px) saturate(160%);
	box-shadow: -45px 0 100px rgba(0, 0, 0, 0.75);
	z-index: 2500;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 2rem;
	padding: 0 clamp(34px, 8vw, 64px);
	transform: translateX(105%);
	transition: transform 0.55s var(--ease);
	border-left: 1px solid var(--line);
}

.mobile-nav.active {
	transform: translateX(0);
}

.mobile-nav a {
	font-family: 'Inter', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 2px;
	opacity: 0;
	transform: translateY(18px);
	transition: 0.45s var(--ease);
}

.mobile-nav.active a {
	opacity: 1;
	transform: translateY(0);
}

.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.46);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	z-index: 2400;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: 0.35s ease;
}

.nav-overlay.active,
body.menu-open .nav-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* ==========================================================
   05. LIQUID GLASS BUTTONS
========================================================== */

.btn-gold,
.btn-outline {
	--magnetic: translate(0, 0);

	height: 45px;
	padding: 0 24px;
	min-width: 180px;
	border-radius: 999px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	box-sizing: border-box;
	white-space: nowrap;
	flex-shrink: 0;

	position: relative;
	overflow: hidden;
	cursor: pointer;

	font-family: inherit;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;

	backdrop-filter: blur(18px) saturate(180%);
	-webkit-backdrop-filter: blur(18px) saturate(180%);

	transform: var(--magnetic);

	isolation: isolate;
	text-align: center;

	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.35s ease,
		border-color 0.35s ease,
		color 0.35s ease;
}

.btn-gold span,
.btn-outline span {
	position: relative;
	z-index: 5;
	display:  flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
	transform: none !important;
	translate: none !important;
	pointer-events: none;
}

.btn-text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 5;
}

.btn-ripple-container {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 3;
	overflow: hidden;
	border-radius: inherit;
}

.btn-gold {
	border: 1px solid rgba(255, 230, 150, 0.55);
	color: var(--black);

	background:
		linear-gradient(
			135deg,
			rgba(255, 236, 160, 0.82),
			rgba(212, 175, 55, 0.42)
		),
		rgba(255, 255, 255, 0.16);

	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.75),
		inset 0 -1px 1px rgba(90, 60, 0, 0.18),
		0 12px 30px rgba(212, 175, 55, 0.28),
		0 4px 12px rgba(0, 0, 0, 0.28);
}

.btn-outline {
	border: 1px solid rgba(212, 175, 55, 0.6);
	color: var(--gold);

	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.16),
			rgba(255, 255, 255, 0.04)
		);

	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.45),
		inset 0 -1px 1px rgba(255, 255, 255, 0.08),
		0 10px 26px rgba(212, 175, 55, 0.16),
		0 4px 12px rgba(0, 0, 0, 0.22);
}

.btn-gold::before,
.btn-outline::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	pointer-events: none;
	z-index: 1;

	background:
		radial-gradient(
			circle at 28% 18%,
			rgba(255, 255, 255, 0.85),
			rgba(255, 255, 255, 0.25) 18%,
			transparent 42%
		),
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.4),
			transparent 38%
		);

	opacity: 0.75;
}

.btn-gold::after,
.btn-outline::after {
	content: "";
	position: absolute;
	top: -45%;
	left: -80%;
	width: 55%;
	height: 190%;
	border-radius: inherit;
	pointer-events: none;
	z-index: 2;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.55),
		transparent
	);

	transform: rotate(18deg) translateX(-120%);
	transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-gold:hover {
	transform: translateY(-4px) scale(1.035);
	background:
		linear-gradient(
			135deg,
			rgba(255, 244, 190, 0.92),
			rgba(212, 175, 55, 0.52)
		),
		rgba(255, 255, 255, 0.22);

	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.85),
		0 18px 42px rgba(212, 175, 55, 0.36),
		0 8px 18px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
	transform: translateY(-4px) scale(1.035);
	color: var(--black);
	border-color: rgba(255, 230, 150, 0.65);

	background:
		linear-gradient(
			135deg,
			rgba(255, 236, 160, 0.8),
			rgba(212, 175, 55, 0.38)
		),
		rgba(255, 255, 255, 0.16);

	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.75),
		0 18px 42px rgba(212, 175, 55, 0.32),
		0 8px 18px rgba(0, 0, 0, 0.28);
}

.btn-gold:hover::after,
.btn-outline:hover::after {
	transform: rotate(18deg) translateX(420%);
}

.btn-gold:active,
.btn-outline:active {
	transform: translateY(1px) scale(0.965);

	box-shadow:
		inset 0 3px 8px rgba(0, 0, 0, 0.28),
		inset 0 -1px 1px rgba(255, 255, 255, 0.15),
		0 4px 12px rgba(0, 0, 0, 0.3);

	transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.btn-gold:focus-visible,
.btn-outline:focus-visible {
	outline: 3px solid rgba(255, 220, 120, 0.65);
	outline-offset: 4px;
}

.btn-ripple {
	position: absolute;
	left: var(--ripple-x, 50%);
	top: var(--ripple-y, 50%);
	width: 120px;
	height: 120px;

	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.45) 0%,
		rgba(255, 255, 255, 0.18) 40%,
		transparent 70%
	);

	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0);
	animation: ripple 0.6s ease-out;
	pointer-events: none;
	z-index: 3;
}

@keyframes ripple {
	to {
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}


/* ==========================================================
   06. HERO
========================================================== */

.page-hero {
	min-height: 92vh;
	position: relative;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 140px 8% 90px;
	overflow: hidden;
	background: #090909;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.64),
			rgba(0, 0, 0, 0.48),
			rgba(0, 0, 0, 0.88)
		),
		var(--hero-image);
	background-size: cover;
	background-position: center;
	transform: scale(1.06);
	animation: heroDrift 18s ease-in-out infinite alternate;
	will-change: transform;
}

.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			circle at 50% 30%,
			rgba(212, 175, 55, 0.22),
			transparent 30%
		),
		radial-gradient(
			circle at 20% 80%,
			rgba(255, 255, 255, 0.08),
			transparent 28%
		);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 920px;
}

.hero-kicker {
	opacity: 0;
	animation: fadeUp 0.8s 0.1s var(--ease) forwards;
}

.page-hero h1 {
	font-size: clamp(3.2rem, 8vw, 7.6rem);
	line-height: 0.95;
	color: var(--white);
	margin: 22px 0;
	text-shadow: 0 16px 70px rgba(0, 0, 0, 0.75);
	opacity: 0;
	animation: fadeUp 0.9s 0.26s var(--ease) forwards;
}

.page-hero p {
	max-width: 720px;
	margin: 0 auto 34px;
	color: rgba(247, 243, 234, 0.82);
	font-size: clamp(1rem, 1.6vw, 1.18rem);
	opacity: 0;
	animation: fadeUp 0.9s 0.42s var(--ease) forwards;
}

.hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp 0.9s 0.56s var(--ease) forwards;
}

.scroll-cue {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(247, 243, 234, 0.62);
}

.scroll-cue::after {
	content: "";
	display: block;
	width: 1px;
	height: 42px;
	margin: 12px auto 0;
	background: linear-gradient(var(--gold), transparent);
	animation: cue 1.8s ease-in-out infinite;
}


/* ==========================================================
   07. PAGE SECTIONS
========================================================== */

.section {
	padding: clamp(72px, 9vw, 128px) clamp(18px, 6vw, 90px);
	position: relative;
}

.section.dark {
	background: #090909;
}

.section.soft {
	background: linear-gradient(180deg, #0b0b0b, #111);
}

.section-head {
	max-width: 760px;
	margin: 0 auto 56px;
	text-align: center;
}

.section-head h2 {
	font-size: clamp(2.15rem, 4.5vw, 4.25rem);
	color: var(--white);
	margin: 12px 0;
}

.section-head p {
	color: var(--muted);
}


/* ==========================================================
   08. CARDS + GRIDS
========================================================== */

.lux-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.glass-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.08),
			rgba(255, 255, 255, 0.025)
		);
	box-shadow:
		0 24px 80px rgba(0, 0, 0, 0.28),
		inset 0 1px rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(14px);
	overflow: hidden;
	transition:
		transform 0.55s var(--ease),
		border-color 0.35s ease,
		background 0.35s ease;
}

.glass-card:hover {
	transform: translateY(-10px);
	border-color: rgba(212, 175, 55, 0.42);
	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.105),
			rgba(255, 255, 255, 0.035)
		);
}

.glass-card .pad {
	padding: 32px;
}

.glass-card h3 {
	font-size: 1.45rem;
	color: var(--white);
	margin-bottom: 12px;
}

.glass-card p,
.glass-card li {
	color: var(--muted);
}


/* ==========================================================
   09. SPLIT IMAGE SECTION
========================================================== */

.image-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(28px, 6vw, 82px);
	align-items: center;
	max-width: 1240px;
	margin: 0 auto;
}

.image-frame {
	border-radius: 34px;
	overflow: hidden;
	border: 1px solid var(--line);
	position: relative;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.image-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
	pointer-events: none;
}

.image-frame img {
	width: 100%;
	height: clamp(430px, 52vw, 680px);
	object-fit: cover;
	filter: saturate(0.9) contrast(1.02);
	transition: transform 1.1s var(--ease);
}

.image-frame:hover img {
	transform: scale(1.045);
}

.rich-copy h2 {
	font-size: clamp(2.1rem, 4.3vw, 4.6rem);
	line-height: 1.02;
	color: var(--white);
	margin: 18px 0 24px;
}

.rich-copy p {
	color: var(--muted);
	margin-bottom: 18px;
}

.stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 28px;
}

.stat {
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.04);
}

.stat strong {
	display: block;
	color: var(--gold);
	font-size: 1.45rem;
}

.stat span {
	font-size: 0.78rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}


/* ==========================================================
   10. STYLISTS PAGE
========================================================== */

.team-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	max-width: 1180px;
	margin: 0 auto;
}

.stylist-card {
	display: grid;
	grid-template-columns: 0.9fr 1fr;
	min-height: 440px;
}

.stylist-card img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	filter: grayscale(0.72);
	transition:
		filter 0.6s var(--ease),
		transform 0.8s var(--ease);
}

.stylist-card:hover img {
	filter: grayscale(0);
	transform: scale(1.035);
}

.role {
	display: block;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.72rem;
	margin-bottom: 12px;
}

.skill-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.skill-tags span {
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 999px;
	padding: 7px 10px;
	color: rgba(247, 243, 234, 0.7);
	font-size: 0.72rem;
}


/* ==========================================================
   11. BLOG PAGE
========================================================== */

.blog-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.8fr;
	gap: 24px;
	max-width: 1240px;
	margin: 0 auto;
}

.blog-card:first-child {
	grid-row: span 2;
}

.blog-card img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	filter: saturate(0.88);
	transition: transform 0.8s var(--ease);
}

.blog-card:first-child img {
	height: 610px;
}

.blog-card:hover img {
	transform: scale(1.04);
}

.meta {
	color: var(--gold);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 10px;
}


/* ==========================================================
   12. FIND US PAGE
========================================================== */

.location-wrap {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 24px;
	max-width: 1240px;
	margin: 0 auto;
}

.locator-panel {
	padding: 36px;
}

.salon-item {
	padding: 22px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.salon-item h3 {
	color: var(--white);
	font-size: 1.3rem;
	margin-bottom: 8px;
}

.salon-item p {
	color: var(--muted);
}

.map-frame {
	min-height: 620px;
	border: 0;
	width: 100%;
	filter: grayscale(0.25) contrast(1.05);
	border-radius: var(--radius);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	max-width: 1180px;
	margin: 0 auto;
}


/* ==========================================================
   13. FORMS
========================================================== */

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 880px;
	margin: 36px auto 0;
}

.form-grid .full {
	grid-column: 1 / -1;
}

input,
select,
textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 18px;
	color: var(--white);
	padding: 16px 18px;
	outline: none;
}

textarea {
	min-height: 130px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: rgba(212, 175, 55, 0.6);
	box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

/* ==========================================================
   16. REVEAL ANIMATIONS
========================================================== */

.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition:
		opacity 0.8s var(--ease),
		transform 0.8s var(--ease);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroDrift {
	from {
		transform: scale(1.06) translate3d(0, 0, 0);
	}

	to {
		transform: scale(1.14) translate3d(-1.5%, 1.2%, 0);
	}
}

@keyframes cue {
	0%,
	100% {
		opacity: 0.35;
		transform: scaleY(0.8);
	}

	50% {
		opacity: 1;
		transform: scaleY(1.15);
	}
}


/* ==========================================================
   17. RESPONSIVE
========================================================== */

@media (max-width: 980px) {
	.desktop-nav {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.lux-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.image-split,
	.location-wrap {
		grid-template-columns: 1fr;
	}

	.team-grid,
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.stylist-card {
		grid-template-columns: 1fr;
	}

	.stylist-card img {
		height: 420px;
	}

	.blog-card:first-child img,
	.blog-card img {
		height: 360px;
	}

	.footer-container {
		grid-template-columns: 1fr 1fr;
	}

	.stat-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.page-hero {
		min-height: 86vh;
		padding-inline: 18px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.btn-gold,
	.btn-outline {
		width: 100%;
		max-width: 290px;
	}

	.section {
		padding-inline: 18px;
	}

	.footer-container,
	.footer-bottom,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		display: grid;
	}

	.mobile-nav {
		width: 86vw;
	}

	.map-frame {
		min-height: 420px;
	}

	.glass-card .pad {
		padding: 24px;
	}
}


/* ==========================================================
   18. REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}

	.hero-bg {
		transform: none;
	}
}
