/* =====================================================================
   HR Holistics Modern — design system
   Brand green + teal on deep green-black, generous whitespace,
   oversized display type.
   ===================================================================== */

:root {
	/* Brand — taken from the site's existing Elementor colour kit */
	--teal: #00a8a2;
	--teal-deep: #007f7a;
	--teal-bright: #1de1da;
	--green: #16c24a;
	--green-deep: #0e9b39;
	--green-bright: #1de14f;
	--grad: linear-gradient(120deg, #1de1da 0%, #1de14f 100%);
	--grad-soft: linear-gradient(120deg, #00a8a2 0%, #16c24a 100%);

	--ink: #0d2220;
	--ink-soft: #123330;
	--deep: #06211f;
	--paper: #ffffff;
	--mist: #f0faf8;
	--line: #dbeae7;
	--muted: #54706d;
	--faint: #a9c6c2;
	--font-display: "Sora", system-ui, sans-serif;
	--font-body: "Inter", system-ui, sans-serif;
	--wrap: 1200px;
	--radius: 18px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.75;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	line-height: 1.12;
	margin: 0 0 0.5em;
	font-weight: 700;
	letter-spacing: -0.02em;
}
p { margin: 0 0 1em; }

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

.hrh-skip {
	position: absolute; left: -9999px; top: 0; background: var(--ink);
	color: #fff; padding: 10px 18px; z-index: 999;
}
.hrh-skip:focus { left: 0; }

/* ------------------------------------------------------------------ */
/* Type helpers                                                        */
/* ------------------------------------------------------------------ */
.hrh-eyebrow {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--teal-deep);
	margin: 0 0 18px;
}
.hrh-eyebrow::before {
	content: "";
	display: inline-block;
	width: 34px; height: 2px;
	background: var(--grad-soft);
	vertical-align: middle;
	margin-right: 14px;
}
.hrh-lede { font-size: 19px; color: var(--muted); max-width: 720px; }
.hrh-center { text-align: center; }
.hrh-center .hrh-lede { margin-left: auto; margin-right: auto; }
.hrh-center .hrh-eyebrow::before { display: none; }
.hrh-center .hrh-eyebrow { letter-spacing: 0.32em; }

.hrh-h2 { font-size: clamp(30px, 4.2vw, 46px); }
.hrh-h3 { font-size: clamp(22px, 2.6vw, 28px); }

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */
.hrh-btn {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 34px;
	border-radius: 999px;
	border: 1.5px solid var(--ink);
	transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
	cursor: pointer;
}
.hrh-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 168, 162, 0.3); }
.hrh-btn--dark { background: var(--grad); color: var(--deep); border-color: transparent; }
.hrh-btn--dark:hover { background: var(--grad-soft); color: #fff; }
.hrh-btn--ghost { background: transparent; color: var(--ink); border-color: var(--teal); }
.hrh-btn--ghost:hover { background: var(--mist); }
.hrh-btn--light { background: var(--grad); color: var(--deep); border-color: transparent; }
.hrh-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.hrh-btn--ghost-light:hover { border-color: #fff; }

/* ------------------------------------------------------------------ */
/* Top bar + header                                                    */
/* ------------------------------------------------------------------ */
.hrh-topbar {
	background: var(--deep);
	color: rgba(255, 255, 255, 0.82);
	font-size: 12.5px;
	letter-spacing: 0.04em;
}
.hrh-topbar__inner { display: flex; justify-content: space-between; gap: 16px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.hrh-topbar a { color: #fff; text-decoration: none; transition: color 0.25s; }
.hrh-topbar a:hover { color: var(--teal-bright); }
.hrh-topbar__sep { opacity: 0.4; margin: 0 8px; }

.hrh-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s, box-shadow 0.3s;
}
.hrh-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 10px 40px rgba(6, 33, 31, 0.08); }
.hrh-header__inner { display: flex; align-items: center; gap: 28px; padding-top: 14px; padding-bottom: 14px; }
.hrh-logo img, .hrh-logo .custom-logo { max-height: 56px; width: auto; }
.hrh-nav { margin-left: auto; }
.hrh-nav__list, .hrh-nav ul { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.hrh-nav__list a, .hrh-nav ul a {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	padding: 10px 14px;
	border-radius: 999px;
	transition: background 0.25s;
}
.hrh-nav__list a:hover, .hrh-nav ul a:hover { background: var(--mist); }
.hrh-nav__item.is-current a, .hrh-nav .current-menu-item a { background: var(--grad); color: var(--deep); }
.hrh-header__cta { padding: 12px 26px; }

.hrh-burger { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.hrh-burger span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: transform 0.3s var(--ease), opacity 0.3s; }

/* ------------------------------------------------------------------ */
/* Hero (home) — compact, full-bleed image                             */
/* ------------------------------------------------------------------ */
.hrh-hero { position: relative; overflow: hidden; background: var(--deep); color: #fff; }
.hrh-hero__bg { position: absolute; inset: 0; z-index: 0; }
.hrh-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hrh-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(100deg, rgba(6, 33, 31, 0.9) 0%, rgba(6, 33, 31, 0.62) 34%, rgba(6, 33, 31, 0.12) 70%, rgba(6, 33, 31, 0) 100%),
		linear-gradient(200deg, rgba(29, 225, 218, 0.12) 0%, rgba(29, 225, 79, 0.06) 55%, transparent 100%);
}
.hrh-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: clamp(400px, 56vh, 580px);
	padding-top: 58px;
	padding-bottom: 58px;
}
.hrh-hero__title {
	font-size: clamp(32px, 4.6vw, 56px);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 16px;
	max-width: 860px;
	color: #fff;
}
.hrh-hero__title em { font-style: normal; color: var(--teal-bright); }
@supports (-webkit-background-clip: text) or (background-clip: text) {
	.hrh-hero__title em {
		background: var(--grad);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
}
.hrh-hero .hrh-eyebrow { color: var(--teal-bright); }
.hrh-hero .hrh-eyebrow::before { background: var(--grad); }
.hrh-hero .hrh-lede { color: rgba(255, 255, 255, 0.82); max-width: 640px; }
.hrh-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hrh-hero__badge {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 28px 0 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
}
.hrh-hero__badge strong {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--teal-bright);
}

/* Client marquee */
.hrh-marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--paper); }
.hrh-marquee__track {
	display: flex;
	gap: 72px;
	width: max-content;
	padding: 22px 0;
	animation: hrh-marquee 26s linear infinite;
}
.hrh-marquee__track span {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faint);
	white-space: nowrap;
}
@keyframes hrh-marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------ */
/* Sections                                                            */
/* ------------------------------------------------------------------ */
.hrh-section { padding: 96px 0; }
.hrh-section--mist { background: var(--mist); }
.hrh-section--dark {
	background: radial-gradient(120% 150% at 12% 0%, #0b3f3a 0%, var(--deep) 58%);
	color: #fff;
}
.hrh-section--dark .hrh-eyebrow { color: rgba(255, 255, 255, 0.55); }
.hrh-section--dark .hrh-eyebrow::before { background: #fff; }
.hrh-section--dark .hrh-lede { color: rgba(255, 255, 255, 0.72); }
.hrh-section__head { max-width: 780px; margin-bottom: 56px; }
.hrh-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Split layout */
.hrh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hrh-split__media img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.hrh-split--rev .hrh-split__media { order: 2; }

/* Cards grid */
.hrh-grid { display: grid; gap: 22px; }
.hrh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hrh-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hrh-grid--4 { grid-template-columns: repeat(4, 1fr); }

.hrh-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 34px 30px;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.hrh-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(6, 33, 31, 0.12); border-color: rgba(0, 168, 162, 0.45); }
.hrh-card__num {
	font-family: var(--font-display);
	font-size: 46px;
	font-weight: 800;
	color: transparent;
	-webkit-text-stroke: 1.2px var(--teal);
	line-height: 1;
	margin-bottom: 18px;
}
.hrh-card h3 { font-size: 19px; margin-bottom: 10px; }
.hrh-card p { color: var(--muted); font-size: 15.5px; margin: 0; }
.hrh-card--dark { background: var(--ink-soft); border-color: #1c4a45; }
.hrh-card--dark h3 { color: #fff; }
.hrh-card--dark p { color: rgba(255, 255, 255, 0.65); }

/* Image card (services on home) */
.hrh-imgcard { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; text-decoration: none; }
.hrh-imgcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.hrh-imgcard:hover img { transform: scale(1.06); }
.hrh-imgcard__body {
	position: relative;
	width: 100%;
	padding: 26px;
	color: #fff;
	background: linear-gradient(to top, rgba(6, 33, 31, 0.9), rgba(6, 33, 31, 0));
}
.hrh-imgcard__body h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.hrh-imgcard__body p { color: rgba(255, 255, 255, 0.78); font-size: 14.5px; margin: 0; }

/* Stats */
.hrh-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center; }
.hrh-stat strong {
	font-family: var(--font-display);
	font-size: clamp(40px, 5vw, 60px);
	font-weight: 800;
	letter-spacing: -0.03em;
	display: block;
}
.hrh-stat span { font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.hrh-section--dark .hrh-stat strong { color: var(--teal-bright); }
@supports (-webkit-background-clip: text) or (background-clip: text) {
	.hrh-section--dark .hrh-stat strong {
		background: var(--grad);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
}
.hrh-section--dark .hrh-stat span { color: rgba(255, 255, 255, 0.65); }

/* Price list */
.hrh-pricelist {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 36px;
}
.hrh-pricelist__row { display: flex; align-items: baseline; gap: 14px; padding: 15px 0; }
.hrh-pricelist__row + .hrh-pricelist__row { border-top: 1px solid var(--line); }
.hrh-pricelist__label { font-weight: 500; }
.hrh-pricelist__dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.hrh-pricelist__price { font-family: var(--font-display); font-weight: 700; white-space: nowrap; color: var(--teal-deep); }
.hrh-pricelist__price small { font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: 12.5px; }
.hrh-pricenote { font-size: 13.5px; color: var(--muted); text-align: center; margin-top: 18px; }

/* Vision / mission */
.hrh-vm { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden; }
.hrh-vm > div { padding: 56px 48px; }
.hrh-vm__vision { background: radial-gradient(120% 150% at 10% 0%, #0b3f3a 0%, var(--deep) 60%); color: #fff; }
.hrh-vm__vision h3 { color: #fff; }
.hrh-vm__vision p { color: rgba(255, 255, 255, 0.75); }
.hrh-vm__mission { background: var(--mist); }
.hrh-vm__mission p { color: var(--muted); }

/* Values banner */
.hrh-values__line {
	font-family: var(--font-display);
	font-size: clamp(26px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fff;
	max-width: 900px;
	margin: 0 auto;
}
.hrh-values__line .dim { color: rgba(29, 225, 218, 0.5); }

/* Quote / welcome */
.hrh-quote { max-width: 860px; margin: 0 auto; text-align: center; }
.hrh-quote blockquote {
	margin: 0 0 30px;
	font-size: clamp(19px, 2.4vw, 24px);
	line-height: 1.7;
	font-weight: 400;
	font-style: italic;
	color: var(--ink-soft);
}
.hrh-quote blockquote::before { content: "\201C"; display: block; font-family: var(--font-display); font-size: 84px; line-height: 0.6; color: var(--teal); margin-bottom: 26px; }
.hrh-quote cite { display: block; font-style: normal; }
.hrh-quote cite strong { font-family: var(--font-display); font-size: 19px; display: block; }
.hrh-quote cite span { font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* Team */
.hrh-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hrh-team__member { border-radius: var(--radius); overflow: hidden; background: var(--paper); border: 1px solid var(--line); }
.hrh-team__member img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; filter: saturate(0.85); transition: filter 0.5s, transform 0.6s var(--ease); }
.hrh-team__member:hover img { filter: saturate(1.05); transform: scale(1.03); }
.hrh-team__meta { padding: 20px 24px; }
.hrh-team__meta strong { font-family: var(--font-display); font-size: 17px; display: block; }
.hrh-team__meta span { font-size: 13px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* Checklist */
.hrh-checks { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.hrh-checks li { position: relative; padding-left: 32px; font-size: 15.5px; }
.hrh-checks li::before {
	content: "";
	position: absolute;
	left: 0; top: 7px;
	width: 16px; height: 16px;
	border-radius: 50%;
	background: var(--grad-soft);
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M8 0a8 8 0 100 16A8 8 0 008 0zm3.7 5.7l-4.2 4.6a.75.75 0 01-1.1.02L4.3 8.2a.75.75 0 011.06-1.06l1.53 1.53 3.68-4.04a.75.75 0 111.12 1.06z"/></svg>') center / contain no-repeat;
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M8 0a8 8 0 100 16A8 8 0 008 0zm3.7 5.7l-4.2 4.6a.75.75 0 01-1.1.02L4.3 8.2a.75.75 0 011.06-1.06l1.53 1.53 3.68-4.04a.75.75 0 111.12 1.06z"/></svg>') center / contain no-repeat;
}
.hrh-section--dark .hrh-checks li::before { background: var(--grad); }

/* Steps */
.hrh-steps { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.14em; font-size: clamp(15px, 2vw, 20px); }
.hrh-steps .arrow { color: var(--teal); }

/* Page hero (inner pages) */
.hrh-page-hero { padding: 92px 0 64px; background: linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%); }
.hrh-page-hero__title { font-size: clamp(38px, 5.4vw, 64px); font-weight: 800; letter-spacing: -0.03em; max-width: 900px; }
.hrh-page-hero--dark { background: radial-gradient(120% 150% at 12% 0%, #0b3f3a 0%, var(--deep) 58%); color: #fff; }
.hrh-page-hero--dark .hrh-eyebrow { color: rgba(255, 255, 255, 0.55); }
.hrh-page-hero--dark .hrh-eyebrow::before { background: #fff; }
.hrh-page-hero--dark .hrh-lede { color: rgba(255, 255, 255, 0.72); }

/* Testimonials */
.hrh-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hrh-quotecard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.hrh-quotecard p { font-size: 15.5px; color: var(--muted); font-style: italic; }
.hrh-quotecard strong { font-family: var(--font-display); font-size: 15px; }
.hrh-quotecard span { display: block; font-size: 12.5px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.hrh-quotecard .stars { color: var(--teal); letter-spacing: 4px; margin-bottom: 12px; font-size: 14px; }

/* CTA band */
.hrh-cta {
	background: radial-gradient(110% 160% at 85% 10%, #0b4f47 0%, var(--deep) 55%);
	color: #fff;
	padding: 84px 0;
}
.hrh-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.hrh-cta__title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin: 0; max-width: 620px; }
.hrh-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact cards + form */
.hrh-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hrh-contact-cards .hrh-card a { text-decoration: none; }
.hrh-contact-cards .hrh-card p { margin: 0 0 4px; }

.hrh-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.hrh-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; margin-bottom: 26px; }
.hrh-field { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.hrh-field--full { grid-column: 1 / -1; }
.hrh-field input, .hrh-field select, .hrh-field textarea {
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--ink);
	padding: 13px 16px;
	border: 1.5px solid var(--line);
	border-radius: 10px;
	background: var(--paper);
	transition: border-color 0.25s;
}
.hrh-field input:focus, .hrh-field select:focus, .hrh-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 168, 162, 0.14); }
.hrh-form__hp { position: absolute; left: -9999px; }
.hrh-form__notice { padding: 14px 18px; border-radius: 10px; font-size: 15px; margin-bottom: 20px; }
.hrh-form__notice--ok { background: var(--mist); border: 1px solid var(--teal); color: var(--teal-deep); }
.hrh-form__notice--err { background: #fdf0f0; border: 1px solid #c33; color: #a22; }

.hrh-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.hrh-map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* Footer */
.hrh-footer {
	background: radial-gradient(90% 140% at 90% 0%, #0b3f3a 0%, #041917 60%);
	color: rgba(255, 255, 255, 0.72);
	padding: 80px 0 0;
	font-size: 15px;
	border-top: 3px solid transparent;
	border-image: var(--grad) 1;
}
.hrh-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; transition: color 0.25s; }
.hrh-footer a:hover { color: var(--teal-bright); }
.hrh-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 44px; padding-bottom: 56px; }
.hrh-footer__logo { max-height: 54px; width: auto; filter: invert(1) grayscale(1) brightness(1.8); margin-bottom: 18px; }
.hrh-footer__head { color: var(--teal-bright); font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.hrh-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hrh-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.hrh-footer__social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 12px; font-weight: 700;
	transition: background 0.3s, color 0.3s;
}
.hrh-footer__social a:hover { background: var(--grad); color: var(--deep); border-color: transparent; }
.hrh-footer__bar {
	display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 22px 0 26px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

/* Reveal animation.
   Content is visible by default. The hidden start state only applies once
   the inline bootstrap script in header.php has added .hrh-anim, and it is
   cancelled again by .hrh-anim-off if main.js has not started within 1.5s
   (some caching plugins defer scripts until first interaction). Content is
   therefore never left invisible waiting on JavaScript. */
.hrh-anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.hrh-anim .reveal.is-in { opacity: 1; transform: none; }
.hrh-anim-off .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
	.hrh-anim .reveal { opacity: 1; transform: none; transition: none; }
	.hrh-marquee__track { animation: none; }
}

/* Generic content (page.php) */
.hrh-content-area { max-width: 800px; margin: 0 auto; padding: 64px 24px 96px; }

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 1020px) {
	.hrh-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.hrh-header__cta { display: none; }
}
@media (max-width: 820px) {
	.hrh-section { padding: 68px 0; }
	.hrh-split, .hrh-vm { grid-template-columns: 1fr; }
	.hrh-split--rev .hrh-split__media { order: 0; }
	.hrh-grid--3, .hrh-quotes, .hrh-team, .hrh-contact-cards { grid-template-columns: 1fr 1fr; }
	.hrh-stats { grid-template-columns: 1fr 1fr; }
	.hrh-form__grid { grid-template-columns: 1fr; }
	.hrh-checks { grid-template-columns: 1fr; }
	.hrh-topbar { display: none; }

	.hrh-burger { display: block; margin-left: auto; }
	.hrh-nav {
		position: fixed;
		inset: 0;
		top: 72px;
		background: var(--paper);
		padding: 28px 24px;
		transform: translateX(100%);
		transition: transform 0.45s var(--ease);
		z-index: 80;
		margin-left: 0;
	}
	.hrh-nav.is-open { transform: none; }
	.hrh-nav__list, .hrh-nav ul { flex-direction: column; gap: 4px; }
	.hrh-nav__list a, .hrh-nav ul a { font-size: 20px; padding: 14px 16px; border-radius: 12px; }
	body.hrh-nav-open { overflow: hidden; }
	.hrh-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.hrh-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.hrh-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
	.hrh-grid--2, .hrh-grid--3, .hrh-grid--4, .hrh-quotes, .hrh-team, .hrh-contact-cards { grid-template-columns: 1fr; }
	.hrh-stats { grid-template-columns: 1fr; }
	.hrh-pricelist { padding: 18px 20px; }
	.hrh-pricelist__row { flex-wrap: wrap; }
	.hrh-pricelist__dots { display: none; }
	.hrh-pricelist__label { flex: 1 1 100%; }
	.hrh-form { padding: 26px 20px; }
	.hrh-hero__inner { min-height: clamp(340px, 62vh, 460px); }
	.hrh-hero__bg img { object-position: center 28%; }
	.hrh-hero::after { background: linear-gradient(160deg, rgba(6, 33, 31, 0.88) 0%, rgba(6, 33, 31, 0.7) 55%, rgba(6, 33, 31, 0.5) 100%); }
}

/* ------------------------------------------------------------------ */
/* Hardening — wins against leftover page-builder global CSS.          */
/* Elementor's global kit styles bare h1–h6 / a / body site-wide       */
/* (near-white headings, capitalised type, teal links). These rules    */
/* are last in the file and body-scoped so they always take priority.  */
/* ------------------------------------------------------------------ */
body h1, body h2, body h3, body h4, body h5, body h6 {
	font-family: var(--font-display);
	color: inherit;
	text-transform: none;
	letter-spacing: -0.02em;
	line-height: 1.12;
}
body .hrh-eyebrow { text-transform: uppercase; letter-spacing: 0.32em; color: var(--teal-deep); }
body .hrh-section--dark .hrh-eyebrow,
body .hrh-page-hero--dark .hrh-eyebrow,
body .hrh-hero .hrh-eyebrow,
body .hrh-footer .hrh-eyebrow { color: var(--teal-bright); }

body main,
body .hrh-section,
body .hrh-page-hero { color: var(--ink); }
body .hrh-section--dark,
body .hrh-page-hero--dark,
body .hrh-hero,
body .hrh-cta,
body .hrh-footer { color: #fff; }

body .hrh-page-hero__title,
body .hrh-h2,
body .hrh-card h3,
body .hrh-imgcard h3 { color: inherit; text-transform: none; }

body .hrh-hero__title { color: #fff; text-transform: none; }
body .hrh-hero__title em { color: var(--teal-bright); }
@supports (-webkit-background-clip: text) or (background-clip: text) {
	body .hrh-hero__title em { color: transparent; }
}

body a { text-decoration: none; }
body .hrh-btn { text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-display); }
body .hrh-btn--dark { background: var(--grad); color: var(--deep); border-color: transparent; }
body .hrh-btn--dark:hover { background: var(--grad-soft); color: #fff; }
body .hrh-btn--ghost { background: transparent; color: var(--ink); border-color: var(--teal); }
body .hrh-btn--light { background: var(--grad); color: var(--deep); border-color: transparent; }
body .hrh-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
body .hrh-nav__list a,
body .hrh-footer__links a,
body .hrh-topbar a { color: inherit; }
body .hrh-nav__item.is-current a,
body .hrh-nav .current-menu-item a { background: var(--grad); color: var(--deep); }

/* ------------------------------------------------------------------ */
/* RomeThemeKit injects a large promotional "admin drawer" panel into  */
/* the footer of every page. It is normally hidden by the plugin's own */
/* stylesheet — which this theme suppresses on its pages — so it would */
/* otherwise appear as stray content below the footer. Hide it here.   */
/* ------------------------------------------------------------------ */
body #custom-admin-drawer,
body #custom-drawer-overlay { display: none !important; }
