/* Las Vegas Website Design 2026 — main stylesheet */

/* ------------------------------------------------------------ Tokens */
:root {
	--bg: #070b14;
	--bg-2: #0b1322;
	--panel: #101a2e;
	--panel-2: #15203a;
	--line: rgba(150, 180, 255, .14);
	--text: #e9eef8;
	--muted: #a3b0c6;
	--gold: #ffc233;
	--gold-2: #ff8a00;
	--cyan: #27e0ff;
	--magenta: #ff3d9a;
	--violet: #7b2bff;
	--font: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--wrap: 1180px;
	--radius: 16px;
	--shadow: 0 18px 50px rgba(0, 0, 0, .45);
	--grad: linear-gradient(92deg, var(--cyan), var(--gold) 50%, var(--magenta));
}

@font-face {
	font-family: "Sora";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/sora-var-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

/* ------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 16.5px;
	line-height: 1.65;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 .55em; font-weight: 700; letter-spacing: -.015em; }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.2em; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap-narrow { max-width: 800px; }
.center { text-align: center; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: #111; padding: 10px 18px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
.section-pad { padding-block: clamp(64px, 9vw, 120px); }
.section-pad-sm { padding-block: clamp(40px, 6vw, 72px); }
.section-tint { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.sep { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* ----------------------------------------------------------- Buttons */
.btn {
	display: inline-flex; align-items: center; gap: .5em;
	padding: .8em 1.5em; border-radius: 999px;
	font-weight: 700; font-size: .95rem; line-height: 1.2;
	border: 1.5px solid transparent; cursor: pointer;
	transition: transform .2s, box-shadow .25s, background .25s, color .2s, border-color .2s;
}
.btn-lg { padding: 1em 1.9em; font-size: 1.02rem; }
.btn-gold {
	background: linear-gradient(135deg, var(--gold), var(--gold-2));
	color: #181000;
	box-shadow: 0 6px 24px rgba(255, 178, 24, .35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255, 178, 24, .55); color: #181000; }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255, 255, 255, .03); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(39, 224, 255, .18); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row-center { justify-content: center; }
.icon { flex: none; }

/* ------------------------------------------------------------ Header */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(7, 11, 20, .95);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(0, 0, 0, .5); }
.header-in { display: flex; align-items: center; gap: 26px; min-height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 10px; flex: none;
	background: linear-gradient(135deg, var(--gold), var(--gold-2));
	color: #181000; font-weight: 800; font-size: 1rem; letter-spacing: .02em;
	box-shadow: 0 4px 16px rgba(255, 178, 24, .35);
}
.brand-text { font-weight: 800; font-size: 1.06rem; color: var(--text); letter-spacing: -.01em; line-height: 1.1; display: flex; flex-direction: column; }
.brand-text em { font-style: normal; font-weight: 400; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.nav-list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list a { display: block; padding: 9px 13px; color: var(--text); font-size: .92rem; font-weight: 600; border-radius: 8px; }
.nav-list a:hover { color: var(--gold); background: rgba(255, 194, 51, .07); }
.nav-list .sub-menu { display: none; position: absolute; list-style: none; margin: 4px 0 0; padding: 8px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); min-width: 230px; }
.nav-list li { position: relative; }
.nav-list li:hover > .sub-menu, .nav-list li:focus-within > .sub-menu { display: block; }
.header-cta { font-size: .88rem; padding: .6em 1.2em; white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* -------------------------------------------------------------- Hero */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 90% at 50% 0%, #101c38 0%, var(--bg) 62%); }
.hero-in { position: relative; z-index: 3; padding-block: clamp(72px, 11vw, 150px) clamp(220px, 26vw, 320px); }
.hero-copy { max-width: 720px; }
.hero-kicker { display: flex; align-items: center; gap: 10px; color: var(--gold); font-size: .85rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.4em; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(255, 194, 51, .6); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 11px rgba(255, 194, 51, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 194, 51, 0); } }
.hero-title { font-size: clamp(2.3rem, 5.6vw, 4.1rem); font-weight: 800; margin-bottom: .4em; }
.hero-sub { display: block; font-size: .62em; font-weight: 700; color: var(--muted); margin-top: .35em; }
.hero-lede { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted); max-width: 56ch; margin-bottom: 1.8em; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; padding: 0; margin: 2.2em 0 0; color: var(--muted); font-size: .88rem; }
.hero-trust li { display: flex; align-items: center; gap: 7px; }
.hero-trust .icon { color: var(--gold); }

.grad-text {
	background: var(--grad);
	background-size: 220% 100%;
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
	animation: grad-pan 7s ease-in-out infinite alternate;
}
@keyframes grad-pan { to { background-position: 100% 0; } }

/* Neon sign text */
.neon-text {
	color: #fff;
	text-shadow:
		0 0 6px rgba(255, 255, 255, .65),
		0 0 18px rgba(39, 224, 255, .85),
		0 0 42px rgba(39, 224, 255, .6),
		0 0 80px rgba(123, 43, 255, .5);
}
[data-neon] { animation: neon-flicker 9s linear infinite; }
@keyframes neon-flicker {
	0%, 6.9%, 8.2%, 54.9%, 56.2%, 100% { opacity: 1; }
	7%, 8%, 55%, 56% { opacity: .55; text-shadow: none; }
}

/* Sky: stars + searchlight beams */
.hero-sky { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.stars { position: absolute; inset: 0; background-repeat: repeat; opacity: .8; }
.stars-a {
	background-image: radial-gradient(1.4px 1.4px at 22px 34px, #fff, transparent),
		radial-gradient(1.2px 1.2px at 120px 80px, #cfe9ff, transparent),
		radial-gradient(1.6px 1.6px at 220px 150px, #fff, transparent),
		radial-gradient(1px 1px at 310px 40px, #ffe9b8, transparent);
	background-size: 380px 240px;
	animation: twinkle 5s ease-in-out infinite alternate;
}
.stars-b {
	background-image: radial-gradient(1.2px 1.2px at 60px 120px, #fff, transparent),
		radial-gradient(1px 1px at 180px 30px, #b9f3ff, transparent),
		radial-gradient(1.5px 1.5px at 280px 200px, #fff, transparent);
	background-size: 420px 260px;
	animation: twinkle 7s ease-in-out infinite alternate-reverse;
}
@keyframes twinkle { from { opacity: .35; } to { opacity: .9; } }
.beam {
	position: absolute; bottom: -8%; width: 130px; height: 130%;
	background: linear-gradient(to top, rgba(255, 214, 92, .16), transparent 75%);
	clip-path: polygon(42% 100%, 58% 100%, 100% 0, 0 0);
	transform-origin: bottom center;
}
.beam-l { left: 12%; animation: sweep 11s ease-in-out infinite alternate; }
.beam-r { right: 14%; animation: sweep 13s ease-in-out infinite alternate-reverse; }
@keyframes sweep { from { transform: rotate(-24deg); } to { transform: rotate(24deg); } }

/* Skyline SVG */
.skyline { position: absolute; bottom: -2px; left: 0; width: 100%; height: auto; min-height: 180px; z-index: 2; filter: drop-shadow(0 0 14px rgba(39, 224, 255, .35)); }
.skyline .draw { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: draw 2.6s ease-out forwards; }
.skyline .d1 { animation-delay: .15s; }
.skyline .d2 { animation-delay: .5s; }
.skyline .d3 { animation-delay: .9s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.skyline .sphere { stroke-dasharray: 390; stroke-dashoffset: 390; animation: draw 2.4s .7s ease-out forwards; }
.pyr-beam { animation: beam-glow 4s ease-in-out infinite alternate; transform-origin: 700px 124px; }
@keyframes beam-glow { from { opacity: .18; } to { opacity: .5; } }
.sphere-fill { animation: sphere-hue 9s linear infinite; }
@keyframes sphere-hue { 50% { opacity: .42; } }

/* ----------------------------------------------------------- Marquee */
.marquee-band { padding-block: 34px 44px; border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.marquee-label { color: var(--muted); font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; text-align: center; margin-bottom: 22px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; list-style: none; margin: 0; padding: 0; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.wm { white-space: nowrap; font-weight: 700; font-size: 1.18rem; color: #c7d2e6; opacity: .85; letter-spacing: .02em; }
.wm-1 { font-style: italic; color: var(--gold); }
.wm-2 { text-transform: uppercase; letter-spacing: .18em; font-size: .98rem; }
.wm-3 { color: var(--cyan); font-weight: 400; }
.wm-4 { font-weight: 800; }
.wm-5 { color: var(--magenta); letter-spacing: .06em; }
.wm-6 { text-transform: uppercase; font-size: 1rem; border: 1.5px solid var(--line); padding: 4px 14px; border-radius: 6px; }

/* ------------------------------------------------------------- Stats */
.stats-band { background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; padding-block: clamp(40px, 6vw, 70px); }
.stat { text-align: center; padding: 26px 16px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.stat-num { display: block; font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted); font-size: .88rem; }

/* -------------------------------------------------- Section headings */
.eyebrow { color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; margin-bottom: .9em; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; max-width: 26ch; margin-bottom: 1.4em; }

/* ---------------------------------------------------------- Services */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.svc-card {
	position: relative; display: block; padding: 30px 26px;
	background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
	color: var(--text); overflow: hidden;
	transition: transform .25s, border-color .25s, box-shadow .3s;
}
.svc-card::before {
	content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
	background: var(--grad);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor; mask-composite: exclude;
	opacity: 0; transition: opacity .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: var(--text); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
	display: inline-flex; padding: 13px; border-radius: 13px; margin-bottom: 18px;
	color: var(--gold); background: rgba(255, 194, 51, .09); border: 1px solid rgba(255, 194, 51, .22);
	transition: transform .3s;
}
.svc-card:hover .svc-icon { transform: scale(1.08) rotate(-4deg); }
.svc-card h3 { font-size: 1.18rem; }
.svc-card p { color: var(--muted); font-size: .94rem; margin-bottom: 1.4em; }
.svc-more { display: inline-flex; align-items: center; gap: 6px; color: var(--cyan); font-weight: 600; font-size: .9rem; }
.svc-card:hover .svc-more { color: var(--gold); }

/* -------------------------------------------------------------- Matt */
.matt-cols { align-items: center; }
.matt-photo { text-align: center; }
.photo-frame {
	width: 200px; height: 200px; margin: 0 auto 18px; border-radius: 50%; padding: 5px;
	background: var(--grad); animation: spin-slow 14s linear infinite;
}
.photo-frame img { border-radius: 50%; display: block; width: 100%; height: 100%; object-fit: cover; animation: spin-slow 14s linear infinite reverse; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.matt-name { font-weight: 800; font-size: 1.25rem; margin-bottom: .15em; }
.matt-role { color: var(--muted); font-size: .9rem; margin-bottom: .8em; }
.matt-li { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .92rem; }
@font-face {
	font-family: "Caveat";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/caveat-var-latin.woff2") format("woff2");
}
/* Understated pen-on-paper signature — no neon, no glow. */
.signature {
	font-family: "Caveat", cursive;
	font-size: 2.4rem; font-weight: 600; line-height: 1.2;
	margin-top: .4em; transform: rotate(-1.5deg); display: inline-block;
	color: var(--text); opacity: .92;
}

/* --------------------------------------------------------- Portfolio */
.folio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-bottom: 34px; }
.folio-card {
	position: relative; display: block; border-radius: var(--radius); overflow: hidden;
	border: 1px solid var(--line); background: var(--panel); aspect-ratio: 4 / 3;
	transition: transform .3s, box-shadow .3s, border-color .3s;
}
.folio-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s ease, filter .3s; filter: saturate(.9); }
.folio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(39, 224, 255, .4); }
.folio-card:hover img { transform: scale(1.06); filter: saturate(1.05); }
.folio-name {
	position: absolute; inset: auto 0 0; padding: 36px 20px 16px;
	background: linear-gradient(transparent, rgba(5, 8, 16, .92) 55%);
	color: #fff; font-weight: 700; display: flex; flex-direction: column; gap: 2px;
}
.folio-name em { font-style: normal; font-weight: 600; font-size: .82rem; color: var(--cyan); display: inline-flex; align-items: center; gap: 6px; opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s; }
.folio-card:hover .folio-name em { opacity: 1; transform: none; }
.folio-shot { margin: 0 0 1.6rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }

/* ----------------------------------------------------------- Process */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
.step { position: relative; padding: 28px 22px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.step::after {
	content: ""; position: absolute; top: 50%; right: -22px; width: 22px; height: 2px;
	background: linear-gradient(90deg, var(--gold), transparent);
}
.step:last-child::after { display: none; }
.step-num { font-size: 2.2rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ------------------------------------------------------ Testimonials */
/* Grid-stacking: every slide occupies the same cell, so the slider is
   always exactly as tall as its tallest slide — no jumps, no clipping. */
.testi-slider { display: grid; max-width: 860px; margin-bottom: 16px; }
.testi-slide {
	position: relative; grid-area: 1 / 1; margin: 0; padding: 38px 40px 30px;
	background: linear-gradient(165deg, var(--panel-2), var(--panel) 60%);
	border: 1px solid var(--line); border-radius: var(--radius);
	opacity: 0; transform: translateY(16px) scale(.985);
	transition: opacity .55s ease, transform .55s ease, visibility .55s;
	visibility: hidden; display: flex; flex-direction: column;
}
.testi-slide::before {
	content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
	background: var(--grad); opacity: .55;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor; mask-composite: exclude;
	pointer-events: none;
}
.testi-slide.is-active { opacity: 1; transform: none; visibility: visible; }
.testi-slide .icon-quote {
	color: var(--gold); flex: none; margin-bottom: 16px;
	filter: drop-shadow(0 0 10px rgba(255, 194, 51, .45));
}
.testi-slide p { font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.75; margin-bottom: 1.3em; }
.testi-who { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .94rem; flex-wrap: wrap; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.testi-who strong { color: var(--text); }
.testi-stars { color: var(--gold); letter-spacing: 3px; text-shadow: 0 0 10px rgba(255, 194, 51, .5); }
.testi-dots { grid-area: 2 / 1; display: flex; gap: 9px; padding: 20px 6px 0; }
.testi-dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; padding: 0; background: var(--line); cursor: pointer; transition: background .3s, width .3s; }
.testi-dots button:hover { background: var(--muted); }
.testi-dots button.is-active { background: linear-gradient(90deg, var(--gold), var(--gold-2)); width: 30px; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testi-card { margin: 0; padding: 26px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.testi-card .icon-quote { color: var(--gold); }

/* ----------------------------------------------------------- Pricing */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; align-items: stretch; margin-bottom: 26px; }
.price-card {
	position: relative; padding: 34px 28px; display: flex; flex-direction: column; gap: 6px;
	background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
	transition: transform .25s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card h3 { font-size: 1.05rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.price { font-size: 2.3rem; font-weight: 800; margin-bottom: .6em; }
.price sup { font-size: .5em; vertical-align: super; }
.price span { display: block; font-size: .85rem; font-weight: 400; color: var(--muted); }
.price-card .iconlist { flex: 1; }
.price-featured { border-color: rgba(255, 194, 51, .55); background: linear-gradient(180deg, rgba(255, 194, 51, .07), var(--panel) 45%); box-shadow: 0 10px 44px rgba(255, 178, 24, .14); }
.price-badge {
	position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
	background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #181000;
	font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
	padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card .btn { justify-content: center; }

/* -------------------------------------------------------------- Blog */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.post-grid-archive { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); margin-bottom: 40px; }
.post-card { padding: 28px 26px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; transition: transform .25s, border-color .25s; }
.post-card:hover { transform: translateY(-4px); border-color: rgba(39, 224, 255, .35); }
.post-date { color: var(--muted); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .7em; }
.post-card h2, .post-card h3 { font-size: 1.12rem; }
.post-card h2 a, .post-card h3 a { color: var(--text); }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--gold); }
.post-card p { color: var(--muted); font-size: .93rem; flex: 1; }
.post-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem; }
.post-meta { color: var(--muted); font-size: .92rem; }
.pagination-nav .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagination-nav .page-numbers { padding: 8px 15px; border: 1px solid var(--line); border-radius: 10px; color: var(--text); }
.pagination-nav .page-numbers.current { background: var(--gold); color: #181000; border-color: var(--gold); font-weight: 700; }

/* --------------------------------------------------- Page scaffolding */
.page-hero { background: radial-gradient(100% 130% at 50% -30%, #14223f 0%, var(--bg) 70%); border-bottom: 1px solid var(--line); padding-block: clamp(46px, 7vw, 84px); }
.page-title { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; margin-bottom: .25em; }
.page-lede { color: var(--muted); font-size: 1.08rem; max-width: 62ch; }
.crumbs { font-size: .84rem; color: var(--muted); margin-bottom: 1em; }
.crumbs span[aria-hidden] { margin-inline: 6px; opacity: .5; }
.prose { padding-block: clamp(34px, 5vw, 56px); }
.prose h2 { font-size: 1.6rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; color: var(--gold); }
.prose img { border-radius: 12px; }
.prose li { margin-bottom: .4em; }
.post-cta { padding-bottom: clamp(40px, 6vw, 64px); }

/* ----------------------------------- Legacy builder content (shim) */
.content-section { padding-block: clamp(40px, 6vw, 72px); }
.content-section:nth-of-type(even) { background: var(--bg-2); }
/* Builder elements that sit outside any [av_section] still need page gutters. */
.builder-content > :not(.content-section) { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.builder-content > .textblock, .builder-content > .shim-heading, .builder-content > .shim-subheading { padding-block: 10px; }
.builder-content > :first-child:not(.content-section) { padding-top: clamp(34px, 5vw, 56px); }
.builder-content > :last-child:not(.content-section) { padding-bottom: clamp(34px, 5vw, 56px); }
/* Breathing room between accordion stacks and whatever follows them. */
.builder-content > .accordion { margin-inline: auto; margin-bottom: clamp(48px, 7vw, 88px); }
.acc-item summary { scroll-margin-top: 90px; }
/* Forms rendered at full page width read as "stretched" — cap them. */
.builder-content .wpcf7, .prose .wpcf7 { max-width: 680px; }
/* Radio and checkbox groups stack vertically with comfortable tap targets. */
.wpcf7-radio, .wpcf7-checkbox { display: flex; flex-direction: column; gap: 10px; }
.wpcf7-radio .wpcf7-list-item, .wpcf7-checkbox .wpcf7-list-item { margin: 0; }
.wpcf7-radio label, .wpcf7-checkbox label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.wpcf7-radio input, .wpcf7-checkbox input { width: auto; margin-top: 4px; accent-color: var(--gold); }
.cols { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; }
.cols > :not(.col) { width: 100%; }
.col { min-width: 0; }
.col-full { flex: 1 1 100%; }
.col-1-2 { flex: 1 1 400px; }
.col-1-3 { flex: 1 1 260px; }
.col-2-3 { flex: 2 1 480px; }
.col-1-4 { flex: 1 1 200px; }
.col-3-4 { flex: 3 1 500px; }
.col-1-5 { flex: 1 1 120px; }
.col-2-5 { flex: 2 1 280px; }
.col-3-5 { flex: 3 1 420px; }
.col-4-5 { flex: 4 1 520px; }
.shim-heading { margin-top: .4em; }
.shim-subheading { color: var(--muted); }
.textblock { font-size: 1rem; }
.textblock a { font-weight: 600; }
.shim-image { margin: 0; }
.shim-image img { border-radius: 12px; }
.is-builder h1, .is-builder h2 { letter-spacing: -.015em; }

.iconlist { list-style: none; padding: 0; margin: 0 0 1.2em; display: flex; flex-direction: column; gap: 10px; }
.iconlist li { display: flex; gap: 11px; align-items: flex-start; }
.iconlist .icon-check { color: var(--gold); margin-top: 3px; flex: none; }
.iconlist p { margin: 0; }

.accordion { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.acc-item { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.acc-item summary { cursor: pointer; padding: 18px 22px; font-weight: 700; list-style: none; position: relative; padding-right: 50px; }
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.4rem; font-weight: 400; transition: transform .25s; }
.acc-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.acc-item summary:hover { color: var(--gold); }
.acc-body { padding: 0 22px 18px; color: var(--muted); }

.promobox { padding: 30px 28px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(255, 194, 51, .1), rgba(123, 43, 255, .1)); border: 1px solid rgba(255, 194, 51, .3); }
.promobox h2 { font-size: 1.4rem; }
.promobox-alt { margin: 1em 0 0; font-size: .9rem; color: var(--muted); }
.map-card { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; padding: 26px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1.5em; }
.map-card .icon-map { color: var(--gold); }
.team-card { text-align: center; padding: 24px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.team-card img { border-radius: 50%; width: 140px; height: 140px; object-fit: cover; }

/* -------------------------------------------------------------- Forms */
input[type="text"], input[type="email"], input[type="search"], input[type="tel"], input[type="url"], textarea, select {
	width: 100%; padding: 13px 16px; border-radius: 12px;
	background: var(--panel); border: 1px solid var(--line); color: var(--text);
	font: inherit; transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255, 194, 51, .18); }
textarea { min-height: 150px; resize: vertical; }
input[type="submit"], .wpcf7-submit {
	background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #181000;
	border: 0; border-radius: 999px; padding: .85em 2em; font-weight: 700; font-size: 1rem;
	cursor: pointer; transition: transform .2s, box-shadow .25s;
}
input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255, 178, 24, .45); }
.wpcf7-not-valid-tip { color: var(--magenta); font-size: .85rem; }
.wpcf7 form .wpcf7-response-output { border-radius: 12px; padding: 14px 18px; margin: 1.4em 0 0; border-color: var(--gold); }
.wpcf7 form.sent .wpcf7-response-output { border-color: #3ddc84; }
/* Honeypot field — hidden from humans, visible to bots. */
.lvwd-hp-wrap { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.search-form { display: flex; gap: 10px; max-width: 460px; }
.search-404 { margin-top: 30px; display: flex; justify-content: center; }

/* ------------------------------------------------------------ Footer */
.site-footer { position: relative; background: var(--bg-2); border-top: 1px solid var(--line); overflow: hidden; }
.footer-glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 720px; height: 280px; background: radial-gradient(50% 50% at 50% 50%, rgba(255, 178, 24, .14), transparent 70%); pointer-events: none; }
.footer-cta { text-align: center; padding-block: clamp(60px, 9vw, 100px) clamp(30px, 5vw, 50px); position: relative; }
.footer-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.footer-cta p { color: var(--muted); max-width: 52ch; margin-inline: auto; }
.footer-cta .btn-row { justify-content: center; margin-top: 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 36px; padding-block: clamp(40px, 6vw, 64px); border-top: 1px solid var(--line); position: relative; }
.footer-brand { font-weight: 800; font-size: 1.2rem; }
.footer-brand em { font-style: normal; color: var(--gold); display: block; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; }
.footer-col h3 { font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: var(--muted); font-size: .93rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: var(--muted); font-size: .93rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-block: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.footer-legal a { color: var(--muted); }

/* ------------------------------------------------------ 404 flourish */
.hero-404 { padding-block: clamp(80px, 12vw, 140px); }
.dice-404 { font-size: clamp(4rem, 11vw, 8rem); font-weight: 800; letter-spacing: .1em; margin-bottom: .1em; }

/* ------------------------------------------------- Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease var(--d, 0ms), transform .7s ease var(--d, 0ms); }
.reveal.is-in { opacity: 1; transform: none; }
/* No-JS safety: only hide when JS has tagged the document. */
html:not(.js) .reveal { opacity: 1; transform: none; }

/* -------------------------------------------------------- Responsive */
@media (max-width: 920px) {
	.header-cta { display: none; }
	.nav-toggle { display: block; }
	.site-nav {
		position: fixed; inset: 70px 0 auto; max-height: calc(100vh - 70px); overflow: auto;
		background: rgba(7, 11, 20, .97); backdrop-filter: blur(16px);
		border-bottom: 1px solid var(--line);
		display: none; padding: 18px 24px 28px; z-index: 99;
	}
	.nav-open .site-nav { display: block; }
	.nav-list { flex-direction: column; gap: 2px; }
	.nav-list a { padding: 13px 10px; font-size: 1.05rem; }
	.nav-list .sub-menu { display: block; position: static; border: 0; background: none; box-shadow: none; padding: 0 0 0 18px; min-width: 0; }
	.nav-list .sub-menu a { font-size: .95rem; color: var(--muted); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.step::after { display: none; }
}
@media (max-width: 560px) {
	.footer-grid { grid-template-columns: 1fr; }
	.hero-in { padding-bottom: 170px; }
	.skyline { min-height: 120px; }
	.testi-slide { padding: 26px 22px; }
}

/* ---------------------------------------------------- Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; }
	.skyline .draw, .skyline .sphere { stroke-dashoffset: 0; }
	.marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
	.marquee-track li[aria-hidden] { display: none; }
}

/* -------------------------------------------------------------- Print */
@media print {
	.site-header, .site-footer, .hero-sky, .skyline { display: none; }
	body { background: #fff; color: #111; }
}
