/* ==========================================================================
   HRD Infratech — main stylesheet
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
	--ink: #0e0e10;
	--ink-2: #17171b;
	--ink-3: #232329;
	--gold: #c9a227;
	--gold-2: #e2c25b;
	--gold-deep: #8a6b0c;
	--gold-soft: rgba(201, 162, 39, .12);
	--bg: #ffffff;
	--bg-soft: #f7f4ec;
	--text: #1d1d20;
	--muted: #5b5b63;
	--muted-light: #b9b6ad;
	--border: #e6e0d2;
	--border-dark: rgba(255, 255, 255, .1);
	--success: #1f7a4a;
	--danger: #b3261e;

	--ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--ff-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--fs-xs: .8125rem;
	--fs-sm: .9375rem;
	--fs-base: 1rem;
	--fs-md: 1.125rem;
	--fs-h4: 1.125rem;
	--fs-h3: 1.25rem;
	--fs-h2: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
	--fs-h1: clamp(2.5rem, 1.6rem + 4vw, 4.6rem);

	--radius-sm: 6px;
	--radius: 12px;
	--radius-lg: 20px;
	--shadow-sm: 0 2px 10px rgba(14, 14, 16, .06);
	--shadow: 0 14px 40px rgba(14, 14, 16, .10);
	--shadow-lg: 0 30px 70px rgba(14, 14, 16, .18);

	--container: 1240px;
	--gutter: clamp(16px, 4vw, 32px);
	--section: clamp(64px, 8vw, 112px);
	--header-h: 84px;
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: var(--fs-base);
	line-height: 1.7;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}
img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.2; color: var(--ink); font-weight: 700; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
address { font-style: normal; }
button { font: inherit; color: inherit; cursor: pointer; }
figure { margin: 0; }
.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }

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

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; left: 12px; top: -60px; z-index: 1000; padding: 10px 18px;
	background: var(--gold); color: var(--ink); font-weight: 700; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; margin-inline: auto; }
.break { word-break: break-word; overflow-wrap: anywhere; }

/* ---------- Typography helpers ---------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: var(--fs-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
	color: var(--gold-deep); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--light, .section--dark .eyebrow, .cta-band .eyebrow { color: var(--gold-2); }
.section-title {
	font-family: var(--ff-display); font-size: var(--fs-h2); font-weight: 700; line-height: 1.08;
	letter-spacing: -.01em; margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold-deep); }
.section--dark .section-title em { color: var(--gold-2); }
.section-lead { font-size: var(--fs-md); color: var(--muted); max-width: 640px; }
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }
.section-head--center .eyebrow::after { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head-row .section-head { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
	--btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink);
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 48px; padding: 12px 24px; border-radius: 999px;
	background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
	font-weight: 700; font-size: var(--fs-sm); letter-spacing: .01em; line-height: 1.2; text-align: center;
	transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
	white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .icon-arrow { transform: translateX(3px); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); --btn-bd: var(--gold); box-shadow: 0 10px 24px rgba(201, 162, 39, .28); }
.btn--gold:hover { --btn-bg: var(--gold-2); --btn-bd: var(--gold-2); }
.btn--dark:hover { --btn-bg: var(--ink-3); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--outline:hover { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--ghost-light { --btn-bg: rgba(255, 255, 255, .06); --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .45); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--sm { min-height: 42px; padding: 10px 20px; }
.btn--lg { min-height: 56px; padding: 16px 30px; font-size: var(--fs-base); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 28px; }
.btn-row--center { justify-content: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--gold-deep); }
.link-arrow .icon { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: var(--muted-light); font-size: var(--fs-xs); border-bottom: 1px solid var(--border-dark); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; }
.topbar p { margin: 0; display: flex; align-items: center; gap: 8px; }
.topbar .icon { width: 15px; height: 15px; color: var(--gold); }
.topbar__links { display: flex; gap: 24px; }
.topbar__links a { display: inline-flex; align-items: center; gap: 8px; }
.topbar__links a:hover { color: var(--gold-2); }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(14, 14, 16, .96); backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid var(--border-dark);
	transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .25); }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; flex-shrink: 0; }
.brand__logo { width: 56px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--ff-display); font-size: 1.55rem; font-weight: 700; letter-spacing: .02em; }
.brand__tag { font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-2); margin-top: 4px; }

.main-nav { margin-left: auto; }
.main-nav .menu { display: flex; align-items: center; gap: 4px; }
.main-nav .menu > li { position: relative; }
.main-nav .menu > li > a {
	display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 8px;
	color: #ecebe6; font-weight: 600; font-size: var(--fs-sm);
}
.main-nav .menu > li > a:hover,
.main-nav .menu > li.current-menu-item > a,
.main-nav .menu > li.current-menu-ancestor > a,
.main-nav .menu > li.current-page-ancestor > a { color: var(--gold-2); }
.main-nav .caret .icon { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.main-nav .sub-menu {
	position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px; padding: 10px;
	background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); border-top: 3px solid var(--gold);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.main-nav .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.main-nav .menu > li:hover > .sub-menu,
.main-nav .menu > li:focus-within > .sub-menu,
.main-nav .menu > li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.main-nav .menu > li:hover .caret .icon { transform: rotate(180deg); }
.main-nav .sub-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: var(--fs-sm); font-weight: 600; color: var(--text); }
.main-nav .sub-menu a:hover, .main-nav .sub-menu .current-menu-item > a { background: var(--bg-soft); color: var(--gold-deep); }
.submenu-toggle { display: none; }
.main-nav__mobile-extra { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 18px; }
.header-call { display: flex; align-items: center; gap: 10px; color: #fff; }
.header-call__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(201, 162, 39, .5); color: var(--gold-2); }
.header-call__icon .icon { width: 18px; height: 18px; }
.header-call__text { display: flex; flex-direction: column; font-weight: 700; font-size: var(--fs-sm); line-height: 1.25; }
.header-call__text small { font-weight: 500; color: var(--muted-light); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.header-call:hover .header-call__icon { background: var(--gold); color: var(--ink); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--border-dark); background: transparent; padding: 0; }
.nav-toggle__bars { display: grid; gap: 5px; width: 22px; margin: auto; }
.nav-toggle__bars span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-open .nav-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: #cfccc3; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .section-lead { color: var(--muted-light); }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; background: var(--ink); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.6s ease; transform: scale(1.04); }
.hero__img.is-active { opacity: 1; animation: heroZoom 9s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(95deg, rgba(10, 10, 12, .94) 0%, rgba(10, 10, 12, .82) 42%, rgba(10, 10, 12, .45) 75%, rgba(10, 10, 12, .35) 100%);
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .75fr); gap: clamp(32px, 5vw, 72px); align-items: center; min-height: min(86vh, 820px); padding-block: clamp(72px, 10vw, 120px); }
.hero__title { font-family: var(--ff-display); font-size: var(--fs-h1); line-height: 1.02; font-weight: 700; color: #fff; letter-spacing: -.015em; margin-bottom: 22px; }
.hero__title em { color: var(--gold-2); font-style: italic; }
.hero__lead { font-size: clamp(1.05rem, .95rem + .4vw, 1.25rem); color: #dddad2; max-width: 620px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 36px; font-size: var(--fs-sm); font-weight: 600; color: #e9e6dd; }
.hero__points li { display: inline-flex; align-items: center; gap: 8px; }
.hero__points .icon { width: 18px; height: 18px; color: var(--gold-2); }

.hero-card {
	background: rgba(20, 20, 24, .72); border: 1px solid rgba(201, 162, 39, .28);
	border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(14px);
	box-shadow: var(--shadow-lg);
}
.hero-card__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 12px; }
.hero-card__list li + li { border-top: 1px solid var(--border-dark); }
.hero-card__list a { display: flex; align-items: center; gap: 14px; padding: 13px 4px; font-weight: 600; color: #f1efe9; }
.hero-card__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--gold-soft); color: var(--gold-2); flex-shrink: 0; }
.hero-card__icon .icon { width: 20px; height: 20px; }
.hero-card__arrow { margin-left: auto; width: 18px; height: 18px; color: var(--gold-2); opacity: .5; transition: transform .25s var(--ease), opacity .25s; }
.hero-card__list a:hover { color: var(--gold-2); }
.hero-card__list a:hover .hero-card__arrow { opacity: 1; transform: translateX(4px); }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink-2); color: #fff; border-top: 1px solid var(--border-dark); }
.trust__inner { display: flex; align-items: center; gap: 20px 48px; padding-block: 26px; flex-wrap: wrap; }
.trust__label { margin: 0; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); }
.trust__list { display: flex; flex-wrap: wrap; gap: 16px 48px; }
.trust__list li { display: flex; flex-direction: column; line-height: 1.3; padding-left: 18px; border-left: 2px solid var(--gold); }
.trust__list strong { font-family: var(--ff-display); font-size: 1.45rem; }
.trust__list span { font-size: var(--fs-xs); color: var(--muted-light); }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 6vw, 88px); align-items: center; }
.split--top { align-items: start; }
.split--reverse .split__media { order: 2; }
.split__content > p:not(.eyebrow) { color: var(--muted); }
.section--dark .split__content > p:not(.eyebrow) { color: var(--muted-light); }

.collage { position: relative; padding: 0 12% 14% 0; }
.collage__main img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.collage__sub { position: absolute; right: 0; bottom: 0; width: 46%; border: 8px solid #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.collage__sub img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.collage__badge {
	position: absolute; left: -12px; bottom: 6%; display: flex; align-items: center; gap: 12px;
	background: var(--ink); color: #fff; padding: 14px 20px 14px 14px; border-radius: var(--radius);
	box-shadow: var(--shadow); font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; line-height: 1.05;
}
.collage__badge img { width: 48px; }

.check-list { display: grid; gap: 12px; margin: 22px 0 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--text); }
.check-list .icon { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--gold); color: var(--ink); stroke-width: 3; margin-top: 2px; }
.check-list--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px; }
.section--dark .check-list li, .vm-card--dark .check-list li { color: #eceae4; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill-list li { padding: 8px 16px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--border); font-weight: 700; font-size: var(--fs-sm); }
.pill-list--gold li { background: var(--gold-soft); border-color: rgba(201, 162, 39, .35); color: var(--ink); }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card__link { display: flex; flex-direction: column; height: 100%; }
.service-card__media { overflow: hidden; aspect-ratio: 16 / 10; background: var(--bg-soft); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { position: relative; padding: 34px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card__body p { color: var(--muted); font-size: var(--fs-sm); flex: 1; }
.service-card__icon {
	display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
	background: var(--ink); color: var(--gold-2); box-shadow: 0 10px 20px rgba(14, 14, 16, .18);
}
.service-card__icon .icon { width: 26px; height: 26px; }
.service-card__media + .service-card__body .service-card__icon { position: absolute; top: -27px; left: 28px; }
.service-card__title { font-size: 1.3rem; margin-bottom: 10px; }
.service-card--cta { background: var(--ink); border-color: var(--ink); color: #cfccc3; background-image: radial-gradient(circle at 100% 0, rgba(201, 162, 39, .22), transparent 55%); }
.service-card--cta .service-card__body { justify-content: center; gap: 4px; padding: 40px 32px; }
.service-card--cta .service-card__title { color: #fff; margin-top: 18px; }
.service-card--cta p { color: var(--muted-light); flex: 0; margin-bottom: 24px; }
.service-card--cta .btn { align-self: flex-start; }
.service-card--cta .service-card__icon { background: var(--gold); color: var(--ink); }

/* ---------- Trades ---------- */
.trades { background-image: radial-gradient(ellipse at 0 0, rgba(201, 162, 39, .12), transparent 45%), radial-gradient(ellipse at 100% 100%, rgba(201, 162, 39, .08), transparent 40%); }
.trade-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--border-dark); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); overflow: hidden; }
.trade { background: var(--ink); padding: 32px 28px; transition: background-color .3s var(--ease); }
.trade:hover { background: var(--ink-2); }
.trade__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(201, 162, 39, .45); color: var(--gold-2); margin-bottom: 20px; transition: background-color .3s, color .3s; }
.trade:hover .trade__icon { background: var(--gold); color: var(--ink); }
.trade__icon .icon { width: 24px; height: 24px; }
.trade__title { font-size: 1.1rem; margin-bottom: 8px; }
.trade p { font-size: var(--fs-sm); color: var(--muted-light); margin: 0; }

/* ---------- Why ---------- */
.why__media img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.why-grid { display: grid; gap: 22px; margin-top: 28px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); transition: border-color .3s, box-shadow .3s; }
.why-item:hover { border-color: rgba(201, 162, 39, .5); box-shadow: var(--shadow-sm); }
.why-item__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-deep); flex-shrink: 0; }
.why-item h3 { font-size: 1.08rem; margin-bottom: 4px; }
.why-item p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; counter-reset: step; position: relative; }
.process-step { position: relative; padding: 32px 26px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: transform .3s var(--ease), box-shadow .3s; }
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.process-step__num { display: block; font-family: var(--ff-display); font-size: 3rem; line-height: 1; font-weight: 700; color: var(--gold); margin-bottom: 18px; }
.process-step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.process-step p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 56px; right: -24px; width: 24px; height: 2px; background: var(--gold); opacity: .5; }

/* ---------- Sectors ---------- */
.sector-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.sector { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate; color: #fff; }
.sector img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.sector::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 10, 12, 0) 35%, rgba(10, 10, 12, .9) 100%); }
.sector:hover img { transform: scale(1.07); }
.sector__body { position: absolute; left: 22px; right: 22px; bottom: 22px; display: flex; flex-direction: column; gap: 4px; }
.sector__body strong { font-family: var(--ff-display); font-size: 1.6rem; line-height: 1.1; }
.sector__body span { font-size: var(--fs-sm); color: #d6d3cb; }
.sector__body::before { content: ""; width: 36px; height: 2px; background: var(--gold); margin-bottom: 10px; transition: width .35s var(--ease); }
.sector:hover .sector__body::before { width: 64px; }

/* ---------- Stats ---------- */
.stats { background: var(--gold); color: var(--ink); }
.stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat { padding: 44px 28px; display: flex; flex-direction: column; gap: 8px; }
.stat + .stat { border-left: 1px solid rgba(14, 14, 16, .15); }
.stat__num { font-family: var(--ff-display); font-size: clamp(2.8rem, 2rem + 2.5vw, 4rem); font-weight: 700; line-height: 1; }
.stat__label { font-size: var(--fs-sm); font-weight: 600; line-height: 1.5; max-width: 240px; }

/* ---------- Featured projects ---------- */
.featured-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 260px); gap: 18px; }
.featured-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.featured-item--0 { grid-row: span 2; }
.featured-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.featured-item:hover img { transform: scale(1.05); }
.featured-item figcaption {
	position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 14px 18px; border-radius: var(--radius);
	background: rgba(14, 14, 16, .82); backdrop-filter: blur(6px); color: #fff; font-weight: 700; font-size: var(--fs-sm);
	display: flex; flex-direction: column; line-height: 1.35;
}
.featured-item figcaption span { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); }

/* ---------- Clients ---------- */
.split--center { align-items: center; }
.client-cards { display: grid; gap: 18px; }
.client-cards--row { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 900px; margin-inline: auto; }
.client-card { display: flex; gap: 20px; align-items: center; padding: 28px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold); }
.client-card h3 { font-family: var(--ff-display); font-size: 1.6rem; margin-bottom: 2px; }
.client-card p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }
.client-card__icon { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--ink); color: var(--gold-2); flex-shrink: 0; }
.client-card__icon .icon { width: 28px; height: 28px; }
.client-work { text-align: center; margin-top: 48px; }
.client-work h3 { font-size: 1.1rem; }
.client-work .pill-list { justify-content: center; }

/* ---------- FAQ ---------- */
.faq__inner { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq__head { position: sticky; top: calc(var(--header-h) + 24px); }
.faq__head > p:not(.eyebrow) { color: var(--muted); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
	display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; list-style: none;
	padding: 22px 0; font-weight: 700; font-size: 1.06rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); flex-shrink: 0; transition: transform .3s var(--ease), background-color .3s, border-color .3s; }
.faq-item__icon .icon { width: 16px; height: 16px; }
.faq-item[open] .faq-item__icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); }
.faq-item__body { padding: 0 50px 22px 0; color: var(--muted); }
.faq-item__body p { margin: 0; }

/* ---------- Contact (home) ---------- */
.contact-home { background-image: radial-gradient(ellipse at 100% 0, rgba(201, 162, 39, .14), transparent 50%); }
.contact-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.contact-split__info > p:not(.eyebrow) { color: var(--muted-light); font-size: var(--fs-md); }
.contact-list { display: grid; gap: 22px; margin-top: 34px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(201, 162, 39, .45); color: var(--gold-2); flex-shrink: 0; }
.contact-list small { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 2px; }
.contact-list a, .contact-list address { color: #fff; font-weight: 600; font-size: 1.05rem; word-break: break-word; }
.contact-list a:hover { color: var(--gold-2); }

/* ---------- Forms ---------- */
.form-card { background: #fff; color: var(--text); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.form-card--light { border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-card__title { font-family: var(--ff-display); font-size: 2rem; margin-bottom: 6px; color: var(--ink) !important; }
.form-card__sub { color: var(--muted); font-size: var(--fs-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--fs-sm); font-weight: 700; color: var(--ink); }
.field label span { color: var(--danger); }
.field input, .field select, .field textarea {
	width: 100%; font: inherit; font-size: 16px; color: var(--text); background: #fbfaf7;
	border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 16px; min-height: 50px;
	transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%235b5b63' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input::placeholder, .field textarea::placeholder { color: #9d9a92; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(201, 162, 39, .18); }
.field.has-error input, .field.has-error textarea { border-color: var(--danger); }
.field-error { margin: 0; min-height: 0; font-size: var(--fs-xs); font-weight: 600; color: var(--danger); }
.field-error:empty { display: none; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 24px; }
.form-note { margin: 0; font-size: var(--fs-xs); color: var(--muted); flex: 1; min-width: 200px; }
.form-alert { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; border-radius: 10px; font-size: var(--fs-sm); margin-bottom: 8px; }
.form-alert .icon { width: 20px; height: 20px; margin-top: 2px; }
.form-alert--success { background: #e8f4ed; color: var(--success); border: 1px solid #bfe0cc; }
.form-alert--error { background: #fbeceb; color: var(--danger); border: 1px solid #f0c7c4; }
.enquiry-form button[disabled] { opacity: .7; pointer-events: none; }

/* ---------- Page hero ---------- */
.page-hero { position: relative; isolation: isolate; color: #fff; background: var(--ink); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10, 10, 12, .92) 0%, rgba(10, 10, 12, .74) 55%, rgba(10, 10, 12, .5) 100%); }
.page-hero__inner { padding-block: clamp(64px, 9vw, 120px); }
.page-hero__title { font-family: var(--ff-display); font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4rem); line-height: 1.05; color: #fff; margin-bottom: 14px; max-width: 900px; }
.page-hero__lead { font-size: clamp(1rem, .95rem + .3vw, 1.2rem); color: #dcd9d0; max-width: 680px; margin: 0; }
.breadcrumbs { margin-bottom: 22px; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; color: #bdbab1; }
.breadcrumbs li + li::before { content: "/"; color: var(--gold); }
.breadcrumbs a:hover { color: var(--gold-2); }
.breadcrumbs [aria-current] { color: var(--gold-2); }

/* ---------- Sub nav (about) ---------- */
.subnav { position: sticky; top: var(--header-h); z-index: 50; background: #fff; border-bottom: 1px solid var(--border); }
.subnav ul { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-block: 10px; }
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a { display: block; white-space: nowrap; padding: 8px 16px; border-radius: 999px; font-size: var(--fs-sm); font-weight: 700; color: var(--muted); }
.subnav a:hover, .subnav a.is-active { background: var(--ink); color: var(--gold-2); }

/* ---------- Director ---------- */
.director { background-image: radial-gradient(ellipse at 0 100%, rgba(201, 162, 39, .14), transparent 50%); }
.director__inner { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: clamp(36px, 6vw, 88px); align-items: start; }
.director__profile { position: sticky; top: calc(var(--header-h) + 80px); text-align: center; }
.director__photo { display: grid; place-items: center; aspect-ratio: 4 / 4.6; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(160deg, #1c1c21, #0b0b0d); border: 1px solid rgba(201, 162, 39, .3); }
.director__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.director__photo img.director__mark { width: 62%; height: auto; object-fit: contain; }
.director__name { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 700; color: #fff; margin: 22px 0 2px; }
.director__role { font-size: var(--fs-sm); color: var(--gold-2); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.director__message { position: relative; }
.director__message > p:not(.eyebrow) { color: #d7d4cb; font-size: 1.06rem; }
.director__quote { width: 56px; height: 56px; color: var(--gold); opacity: .6; margin-bottom: 18px; }
.director__sign { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border-dark); color: var(--muted-light) !important; font-size: var(--fs-sm) !important; }
.director__sign span { display: block; font-family: var(--ff-display); font-style: italic; font-size: 1.8rem; color: var(--gold-2); line-height: 1.2; }

/* ---------- Vision & mission ---------- */
.vm-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.vm-card { padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-lg); background: var(--bg-soft); border: 1px solid var(--border); }
.vm-card h3 { font-family: var(--ff-display); font-size: 2rem; }
.vm-card__lead { font-size: 1.2rem; line-height: 1.6; color: var(--text); font-weight: 500; }
.vm-card__icon { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 16px; background: var(--ink); color: var(--gold-2); margin-bottom: 22px; }
.vm-card__icon .icon { width: 28px; height: 28px; }
.vm-card--dark { background: var(--ink); border-color: var(--ink); }
.vm-card--dark h3 { color: #fff; }
.vm-card--dark .vm-card__icon { background: var(--gold); color: var(--ink); }
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 24px; }
.value { padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.value .icon { width: 30px; height: 30px; color: var(--gold-deep); margin-bottom: 14px; }
.value h3 { font-size: 1.08rem; margin-bottom: 6px; }
.value p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 980px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: linear-gradient(var(--gold), rgba(201, 162, 39, .15)); transform: translateX(-50%); }
.timeline__item { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; padding-bottom: 36px; }
.timeline__dot { position: absolute; left: 50%; top: 18px; transform: translateX(-50%); display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--gold-2); font-weight: 800; font-size: var(--fs-sm); border: 3px solid var(--bg-soft); box-shadow: 0 0 0 2px var(--gold); z-index: 1; }
.timeline__card { background: #fff; padding: 26px 28px; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.timeline__item:nth-child(odd) .timeline__card { grid-column: 1; text-align: right; }
.timeline__item:nth-child(even) .timeline__card { grid-column: 2; }
.timeline__label { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.timeline__card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.timeline__card p:last-child { margin: 0; color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Service page ---------- */
.scope-card { background: var(--ink); color: #fff; padding: clamp(28px, 4vw, 40px); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: sticky; top: calc(var(--header-h) + 24px); }
.scope-card__title { display: flex; align-items: center; gap: 12px; font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.scope-card__title .icon { color: var(--gold-2); width: 28px; height: 28px; }
.scope-card .check-list li { color: #e6e3db; font-weight: 500; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery-item, .masonry-item { position: relative; display: block; width: 100%; padding: 0; border: 0; background: var(--bg-soft); border-radius: var(--radius); overflow: hidden; cursor: zoom-in; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__zoom { position: absolute; right: 12px; bottom: 12px; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(14, 14, 16, .78); color: var(--gold-2); opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s var(--ease); }
.gallery-item:hover .gallery-item__zoom, .gallery-item:focus-visible .gallery-item__zoom { opacity: 1; transform: none; }
.gallery-item__zoom .icon { width: 20px; height: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.related-card { display: flex; align-items: center; gap: 14px; padding: 20px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); font-weight: 700; transition: border-color .3s, box-shadow .3s, transform .3s var(--ease); }
.related-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.related-card__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: var(--gold-2); flex-shrink: 0; }
.related-card__icon .icon { width: 22px; height: 22px; }
.related-card__title { flex: 1; line-height: 1.35; }
.related-card__arrow { width: 18px; height: 18px; color: var(--gold-deep); }

/* ---------- Services overview ---------- */
.service-rows { display: grid; gap: clamp(40px, 6vw, 72px); margin-top: clamp(40px, 5vw, 64px); }
.service-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 64px); align-items: center; }
.service-row--reverse .service-row__media { order: 2; }
.service-row__media { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.service-row__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .8s var(--ease); }
.service-row__media:hover img { transform: scale(1.04); }
.service-row__title { font-family: var(--ff-display); font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.5rem); margin: 18px 0 12px; }
.service-row__title a:hover { color: var(--gold-deep); }
.service-row__body > p:not(.eyebrow) { color: var(--muted); }
.service-row__body .check-list { margin-bottom: 28px; }
.service-row__body .check-list li { font-weight: 500; font-size: var(--fs-sm); }

/* ---------- Projects ---------- */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 8px 0 36px; }
.filter-btn { padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--border); background: #fff; font-weight: 700; font-size: var(--fs-sm); color: var(--muted); transition: all .25s var(--ease); min-height: 44px; }
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--gold-2); }
.masonry { columns: 4 240px; column-gap: 16px; }
.masonry-item { margin-bottom: 16px; break-inside: avoid; text-align: left; }
.masonry-item[hidden] { display: none; }
.masonry-item img { width: 100%; transition: transform .7s var(--ease); }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px; color: #fff; font-weight: 700; font-size: var(--fs-sm); background: linear-gradient(transparent, rgba(10, 10, 12, .88)); display: flex; flex-direction: column; line-height: 1.35; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s var(--ease); }
.masonry-item__cap small { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); }
.masonry-item:hover .masonry-item__cap, .masonry-item:focus-visible .masonry-item__cap { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; background: rgba(8, 8, 10, .94); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: min(1200px, 100%); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox img { max-height: 80vh; width: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #e3e0d8; font-weight: 600; font-size: var(--fs-sm); text-align: center; }
.lightbox__btn { position: absolute; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .06); color: #fff; }
.lightbox__btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%) rotate(180deg); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Contact page ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-bottom: clamp(40px, 5vw, 64px); }
.contact-card { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fff; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; min-width: 0; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.contact-card__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: var(--ink); color: var(--gold-2); margin-bottom: 14px; }
.contact-card--wa .contact-card__icon { background: #25d366; color: #fff; }
.contact-card__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.contact-card strong { font-size: 1.15rem; color: var(--ink); max-width: 100%; }
.contact-main { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 28px; align-items: start; }
.contact-aside { display: grid; gap: 20px; }
.office-card { padding: 30px; border-radius: var(--radius-lg); background: var(--ink); color: #d7d4cb; }
.office-card h2 { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; color: #fff; }
.office-card h2 .icon { color: var(--gold-2); }
.office-card address { font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; color: #fff; }
.office-card p { display: flex; gap: 8px; align-items: center; }
.office-card .link-arrow { color: var(--gold-2); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 3; background: var(--bg-soft); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(201, 162, 39, .22), transparent 45%), repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 22px); pointer-events: none; }
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 28px 48px; padding-block: clamp(48px, 6vw, 72px); flex-wrap: wrap; }
.cta-band__title { font-family: var(--ff-display); font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.8rem); color: #fff; margin-bottom: 8px; line-height: 1.1; }
.cta-band__text { color: var(--muted-light); margin: 0; max-width: 560px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Entry content (editor) ---------- */
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2 { font-family: var(--ff-display); font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); margin-top: 2em; }
.entry-content h3 { margin-top: 1.6em; }
.entry-content ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1rem; }
.entry-content ol { list-style: decimal; padding-left: 1.3em; margin-bottom: 1rem; }
.entry-content li { margin-bottom: .4em; }
.entry-content a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: var(--radius); }
.entry-content--center { text-align: center; color: var(--muted); font-size: var(--fs-md); }
.split__content .entry-content p { color: var(--muted); }

.post-list { display: grid; gap: 24px; }
.post-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.post-card__date { font-size: var(--fs-xs); font-weight: 700; color: var(--gold-deep); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.post-card__title { font-size: 1.4rem; }
.notfound { text-align: center; }
.notfound__code { font-family: var(--ff-display); font-size: clamp(6rem, 20vw, 12rem); line-height: 1; font-weight: 700; color: var(--gold); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #09090b; color: #a9a69d; font-size: var(--fs-sm); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.1fr 1.3fr; gap: 40px; padding-block: clamp(56px, 7vw, 88px); }
.footer-brand img { width: 110px; margin-bottom: 18px; }
.footer-about { max-width: 320px; }
.footer-title { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 22px; font-weight: 800; }
.footer-title::after { content: ""; display: block; width: 28px; height: 2px; background: var(--gold); margin-top: 12px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--gold-2); }
.footer-contact { display: grid; gap: 16px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .icon { width: 18px; height: 18px; color: var(--gold); margin-top: 4px; }
.footer-contact a { word-break: break-word; }
.footer-contact a:hover { color: var(--gold-2); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-btn { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .15); color: #fff; transition: all .25s var(--ease); }
.social-btn .icon { width: 18px; height: 18px; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.social-btn--wa:hover { background: #25d366; border-color: #25d366; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-bottom__inner { display: flex; justify-content: space-between; align-items: center; gap: 12px 24px; padding-block: 22px; flex-wrap: wrap; font-size: var(--fs-xs); }
.footer-bottom p { margin: 0; }
.legal-links { display: flex; gap: 20px; }
.legal-links a:hover { color: var(--gold-2); }

/* ---------- Floating contact ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 12px 28px rgba(37, 211, 102, .4); transition: transform .3s var(--ease); }
.wa-float .icon { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }
.mobile-bar { display: none; }

/* ---------- Reveal animation ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.js [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
	.header-call__text { display: none; }
	.main-nav .menu > li > a { padding: 10px 10px; }
}

@media (max-width: 1100px) {
	.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.trade-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.process-step::after { display: none; }
	.values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.hero__inner { grid-template-columns: 1fr; min-height: 0; }
	.hero-card { max-width: 560px; }
}

/* Mobile navigation */
@media (max-width: 1024px) {
	:root { --header-h: 72px; }
	.topbar { display: none; }
	.nav-toggle { display: grid; }
	.header-cta { display: none; }
	.brand__logo { width: 46px; }
	.brand__name { font-size: 1.35rem; }
	.main-nav {
		position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 99;
		background: var(--ink); padding: 16px var(--gutter) 110px; overflow-y: auto;
		opacity: 0; transform: translateY(-12px); visibility: hidden; transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
		border-top: 1px solid var(--border-dark);
	}
	.nav-open .main-nav { opacity: 1; transform: none; visibility: visible; }
	.nav-open { overflow: hidden; }
	.main-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
	.main-nav .menu > li { border-bottom: 1px solid var(--border-dark); display: flex; flex-wrap: wrap; align-items: center; }
	.main-nav .menu > li > a { flex: 1; padding: 16px 4px; font-size: 1.05rem; }
	.main-nav .caret { display: none; }
	.submenu-toggle { display: grid; place-items: center; width: 48px; height: 48px; border: 0; background: transparent; color: var(--gold-2); border-radius: 8px; }
	.submenu-toggle .icon { width: 20px; height: 20px; transition: transform .3s var(--ease); }
	.submenu-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
	.main-nav .sub-menu {
		position: static; flex-basis: 100%; min-width: 0; opacity: 1; visibility: visible; transform: none;
		background: transparent; box-shadow: none; border: 0; padding: 0 0 10px 12px; display: none;
	}
	.main-nav .sub-menu::before { display: none; }
	.main-nav .menu > li.is-open > .sub-menu { display: block; }
	.main-nav .menu > li:hover > .sub-menu, .main-nav .menu > li:focus-within > .sub-menu { opacity: 1; }
	.main-nav .sub-menu a { color: #cfccc3; padding: 11px 12px; }
	.main-nav .sub-menu a:hover { background: var(--ink-2); color: var(--gold-2); }
	.main-nav__mobile-extra { display: grid; gap: 12px; margin-top: 28px; }
}

@media (max-width: 900px) {
	.split, .contact-split, .faq__inner, .director__inner, .contact-main, .service-row, .vm-grid { grid-template-columns: 1fr; }
	.split--reverse .split__media, .service-row--reverse .service-row__media { order: 0; }
	.faq__head, .director__profile, .scope-card { position: static; }
	.director__profile { max-width: 300px; margin-inline: auto; }
	.featured-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
	.featured-item { aspect-ratio: 4 / 3; }
	.featured-item--0 { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 10; }
	.stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.stat:nth-child(3) { border-left: 0; }
	.stat:nth-child(n+3) { border-top: 1px solid rgba(14, 14, 16, .15); }
	.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.contact-cards { grid-template-columns: 1fr; }
	.timeline::before { left: 24px; }
	.timeline__item { grid-template-columns: 1fr; gap: 0; padding-left: 68px; }
	.timeline__dot { left: 24px; top: 14px; }
	.timeline__item:nth-child(odd) .timeline__card, .timeline__item:nth-child(even) .timeline__card { grid-column: 1; text-align: left; }
	.client-cards--row { grid-template-columns: 1fr; }
	.why__media img { aspect-ratio: 16 / 11; }
}

@media (max-width: 700px) {
	body { padding-bottom: 64px; }
	.service-grid, .sector-grid, .process-grid, .values-grid, .related-grid, .footer-grid { grid-template-columns: 1fr; }
	.trade-grid { grid-template-columns: 1fr 1fr; }
	.trade { padding: 24px 18px; }
	.sector { aspect-ratio: 16 / 11; }
	.form-grid { grid-template-columns: 1fr; }
	.check-list--2 { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.masonry { columns: 2; column-gap: 10px; }
	.masonry-item { margin-bottom: 10px; }
	.masonry-item__cap { opacity: 1; transform: none; padding: 30px 10px 8px; font-size: .78rem; }
	.featured-grid { grid-template-columns: 1fr; }
	.hero__actions .btn { flex: 1 1 100%; }
	.hero__title br { display: none; }
	.hero-card { display: none; }
	.hero__inner { padding-block: 56px 64px; }
	.cta-band__actions, .cta-band__actions .btn { width: 100%; }
	.collage { padding: 0 8% 18% 0; }
	.collage__badge { left: 8px; font-size: 1rem; padding: 10px 14px 10px 10px; }
	.collage__badge img { width: 38px; }
	.stat { padding: 30px 18px; }
	.stat__label { font-size: var(--fs-xs); }
	.faq-item__body { padding-right: 0; }
	.wa-float { display: none; }
	.mobile-bar {
		display: grid; grid-template-columns: 1fr 1fr 1.2fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
		background: var(--ink); border-top: 1px solid var(--border-dark); padding-bottom: env(safe-area-inset-bottom);
	}
	.mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: 60px; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
	.mobile-bar a + a { border-left: 1px solid var(--border-dark); }
	.mobile-bar .icon { width: 22px; height: 22px; color: var(--gold-2); }
	.mobile-bar .icon-whatsapp { color: #25d366; }
	.mobile-bar__cta { background: var(--gold); color: var(--ink) !important; }
	.mobile-bar__cta .icon { color: var(--ink) !important; }
	.form-foot .btn { width: 100%; }
	.lightbox__prev, .lightbox__next { top: auto; bottom: 18px; }
	.lightbox__prev { left: calc(50% - 60px); transform: rotate(180deg); }
	.lightbox__next { right: calc(50% - 60px); transform: none; }
	.btn { white-space: normal; }
}

@media (max-width: 380px) {
	.brand__tag { display: none; }
	.brand__name { font-size: 1.2rem; }
	.trade-grid { grid-template-columns: 1fr; }
	.header-call { display: none; }
}

/* ---------- WordPress admin bar offsets (logged-in users only) ---------- */
.admin-bar .site-header { top: 32px; }
.admin-bar .subnav { top: calc(var(--header-h) + 32px); }
@media (max-width: 1024px) {
	.admin-bar .main-nav { top: calc(var(--header-h) + 32px); }
}
@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
	.admin-bar .subnav { top: calc(var(--header-h) + 46px); }
	.admin-bar .main-nav { top: calc(var(--header-h) + 46px); }
}
@media (max-width: 600px) {
	.admin-bar .site-header { top: 0; }
	.admin-bar .subnav { top: var(--header-h); }
}

/* ---------- Client logos ---------- */
.trust__list li { flex-direction: row; align-items: center; gap: 16px; }
.trust__logo { display: grid; place-items: center; width: 150px; height: 56px; padding: 8px 14px; background: #fff; border-radius: 10px; flex-shrink: 0; }
.trust__logo img { max-width: 100%; max-height: 40px; width: auto; height: auto; object-fit: contain; }
.trust__text { display: flex; flex-direction: column; line-height: 1.3; }
.client-card { flex-direction: column; align-items: flex-start; gap: 18px; }
.client-card__logo { display: grid; place-items: center; width: 100%; height: 96px; padding: 14px 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.client-card__logo img { max-width: 100%; max-height: 64px; width: auto; height: auto; object-fit: contain; }
.client-cards:not(.client-cards--row) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 700px) {
	.trust__list { gap: 14px; width: 100%; }
	.trust__list li { width: 100%; }
	.trust__logo { width: 124px; height: 50px; }
	.client-cards:not(.client-cards--row) { grid-template-columns: 1fr; }
}

/* ---------- Form: AJAX states ---------- */
.form-status[hidden], .enquiry-form[hidden] { display: none !important; }
.btn.is-loading { position: relative; }
.btn.is-loading .icon { opacity: 0; }
.btn.is-loading::after {
	content: ""; position: absolute; right: 22px; top: 50%; width: 18px; height: 18px; margin-top: -9px;
	border: 2px solid rgba(14, 14, 16, .25); border-top-color: var(--ink); border-radius: 50%;
	animation: hrdSpin .7s linear infinite;
}
@keyframes hrdSpin { to { transform: rotate(360deg); } }
.form-success { text-align: center; padding: 28px 8px 8px; animation: hrdFadeUp .5s var(--ease) both; }
.form-success:focus { outline: none; }
.form-success__icon { display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: #e8f4ed; color: var(--success); margin-bottom: 18px; box-shadow: 0 0 0 8px rgba(31, 122, 74, .08); }
.form-success__title { font-family: var(--ff-display); font-size: 1.9rem; margin-bottom: 8px; color: var(--ink); }
.form-success__text { color: var(--muted); max-width: 420px; margin: 0 auto 24px; }
.form-success__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
@keyframes hrdFadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Map (deferred load) ---------- */
.map-embed { position: relative; }
.map-embed__placeholder { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 10px; text-align: center; color: var(--muted); font-weight: 600; font-size: var(--fs-sm); background: repeating-linear-gradient(45deg, #f3efe4 0 12px, #f7f4ec 12px 24px); }
.map-embed__placeholder .icon { width: 34px; height: 34px; color: var(--gold-deep); }
.map-embed iframe { position: relative; z-index: 1; }

/* Mobile header fix: backdrop-filter made the fixed menu size to the header, not the screen */
@media (max-width: 1024px) {
	.site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: #0e0e10; }
	.site-header__actions { margin-left: auto; }
	.main-nav { height: auto; max-height: none; }
}
