/* HYNAF — shared design system used by every hy-* widget.
   Colors, typography, buttons, common layouts. */

.hy {
	--hy-primary:      #16233B;
	--hy-primary-deep: #0C1424;
	--hy-primary-soft: #1e3050;
	--hy-gold:         #C3A15C;
	--hy-gold-light:   #D9BC82;
	--hy-cream:        #F5F1E8;
	--hy-cream-warm:   #FBF8F2;
	--hy-ink:          #0C1424;
	--hy-muted:        #7A8AA0;
	--hy-line:         rgba(195,161,92,.28);

	--hy-serif: 'Cormorant Garamond', Georgia, serif;
	--hy-sans:  'Montserrat', Helvetica, Arial, sans-serif;

	--hy-pad-y:  clamp(60px, 8vw, 105px);
	--hy-pad-x:  6vw;
	--hy-max:    1180px;

	color: var(--hy-ink);
	font-family: var(--hy-sans);
	-webkit-font-smoothing: antialiased;
}
.hy *, .hy *::before, .hy *::after { box-sizing: border-box; }
.hy img { max-width: 100%; display: block; }

/* ==========================================================================
   THEME-LEAK KILLER — Hello Elementor / Astra / etc. try to colour every
   link + button and strip our positioning. These rules take precedence
   inside .hy so our design system controls every colour and layout.
   ========================================================================== */
.hy a,
.hy a:link,
.hy a:visited { color: inherit !important; text-decoration: none !important; background: none !important; }
.hy a:hover,
.hy a:focus,
.hy a:active { text-decoration: none !important; }
.hy button {
	appearance: none; -webkit-appearance: none;
	background: transparent; border: 0; padding: 0; margin: 0;
	color: inherit; font: inherit; text-align: inherit; cursor: pointer;
	border-radius: 0;
}
/* Buttons — real styling layered back on with !important so theme can't wipe */
.hy .hy__btn,
.hy .hy__btn:link,
.hy .hy__btn:visited {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 32px !important;
	font-family: var(--hy-sans) !important;
	font-size: 11px !important;
	letter-spacing: .22em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	border-width: 1px !important;
	border-style: solid !important;
	border-radius: 0 !important;
	cursor: pointer !important;
	transition: all .3s ease !important;
	box-shadow: none !important;
}
.hy .hy__btn--gold,
.hy .hy__btn--gold:link,
.hy .hy__btn--gold:visited {
	background: var(--hy-gold) !important;
	color: var(--hy-primary-deep) !important;
	border-color: var(--hy-gold) !important;
}
.hy .hy__btn--gold:hover {
	background: var(--hy-gold-light) !important;
	color: var(--hy-primary-deep) !important;
	border-color: var(--hy-gold-light) !important;
}
.hy .hy__btn--ghost,
.hy .hy__btn--ghost:link,
.hy .hy__btn--ghost:visited {
	background: transparent !important;
	color: #fff !important;
	border-color: rgba(255,255,255,.36) !important;
}
.hy .hy__btn--ghost:hover {
	border-color: var(--hy-gold) !important;
	color: var(--hy-gold-light) !important;
}
.hy .hy__link-gold,
.hy .hy__link-gold:link,
.hy .hy__link-gold:visited {
	display: inline-block !important;
	margin-top: 28px !important;
	color: var(--hy-primary) !important;
	background: transparent !important;
	text-decoration: none !important;
	font-family: var(--hy-sans) !important;
	font-size: 11px !important;
	letter-spacing: .2em !important;
	text-transform: uppercase !important;
	font-weight: 500 !important;
	border-bottom: 1px solid var(--hy-gold) !important;
	padding-bottom: 7px !important;
	transition: color .3s ease !important;
	cursor: pointer !important;
}
.hy .hy__link-gold:hover { color: var(--hy-gold) !important; }
.hy .hy__link-gold--on-dark,
.hy .hy__link-gold--on-dark:link,
.hy .hy__link-gold--on-dark:visited { color: #fff !important; }
.hy .hy__link-gold--on-dark:hover { color: var(--hy-gold-light) !important; }
.hy em { font-style: normal; }

/* Section shell */
.hy__section { padding: var(--hy-pad-y) var(--hy-pad-x); }
.hy__wrap    { max-width: var(--hy-max); margin: 0 auto; }
.hy__centered{ text-align: center; }
.hy__head    { max-width: 680px; margin: 0 auto 54px; text-align: center; }

/* Common atoms */
.hy__eyebrow {
	font-size: 10.5px;
	letter-spacing: .44em;
	text-transform: uppercase;
	color: var(--hy-gold);
	font-weight: 500;
	margin-bottom: 24px;
}
.hy__rule { width: 52px; height: 1px; background: var(--hy-gold); margin: 26px 0; border: 0; }

.hy__h2 {
	font-family: var(--hy-serif);
	font-weight: 300;
	font-size: clamp(2rem, 3.8vw, 3.1rem);
	color: var(--hy-primary);
	line-height: 1.16;
	margin: 0;
}
.hy__h2 em { font-style: normal; color: var(--hy-gold); }

.hy__body {
	font-size: clamp(15px, 1.3vw, 16.5px);
	line-height: 1.95;
	color: #4a5566;
	font-weight: 300;
	margin: 20px 0 0;
}

/* Buttons */
.hy__btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 16px 38px;
	font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
	text-decoration: none; font-weight: 500; cursor: pointer;
	transition: .3s; border: 1px solid transparent; line-height: 1;
	font-family: var(--hy-sans);
}
.hy__btn--gold  { background: var(--hy-gold); color: var(--hy-primary-deep); border-color: var(--hy-gold); }
.hy__btn--gold:hover  { background: var(--hy-gold-light); border-color: var(--hy-gold-light); }
.hy__btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.36); }
.hy__btn--ghost:hover { border-color: var(--hy-gold); color: var(--hy-gold-light); }
.hy__btn--outline { border-color: var(--hy-gold); color: var(--hy-gold-light); padding: 11px 26px; letter-spacing: .16em; }
.hy__btn--outline:hover { background: var(--hy-gold); color: var(--hy-primary-deep); }

.hy__link-gold {
	display: inline-block; margin-top: 28px;
	color: var(--hy-primary); text-decoration: none;
	font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
	border-bottom: 1px solid var(--hy-gold); padding-bottom: 7px;
	transition: .3s; font-weight: 500; cursor: pointer;
}
.hy__link-gold:hover { color: var(--hy-gold); }
.hy__link-gold--on-dark { color: #fff; }
.hy__link-gold--on-dark:hover { color: var(--hy-gold-light); }

/* Backgrounds */
.hy--dark  { background: var(--hy-primary); color: #fff; }
.hy--deep  { background: var(--hy-primary-deep); color: #fff; }
.hy--cream { background: var(--hy-cream); }
.hy--warm  { background: var(--hy-cream-warm); }
.hy--dark .hy__h2, .hy--deep .hy__h2 { color: #fff; }
.hy--dark .hy__body, .hy--deep .hy__body { color: rgba(255,255,255,.66); }

/* Image plate placeholder */
.hy__imgbox {
	aspect-ratio: 4/5;
	background: linear-gradient(150deg, var(--hy-primary-soft), var(--hy-primary-deep));
	position: relative;
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.hy__imgbox::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(195,161,92,.28); pointer-events: none; }
.hy__imgbox > span { color: rgba(255,255,255,.2); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; }
.hy__imgbox img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Split layout */
.hy__split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* Small helper */
.hy .hy__hero-cta { display: flex !important; gap: 16px !important; margin-top: 44px !important; flex-wrap: wrap !important; }
.hy .hy__hero-cta--center { justify-content: center !important; }

/* ============================================================
   HEADER
   ============================================================ */
.hy-hdr { position: absolute; top: 0; left: 0; right: 0; z-index: 100; padding: 26px 6vw; display: flex; align-items: center; justify-content: space-between; }
.hy-hdr.is-solid, .hy-hdr.is-sticky { position: fixed; background: rgba(12,20,36,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hy-hdr__logo { display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none; }
.hy-hdr__mark { width: 46px; height: 46px; border: 1px solid var(--hy-gold); display: flex; align-items: center; justify-content: center; font-family: var(--hy-serif); font-size: 26px; color: var(--hy-gold); flex-shrink: 0; }
.hy-hdr__logo-img { height: 46px; width: auto; }
.hy-hdr__n { font-family: var(--hy-serif); font-size: 22px; color: #fff; letter-spacing: .3em; line-height: 1; }
.hy-hdr__s { font-size: 7.5px; letter-spacing: .28em; color: var(--hy-gold); margin-top: 5px; text-transform: uppercase; }
.hy-hdr__nav { display: flex; align-items: center; gap: 34px; }
.hy-hdr__nav a { color: rgba(255,255,255,.86); text-decoration: none; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; transition: .25s; cursor: pointer; }
.hy-hdr__nav a:hover, .hy-hdr__nav a.is-on { color: var(--hy-gold-light); }
.hy .hy-hdr__burger { display: none !important; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); background: transparent; cursor: pointer; padding: 0; position: relative; }
.hy .hy-hdr__burger span { display: block; width: 18px; height: 1px; background: #fff; margin: 4px auto; }

@media (max-width: 900px) {
	.hy .hy-hdr__burger { display: block !important; }
	.hy-hdr__nav { position: fixed; top: 0; left: 0; width: min(320px, 84vw); height: 100vh; background: var(--hy-primary-deep); flex-direction: column; align-items: flex-start; gap: 0; padding: 100px 32px 40px; transform: translateX(-100%); transition: transform .35s ease; z-index: 90; overflow-y: auto; }
	.hy-hdr__nav.is-open { transform: none; }
	.hy-hdr__nav a { padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.hy-ft { background: var(--hy-primary-deep); color: rgba(255,255,255,.55); padding: 84px 6vw 34px; }
.hy-ft__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; max-width: 1180px; margin: 0 auto; }
.hy-ft__logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.hy-ft__logo .hy-hdr__mark { border-color: var(--hy-gold); color: var(--hy-gold); }
.hy-ft__logo .hy-hdr__n { color: #fff; }
.hy-ft h5 { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--hy-gold); margin: 0 0 22px; font-weight: 500; font-family: var(--hy-sans); }
.hy-ft a, .hy-ft p { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13.5px; line-height: 2.1; font-weight: 300; display: block; cursor: pointer; margin: 0; }
.hy-ft a:hover { color: var(--hy-gold-light); }
/* Tagline MUST come after generic .hy-ft p so it wins on specificity/order */
.hy-ft p.hy-ft__tag { font-family: var(--hy-serif); font-size: 1.1rem; color: rgba(255,255,255,.72); margin-top: 22px; line-height: 1.7; font-weight: 300; }
.hy-ft__bottom { max-width: 1180px; margin: 60px auto 0; padding-top: 26px; border-top: 1px solid rgba(195,161,92,.16); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.hy-ft__bottom p { font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.35); }

@media (max-width: 900px) { .hy-ft__grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
@media (max-width: 560px) { .hy-ft__grid { grid-template-columns: 1fr; } }

/* ============================================================
   HERO (home)
   ============================================================ */
.hy-hero {
	position: relative !important;
	min-height: 100vh;
	display: flex !important; align-items: center !important;
	overflow: hidden !important;
	background: var(--hy-primary-deep) !important;
	color: #fff;
	isolation: isolate;
}
.hy-hero__media {
	position: absolute !important; inset: 0 !important;
	overflow: hidden;
	z-index: 0;
	background: linear-gradient(160deg, var(--hy-primary-soft), var(--hy-primary-deep));
}
.hy-hero__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(115deg, rgba(12,20,36,.90) 0%, rgba(12,20,36,.62) 48%, rgba(12,20,36,.34) 100%);
	z-index: 2;
}
.hy-hero__media img {
	position: absolute !important; inset: 0 !important;
	width: 100% !important; height: 100% !important;
	object-fit: cover !important;
	z-index: 1;
	max-width: none;
	margin: 0;
}
.hy-hero__glow::after {
	content: ""; position: absolute; inset: 0; z-index: 3;
	background-image: radial-gradient(circle at 78% 32%, rgba(195,161,92,.16), transparent 42%);
	pointer-events: none;
}
.hy-hero__inner {
	position: relative !important;
	z-index: 5 !important;
	padding: 0 6vw;
	max-width: 1000px; width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}
.hy-hero__h1 { font-family: var(--hy-serif) !important; font-size: clamp(2.9rem, 6.6vw, 5.6rem) !important; color: #fff !important; line-height: 1.06 !important; font-weight: 300 !important; margin: 0 !important; }
.hy-hero__h1 em { font-style: normal !important; color: var(--hy-gold-light) !important; }
.hy-hero__p { color: rgba(255,255,255,.74) !important; font-size: clamp(.95rem, 1.3vw, 1.12rem) !important; line-height: 1.85 !important; max-width: 53ch; margin: 26px 0 0 !important; font-weight: 300 !important; }
.hy-hero .hy__eyebrow { color: var(--hy-gold) !important; font-family: var(--hy-sans) !important; font-size: 10.5px !important; letter-spacing: .44em !important; text-transform: uppercase !important; font-weight: 500 !important; margin-bottom: 24px !important; display: block; }

/* Hero-scoped buttons — source: .btn {padding:16px 38px; font-size:11px; letter-spacing:.2em}
   Uses !important to defeat theme + shared button overrides. */
.hy .hy-hero .hy-hero__btn,
.hy .hy-hero .hy-hero__btn:link,
.hy .hy-hero .hy-hero__btn:visited {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 16px 38px !important;
	font-family: var(--hy-sans) !important;
	font-size: 11px !important;
	letter-spacing: .2em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	border: 1px solid transparent !important;
	border-radius: 0 !important;
	transition: .3s !important;
	cursor: pointer !important;
	box-shadow: none !important;
}
.hy .hy-hero .hy-hero__btn--gold,
.hy .hy-hero .hy-hero__btn--gold:link,
.hy .hy-hero .hy-hero__btn--gold:visited {
	background: var(--hy-gold) !important;
	color: var(--hy-primary-deep) !important;
	border-color: var(--hy-gold) !important;
}
.hy .hy-hero .hy-hero__btn--gold:hover {
	background: var(--hy-gold-light) !important;
	border-color: var(--hy-gold-light) !important;
	color: var(--hy-primary-deep) !important;
}
.hy .hy-hero .hy-hero__btn--ghost,
.hy .hy-hero .hy-hero__btn--ghost:link,
.hy .hy-hero .hy-hero__btn--ghost:visited {
	background: transparent !important;
	color: #fff !important;
	border-color: rgba(255,255,255,.36) !important;
}
.hy .hy-hero .hy-hero__btn--ghost:hover {
	border-color: var(--hy-gold) !important;
	color: var(--hy-gold-light) !important;
}
.hy .hy-hero .hy-hero__ctas {
	display: flex !important;
	gap: 16px !important;
	margin-top: 44px !important;
	flex-wrap: wrap !important;
}
.hy-hero__cue {
	position: absolute !important; bottom: 38px; left: 50%;
	transform: translateX(-50%); z-index: 5;
	color: rgba(255,255,255,.4) !important;
	font-size: 9px !important; letter-spacing: .3em !important;
	text-transform: uppercase !important; text-align: center;
}
.hy-hero__cue i { display: block; width: 1px; height: 44px; background: linear-gradient(var(--hy-gold), transparent); margin: 12px auto 0; }

@media (max-width: 640px) {
	.hy-hero { min-height: 88vh; }
	.hy-hero__inner { padding: 0 5vw; }
	.hy-hero__h1 { font-size: 2.4rem !important; }
	.hy .hy-hero__ctas { flex-direction: column !important; align-items: stretch !important; }
	.hy .hy-hero .hy-hero__btn { width: 100%; padding: 15px 24px !important; }
	.hy-hero__cue { bottom: 20px !important; }
}

/* Subhero (interior pages) */
.hy-sub { position: relative; min-height: 60vh; display: flex; align-items: center; overflow: hidden; background: var(--hy-primary-deep); color: #fff; }
.hy-sub__media { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(12,20,36,.92) 0%, rgba(12,20,36,.6) 60%, rgba(12,20,36,.4) 100%), linear-gradient(150deg, var(--hy-primary-soft), var(--hy-primary-deep)); }
.hy-sub__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hy-sub__inner { position: relative; z-index: 5; padding: 130px 6vw 70px; width: 100%; max-width: 1180px; margin: 0 auto; }
.hy-sub__h1 { font-family: var(--hy-serif); font-size: clamp(2.5rem, 5.4vw, 4.4rem); color: #fff; line-height: 1.08; font-weight: 300; margin: 0; }
.hy-sub__h1 em { font-style: normal; color: var(--hy-gold-light); }
.hy-sub__p { color: rgba(255,255,255,.72); font-size: clamp(15px, 1.05rem, 1.05rem); line-height: 1.85; max-width: 52ch; margin: 20px 0 0; font-weight: 300; }
.hy-sub .hy__eyebrow { color: var(--hy-gold) !important; font-size: 10.5px !important; letter-spacing: .44em !important; font-weight: 500 !important; margin-bottom: 24px !important; }

/* Subhero responsive */
@media (max-width: 900px) {
	.hy-sub { min-height: 52vh; }
	.hy-sub__inner { padding: 110px 5vw 60px; }
}
@media (max-width: 640px) {
	.hy-sub { min-height: 44vh; }
	.hy-sub__inner { padding: 96px 5vw 48px; }
	.hy-sub__h1 { font-size: clamp(2.1rem, 8vw, 2.6rem) !important; }
}

/* Project hero */
.hy-phero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; background: var(--hy-primary-deep); overflow: hidden; color: #fff; }
.hy-phero__media { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,20,36,.94) 0%, rgba(12,20,36,.5) 45%, rgba(12,20,36,.62) 100%), linear-gradient(150deg, var(--hy-primary-soft), var(--hy-primary-deep)); }
.hy-phero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hy-phero__inner { position: relative; z-index: 5; padding: 130px 6vw 84px; width: 100%; max-width: 1180px; margin: 0 auto; }
.hy-phero__h1 { font-family: var(--hy-serif); font-size: clamp(2.4rem, 6.4vw, 5.2rem); color: #fff; line-height: 1.04; font-weight: 300; margin: 0; }
.hy-phero__p { color: rgba(255,255,255,.74); font-size: clamp(.95rem, 1.3vw, 1.05rem); line-height: 1.85; max-width: 50ch; margin: 20px 0 0; font-weight: 300; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.hy-trust { background: var(--hy-cream); padding: 42px 6vw; }
.hy-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; }
.hy-trust__cell { text-align: center; position: relative; }
.hy-trust__cell:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--hy-line); }
.hy-trust__num { font-family: var(--hy-serif); font-size: clamp(1.9rem, 3vw, 2.4rem); color: var(--hy-primary); line-height: 1; }
.hy-trust__lbl { font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--hy-muted); margin-top: 10px; }

/* Facts strip (project detail) */
.hy-facts { background: var(--hy-primary); padding: 0 6vw; }
.hy-facts__grid { display: grid; grid-template-columns: repeat(5, 1fr); max-width: 1180px; margin: 0 auto; }
.hy-facts__cell { padding: 36px 18px; text-align: center; border-right: 1px solid rgba(195,161,92,.2); }
.hy-facts__cell:last-child { border-right: 0; }
.hy-facts__k { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--hy-gold); }
.hy-facts__v { font-family: var(--hy-serif); font-size: clamp(1.1rem, 1.6vw, 1.4rem); color: #fff; margin-top: 10px; font-weight: 300; }

/* ============================================================
   PILLARS (4 numbered cards on dark)
   ============================================================ */
.hy-pil { background: var(--hy-primary-deep); color: #fff; }
.hy-pil__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.hy-pil__card { background: rgba(255,255,255,.035); border: 1px solid rgba(195,161,92,.2); border-top: 2px solid var(--hy-gold); padding: 42px 30px; transition: .35s; }
.hy-pil__card:hover { background: rgba(195,161,92,.07); transform: translateY(-5px); }
.hy-pil__no { font-family: var(--hy-serif); font-size: 13px; color: var(--hy-gold); letter-spacing: .2em; }
.hy-pil__t { font-family: var(--hy-serif); font-size: clamp(1.35rem, 2vw, 1.55rem); color: #fff; margin: 16px 0 14px; font-weight: 400; }
.hy-pil__d { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.56); font-weight: 300; }

/* ============================================================
   PROJECTS TABS (filterable project grid)
   ============================================================ */
.hy-pj__tabs { display: flex; gap: 34px; justify-content: center; margin: 0 0 52px; flex-wrap: wrap; }
.hy-pj__tab { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--hy-muted); cursor: pointer; padding-bottom: 9px; border: 0; border-bottom: 1px solid transparent; background: none; font-family: var(--hy-sans); font-weight: 500; transition: .3s; }
.hy-pj__tab.is-active, .hy-pj__tab:hover { color: var(--hy-primary); border-bottom-color: var(--hy-gold); }
.hy-pj__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.hy-pj__card { background: #fff; overflow: hidden; transition: .35s; border: 1px solid rgba(0,0,0,.05); text-decoration: none; color: inherit; display: block; cursor: pointer; }
.hy-pj__card.is-hidden { display: none; }
.hy-pj__card:hover { transform: translateY(-6px); box-shadow: 0 18px 46px rgba(12,20,36,.13); }
.hy-pj__img { aspect-ratio: 4/3; background: linear-gradient(150deg, var(--hy-primary-soft), var(--hy-primary-deep)); position: relative; display: flex; align-items: center; justify-content: center; }
.hy-pj__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hy-pj__img > span { color: rgba(255,255,255,.2); font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; }
.hy-pj__badge { position: absolute; top: 16px; left: 16px; background: var(--hy-gold); color: var(--hy-primary-deep); font-size: 8.5px; letter-spacing: .2em; text-transform: uppercase; padding: 7px 13px; font-weight: 600; z-index: 2; }
.hy-pj__body { padding: 28px 26px 32px; }
.hy-pj__body h3 { font-family: var(--hy-serif); font-size: clamp(1.2rem, 1.8vw, 1.5rem); color: var(--hy-primary); font-weight: 400; margin: 0; }
.hy-pj__loc { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--hy-muted); margin-top: 9px; }
.hy-pj__go { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--hy-gold); margin-top: 20px; display: inline-block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.hy-tst { background: var(--hy-primary-deep); color: #fff; }
.hy-tst__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.hy-tst__card { border: 1px solid rgba(195,161,92,.22); padding: 44px 34px; }
.hy-tst__mark { font-family: var(--hy-serif); font-size: 3.6rem; color: var(--hy-gold); line-height: .6; opacity: .55; }
.hy-tst__q { font-family: var(--hy-serif); font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.68; color: rgba(255,255,255,.86); margin: 22px 0 26px; font-weight: 300; }
.hy-tst__who { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--hy-gold); }
.hy-tst__who i { display: block; font-style: normal; color: rgba(255,255,255,.4); margin-top: 6px; letter-spacing: .16em; }

/* ============================================================
   CTA BAND
   ============================================================ */
.hy-cta { background: var(--hy-primary); text-align: center; position: relative; overflow: hidden; color: #fff; }
.hy-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(195,161,92,.16), transparent 58%); pointer-events: none; }
.hy-cta .hy__wrap { position: relative; z-index: 2; }
.hy-cta .hy__body { color: rgba(255,255,255,.66); margin: 20px auto 0; max-width: 52ch; }
.hy-cta__row { display: flex !important; gap: 16px !important; margin-top: 38px !important; flex-wrap: wrap !important; justify-content: center !important; }

/* CTA-scoped buttons — match source exactly (padding 16px 38px, .2em) */
.hy .hy-cta .hy-cta__btn,
.hy .hy-cta .hy-cta__btn:link,
.hy .hy-cta .hy-cta__btn:visited {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 16px 38px !important;
	font-family: var(--hy-sans) !important;
	font-size: 11px !important;
	letter-spacing: .2em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	border: 1px solid transparent !important;
	border-radius: 0 !important;
	transition: .3s !important;
	cursor: pointer !important;
	box-shadow: none !important;
}
.hy .hy-cta .hy-cta__btn--gold,
.hy .hy-cta .hy-cta__btn--gold:link,
.hy .hy-cta .hy-cta__btn--gold:visited {
	background: var(--hy-gold) !important;
	color: var(--hy-primary-deep) !important;
	border-color: var(--hy-gold) !important;
}
.hy .hy-cta .hy-cta__btn--gold:hover {
	background: var(--hy-gold-light) !important;
	border-color: var(--hy-gold-light) !important;
	color: var(--hy-primary-deep) !important;
}
.hy .hy-cta .hy-cta__btn--ghost,
.hy .hy-cta .hy-cta__btn--ghost:link,
.hy .hy-cta .hy-cta__btn--ghost:visited {
	background: transparent !important;
	color: #fff !important;
	border-color: rgba(255,255,255,.36) !important;
}
.hy .hy-cta .hy-cta__btn--ghost:hover {
	border-color: var(--hy-gold) !important;
	color: var(--hy-gold-light) !important;
}
@media (max-width: 480px) {
	.hy .hy-cta__row { flex-direction: column !important; align-items: stretch !important; }
	.hy .hy-cta .hy-cta__btn { width: 100%; padding: 15px 24px !important; }
}

/* ============================================================
   WHY CHECKLIST (split)
   ============================================================ */
.hy-why { background: var(--hy-cream); }
.hy-why__list { list-style: none; margin: 34px 0 0; padding: 0; }
.hy-why__list li { position: relative; padding-left: 40px; margin-bottom: 30px; }
.hy-why__list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 11px; height: 11px; border: 1px solid var(--hy-gold); transform: rotate(45deg); }
.hy-why__t { font-family: var(--hy-serif); font-size: clamp(1.15rem, 1.6vw, 1.35rem); color: var(--hy-primary); font-weight: 400; margin: 0; }
.hy-why__d { font-size: 14.5px; line-height: 1.85; color: #5a6575; margin: 7px 0 0; font-weight: 300; }

/* ============================================================
   NEWS GRID
   ============================================================ */
.hy-news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.hy-news__card { border-top: 1px solid var(--hy-line); padding-top: 26px; }
.hy-news__date { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--hy-gold); }
.hy-news__t { font-family: var(--hy-serif); font-size: clamp(1.2rem, 1.8vw, 1.45rem); color: var(--hy-primary); margin: 14px 0 12px; line-height: 1.35; font-weight: 400; }
.hy-news__d { font-size: 14px; line-height: 1.8; color: #5a6575; font-weight: 300; }

/* ============================================================
   TIMELINE (About page)
   ============================================================ */
.hy-tl { position: relative; max-width: 880px; margin: 0 auto; }
.hy-tl::before { content: ""; position: absolute; left: 118px; top: 8px; bottom: 8px; width: 1px; background: var(--hy-line); }
.hy-tl__item { position: relative; display: grid; grid-template-columns: 100px 1fr; gap: 56px; padding-bottom: 56px; }
.hy-tl__item:last-child { padding-bottom: 0; }
.hy-tl__yr { font-family: var(--hy-serif); font-size: clamp(1.3rem, 2.2vw, 1.65rem); color: var(--hy-gold); text-align: right; line-height: 1.2; padding-top: 2px; }
.hy-tl__item::after { content: ""; position: absolute; left: 113px; top: 12px; width: 11px; height: 11px; background: var(--hy-cream-warm); border: 1px solid var(--hy-gold); transform: rotate(45deg); }
.hy-tl__t { font-family: var(--hy-serif); font-size: clamp(1.2rem, 1.9vw, 1.5rem); color: var(--hy-primary); font-weight: 400; margin: 0; }
.hy-tl__d { font-size: 15px; line-height: 1.9; color: #5a6575; margin: 9px 0 0; font-weight: 300; }
@media (max-width: 900px) {
	.hy-tl::before { left: 8px; }
	.hy-tl__item { grid-template-columns: 1fr; gap: 8px; padding-left: 38px; }
	.hy-tl__item::after { left: 3px; }
	.hy-tl__yr { text-align: left; }
}

/* ============================================================
   PULLQUOTE
   ============================================================ */
.hy-pq { background: var(--hy-primary); text-align: center; color: #fff; }
.hy-pq__q { font-family: var(--hy-serif); font-size: clamp(1.7rem, 3.6vw, 2.9rem); color: #fff; line-height: 1.42; font-weight: 300; max-width: 20ch; margin: 0 auto; }
.hy-pq__q em { font-style: normal; color: var(--hy-gold-light); }
.hy-pq__attr { font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--hy-gold); margin-top: 34px; }

/* ============================================================
   VISION / MISSION (2 cards)
   ============================================================ */
.hy-vv { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 10px; }
.hy-vv__card { background: #fff; border: 1px solid rgba(0,0,0,.06); border-top: 2px solid var(--hy-gold); padding: 48px 42px; }
.hy-vv__card h3 { font-family: var(--hy-serif); font-size: clamp(1.4rem, 2.2vw, 1.7rem); color: var(--hy-primary); font-weight: 400; margin: 0; }
.hy-vv__card p { font-size: 15.5px; line-height: 1.95; color: #5a6575; margin: 16px 0 0; font-weight: 300; }

/* ============================================================
   STANDARD GRID — 3-col cards with rotated-diamond icon
   ============================================================ */
.hy-std__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.hy-std__card { border: 1px solid var(--hy-line); padding: 44px 34px; background: #fff; transition: border-color .3s ease; }
.hy-std__card:hover { border-color: var(--hy-gold); }
.hy-std__ico { width: 46px; height: 46px; border: 1px solid var(--hy-gold); transform: rotate(45deg); margin-bottom: 26px; }
.hy-std__t { font-family: var(--hy-serif); font-size: clamp(1.35rem, 2vw, 1.6rem); color: var(--hy-primary); font-weight: 400; margin: 0; }
.hy-std__d { font-size: 14.5px; line-height: 1.85; color: #5a6575; margin: 14px 0 0; font-weight: 300; }
@media (max-width: 900px) { .hy-std__grid { grid-template-columns: 1fr; } }

/* ============================================================
   JOURNEY GRID — 7+1 numbered step cards (Standard page)
   ============================================================ */
.hy-jrn__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.hy-jrn__card { background: #fff; border: 1px solid rgba(0,0,0,.06); border-top: 2px solid var(--hy-gold); padding: 34px 26px 32px; transition: transform .3s ease, box-shadow .3s ease; }
.hy-jrn__card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(12,20,36,.1); }
.hy-jrn__card.is-loop { background: rgba(195,161,92,.08); border-top-color: var(--hy-gold); }
.hy-jrn__st { font-family: var(--hy-serif); font-size: clamp(1.7rem, 2.4vw, 2.1rem); color: var(--hy-gold); line-height: 1; opacity: .55; }
.hy-jrn__t { font-family: var(--hy-serif); font-size: clamp(1.15rem, 1.7vw, 1.4rem); color: var(--hy-primary); margin: 14px 0 10px; font-weight: 400; }
.hy-jrn__d { font-size: 13.5px; line-height: 1.8; color: #5a6575; font-weight: 300; margin: 0; }

@media (max-width: 1100px) { .hy-jrn__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .hy-jrn__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .hy-jrn__grid { grid-template-columns: 1fr; } }

/* ============================================================
   COMMIT LIST — 2-column bullet list with gold-diamond markers
   ============================================================ */
.hy-commit { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 3.5rem; max-width: 900px; margin: 0 auto; padding: 0; list-style: none; }
.hy-commit li { list-style: none; position: relative; padding: 22px 0 22px 38px; border-bottom: 1px solid var(--hy-line); font-size: 15.5px; color: #4a5566; font-weight: 300; line-height: 1.7; }
.hy-commit li::before { content: ""; position: absolute; left: 0; top: 29px; width: 10px; height: 10px; border: 1px solid var(--hy-gold); transform: rotate(45deg); }
@media (max-width: 900px) { .hy-commit { grid-template-columns: 1fr; gap: 0; } }

/* ============================================================
   CONTACT — form + info panel
   ============================================================ */
.hy-contact-w .hy-cgrid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 4rem; align-items: start; max-width: 1180px; margin: 0 auto; }

/* Form */
.hy-cform { margin-top: 30px; position: relative; }
.hy-cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.hy-cform input, .hy-cform select, .hy-cform textarea {
	width: 100%; background: #fff; border: 1px solid rgba(0,0,0,.12);
	padding: 16px 18px; color: var(--hy-ink);
	font-family: var(--hy-sans); font-size: 14px; font-weight: 300;
	margin-bottom: 1.1rem;
	border-radius: 0;
	box-sizing: border-box;
	appearance: none; -webkit-appearance: none;
}
.hy-cform input::placeholder, .hy-cform textarea::placeholder { color: #9aa5b4; }
.hy-cform select { color: #9aa5b4; background-image: linear-gradient(45deg, transparent 50%, #9aa5b4 50%), linear-gradient(135deg, #9aa5b4 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.hy-cform select:valid { color: var(--hy-ink); }
.hy-cform select option { color: var(--hy-ink); }
.hy-cform select option[value=""][disabled] { color: #9aa5b4; }
.hy-cform textarea { min-height: 130px; resize: vertical; }
.hy-cform input:focus, .hy-cform select:focus, .hy-cform textarea:focus { outline: 0; border-color: var(--hy-gold); }
.hy-cform__hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; margin: 0 !important; opacity: 0 !important; pointer-events: none; }

/* Submit button — source-exact, scoped */
.hy .hy-cform__btn,
.hy .hy-cform__btn:link,
.hy .hy-cform__btn:visited {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 16px 38px !important;
	font-family: var(--hy-sans) !important;
	font-size: 11px !important;
	letter-spacing: .2em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: var(--hy-gold) !important;
	color: var(--hy-primary-deep) !important;
	cursor: pointer !important;
	transition: background .3s ease !important;
	margin: 0 !important;
	width: auto !important;
	box-shadow: none !important;
}
.hy .hy-cform__btn:hover { background: var(--hy-gold-light) !important; }
.hy .hy-cform__btn[disabled] { opacity: .6; cursor: wait !important; }

.hy-cform__msg { margin-top: 16px; padding: 14px 18px; font-size: 13.5px; line-height: 1.6; border: 1px solid transparent; display: none; }
.hy-cform__msg.is-visible { display: block; }
.hy-cform__msg.is-success { background: rgba(195,161,92,.08); color: var(--hy-primary); border-color: var(--hy-gold); }
.hy-cform__msg.is-error   { background: rgba(200, 60, 60, .06); color: #8f2222; border-color: rgba(200, 60, 60, .3); }

/* Info panel */
.hy-cinfo { background: var(--hy-primary); padding: 48px 40px; color: #fff; }
.hy-cinfo__h { font-family: var(--hy-serif); font-size: clamp(1.35rem, 2vw, 1.6rem); color: #fff; font-weight: 400; margin: 0 0 28px; }
.hy-cblock { padding: 20px 0; border-bottom: 1px solid rgba(195,161,92,.22); }
.hy-cblock:last-child { border-bottom: 0; }
.hy-cblock__k { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--hy-gold); }
.hy-cblock__v { color: rgba(255,255,255,.84); font-size: 15px; line-height: 1.8; margin-top: 8px; font-weight: 300; }
.hy-cblock__v a,
.hy-cblock__v a:link,
.hy-cblock__v a:visited { color: rgba(255,255,255,.84) !important; text-decoration: none !important; }
.hy-cblock__v a:hover { color: var(--hy-gold-light) !important; }

@media (max-width: 900px) {
	.hy-contact-w .hy-cgrid { grid-template-columns: 1fr; gap: 2.4rem; }
	.hy-cform__row { grid-template-columns: 1fr; }
	.hy-cinfo { padding: 40px 28px; }
}

/* ============================================================
   POSITIONING LIST
   ============================================================ */
.hy-pos { list-style: none; max-width: 820px; margin: 0 auto; padding: 0; }
.hy-pos li { padding: 22px 0; border-bottom: 1px solid var(--hy-line); display: grid; grid-template-columns: 90px 1fr; gap: 26px; align-items: baseline; }
.hy-pos .hy-pos__k { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--hy-gold); }
.hy-pos .hy-pos__v { font-size: 15.5px; line-height: 1.85; color: #4a5566; font-weight: 300; }
@media (max-width: 900px) { .hy-pos li { grid-template-columns: 1fr; gap: 8px; } }

/* ============================================================
   FEATURE PROJECT (dark 2-col)
   ============================================================ */
.hy-feat { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 640px; background: var(--hy-primary); color: #fff; }
.hy-feat__media { position: relative; background: linear-gradient(150deg, var(--hy-primary-soft), var(--hy-primary-deep)); display: flex; align-items: center; justify-content: center; }
.hy-feat__media::before { content: ""; position: absolute; inset: 26px; border: 1px solid rgba(195,161,92,.26); pointer-events: none; }
.hy-feat__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hy-feat__media > span { color: rgba(255,255,255,.2); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; text-align: center; }
.hy-feat__play { width: 74px; height: 74px; border: 1px solid var(--hy-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.hy-feat__play::after { content: ""; border-left: 14px solid var(--hy-gold); border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }
.hy-feat__body { padding: 6vw 5vw; display: flex; flex-direction: column; justify-content: center; }
.hy-feat__body .hy__h2 { color: #fff; }
.hy-feat__body .hy__body { color: rgba(255,255,255,.66); }
.hy-feat__specs { display: flex; flex-wrap: wrap; margin: 34px 0 8px; border-top: 1px solid rgba(195,161,92,.25); }
.hy-feat__specs > div { flex: 1 1 50%; padding: 18px 0; border-bottom: 1px solid rgba(195,161,92,.25); }
.hy-feat__specs .k { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--hy-gold); }
.hy-feat__specs .v { font-family: var(--hy-serif); font-size: clamp(1rem, 1.3vw, 1.15rem); color: #fff; margin-top: 6px; font-weight: 300; }
@media (max-width: 900px) { .hy-feat { grid-template-columns: 1fr; } .hy-feat__media { min-height: 340px; } }

/* ============================================================
   Responsive core
   ============================================================ */
@media (max-width: 900px) {
	.hy__section { padding: 70px 6vw; }
	.hy__split { grid-template-columns: 1fr; gap: 3rem; }
	.hy-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 38px; }
	.hy-trust__cell:nth-child(2)::after { display: none; }
	.hy-pil__grid { grid-template-columns: 1fr 1fr; }
	.hy-pj__grid, .hy-tst__grid, .hy-news__grid { grid-template-columns: 1fr; }
	.hy-vv { grid-template-columns: 1fr; }
	.hy-facts__grid { grid-template-columns: 1fr 1fr; }
	.hy-facts__cell { border-bottom: 1px solid rgba(195,161,92,.2); }
}
@media (max-width: 560px) {
	.hy-pil__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HYNAF — Feature Project extras + tighter responsive
   ============================================================ */
.hy-feat--media-right { grid-template-columns: 1fr 1.05fr; }
.hy-feat--media-right .hy-feat__media { order: 2; }
.hy-feat--media-right .hy-feat__body  { order: 1; }

@media (max-width: 900px) {
	.hy-feat--media-right { grid-template-columns: 1fr; }
	.hy-feat--media-right .hy-feat__media,
	.hy-feat--media-right .hy-feat__body { order: initial; }
	.hy-feat__body { padding: 48px 6vw; }
}
@media (max-width: 640px) {
	.hy-feat__media { min-height: 260px; }
	.hy-feat__body { padding: 40px 20px; }
	.hy-feat__specs { margin-top: 24px; }
	.hy-feat__specs > div { flex: 1 1 100%; padding: 14px 0; }
}

/* News — image support + tighter phone gap */
.hy-news__card img { border-radius: 0; }
@media (max-width: 900px) { .hy-news__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .hy-news__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ==========================================================================
   FINAL LOCK — every HYNAF section's background/color/positioning locked
   with !important so Hello Elementor / any theme cannot override.
   Also normalises headings + paragraphs inside .hy scope so theme's h1..h6
   and p styles don't leak in and shift the design.
   ========================================================================== */

/* Normalise inherited theme text styles inside .hy */
.hy h1, .hy h2, .hy h3, .hy h4, .hy h5, .hy h6 {
	font-family: var(--hy-serif) !important;
	font-weight: 400 !important;
	color: inherit;
	margin: 0;
	line-height: 1.16;
	background: none !important;
	text-shadow: none !important;
}
.hy p { margin: 0; color: inherit; }
.hy ul, .hy ol { list-style: none; margin: 0; padding: 0; }
.hy .hy__section {
	padding: var(--hy-pad-y) var(--hy-pad-x) !important;
	position: relative;
	overflow: visible;
}
.hy .hy__wrap { max-width: var(--hy-max) !important; margin: 0 auto !important; }
.hy .hy__h2 { color: var(--hy-primary) !important; }
.hy .hy__h2 em { color: var(--hy-gold) !important; }
.hy .hy__eyebrow {
	font-family: var(--hy-sans) !important;
	font-size: 10.5px !important;
	letter-spacing: .44em !important;
	text-transform: uppercase !important;
	color: var(--hy-gold) !important;
	font-weight: 500 !important;
	margin-bottom: 24px !important;
	display: block;
}
.hy .hy__body {
	font-family: var(--hy-sans) !important;
	font-size: clamp(15px, 1.3vw, 16.5px) !important;
	line-height: 1.95 !important;
	color: #4a5566 !important;
	font-weight: 300 !important;
	margin: 20px 0 0 !important;
}
.hy .hy__rule { width: 52px; height: 1px; background: var(--hy-gold) !important; margin: 26px 0; border: 0; }

/* Section backgrounds — force so theme's `body / .site-content` bg can't win */
.hy .hy-trust  { background: var(--hy-cream) !important; padding: 42px 6vw !important; }
.hy .hy-pil    { background: var(--hy-primary-deep) !important; color: #fff !important; }
.hy .hy-pil .hy__h2, .hy .hy-pil h2 { color: #fff !important; }
.hy .hy-pil .hy__body { color: rgba(255,255,255,.62) !important; }
.hy .hy-feat   { background: var(--hy-primary) !important; color: #fff !important; }
.hy .hy-feat .hy__h2 { color: #fff !important; }
.hy .hy-feat .hy__body { color: rgba(255,255,255,.66) !important; }
.hy .hy-tst    { background: var(--hy-primary-deep) !important; color: #fff !important; }
.hy .hy-tst .hy__h2 { color: #fff !important; }
.hy .hy-tst .hy__body { color: rgba(255,255,255,.62) !important; }
.hy .hy-cta    { background: var(--hy-primary) !important; color: #fff !important; text-align: center; }
.hy .hy-cta .hy__h2 { color: #fff !important; }
.hy .hy-cta .hy__body { color: rgba(255,255,255,.66) !important; }
.hy .hy-why    { background: var(--hy-cream) !important; }
.hy .hy-news   { background: var(--hy-cream-warm) !important; }

/* Split layout normalisation */
.hy .hy__split { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 5rem; align-items: center; }
.hy .hy__imgbox { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.hy .hy__imgbox img { display: block !important; margin: 0 !important; }
/* Image-on-right modifier — flips column order without touching the DOM */
.hy .hy__split--img-right > .hy__imgbox { order: 2; }
.hy .hy__split--img-right > *:not(.hy__imgbox) { order: 1; }

/* Trust cell numbers/labels */
.hy .hy-trust__num { color: var(--hy-primary) !important; }
.hy .hy-trust__lbl { color: var(--hy-muted) !important; }

/* Pillar text */
.hy .hy-pil__t { color: #fff !important; }
.hy .hy-pil__d { color: rgba(255,255,255,.56) !important; }
.hy .hy-pil__no { color: var(--hy-gold) !important; }

/* Project card body */
.hy .hy-pj__body h3 { color: var(--hy-primary) !important; }
.hy .hy-pj__loc    { color: var(--hy-muted) !important; }
.hy .hy-pj__go     { color: var(--hy-gold) !important; }

/* Testimonial marks + text */
.hy .hy-tst__mark { color: var(--hy-gold) !important; opacity: .55; }
.hy .hy-tst__q    { color: rgba(255,255,255,.86) !important; }
.hy .hy-tst__who  { color: var(--hy-gold) !important; }
.hy .hy-tst__who i { color: rgba(255,255,255,.4) !important; }

/* Why-checklist text */
.hy .hy-why__t { color: var(--hy-primary) !important; }
.hy .hy-why__d { color: #5a6575 !important; }

/* News card text */
.hy .hy-news__t    { color: var(--hy-primary) !important; }
.hy .hy-news__d    { color: #5a6575 !important; }
.hy .hy-news__date { color: var(--hy-gold) !important; }
.hy .hy-news__card { border-top: 1px solid var(--hy-line) !important; padding-top: 26px !important; }

/* Feature project block — force grid layout & body colours */
.hy .hy-feat { display: grid !important; grid-template-columns: 1.05fr 1fr !important; min-height: 640px; }
.hy .hy-feat--media-right { grid-template-columns: 1fr 1.05fr !important; }
.hy .hy-feat__media { position: relative !important; overflow: hidden; }
.hy .hy-feat__media img { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; }
.hy .hy-feat__body  { padding: 6vw 5vw !important; display: flex; flex-direction: column; justify-content: center; }
.hy .hy-feat__specs .k { color: var(--hy-gold) !important; }
.hy .hy-feat__specs .v { color: #fff !important; }

/* ==========================================================================
   RESPONSIVE — tighten every section on tablet/mobile
   ========================================================================== */
@media (max-width: 1024px) {
	.hy .hy-trust__grid,
	.hy .hy-pil__grid,
	.hy .hy-pj__grid,
	.hy .hy-tst__grid,
	.hy .hy-news__grid { grid-template-columns: repeat(2, 1fr) !important; }
	.hy .hy-trust__cell:not(:last-child)::after { display: none; }
}
@media (max-width: 900px) {
	.hy .hy__split { grid-template-columns: 1fr !important; gap: 2.5rem; }
	.hy .hy-feat, .hy .hy-feat--media-right { grid-template-columns: 1fr !important; }
	.hy .hy-feat--media-right .hy-feat__media,
	.hy .hy-feat--media-right .hy-feat__body { order: initial; }
	.hy .hy-feat__media { min-height: 320px; }
	.hy .hy-feat__body { padding: 48px 6vw !important; }
	.hy .hy-pj__tabs { gap: 20px; }
}
@media (max-width: 640px) {
	.hy .hy__section { padding: 64px 5vw !important; }
	.hy .hy-trust__grid,
	.hy .hy-pil__grid,
	.hy .hy-pj__grid,
	.hy .hy-tst__grid,
	.hy .hy-news__grid { grid-template-columns: 1fr !important; gap: 20px; }
	.hy .hy__head { margin-bottom: 32px; }
	.hy .hy__h2 { font-size: 1.85rem !important; }
	.hy .hy-trust { padding: 32px 5vw !important; }
	.hy .hy-trust__num { font-size: 1.8rem !important; }
	.hy .hy-tst__card { padding: 32px 24px; }
	.hy .hy-feat__media { min-height: 240px; }
	.hy .hy-feat__body { padding: 40px 5vw !important; }
	.hy .hy-feat__specs > div { flex: 1 1 100% !important; }
	.hy .hy-pj__body { padding: 22px 20px 26px; }
}
