/* ==========================================================================
   Prestigious Car Wash & Detailing
   ========================================================================== */

:root {
	--navy:        #3D479B;
	--navy-deep:   #2B3372;
	--navy-dark:   #1B2050;
	--ink:         #0B0D1C;
	--gold:        #F5C566;
	--gold-deep:   #D9A741;
	--gold-soft:   rgba(245, 197, 102, .16);
	--cream:       #FBF7F0;
	--paper:       #FFFFFF;
	--body:        #3A3D52;
	--muted:       #6F7288;
	--line:        rgba(61, 71, 155, .14);

	--wrap:        1200px;
	--radius:      18px;
	--radius-sm:   12px;
	--shadow:      0 24px 60px -30px rgba(19, 24, 66, .45);
	--shadow-lg:   0 40px 90px -40px rgba(19, 24, 66, .6);

	--font:        'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--header-h:    82px;
}

/* --------------------------------------------------------- reset & base */

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

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

body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.65;
	font-weight: 300;
	color: var(--body);
	background: var(--paper);
	overflow-x: hidden;
}

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

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
	margin: 0 0 .5em;
	font-weight: 500;
	line-height: 1.15;
	color: var(--navy-dark);
	letter-spacing: -.01em;
}

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

button { font: inherit; cursor: pointer; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
	white-space: nowrap; border: 0;
}

.skip-link:focus {
	position: fixed; top: 12px; left: 12px; z-index: 999;
	width: auto; height: auto; clip: auto; clip-path: none;
	padding: 12px 20px; background: var(--gold); color: var(--navy-dark);
	border-radius: 8px;
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* --------------------------------------------------------- brand lockup */

.brand {
	display: block;
	color: var(--gold);
	text-align: center;
	line-height: 1;
	text-decoration: none;
}
.brand:hover { color: var(--gold); }
.brand__mark { display: block; width: 100%; height: auto; color: inherit; }
.brand__word {
	display: block;
	font-weight: 400;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: inherit;
}
.brand__rule { display: block; background: currentColor; }
.brand__sub {
	display: block;
	text-transform: uppercase;
	font-weight: 400;
	color: inherit;
}

.brand--sm { width: 149px; }
.brand--sm .brand__word { font-size: 21px; margin-top: -2px; }
.brand--sm .brand__rule { height: 2px; margin: 3px 8px 2px; }
.brand--sm .brand__sub { font-size: 7.2px; letter-spacing: .155em; }

.brand--lg { width: 250px; margin-inline: auto; }
.brand--lg .brand__word { font-size: 35px; margin-top: -2px; }
.brand--lg .brand__rule { height: 3px; margin: 6px 12px 5px; }
.brand--lg .brand__sub { font-size: 12px; letter-spacing: .155em; }

.brand--image { width: auto; max-width: 176px; }
.brand--image .brand__img { max-height: 50px; width: auto; }

/* --------------------------------------------------------- topbar */

.topbar {
	background: var(--navy-dark);
	color: rgba(255, 255, 255, .78);
	font-size: 13px;
	font-weight: 300;
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 40px;
	padding-block: 8px;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item .icon { color: var(--gold); }
.topbar__item--cta { color: var(--gold); font-weight: 400; }

/* --------------------------------------------------------- header */

.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--navy);
	box-shadow: 0 10px 40px -22px rgba(11, 13, 28, .8);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--header-h);
	padding-block: 12px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav__list a {
	position: relative;
	display: block;
	padding: 6px 0;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .88);
}
.nav__list a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--gold);
	transition: width .25s ease;
}
.nav__list a:hover { color: #fff; }
.nav__list a:hover::after,
.nav__list .current-menu-item > a::after { width: 100%; }

.nav__list .sub-menu {
	position: absolute;
	min-width: 200px;
	margin: 0; padding: 8px;
	list-style: none;
	background: var(--navy-dark);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
	opacity: 0; visibility: hidden;
	transition: opacity .2s ease;
}
.nav__list li:hover > .sub-menu { opacity: 1; visibility: visible; }
.nav__list .sub-menu a { padding: 8px 12px; text-transform: none; letter-spacing: 0; }

.nav-toggle {
	display: none;
	width: 46px; height: 46px;
	padding: 0;
	background: rgba(255, 255, 255, .1);
	border: 0;
	border-radius: 12px;
	color: #fff;
}
.nav-toggle__bars { display: grid; gap: 5px; justify-items: center; }
.nav-toggle__bars i {
	display: block;
	width: 20px; height: 2px;
	background: currentColor;
	transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------- buttons */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 24px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
	border: 2px solid transparent;
	border-radius: 999px;
	transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--navy-dark); }

.btn--ghost { background: transparent; color: var(--gold); border-color: rgba(245, 197, 102, .55); }
.btn--ghost:hover { background: var(--gold-soft); color: var(--gold); border-color: var(--gold); }

.btn--lg { padding: 16px 30px; font-size: 15px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row--light .btn--ghost { color: var(--navy); border-color: rgba(61, 71, 155, .35); }
.cta-row--light .btn--ghost:hover { background: rgba(61, 71, 155, .08); color: var(--navy); border-color: var(--navy); }

.link-gold {
	font-weight: 500;
	color: var(--gold-deep);
	border-bottom: 1px solid rgba(217, 167, 65, .4);
}
.link-gold:hover { color: var(--navy); border-color: var(--navy); }

/* --------------------------------------------------------- hero */

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(560px, 88vh, 860px);
	background: var(--navy-dark);
	overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
	content: '';
	position: absolute; inset: 0;
	background:
		linear-gradient(100deg, rgba(11, 13, 28, .94) 0%, rgba(27, 32, 80, .84) 42%, rgba(27, 32, 80, .35) 78%, rgba(27, 32, 80, .15) 100%),
		linear-gradient(to top, rgba(11, 13, 28, .7), transparent 45%);
}
.hero__inner { position: relative; z-index: 2; padding-block: 90px; }
.hero__copy { max-width: 660px; color: #fff; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold);
}
.eyebrow__dot {
	width: 22px; height: 2px;
	background: var(--gold);
}

.hero__title {
	margin: 0 0 22px;
	font-size: clamp(2.6rem, 6.2vw, 4.6rem);
	font-weight: 300;
	line-height: 1.04;
	color: #fff;
}
.hero__title em {
	display: block;
	font-style: normal;
	font-weight: 500;
	color: var(--gold);
}

.hero__lead {
	max-width: 560px;
	margin-bottom: 30px;
	font-size: clamp(1rem, 1.6vw, 1.18rem);
	color: rgba(255, 255, 255, .84);
}

.hero__note {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 22px 0 0;
	font-size: 14px;
	letter-spacing: .02em;
	color: var(--gold);
}

.hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 44px;
	margin: 42px 0 0;
	padding: 26px 0 0;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero__stats li { display: grid; gap: 2px; }
.hero__stats strong {
	font-size: 26px;
	font-weight: 500;
	color: var(--gold);
}
.hero__stats span {
	font-size: 12.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .62);
}

/* --------------------------------------------------------- marquee */

.marquee {
	overflow: hidden;
	padding-block: 16px;
	background: var(--gold);
	color: var(--navy-dark);
}
.marquee__track {
	display: flex;
	width: max-content;
	gap: 40px;
	animation: marquee 38s linear infinite;
}
.marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 40px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	white-space: nowrap;
}
.marquee__item .icon { width: 14px; height: 14px; opacity: .6; }

@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.marquee__track { animation: none; }
}

/* --------------------------------------------------------- sections */

.section { padding-block: clamp(64px, 9vw, 116px); }

.section__head { max-width: 700px; margin-bottom: 52px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

.section__title {
	margin: 0 0 16px;
	font-size: clamp(1.9rem, 3.8vw, 2.85rem);
	font-weight: 400;
}
.section__lead { margin: 0; font-size: 1.05rem; color: var(--muted); }

.section__foot {
	margin: 46px 0 0;
	text-align: center;
	font-size: 1.02rem;
	color: var(--muted);
}

/* --------------------------------------------------------- services */

.section--menu { background: var(--cream); }

.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 26px;
}

.pcard {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.pcard:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
	border-color: rgba(245, 197, 102, .6);
}

.pcard--featured {
	border-color: var(--gold);
	box-shadow: var(--shadow);
}

.pcard__flag {
	position: absolute;
	top: 16px; right: 16px;
	z-index: 3;
	padding: 6px 14px;
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--navy-dark);
	background: var(--gold);
	border-radius: 999px;
}

.pcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-dark); }
.pcard__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__media::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(27, 32, 80, .55), transparent 55%);
}

.pcard__body { display: flex; flex-direction: column; flex: 1; padding: 26px 26px 28px; }

.pcard__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 14px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--line);
}
.pcard__name {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: .01em;
	text-transform: uppercase;
	color: var(--navy);
}
.pcard__price {
	margin: 0;
	font-size: 2.1rem;
	font-weight: 500;
	line-height: 1;
	color: var(--gold-deep);
	white-space: nowrap;
}
.pcard__price span { font-size: .55em; vertical-align: .5em; margin-right: 1px; }

.pcard__summary { margin: 0 0 18px; font-size: .95rem; color: var(--muted); }

.pcard__list { margin: 0 0 18px; padding: 0; list-style: none; display: grid; gap: 10px; }
.pcard__list li { display: flex; gap: 10px; font-size: .95rem; line-height: 1.5; }
.pcard__list .icon { width: 15px; height: 15px; margin-top: 4px; color: var(--gold-deep); }

.pcard__note {
	margin: 0 0 18px;
	padding: 8px 14px;
	font-size: .82rem;
	font-weight: 400;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--navy);
	background: var(--gold-soft);
	border-radius: 999px;
	align-self: flex-start;
}

.pcard__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 8px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--navy);
}
.pcard__cta .icon { transition: transform .25s ease; }
.pcard__cta:hover { color: var(--gold-deep); }
.pcard__cta:hover .icon { transform: translateX(4px); }

/* --------------------------------------------------------- why */

.why__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}

.why__list { margin: 34px 0 0; padding: 0; list-style: none; display: grid; gap: 24px; }
.why__item { display: flex; gap: 18px; }
.why__item h3 { margin: 0 0 4px; font-size: 1.08rem; font-weight: 500; }
.why__item p { margin: 0; font-size: .95rem; color: var(--muted); }
.why__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 48px; height: 48px;
	color: var(--gold-deep);
	background: var(--gold-soft);
	border-radius: 14px;
}
.why__icon .icon { width: 22px; height: 22px; }

.why__media {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.why__shot { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.why__shot img { width: 100%; height: 100%; object-fit: cover; }
.why__shot--tall { grid-row: span 2; }

/* --------------------------------------------------------- tint */

.section--tint {
	background:
		radial-gradient(1000px 500px at 15% 0%, rgba(61, 71, 155, .55), transparent 60%),
		var(--ink);
	color: rgba(255, 255, 255, .78);
}
.section--tint .section__title { color: #fff; }
.section--tint .section__lead { color: rgba(255, 255, 255, .66); }

.tint-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
}
.tcard {
	background: rgba(255, 255, 255, .045);
	border: 1px solid rgba(245, 197, 102, .22);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .28s ease, border-color .28s ease;
}
.tcard:hover { transform: translateY(-6px); border-color: var(--gold); }
.tcard__media { aspect-ratio: 4 / 3; overflow: hidden; }
.tcard__media img { width: 100%; height: 100%; object-fit: cover; }
.tcard__body { padding: 24px; }
.tcard__body h3 { margin: 0 0 6px; font-size: 1.15rem; font-weight: 500; color: #fff; }
.tcard__body p { margin: 0; font-size: .94rem; color: rgba(255, 255, 255, .66); }
.tcard__price {
	margin: 0 0 12px !important;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--gold) !important;
}

.tint-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 14px 30px;
	margin: 42px 0 0;
	padding: 30px 0 0;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, .12);
}
.tint-benefits li { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
.tint-benefits .icon { width: 18px; height: 18px; color: var(--gold); }

.tint-cta {
	margin-top: 44px;
	padding: 34px;
	background: rgba(245, 197, 102, .08);
	border: 1px solid rgba(245, 197, 102, .28);
	border-radius: var(--radius);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.tint-cta p { margin: 0; max-width: 520px; color: rgba(255, 255, 255, .8); }

/* --------------------------------------------------------- gallery */

.section--gallery { background: var(--cream); }

.gallery__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 34px;
}
.chip {
	padding: 9px 20px;
	font-size: 12.5px;
	font-weight: 400;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--navy);
	background: transparent;
	border: 1px solid rgba(61, 71, 155, .25);
	border-radius: 999px;
	transition: all .2s ease;
}
.chip:hover { border-color: var(--navy); }
.chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 14px;
}
.shot { margin: 0; }
.shot[hidden] { display: none; }
.shot__btn {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	background: var(--navy-dark);
	border: 0;
	border-radius: var(--radius-sm);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}
.shot__btn img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s ease, opacity .3s ease;
}
.shot__btn:hover img { transform: scale(1.08); opacity: .75; }
.shot__zoom {
	position: absolute;
	inset: auto 12px 12px auto;
	display: grid;
	place-items: center;
	width: 34px; height: 34px;
	font-size: 20px;
	color: var(--navy-dark);
	background: var(--gold);
	border-radius: 50%;
	opacity: 0;
	transform: translateY(6px);
	transition: all .25s ease;
}
.shot__btn:hover .shot__zoom { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------- process */

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}
.step {
	position: relative;
	padding: 32px 26px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-5px); border-color: rgba(245, 197, 102, .7); }
.step__num {
	display: block;
	margin-bottom: 14px;
	font-size: 2.3rem;
	font-weight: 500;
	line-height: 1;
	color: var(--gold);
}
.step__title { margin: 0 0 8px; font-size: 1.1rem; font-weight: 500; }
.step__text { margin: 0; font-size: .94rem; color: var(--muted); }

/* --------------------------------------------------------- location */

.section--location { background: var(--cream); }

.location__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(34px, 5vw, 64px);
	align-items: start;
}

.location__facts { display: grid; gap: 26px; margin-top: 34px; }
.fact { display: flex; gap: 16px; }
.fact h3 {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--muted);
}
.fact address { font-style: normal; margin-bottom: 6px; color: var(--navy-dark); }
.fact p { margin: 0 0 4px; }
.fact__hint { font-size: .9rem; color: var(--muted); }
.fact__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 46px; height: 46px;
	color: var(--gold-deep);
	background: var(--gold-soft);
	border-radius: 14px;
}
.fact__icon .icon { width: 21px; height: 21px; }

.hours { margin: 0; padding: 0; list-style: none; display: grid; gap: 4px; }
.hours li { display: flex; flex-wrap: wrap; gap: 4px 10px; font-size: .95rem; }
.hours__day { min-width: 110px; color: var(--navy-dark); }
.hours__time { color: var(--muted); }

.location__areas {
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}
.location__areas h3 {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--muted);
}
.location__areas p { margin: 0; font-size: .95rem; color: var(--muted); }

.location__map {
	position: relative;
	aspect-ratio: 4 / 3.2;
	min-height: 380px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
	background: #e8eaf3;
}
.location__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------- faq */

.faq__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(34px, 5vw, 70px);
	align-items: start;
}
.faq__head .cta-row { margin-top: 26px; }

.faq__list { display: grid; gap: 10px; }
.faq__item {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: border-color .2s ease;
}
.faq__item[open] { border-color: rgba(245, 197, 102, .7); }
.faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	font-size: 1.02rem;
	font-weight: 400;
	color: var(--navy-dark);
	cursor: pointer;
	list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i {
	position: relative;
	flex: none;
	width: 16px; height: 16px;
}
.faq__item summary i::before,
.faq__item summary i::after {
	content: '';
	position: absolute;
	left: 50%; top: 50%;
	background: var(--gold-deep);
	transform: translate(-50%, -50%);
	transition: opacity .2s ease;
}
.faq__item summary i::before { width: 14px; height: 2px; }
.faq__item summary i::after  { width: 2px; height: 14px; }
.faq__item[open] summary i::after { opacity: 0; }
.faq__answer { padding: 0 22px 20px; }
.faq__answer p { margin: 0; font-size: .96rem; color: var(--muted); }

/* --------------------------------------------------------- closing CTA */

.section--cta {
	position: relative;
	text-align: center;
	color: #fff;
	overflow: hidden;
	background: var(--navy-dark);
}
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(27, 32, 80, .92), rgba(11, 13, 28, .95));
}
.cta__inner { position: relative; z-index: 2; display: grid; justify-items: center; gap: 4px; }
.cta__inner .brand__mark { width: 200px; color: var(--gold); margin-bottom: 22px; }
.cta__title {
	max-width: 720px;
	margin: 0 0 14px;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 400;
	color: #fff;
}
.cta__lead { max-width: 540px; margin: 0 0 30px; color: rgba(255, 255, 255, .74); }
.cta__address {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 28px 0 0;
	font-size: .95rem;
	color: rgba(255, 255, 255, .68);
}
.cta__address .icon { color: var(--gold); }
.cta__address a { color: inherit; border-bottom: 1px solid rgba(255, 255, 255, .3); }
.cta__address a:hover { color: var(--gold); border-color: var(--gold); }

/* --------------------------------------------------------- footer */

.site-footer { background: var(--ink); color: rgba(255, 255, 255, .66); font-size: .95rem; }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
	gap: 44px;
	padding-block: clamp(50px, 6vw, 74px);
}
.site-footer h3 {
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold);
}
.site-footer__brand .brand { margin-inline: 0; text-align: left; }
.site-footer__brand .brand__rule { margin-inline: 0 60px; }
.site-footer__blurb { margin: 22px 0 0; max-width: 320px; }

.social { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0 0; padding: 0; list-style: none; }
.social a { color: var(--gold); font-size: .9rem; }

.linklist { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.linklist a {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	color: rgba(255, 255, 255, .72);
}
.linklist a:hover { color: var(--gold); }
.linklist span { color: var(--gold); }

.footer-address { font-style: normal; margin-bottom: 10px; color: rgba(255, 255, 255, .82); }
.footer-link { display: inline-block; margin-bottom: 18px; color: var(--gold); border-bottom: 1px solid rgba(245, 197, 102, .4); }
.site-footer .hours__day { color: rgba(255, 255, 255, .82); }
.site-footer .hours__time { color: rgba(255, 255, 255, .55); }
.site-footer__cta { color: rgba(255, 255, 255, .8); }
.site-footer .cta-row { margin-top: 18px; }
.site-footer .btn--gold { padding: 12px 20px; }
.site-footer .btn--ghost { padding: 12px 20px; }

.site-footer__widgets { padding-bottom: 40px; }

.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.site-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-block: 20px;
	font-size: .85rem;
}
.site-footer__bottom p { margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; margin: 0; padding: 0; list-style: none; }
.footer-nav a { color: rgba(255, 255, 255, .6); }
.footer-nav a:hover { color: var(--gold); }

/* --------------------------------------------------------- mobile call bar */

.callbar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 70;
	display: none;
	background: var(--navy-dark);
	border-top: 1px solid rgba(245, 197, 102, .3);
	padding-bottom: env(safe-area-inset-bottom);
}
.callbar__btn {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	padding: 10px 6px 11px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .82);
}
.callbar__btn .icon { width: 19px; height: 19px; color: var(--gold); }
.callbar__btn--call { background: var(--gold); color: var(--navy-dark); }
.callbar__btn--call .icon { color: var(--navy-dark); }

/* --------------------------------------------------------- lightbox */

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5vh 6vw;
	background: rgba(8, 10, 24, .94);
}
.lightbox[hidden] { display: none; }
.lightbox__img {
	max-width: 100%;
	max-height: 90vh;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
}
.lightbox__close,
.lightbox__nav {
	position: absolute;
	background: rgba(255, 255, 255, .1);
	border: 0;
	color: #fff;
	border-radius: 50%;
	transition: background .2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--gold); color: var(--navy-dark); }
.lightbox__close { top: 22px; right: 22px; width: 46px; height: 46px; font-size: 26px; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 34px; line-height: 1; }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

/* --------------------------------------------------------- inner pages */

.page-hero {
	padding-block: clamp(50px, 7vw, 84px);
	background:
		radial-gradient(900px 400px at 20% 0%, rgba(61, 71, 155, .6), transparent 65%),
		var(--navy-dark);
	color: #fff;
}
.page-hero__title { margin: 0; color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 400; }
.page-hero__meta { margin: 0 0 8px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.page-hero__desc { color: rgba(255, 255, 255, .7); }

.entry { max-width: 820px; }
.entry__thumb { margin: 0 0 32px; border-radius: var(--radius); overflow: hidden; }
.entry__content h2 { margin-top: 1.6em; font-size: 1.7rem; }
.entry__content h3 { margin-top: 1.4em; font-size: 1.3rem; }
.entry__content img { border-radius: var(--radius-sm); }
.entry__content blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--gold);
	color: var(--navy-dark);
}
.entry__footer { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }

.postgrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 26px;
}
.postcard {
	display: flex;
	flex-direction: column;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.postcard__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.postcard__body { padding: 24px; }
.postcard__meta { margin: 0 0 8px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.postcard__title { font-size: 1.25rem; font-weight: 500; }
.postcard__excerpt { color: var(--muted); font-size: .95rem; }

.notfound { max-width: 620px; margin-inline: auto; text-align: center; }
.notfound .brand__mark { width: 200px; margin: 0 auto 26px; color: var(--gold-deep); }
.notfound .cta-row { justify-content: center; margin-bottom: 24px; }

.searchform { display: flex; gap: 10px; flex-wrap: wrap; }
.searchform input {
	flex: 1;
	min-width: 200px;
	padding: 13px 18px;
	font: inherit;
	border: 1px solid var(--line);
	border-radius: 999px;
}

.pagination { margin-top: 44px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px; height: 42px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
}
.pagination .current { background: var(--navy); border-color: var(--navy); color: #fff; }

/* --------------------------------------------------------- responsive */

@media (max-width: 1080px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr; gap: 38px; }
}

@media (max-width: 900px) {
	.why__grid,
	.location__grid,
	.faq__grid { grid-template-columns: 1fr; }
	.why__media { grid-template-columns: 1fr 1fr; }
	.why__shot--tall { grid-row: auto; aspect-ratio: 4/3; }
	.location__map { min-height: 320px; }
}

@media (max-width: 860px) {
	.topbar__item:not(.topbar__item--cta) { display: none; }
	.topbar__inner { justify-content: center; }

	.nav-toggle { display: grid; place-items: center; }
	.nav {
		position: fixed;
		inset: 0 0 0 auto;
		z-index: 80;
		width: min(86vw, 350px);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 96px 26px 40px;
		background: var(--navy-dark);
		transform: translateX(102%);
		transition: transform .32s cubic-bezier(.4, 0, .2, 1);
		overflow-y: auto;
	}
	.nav.is-open { transform: translateX(0); }
	.nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.nav__list > li { border-bottom: 1px solid rgba(255, 255, 255, .1); }
	.nav__list a { padding: 15px 0; font-size: 15px; }
	.nav__list .sub-menu { position: static; opacity: 1; visibility: visible; background: transparent; box-shadow: none; padding-left: 12px; }
	.nav__cta { margin-top: 26px; }
	.nav__cta .btn { width: 100%; }
	.nav-toggle { position: relative; z-index: 90; }

	body.nav-open { overflow: hidden; }
	body.nav-open::after {
		content: '';
		position: fixed;
		inset: 0;
		z-index: 70;
		background: rgba(8, 10, 24, .6);
	}

	.callbar { display: flex; }
	body { padding-bottom: 62px; }
	.hero { min-height: auto; }
	.hero__inner { padding-block: 66px 74px; }
	.tint-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
	body { font-size: 16px; }
	.menu-grid { grid-template-columns: 1fr; }
	.gallery__grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
	.site-footer__grid { grid-template-columns: 1fr; }
	.hero__stats { gap: 12px 28px; }
	.hero__stats strong { font-size: 22px; }
	.cta-row .btn { flex: 1; justify-content: center; }
	.brand--sm { width: 158px; }
	.brand--sm .brand__word { font-size: 22px; }
	.brand--sm .brand__sub { font-size: 8px; }
	.lightbox { padding: 4vh 4vw; }
	.lightbox__nav { width: 42px; height: 42px; font-size: 26px; }
}

/* ==========================================================================
   Motion & depth
   ========================================================================== */

/* scroll progress ---------------------------------------------------- */

.scrollbar {
	position: fixed;
	top: 0; left: 0;
	z-index: 120;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold-deep), var(--gold), #FFF0C8);
	box-shadow: 0 0 14px rgba(245, 197, 102, .7);
	transition: width .08s linear;
	pointer-events: none;
}

/* film grain: a touch of texture so flat panels do not read as plastic */

body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: 150;
	pointer-events: none;
	opacity: .04;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* hero ---------------------------------------------------------------- */

.hero__media img {
	animation: kenburns 26s ease-in-out infinite alternate;
	will-change: transform;
}
@keyframes kenburns {
	from { transform: scale(1.05) translate3d(0, 0, 0); }
	to   { transform: scale(1.16) translate3d(-1.6%, -1.4%, 0); }
}

.hero__sheen {
	position: absolute;
	inset: -40% -30%;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(100deg, transparent 42%, rgba(245, 197, 102, .14) 50%, transparent 58%);
	animation: sweep 10s ease-in-out infinite;
}
@keyframes sweep {
	0%, 62%  { transform: translateX(-75%); }
	100%     { transform: translateX(75%); }
}

.hero__copy > * { animation: rise .9s cubic-bezier(.2, .7, .2, 1) both; }
.hero__copy > *:nth-child(1) { animation-delay: .08s; }
.hero__copy > *:nth-child(2) { animation-delay: .18s; }
.hero__copy > *:nth-child(3) { animation-delay: .28s; }
.hero__copy > *:nth-child(4) { animation-delay: .38s; }
.hero__copy > *:nth-child(5) { animation-delay: .48s; }
.hero__copy > *:nth-child(6) { animation-delay: .58s; }

@keyframes rise {
	from { opacity: 0; transform: translateY(26px); }
	to   { opacity: 1; transform: none; }
}

/* liquid-gold shine across the headline accent */
.hero__title em {
	background: linear-gradient(96deg, #D9A741 0%, #F5C566 25%, #FFF3D2 45%, #F5C566 62%, #D9A741 100%);
	background-size: 240% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	animation: shine 7s ease-in-out infinite;
}
@keyframes shine {
	0%, 100% { background-position: 0% 50%; }
	50%      { background-position: 100% 50%; }
}

.hero__cue {
	position: absolute;
	left: 50%; bottom: 22px;
	z-index: 3;
	display: grid;
	justify-items: center;
	gap: 9px;
	transform: translateX(-50%);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .55);
	pointer-events: none;
}
.hero__cue-line {
	width: 1px;
	height: 46px;
	background: linear-gradient(to bottom, transparent, var(--gold));
	transform-origin: top;
	animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue {
	0%, 100% { transform: scaleY(.35); opacity: .4; }
	50%      { transform: scaleY(1);   opacity: 1; }
}

/* price cards: pointer-tracked tilt and gold spotlight ------------------ */

.pcard {
	transform-style: preserve-3d;
	will-change: transform;
}
.pcard::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	transition: opacity .35s ease;
	background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(245, 197, 102, .22), transparent 62%);
}
.pcard:hover::after { opacity: 1; }
.pcard.is-tilting { transition: box-shadow .28s ease, border-color .28s ease; }

/* gallery ------------------------------------------------------------- */

.shot__btn::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 2px solid transparent;
	border-radius: inherit;
	transition: border-color .3s ease;
	pointer-events: none;
}
.shot__btn:hover::after { border-color: rgba(245, 197, 102, .85); }

/* logo mark picks up a glow on hover ----------------------------------- */

.brand__mark { transition: filter .35s ease; }
.brand:hover .brand__mark { filter: drop-shadow(0 0 14px rgba(245, 197, 102, .55)); }

/* step cards get a moving gold edge ------------------------------------ */

.step::before {
	content: '';
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom, var(--gold), transparent);
	opacity: 0;
	transition: opacity .3s ease;
}
.step:hover::before { opacity: 1; }

@media (hover: none) {
	.pcard::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.hero__media img { transform: scale(1.05); }
	.hero__copy > * { opacity: 1; transform: none; }
	.hero__sheen, .hero__cue { display: none; }
}
