/* ==========================================================================
   Custom homepage design system — Brizy-free.
   Fonts (Nunito / Open Sans) and brand green (#094c44) match the site's
   existing identity, extracted from its own compiled styles.
   ========================================================================== */

/* The theme's default .site-content wraps every page in a max-width:1170px,
   margin:100px-auto column (meant for narrow blog-post prose). Scoped to
   body.ir-rebuilt only, so no other page's layout is touched, this lets the new
   full-bleed homepage sections actually reach full width.

   style.css also carries a separate, unscoped chain of legacy mobile media
   queries (max-width:1170px down to 350px) that pad .site-content by
   30-50px on each side — inherited by every full-bleed hero/section here
   since they're all children of .site-content. Undoing max-width/margin
   above wasn't enough on phones because that padding is what was actually
   insetting the content; this rule's higher specificity (body.ir-rebuilt
   .site-content vs. their plain .site-content) overrides it at every one
   of those breakpoints without touching non-rebuilt pages. */
body.ir-rebuilt .site-content {
	max-width: none;
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 0;
}

/* Footer keeps a solid brand-dark background; header instead floats
   transparently over the hero video (see header rules below). */
body.ir-rebuilt .site-footer {
	background-color: #052e29;
}
body.ir-rebuilt .site-footer a { color: #fff; }
body.ir-rebuilt .site-footer a:hover { color: #b7ded6; }

/* Header overlays the hero instead of sitting in its own solid bar —
   #page needs a positioning context for the header's absolute overlay. */
body.ir-rebuilt #page {
	position: relative;
}
body.ir-rebuilt .site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 30;
	background: transparent;
}
/* Below 900px the nav stacks into multiple lines (logo, wrapped menu,
   Order-Online button) and grows taller than the hero content assumes.
   An absolutely-positioned header can't push the hero down to make room,
   so it ends up overlapping the hero heading. Solid + back-in-flow avoids
   the overlap entirely on small screens. */
@media (max-width: 900px) {
	body.ir-rebuilt .site-header {
		position: static;
		background: var(--ir-forest, #052e29);
	}
}
/* Plain-text site title/tagline removed in favour of the real logo
   (a gold harp mark) already configured for this site. */
body.ir-rebuilt .site-title,
body.ir-rebuilt .site-description {
	display: none;
}
body.ir-rebuilt .site-logo img {
	max-height: 34px;
	width: auto;
	margin: 0;
}

/* footer.php unconditionally renders the default sidebar (search, recent
   posts, recent comments) — unstyled and redundant with this page's own
   blog teaser section. Hidden on the homepage only. */
body.ir-rebuilt .widget-area {
	display: none;
}

/* ---------- Header: single-row logo-left / nav-right, real dropdowns ----------
   Left/right padding matches .ir-hero__content exactly (same
   clamp(1.5rem, 5vw, 4rem)) so the logo lines up with the hero heading
   below it, rather than sitting in its own separately-centered container. */
body.ir-rebuilt .site-branding-container {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0 clamp(1.5rem, 5vw, 4rem);
}
body.ir-rebuilt .site-branding {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.75rem 2rem;
	padding: 1.1rem 0;
	text-align: left;
}
body.ir-rebuilt .site-logo {
	display: flex;
	align-items: center;
}

body.ir-rebuilt .main-navigation {
	width: auto;
	padding: 0;
}
body.ir-rebuilt .main-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.15rem;
	padding: 0;
	margin: 0;
}
body.ir-rebuilt .main-menu li {
	float: none;
	margin-right: 0;
	position: relative;
	list-style: none;
}
body.ir-rebuilt .main-menu > li > a {
	display: block;
	padding: 0.55rem 0.85rem;
	border-radius: 5px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	font-weight: 600;
	transition: color 0.15s ease, background 0.15s ease;
}
body.ir-rebuilt .main-menu > li:hover > a,
body.ir-rebuilt .main-menu > li > a:focus {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}
body.ir-rebuilt .main-menu .menu-item-has-children > a::after {
	content: "\25BE";
	font-size: 0.7em;
	margin-left: 0.4em;
	opacity: 0.75;
}

/* Order-Online (menu item ID 786) is the primary CTA — gold, matching
   every other "start an order" button sitewide, pushed to the far right
   of the nav rather than sitting as a regular text link. It's the one
   nav item present on every single page load, so it carries the most
   weight of any gold button on the site. */
body.ir-rebuilt .main-menu .menu-item-786 {
	margin-left: auto;
}
body.ir-rebuilt .main-menu .menu-item-786 > a {
	background: #a39161;
	color: #fff;
	font-weight: 700;
	padding: 0.55rem 1.25rem;
}
body.ir-rebuilt .main-menu .menu-item-786 > a:hover {
	background: var(--ir-green-hover, #073d36);
	color: #fff;
}
@media (max-width: 900px) {
	body.ir-rebuilt .main-menu .menu-item-786 {
		margin-left: 0;
	}
}

/* Dropdowns: hidden until the parent item is hovered/focused. */
body.ir-rebuilt .main-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 60;
	min-width: 260px;
	max-width: min(320px, 90vw);
	margin: 0.4rem 0 0;
	padding: 0.4rem;
	list-style: none;
	background: #0b352e;
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}
body.ir-rebuilt .main-menu li:hover > .sub-menu,
body.ir-rebuilt .main-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* Last top-level item (FAQs) sits at the far right of the row — open its
   dropdown right-aligned so it can't overflow past the viewport edge. */
body.ir-rebuilt .main-menu > li:last-child > .sub-menu {
	left: auto;
	right: 0;
}
body.ir-rebuilt .main-menu .sub-menu a {
	display: block;
	padding: 0.6rem 0.75rem;
	border-radius: 5px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.87rem;
	font-weight: 500;
	white-space: nowrap;
}
body.ir-rebuilt .main-menu .sub-menu a:hover,
body.ir-rebuilt .main-menu .sub-menu a:focus {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

@media (max-width: 900px) {
	body.ir-rebuilt .site-branding {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	body.ir-rebuilt .main-menu {
		justify-content: center;
	}
	body.ir-rebuilt .main-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(0, 0, 0, 0.15);
		display: none;
	}
	body.ir-rebuilt .main-menu li:focus-within > .sub-menu {
		display: block;
	}
}

/* The theme's .site-content a{color:#6969d2} (element+class, specificity
   0,0,1,1) otherwise beats single-class selectors like .ir-btn-outline
   (0,0,1,0) below, showing default-blue links. Reset broadly first, then
   every button/link rule is written as `.ir-home .thing` (0,0,2,0) so it
   reliably wins regardless of stylesheet load order. */
.ir-home a {
	color: inherit;
}

.ir-home {
	--ir-green: #094c44;
	--ir-green-hover: #073d36;
	--ir-forest: #052e29;
	--ir-offwhite: #f7f6f2;
	--ir-charcoal: #1f2422;
	--ir-space: clamp(4rem, 8vw, 7rem);
	font-family: 'Open Sans', sans-serif;
	color: var(--ir-charcoal);
}
.ir-home h1, .ir-home h2, .ir-home h3 {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0 0 0.5rem;
}
.ir-home p {
	line-height: 1.7;
	margin: 0 0 1rem;
}

/* ---------- Hero ---------- */
.ir-hero {
	position: relative;
	min-height: min(90vh, 780px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.ir-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.ir-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(5,46,41,0.9) 0%, rgba(9,76,68,0.6) 45%, rgba(5,46,41,0.85) 100%);
	z-index: 1;
}
.ir-hero__content {
	position: relative;
	z-index: 2;
	width: 60%;
	box-sizing: border-box;
	padding: var(--ir-space) clamp(1.5rem, 5vw, 4rem);
	color: #fff;
}
@media (max-width: 782px) {
	.ir-hero__content {
		width: 100%;
	}
}
.ir-hero__kicker {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
	font-weight: 700;
	color: rgba(255,255,255,0.75);
	margin-bottom: 1rem;
}
.ir-hero__heading {
	font-size: clamp(2.75rem, 6vw, 4.5rem);
	line-height: 1.05;
	color: #fff;
	text-shadow: 0 2px 28px rgba(0,0,0,0.4);
	margin-bottom: 1.25rem;
}
.ir-text-gold {
	color: #a39161;
}
.ir-hero__lead {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.88);
	max-width: 56ch;
	text-shadow: 0 1px 14px rgba(0,0,0,0.35);
	margin-bottom: 2rem;
}

/* ---------- Buttons ----------
   Gold is reserved for ONE meaning sitewide: "this button starts or
   continues a certificate order." Every other link — contact actions,
   "View Details" navigation — stays in the green brand palette. Keeping
   gold scarce is what makes it read as "the button that matters" instead
   of just another button colour; if everything were gold, nothing would
   stand out as the primary action. See .ir-btn-gold / .ir-btn-gold-outline. */
.ir-home .ir-btn-primary-outline, .ir-home .ir-btn-outline,
.ir-home .ir-btn-gold, .ir-home .ir-btn-gold-outline,
.ir-footer .ir-btn-gold, .ir-global-cta-block .ir-btn-gold {
	display: inline-block;
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	text-decoration: none;
	padding: 0.9rem 1.75rem;
	border-radius: 4px;
	transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ir-home .ir-btn-primary-outline {
	background: var(--ir-green);
	color: #fff;
}
.ir-home .ir-btn-primary-outline:hover {
	background: var(--ir-green-hover);
	transform: translateY(-1px);
}
.ir-home .ir-btn-outline {
	border: 2px solid var(--ir-green);
	color: var(--ir-green);
	background: transparent;
	padding: 0.6rem 1.25rem;
	font-size: 0.9rem;
}
.ir-home .ir-btn-outline:hover {
	background: var(--ir-green);
	color: #fff;
}
/* Solid gold — the single primary/decisive CTA per page (hero, nav,
   footer, closing global CTA, location-page closing CTA). Also scoped to
   .ir-footer and .ir-global-cta-block directly since those sit outside
   any .ir-home ancestor (footer markup, and the CTA block gets injected
   into ordinary post content via the_content on non-rebuilt templates too). */
.ir-home .ir-btn-gold, .ir-footer .ir-btn-gold, .ir-global-cta-block .ir-btn-gold {
	background: #a39161;
	color: #fff;
}
.ir-home .ir-btn-gold:hover, .ir-footer .ir-btn-gold:hover, .ir-global-cta-block .ir-btn-gold:hover {
	background: #8c7d51;
	transform: translateY(-1px);
}
/* Gold outline — same "leads to ordering" meaning, lighter weight for
   dense repeated contexts (the 4-up certificate type grid) where four
   solid-gold blocks in a row would read as heavier than intended. */
.ir-home .ir-btn-gold-outline {
	border: 2px solid #a39161;
	color: #8c7d51;
	background: transparent;
	padding: calc(0.9rem - 2px) 1.75rem;
}
.ir-home .ir-btn-gold-outline:hover {
	background: #a39161;
	color: #fff;
}

/* ---------- Certificate quick-link grid ---------- */
.ir-cert-grid {
	background: #fff;
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
}
.ir-cert-grid__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.ir-cert-card {
	text-align: center;
	padding: 2rem 1rem 1.75rem;
	border-radius: 8px;
	background: var(--ir-offwhite);
	border-top: 4px solid var(--ir-green);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ir-cert-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(9, 76, 68, 0.14);
}
.ir-home .ir-cert-card__icon {
	width: 64px;
	height: 64px;
	object-fit: contain;
	margin: 0 auto 0.75rem;
	padding: 0.65rem;
	border-radius: 50%;
	background: rgba(9, 76, 68, 0.08);
}
.ir-cert-card__label {
	font-size: 1.05rem;
	margin-bottom: 1rem;
}

/* ---------- Asymmetric content sections ---------- */
.ir-section-asym {
	background: var(--ir-offwhite);
	padding: var(--ir-space) clamp(1.5rem, 5vw, 4rem);
}
.ir-section-asym__grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.ir-section-asym--reverse .ir-section-asym__grid {
	grid-template-columns: 2fr 3fr;
}
.ir-section-asym__text h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--ir-charcoal);
}
.ir-section-asym__text p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--ir-charcoal);
}
.ir-section-asym__text--lede {
	text-align: center;
}
.ir-section-asym__text--lede p {
	font-size: clamp(1.2rem, 2vw, 1.45rem);
	line-height: 1.6;
	margin-top: 0.6rem;
}
.ir-section-asym__panel {
	min-height: 320px;
	border-radius: 8px;
	overflow: hidden;
	background: linear-gradient(160deg, var(--ir-forest) 0%, var(--ir-green) 100%);
}
.ir-home .ir-section-asym__panel img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	margin: 0;
	object-fit: cover;
}

/* ---------- Feature card grid ---------- */
.ir-feature-grid {
	background: #fff;
	padding: var(--ir-space) clamp(1.5rem, 5vw, 4rem);
}
.ir-feature-grid__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.ir-feature-card {
	padding: 1.75rem 1.5rem;
	border-radius: 8px;
	background: rgba(9, 76, 68, 0.045);
	border: 1px solid #e4e2da;
	border-left: 4px solid var(--ir-green);
}
.ir-feature-card h3 {
	color: var(--ir-green);
	font-size: 1.15rem;
}
.ir-feature-card p {
	font-size: 0.92rem;
	color: #444;
}

/* ---------- Stats band ---------- */
.ir-stats-band {
	background: linear-gradient(135deg, var(--ir-forest) 0%, var(--ir-green) 100%);
	padding: var(--ir-space) clamp(1.5rem, 5vw, 4rem);
	color: #fff;
	text-align: center;
}
.ir-stats-band__inner { max-width: 1000px; margin: 0 auto; }
.ir-stats-band__heading { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.ir-stats-band__sub { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; }
.ir-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.ir-stat { display: flex; flex-direction: column; }
.ir-stat__num {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
}
.ir-stat__label {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.75);
	margin-top: 0.5rem;
}

/* ---------- Blog teaser ---------- */
.ir-blog-teaser {
	background: #fff;
	padding: var(--ir-space) clamp(1.5rem, 5vw, 4rem);
}
.ir-blog-teaser__inner { max-width: 1200px; margin: 0 auto; }
.ir-blog-teaser__post {
	background: var(--ir-offwhite);
	border-radius: 8px;
	padding: 2rem;
	margin-top: 1.5rem;
	border-top: 4px solid var(--ir-green);
}
.ir-home .ir-link-arrow {
	color: var(--ir-green);
	font-weight: 700;
	text-decoration: none;
}
.ir-home .ir-link-arrow:hover { color: var(--ir-green-hover); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.ir-cert-grid__inner,
	.ir-feature-grid__inner,
	.ir-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 782px) {
	.ir-section-asym__grid,
	.ir-section-asym--reverse .ir-section-asym__grid {
		grid-template-columns: 1fr;
	}
	.ir-section-asym__panel { min-height: 200px; order: 2; }
}
@media (max-width: 560px) {
	.ir-cert-grid__inner,
	.ir-feature-grid__inner,
	.ir-stats-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Simple page hero (non-video pages, e.g. Contact) ---------- */
/* Background photo differs per page via the --ir-page-hero-image custom
   property set inline on the section (falls back to plain gradient if
   a page hasn't set one). Same dark-green gradient overlay as the video
   hero, layered on top of the photo for text legibility + consistency. */
.ir-page-hero {
	background-image:
		linear-gradient(135deg, rgba(5, 46, 41, 0.88) 0%, rgba(9, 76, 68, 0.55) 45%, rgba(5, 46, 41, 0.88) 100%),
		var(--ir-page-hero-image, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: calc(var(--ir-space) + 3rem) clamp(1.5rem, 5vw, 4rem) var(--ir-space);
}
.ir-page-hero__content {
	max-width: 900px;
}
.ir-page-hero__content .ir-hero__heading {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	margin-bottom: 0;
}

/* ---------- Contact page details panel ---------- */
.ir-contact-panel {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.ir-contact-block {
	background: var(--ir-offwhite);
	border-top: 4px solid var(--ir-green);
	border-radius: 8px;
	padding: 1.5rem 1.75rem;
}
.ir-contact-block h3 {
	color: var(--ir-green);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
.ir-contact-block p {
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* ---------- Blog listing ---------- */
.ir-blog-grid {
	background: #fff;
	padding: var(--ir-space) clamp(1.5rem, 5vw, 4rem);
}
.ir-blog-grid__inner {
	max-width: 1200px;
	margin: 0 auto;
}
.ir-blog-grid__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.ir-blog-card {
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	overflow: hidden;
	background: var(--ir-offwhite);
	border-top: 4px solid var(--ir-green);
}
.ir-blog-card__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.ir-blog-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	display: block;
}
.ir-blog-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.ir-blog-card__date {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ir-green);
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.ir-blog-card__title {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}
.ir-home .ir-blog-card__title a {
	color: var(--ir-charcoal);
}
.ir-home .ir-blog-card__title a:hover {
	color: var(--ir-green);
}
.ir-blog-card__excerpt {
	font-size: 0.92rem;
	color: #444;
	flex: 1;
}
.ir-blog-grid__pagination {
	margin-top: 3rem;
	text-align: center;
}
.ir-blog-grid__pagination .page-numbers {
	display: inline-block;
	padding: 0.5rem 0.9rem;
	margin: 0 0.2rem;
	border-radius: 5px;
	background: var(--ir-offwhite);
	color: var(--ir-charcoal);
	font-weight: 600;
}
.ir-blog-grid__pagination .page-numbers.current {
	background: var(--ir-green);
	color: #fff;
}

@media (max-width: 900px) {
	.ir-blog-grid__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.ir-blog-grid__cards {
		grid-template-columns: 1fr;
	}
}

/* ---------- Certificate application pages ---------- */
.ir-section-asym__grid--single {
	grid-template-columns: 1fr;
	max-width: 800px;
}
.ir-notice {
	background: rgba(9, 76, 68, 0.08);
	border-left: 4px solid var(--ir-green);
	border-radius: 6px;
	padding: 1.25rem 1.5rem;
	margin-top: 1.5rem;
}
.ir-notice h3 {
	color: var(--ir-green);
	font-size: 1rem;
	margin-bottom: 0.4rem;
}
.ir-notice p {
	font-size: 0.92rem;
	margin-bottom: 0;
}

/* The actual Forminator form renders inside .ir-form-section__form,
   completely untouched — only the surrounding card/spacing is new. */
.ir-form-section {
	background: var(--ir-offwhite);
	padding: var(--ir-space) clamp(1.5rem, 5vw, 4rem);
}
.ir-form-section__inner {
	max-width: 800px;
	margin: 0 auto;
}
.ir-form-section__inner h2 {
	text-align: center;
}
.ir-form-section__note {
	text-align: center;
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 2rem;
}
.ir-form-section__form {
	background: #fff;
	border-radius: 8px;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-top: 4px solid var(--ir-green);
}

/* ---------- Rich footer (replaces the theme's bare default on rebuilt
   pages only) — real contact details + decorative social icons, matching
   what the live production site's footer actually shows. The muted gold
   (#a39161) is the site's real secondary accent, from its own harp logo
   icon — used here for the first time, per request. ---------- */
.ir-footer {
	padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem) 2rem;
	color: rgba(255, 255, 255, 0.85);
}
.ir-footer__grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1.2fr;
	gap: 2.5rem;
	padding-bottom: 2.5rem;
}
.ir-footer__tagline {
	color: #fff;
	font-weight: 700;
	max-width: 32ch;
}
.ir-footer__hours {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}
.ir-footer .ir-btn-gold {
	margin-top: 0.5rem;
}
.ir-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.ir-footer__menu a {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
}
.ir-footer__menu a:hover {
	color: #fff;
}
.ir-footer__col p {
	margin-bottom: 0.75rem;
	font-size: 0.92rem;
}
.ir-footer__col a {
	color: rgba(255, 255, 255, 0.85);
}
.ir-footer__col a:hover {
	color: #fff;
}
.ir-footer__bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
}
.ir-footer__socials {
	display: flex;
	gap: 0.75rem;
}
.ir-footer__social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #a39161;
}
.ir-footer__social-svg {
	width: 15px;
	height: 15px;
	fill: #fff;
}
@media (max-width: 782px) {
	.ir-footer__grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Google Reviews (placeholder content, real widget structure) ---------- */
.ir-reviews {
	background: var(--ir-offwhite);
	padding: var(--ir-space) 0;
	overflow: hidden;
}
.ir-reviews__inner {
	max-width: 1200px;
	margin: 0 auto 2.5rem;
	padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.ir-reviews__header {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	gap: 0.5rem;
}
.ir-reviews__rating {
	justify-content: center;
}
.ir-reviews__glogo {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}
.ir-reviews__rating {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}
.ir-reviews__stars {
	color: #fbbc05;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
}
.ir-reviews__score {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: 1.2rem;
	color: var(--ir-charcoal);
}
.ir-reviews__count {
	font-size: 0.85rem;
	color: #666;
	margin: 0;
}
.ir-reviews__track {
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.ir-reviews__scroller {
	display: flex;
	gap: 1.5rem;
	width: max-content;
	padding: 0 clamp(1.5rem, 5vw, 4rem);
	animation: ir-reviews-scroll 46s linear infinite;
}
.ir-reviews__track:hover .ir-reviews__scroller {
	animation-play-state: paused;
}
@keyframes ir-reviews-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.ir-reviews__scroller {
		animation: none;
	}
}
.ir-review-card {
	flex: 0 0 min(320px, 82vw);
	background: #fff;
	border-radius: 8px;
	padding: 1.5rem;
	border-top: 4px solid var(--ir-green);
}
.ir-review-card__stars {
	color: #fbbc05;
	letter-spacing: 0.1em;
	margin-bottom: 0.75rem;
}
.ir-review-card__text {
	font-size: 0.92rem;
	color: #444;
	margin-bottom: 1.25rem;
}
.ir-review-card__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.ir-review-card__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--ir-green);
	color: #fff;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	flex-shrink: 0;
}
.ir-review-card__name {
	font-weight: 700;
	font-size: 0.9rem;
	margin: 0;
	color: var(--ir-charcoal);
}

/* ---------- Homepage blog teaser grid (with thumbnails) ---------- */
.ir-blog-teaser__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
}
.ir-blog-card--compact .ir-blog-card__body {
	padding: 1.25rem;
}
.ir-blog-card--compact .ir-blog-card__title {
	font-size: 1rem;
	margin-bottom: 0.6rem;
}
@media (max-width: 900px) {
	.ir-blog-teaser__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.ir-blog-teaser__grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Location landing pages ---------- */
.ir-location-block {
	background: #fff;
	padding: calc(var(--ir-space) * 0.7) clamp(1.5rem, 5vw, 4rem);
}
.ir-location-block--alt {
	background: var(--ir-offwhite);
}
.ir-location-block__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(180px, 260px) 1fr;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: start;
}
.ir-location-block__label {
	position: relative;
	padding-left: 1.25rem;
	border-left: 3px solid var(--ir-gold, #a39161);
}
/* Icon badge — every block's label gets one, so the five sections read as
   one consistent branded system rather than five plain text blocks. */
.ir-location-block__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--ir-green);
	color: #fff;
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
}
.ir-location-block__icon svg {
	width: 20px;
	height: 20px;
}
.ir-location-block__inner h2 {
	font-size: clamp(1.3rem, 2.2vw, 1.6rem);
	line-height: 1.3;
	color: var(--ir-charcoal);
	margin: 0.35rem 0 0;
}
.ir-location-block__eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ir-green);
}
.ir-location-block__body p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--ir-charcoal);
	margin: 0 0 1rem;
}
.ir-location-block__body p:last-child {
	margin-bottom: 0;
}
.ir-location-block__label p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #444;
	margin: 0.6rem 0 0;
}

/* Local-coverage chips — real towns within the county, giving the
   Availability block its own distinct visual element (not just a
   paragraph) and reinforcing local relevance for search. */
.ir-location-block__body p.ir-town-chips__label {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--ir-green);
	margin-bottom: 0.6rem;
}
.ir-town-chips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.ir-town-chips li {
	background: rgba(9, 76, 68, 0.08);
	color: var(--ir-green);
	font-size: 0.85rem;
	font-weight: 700;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
}

/* Pricing callout card — a scannable price + reassurance list, instead of
   the fee being buried in a paragraph like every other sentence on the page. */
.ir-price-card {
	background: #fff;
	border: 1px solid rgba(9, 76, 68, 0.14);
	border-radius: 10px;
	padding: 1.75rem 2rem;
}
.ir-price-card__amount {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: clamp(2.5rem, 5vw, 3.25rem);
	color: var(--ir-green);
	line-height: 1;
}
.ir-price-card__currency {
	font-size: 0.55em;
	vertical-align: top;
	margin-right: 0.1em;
}
.ir-price-card__label {
	font-weight: 700;
	color: var(--ir-charcoal);
	margin: 0.4rem 0 1.1rem;
}
.ir-price-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.ir-price-card__list li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--ir-charcoal);
}
.ir-price-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #a39161;
}

/* Numbered process steps — a genuine 3-step sequence, so numbering it
   is informative rather than decorative. Spans the full grid width via
   grid-column, sitting as its own row below the label/intro column. */
.ir-process-steps {
	grid-column: 1 / -1;
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}
.ir-process-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--ir-green);
	color: #fff;
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 0.85rem;
}
.ir-process-step h3 {
	font-size: 1.05rem;
	color: var(--ir-charcoal);
	margin: 0 0 0.4rem;
}
.ir-process-step p {
	font-size: 0.92rem;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

/* Trust badges — short proof points inside the closing "why choose us"
   copy, reusing the same checkmark icon rather than a different glyph
   per badge, so the row reads as one consistent set. */
.ir-trust-badges {
	list-style: none;
	margin: 1.25rem 0 1.5rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.5rem;
}
.ir-trust-badges li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--ir-green);
}
.ir-trust-badges svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

@media (max-width: 700px) {
	.ir-location-block__inner {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.ir-process-steps {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ---------- FAQ accordion ---------- */
.ir-faq {
	background: var(--ir-offwhite);
	padding: var(--ir-space) clamp(1.5rem, 5vw, 4rem);
}
.ir-faq__inner {
	max-width: 800px;
	margin: 0 auto;
}
.ir-faq__item {
	background: #fff;
	border-radius: 8px;
	margin-bottom: 1rem;
	border-left: 4px solid var(--ir-green);
	overflow: hidden;
}
.ir-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 1.1rem 1.4rem;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--ir-charcoal);
	cursor: pointer;
}
.ir-faq__question::after {
	content: "\002B";
	font-size: 1.4rem;
	color: var(--ir-green);
	flex-shrink: 0;
	transition: transform 0.2s ease;
}
.ir-faq__item[open] .ir-faq__question::after {
	transform: rotate(45deg);
}
.ir-faq__answer {
	padding: 0 1.4rem 1.25rem;
	color: #444;
	font-size: 0.95rem;
}

/* ---------- Single blog post content ---------- */
.ir-post-section {
	background: #fff;
	padding: var(--ir-space) clamp(1.5rem, 5vw, 4rem);
}
.ir-post-content {
	max-width: 800px;
	margin: 0 auto;
}
.ir-post-content h2 {
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
	color: var(--ir-charcoal);
	margin-top: 2.5rem;
}
.ir-post-content h3 {
	font-size: 1.15rem;
	color: var(--ir-green);
	margin-top: 2rem;
}
.ir-post-content h4 {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--ir-charcoal);
	margin-top: 1.5rem;
}
.ir-post-content p,
.ir-post-content li {
	line-height: 1.75;
	color: #333;
}
.ir-post-content ul,
.ir-post-content ol {
	padding-left: 1.4rem;
	margin-bottom: 1.25rem;
}
.ir-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 1.5rem 0;
}
.ir-post-content a {
	color: var(--ir-green);
	text-decoration: underline;
}
.ir-post-content a:hover {
	color: var(--ir-green-hover);
}
.ir-post-content .ir-silo-links {
	background: var(--ir-offwhite);
	border-left: 4px solid var(--ir-green);
	border-radius: 6px;
	padding: 1.25rem 1.5rem;
	margin: 2rem 0;
}
.ir-post-content .ir-silo-links p {
	margin: 0 0 0.5rem;
	font-weight: 700;
	color: var(--ir-charcoal);
}
.ir-post-content .ir-silo-links ul {
	margin: 0;
}

/* ---------- Announcement bar (above the header) ---------- */
.ir-announcement-bar {
	background: linear-gradient(90deg, #8c7d51, #a39161, #8c7d51);
	padding: 0.9rem 1.5rem;
	text-align: center;
}
.ir-announcement-bar p {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	color: #fff;
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.ir-announcement-bar__icon {
	font-size: 0.75rem;
	opacity: 0.85;
}

/* Locations hub — more cards than the standard 4-col cert grid */
.ir-cert-grid__inner--locations {
	grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 900px) {
	.ir-cert-grid__inner--locations {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 560px) {
	.ir-cert-grid__inner--locations {
		grid-template-columns: repeat(2, 1fr);
	}
}
