/* ==========================================================================
   Vishwakarma Technology Hub — main stylesheet
   All styles for the site live here. No inline CSS in the templates.

   Contents
   01. Fonts
   02. Design tokens
   03. Base / reset
   04. Utilities & layout
   05. Buttons
   06. Header & navigation
   07. Footer
   08. Home — hero
   09. Home — about
   10. Home — why businesses choose us
   11. Home — highlights (image cards)
   12. Enquiry section & forms
   13. Page banner (inner pages)
   14. About — metrics
   15. About — principles
   16. About — CTA strip
   17. Contact — info panel & map
   17b. Map links
   17c. Master site plan
   17d. Card index codes
   17e. Banner & section imagery
   18. Blog / archive / single / search / 404 / comments
   19. Scroll reveal
   20. Responsive
   ========================================================================== */


/* 01. Fonts ============================================================== */

@font-face {
	font-family: 'Coolvetica';
	src: url('../assets/fonts/coolvetica-compressed-heavy.woff') format('woff');
	font-weight: 400 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('../assets/fonts/Gilroy-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('../assets/fonts/Gilroy-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('../assets/fonts/Gilroy-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('../assets/fonts/Gilroy-Bold.woff') format('woff');
	font-weight: 600 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('../assets/fonts/Gilroy-Heavy.woff') format('woff');
	font-weight: 800 900;
	font-style: normal;
	font-display: swap;
}


/* 02. Design tokens ====================================================== */

:root {
	--vk-forest:        #09331F;
	--vk-forest-light:  #0c3d25;
	--vk-gold:          #D7CF70;
	--vk-paper:         #F7F5EC;
	--vk-ink:           #12190F;
	--vk-sage:          #B7C4B0;
	--vk-olive:         #8c8a5a;
	--vk-slate:         #3a4234;
	--vk-alert:         #8C5A2B;
	--vk-alert-light:   #e0a878;
	--vk-link-hover:    #6f6a30;

	--vk-gold-05:  rgba(215, 207, 112, 0.05);
	--vk-gold-06:  rgba(215, 207, 112, 0.06);
	--vk-gold-10:  rgba(215, 207, 112, 0.10);
	--vk-gold-12:  rgba(215, 207, 112, 0.12);
	--vk-gold-14:  rgba(215, 207, 112, 0.14);
	--vk-gold-18:  rgba(215, 207, 112, 0.18);
	--vk-gold-20:  rgba(215, 207, 112, 0.20);
	--vk-gold-22:  rgba(215, 207, 112, 0.22);
	--vk-gold-25:  rgba(215, 207, 112, 0.25);
	--vk-gold-28:  rgba(215, 207, 112, 0.28);
	--vk-gold-30:  rgba(215, 207, 112, 0.30);
	--vk-gold-40:  rgba(215, 207, 112, 0.40);

	--vk-paper-04: rgba(247, 245, 236, 0.04);
	--vk-paper-06: rgba(247, 245, 236, 0.06);
	--vk-paper-45: rgba(247, 245, 236, 0.45);
	--vk-paper-55: rgba(247, 245, 236, 0.55);
	--vk-paper-60: rgba(247, 245, 236, 0.60);
	--vk-paper-70: rgba(247, 245, 236, 0.70);
	--vk-paper-75: rgba(247, 245, 236, 0.75);
	--vk-paper-78: rgba(247, 245, 236, 0.78);
	--vk-paper-82: rgba(247, 245, 236, 0.82);
	--vk-paper-85: rgba(247, 245, 236, 0.85);

	--vk-font-display: 'Coolvetica', sans-serif;
	--vk-font-body:    'Gilroy', system-ui, sans-serif;

	--vk-container:    1240px;
	--vk-gutter:       32px;
	--vk-header-h:     92px;
}


/* 03. Base / reset ======================================================= */

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--vk-paper);
	color: var(--vk-ink);
	font-family: var(--vk-font-body);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
	word-spacing: 0.12em;
}

a {
	color: var(--vk-forest);
	text-decoration: none;
}

a:hover {
	color: var(--vk-link-hover);
}

img {
	max-width: 100%;
}

::selection {
	background: var(--vk-gold);
	color: var(--vk-ink);
}

input,
select,
textarea,
button {
	font-family: inherit;
}

:focus-visible {
	outline: 2px solid var(--vk-forest);
	outline-offset: 2px;
}

.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:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 200;
	clip: auto;
	width: auto;
	height: auto;
	margin: 0;
	padding: 12px 18px;
	background: var(--vk-gold);
	color: var(--vk-forest);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}


/* 04. Utilities & layout ================================================= */

.site-wrap {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
}

.container {
	max-width: var(--vk-container);
	margin: 0 auto;
	padding-left: var(--vk-gutter);
	padding-right: var(--vk-gutter);
}

.container--narrow {
	max-width: 920px;
}

.section {
	position: relative;
	overflow: hidden;
}

.section--paper  { background: var(--vk-paper); }
.section--forest { background: var(--vk-forest); color: var(--vk-paper); }
.section--forest-light { background: var(--vk-forest-light); color: var(--vk-paper); }

.section__inner    { padding-top: 96px; padding-bottom: 96px; }
.section__inner--sm { padding-top: 88px; padding-bottom: 88px; }
.section__inner--xs { padding-top: 72px; padding-bottom: 72px; }

/* Blueprint grid overlay used on the enquiry block and inner page banners. */
.grid-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(var(--vk-gold-05) 1px, transparent 1px),
		linear-gradient(90deg, var(--vk-gold-05) 1px, transparent 1px);
	background-size: 44px 44px;
}

.grid-overlay--strong {
	background-image:
		linear-gradient(var(--vk-gold-06) 1px, transparent 1px),
		linear-gradient(90deg, var(--vk-gold-06) 1px, transparent 1px);
}

.is-relative {
	position: relative;
}

/* Two-column editorial split: short heading | long body. */
.two-col {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 64px;
	align-items: start;
}

.section-title {
	font-family: var(--vk-font-display);
	font-weight: 600;
	font-size: clamp(28px, 3.2vw, 40px);
	line-height: 1.1;
	letter-spacing: 0.01em;
	margin: 0;
	color: var(--vk-forest);
}

.section--forest .section-title,
.section--forest-light .section-title {
	color: var(--vk-paper);
}

.section-title--sm {
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.12;
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 52px;
}

.section-head--stacked {
	display: block;
	margin-bottom: 48px;
}

.section-meta {
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.16em;
	color: var(--vk-paper-55);
}

.lead {
	font-size: 18px;
	line-height: 1.7;
	color: var(--vk-ink);
	margin: 0 0 28px;
	max-width: 640px;
}

.lead:last-child {
	margin-bottom: 0;
}

/* The 40px measuring rule with end ticks used above card titles. */
.rule {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}

.rule__line {
	position: relative;
	height: 1px;
	width: 40px;
	background: var(--vk-gold);
}

.rule__line::before,
.rule__line::after {
	content: '';
	position: absolute;
	top: -3px;
	width: 1px;
	height: 7px;
	background: var(--vk-gold);
}

.rule__line::before { left: 0; }
.rule__line::after  { right: 0; }

.rule--forest .rule__line,
.rule--forest .rule__line::before,
.rule--forest .rule__line::after {
	background: var(--vk-forest);
}


/* 05. Buttons ============================================================ */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 26px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--gold {
	background: var(--vk-gold);
	color: var(--vk-forest);
}

.btn--gold:hover {
	background: var(--vk-paper);
	color: var(--vk-forest);
}

.btn--ghost {
	background: var(--vk-paper-06);
	color: var(--vk-paper);
	border-color: var(--vk-paper-45);
}

.btn--ghost:hover {
	border-color: var(--vk-gold);
	color: var(--vk-gold);
}

.btn--sm {
	padding: 11px 20px;
	font-size: 12px;
	gap: 8px;
	letter-spacing: 0.09em;
}

.btn--lg {
	padding: 16px 28px;
}


/* 06. Header & navigation ================================================ */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--vk-forest);
	color: var(--vk-paper);
	border-bottom: 1px solid var(--vk-gold-25);
}

.site-header__inner {
	max-width: var(--vk-container);
	margin: 0 auto;
	padding: 0 var(--vk-gutter);
	height: var(--vk-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

/**
 * The logo is fine black line-art on a transparent background. Recolouring it
 * to a flat white (the prototype used `filter: brightness(0) invert(1)`) fills
 * in the illustration and it turns into an unreadable blob at header size.
 * Instead it sits on a light plate, which keeps every line and gives the
 * strongest possible contrast against the dark green bar.
 */
.site-brand {
	display: flex;
	align-items: center;
	color: var(--vk-paper);
	/* background: var(--vk-paper); */
	/* padding: 9px 18px; */
	border-radius: 3px;
	/* box-shadow: 0 1px 0 var(--vk-gold-40); */
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.site-brand:hover {
	/* box-shadow: 0 0 0 2px var(--vk-gold); */
}

.site-brand__logo {
	height: 54px;
	width: auto;
	display: block;
}

.site-brand__text {
	font-family: var(--vk-font-display);
	font-size: 22px;
	font-weight: 600;
	color: var(--vk-forest);
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 34px;
}

.primary-nav .nav-menu {
	display: flex;
	align-items: center;
	gap: 34px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav .nav-menu li {
	margin: 0;
	padding: 0;
}

.primary-nav .nav-menu a {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vk-paper);
	transition: color 0.2s ease;
}

.primary-nav .nav-menu a:hover {
	color: var(--vk-gold);
}

/* WordPress marks the current page on the <li>. */
.primary-nav .nav-menu .current-menu-item > a,
.primary-nav .nav-menu .current_page_item > a,
.primary-nav .nav-menu .current-menu-ancestor > a {
	color: var(--vk-gold);
	font-weight: 500;
}

/* A menu item given the CSS class "nav-cta" renders as the gold button. */
.primary-nav .nav-menu .nav-cta > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--vk-gold);
	color: var(--vk-forest);
	padding: 11px 20px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.09em;
}

.primary-nav .nav-menu .nav-cta > a:hover {
	background: var(--vk-paper);
	color: var(--vk-forest);
}

.nav-toggle {
	display: none;
	background: none;
	border: 1px solid var(--vk-gold);
	color: var(--vk-gold);
	width: 42px;
	height: 42px;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	align-items: center;
	justify-content: center;
}

.mobile-nav {
	display: none;
	flex-direction: column;
	padding: 8px var(--vk-gutter) 20px;
	gap: 4px;
	border-top: 1px solid var(--vk-gold-20);
}

.mobile-nav.is-open {
	display: flex;
}

.mobile-nav .nav-menu {
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav .nav-menu a {
	display: block;
	color: var(--vk-paper);
	padding: 12px 0;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--vk-gold-12);
}

.mobile-nav .nav-menu .current-menu-item > a,
.mobile-nav .nav-menu .current_page_item > a {
	color: var(--vk-gold);
}

.mobile-nav .nav-menu .nav-cta > a {
	margin-top: 10px;
	text-align: center;
	background: var(--vk-gold);
	color: var(--vk-forest);
	padding: 14px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.09em;
	border-bottom: 0;
}

.mobile-nav__cta {
	margin-top: 10px;
	justify-content: center;
	text-align: center;
	padding: 14px;
	font-size: 13px;
}


/* 07. Footer ============================================================= */

.site-footer {
	background: var(--vk-forest);
	color: var(--vk-paper);
	border-top: 1px solid var(--vk-gold-22);
}

.site-footer__top {
	max-width: var(--vk-container);
	margin: 0 auto;
	padding: 72px var(--vk-gutter) 40px;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 48px;
}

/* Same plate treatment as the header, sized for the footer. */
.footer-brand__plate {
	display: inline-block;
	/* background: var(--vk-paper); */
	/* padding: 12px 20px; */
	border-radius: 3px;
	margin-bottom: 26px;
}

.footer-brand__logo {
	height: 58px;
	width: auto;
	display: block;
}

.footer-brand__text {
	color: var(--vk-paper-70);
	font-size: 14px;
	line-height: 1.65;
	max-width: 320px;
	margin: 0;
}

.footer-col__title {
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--vk-gold);
	margin-bottom: 18px;
}

.footer-col__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col__list a,
.footer-col__list li,
.footer-line {
	color: var(--vk-paper-75);
	font-size: 14px;
	line-height: 1.5;
}

.footer-col__list a:hover {
	color: var(--vk-gold);
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 4px;
}

.footer-social a {
	font-family: var(--vk-font-body);
	font-size: 11px;
	color: var(--vk-gold);
	border: 1px solid var(--vk-gold-40);
	padding: 6px 9px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
	background: var(--vk-gold);
	color: var(--vk-forest);
}

.site-footer__bottom {
	border-top: 1px solid var(--vk-gold-18);
}

.site-footer__legal {
	max-width: var(--vk-container);
	margin: 0 auto;
	padding: 22px var(--vk-gutter);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--vk-paper-55);
}


/* 08. Home — hero ======================================================== */

.hero {
	background: var(--vk-forest);
	color: var(--vk-paper);
	position: relative;
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 42%;
	display: block;
	/* Pull the photo towards the brand palette so it sits with the greens. */
	filter: saturate(0.55) contrast(1.08);
}

/**
 * The prototype covered the photo with an 80–92% scrim, which hid it almost
 * completely. This is light enough to actually read the image while keeping
 * the headline comfortably above the contrast threshold.
 */
.hero__scrim {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 90% 75% at 50% 45%, rgba(9, 51, 31, 0.44) 0%, rgba(9, 51, 31, 0.70) 100%),
		linear-gradient(180deg, rgba(9, 51, 31, 0.48) 0%, rgba(9, 51, 31, 0.55) 55%, rgba(9, 51, 31, 0.80) 100%);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	max-width: 920px;
	margin: 0 auto;
	padding: 104px var(--vk-gutter) 108px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	pointer-events: none;
}

.hero__title {
	font-family: var(--vk-font-display);
	font-weight: 600;
	font-size: clamp(34px, 4.6vw, 58px);
	line-height: 1.06;
	letter-spacing: 0.005em;
	margin: 0 0 22px;
}

.hero__lead {
	font-size: 17px;
	line-height: 1.65;
	color: var(--vk-paper-85);
	max-width: 640px;
	margin: 0 0 36px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-bottom: 48px;
}

.hero__actions .btn {
	pointer-events: auto;
}

.hero__stats {
	display: flex;
	gap: 44px;
	flex-wrap: wrap;
	justify-content: center;
	border-top: 1px solid var(--vk-gold-28);
	padding-top: 26px;
}

.stat__value {
	font-family: var(--vk-font-body);
	font-size: 26px;
	color: var(--vk-gold);
	font-weight: 600;
}

.stat__label {
	font-family: var(--vk-font-body);
	font-size: 10px;
	letter-spacing: 0.2em;
	color: var(--vk-paper-70);
	margin-top: 5px;
	white-space: nowrap;
}


/* 09. Home — about ======================================================= */

/**
 * Image on the left, all copy on the right. The wrapper carries the padding
 * that the offset gold frame sits in, so the frame can never overflow the
 * container at any width.
 */
.about-split {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 64px;
	align-items: center;
}

.about-split__media {
	position: relative;
	padding: 0 18px 18px 0;
}

.about-split__media::before {
	content: '';
	position: absolute;
	top: 18px;
	right: 0;
	bottom: 0;
	left: 18px;
	border: 1px solid var(--vk-gold);
	pointer-events: none;
}

.about-split__figure {
	position: relative;
	z-index: 1;
	margin: 0;
	border: 1px solid var(--vk-sage);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--vk-forest);
}

.about-split__figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	display: block;
	filter: saturate(0.55) contrast(1.08);
}

.about-split__caption {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	background: var(--vk-forest);
	color: var(--vk-paper);
	font-family: var(--vk-font-body);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 9px 15px;
}

.about-split__body .section-title {
	margin-bottom: 24px;
}

/**
 * Modifier: hold the image/text row at every width instead of stacking on
 * small screens. The text column gets narrow, so the type scale, spacing and
 * image ratio are all tightened to suit at the mobile breakpoint below.
 */
.about-split--keep-row {
	align-items: start;
}

.fact-row {
	display: flex;
	gap: 0;
	border-top: 1px solid var(--vk-sage);
}

.fact {
	flex: 1;
	padding: 22px;
}

.fact:first-child {
	padding-left: 0;
	border-right: 1px solid var(--vk-sage);
}

.fact__label {
	font-family: var(--vk-font-body);
	font-size: 12px;
	letter-spacing: 0.16em;
	color: var(--vk-olive);
	margin-bottom: 8px;
}

.fact__value {
	font-family: var(--vk-font-display);
	font-size: 17px;
	color: var(--vk-forest);
	font-weight: 500;
}


/* 10. Home — why businesses choose us ==================================== */

.usp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--vk-gold-28);
	border: 1px solid var(--vk-gold-28);
}

.usp-card {
	background: var(--vk-forest);
	padding: 34px 30px;
	position: relative;
	min-height: 190px;
	display: flex;
	flex-direction: column;
	transition: background-color 0.3s ease;
}

.usp-card:hover {
	background: var(--vk-forest-light);
}

.usp-card__title {
	font-family: var(--vk-font-display);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.25;
	margin: 0 0 10px;
	color: var(--vk-paper);
}

.usp-card__desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--vk-paper-70);
	margin: 0;
}


/* 11. Home — highlights (image cards) ==================================== */

.hl-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.hl-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--vk-sage);
	overflow: hidden;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hl-card:hover {
	border-color: var(--vk-forest);
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(9, 51, 31, 0.12);
}

.hl-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--vk-forest);
}

.hl-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Each card shifts the crop so a shared placeholder still reads as six
	   distinct images. Real per-card photography overrides this naturally. */
	object-position: var(--vk-focal, center);
	display: block;
	filter: saturate(0.55) contrast(1.08);
	transition: transform 0.6s ease;
}

.hl-card:hover .hl-card__media img {
	transform: scale(1.06);
}

/* Ties the photo back into the forest/gold palette. */
.hl-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 51, 31, 0.10) 0%, rgba(9, 51, 31, 0.42) 100%);
	pointer-events: none;
}

.hl-card__code {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	background: var(--vk-forest);
	color: var(--vk-gold);
	font-family: var(--vk-font-body);
	font-size: 10px;
	letter-spacing: 0.2em;
	padding: 7px 11px;
}

.hl-card__body {
	flex: 1;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 24px 22px 26px;
}

.hl-card__marker {
	width: 9px;
	height: 9px;
	border: 1.5px solid var(--vk-forest);
	transform: rotate(45deg);
	flex-shrink: 0;
	margin-top: 7px;
	transition: background-color 0.3s ease;
}

.hl-card:hover .hl-card__marker {
	background: var(--vk-gold);
}

.hl-card__title {
	font-family: var(--vk-font-display);
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: 1.3;
	color: var(--vk-forest);
	font-weight: 500;
	margin: 0;
}

/* Vary the crop of the shared placeholder image across the six cards. */
.hl-card:nth-child(1) { --vk-focal: center 30%; }
.hl-card:nth-child(2) { --vk-focal: center 55%; }
.hl-card:nth-child(3) { --vk-focal: left 40%; }
.hl-card:nth-child(4) { --vk-focal: right 45%; }
.hl-card:nth-child(5) { --vk-focal: center 72%; }
.hl-card:nth-child(6) { --vk-focal: center 18%; }


/* 12. Enquiry section & forms ============================================ */

.enquiry__inner {
	position: relative;
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 64px;
	align-items: start;
}

.enquiry__title {
	margin-bottom: 20px;
}

.enquiry__text {
	font-size: 16px;
	line-height: 1.65;
	color: var(--vk-paper-78);
	max-width: 420px;
	margin: 0;
}

.enquiry__contact {
	margin-top: 32px;
	font-family: var(--vk-font-body);
	font-size: 12px;
	letter-spacing: 0.12em;
	color: var(--vk-paper-60);
	line-height: 2;
}

.enquiry__contact a {
	color: inherit;
}

.enquiry__contact a:hover {
	color: var(--vk-gold);
}

/* --- form shell --- */
.vk-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	padding: 32px;
}

.vk-form--dark {
	border: 1px solid var(--vk-gold-25);
	background: rgba(9, 51, 31, 0.35);
}

.vk-form--light {
	border: 1px solid var(--vk-sage);
	background: #faf9f1;
}

.field--full {
	grid-column: 1 / -1;
}

.field__label {
	display: block;
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.16em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.vk-form--dark .field__label { color: var(--vk-paper-70); }
.vk-form--light .field__label { color: var(--vk-slate); }

.field__control {
	width: 100%;
	padding: 13px 14px;
	font-size: 15px;
	outline: none;
}

.vk-form--dark .field__control {
	background: var(--vk-paper-04);
	color: var(--vk-paper);
	border: 1px solid var(--vk-gold-30);
}

.vk-form--light .field__control {
	background: #fff;
	color: var(--vk-ink);
	border: 1px solid var(--vk-sage);
}

textarea.field__control {
	resize: vertical;
}

.field.has-error .field__control {
	border-color: var(--vk-alert);
}

.field__error {
	font-family: var(--vk-font-body);
	font-size: 11px;
	margin-top: 6px;
	letter-spacing: 0.04em;
	display: none;
}

.field.has-error .field__error {
	display: block;
}

.vk-form--dark .field__error  { color: var(--vk-alert-light); }
.vk-form--light .field__error { color: var(--vk-alert); }

.vk-form__actions {
	grid-column: 1 / -1;
	margin-top: 4px;
}

.vk-form__submit {
	width: 100%;
	display: block;
	border: none;
	padding: 16px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	font-family: var(--vk-font-body);
	transition: opacity 0.2s ease;
}

.vk-form__submit--gold {
	background: var(--vk-gold);
	color: var(--vk-forest);
}

.vk-form__submit--forest {
	background: var(--vk-forest);
	color: var(--vk-paper);
}

.vk-form__submit:hover {
	opacity: 0.88;
}

/* --- success panel --- */
.form-success {
	display: none;
	padding: 48px 40px;
	text-align: center;
}

.form-success.is-visible {
	display: block;
}

.form-success--dark {
	border: 1px solid var(--vk-gold);
	background: var(--vk-gold-10);
}

.form-success--light {
	border: 1px solid var(--vk-forest);
	background: rgba(9, 51, 31, 0.05);
}

.form-success__badge {
	width: 44px;
	height: 44px;
	margin: 0 auto 20px;
	transform: rotate(45deg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-success__badge span {
	transform: rotate(-45deg);
	font-family: var(--vk-font-body);
}

.form-success--dark .form-success__badge {
	border: 1.5px solid var(--vk-gold);
}

.form-success--dark .form-success__badge span {
	color: var(--vk-gold);
}

.form-success--light .form-success__badge {
	border: 1.5px solid var(--vk-forest);
}

.form-success--light .form-success__badge span {
	color: var(--vk-forest);
}

.form-success__title {
	font-family: var(--vk-font-display);
	font-size: 24px;
	margin: 0 0 10px;
}

.form-success--dark .form-success__title  { color: var(--vk-paper); }
.form-success--light .form-success__title { color: var(--vk-forest); }

.form-success__text {
	margin: 0;
	font-size: 15px;
}

.form-success--dark .form-success__text  { color: var(--vk-paper-75); }
.form-success--light .form-success__text { color: var(--vk-slate); }


/* 13. Page banner (inner pages) ========================================== */

.page-banner {
	background: var(--vk-forest);
	color: var(--vk-paper);
	position: relative;
	overflow: hidden;
}

.page-banner__inner {
	position: relative;
	padding-top: 72px;
	padding-bottom: 76px;
}

.page-banner__title {
	font-family: var(--vk-font-display);
	font-weight: 600;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.08;
	letter-spacing: 0.005em;
	margin: 0;
	max-width: 900px;
}

.page-banner__lead {
	font-size: 17px;
	line-height: 1.65;
	color: var(--vk-paper-82);
	max-width: 640px;
	margin: 24px 0 0;
}


/* 14. About — metrics ==================================================== */

.metric-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--vk-gold-28);
	border: 1px solid var(--vk-gold-28);
}

.metric {
	background: var(--vk-forest);
	padding: 34px 26px;
}

.metric__value {
	font-family: var(--vk-font-body);
	font-size: clamp(30px, 3.2vw, 42px);
	color: var(--vk-gold);
	font-weight: 500;
	line-height: 1;
}

.metric__label {
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.16em;
	color: var(--vk-paper-70);
	margin-top: 14px;
	line-height: 1.5;
}


/* 15. About — principles ================================================= */

.pri-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--vk-sage);
	border: 1px solid var(--vk-sage);
}

.pri-card {
	background: var(--vk-paper);
	padding: 34px 30px;
	min-height: 210px;
}

.pri-card__title {
	font-family: var(--vk-font-display);
	font-weight: 500;
	font-size: 21px;
	margin: 0 0 12px;
	color: var(--vk-forest);
}

.pri-card__desc {
	font-size: 15px;
	line-height: 1.65;
	color: var(--vk-slate);
	margin: 0;
}


/* 16. About — CTA strip ================================================== */

.cta-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	padding-top: 72px;
	padding-bottom: 72px;
}

.cta-strip__title {
	font-family: var(--vk-font-display);
	font-weight: 600;
	font-size: clamp(24px, 2.6vw, 34px);
	margin: 0 0 10px;
	letter-spacing: 0.01em;
	color: var(--vk-paper);
}

.cta-strip__text {
	font-size: 16px;
	color: var(--vk-paper-78);
	margin: 0;
}


/* 17. Contact — info panel & map ========================================= */

.contact-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 56px;
	align-items: start;
}

.contact-form-title {
	margin-bottom: 28px;
}

.contact-info {
	border: 1px solid var(--vk-sage);
}

.contact-info__head {
	background: var(--vk-forest);
	color: var(--vk-paper);
	padding: 22px 26px;
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.2em;
}

.contact-info__row {
	display: flex;
	gap: 18px;
	padding: 24px 26px;
	border-bottom: 1px solid var(--vk-sage);
}

.contact-info__row:last-child {
	border-bottom: 0;
}

.contact-info__label {
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.16em;
	color: var(--vk-forest);
	margin-bottom: 7px;
}

.contact-info__value {
	font-size: 15px;
	line-height: 1.55;
	color: var(--vk-ink);
}

.contact-info__value a {
	color: inherit;
}

.contact-info__value a:hover {
	color: var(--vk-link-hover);
}

/* Schematic map placeholder — swap for a real embed later. */
.map-box {
	margin-top: 22px;
	border: 1px solid var(--vk-sage);
	position: relative;
	overflow: hidden;
	background: #eceadd;
	height: 260px;
}

.map-box__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(9, 51, 31, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(9, 51, 31, 0.08) 1px, transparent 1px);
	background-size: 30px 30px;
}

.map-box__highway {
	position: absolute;
	top: 50%;
	left: 12%;
	right: 34%;
	height: 2px;
	background: var(--vk-forest);
	transform: rotate(-8deg);
}

.map-box__road {
	position: absolute;
	top: 20%;
	left: 52%;
	bottom: 16%;
	width: 2px;
	background: var(--vk-sage);
}

.map-box__pin {
	position: absolute;
	top: 48%;
	left: 44%;
	width: 16px;
	height: 16px;
	border: 2px solid var(--vk-alert);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.map-box__pin span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 5px;
	background: var(--vk-alert);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.map-box__caption {
	position: absolute;
	bottom: 14px;
	left: 16px;
	font-family: var(--vk-font-body);
	font-size: 10px;
	letter-spacing: 0.14em;
	color: var(--vk-forest);
	background: var(--vk-paper-85);
	padding: 5px 9px;
	border: 1px solid var(--vk-sage);
}

.map-box__coords {
	position: absolute;
	top: 14px;
	right: 16px;
	font-family: var(--vk-font-body);
	font-size: 10px;
	letter-spacing: 0.14em;
	color: var(--vk-olive);
}


/* 17b. Map links ========================================================= */

.map-link {
	display: inline;
	color: inherit;
	border-bottom: 1px solid var(--vk-gold-40);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.map-link:hover {
	color: var(--vk-gold);
	border-bottom-color: var(--vk-gold);
}

.contact-info__value .map-link:hover {
	color: var(--vk-link-hover);
	border-bottom-color: var(--vk-link-hover);
}

.map-link__icon {
	display: inline-block;
	margin-left: 6px;
	font-size: 0.85em;
	transform: translateY(-1px);
}

/* The schematic map is itself a link to Google Maps. */
a.map-box {
	display: block;
	cursor: pointer;
	transition: border-color 0.25s ease;
}

a.map-box:hover {
	border-color: var(--vk-forest);
}

a.map-box:hover .map-box__caption {
	background: var(--vk-forest);
	color: var(--vk-paper);
	border-color: var(--vk-forest);
}

.map-box__cta {
	position: absolute;
	top: 14px;
	left: 16px;
	font-family: var(--vk-font-body);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--vk-paper);
	background: var(--vk-forest);
	padding: 6px 10px;
}


/* 17c. Master site plan ================================================== */

.site-plan__inner {
	position: relative;
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	gap: 56px;
	align-items: center;
}

.site-plan__text {
	max-width: 420px;
}

.site-plan__lead {
	font-size: 16px;
	line-height: 1.7;
	color: var(--vk-paper-78);
	margin: 0 0 28px;
}

.site-plan__legend {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.site-plan__legend li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--vk-font-body);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--vk-paper-70);
}

.site-plan__swatch {
	width: 26px;
	height: 12px;
	flex-shrink: 0;
	border: 1px solid var(--vk-gold);
}

.site-plan__swatch--plot    { background: var(--vk-gold-05); }
.site-plan__swatch--road    { background: var(--vk-gold-10); border-style: dashed; }
.site-plan__swatch--highway { background: var(--vk-gold-14); }

.site-plan__figure {
	margin: 0;
	border: 1px solid var(--vk-gold-28);
	background: rgba(9, 51, 31, 0.45);
	padding: 18px;
}

.site-plan__svg {
	display: block;
	width: 100%;
	height: auto;
}

.site-plan__caption {
	margin-top: 14px;
	font-family: var(--vk-font-body);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vk-paper-55);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

/* --- the drawing itself --- */
.site-plan__grid line {
	stroke: var(--vk-gold-12);
	stroke-width: 1;
}

.site-plan__roads rect {
	fill: var(--vk-gold-10);
	stroke: rgba(215, 207, 112, 0.35);
	stroke-width: 1;
	stroke-dasharray: 2 5;
}

.site-plan__road-label {
	fill: var(--vk-gold);
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.5px;
}

.site-plan__plot rect {
	fill: var(--vk-gold-05);
	stroke: var(--vk-gold);
	stroke-width: 1.2;
	transition: fill 0.25s ease;
}

.site-plan__plot:hover rect {
	fill: var(--vk-gold-20);
}

.site-plan__plot-area {
	fill: var(--vk-paper);
	text-anchor: middle;
	font-family: var(--vk-font-body);
	font-size: 13px;
	font-weight: 500;
}

.site-plan__plot-unit {
	fill: rgba(215, 207, 112, 0.55);
	text-anchor: middle;
	font-family: var(--vk-font-body);
	font-size: 8px;
	letter-spacing: 1px;
}

.site-plan__boundary {
	fill: none;
	stroke: var(--vk-gold);
	stroke-width: 2;
	stroke-dasharray: 2296;
	stroke-dashoffset: 2296;
	animation: vk-plan-draw 1.6s ease 0.25s forwards;
}

@keyframes vk-plan-draw {
	to {
		stroke-dashoffset: 0;
	}
}

.site-plan__dims line {
	stroke: var(--vk-gold);
	stroke-width: 1.2;
}

.site-plan__dims text {
	fill: var(--vk-gold);
	font-family: var(--vk-font-body);
	font-size: 10px;
}

.site-plan__highway-strip {
	fill: var(--vk-gold-14);
	stroke: var(--vk-gold);
	stroke-width: 1.2;
}

.site-plan__highway-centre {
	stroke: var(--vk-gold);
	stroke-width: 1;
	stroke-dasharray: 14 10;
}

.site-plan__highway-label {
	fill: var(--vk-gold);
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 2px;
}

.site-plan__connector {
	fill: var(--vk-gold-10);
	stroke: var(--vk-gold);
	stroke-width: 1;
	stroke-dasharray: 2 5;
}

.site-plan__arrow {
	fill: var(--vk-gold);
}

.site-plan__entry-label {
	fill: var(--vk-paper);
	font-family: var(--vk-font-body);
	font-size: 9px;
	letter-spacing: 1px;
}

.site-plan__north circle {
	fill: none;
	stroke: var(--vk-gold);
	stroke-width: 1;
}

.site-plan__north polygon {
	fill: var(--vk-gold);
}

.site-plan__north text {
	fill: var(--vk-gold);
	font-family: var(--vk-font-body);
	font-size: 10px;
	font-weight: 600;
}


/* 17d. Card index codes ================================================== */

/**
 * The design data carried a reference code for every card (P-01, H-01, A-01)
 * that the prototype never displayed. Surfacing it adds the drawing-sheet
 * character the rest of the design is built on.
 */
.card-code {
	font-family: var(--vk-font-body);
	font-size: 10px;
	letter-spacing: 0.22em;
	color: var(--vk-gold);
	margin-left: auto;
}

.rule--forest .card-code {
	color: var(--vk-olive);
}

.hl-row__code {
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.18em;
	color: var(--vk-olive);
	margin-left: auto;
	flex-shrink: 0;
}


/* 17e. Banner & section imagery ========================================== */

.page-banner__media {
	position: absolute;
	inset: 0;
}

.page-banner__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.55) contrast(1.08);
}

.page-banner__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 51, 31, 0.68) 0%, rgba(9, 51, 31, 0.86) 100%);
	pointer-events: none;
}

/* Large, very faint brand mark used as a section watermark. */
.brand-watermark {
	position: absolute;
	right: -40px;
	bottom: -60px;
	width: 380px;
	max-width: 45%;
	opacity: 0.05;
	pointer-events: none;
	user-select: none;
}

.brand-watermark img {
	display: block;
	width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
}

.section--paper .brand-watermark img {
	filter: none;
	opacity: 0.6;
}

/* Media panel beside a block of copy. */
.media-figure {
	margin: 0;
	position: relative;
	border: 1px solid var(--vk-sage);
	overflow: hidden;
}

.media-figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-figure__caption {
	position: absolute;
	left: 0;
	bottom: 0;
	background: var(--vk-forest);
	color: var(--vk-paper);
	font-family: var(--vk-font-body);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 8px 14px;
}


/* 18. Blog / archive / single / search / 404 / comments ================== */

.content-area {
	padding-top: 72px;
	padding-bottom: 96px;
}

.content-layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 56px;
	align-items: start;
}

.content-layout--full {
	display: block;
}

.entry {
	margin-bottom: 56px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--vk-sage);
}

.entry:last-of-type {
	border-bottom: 0;
}

.entry__thumb {
	display: block;
	margin-bottom: 24px;
}

.entry__thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.entry__title {
	font-family: var(--vk-font-display);
	font-weight: 600;
	font-size: clamp(24px, 2.6vw, 34px);
	line-height: 1.15;
	margin: 0 0 12px;
	color: var(--vk-forest);
}

.entry__title a {
	color: inherit;
}

.entry__title a:hover {
	color: var(--vk-link-hover);
}

.entry__meta {
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--vk-olive);
	margin-bottom: 20px;
}

.entry__meta a {
	color: inherit;
}

.entry__content,
.entry__excerpt {
	font-size: 17px;
	line-height: 1.75;
	color: var(--vk-ink);
}

.entry__content h2,
.entry__content h3,
.entry__content h4 {
	font-family: var(--vk-font-display);
	color: var(--vk-forest);
	font-weight: 600;
	line-height: 1.2;
	margin: 40px 0 14px;
}

.entry__content h2 { font-size: 28px; }
.entry__content h3 { font-size: 23px; }
.entry__content h4 { font-size: 19px; }

.entry__content img,
.entry__content iframe {
	max-width: 100%;
	height: auto;
}

.entry__content blockquote {
	margin: 32px 0;
	padding: 4px 0 4px 26px;
	border-left: 2px solid var(--vk-gold);
	font-size: 19px;
	line-height: 1.7;
	color: var(--vk-slate);
}

.entry__content ul,
.entry__content ol {
	padding-left: 22px;
}

.entry__content table {
	width: 100%;
	border-collapse: collapse;
}

.entry__content th,
.entry__content td {
	border: 1px solid var(--vk-sage);
	padding: 10px 12px;
	text-align: left;
}

.entry__content pre {
	overflow-x: auto;
	background: #eceadd;
	padding: 18px;
	border: 1px solid var(--vk-sage);
}

.entry__footer {
	margin-top: 28px;
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--vk-olive);
}

.archive-header {
	margin-bottom: 52px;
}

.archive-header__title {
	font-family: var(--vk-font-display);
	font-weight: 600;
	font-size: clamp(28px, 3.2vw, 40px);
	margin: 0;
	color: var(--vk-forest);
}

.archive-header__desc {
	font-size: 17px;
	line-height: 1.65;
	color: var(--vk-slate);
	margin: 14px 0 0;
	max-width: 640px;
}

.vk-pagination {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--vk-sage);
	font-family: var(--vk-font-body);
	font-size: 13px;
	letter-spacing: 0.08em;
}

.vk-pagination .page-numbers {
	display: inline-block;
	padding: 9px 14px;
	border: 1px solid var(--vk-sage);
	color: var(--vk-forest);
	margin-right: 6px;
}

.vk-pagination .page-numbers.current,
.vk-pagination .page-numbers:hover {
	background: var(--vk-forest);
	color: var(--vk-paper);
	border-color: var(--vk-forest);
}

.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid var(--vk-sage);
	font-family: var(--vk-font-body);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* --- sidebar --- */
.sidebar .widget {
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--vk-sage);
}

.sidebar .widget:last-child {
	border-bottom: 0;
}

.sidebar .widget-title {
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--vk-olive);
	margin: 0 0 18px;
}

.sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sidebar ul a {
	font-size: 15px;
	color: var(--vk-forest);
}

.sidebar ul a:hover {
	color: var(--vk-link-hover);
}

/* --- search form --- */
.vk-search-form {
	display: flex;
	gap: 0;
	max-width: 460px;
}

.vk-search-form .vk-search-form__field {
	flex: 1;
	padding: 13px 14px;
	font-size: 15px;
	border: 1px solid var(--vk-sage);
	background: #fff;
	color: var(--vk-ink);
	outline: none;
}

.vk-search-form .vk-search-form__submit {
	border: none;
	background: var(--vk-forest);
	color: var(--vk-paper);
	padding: 0 22px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

/* --- 404 --- */
.error-404 {
	text-align: center;
	padding-top: 96px;
	padding-bottom: 96px;
}

.error-404__code {
	font-family: var(--vk-font-display);
	font-size: clamp(64px, 12vw, 140px);
	line-height: 1;
	color: var(--vk-gold);
	margin: 0 0 8px;
}

.error-404__title {
	font-family: var(--vk-font-display);
	font-weight: 600;
	font-size: clamp(26px, 3vw, 38px);
	margin: 0 0 16px;
	color: var(--vk-forest);
}

.error-404__text {
	font-size: 17px;
	line-height: 1.7;
	color: var(--vk-slate);
	margin: 0 auto 32px;
	max-width: 520px;
}

.error-404 .vk-search-form {
	margin: 0 auto 32px;
}

/* --- comments --- */
.comments-area {
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid var(--vk-sage);
}

.comments-title,
.comment-reply-title {
	font-family: var(--vk-font-display);
	font-weight: 600;
	font-size: 24px;
	color: var(--vk-forest);
	margin: 0 0 28px;
}

.comment-list {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}

.comment-list ol.children {
	list-style: none;
	margin: 0;
	padding-left: 32px;
}

.comment-list .comment-body {
	padding: 24px 0;
	border-bottom: 1px solid var(--vk-sage);
}

.comment-list .comment-author {
	font-family: var(--vk-font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--vk-forest);
}

.comment-list .comment-author img {
	vertical-align: middle;
	margin-right: 10px;
}

.comment-list .comment-metadata {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--vk-olive);
	margin: 6px 0 12px;
}

.comment-list .comment-metadata a {
	color: inherit;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
	width: 100%;
	padding: 13px 14px;
	font-size: 15px;
	border: 1px solid var(--vk-sage);
	background: #fff;
	color: var(--vk-ink);
	outline: none;
}

.comment-respond label {
	display: block;
	font-family: var(--vk-font-body);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--vk-slate);
	margin-bottom: 8px;
}

.comment-respond .comment-form-comment,
.comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
	margin-bottom: 20px;
}

.comment-respond .submit {
	border: none;
	background: var(--vk-forest);
	color: var(--vk-paper);
	padding: 15px 30px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

.no-comments {
	color: var(--vk-slate);
}


/* 19. Scroll reveal ====================================================== */

/* Hidden only once JS has confirmed it can reveal them again. */
.js-reveal-ready [data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal-ready [data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}


/* 20. Responsive ========================================================= */

/* --- narrow: below 1080px --- */
@media (max-width: 1079px) {
	.two-col,
	.enquiry__inner,
	.contact-grid,
	.content-layout,
	.site-plan__inner,
	.about-split {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-split__figure {
		aspect-ratio: 16 / 10;
	}

	/* Keep-row variant stays two columns here. */
	.about-split.about-split--keep-row {
		grid-template-columns: 0.85fr 1.15fr;
		gap: 34px;
	}

	.about-split--keep-row .about-split__figure {
		aspect-ratio: 4 / 5;
	}

	.site-plan__text {
		max-width: none;
	}

	.usp-grid,
	.pri-grid,
	.hl-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

/* --- mobile: below 860px --- */
@media (max-width: 859px) {
	:root {
		--vk-gutter: 20px;
		--vk-header-h: 76px;
	}

	.site-brand {
		/* padding: 7px 12px; */
	}

	.site-brand__logo {
		height: 40px;
	}

	.footer-brand__logo {
		height: 48px;
	}

	.site-plan__figure {
		padding: 12px;
	}

	.about-split__media {
		padding: 0 10px 10px 0;
	}

	.about-split__media::before {
		top: 10px;
		left: 10px;
	}

	.about-split__figure {
		aspect-ratio: 4 / 3;
	}

	/* --- keep-row variant on phones ---------------------------------------
	   Stays side by side. The text column lands around 190px, so the heading
	   and body scale down and the gold offset frame tightens to match. */
	.about-split.about-split--keep-row {
		grid-template-columns: 0.78fr 1.22fr;
		gap: 18px;
	}

	.about-split--keep-row .about-split__media {
		padding: 0 7px 7px 0;
	}

	.about-split--keep-row .about-split__media::before {
		top: 7px;
		left: 7px;
	}

	.about-split--keep-row .about-split__figure {
		aspect-ratio: 3 / 4;
	}

	/* Too narrow to read at this size. */
	.about-split--keep-row .about-split__caption {
		display: none;
	}

	.about-split--keep-row .section-title {
		font-size: 19px;
		line-height: 1.2;
		margin-bottom: 14px;
		word-spacing: normal;
	}

	.about-split--keep-row .lead {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 14px;
	}

	.brand-watermark {
		width: 240px;
		right: -30px;
		bottom: -40px;
	}

	.primary-nav {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.usp-grid,
	.hl-grid,
	.pri-grid {
		grid-template-columns: 1fr;
	}

	.metric-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.vk-form {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.section__inner,
	.section__inner--sm {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.section__inner--xs,
	.cta-strip__inner {
		padding-top: 52px;
		padding-bottom: 52px;
	}

	.hero__inner {
		padding-top: 72px;
		padding-bottom: 76px;
	}

	.hero__stats {
		gap: 28px;
	}

	.page-banner__inner {
		padding-top: 56px;
		padding-bottom: 58px;
	}

	.fact-row {
		flex-direction: column;
	}

	.fact:first-child {
		border-right: 0;
		border-bottom: 1px solid var(--vk-sage);
	}

	.fact {
		padding-left: 0;
		padding-right: 0;
	}

	.section-head {
		margin-bottom: 36px;
	}

	.comment-list ol.children {
		padding-left: 16px;
	}
}

/* --- small phones --- */
@media (max-width: 520px) {
	.metric-grid {
		grid-template-columns: 1fr;
	}

	.hero__actions .btn,
	.hero__actions {
		width: 100%;
		justify-content: center;
	}

	.vk-search-form {
		flex-direction: column;
	}

	.vk-search-form .vk-search-form__submit {
		padding: 14px;
	}
}

/* --- motion preferences --- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}

	.js-reveal-ready [data-reveal] {
		opacity: 1;
		transform: none;
	}

	.site-plan__boundary {
		animation: none;
		stroke-dashoffset: 0;
	}
}
