/*
Theme Name: Three Star Digitizing
Theme URI: https://threestardigitizing.com
Author: Three Star Digitizing
Author URI: https://threestardigitizing.com
Description: Custom landing-page theme for Three Star Digitizing — an embroidery digitizing, vector art, and custom patch studio. Royal blue & gold identity, built around a dimensional "three star" patch badge motif. Mobile-first and responsive.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: threestar
*/

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root{
	/* Brand colors */
	--royal-blue:        #1B2A63;
	--royal-blue-2:       #26397E;
	--royal-blue-light:  #3B54B4;
	--navy-deep:         #0D1638;
	--gold:              #D4AF37;
	--gold-bright:       #F3CC5C;
	--gold-deep:         #A7822A;
	--cream:             #F8F5EC;
	--ink:               #1B1D29;
	--slate:             #5B5F72;
	--slate-light:       #8B8FA3;
	--line:              #E7E3D6;
	--line-dark:         rgba(247,244,235,0.14);

	/* Type */
	--font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
	--font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	/* Layout */
	--container: 1180px;
	--radius-sm: 10px;
	--radius-md: 18px;
	--radius-lg: 28px;
	--shadow-soft: 0 20px 45px -20px rgba(13,22,56,0.35);
	--shadow-lift: 0 30px 60px -25px rgba(13,22,56,0.45);
	--ease: cubic-bezier(.22,.9,.32,1);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,p{ margin: 0; }

.container{
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.section{ padding: 96px 0; }
.section--tight{ padding: 72px 0; }
@media (max-width: 780px){
	.section{ padding: 64px 0; }
	.section--tight{ padding: 48px 0; }
}

.section-head{
	max-width: 620px;
	margin: 0 0 52px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin-bottom: 14px;
}
.eyebrow::before{
	content: "";
	width: 18px;
	height: 1px;
	background: var(--gold-deep);
}
.section-head.on-dark .eyebrow{ color: var(--gold-bright); }
.section-head.on-dark .eyebrow::before{ background: var(--gold-bright); }

h2.h-title{
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(28px, 3.6vw, 42px);
	line-height: 1.15;
	color: var(--royal-blue);
	letter-spacing: -0.01em;
}
.section-head.on-dark h2.h-title{ color: var(--cream); }
.section-head p{
	margin-top: 16px;
	color: var(--slate);
	font-size: 16.5px;
}
.section-head.on-dark p{ color: rgba(248,245,236,0.72); }

/* Stitch divider — a running-stitch rule used between sections instead of a plain hairline */
.stitch-divider{
	width: 100%;
	height: 2px;
	background-image: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 18px);
	opacity: 0.55;
}

/* Buttons */
.btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease;
	white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-gold{
	background: linear-gradient(160deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
	color: var(--navy-deep);
	box-shadow: 0 14px 30px -12px rgba(212,175,55,0.55);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(212,175,55,0.7); }
.btn-outline{
	border-color: rgba(27,42,99,0.25);
	color: var(--royal-blue);
	background: transparent;
}
.btn-outline:hover{ border-color: var(--royal-blue); background: rgba(27,42,99,0.05); }
.btn-outline.on-dark{ border-color: rgba(248,245,236,0.35); color: var(--cream); }
.btn-outline.on-dark:hover{ border-color: var(--gold-bright); background: rgba(255,255,255,0.06); }
.btn-sm{ padding: 10px 20px; font-size: 13.5px; }

.btn-link{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--royal-blue);
	border-bottom: 2px solid var(--gold);
	padding-bottom: 3px;
}
.btn-link svg{ width: 16px; height: 16px; transition: transform .2s ease; }
.btn-link:hover svg{ transform: translateX(4px); }

.visually-hidden{
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
	outline: 2px solid var(--gold);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Scroll-reveal (JS adds .in-view) */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view{ opacity: 1; transform: none; }

/* ==========================================================================
   3. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announce-bar{
	background: var(--navy-deep);
	color: var(--cream);
	font-family: var(--font-mono);
	font-size: 12.5px;
	letter-spacing: 0.04em;
	text-align: center;
	padding: 9px 16px;
}
.announce-bar strong{ color: var(--gold-bright); }

/* ==========================================================================
   4. HEADER / NAV
   ========================================================================== */
.site-header{
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(248,245,236,0.92);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .3s ease;
}
.site-header.is-scrolled{ box-shadow: 0 12px 30px -20px rgba(13,22,56,0.35); }

.site-header__inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 24px;
}

.brand{ display: flex; align-items: center; gap: 10px; }
.brand-mark{ width: 42px; height: 42px; flex-shrink: 0; }
.brand-word{ font-family: var(--font-display); line-height: 1; }
.brand-word .line1{ display:block; font-weight: 700; font-size: 19px; color: var(--royal-blue); letter-spacing: 0.01em; }
.brand-word .line2{ display:block; font-family: var(--font-mono); font-weight: 600; font-size: 10px; letter-spacing: 0.28em; color: var(--gold-deep); margin-top: 2px; }

.header-cta{ display: flex; align-items: center; gap: 14px; }
.header-cta .btn svg{ width: 16px; height: 16px; flex-shrink: 0; }

/* Menu button — always visible, opens the full-screen overlay menu below.
   The three bars morph into an X while the overlay is open. */
.nav-toggle{
	display: flex;
	align-items: center; gap: 10px;
	padding: 8px 16px 8px 14px;
	background: transparent; border: 1px solid var(--line);
	border-radius: 999px;
	transition: border-color .25s ease, background .25s ease;
}
.nav-toggle:hover{ border-color: var(--royal-blue); background: rgba(27,42,99,0.05); }
.nav-toggle__label{
	font-family: var(--font-mono); font-size: 12px; font-weight: 600;
	letter-spacing: 0.08em; text-transform: uppercase; color: var(--royal-blue);
}
.nav-toggle__bars{ width: 20px; height: 14px; position: relative; flex-shrink: 0; }
.nav-toggle__bars span, .nav-toggle__bars span::before, .nav-toggle__bars span::after{
	content:""; display:block; width: 20px; height: 2px; background: var(--royal-blue);
	position: absolute; left: 0; top: 6px;
	transition: transform .3s var(--ease), opacity .2s ease, top .3s var(--ease);
}
.nav-toggle__bars span::before{ top: -6px; }
.nav-toggle__bars span::after{ top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span{ background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span::before{ top: 0; transform: rotate(45deg); background: var(--gold-bright); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span::after{ top: 0; transform: rotate(-45deg); background: var(--gold-bright); }
.nav-toggle[aria-expanded="true"] .nav-toggle__label{ color: var(--gold-bright); }

/* Full-screen overlay menu. Uses an animated clip-path "curtain": opening
   reveals the panel progressively top → bottom, closing retracts it
   bottom → top — the top edge stays put, the visible area's bottom edge
   does the moving in both directions. */
.nav-overlay{
	position: fixed; inset: 0; z-index: 200;
	background: linear-gradient(165deg, var(--navy-deep) 0%, var(--royal-blue) 65%, var(--royal-blue-2) 100%);
	clip-path: inset(0 0 100% 0);
	transition: clip-path .7s cubic-bezier(0.83, 0, 0.17, 1);
	display: flex; flex-direction: column;
	overflow: hidden;
}
.nav-overlay.is-open{ clip-path: inset(0 0 0% 0); }
.nav-overlay__inner{
	flex: 1;
	display: flex; flex-direction: column;
	max-width: 1180px; width: 100%; margin: 0 auto;
	padding: 22px 24px 40px;
	opacity: 0; transform: translateY(14px);
	transition: opacity .5s ease .15s, transform .5s var(--ease) .15s;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.nav-overlay.is-open .nav-overlay__inner{ opacity: 1; transform: none; }

.nav-overlay__top{ display:flex; align-items:center; justify-content:space-between; padding: 6px 0 0; }
.nav-overlay__top .brand-word .line1{ color: var(--cream); }
.nav-overlay__top .brand-word .line2{ color: var(--gold-bright); }
.nav-overlay__close{
	width: 44px; height: 44px; border-radius: 50%;
	display:flex; align-items:center; justify-content:center;
	border: 1px solid rgba(248,245,236,0.25); color: var(--cream);
	transition: transform .25s ease, border-color .25s ease, color .25s ease;
}
.nav-overlay__close:hover{ transform: rotate(90deg); border-color: var(--gold-bright); color: var(--gold-bright); }
.nav-overlay__close svg{ width: 18px; height: 18px; }

.nav-overlay__body{
	flex: 1; display: flex; flex-wrap: wrap; align-items: center;
	gap: 40px; padding-top: 24px;
}
.nav-overlay__menu{ flex: 1 1 480px; }
.nav-overlay__menu li{ border-bottom: 1px solid rgba(248,245,236,0.12); }
.nav-overlay__menu li:first-child{ border-top: 1px solid rgba(248,245,236,0.12); }
.nav-overlay__menu > li > a{
	display: flex; align-items: center; gap: 16px;
	padding: 16px 4px;
	font-family: var(--font-display);
	font-size: clamp(28px, 5vw, 46px);
	font-weight: 600;
	color: var(--cream);
	transition: color .25s ease, padding-left .25s ease;
}
.nav-overlay__menu > li > a .idx{
	font-family: var(--font-mono); font-size: 13px; font-weight: 500;
	color: var(--gold-bright); opacity: .8;
}
.nav-overlay__menu > li > a:hover{ color: var(--gold-bright); padding-left: 14px; }
.nav-overlay__menu li.menu-item-has-children > a{ position: relative; }
.nav-overlay__menu li.menu-item-has-children > a::after{
	content: "+";
	margin-left: auto;
	font-family: var(--font-mono); font-size: 20px; font-weight: 400;
	color: var(--gold-bright);
	transition: transform .3s ease;
}
.nav-overlay__menu li.menu-item-has-children.is-open > a::after{ transform: rotate(135deg); }
.nav-overlay__menu .sub-menu{ display: none; padding: 0 0 14px 30px; }
.nav-overlay__menu li.menu-item-has-children.is-open .sub-menu{ display: block; }
.nav-overlay__menu .sub-menu a{
	display: block; padding: 8px 0;
	font-size: 15px; color: rgba(248,245,236,0.75);
}
.nav-overlay__menu .sub-menu a:hover{ color: var(--gold-bright); }

.nav-overlay__aside{
	flex: 1 1 280px;
	display: flex; flex-direction: column; gap: 18px;
	padding: 26px; border-radius: var(--radius-md);
	background: rgba(248,245,236,0.05);
	border: 1px solid rgba(248,245,236,0.12);
}
.nav-overlay__aside .contact-line{ display: flex; align-items: flex-start; gap: 10px; color: rgba(248,245,236,0.85); }
.nav-overlay__aside .contact-line svg{ width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; color: var(--gold-bright); }
.nav-overlay__aside .contact-line a{ color: rgba(248,245,236,0.85); }
.nav-overlay__aside .contact-line a:hover{ color: var(--gold-bright); }
.nav-overlay__aside .footer-social a{ border-color: rgba(248,245,236,0.25); color: var(--cream); }
.nav-overlay__aside .footer-social a:hover{ border-color: var(--gold-bright); color: var(--gold-bright); }
.nav-overlay__aside .btn{ width: 100%; text-align: center; justify-content: center; }

body.nav-open{ overflow: hidden; }

@media (max-width: 720px){
	.nav-overlay__inner{ padding: 18px 18px 28px; }
	.nav-overlay__body{ padding-top: 10px; gap: 24px; }
	.nav-overlay__menu > li > a{ font-size: clamp(26px, 9vw, 34px); padding: 13px 2px; }
	.header-cta .btn-outline{ display: none; }
	.nav-toggle__label{ display: none; }
	.nav-toggle{ padding: 10px; border-radius: 50%; }
}

/* ==========================================================================
   5. HERO
   ========================================================================== */
.hero{
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 150px 0 90px;
	background: linear-gradient(165deg, var(--navy-deep) 0%, var(--royal-blue) 55%, var(--royal-blue-2) 100%);
	color: var(--cream);
}
.hero__bg{ position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__blob{ position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; will-change: transform; }
.hero__blob--a{
	width: 560px; height: 560px; top: -14%; left: -10%;
	background: radial-gradient(circle, rgba(59,84,180,0.6), transparent 70%);
	animation: blob-drift-a 17s ease-in-out infinite;
}
.hero__blob--b{
	width: 440px; height: 440px; bottom: -16%; right: -8%;
	background: radial-gradient(circle, rgba(212,175,55,0.3), transparent 70%);
	animation: blob-drift-b 21s ease-in-out infinite;
}
@keyframes blob-drift-a{ 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(50px,36px) scale(1.08); } }
@keyframes blob-drift-b{ 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(-36px,-28px) scale(1.05); } }

.hero__stitchline{ position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__stitchline path{
	fill: none; stroke: rgba(212,175,55,0.32); stroke-width: 1.5; stroke-linecap: round;
	animation: stitch-move 7s linear infinite;
}
.hero__stitchline path:nth-child(2){ stroke: rgba(248,245,236,0.14); animation-duration: 9s; animation-direction: reverse; }
@keyframes stitch-move{ to{ stroke-dashoffset: -400; } }

.hero__vignette{
	position: absolute; inset: 0;
	background: radial-gradient(120% 90% at 50% 38%, transparent 40%, rgba(9,14,36,0.6) 100%);
}
.hero__bg::after{
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 30%), rgba(212,175,55,0.14), transparent 60%);
}

.hero__grid{
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.hero__content .eyebrow, .hero__eyebrow{ color: var(--gold-bright); }
.hero h1{
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.07;
	color: var(--cream);
	letter-spacing: -0.015em;
}
.hero h1 em{
	font-style: italic;
	color: var(--gold-bright);
	position: relative;
}
.hero__lede{
	margin-top: 22px;
	font-size: 17.5px;
	color: rgba(248,245,236,0.78);
	max-width: 480px;
}
.hero__actions{ display:flex; align-items:center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero__meta{
	display: flex; gap: 26px; margin-top: 44px; flex-wrap: wrap;
}
.hero__meta div{ display:flex; flex-direction:column; }
.hero__meta strong{
	font-family: var(--font-mono); font-size: 21px; color: var(--gold-bright); font-weight: 600;
}
.hero__meta span{ font-size: 12.5px; color: rgba(248,245,236,0.6); margin-top: 2px; }

/* Staggered "title card" reveal — each element fades/lifts in with its own
   delay (--wd), timed to finish roughly as the preloader hands off. */
.word-reveal{
	opacity: 0;
	transform: translateY(22px);
	animation: word-in .8s var(--ease) forwards;
	animation-delay: calc(2.3s + (var(--wd, 0) * 0.09s));
}
.hero h1 .word-reveal{ display: inline-block; }
@keyframes word-in{ to{ opacity: 1; transform: none; } }

.hero__scroll-cue{
	position: absolute; left: 50%; bottom: 28px; z-index: 2;
	transform: translateX(-50%);
	display: flex; flex-direction: column; align-items: center; gap: 10px;
	color: rgba(248,245,236,0.6);
	opacity: 0; animation: word-in .8s ease forwards; animation-delay: 3.2s;
	transition: color .25s ease;
}
.hero__scroll-cue:hover{ color: var(--gold-bright); }
.hero__scroll-cue-track{ position: relative; width: 1px; height: 38px; background: rgba(248,245,236,0.25); overflow: hidden; }
.hero__scroll-cue-dot{
	position: absolute; left: 50%; top: -6px; width: 5px; height: 5px; border-radius: 50%;
	background: var(--gold-bright); transform: translateX(-50%);
	animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop{ 0%{ top: -6px; opacity: 0; } 20%{ opacity: 1; } 100%{ top: 38px; opacity: 0; } }
.hero__scroll-cue-label{ font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; }

/* --- Hero visual: floating 3D tri-star patch badge --- */
.hero__visual{
	position: relative;
	display: flex; align-items: center; justify-content: center;
	min-height: 420px;
	perspective: 1200px;
}
.hero__visual-inner{
	position: relative;
	width: 100%;
	display: flex; align-items: center; justify-content: center;
}
.badge-stage{
	position: relative;
	width: min(380px, 82vw);
	transform-style: preserve-3d;
	animation: badge-float 6s ease-in-out infinite;
}
.badge-stage svg{
	filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45)) drop-shadow(0 0 46px rgba(212,175,55,0.22));
	transform: rotateY(-14deg) rotateX(6deg);
	transition: transform .4s var(--ease);
}
.hero__visual:hover .badge-stage svg{ transform: rotateY(-6deg) rotateX(2deg); }

@keyframes badge-float{
	0%, 100%{ transform: translateY(0) rotateZ(-2deg); }
	50%{ transform: translateY(-16px) rotateZ(1.5deg); }
}

.float-chip{
	position: absolute;
	display: flex; align-items: center; gap: 8px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 10px 14px;
	box-shadow: var(--shadow-soft);
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 600;
	color: var(--royal-blue);
	animation: chip-float 5s ease-in-out infinite;
}
.float-chip svg{ width:16px; height:16px; }
.chip--formats{ top: 8%; left: -4%; animation-delay: .3s; }
.chip--rating{ bottom: 10%; right: -2%; animation-delay: 1s; }
@keyframes chip-float{
	0%,100%{ transform: translateY(0); }
	50%{ transform: translateY(-10px); }
}

@media (max-width: 980px){
	.hero{ padding: 130px 0 100px; min-height: 100svh; }
	.hero__grid{ grid-template-columns: 1fr; }
	.hero__content{ order: 1; text-align: left; }
	.hero__visual{ order: 0; min-height: 340px; margin-bottom: 8px; }
	.hero__lede{ max-width: 100%; }
	.float-chip{ display: none; }
	.hero__scroll-cue{ display: none; }
}

/* ==========================================================================
   6. STATS STRIP
   ========================================================================== */
.stats-strip{
	background: var(--royal-blue);
	background-image: linear-gradient(120deg, var(--royal-blue) 0%, var(--royal-blue-2) 55%, var(--navy-deep) 100%);
	padding: 42px 0;
}
.stats-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}
.stat strong{
	display:block;
	font-family: var(--font-mono);
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 600;
	color: var(--gold-bright);
}
.stat span{
	display:block;
	margin-top: 6px;
	font-size: 12.5px;
	letter-spacing: 0.03em;
	color: rgba(248,245,236,0.75);
}
@media (max-width: 720px){
	.stats-grid{ grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}

/* ==========================================================================
   7. SERVICES
   ========================================================================== */
.services-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.service-card{
	display: block;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 30px 26px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: transparent; }
.service-icon{
	width: 60px; height: 60px;
	border-radius: 50%;
	display:flex; align-items:center; justify-content:center;
	background: radial-gradient(circle at 32% 28%, var(--royal-blue-light), var(--royal-blue) 60%, var(--navy-deep));
	box-shadow: inset 0 2px 4px rgba(255,255,255,0.25), inset 0 -6px 10px rgba(0,0,0,0.35), 0 12px 20px -10px rgba(13,22,56,0.5);
	margin-bottom: 20px;
	position: relative;
}
.service-icon::after{
	content:"";
	position:absolute; inset:2px;
	border-radius: 50%;
	border: 1px solid rgba(212,175,55,0.55);
}
.service-icon svg{ width: 26px; height: 26px; color: var(--gold-bright); position: relative; }
.service-card h3{
	font-family: var(--font-display);
	font-size: 19px; font-weight: 600;
	color: var(--royal-blue);
	margin-bottom: 10px;
}
.service-card p{ font-size: 14.5px; color: var(--slate); }

@media (max-width: 900px){ .services-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .services-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   8. ABOUT
   ========================================================================== */
.about-grid{
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 56px;
	align-items: center;
}
.about-art{ position: relative; }
.about-art svg{ width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(13,22,56,0.18)); }
.about-copy p{ color: var(--slate); margin-top: 16px; font-size: 15.5px; }
.about-copy .btn-link{ margin-top: 26px; }

@media (max-width: 900px){
	.about-grid{ grid-template-columns: 1fr; gap: 36px; }
	.about-art{ order: -1; max-width: 380px; margin: 0 auto; }
}

/* ==========================================================================
   9. WHY CHOOSE US
   ========================================================================== */
.why-us{ background: var(--navy-deep); position: relative; overflow: hidden; }
.why-us::before{
	content:""; position:absolute; inset:0;
	background-image: radial-gradient(circle at 85% 20%, rgba(212,175,55,0.12), transparent 55%);
}
.why-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	position: relative;
}
.why-item{
	display: flex; gap: 16px;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-sm);
	padding: 20px 22px;
}
.why-star{ flex-shrink: 0; width: 26px; height: 26px; color: var(--gold-bright); margin-top: 2px; }
.why-item h4{ font-family: var(--font-display); font-size: 16.5px; color: var(--cream); font-weight: 600; }
.why-item p{ font-size: 14px; color: rgba(248,245,236,0.68); margin-top: 6px; }

@media (max-width: 720px){ .why-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   10. PROCESS / HOW IT WORKS
   ========================================================================== */
.process-track{
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}
.process-track::before{
	content:"";
	position: absolute;
	top: 26px; left: 6%; right: 6%;
	height: 2px;
	background-image: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 18px);
	opacity: .6;
	z-index: 0;
}
.process-step{ position: relative; text-align: center; z-index: 1; }
.process-num{
	width: 52px; height: 52px; margin: 0 auto 16px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--gold);
	display:flex; align-items:center; justify-content:center;
	font-family: var(--font-mono); font-weight: 600; color: var(--royal-blue);
	box-shadow: var(--shadow-soft);
}
.process-step h4{ font-size: 14.5px; font-weight: 600; color: var(--royal-blue); }
.process-step p{ font-size: 13px; color: var(--slate); margin-top: 6px; }

@media (max-width: 900px){
	.process-track{ grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
	.process-track::before{ display: none; }
}
@media (max-width: 560px){
	.process-track{ grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   11. PRICING
   ========================================================================== */
.pricing-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.price-card{
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 32px 24px;
	display:flex; flex-direction:column;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.price-card.is-popular{ border-color: var(--gold); background: linear-gradient(180deg, #fff, #FFFBF0); }
.price-ribbon{
	position: absolute; top: -13px; left: 24px;
	background: linear-gradient(160deg, var(--gold-bright), var(--gold-deep));
	color: var(--navy-deep);
	font-family: var(--font-mono);
	font-size: 11px; font-weight: 700; letter-spacing: .05em;
	padding: 5px 12px; border-radius: 999px;
	box-shadow: 0 8px 16px -6px rgba(212,175,55,0.6);
}
.price-card h3{ font-family: var(--font-display); font-size: 18px; color: var(--royal-blue); font-weight: 600; }
.price-card .price-sub{ font-size: 13px; color: var(--slate); margin-top: 6px; }
.price-amount{
	font-family: var(--font-mono); font-weight: 600;
	font-size: 34px; color: var(--royal-blue);
	margin-top: 14px;
}
.price-amount small{ font-size: 14px; font-weight: 500; color: var(--slate); }
.price-note{ font-size: 12.5px; color: var(--slate-light); margin-top: 4px; }
.price-features{ margin-top: 20px; flex-grow: 1; }
.price-features li{ display:flex; align-items:center; gap: 8px; font-size: 13.5px; color: var(--slate); padding: 6px 0; }
.price-features svg{ width:15px; height:15px; color: var(--gold-deep); flex-shrink:0; }
.price-card .btn{ margin-top: 22px; width: 100%; }

@media (max-width: 980px){ .pricing-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .pricing-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   12. PORTFOLIO
   ========================================================================== */
.portfolio-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.portfolio-card{
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: linear-gradient(160deg, var(--royal-blue-2), var(--navy-deep));
	aspect-ratio: 1/1;
	display:flex; align-items:center; justify-content:center;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
	transform-style: preserve-3d;
	will-change: transform;
}
.portfolio-card:hover{ box-shadow: var(--shadow-lift); }
.portfolio-card svg{ width: 62%; filter: drop-shadow(0 14px 18px rgba(0,0,0,0.35)); }
.portfolio-card .tag{
	position: absolute; left: 14px; bottom: 12px;
	font-family: var(--font-mono); font-size: 11px; color: rgba(248,245,236,0.75);
	letter-spacing: .04em;
}
.portfolio-cta{ text-align:center; margin-top: 40px; }

@media (max-width: 900px){ .portfolio-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .portfolio-grid{ grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

/* Uploaded portfolio tiles — every image forced to the same square footprint
   (object-fit: cover crops/fills as needed) regardless of the original file's
   dimensions, so a mixed batch of uploads still lines up cleanly. Clicking
   opens the untouched original in the lightbox. */
.portfolio-item{ display: flex; flex-direction: column; }
.portfolio-item .tag{
	margin-top: 10px;
	font-family: var(--font-mono); font-size: 11.5px; color: var(--slate);
	letter-spacing: .02em;
}
.portfolio-media{
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: linear-gradient(160deg, var(--royal-blue-2), var(--navy-deep));
	border: 1px solid var(--line);
	cursor: zoom-in;
	transition: box-shadow .35s var(--ease);
}
.portfolio-media:hover, .portfolio-media:focus-visible{ box-shadow: var(--shadow-lift); outline: none; }
.portfolio-media img{
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform .5s var(--ease);
}
.portfolio-media:hover img{ transform: scale(1.06); }
.portfolio-media .portfolio-zoom{
	position: absolute; right: 12px; bottom: 12px;
	width: 34px; height: 34px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: rgba(13,22,56,0.72);
	color: var(--gold-bright);
	opacity: 0; transform: translateY(6px);
	transition: opacity .25s ease, transform .25s ease;
}
.portfolio-media .portfolio-zoom svg{ width: 16px; height: 16px; }
.portfolio-media:hover .portfolio-zoom, .portfolio-media:focus-visible .portfolio-zoom{ opacity: 1; transform: translateY(0); }
.portfolio-item.is-hidden{ display: none; }

.portfolio-admin-hint{
	text-align: center; margin-top: 26px;
	font-size: 13.5px; color: var(--slate);
}
.portfolio-admin-hint a{ color: var(--royal-blue); font-weight: 600; }

/* ==========================================================================
   13. TESTIMONIALS
   ========================================================================== */
.testi-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.testi-card{
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 28px 26px;
}
.testi-stars{ display:flex; gap:4px; margin-bottom: 14px; }
.testi-stars svg{ width:16px; height:16px; color: var(--gold); }
.testi-card p{ font-size: 15px; color: var(--ink); line-height: 1.65; }
.testi-who{ margin-top: 18px; font-family: var(--font-mono); font-size: 12.5px; color: var(--slate); }

@media (max-width: 900px){ .testi-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   14. CTA BANNER
   ========================================================================== */
.cta-banner{
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	padding: 64px 48px;
	background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-2) 50%, var(--navy-deep) 100%);
	display: flex; align-items:center; justify-content: space-between; gap: 32px;
	flex-wrap: wrap;
}
.cta-banner::before{
	content:"";
	position:absolute; inset:0;
	background-image: radial-gradient(circle at 90% 10%, rgba(212,175,55,0.25), transparent 55%);
}
.cta-banner h2{
	font-family: var(--font-display); font-weight:600;
	font-size: clamp(24px,3vw,34px); color: var(--cream); max-width: 520px; position:relative;
}
.cta-banner p{ color: rgba(248,245,236,0.75); margin-top: 10px; position: relative; }
.cta-banner .btn-gold{ position: relative; }

@media (max-width: 720px){ .cta-banner{ padding: 44px 28px; text-align:center; justify-content:center; } }

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.site-footer{
	background: var(--navy-deep);
	color: rgba(248,245,236,0.75);
	padding-top: 72px;
}
.footer-grid{
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
	gap: 32px;
	padding-bottom: 48px;
}
.footer-brand .brand-word .line1{ color: var(--cream); }
.footer-brand p{ margin-top: 16px; font-size: 14px; max-width: 280px; }
.footer-social{ display:flex; gap:10px; margin-top: 20px; }
.footer-social a{
	width: 36px; height: 36px; border-radius: 50%;
	border: 1px solid var(--line-dark);
	display:flex; align-items:center; justify-content:center;
	transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover{ background: rgba(212,175,55,0.15); border-color: var(--gold); }
.footer-social svg{ width:16px; height:16px; }

.footer-col h5{
	font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
	color: var(--gold-bright); margin-bottom: 18px; font-weight: 600;
}
.footer-col ul li{ margin-bottom: 11px; }
.footer-col ul li a{ font-size: 14px; transition: color .2s ease; }
.footer-col ul li a:hover{ color: var(--gold-bright); }
.footer-col .contact-line{ display:flex; gap:10px; align-items:flex-start; font-size:14px; margin-bottom: 12px; }
.footer-col .contact-line svg{ width:16px; height:16px; margin-top:2px; color: var(--gold-bright); flex-shrink:0; }

.footer-bottom{
	border-top: 1px solid var(--line-dark);
	padding: 22px 0;
	display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
	font-size: 13px;
}
.payment-badges{ display:flex; gap:8px; flex-wrap:wrap; }
.payment-badges span{
	font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em;
	border: 1px solid var(--line-dark); border-radius: 6px; padding: 4px 8px; color: rgba(248,245,236,0.6);
}
.footer-legal a{ margin-left: 16px; }

@media (max-width: 900px){
	.footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
	.footer-grid{ grid-template-columns: 1fr; }
	.footer-bottom{ flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   16. BLOG (index.php fallback loop)
   ========================================================================== */
.blog-loop{ display:grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.blog-loop.blog-loop--home{ grid-template-columns: repeat(4,1fr); gap: 24px; }
.blog-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); overflow:hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.blog-loop--home .blog-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.blog-card .thumb{ aspect-ratio: 16/10; background: linear-gradient(160deg,var(--royal-blue-2),var(--navy-deep)); }
.blog-card .body{ padding: 22px 24px; }
.blog-card h3{ font-family: var(--font-display); color: var(--royal-blue); font-size: 19px; }
.blog-loop--home .blog-card h3{ font-size: 17px; line-height: 1.3; }
.blog-card p{ color: var(--slate); font-size: 14px; margin-top: 10px; }
.blog-cta{ text-align:center; margin-top: 40px; }
@media (max-width: 980px){ .blog-loop.blog-loop--home{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 720px){ .blog-loop{ grid-template-columns: 1fr; } }

/* ==========================================================================
   16b. INTERIOR PAGE HERO (Portfolio / Contact / Service pages)
   ========================================================================== */
.page-hero{
	background: linear-gradient(180deg, var(--cream) 0%, #EFEBDD 100%);
	padding: 60px 0 52px;
	text-align: center;
}
.page-hero .eyebrow{ justify-content: center; }
.page-hero h1{
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(30px, 4.4vw, 46px);
	color: var(--royal-blue);
	letter-spacing: -0.01em;
}
.page-hero p{
	margin: 14px auto 0;
	max-width: 560px;
	color: var(--slate);
	font-size: 16.5px;
}
.breadcrumb{
	display: flex; justify-content: center; align-items: center; gap: 8px;
	font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
	color: var(--slate-light); margin-bottom: 18px;
}
.breadcrumb a{ color: var(--slate); }
.breadcrumb a:hover{ color: var(--royal-blue); }
.back-link{
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-mono); font-size: 12.5px; color: var(--slate);
	margin-bottom: 18px;
}
.back-link:hover{ color: var(--royal-blue); }
.back-link svg{ width: 14px; height: 14px; transform: rotate(180deg); }

/* ==========================================================================
   16c. PORTFOLIO FILTER BAR
   ========================================================================== */
.filter-bar{
	display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
	margin-bottom: 40px;
}
.filter-btn{
	padding: 9px 20px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	font-size: 13.5px; font-weight: 600; color: var(--slate);
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.filter-btn.is-active, .filter-btn:hover{
	background: var(--royal-blue); border-color: var(--royal-blue); color: #fff;
}
.portfolio-card.is-hidden{ display: none; }

/* ==========================================================================
   16d. CONTACT PAGE
   ========================================================================== */
.contact-grid{
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: start;
}
.contact-form{
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 36px;
	box-shadow: var(--shadow-soft);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field{ margin-bottom: 18px; }
.form-field label{
	display: block; font-size: 13px; font-weight: 600; color: var(--royal-blue); margin-bottom: 7px;
}
.form-field input, .form-field select, .form-field textarea{
	width: 100%;
	padding: 13px 15px;
	border-radius: 10px;
	border: 1px solid var(--line);
	font-family: var(--font-body);
	font-size: 14.5px;
	color: var(--ink);
	background: #FBFAF6;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
	outline: none; border-color: var(--royal-blue); box-shadow: 0 0 0 3px rgba(27,42,99,0.12);
}
.form-field textarea{ resize: vertical; min-height: 130px; }
.hp-field{ position: absolute; left: -9999px; opacity: 0; }

.form-alert{ padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 22px; font-weight: 500; }
.form-alert.success{ background: #EAF6EE; color: #1E6B3A; border: 1px solid #BFE6CC; }
.form-alert.error{ background: #FCEAEA; color: #9C2B2B; border: 1px solid #F3C6C6; }

.contact-info{ display: flex; flex-direction: column; gap: 18px; }
.info-card{
	background: var(--navy-deep);
	border-radius: var(--radius-md);
	padding: 30px;
	color: rgba(248,245,236,0.85);
}
.info-card h3{ font-family: var(--font-display); color: #fff; font-size: 19px; margin-bottom: 18px; }
.info-card .contact-line{ display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.info-card .contact-line svg{ width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; color: var(--gold-bright); }
.info-card .contact-line a{ color: #fff; }
.info-card .footer-social{ margin-top: 4px; }

.faq-list{ margin-top: 16px; }
.faq-item{
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	padding: 4px 22px; margin-bottom: 12px;
}
.faq-item summary{
	padding: 16px 0; cursor: pointer; font-weight: 600; color: var(--royal-blue);
	list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
	content: "+"; font-size: 20px; color: var(--gold-deep); flex-shrink: 0; transition: transform .2s ease;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ padding: 0 0 18px; color: var(--slate); font-size: 14.5px; }

@media (max-width: 900px){
	.contact-grid{ grid-template-columns: 1fr; }
	.form-row{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   16e. SERVICE PAGES
   ========================================================================== */
.spec-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
	margin-top: 8px;
}
.spec-chip{
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	padding: 18px; text-align: center;
}
.spec-chip strong{ display: block; font-family: var(--font-mono); color: var(--royal-blue); font-size: 15px; }
.spec-chip span{ display: block; margin-top: 5px; font-size: 12px; color: var(--slate); }

.service-split{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 10px; }
.service-list li{
	display: flex; gap: 10px; align-items: flex-start; padding: 10px 0;
	font-size: 14.5px; color: var(--slate); border-bottom: 1px dashed var(--line);
}
.service-list li svg{ width: 16px; height: 16px; color: var(--gold-deep); margin-top: 3px; flex-shrink: 0; }

.price-callout{
	display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
	background: #fff; border: 1px solid var(--gold); border-radius: var(--radius-md);
	padding: 26px 30px; margin-top: 24px;
}
.price-callout strong{ font-family: var(--font-mono); font-size: 26px; color: var(--royal-blue); }
.price-callout span{ display: block; font-size: 12.5px; color: var(--slate); margin-top: 4px; }

@media (max-width: 780px){ .service-split{ grid-template-columns: 1fr; } }

/* ==========================================================================
   16f. PRELOADER
   ========================================================================== */
.preloader{
	position: fixed; inset: 0; z-index: 9999;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
	background: radial-gradient(120% 120% at 50% 30%, var(--royal-blue-2), var(--navy-deep) 70%);
	opacity: 1;
	transition: opacity .5s ease;
}
.preloader.is-hidden{ opacity: 0; pointer-events: none; }
.preloader__stage{
	position: relative; width: 170px; height: 170px;
	display: flex; align-items: center; justify-content: center;
}
.preloader__ring{
	position: absolute; inset: 0; width: 100%; height: 100%;
	transform: rotate(-90deg);
	transition: opacity .3s ease;
}
.ring-track{ fill: none; stroke: rgba(255,255,255,0.14); stroke-width: 3; }
.ring-fill{
	fill: none; stroke: var(--gold-bright); stroke-width: 3; stroke-linecap: round;
	stroke-dasharray: 528; stroke-dashoffset: 528;
}
.preloader__badge{
	position: relative; width: 112px;
	filter: drop-shadow(0 20px 30px rgba(0,0,0,0.45));
	animation: preloader-bob 2.4s ease-in-out infinite;
}
.preloader__badge svg{ width: 100%; height: auto; display: block; }
.preloader__badge.is-flying{ animation: none; transition: transform .8s cubic-bezier(.22,.9,.32,1); }
.preloader__badge.is-flying-mobile{
	animation: none;
	transition: transform .55s ease, opacity .55s ease;
	transform: scale(.35);
	opacity: 0;
}
@keyframes preloader-bob{
	0%, 100%{ transform: translateY(0); }
	50%{ transform: translateY(-9px); }
}
.preloader__pct{
	font-family: var(--font-mono); color: var(--cream); font-size: 12.5px;
	letter-spacing: .16em; opacity: .75; transition: opacity .3s ease;
}
.preloader.is-exiting .preloader__ring,
.preloader.is-exiting .preloader__pct{ opacity: 0; }

/* ==========================================================================
   16g. PORTFOLIO LIGHTBOX
   ========================================================================== */
.ts-lightbox{
	position: fixed; inset: 0; z-index: 9500;
	display: flex; align-items: center; justify-content: center;
	padding: 60px 24px;
	background: rgba(9,14,36,0.92);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	opacity: 0; visibility: hidden;
	transition: opacity .25s ease, visibility 0s linear .25s;
}
.ts-lightbox.is-open{ opacity: 1; visibility: visible; transition: opacity .25s ease; }
.ts-lightbox__figure{
	position: relative;
	max-width: min(1100px, 92vw);
	max-height: 86vh;
	display: flex; flex-direction: column; align-items: center;
	transform: scale(.96);
	transition: transform .3s var(--ease);
}
.ts-lightbox.is-open .ts-lightbox__figure{ transform: scale(1); }
.ts-lightbox img{
	max-width: 100%; max-height: 78vh;
	border-radius: var(--radius-sm);
	box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
	display: block;
	background: #0D1638;
}
.ts-lightbox__caption{
	margin-top: 16px;
	font-family: var(--font-mono);
	font-size: 12.5px; letter-spacing: .04em;
	color: rgba(248,245,236,0.8);
	text-align: center;
}
.ts-lightbox__close{
	position: fixed; top: 24px; right: 24px;
	width: 42px; height: 42px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--gold-bright); color: var(--navy-deep);
	box-shadow: 0 10px 24px -8px rgba(0,0,0,0.5);
	transition: transform .2s ease;
}
.ts-lightbox__close:hover{ transform: scale(1.08); }
.ts-lightbox__close svg{ width: 18px; height: 18px; }
.ts-lightbox__nav{
	position: fixed; top: 50%; transform: translateY(-50%);
	width: 46px; height: 46px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.25);
	color: #fff;
	transition: background .2s ease, border-color .2s ease;
}
.ts-lightbox__nav:hover{ background: rgba(255,255,255,0.2); border-color: var(--gold-bright); }
.ts-lightbox__nav svg{ width: 20px; height: 20px; }
.ts-lightbox__prev{ left: 24px; }
.ts-lightbox__next{ right: 24px; }

@media (max-width: 640px){
	.ts-lightbox__nav{ width: 38px; height: 38px; }
	.ts-lightbox__prev{ left: 10px; }
	.ts-lightbox__next{ right: 10px; }
	.ts-lightbox__close{ top: 10px; right: 10px; }
}

/* ==========================================================================
   17. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce){
	html{ scroll-behavior: auto; }
	.badge-stage, .float-chip, .preloader__badge{ animation: none !important; }
	.reveal{ transition: none; opacity: 1; transform: none; }
	.word-reveal{ animation: none !important; opacity: 1 !important; transform: none !important; }
	.hero__blob, .hero__stitchline path, .hero__scroll-cue-dot{ animation: none !important; }
	*{ scroll-behavior: auto !important; }
}
