/* ============================================================
   BOTEN LTD — Modern base stylesheet
   Palette straight from the logo. Ramp exists now so a future
   dark-mode / Three.js hero pass doesn't require a rewrite.
   ============================================================ */

:root {
	--indigo-900: #0B0821;
	--indigo-700: #12103F;
	--indigo: #1B1464;
	--indigo-300: #4F45A8;
	--indigo-200: #8A82D6;

	--amber: #FEAF2C;
	--amber-light: #FFD07A;
	--cream: #FBF2C9;

	--ink: #16152A;
	--gray-700: #4A4959;
	--gray-500: #74738A;
	--gray-200: #E7E5F0;
	--gray-100: #F5F4FA;
	--white: #FFFFFF;

	--font: 'Montserrat', Arial, sans-serif;

	--container: 1240px;
	--radius: 14px;
	--radius-sm: 8px;

	--section-pad: 120px;
	--section-pad-mobile: 64px;

	--shadow: 0 20px 50px -20px rgba(27, 20, 100, 0.25);
	--shadow-sm: 0 8px 24px -12px rgba(27, 20, 100, 0.2);

	--mouse-x: 0;
	--mouse-y: 0;
	--page-progress: 0;
	--hero-progress: 0;
	--hero-title-size: clamp(3rem, 1.5rem + 9vw, 8rem);
	--hero-text-size: 18px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--white);
	margin: 0;
	min-width: 320px;
	position: relative;
}

h1, h2, h3, h4, h5, h6 { margin: 0 0 20px; font-weight: 700; line-height: 1.25; }
p { margin: 0 0 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea {
	font-family: var(--font);
	background: var(--gray-100);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-sm);
	padding: 14px 18px;
	font-size: 15px;
	color: var(--ink);
	width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--gray-500); }
input:focus, textarea:focus { outline: none; border-color: var(--indigo-300); }

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

section { padding: var(--section-pad) 0; }
.story-content-section { padding: 0; }

/* ---------- Type helpers ---------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 16px;
}
.eyebrow::before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--amber);
	display: inline-block;
}
.section-title {
	font-size: clamp(2.5rem, 1.2rem + 6vw, 6rem);
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: -0.02em;
	color: var(--gray-500);
	margin-bottom: 18px;
}
.section-title strong { color: var(--indigo); font-weight: 800; }
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lead {
	font-size: 17px;
	color: var(--gray-700);
	max-width: 620px;
}
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head {
	margin-bottom: 56px;
}
.section-head.center { text-align: center; }
.color-white { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
	white-space: nowrap;
}
.btn-primary {
	background: var(--amber);
	color: var(--indigo-900);
	box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(254, 175, 44, 0.55); }
.btn-outline {
	background: transparent;
	color: var(--white);
	border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-dark {
	background: var(--indigo);
	color: var(--white);
}
.btn-dark:hover { background: var(--indigo-700); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 12px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
	--reveal-y: 56px;
	--reveal-scale: 0.92;
	--scroll-scale: 1;
	--scroll-image-scale: 1;
	opacity: 0;
	filter: blur(6px);
	transform: translateY(var(--reveal-y)) scale(calc(var(--reveal-scale) * var(--scroll-scale)));
	transform-origin: center;
	transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
	transition-delay: var(--reveal-delay, 0s);
	will-change: opacity, transform, filter;
}
.reveal.is-visible {
	--reveal-y: 0px;
	--reveal-scale: 1;
	opacity: 1;
	filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
	.reveal { transition-delay: 0s !important; filter: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	background: radial-gradient(ellipse at 20% 20%, var(--indigo-700) 0%, var(--indigo-900) 62%);
	overflow: hidden;
	color: var(--white);
}
.hero-bg-media {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.08);
	mix-blend-mode: luminosity;
	transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.hero-bg-media.in { opacity: 0.22; transform: scale(1); }
.hero-bg-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media (prefers-reduced-motion: reduce) {
	.hero-bg-media { transition: opacity 0.4s ease; }
	.hero-bg-media img { display: none; }
}
.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 8, 33, 0.2) 0%, var(--indigo-900) 96%);
}
/* ============================================================
   HERO SIDE (brand badge, alongside the hero copy)
   ============================================================ */
.hero-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}
.hero-side {
	flex-shrink: 0;
	width: min(50vw, 460px);
	text-align: center;
	display: none;
}
.hero-side-title {
	font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
	font-weight: 700;
	margin: 0;
}
.brand-mark-badge {
	position: relative;
	width: min(70vw, 440px);
	height: min(70vw, 440px);
	margin: 0 auto 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: badgeFloat 5s ease-in-out infinite;
}
.brand-mark-badge img {
	position: relative;
	z-index: 2;
	width: 62%;
	filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}
#hero-3d {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
#hero-3d canvas {
	width: 100% !important;
	height: 100% !important;
	display: block;
	opacity: 0;
	transition: opacity 1s ease;
}
#hero-3d canvas.is-loaded { opacity: 1; }
@keyframes badgeFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
	.brand-mark-badge { animation: none; }
}
@media (min-width: 901px) {
	.hero-side { display: block; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 18px 0;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: rgba(255, 255, 255, 0.92);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-radius: 100px;
	padding: 10px 14px 10px 28px;
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.35s ease;
}
.site-header.is-scrolled .header-row {
	box-shadow: 0 10px 30px -14px rgba(27, 20, 100, 0.35);
}
.header-logo img { height: 38px; width: auto; }

.header-nav ul { display: flex; align-items: center; gap: 34px; }
.header-nav a {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	transition: color 0.25s ease;
	position: relative;
}
.header-nav a:hover { color: var(--indigo-300); }
.header-nav a.is-active { color: var(--indigo); font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
}
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--amber); }

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 30px;
	height: 30px;
	z-index: 210;
}
.hamburger span {
	height: 2px;
	width: 100%;
	background: var(--ink);
	transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.hamburger.is-active span { background: var(--white); }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-mobile-panel {
	position: fixed;
	inset: 0;
	background: var(--indigo-900);
	z-index: 190;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-16px);
	transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.header-mobile-panel.is-active { opacity: 1; visibility: visible; transform: translateY(0); }
.header-mobile-panel ul { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.header-mobile-panel a { font-size: 22px; font-weight: 700; color: var(--white); }
.header-mobile-panel a:hover { color: var(--amber); }
.header-mobile-info { color: var(--indigo-200); font-size: 14px; }

/* ============================================================
   HERO CONTENT
   ============================================================ */
.hero-grid {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image:
		linear-gradient(rgba(254, 175, 44, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(254, 175, 44, 0.09) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 78%);
	mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 78%);
	pointer-events: none;
}

.hero-orb {
	position: absolute;
	inset: 8%;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, rgba(254, 175, 44, 0.5), rgba(254, 175, 44, 0) 60%);
	filter: blur(6px);
	animation: orbit 12s ease-in-out infinite;
}
.hero-ring {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(254, 175, 44, 0.25);
	border-radius: 50%;
	animation: spin 40s linear infinite;
}
.hero-ring::before {
	content: '';
	position: absolute;
	top: -3px;
	left: 50%;
	width: 7px;
	height: 7px;
	margin-left: -3.5px;
	border-radius: 50%;
	background: var(--amber);
	box-shadow: 0 0 18px 4px rgba(254, 175, 44, 0.7);
}
.hero-ring.ring-2 { inset: 12%; animation-duration: 60s; animation-direction: reverse; opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-3%, 4%) scale(1.05); }
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 640px;
	color: var(--white);
}
.hero-subtitle {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.hero-subtitle::before { content: ''; width: 30px; height: 2px; background: var(--amber); }
.typing::after {
	content: '';
	display: inline-block;
	width: 2px;
	height: 0.9em;
	margin-left: 2px;
	background: var(--amber);
	vertical-align: -0.15em;
	animation: caret 0.85s step-end infinite;
}
.typing.is-done::after { animation: caret 0.85s step-end infinite, caret-fade 0.4s ease 2.5s forwards; }
@keyframes caret { 50% { opacity: 0; } }
@keyframes caret-fade { to { opacity: 0; } }

.hero-title {
	font-size: var(--hero-title-size);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.02em;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 24px;
}
.hero-title strong { color: var(--amber); font-weight: 800; }
.hero-text {
	font-size: var(--hero-text-size);
	color: rgba(255, 255, 255, 0.75);
	max-width: 480px;
	margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 32px;
}

/* Choreographed entrance — hero is above the fold, so it plays on
   load rather than waiting on the .reveal scroll observer. .hero-title
   is excluded: it's revealed by the typewriter effect instead (main.js),
   not a fade/slide, so it must be visible (not translated) from the start. */
.hero-subtitle, .hero-text, .hero-btns, .hero-stats {
	opacity: 0;
	transform: translateY(22px);
	animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-subtitle { animation-delay: 0.1s; }
.hero-text { animation-delay: 1.9s; }
.hero-btns { animation-delay: 2.1s; }
.hero-stats { animation-delay: 2.3s; }
@keyframes heroIn {
	to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
	.hero-subtitle, .hero-text, .hero-btns, .hero-stats {
		animation: none; opacity: 1; transform: none;
	}
	.typing::after, .hero-ring, .hero-orb, .scroll-cue-line { animation: none; }
}
.hero-stat-num {
	font-size: 30px;
	font-weight: 800;
	color: var(--amber);
}
.hero-stat-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 4px;
}

.scroll-cue {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.scroll-cue-line {
	width: 1px;
	height: 34px;
	background: linear-gradient(180deg, var(--amber), transparent);
	animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
	0% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
	50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
	100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
}

/* ============================================================
   PAGE HEADER (inner pages: About / Services / Gallery / Contact)
   ============================================================ */
.page-header {
	position: relative;
	overflow: hidden;
	padding: 168px 0 76px;
	color: var(--white);
	background: radial-gradient(ellipse at 12% 0%, var(--indigo-700) 0%, var(--indigo-900) 68%);
}
.page-header-crumb {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 18px;
	position: relative;
	z-index: 2;
}
.page-header-crumb a { color: rgba(255, 255, 255, 0.8); }
.page-header-crumb a:hover { color: var(--amber); }
.page-header-title {
	font-size: clamp(32px, 4.5vw, 52px);
	margin-bottom: 14px;
	position: relative;
	z-index: 2;
}
.page-header-lead {
	color: rgba(255, 255, 255, 0.7);
	max-width: 560px;
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--scroll-image-scale, 1)); transition: transform 0.55s ease; }
.about-badge {
	position: absolute;
	left: 24px;
	bottom: 24px;
	background: var(--amber);
	color: var(--indigo-900);
	padding: 18px 24px;
	border-radius: var(--radius-sm);
	font-weight: 800;
}
.about-badge span { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.about-badge strong { font-size: 26px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: var(--indigo); color: var(--white); padding: 72px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-size: 44px; font-weight: 800; color: var(--amber); }
.stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.75); margin-top: 6px; }

/* "Our Journey" — two-column variant with counting stats */
.journey-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.journey-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
.journey-stat-num { font-size: 44px; font-weight: 800; color: var(--amber); line-height: 1; }
.journey-stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.75); margin-top: 8px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 36px 32px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-6px) scale(var(--scroll-scale, 1)); box-shadow: var(--shadow-sm); border-color: transparent; }
.service-card.has-image { padding: 0; overflow: hidden; }
.service-thumb { height: 200px; overflow: hidden; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--scroll-image-scale, 1)); transition: transform 0.4s ease; }
.service-card.has-image:hover .service-thumb img { transform: scale(calc(var(--scroll-image-scale, 1) + 0.06)); }
.service-body { padding: 28px 32px 32px; }
.service-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: var(--cream);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 22px;
	color: var(--indigo);
}
.service-title { font-size: 19px; color: var(--indigo); margin-bottom: 10px; }
.service-desc { color: var(--gray-700); font-size: 14.5px; margin-bottom: 18px; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li { font-size: 13.5px; color: var(--gray-700); display: flex; align-items: flex-start; gap: 8px; }
.service-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); margin-top: 7px; flex-shrink: 0; }
.service-link { font-size: 13px; font-weight: 700; color: var(--indigo); display: inline-flex; align-items: center; gap: 6px; }
.service-link::after { content: '\2192'; transition: transform 0.25s ease; }
.service-link:hover::after { transform: translateX(4px); }

.service-explore-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--indigo);
	margin-bottom: 14px;
}
.service-explore-toggle .dropdown-icon {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--cream);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	line-height: 1;
	transition: transform 0.25s ease, background-color 0.25s ease;
}
.service-explore-toggle[aria-expanded="true"] .dropdown-icon {
	background: var(--amber);
	transform: rotate(135deg);
}
.service-explore-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.service-explore-content.is-open { max-height: 220px; }
.service-explore-content .service-list { padding-bottom: 16px; }

.services-subhead { margin: 64px 0 32px; text-align: center; }
.services-subhead h3 { font-size: 22px; color: var(--indigo); margin-bottom: 8px; }
.services-subhead p { color: var(--gray-700); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 180px;
	gap: 16px;
}
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(4) { grid-column: span 2; }
.gallery-item {
	position: relative;
	border-radius: var(--radius-sm);
	overflow: hidden;
	display: block;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--scroll-image-scale, 1)); transition: transform 0.4s ease; }
.gallery-item::after {
	content: '\2795';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 18px;
	background: rgba(27, 20, 100, 0.45);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(calc(var(--scroll-image-scale, 1) + 0.08)); }
.gallery-item:hover::after { opacity: 1; }

.lightbox {
	border: none;
	padding: 0;
	max-width: min(90vw, 1000px);
	max-height: 85vh;
	background: transparent;
	overflow: visible;
}
.lightbox::backdrop { background: rgba(11, 8, 33, 0.85); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lightbox img { width: 100%; height: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--amber);
	color: var(--indigo-900);
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.why-media img { transform: scale(var(--scroll-image-scale, 1)); transition: transform 0.55s ease; }
.why-feature { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--gray-200); }
.why-feature:last-child { border-bottom: 1px solid var(--gray-200); }
.why-feature-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--indigo);
	color: var(--amber);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: 800;
}
.why-feature-title { font-size: 16px; color: var(--indigo); margin-bottom: 6px; }
.why-feature-desc { font-size: 14px; color: var(--gray-700); margin: 0; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-media {
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 20px;
	aspect-ratio: 4 / 5;
}
.team-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--scroll-image-scale, 1)); transition: transform 0.45s ease; }
.team-role { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 6px; }
.team-name { font-size: 18px; color: var(--indigo); margin-bottom: 8px; }
.team-desc { font-size: 13.5px; color: var(--gray-700); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-section { padding: 48px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.partners-row { display: flex; align-items: center; justify-content: center; gap: 64px; flex-wrap: wrap; }
.partners-row img { height: 40px; width: auto; filter: grayscale(1); opacity: 0.7; transform: scale(var(--scroll-scale, 1)); transition: filter 0.3s ease, opacity 0.3s ease, transform 0.45s ease; }
.partners-row img:hover { filter: grayscale(0); opacity: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--gray-100); }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-point { display: flex; align-items: flex-start; gap: 14px; font-size: 14.5px; color: var(--gray-700); }
.contact-point strong { display: block; color: var(--indigo); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.contact-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--indigo);
	color: var(--amber);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 15px;
}
.contact-form {
	background: var(--white);
	border-radius: var(--radius);
	padding: 40px;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.form-note { font-size: 13px; color: var(--gray-500); margin-top: -4px; }
.form-success { display: none; font-size: 14px; color: #1a7a4c; background: #e7f7ee; border-radius: var(--radius-sm); padding: 12px 16px; }
.form-success.is-visible { display: block; }

/* ============================================================
   MODAL
   ============================================================ */
.request-modal {
	border: none;
	border-radius: var(--radius);
	padding: 0;
	width: min(90vw, 420px);
	background: var(--white);
	box-shadow: var(--shadow);
}
.request-modal::backdrop { background: rgba(11, 8, 33, 0.7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal-inner { padding: 36px; position: relative; }
.modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--gray-100);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: var(--gray-700);
}
.modal-title { font-size: 20px; color: var(--indigo); margin-bottom: 20px; }
.modal-inner form { display: flex; flex-direction: column; gap: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--indigo-900); color: rgba(255, 255, 255, 0.7); padding: 88px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer h3 { color: var(--white); font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 22px; }
.footer-logo-badge {
	display: inline-flex;
	background: var(--white);
	padding: 10px 18px;
	border-radius: 10px;
	margin-bottom: 20px;
}
.footer-about img { height: 30px; margin-bottom: 0; }
.footer-about p { font-size: 14px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.25s ease, border-color 0.25s ease;
}
.footer-social a:hover { background: var(--amber); border-color: var(--amber); color: var(--indigo-900); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; display: flex; align-items: center; gap: 8px; transition: color 0.25s ease; }
.footer-links a:hover { color: var(--amber); }
.footer-contact li { font-size: 14px; margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; }
.footer-newsletter p { font-size: 14px; margin-bottom: 18px; }
.footer-newsletter-form { display: flex; gap: 0; border-radius: 50px; overflow: hidden; background: rgba(255, 255, 255, 0.08); padding: 4px; }
.footer-newsletter-form input {
	background: transparent;
	border: none;
	color: var(--white);
	padding: 10px 16px;
	flex: 1;
	min-width: 0;
}
.footer-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer-newsletter-form button {
	background: var(--amber);
	color: var(--indigo-900);
	font-weight: 700;
	font-size: 13px;
	padding: 10px 18px;
	border-radius: 50px;
	white-space: nowrap;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
	text-align: center;
	font-size: 13px;
}
.footer-bottom a { color: var(--amber); }

/* ============================================================
   GO UP
   ============================================================ */
.go-up {
	position: fixed;
	right: 28px;
	bottom: 28px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--indigo);
	color: var(--amber);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 150;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	box-shadow: var(--shadow-sm);
}
.go-up.is-active { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============================================================
   CUSTOM CURSOR — real mouse pointers only, never on touch
   ============================================================ */
.cursor-dot {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--amber);
	mix-blend-mode: difference;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
	opacity: 0;
}
.cursor-dot.is-active { opacity: 1; }
.cursor-dot.is-hover { transform: translate(-50%, -50%) scale(2.2); }
@media (hover: hover) and (pointer: fine) {
	body { cursor: none; }
	a, button, .btn { cursor: none; }
	.cursor-dot { display: block; }
}
@media (prefers-reduced-motion: reduce) {
	.cursor-dot { display: none !important; }
	body { cursor: auto !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
	.services-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
	:root { --section-pad: var(--section-pad-mobile); }
	.header-nav, .header-actions .header-phone { display: none; }
	.hamburger { display: flex; }
	.about-row, .why-row, .contact-row, .journey-row { grid-template-columns: 1fr; gap: 40px; }
	.why-media, .about-media { order: -1; }
	.hero-content { max-width: 100%; transform-origin: left center; }
	.stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 640px) {
	.container { padding: 0 20px; }
	.services-grid, .team-grid { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
	.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
	.gallery-grid a:nth-child(4) { grid-column: span 1; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; }
	.hero-stats { gap: 28px; }
	.stat-num { font-size: 34px; }
	.stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   THEME TOGGLE (floating)
   ============================================================ */
.theme-toggle {
	position: fixed;
	left: 28px;
	bottom: 28px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--indigo);
	color: var(--amber);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 150;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, background-color 0.3s ease;
}
.theme-toggle:hover { transform: scale(1.08); }
.theme-toggle .fa-sun { display: none; }
[data-theme="dark"] .theme-toggle { background: var(--amber); color: var(--indigo-900); }
[data-theme="dark"] .theme-toggle .fa-moon { display: none; }
[data-theme="dark"] .theme-toggle .fa-sun { display: block; }

/* ============================================================
   DARK THEME — remaps the same tokens used everywhere else, so
   most components adapt automatically. Sections that are already
   dark-branded by design (hero, footer, stats, brand-mark,
   page-header) are intentionally left as-is in both themes.
   ============================================================ */
[data-theme="dark"] {
	--surface: var(--indigo-900);
	--surface-alt: var(--indigo-700);
	--text-primary: #ECEAFA;
	--text-secondary: var(--indigo-200);
	--border-soft: rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] body { background: var(--surface); color: var(--text-primary); }
[data-theme="dark"] .page-content { background: var(--surface); }

[data-theme="dark"] .header-row { background: rgba(18, 16, 63, 0.85); }
[data-theme="dark"] .header-nav a { color: var(--text-primary); }
[data-theme="dark"] .header-nav a:hover { color: var(--amber); }
[data-theme="dark"] .header-nav a.is-active { color: var(--amber); }
[data-theme="dark"] .header-phone { color: var(--text-primary); }
[data-theme="dark"] .hamburger span { background: var(--text-primary); }
[data-theme="dark"] .hamburger.is-active span { background: var(--text-primary); }

[data-theme="dark"] .section-title { color: var(--text-secondary); }
[data-theme="dark"] .section-title strong { color: var(--amber); }
[data-theme="dark"] .section-lead { color: var(--text-secondary); }
[data-theme="dark"] .eyebrow { color: var(--amber); }

[data-theme="dark"] .service-card,
[data-theme="dark"] .contact-form {
	background: var(--surface-alt);
	border-color: var(--border-soft);
}
[data-theme="dark"] .service-title,
[data-theme="dark"] .team-name,
[data-theme="dark"] .why-feature-title { color: var(--text-primary); }
[data-theme="dark"] .service-desc,
[data-theme="dark"] .service-list li,
[data-theme="dark"] .team-desc,
[data-theme="dark"] .why-feature-desc,
[data-theme="dark"] .form-note,
[data-theme="dark"] .contact-point { color: var(--text-secondary); }
[data-theme="dark"] .service-icon { background: rgba(254, 175, 44, 0.16); color: var(--amber); }
[data-theme="dark"] .service-link,
[data-theme="dark"] .service-explore-toggle,
[data-theme="dark"] .services-subhead h3,
[data-theme="dark"] .contact-point strong,
[data-theme="dark"] .header-nav a.is-active { color: var(--amber); }
[data-theme="dark"] .services-subhead p { color: var(--text-secondary); }
[data-theme="dark"] .service-explore-toggle .dropdown-icon { background: rgba(254, 175, 44, 0.18); }
[data-theme="dark"] .why-feature,
[data-theme="dark"] .why-feature:last-child { border-color: var(--border-soft); }

[data-theme="dark"] input,
[data-theme="dark"] textarea {
	background: var(--surface);
	border-color: var(--border-soft);
	color: var(--text-primary);
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder { color: var(--text-secondary); }

[data-theme="dark"] .btn-dark { background: var(--amber); color: var(--indigo-900); }
[data-theme="dark"] .btn-dark:hover { background: var(--amber-light); }

[data-theme="dark"] #gallery,
[data-theme="dark"] .contact-section { background: var(--surface) !important; }
[data-theme="dark"] .partners-section { background: var(--surface); border-color: var(--border-soft); }
[data-theme="dark"] .partners-row img { filter: grayscale(1) invert(0.9); }

[data-theme="dark"] .header-mobile-info { color: var(--text-secondary); }
[data-theme="dark"] .footer-logo-badge { background: rgba(255, 255, 255, 0.92); }

[data-theme="dark"] .lightbox-close,
[data-theme="dark"] .modal-close { background: var(--surface-alt); color: var(--text-primary); }
[data-theme="dark"] .request-modal,
[data-theme="dark"] .modal-title { background: var(--surface-alt); color: var(--text-primary); }

@media (prefers-reduced-motion: reduce) {
	.theme-toggle { transition: none; }
}
