/* ============================================================
   Everyday Leader — main stylesheet
   Brand: Sunrise Orange #FFA700 / Burnt Orange #F24D27 / Amber #FFB347
          Charcoal #222222 / Slate #6D6F73 / Light #E6E7E8
          Off White #F7F7F8 / White #FFFFFF
   Type:  Bebas Neue (display) / Montserrat (body)
   Fonts: self-hosted in assets/fonts/ — no third-party CDN
   ============================================================ */

/* Self-hosted fonts (latin subset only — keeps weight low).
   Montserrat is a variable font: a single woff2 covers the 400-700 weight axis. */
@font-face {
	font-family: 'Bebas Neue';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/bebas-neue-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/montserrat-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/montserrat-italic-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--c-orange: #F24D27;
	--c-orange-2: #FFA700;
	--c-amber: #FFB347;
	/* CTA-specific orange — slightly darker than brand orange so white-on-orange
	   button text passes WCAG 2.2 AA contrast (4.5:1). Brand orange is preserved
	   for accents, badges, gradients, etc. */
	--c-orange-cta: #D63D1A;
	--c-orange-cta-hover: #B83217;
	--c-charcoal: #222222;
	--c-slate: #6D6F73;
	--c-light: #E6E7E8;
	--c-offwhite: #F7F7F8;
	--c-white: #FFFFFF;
	--c-dark: #1a1320;
	--c-dark-2: #2b1f33;

	--grad-sunrise: linear-gradient(90deg, #F24D27 0%, #FFA700 100%);
	--grad-sunrise-diag: linear-gradient(135deg, #F24D27 0%, #FFA700 100%);
	--grad-dark: linear-gradient(180deg, #1a1320 0%, #2b1f33 100%);

	--ff-display: 'Bebas Neue', 'Helvetica Neue', Arial, sans-serif;
	--ff-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

	--container: 1600px;
	--gutter: 24px;

	/* Vertical rhythm — all major content sections use the same padding token
	   so transitions feel consistent. Hero/footer/marquee/newsletter override
	   when they need a different presence. */
	--section-pad: 96px;
	--section-pad-mobile: 72px;

	--shadow-card: 0 18px 40px rgba(34,34,34,0.10);
	--shadow-deep: 0 30px 60px rgba(0,0,0,0.35);
	--radius: 12px;
	--radius-lg: 24px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--dur-1: 0.5s;
	--dur-2: 0.8s;
	--dur-3: 1.1s;
}

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	/* Reserve scrollbar gutter so toggling body overflow never shifts layout. */
	scrollbar-gutter: stable;
}
body.el-body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-charcoal);
	background: var(--c-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* `clip` clips horizontally without creating a scroll container,
	   so descendants' position: sticky still works. (`hidden` would block it.) */
	overflow-x: hidden;
	overflow-x: clip;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-orange); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--c-orange-2); }
button { font-family: inherit; }

h1, h2, h3, h4 {
	font-family: var(--ff-display);
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.05;
	color: var(--c-charcoal);
	margin: 0 0 0.5em;
}
h1 { font-size: clamp(48px, 7vw, 96px); letter-spacing: 2px; }
h2 { font-size: clamp(32px, 4.6vw, 64px); letter-spacing: 1px; }
h3 { font-size: clamp(20px, 2.2vw, 26px); }

p { margin: 0 0 1em; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

.el-skip {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--c-charcoal);
	color: var(--c-white);
	padding: 12px 20px;
	z-index: 10000;
	transition: top 0.2s var(--ease);
}
.el-skip:focus { top: 0; }

/* ============================================================
   Accessibility — WCAG 2.2 AA
   ============================================================ */

/* Visible focus ring on every interactive element when keyboard-navigating.
   Uses :focus-visible so mouse clicks don't show the ring. */
*:focus { outline: none; }
*:focus-visible {
	outline: 3px solid var(--c-orange-2);
	outline-offset: 3px;
	border-radius: 4px;
}
/* Slightly different ring on dark backgrounds for visibility */
.el-section--dark *:focus-visible,
.el-hero *:focus-visible,
.el-contact *:focus-visible,
.el-footer *:focus-visible {
	outline-color: var(--c-amber);
}
/* Buttons get a layered ring (outer offset + inner glow) so the focus is
   never lost against the button's own background. */
.el-btn:focus-visible {
	outline: 3px solid var(--c-white);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px rgba(255,167,0,0.5);
}

/* WCAG 2.2 §2.5.8 — minimum touch target 24×24 CSS px.
   Inline text links (e.g. nav menu) are exempt under the "inline" provision,
   so we only apply this to interactive non-inline elements. */
.el-btn,
.el-testimonials__btn,
.el-footer__social a,
.el-nav-toggle {
	min-width: 44px;
	min-height: 44px;
}

/* Visually-hidden helper for descriptive labels that should not display */
.el-visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- Container ---------- */
.el-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-inline: var(--gutter);
}

/* ---------- Buttons ---------- */
.el-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--ff-body);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.04em;
	padding: 14px 28px;
	min-height: 48px;
	border-radius: 4px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
	text-transform: uppercase;
	white-space: nowrap;
}
.el-btn--lg { padding: 16px 32px; min-height: 56px; font-size: 14px; }
.el-btn--block { width: 100%; }

.el-btn--primary {
	background: var(--c-orange-cta);
	color: var(--c-white);
	border-color: var(--c-orange-cta);
	box-shadow: 0 8px 24px rgba(214,61,26,0.32);
	font-weight: 700; /* helps perceived contrast on the dark CTA fill */
}
.el-btn--primary:hover {
	background: var(--c-orange-cta-hover);
	border-color: var(--c-orange-cta-hover);
	color: var(--c-white);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(214,61,26,0.45);
}
.el-btn--primary:active {
	background: var(--c-orange-cta-hover);
	border-color: var(--c-orange-cta-hover);
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(214,61,26,0.3);
}

.el-btn--secondary {
	background: transparent;
	color: var(--c-orange);
	border-color: var(--c-orange);
}
.el-btn--secondary:hover {
	background: rgba(242,77,39,0.08);
	color: var(--c-orange);
}

.el-btn--ghost {
	background: transparent;
	color: var(--c-white);
	border-color: rgba(255,255,255,0.4);
}
.el-btn--ghost:hover {
	background: rgba(255,255,255,0.08);
	color: var(--c-white);
	border-color: var(--c-white);
}
.el-btn--ghost .el-icon { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.el-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	background: rgba(255,255,255,0);
	transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
	padding-block: 18px;
}
.el-header.is-scrolled,
.el-header.is-light {
	background: rgba(255,255,255,0.96);
	box-shadow: 0 2px 12px rgba(0,0,0,0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding-block: 12px;
}
.el-header__inner {
	display: flex;
	align-items: center;
	gap: 32px;
}

.el-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	position: relative;
	line-height: 0; /* prevent baseline gap under inline-block image */
}
.el-logo__img {
	display: block;
	height: auto;
	width: auto;
	max-height: 100px;
	transition: opacity 0.25s var(--ease), max-height 0.3s var(--ease);
}
.el-logo__img--light {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

/* Default state: solid header → show dark logo */
.el-logo__img--dark { opacity: 1; }

/* Over the dark hero (transparent header): swap to white logo */
.el-header.is-transparent .el-logo__img--dark { opacity: 0; }
.el-header.is-transparent .el-logo__img--light { opacity: 1; }
.el-header.is-transparent .el-logo__img--light[aria-hidden="true"] { /* a11y note: aria-hidden is fine because the dark variant has the alt */ }

/* Smaller logo when header collapses on scroll */
.el-header.is-scrolled .el-logo__img { max-height: 72px; }

.el-nav { flex: 1; }
.el-nav__list,
.el-nav .menu {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.el-nav__list li,
.el-nav .menu li { position: relative; }
.el-nav__list a,
.el-nav .menu a {
	font-size: 14px;
	font-weight: 500;
	color: var(--c-charcoal);
	letter-spacing: 0.02em;
	padding: 8px 0;
	display: inline-block;
	transition: color 0.25s var(--ease);
}
.el-header.is-transparent .el-nav__list a,
.el-header.is-transparent .el-nav .menu a,
.el-header.is-transparent .el-logo__name { color: var(--c-white); }
.el-header.is-transparent .el-logo__tagline { color: rgba(255,255,255,0.6); }
.el-nav__list a:hover,
.el-nav .menu a:hover { color: var(--c-orange); }

.el-nav__list a::after,
.el-nav .menu a::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 0; height: 2px;
	background: var(--grad-sunrise);
	transition: width 0.3s var(--ease);
}
.el-nav__list a:hover::after,
.el-nav .menu a:hover::after { width: 100%; }

.el-nav__caret {
	display: inline-block;
	margin-left: 6px;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	vertical-align: middle;
	transition: transform 0.25s var(--ease);
}
.el-nav .menu-item-has-children:hover > a .el-nav__caret,
.el-nav .has-dropdown:hover > a .el-nav__caret {
	transform: rotate(225deg) translateY(2px);
}

.el-subnav,
.el-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 8px);
	min-width: 240px;
	background: var(--c-charcoal);
	color: var(--c-white);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	border-radius: 8px;
	box-shadow: var(--shadow-deep);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s var(--ease);
	z-index: 10;
}
.el-nav__list li:hover > .el-subnav,
.el-nav .menu-item-has-children:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}
.el-subnav a,
.el-nav .sub-menu a {
	display: block;
	padding: 10px 20px;
	color: var(--c-white) !important;
	font-size: 14px;
}
.el-subnav a::after,
.el-nav .sub-menu a::after { display: none; }
.el-subnav a:hover,
.el-nav .sub-menu a:hover { background: rgba(255,255,255,0.06); color: var(--c-orange-2) !important; }

.el-header__cta { flex-shrink: 0; }
.el-header.is-transparent .el-header__cta { background: var(--c-orange); border-color: var(--c-orange); color: var(--c-white); }

/* mobile nav toggle */
.el-nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	color: var(--c-charcoal);
	cursor: pointer;
	padding: 8px;
}
.el-header.is-transparent .el-nav-toggle { color: var(--c-white); }
.el-nav-toggle .el-icon { width: 26px; height: 26px; }
.el-nav-toggle__close { display: none; }
.el-nav-toggle[aria-expanded="true"] .el-nav-toggle__open { display: none; }
.el-nav-toggle[aria-expanded="true"] .el-nav-toggle__close { display: block; }

/* ---------- Mobile nav drawer ---------- */
.el-mobile-nav {
	display: none;
	flex-direction: column;
	gap: 0;
	padding: 16px 20px 24px;
	background: linear-gradient(180deg, #1a1320 0%, #2b1f33 100%);
	border-top: 1px solid rgba(255,255,255,0.08);
}
.el-mobile-nav.is-open { display: flex; }

.el-mobile-nav .el-nav__list,
.el-mobile-nav .el-mobile-nav__list,
.el-mobile-nav .menu {
	flex-direction: column;
	gap: 2px;
	width: 100%;
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}
.el-mobile-nav .el-nav__list > li,
.el-mobile-nav .el-mobile-nav__list > li,
.el-mobile-nav .menu > li {
	display: block;
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.el-mobile-nav .el-nav__list > li:last-child,
.el-mobile-nav .el-mobile-nav__list > li:last-child,
.el-mobile-nav .menu > li:last-child { border-bottom: 0; }

/* Top-level link styling — covers all three menu_class variants */
.el-mobile-nav .el-nav__list > li > a,
.el-mobile-nav .el-mobile-nav__list > li > a,
.el-mobile-nav .menu > li > a {
	display: flex;
	align-items: center;
	width: 100%;
	color: var(--c-white) !important;
	font-family: var(--ff-display);
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 16px 12px;
	min-height: 52px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s var(--ease), color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.el-mobile-nav .el-nav__list > li > a:hover,
.el-mobile-nav .el-nav__list > li > a:focus-visible,
.el-mobile-nav .el-mobile-nav__list > li > a:hover,
.el-mobile-nav .el-mobile-nav__list > li > a:focus-visible,
.el-mobile-nav .menu > li > a:hover,
.el-mobile-nav .menu > li > a:focus-visible,
.el-mobile-nav .el-nav__list > li.is-open > a,
.el-mobile-nav .el-mobile-nav__list > li.is-open > a,
.el-mobile-nav .menu > li.is-open > a {
	color: var(--c-orange-2) !important;
	background: rgba(255,167,0,0.08);
	padding-left: 16px;
}
.el-mobile-nav .el-nav__list > li.current-menu-item > a,
.el-mobile-nav .el-mobile-nav__list > li.current-menu-item > a,
.el-mobile-nav .menu > li.current-menu-item > a {
	color: var(--c-orange-2) !important;
}

/* Kill desktop-only pseudo elements inside mobile nav */
.el-mobile-nav .el-nav__list a::after,
.el-mobile-nav .el-mobile-nav__list a::after,
.el-mobile-nav .menu a::after,
.el-mobile-nav .el-nav__list a::before,
.el-mobile-nav .el-mobile-nav__list a::before,
.el-mobile-nav .menu a::before,
.el-mobile-nav .has-dropdown > a::before,
.el-mobile-nav .menu-item-has-children > a::before {
	display: none !important;
	content: none !important;
}
.el-mobile-nav .el-nav__caret { display: none; }

/* Parent items with children — chevron on the right that flips when open */
.el-mobile-nav .menu-item-has-children > a,
.el-mobile-nav .has-dropdown > a {
	position: relative;
	padding-right: 44px !important;
}
.el-mobile-nav .menu-item-has-children > a::after,
.el-mobile-nav .has-dropdown > a::after {
	content: '' !important;
	display: block !important;
	position: absolute;
	right: 16px;
	top: 50%;
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.3s var(--ease);
	background: transparent !important;
	opacity: 0.65;
}
.el-mobile-nav .menu-item-has-children.is-open > a::after,
.el-mobile-nav .has-dropdown.is-open > a::after {
	transform: translateY(-30%) rotate(-135deg);
	opacity: 1;
}

/* Submenu — collapsed by default, slides open when parent has .is-open */
.el-mobile-nav .sub-menu,
.el-mobile-nav .el-subnav {
	position: static;
	transform: none;
	box-shadow: none;
	background: rgba(0,0,0,0.20);
	opacity: 1;
	visibility: visible;
	padding: 0 8px 0 24px;
	margin: 0;
	list-style: none;
	min-width: 0;
	max-height: 0;
	overflow: hidden;
	border-radius: 0 0 8px 8px;
	transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
	border-left: 2px solid var(--c-orange-2);
	margin-left: 12px;
}
.el-mobile-nav .menu-item-has-children.is-open > .sub-menu,
.el-mobile-nav .has-dropdown.is-open > .el-subnav {
	max-height: 600px;
	padding-top: 4px;
	padding-bottom: 8px;
	margin-bottom: 4px;
}
.el-mobile-nav .sub-menu a,
.el-mobile-nav .el-subnav a {
	display: flex !important;
	align-items: center !important;
	font-family: var(--ff-base) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
	color: rgba(255,255,255,0.78) !important;
	padding: 10px 12px !important;
	min-height: 0 !important;
	border-bottom: 0 !important;
	border-radius: 6px !important;
}
.el-mobile-nav .sub-menu a:hover,
.el-mobile-nav .el-subnav a:hover {
	color: var(--c-orange-2) !important;
	background: rgba(255,167,0,0.06) !important;
}

/* Start Today (and any) primary button inside the mobile nav — must NOT inherit
   the link styling above. Force btn padding back. */
.el-mobile-nav .el-btn {
	display: inline-flex;
	width: 100%;
	margin-top: 16px;
	padding: 14px 28px;
	border-bottom: 0;
	font-size: 14px;
	letter-spacing: 0.04em;
	min-height: 48px;
	color: var(--c-white) !important;
	background: var(--c-orange-cta);
	border: 2px solid var(--c-orange-cta);
}
.el-mobile-nav .el-btn:hover {
	background: var(--c-orange-cta-hover);
	border-color: var(--c-orange-cta-hover);
	color: var(--c-white) !important;
}

/* ---------- Reveal animation ---------- */
[data-el-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
	transition-delay: 0ms;
	will-change: opacity, transform;
}
[data-el-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	[data-el-reveal] { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ---------- Hero ---------- */
.el-hero {
	position: relative;
	min-height: 100vh;
	padding: 140px 0 100px;
	background:
		radial-gradient(ellipse 80% 60% at 80% 20%, rgba(242,77,39,0.18) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255,167,0,0.12) 0%, transparent 60%),
		linear-gradient(135deg, #14091a 0%, #1f0f28 40%, #2b1f33 100%);
	color: var(--c-white);
	overflow: hidden;
	isolation: isolate;
}
.el-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.el-hero__shape {
	position: absolute;
	display: block;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.6;
	animation: el-float 14s ease-in-out infinite;
}
.el-hero__shape--curve {
	width: 700px; height: 700px;
	background: radial-gradient(circle, rgba(242,77,39,0.45), transparent 70%);
	top: -200px; right: -200px;
}
.el-hero__shape--blob {
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(255,167,0,0.35), transparent 70%);
	bottom: -150px; left: -150px;
	animation-delay: -4s;
}
.el-hero__shape--ring {
	width: 280px; height: 280px;
	background: radial-gradient(circle, rgba(255,179,71,0.3), transparent 70%);
	top: 40%; left: 40%;
	animation-delay: -8s;
}

/* Subtle dotted grid overlay — adds texture without busy-ness */
.el-hero__grid-overlay {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
	opacity: 0.5;
	pointer-events: none;
}

/* Floating brand triangles — echo the logo, very subtle */
.el-hero__tri {
	position: absolute;
	color: rgba(255,167,0,0.18);
	pointer-events: none;
	animation: el-tri-drift 18s ease-in-out infinite;
}
.el-hero__tri--1 { width: 80px; height: 80px; top: 18%; left: 6%; animation-delay: 0s; }
.el-hero__tri--2 { width: 50px; height: 50px; top: 70%; left: 38%; color: rgba(242,77,39,0.16); animation-delay: -6s; }
.el-hero__tri--3 { width: 110px; height: 110px; top: 12%; right: 38%; color: rgba(255,179,71,0.12); animation-delay: -12s; }
@keyframes el-tri-drift {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	50%      { transform: translate(20px, -30px) rotate(15deg); }
}

/* Bottom scroll cue */
.el-hero__scroll-cue {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: rgba(255,255,255,0.78);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	z-index: 2;
	transition: color 0.25s var(--ease);
}
.el-hero__scroll-cue:hover { color: var(--c-orange-2); }
.el-hero__scroll-cue-line {
	display: block;
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
	position: relative;
	overflow: hidden;
}
.el-hero__scroll-cue-line::after {
	content: '';
	position: absolute;
	top: -16px; left: 0;
	width: 1px;
	height: 16px;
	background: var(--c-orange-2);
	animation: el-scroll-cue 2.2s var(--ease) infinite;
}
@keyframes el-scroll-cue {
	0%   { top: -16px; opacity: 0; }
	30%  { opacity: 1; }
	100% { top: 48px; opacity: 0; }
}
@keyframes el-float {
	0%,100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(40px, -30px) scale(1.05); }
}

.el-hero__grid {
	position: relative;
	z-index: 1;
	display: block;
	min-height: calc(100vh - 220px);
	display: flex;
	align-items: center;
}
.el-hero__copy {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 640px;
	width: 100%;
	position: relative;
	z-index: 2;
}

.el-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	margin: 0;
	padding: 8px 16px;
	border: 1px solid rgba(255,167,0,0.35);
	border-radius: 999px;
	background: rgba(255,167,0,0.08);
	color: var(--c-orange-2);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.el-hero__eyebrow-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--c-orange-2);
	box-shadow: 0 0 0 4px rgba(255,167,0,0.25);
	animation: el-pulse-dot 2.4s ease-in-out infinite;
}
@keyframes el-pulse-dot {
	0%, 100% { box-shadow: 0 0 0 4px rgba(255,167,0,0.25); }
	50%      { box-shadow: 0 0 0 8px rgba(255,167,0,0); }
}

.el-hero__title {
	font-family: var(--ff-display);
	/* Scales gently so "LEADERSHIP DEVELOPMENT" never wraps inside its column. */
	font-size: clamp(36px, 4.4vw, 60px);
	line-height: 1.02;
	letter-spacing: 1.5px;
	color: var(--c-white);
	margin: 0;
	display: flex;
	flex-direction: column;
	max-width: 620px;
}
.el-hero__line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.05em;
}
.el-hero__line-inner {
	display: inline-block;
	transform: translateY(110%);
	animation: el-line-rise 0.95s var(--ease) forwards;
}
.el-hero__line:nth-child(1) .el-hero__line-inner { animation-delay: 0.15s; }
.el-hero__line:nth-child(2) .el-hero__line-inner { animation-delay: 0.30s; }
.el-hero__line:nth-child(3) .el-hero__line-inner { animation-delay: 0.45s; }
.el-hero__accent {
	background: var(--grad-sunrise);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
@keyframes el-line-rise {
	to { transform: translateY(0); }
}

.el-hero__lead-block {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 580px;
	padding-left: 20px;
	border-left: 2px solid var(--c-orange-2);
}
.el-hero__lead {
	font-size: 17px;
	line-height: 1.65;
	color: rgba(255,255,255,0.88);
	margin: 0;
}
.el-hero__lead--secondary {
	font-size: 14.5px;
	color: rgba(255,255,255,0.78);
	line-height: 1.6;
}
.el-hero__actions { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.el-hero__textlink {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--c-white);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 4px;
	transition: color 0.25s var(--ease);
}
.el-hero__textlink::after {
	content: '';
	position: absolute;
	left: 0; right: 24px; bottom: 0;
	height: 1px;
	background: var(--c-orange-2);
	transform-origin: left;
	transform: scaleX(0.6);
	transition: transform 0.3s var(--ease);
}
.el-hero__textlink:hover { color: var(--c-orange-2); }
.el-hero__textlink:hover::after { transform: scaleX(1); }
.el-hero__textlink .el-icon { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.el-hero__textlink:hover .el-icon { transform: translateX(4px); }

/* Credentials strip — inline credibility row with icons + pipe separators */
.el-hero__credentials {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin: 8px 0 0;
	padding: 20px 0 0;
	list-style: none;
	border-top: 1px solid rgba(255,255,255,0.1);
	max-width: 640px;
}
.el-hero__credentials li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255,255,255,0.88);
	letter-spacing: 0.02em;
	white-space: nowrap;
}
.el-hero__credentials li::after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 14px;
	background: rgba(255,255,255,0.25);
	margin-left: 16px;
}
.el-hero__credentials li:last-child::after { display: none; }
.el-hero__credentials-icon {
	width: 16px;
	height: 16px;
	color: var(--c-orange-2);
	flex-shrink: 0;
}

/* On smaller widths, allow each credential to wrap to its own line if needed */
@media (max-width: 768px) {
	.el-hero__credentials li { white-space: normal; }
	.el-hero__credentials li::after { display: none; }
	.el-hero__credentials { gap: 12px 16px; }
}

.el-hero__media {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	/* Width clamps so the photo never crowds the H1 text column.
	   - Min 480px on the smallest desktop viewports (just before stack breakpoint)
	   - Scales to 50% of grid width
	   - Caps at 980px on very wide screens */
	width: clamp(480px, 50%, 980px);
	display: flex;
	align-items: center; /* vertically centre the photo */
	justify-content: center; /* horizontally centre the photo within the right column */
	pointer-events: none; /* photo never intercepts clicks meant for text/CTAs */
	z-index: 1;
}
.el-hero__portrait {
	position: relative;
	width: 100%;
	max-width: 980px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
}
.el-hero__portrait-image {
	display: block;
	width: 100%;
	max-width: 980px;
	height: auto;
	max-height: min(92vh, 1040px);
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35));
	animation: el-portrait-rise 1.1s var(--ease) 0.2s both;
	/* Two masks composited together:
	   1. Bottom-up fade dissolves the desk
	   2. Bottom-left → top-right fade dissolves the exposed desk corner
	   The intersection produces a soft, asymmetric vignette that blends Colin
	   into the dark hero background. */
	mask-image:
		linear-gradient(to bottom, black 0%, black 55%, transparent 100%),
		linear-gradient(to top right, transparent 0%, rgba(0,0,0,0.2) 12%, black 35%, black 100%);
	mask-composite: intersect;
	-webkit-mask-image:
		linear-gradient(to bottom, black 0%, black 55%, transparent 100%),
		linear-gradient(to top right, transparent 0%, rgba(0,0,0,0.2) 12%, black 35%, black 100%);
	-webkit-mask-composite: source-in;
}
@keyframes el-portrait-rise {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ---------- Clients marquee ---------- */
.el-clients {
	background: var(--c-offwhite);
	padding: 56px 0;
}
.el-clients__title {
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-slate);
	margin: 0 0 32px;
}
/* Trust logo bar — infinite-loop marquee. Set of 4 unique logos rendered
   twice so the track translates -50% seamlessly without visible jump.
   Default state: grayscale at reduced opacity. Hover/focus reveals the
   original colour AND pauses the loop so users can focus a logo. */
.el-logobar {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.el-logobar__track {
	display: flex;
	align-items: center;
	gap: clamp(48px, 6vw, 96px);
	width: max-content;
	animation: el-logobar-scroll 28s linear infinite;
}
.el-logobar:hover .el-logobar__track,
.el-logobar:focus-within .el-logobar__track {
	animation-play-state: paused;
}
.el-logobar__item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	max-height: 64px;
	width: clamp(120px, 14vw, 180px);
	overflow: hidden;
}
/* Defensive sizing: explicit pixel max-height + !important so WP image
   optimisation plugins (Smush, ShortPixel, Cloudflare Mirage) can't add
   width/height attributes that override these. */
.el-logobar__item img {
	display: block !important;
	max-width: 100% !important;
	max-height: 64px !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain !important;
	filter: grayscale(100%);
	opacity: 0.55;
	transition: filter 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.el-logobar__item:hover img,
.el-logobar__item:focus-within img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.04);
}
@keyframes el-logobar-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
	.el-logobar__track { animation: none; }
}
@media (max-width: 600px) {
	.el-logobar__item { height: 48px; max-height: 48px; width: clamp(100px, 32vw, 140px); }
	.el-logobar__item img { max-height: 48px !important; }
}

/* ---------- Intro ("The problem") ---------- */
.el-intro {
	padding: var(--section-pad) 0;
	background: var(--c-white);
	position: relative;
	overflow: hidden;
}
/* Subtle decorative glow — echoes the brand without competing */
.el-intro::before {
	content: '';
	position: absolute;
	right: -100px;
	top: -60px;
	width: 320px; height: 320px;
	background: radial-gradient(circle, rgba(255,167,0,0.08), transparent 60%);
	pointer-events: none;
}
.el-intro__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 80px;
	align-items: center;
}
.el-intro__copy { display: flex; flex-direction: column; }
.el-intro__eyebrow {
	display: inline-block;
	align-self: flex-start;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 16px;
	padding: 6px 14px;
	background: rgba(214,61,26,0.08);
	border-radius: 999px;
}
.el-intro__title {
	font-family: var(--ff-display);
	font-size: clamp(28px, 3.6vw, 48px);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0 0 28px;
}
.el-intro__title .el-hero__accent { display: block; margin-top: 6px; }

.el-intro__body { margin: 0 0 32px; }
.el-intro__para {
	font-size: 16px;
	line-height: 1.7;
	color: var(--c-charcoal);
	margin: 0 0 18px;
}
.el-intro__para--solution {
	position: relative;
	padding-left: 22px;
	border-left: 3px solid var(--c-orange-2);
	font-weight: 500;
	font-style: italic;
	margin-top: 24px;
}

.el-intro__cta { display: flex; justify-content: flex-start; }

/* Right column: circular workspace image + rotating badge */
.el-intro__media {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 540px;
}

/* 2x2 image collage with gradient logo-trinity decoration behind */
.el-intro__collage {
	position: relative;
	width: 100%;
	max-width: 520px;
	aspect-ratio: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 14px;
	padding: 6px;
}
.el-intro__collage-bg {
	position: absolute;
	top: -8%;
	left: -8%;
	width: 116%;
	height: 116%;
	opacity: 0.12;
	z-index: 0;
	pointer-events: none;
}

.el-intro__tile {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 16px;
	background: rgba(34,34,34,0.04);
	box-shadow: 0 14px 30px rgba(34,34,34,0.12);
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
	z-index: 1;
}
.el-intro__tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s var(--ease);
}
.el-intro__tile:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(242,77,39,0.22); }
.el-intro__tile:hover img { transform: scale(1.04); }

/* Subtle staggered offset for editorial feel — each tile shifts a few pixels */
.el-intro__tile--1 { transform: translate(-6px, -6px); border-top-left-radius: 28px; }
.el-intro__tile--2 { transform: translate(6px, -6px);  border-top-right-radius: 28px; }
.el-intro__tile--3 { transform: translate(-6px, 6px);  border-bottom-left-radius: 28px; }
.el-intro__tile--4 { transform: translate(6px, 6px);   border-bottom-right-radius: 28px; }
.el-intro__tile--1:hover { transform: translate(-6px, -10px); }
.el-intro__tile--2:hover { transform: translate(6px, -10px); }
.el-intro__tile--3:hover { transform: translate(-6px, 2px); }
.el-intro__tile--4:hover { transform: translate(6px, 2px); }

/* Rotating brand badge — overlaps the collage at top-right */
.el-intro__badge {
	position: absolute;
	top: -8%;
	right: -8%;
	width: 30%;
	max-width: 140px;
	z-index: 3;
	animation: el-spin 22s linear infinite;
	filter: drop-shadow(0 12px 24px rgba(34,34,34,0.28));
}
@keyframes el-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Floating stat badge — reinforces credibility, sits bottom-left */
.el-intro__stat {
	position: absolute;
	bottom: -6%;
	left: -8%;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	background: var(--c-white);
	border-radius: 16px;
	box-shadow: 0 18px 36px rgba(34,34,34,0.18);
	max-width: 240px;
}
.el-intro__stat-num {
	font-family: var(--ff-display);
	font-size: 40px;
	line-height: 1;
	letter-spacing: 1px;
	color: var(--c-orange-cta);
	flex-shrink: 0;
}
.el-intro__stat-num span {
	font-size: 24px;
	color: var(--c-orange-2);
	margin-left: 2px;
}
.el-intro__stat-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.35;
	color: rgba(34,34,34,0.72);
}

/* ---------- Section helpers ---------- */
.el-section--dark {
	background: linear-gradient(180deg, #1a1320 0%, #2b1f33 100%);
	color: var(--c-white);
	position: relative;
}
.el-section--dark h1,
.el-section--dark h2,
.el-section--dark h3,
.el-section--dark h4 { color: var(--c-white); }

.el-section__title { text-align: center; max-width: 900px; margin: 0 auto; }
.el-section__title--top { padding-top: 80px; }
.el-section__title--bottom { padding-top: 60px; padding-bottom: 80px; font-size: clamp(28px, 3.5vw, 48px); }

/* Section header — H2 + intro paragraph paired together (used in services section) */
.el-section__header {
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
}
/* Inside a .el-section__header (eyebrow + H2 + intro group), the H2 sits
   directly under the eyebrow, so the global 80px padding-top is too much. */
.el-section__header .el-section__title--top {
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
}
.el-section__intro {
	max-width: 720px;
	margin: 16px auto 0;
	font-size: 16.5px;
	line-height: 1.7;
	color: rgba(255,255,255,0.78);
}

/* Inverted-triangle ("taper") description — text-wrap: balance keeps lines
   even, and a narrower middle/bottom max-width creates the down-pointing
   silhouette. Subtle but visually grounds the section. */
.el-section__intro--taper {
	text-wrap: balance;
	max-width: 760px;
	padding-bottom: 32px;
	position: relative;
}
.el-section__intro--taper::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 16px solid var(--c-orange-2);
	opacity: 0.85;
}

/* ---------- Services / 3 cards (Leadership / Personal Dev / Team Training) ---------- */
.el-services { padding: var(--section-pad) 0; }
.el-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding-block: 40px 0; /* small breathing room under the section header; section provides outer padding */
}

.el-svc {
	position: relative;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.el-svc:hover {
	transform: translateY(-6px);
	border-color: rgba(255,167,0,0.4);
	background: rgba(255,167,0,0.04);
	box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.el-svc__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.el-svc__num {
	font-family: var(--ff-display);
	font-size: 32px;
	letter-spacing: 1px;
	color: var(--c-orange-2);
	line-height: 1;
}
.el-svc__icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-orange-2);
	background: rgba(255,167,0,0.1);
	border-radius: 50%;
	transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.el-svc__icon .el-icon { width: 22px; height: 22px; }
.el-svc:hover .el-svc__icon {
	background: var(--c-orange-2);
	color: var(--c-charcoal);
	transform: rotate(-8deg);
}
.el-svc__title {
	font-family: var(--ff-display);
	font-size: clamp(22px, 2.2vw, 28px);
	letter-spacing: 0.5px;
	color: var(--c-white);
	margin: 0;
	line-height: 1.15;
}
.el-svc__body {
	font-size: 14.5px;
	line-height: 1.7;
	color: rgba(255,255,255,0.78);
	margin: 0;
	flex: 1;
}
.el-svc__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--c-orange-2);
	transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}
.el-svc__cta .el-icon { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.el-svc__cta:hover { color: var(--c-white); gap: 12px; }
.el-svc__cta:hover .el-icon { transform: translateX(4px); }

/* ---------- How It Works (3-step + triangle animation) ---------- */
.el-intersections {
	padding: var(--section-pad) 0;
}
.el-intersections__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-orange-2);
	margin: 0 0 16px;
	padding: 6px 14px;
	background: rgba(255,167,0,0.1);
	border-radius: 999px;
}
.el-intersections__media {
	display: flex;
	justify-content: center;
	margin: 24px auto 0;
	max-width: 660px;
}
.el-intersections__cta {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}
/* The "Book Your Free Discovery Call. Step 1 Starts Here." CTA is long —
   override the global .el-btn { white-space: nowrap } so it wraps gracefully
   on narrower viewports instead of overflowing. */
.el-intersections__cta .el-btn {
	white-space: normal;
	text-align: center;
	max-width: 560px;
	line-height: 1.3;
}
/* ----- Triangle logo animation (intersections section) -----
   Scoped under .triangle-anim-stage so it cannot leak. */
.triangle-anim-stage {
	--orange-light: #FFC371;
	--orange-mid: #FF8A2B;
	--orange-deep: #E8431F;

	position: relative;
	width: 100%;
	max-width: 660px;
	/* Aspect matches the SVG viewBox (700×420 = 5/3) so the stage hugs the
	   visible triangles tightly with no empty canvas above. */
	aspect-ratio: 5 / 3;
	margin: 0 auto;
	background: transparent;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
}

.triangle-anim-stage .flare {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0;
	pointer-events: none;
	transform: scale(0.7);
}
.triangle-anim-stage .flare-orange {
	width: 55%; height: 55%; top: 22%; left: 22%;
	background: radial-gradient(circle, rgba(255,167,0,0.35) 0%, rgba(255,167,0,0) 70%);
}
.triangle-anim-stage .flare-yellow {
	width: 50%; height: 50%; bottom: 8%; left: 8%;
	background: radial-gradient(circle, rgba(255,200,100,0.30) 0%, rgba(255,200,100,0) 70%);
}
.triangle-anim-stage .flare-red {
	width: 55%; height: 55%; bottom: 5%; right: 8%;
	background: radial-gradient(circle, rgba(242,77,39,0.30) 0%, rgba(242,77,39,0) 70%);
}
.triangle-anim-stage.is-playing .flare-orange { animation: flarePulse 5s ease-in-out infinite; animation-delay: 0.1s; }
.triangle-anim-stage.is-playing .flare-yellow { animation: flarePulse 5s ease-in-out infinite; animation-delay: 0.2s; }
.triangle-anim-stage.is-playing .flare-red    { animation: flarePulse 5s ease-in-out infinite; animation-delay: 0.3s; }

@keyframes flarePulse {
	0%, 100% { opacity: 0; transform: scale(0.7); }
	20%      { opacity: 1; transform: scale(1); }
	80%      { opacity: 1; transform: scale(1); }
}

.triangle-anim-stage .logo-svg {
	position: relative;
	width: 80%;
	height: auto;
	z-index: 2;
}
.triangle-anim-stage .tri-outline {
	fill: none;
	stroke: var(--orange-deep);
	stroke-width: 2;
	stroke-dasharray: 900;
	stroke-dashoffset: 900;
	opacity: 0;
}
.triangle-anim-stage.is-playing .tri-outline    { animation: drawStroke 5s ease-in-out infinite; }
.triangle-anim-stage.is-playing .tri-outline.t1 { animation-delay: 0.2s; }
.triangle-anim-stage.is-playing .tri-outline.t2 { animation-delay: 0.4s; }
.triangle-anim-stage.is-playing .tri-outline.t3 { animation-delay: 0.6s; }

@keyframes drawStroke {
	0%   { stroke-dashoffset: 900; opacity: 0; }
	4%   { opacity: 1; }
	20%  { stroke-dashoffset: 0; opacity: 1; }
	30%  { opacity: 0; }
	100% { stroke-dashoffset: 900; opacity: 0; }
}

.triangle-anim-stage .fill-layer { opacity: 0; }
.triangle-anim-stage.is-playing .fill-25   { animation: fadeStep 5s ease-in-out infinite; animation-delay: 0s; }
.triangle-anim-stage.is-playing .fill-50   { animation: fadeStep 5s ease-in-out infinite; animation-delay: 0.15s; }
.triangle-anim-stage.is-playing .fill-75   { animation: fadeStep 5s ease-in-out infinite; animation-delay: 0.3s; }
.triangle-anim-stage.is-playing .fill-full { animation: fadeFull 5s ease-in-out infinite; }

@keyframes fadeStep {
	0%, 100% { opacity: 0; }
	25%      { opacity: 0; }
	35%      { opacity: 0.35; }
	45%      { opacity: 0; }
}
@keyframes fadeFull {
	0%, 100% { opacity: 0; }
	35%      { opacity: 0; }
	50%      { opacity: 1; }
	85%      { opacity: 1; }
	95%      { opacity: 0; }
}

.triangle-anim-stage .label {
	position: absolute;
	color: var(--c-white);
	font-family: var(--ff-display);
	font-weight: 400;
	font-size: clamp(1rem, 2.6vw, 1.75rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	z-index: 3;
	opacity: 0;
	text-align: center;
	text-shadow: 0 2px 12px rgba(0,0,0,0.6);
	white-space: nowrap;
	pointer-events: none;
}
/* Label positions tuned to the cropped viewBox (0 180 700 420) and 5/3 stage. */
.triangle-anim-stage .label-clarity   { top: 72%; left: 29%; transform: translate(-50%, -50%); }
.triangle-anim-stage .label-ownership { top: 34%; left: 48%; transform: translate(-50%, -50%); color: var(--c-white); }
.triangle-anim-stage .label-impact    { top: 72%; left: 68%; transform: translate(-50%, -50%); }

.triangle-anim-stage.is-playing .label-clarity   { animation: triSlideLeft  5s ease-in-out infinite; }
.triangle-anim-stage.is-playing .label-ownership { animation: triSlideTop   5s ease-in-out infinite; }
.triangle-anim-stage.is-playing .label-impact    { animation: triSlideRight 5s ease-in-out infinite; }

@keyframes triSlideLeft {
	0%, 100% { opacity: 0; transform: translate(-50%, -50%) translateX(-30px); }
	55%      { opacity: 0; transform: translate(-50%, -50%) translateX(-30px); }
	65%      { opacity: 1; transform: translate(-50%, -50%) translateX(0); }
	85%      { opacity: 1; transform: translate(-50%, -50%) translateX(0); }
	95%      { opacity: 0; transform: translate(-50%, -50%) translateX(-15px); }
}
@keyframes triSlideTop {
	0%, 100% { opacity: 0; transform: translate(-50%, -50%) translateY(-20px); }
	58%      { opacity: 0; transform: translate(-50%, -50%) translateY(-20px); }
	68%      { opacity: 1; transform: translate(-50%, -50%) translateY(0); }
	85%      { opacity: 1; transform: translate(-50%, -50%) translateY(0); }
	95%      { opacity: 0; transform: translate(-50%, -50%) translateY(-10px); }
}
@keyframes triSlideRight {
	0%, 100% { opacity: 0; transform: translate(-50%, -50%) translateX(30px); }
	61%      { opacity: 0; transform: translate(-50%, -50%) translateX(30px); }
	71%      { opacity: 1; transform: translate(-50%, -50%) translateX(0); }
	85%      { opacity: 1; transform: translate(-50%, -50%) translateX(0); }
	95%      { opacity: 0; transform: translate(-50%, -50%) translateX(15px); }
}

@media (prefers-reduced-motion: reduce) {
	.triangle-anim-stage .flare,
	.triangle-anim-stage .fill-full,
	.triangle-anim-stage .label {
		opacity: 1 !important;
		animation: none !important;
	}
	.triangle-anim-stage .label { transform: translate(-50%, -50%) !important; }
	.triangle-anim-stage .tri-outline,
	.triangle-anim-stage .fill-25,
	.triangle-anim-stage .fill-50,
	.triangle-anim-stage .fill-75 { opacity: 0 !important; }
}
/* Three-step row (Inspire / Equip / Empower) */
.el-steps {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 1000px;
	margin-inline: auto;
}
.el-step {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 0 16px;
}
.el-step__tri {
	width: 32px;
	height: auto;
	margin-bottom: 10px;
	filter: drop-shadow(0 4px 12px rgba(255,167,0,0.35));
}
.el-step__name {
	font-family: var(--ff-display);
	font-size: clamp(24px, 2.4vw, 32px);
	letter-spacing: 1px;
	color: var(--c-orange-2);
	margin: 0;
	line-height: 1;
}
.el-step__num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	margin: 6px 0 12px;
}
.el-step__body {
	font-size: 14.5px;
	line-height: 1.65;
	color: rgba(255,255,255,0.78);
	margin: 0;
	max-width: 280px;
}

/* ---------- Founder / Why Colin (E-E-A-T) ---------- */
.el-founder {
	padding: var(--section-pad) 0 0;
	background: var(--c-offwhite);
	position: relative;
	/* `clip` keeps the trinity watermark contained without creating a scroll
	   container — preserves position: sticky on .el-founder__media (desktop). */
	overflow: hidden;
	overflow: clip;
}
/* Section background: Everyday Leader logo mark — three triangles
   (one inverted top, two upright below) rendered in the brand sunrise
   gradient as a soft watermark behind the photo. */
.el-founder__bg {
	position: absolute;
	top: 8%;
	right: -80px;
	width: clamp(280px, 28%, 460px);
	aspect-ratio: 10 / 9;
	pointer-events: none;
	z-index: 0;
	opacity: 0.10;
}
.el-founder__bg-svg {
	width: 100%;
	height: 100%;
	display: block;
	overflow: visible;
}
.el-founder__bg-mark {
	transform-origin: 50% 50%;
}
.el-founder__inner {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(0, 1.15fr);
	gap: clamp(40px, 6vw, 88px);
	align-items: start;
	padding-bottom: var(--section-pad);
	position: relative;
	z-index: 1;
}

/* Desktop only — pin the photo column so it stays in view while the
   long content column (story / quote / signature / CTA) scrolls past it.
   The chip and badge are positioned relative to .el-founder__media, so
   they stick along with the photo automatically.

   IMPORTANT: we override the [data-el-reveal] transform/opacity here.
   A transform on a position:sticky element creates a new containing
   block for the sticky calculation, which breaks the stick behaviour.
   On desktop, the media column simply renders without the slide-in
   reveal animation (it's static, so no animation is needed anyway). */
@media (min-width: 1025px) {
	.el-founder__media,
	.el-founder__media[data-el-reveal],
	.el-founder__media[data-el-reveal].is-visible {
		position: sticky;
		top: 100px;
		align-self: start;
		opacity: 1;
		transform: none;
		transition: none;
		will-change: auto;
	}
}

/* Media column — layered triangles + transparent PNG cutout */
.el-founder__media {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.el-founder__media-frame {
	position: relative;
	width: 100%;
	max-width: 480px;
	aspect-ratio: 4 / 5;
	z-index: 2;
}
/* Solid gradient backdrop shape — angled slab anchoring the portrait */
.el-founder__media-shape {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: min(92%, 440px);
	height: 78%;
	background: linear-gradient(155deg, #FFB347 0%, #FFA700 45%, #F24D27 100%);
	border-radius: 24px 24px 24px 120px;
	z-index: 1;
	box-shadow: 0 30px 60px rgba(242,77,39,0.25);
}
.el-founder__media-shape::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(34,34,34,0.10) 100%);
	pointer-events: none;
}
.el-founder__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	z-index: 4;
	filter: drop-shadow(0 28px 40px rgba(34,34,34,0.28));
}

/* Floating credential badge — sunrise gradient disc, white type. Mirrors
   the brand mark and the media-shape backdrop for cohesion. */
.el-founder__badge {
	position: absolute;
	left: 4%;
	bottom: 12%;
	z-index: 5;
	width: 124px;
	height: 124px;
	border-radius: 50%;
	background: linear-gradient(155deg, #FFB347 0%, #FFA700 45%, #F24D27 100%);
	color: var(--c-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 18px 36px rgba(242,77,39,0.34);
}
.el-founder__badge::before {
	content: '';
	position: absolute;
	inset: 6px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.45);
	pointer-events: none;
}
.el-founder__badge-num {
	font-family: var(--ff-display);
	font-size: 46px;
	line-height: 1;
	letter-spacing: 1px;
	color: var(--c-white);
}
.el-founder__badge-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--c-white);
	margin-top: 4px;
}

/* EMCC accreditation chip — top-right of media frame */
.el-founder__chip {
	position: absolute;
	top: 8%;
	right: -8px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: var(--c-white);
	border-radius: 12px;
	box-shadow: 0 14px 30px rgba(34,34,34,0.16);
	border: 1px solid rgba(34,34,34,0.06);
}
.el-founder__chip-icon {
	width: 22px;
	height: 22px;
	color: var(--c-orange-cta);
	flex-shrink: 0;
}
.el-founder__chip-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.el-founder__chip-text strong {
	font-family: var(--ff-display);
	font-size: 16px;
	letter-spacing: 1.2px;
	color: var(--c-charcoal);
}
.el-founder__chip-text small {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(34,34,34,0.62);
	margin-top: 2px;
}

/* Content column */
.el-founder__content {
	max-width: 620px;
}
.el-founder__header { margin-bottom: 32px; }
.el-founder__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 16px;
	padding: 6px 14px;
	background: rgba(214,61,26,0.08);
	border-radius: 999px;
}
.el-founder__eyebrow-dot {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 8px solid var(--c-orange-cta);
}
.el-founder__title {
	font-family: var(--ff-display);
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0;
}
.el-founder__title .el-hero__accent { display: block; margin-top: 6px; }

.el-founder__body {
	margin: 0 0 36px;
}
.el-founder__para {
	font-size: 16px;
	line-height: 1.75;
	color: var(--c-charcoal);
	margin: 0 0 22px;
}
.el-founder__para--approach {
	position: relative;
	padding-left: 22px;
	border-left: 3px solid var(--c-orange-2);
	font-weight: 500;
	font-style: italic;
	margin-top: 28px;
}

/* Pull-quote — editorial rhythm break between paragraphs */
.el-founder__quote {
	position: relative;
	margin: 28px 0;
	padding: 4px 0 4px 28px;
	border-left: 4px solid var(--c-orange-cta);
}
.el-founder__quote p {
	font-family: var(--ff-display);
	font-size: clamp(20px, 2.2vw, 26px);
	line-height: 1.3;
	letter-spacing: 0.5px;
	color: var(--c-charcoal);
	margin: 0;
}
.el-founder__quote::before {
	content: '“';
	position: absolute;
	top: -18px;
	left: 16px;
	font-family: Georgia, serif;
	font-size: 64px;
	line-height: 1;
	color: rgba(214,61,26,0.20);
	pointer-events: none;
}

/* Author signature block */
.el-founder__signature {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0 0 28px;
	padding: 18px 0 0;
	border-top: 1px solid rgba(34,34,34,0.10);
}
.el-founder__signature-name {
	font-family: var(--ff-display);
	font-size: 22px;
	letter-spacing: 1.5px;
	color: var(--c-charcoal);
}
.el-founder__signature-role {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(34,34,34,0.62);
}

.el-founder__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
	justify-content: flex-start;
}
.el-founder__cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-charcoal);
	border-bottom: 2px solid var(--c-orange-cta);
	padding-bottom: 4px;
	transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.el-founder__cta-secondary:hover {
	color: var(--c-orange-cta);
	gap: 10px;
}
.el-founder__cta-secondary span { transition: transform 0.2s var(--ease); }
.el-founder__cta-secondary:hover span { transform: translateX(4px); }

/* Credentials band — full-width dark strip at the very bottom of the section,
   4 inline credibility points separated by subtle dividers. */
.el-founder__credentials {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 28px var(--gutter);
	list-style: none;
	background: var(--c-charcoal);
	color: var(--c-white);
}
.el-founder__credentials li {
	position: relative;
	padding: 0 32px;
	display: inline-flex;
	align-items: center;
}
.el-founder__credentials li::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--c-orange-2);
	border-radius: 50%;
	margin-right: 12px;
	flex-shrink: 0;
}
.el-founder__credentials li:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 16px;
	background: rgba(255,255,255,0.18);
}
.el-founder__credentials-label {
	font-family: var(--ff-display);
	font-size: 16px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--c-white);
}

/* ---------- Feature quote ---------- */
.el-feature {
	padding: var(--section-pad) 0;
}
.el-feature__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 64px;
	align-items: start;
}
.el-feature__title {
	font-family: var(--ff-display);
	font-size: clamp(28px, 3.4vw, 44px);
	line-height: 1.15;
	color: var(--c-white);
	margin: 0;
}
.el-feature__title-accent {
	display: block;
	background: var(--grad-sunrise);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 8px;
}
.el-feature__quote {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255,255,255,0.92);
	border-left: 3px solid var(--c-orange-2);
	padding-left: 24px;
}
.el-feature__quote footer {
	font-size: 14px;
	color: var(--c-orange-2);
	margin-top: 16px;
	font-style: normal;
}

/* ---------- Testimonials ---------- */
.el-testimonials {
	padding: var(--section-pad) 0;
	background: var(--c-white);
	position: relative;
}
/* Editorial header — 2-column: heading on the left, lead + verified pill on the right */
.el-testimonials__header {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: end;
	margin-bottom: 48px;
}
.el-testimonials__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 16px;
	padding: 6px 14px;
	background: rgba(214,61,26,0.08);
	border-radius: 999px;
}
.el-testimonials__eyebrow svg { width: 13px; height: 13px; }
.el-testimonials__title {
	font-family: var(--ff-display);
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0;
}
.el-testimonials__title-accent {
	display: block;
	color: var(--c-orange);
	margin-top: 4px;
}
.el-testimonials__aside {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 460px;
}
.el-testimonials__lead {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(34,34,34,0.72);
	margin: 0;
}

/* Verified clients pill — replaces the old grey disclosure note */
.el-testimonials__verified {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(214,61,26,0.04);
	border: 1px solid rgba(214,61,26,0.18);
	border-radius: 14px;
}
.el-testimonials__verified-icon {
	width: 28px;
	height: 28px;
	color: var(--c-orange-cta);
	flex-shrink: 0;
}
.el-testimonials__verified-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.35;
}
.el-testimonials__verified-text strong {
	font-family: var(--ff-display);
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--c-charcoal);
}
.el-testimonials__verified-text small {
	font-size: 11.5px;
	font-weight: 500;
	color: rgba(34,34,34,0.62);
}
.el-testimonials__verified-text small a {
	color: var(--c-orange-cta);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.el-testimonials__verified-text small a:hover { color: var(--c-orange); }

/* Legacy disclosure block — kept as fallback if used elsewhere */
.el-testimonials__disclosure {
	font-size: 13px;
	line-height: 1.55;
	color: var(--c-slate);
	max-width: 720px;
	margin: 0 0 24px;
	padding: 12px 16px;
	background: var(--c-offwhite);
	border-left: 3px solid var(--c-orange-2);
	border-radius: 4px;
}
.el-testimonials__disclosure a { color: var(--c-orange-cta); text-decoration: underline; text-underline-offset: 2px; }

.el-testimonials__controls {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-bottom: 32px;
}
.el-testimonials__btn {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--c-orange-2);
	color: var(--c-charcoal);
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.el-testimonials__btn:hover { background: var(--c-orange); color: var(--c-white); transform: scale(1.06); }
.el-testimonials__btn .el-icon { width: 22px; height: 22px; }

.el-testimonials__viewport {
	overflow: hidden;
	position: relative;
}
.el-testimonials__track {
	display: flex;
	gap: 24px;
	transition: transform 0.6s var(--ease);
}
/* Two distinct themes (assigned in PHP). Both fully readable — no
   muting, no scaling. Light cards use the off-white palette; dark
   cards use the hero-family plum gradient + warm radial glows so the
   featured testimonial visually anchors the carousel without making
   neighbours fade. */
.el-testimonial {
	flex: 0 0 calc((100% - 48px) / 3);
	min-width: 300px;
	border-radius: var(--radius);
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	box-shadow: 0 6px 18px rgba(34,34,34,0.06);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.el-testimonial:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(34,34,34,0.10); }

/* Light theme — readable on the white section background */
.el-testimonial--light {
	background: var(--c-offwhite);
	color: var(--c-charcoal);
	border: 1px solid rgba(34,34,34,0.06);
}
.el-testimonial--light .el-testimonial__quote { color: var(--c-orange-cta); }
.el-testimonial--light .el-testimonial__word { color: var(--c-orange-cta); }
.el-testimonial--light .el-testimonial__author {
	color: var(--c-charcoal);
	border-top-color: var(--c-orange-cta);
}

/* Dark theme — featured card with hero-style warm gradient */
.el-testimonial--dark {
	background:
		radial-gradient(ellipse 90% 70% at 85% 10%, rgba(242,77,39,0.22) 0%, transparent 60%),
		radial-gradient(ellipse 70% 60% at 0% 100%, rgba(255,167,0,0.16) 0%, transparent 60%),
		linear-gradient(135deg, #14091a 0%, #1f0f28 40%, #2b1f33 100%);
	color: var(--c-white);
	/* Negative spread (-14px) tightens the shadow so it only protrudes
	   below the card, not above. Without this, the 40px blur projects
	   ~22px above the top edge and reads as a dark smudge on the white
	   section background. */
	box-shadow: 0 22px 44px -14px rgba(20,9,26,0.45);
}
.el-testimonial--dark:hover { box-shadow: 0 28px 54px -14px rgba(20,9,26,0.55); }
.el-testimonial--dark .el-testimonial__quote { color: var(--c-orange-2); }
.el-testimonial--dark .el-testimonial__word { color: var(--c-orange-2); }
.el-testimonial--dark .el-testimonial__author {
	color: var(--c-white);
	border-top-color: var(--c-orange-2);
}

/* Shared element styles (theme-agnostic) */
.el-testimonial__quote { width: 28px; height: 28px; }
.el-testimonial__word {
	font-family: var(--ff-display);
	font-size: 22px;
	letter-spacing: 1px;
	margin: 0;
}
.el-testimonial__body {
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
	flex: 1;
	color: inherit;
}
.el-testimonial__author {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-top: auto;
	padding-top: 14px;
	border-top: 2px solid;
	align-self: flex-start;
}

.el-testimonials__cta {
	display: flex;
	justify-content: center;
	margin-top: 56px;
	width: 100%;
	max-width: 100%;
}
.el-testimonials__cta .el-btn {
	max-width: 100%;
	white-space: normal;
	text-align: center;
}

/* ---------- Contact ---------- */
.el-contact,
.el-finalcta {
	padding: var(--section-pad) 0;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 60% at 80% 20%, rgba(242,77,39,0.18) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255,167,0,0.12) 0%, transparent 60%),
		linear-gradient(135deg, #14091a 0%, #1f0f28 40%, #2b1f33 100%);
	color: var(--c-white);
	isolation: isolate;
}

/* ---------- Closing call-to-action (Section 7) ---------- */
.el-finalcta__inner {
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
/* Logo trinity watermark — brand presence behind the heading */
.el-finalcta__mark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -54%);
	width: clamp(420px, 60%, 720px);
	aspect-ratio: 10 / 9;
	opacity: 0.06;
	pointer-events: none;
}

/* Two-column grid: persuasion copy left, action panel right */
.el-finalcta__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(40px, 5vw, 72px);
	align-items: start;
	margin-bottom: 56px;
}
.el-finalcta__lead { max-width: 560px; }

.el-finalcta__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-orange-2);
	margin: 0 0 18px;
	padding: 6px 18px;
	background: rgba(255,167,0,0.10);
	border: 1px solid rgba(255,167,0,0.30);
	border-radius: 999px;
}
.el-finalcta__eyebrow-rule {
	display: inline-block;
	width: 24px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,167,0,0.7));
}
.el-finalcta__title {
	font-family: var(--ff-display);
	font-size: clamp(34px, 4.4vw, 56px);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--c-white);
	margin: 0 0 28px;
}
.el-finalcta__title .el-hero__accent { display: block; margin-top: 6px; }
.el-finalcta__body { margin: 0; }
.el-finalcta__para {
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255,255,255,0.82);
	margin: 0 0 18px;
}
.el-finalcta__para:last-child { margin-bottom: 0; }

/* Action panel — glassy card containing steps + CTA */
.el-finalcta__panel {
	position: relative;
	padding: 36px 32px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 22px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 30px 60px rgba(0,0,0,0.35);
	overflow: hidden;
	max-width: 100%;
	min-width: 0;
}
.el-finalcta__grid { min-width: 0; }
.el-finalcta__grid > * { min-width: 0; }
.el-finalcta__panel-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-orange-2);
	margin: 0 0 22px;
}
/* What-happens-next — vertical timeline inside the action panel */
.el-finalcta__steps {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
}
.el-finalcta__steps::before {
	content: '';
	position: absolute;
	left: 21px;
	top: 22px;
	bottom: 22px;
	width: 2px;
	background: linear-gradient(180deg, rgba(255,167,0,0.50), rgba(242,77,39,0.20));
	z-index: 0;
}
.el-finalcta__step {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.el-finalcta__step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(155deg, #FFB347 0%, #FFA700 50%, #F24D27 100%);
	color: var(--c-white);
	font-family: var(--ff-display);
	font-size: 16px;
	letter-spacing: 1px;
	box-shadow: 0 8px 18px rgba(242,77,39,0.34);
	flex-shrink: 0;
}
.el-finalcta__step-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 6px;
}
.el-finalcta__step-label {
	font-family: var(--ff-display);
	font-size: 14px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--c-white);
}
.el-finalcta__step-detail {
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.55;
	color: rgba(255,255,255,0.62);
}

.el-finalcta__action {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.el-finalcta__action .el-btn { width: 100%; }
.el-finalcta__assure {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px 10px;
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.62);
}
.el-finalcta__assure span[aria-hidden] { color: var(--c-orange-2); }
/* Trait grid — three reassurance pillars in a clean 3-up layout */
.el-finalcta__traits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}
.el-finalcta__trait {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 22px 18px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	text-align: center;
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.el-finalcta__trait:hover {
	background: rgba(255,167,0,0.06);
	border-color: rgba(255,167,0,0.32);
	transform: translateY(-2px);
}
.el-finalcta__trait-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,167,0,0.12);
	color: var(--c-orange-2);
	margin-bottom: 4px;
}
.el-finalcta__trait-icon svg { width: 20px; height: 20px; }
.el-finalcta__trait-label {
	font-family: var(--ff-display);
	font-size: 16px;
	letter-spacing: 1.2px;
	color: var(--c-white);
	text-transform: uppercase;
}
.el-finalcta__trait-detail {
	font-size: 12.5px;
	font-weight: 500;
	color: rgba(255,255,255,0.62);
	letter-spacing: 0.02em;
}

/* Serving locations — labeled chip row, distinct from the trait grid */
.el-finalcta__serving {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 14px;
	padding: 16px 20px;
	background: rgba(0,0,0,0.18);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 999px;
	max-width: 100%;
	margin: 0 auto;
}
.el-finalcta__serving-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-orange-2);
	padding-right: 6px;
	border-right: 1px solid rgba(255,255,255,0.14);
}
.el-finalcta__serving-label svg { width: 14px; height: 14px; }
.el-finalcta__serving-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.el-finalcta__serving-list li {
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.85);
	padding: 5px 12px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 999px;
}
.el-contact__bg { position: absolute; inset: 0; pointer-events: none; }
.el-contact__shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
}
.el-contact__shape--orb {
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(242,77,39,0.4), transparent 70%);
	bottom: -100px; left: -100px;
}
.el-contact__shape--ring {
	width: 300px; height: 300px;
	background: radial-gradient(circle, rgba(255,167,0,0.3), transparent 70%);
	top: 20%; right: -80px;
}
.el-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.el-contact__title {
	font-size: clamp(48px, 6vw, 84px);
	margin: 0 0 16px;
	color: var(--c-white);
}
.el-contact__lead {
	font-size: 18px;
	line-height: 1.5;
	color: rgba(255,255,255,0.78);
	max-width: 380px;
	margin: 0;
}
.el-contact__form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.el-form-row { display: grid; gap: 18px; }
.el-form-row--two { grid-template-columns: 1fr 1fr; }
.el-field { display: flex; flex-direction: column; gap: 6px; }
.el-field__label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; }
.el-field input,
.el-field textarea {
	width: 100%;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 6px;
	padding: 14px 16px;
	color: var(--c-white);
	font-family: inherit;
	font-size: 15px;
	min-height: 48px;
	transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.el-field input:focus,
.el-field textarea:focus {
	outline: none;
	border-color: var(--c-orange-2);
	background: rgba(255,255,255,0.1);
}
.el-field input::placeholder,
.el-field textarea::placeholder { color: rgba(255,255,255,0.4); }
.el-field textarea { resize: vertical; min-height: 120px; }

.el-field-required-note {
	font-size: 13px;
	color: rgba(255,255,255,0.78);
	margin: 0 0 8px;
}
.el-field-required-note span,
.el-field__label span { color: var(--c-orange-2); margin-left: 2px; }
.el-form-privacy,
.el-newsletter__privacy {
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255,255,255,0.78);
	margin: 4px 0 0;
}
.el-newsletter__privacy {
	color: rgba(34,34,34,0.7);
	grid-column: 1 / -1;
}
.el-form-privacy a,
.el-newsletter__privacy a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.el-form-privacy a:hover,
.el-newsletter__privacy a:hover { color: var(--c-orange-2); }

/* ---------- Newsletter strip ---------- */
/* ---------- Newsletter — "The Monday Note" editorial signup ----------
   Deliberately styled as a light/cream editorial section to break the
   visual back-to-back with the dark closing CTA above it. */
.el-newsletter {
	position: relative;
	padding: 88px 0;
	background: #FAF6EE;
	color: var(--c-charcoal);
	overflow: hidden;
	isolation: isolate;
	border-top: 1px solid rgba(34,34,34,0.06);
}
/* Soft warm gradient wash from top-right corner — gives subtle warmth
   without competing with the closing CTA's intense orange/plum scheme. */
.el-newsletter::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 720px;
	height: 720px;
	background: radial-gradient(circle at center, rgba(255,167,0,0.18), transparent 60%);
	pointer-events: none;
	z-index: 0;
}
.el-newsletter::after {
	content: '';
	position: absolute;
	bottom: -180px;
	left: -160px;
	width: 560px;
	height: 560px;
	background: radial-gradient(circle at center, rgba(242,77,39,0.10), transparent 60%);
	pointer-events: none;
	z-index: 0;
}
.el-newsletter__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.el-newsletter__mark {
	position: absolute;
	top: 50%;
	right: -120px;
	transform: translateY(-50%);
	width: clamp(420px, 48%, 680px);
	aspect-ratio: 10 / 9;
	opacity: 0.07;
}
.el-newsletter__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}

.el-newsletter__copy { max-width: 520px; }
.el-newsletter__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 20px;
	padding: 6px 14px;
	background: rgba(214,61,26,0.08);
	border: 1px solid rgba(214,61,26,0.24);
	border-radius: 999px;
}
.el-newsletter__eyebrow svg { width: 14px; height: 14px; }

.el-newsletter__title {
	font-family: var(--ff-display);
	font-size: clamp(34px, 4.4vw, 56px);
	line-height: 1.05;
	letter-spacing: 0.5px;
	color: var(--c-charcoal);
	margin: 0 0 14px;
}
.el-newsletter__title-accent {
	display: block;
	color: var(--c-orange);
	margin-top: 4px;
}
.el-newsletter__byline {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(34,34,34,0.55);
	margin: 0 0 24px;
	font-style: italic;
}

/* What's in each issue — three numbered promise rows */
.el-newsletter__promise {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.el-newsletter__promise li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: rgba(34,34,34,0.78);
}
.el-newsletter__promise-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(155deg, #FFB347 0%, #FFA700 50%, #F24D27 100%);
	color: var(--c-white);
	font-family: var(--ff-display);
	font-size: 14px;
	letter-spacing: 0.5px;
	flex-shrink: 0;
}

/* Form — single inline pill with embedded submit */
.el-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.el-newsletter__pill {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 6px 6px 22px;
	background: var(--c-white);
	border: 1px solid rgba(34,34,34,0.10);
	border-radius: 999px;
	box-shadow: 0 18px 36px rgba(34,34,34,0.10);
}
.el-newsletter__pill input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: none;
	background: transparent;
	color: var(--c-charcoal);
	font-size: 15.5px;
	padding: 12px 0;
	font-family: inherit;
}
.el-newsletter__pill input::placeholder {
	color: rgba(34,34,34,0.45);
}
.el-newsletter__pill input:focus-visible {
	outline: 0;
}
.el-newsletter__submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--c-orange-cta);
	color: var(--c-white);
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.2s var(--ease), gap 0.2s var(--ease), transform 0.2s var(--ease);
	flex-shrink: 0;
}
.el-newsletter__submit:hover {
	background: var(--c-orange-cta-hover);
	gap: 12px;
}
.el-newsletter__submit:focus-visible {
	outline: 3px solid var(--c-orange-2);
	outline-offset: 3px;
}
.el-newsletter__submit svg { width: 16px; height: 16px; }

.el-newsletter__trust {
	font-size: 13px;
	font-weight: 500;
	color: rgba(34,34,34,0.62);
	margin: 0;
	line-height: 1.5;
}
.el-newsletter__privacy {
	font-size: 12px;
	color: rgba(34,34,34,0.46);
	margin: 0;
	line-height: 1.5;
}
.el-newsletter__privacy a {
	color: var(--c-orange-cta);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.el-newsletter__privacy a:hover { color: var(--c-orange); }

/* ---------- Footer ---------- */
.el-footer {
	background: var(--c-charcoal);
	color: var(--c-white);
	padding-top: 72px;
}

/* Top zone — 4-column grid: Brand · Explore · Legal · Connect */
.el-footer__inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	padding-bottom: 56px;
	align-items: start;
}
.el-footer__brand-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 360px;
}
.el-footer__brand {
	display: inline-flex;
	color: var(--c-white);
	line-height: 0;
}
.el-footer__logo {
	display: block;
	width: auto;
	height: auto;
	max-height: 72px;
	max-width: 220px;
}
.el-footer__tagline {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255,255,255,0.62);
	margin: 0;
}
.el-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.el-footer__contact li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
}
.el-footer__contact svg {
	width: 16px;
	height: 16px;
	color: var(--c-orange-2);
	flex-shrink: 0;
}
.el-footer__contact a {
	color: rgba(255,255,255,0.86);
	transition: color 0.2s var(--ease);
}
.el-footer__contact a:hover { color: var(--c-orange-2); }

/* Footer columns — heading + link list */
.el-footer__col-title {
	font-family: var(--ff-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-orange-2);
	margin: 6px 0 18px;
}

.el-footer__nav-list,
.el-footer__nav .menu,
.el-footer__legal-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
}
.el-footer__nav a,
.el-footer__legal-nav a {
	color: rgba(255,255,255,0.78);
	transition: color 0.2s var(--ease);
}
.el-footer__nav a:hover,
.el-footer__legal-nav a:hover { color: var(--c-orange-2); }

.el-footer__legal-link--btn {
	background: transparent;
	border: 0;
	padding: 0;
	font: inherit;
	font-size: 14px;
	color: rgba(255,255,255,0.78);
	cursor: pointer;
	text-align: left;
	transition: color 0.2s var(--ease);
}
.el-footer__legal-link--btn:hover { color: var(--c-orange-2); }

/* Connect column — social icons in a clean row */
.el-footer__social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.el-footer__social a {
	width: 38px;
	height: 38px;
	background: rgba(255,255,255,0.06);
	color: var(--c-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.el-footer__social a:hover {
	background: var(--c-orange);
	transform: translateY(-2px);
	color: var(--c-white);
}
.el-footer__social .el-icon { width: 18px; height: 18px; }

/* Company info — single compact line of Companies Act 2006 disclosure */
.el-footer__company {
	background: rgba(255,255,255,0.03);
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 22px 0;
	font-size: 13px;
	color: rgba(255,255,255,0.70);
}
.el-footer__company-line {
	line-height: 1.6;
}
.el-footer__company-line strong {
	color: var(--c-white);
	font-weight: 700;
}
.el-footer__company-sep {
	display: inline-block;
	margin: 0 10px;
	color: var(--c-orange-2);
	opacity: 0.75;
}

/* Bottom bar — copyright + small credit */
.el-footer__legal {
	background: rgba(0,0,0,0.30);
	padding: 16px 0;
	font-size: 12px;
	color: rgba(255,255,255,0.55);
}
.el-footer__legal-credit {
	color: rgba(255,255,255,0.40);
}
.el-footer__legal-credit a {
	color: rgba(255,255,255,0.65);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(255,167,0,0.40);
	transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.el-footer__legal-credit a:hover {
	color: var(--c-orange-2);
	text-decoration-color: var(--c-orange-2);
}

/* ============================================================
   Cookie consent (PECR / UK GDPR compliant)
   ============================================================ */
.el-cookie {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	max-width: 720px;
	margin-inline: auto;
	background: var(--c-white);
	color: var(--c-charcoal);
	border-radius: var(--radius-lg);
	box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.15);
	padding: 24px;
	z-index: 9999;
	animation: el-cookie-rise 0.5s var(--ease) both;
}
.el-cookie[hidden] { display: none; }
@keyframes el-cookie-rise {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

.el-cookie__inner { display: flex; flex-direction: column; gap: 16px; }
.el-cookie__title {
	font-family: var(--ff-display);
	font-size: 24px;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0 0 8px;
}
.el-cookie__desc {
	font-size: 14px;
	line-height: 1.55;
	color: var(--c-charcoal);
	margin: 0;
}
.el-cookie__desc a {
	color: var(--c-orange-cta);
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 600;
}

.el-cookie__categories {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 8px 0 0;
	padding: 0;
	border: 0;
}
.el-cookie__cat {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 16px;
	background: var(--c-offwhite);
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
	min-width: 140px;
}
.el-cookie__cat:has(input:checked) {
	border-color: var(--c-orange-cta);
	background: rgba(214,61,26,0.06);
}
.el-cookie__cat--locked { cursor: not-allowed; opacity: 0.85; }
.el-cookie__cat input { margin: 0 0 4px; accent-color: var(--c-orange-cta); }
.el-cookie__cat-name { font-size: 13px; font-weight: 700; }
.el-cookie__cat-meta { font-size: 11px; color: var(--c-slate); }

.el-cookie__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.el-cookie__actions .el-btn { flex: 1 1 auto; min-width: 140px; }

.el-btn--light {
	background: var(--c-offwhite);
	color: var(--c-charcoal);
	border-color: var(--c-offwhite);
}
.el-btn--light:hover {
	background: var(--c-light);
	border-color: var(--c-light);
	color: var(--c-charcoal);
}
.el-btn--ghost-dark {
	background: transparent;
	color: var(--c-charcoal);
	border-color: var(--c-charcoal);
}
.el-btn--ghost-dark:hover {
	background: var(--c-charcoal);
	border-color: var(--c-charcoal);
	color: var(--c-white);
}

@media (max-width: 600px) {
	.el-cookie { padding: 20px; left: 8px; right: 8px; bottom: 8px; }
	.el-cookie__actions .el-btn { flex: 1 1 100%; }
}
.el-footer__legal-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.el-footer__legal-links { display: flex; gap: 16px; }
.el-footer__legal-links a { color: rgba(255,255,255,0.7); }
.el-footer__legal-links a:hover { color: var(--c-orange-2); }

/* ---------- Archive / Page / Single ---------- */
.el-section--light { background: var(--c-offwhite); padding: 140px 0 100px; }
.el-archive__header { text-align: center; margin-bottom: 64px; }
.el-archive__title { font-size: clamp(40px, 5vw, 72px); color: var(--c-charcoal); }
.el-archive__lead { color: var(--c-slate); font-size: 17px; max-width: 640px; margin: 0 auto; }
.el-archive__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.el-archive__card {
	background: var(--c-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.el-archive__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.el-archive__thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.el-archive__body { padding: 24px; }
.el-archive__card-title { font-size: 22px; margin-bottom: 12px; }
.el-archive__card-title a { color: var(--c-charcoal); }
.el-archive__card-title a:hover { color: var(--c-orange); }
.el-archive__excerpt { color: var(--c-slate); font-size: 14px; }
.el-archive__more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; }
.el-archive__more .el-icon { width: 16px; height: 16px; }
.el-archive__pagination { margin-top: 48px; text-align: center; }
.el-archive__pagination a, .el-archive__pagination span {
	display: inline-block;
	padding: 8px 14px;
	margin: 0 4px;
	border-radius: 4px;
	color: var(--c-charcoal);
}
.el-archive__pagination .current { background: var(--c-orange); color: var(--c-white); }

.el-page__article, .el-single__article { max-width: 760px; margin: 0 auto; }
.el-page__title, .el-single__title { font-size: clamp(36px, 5vw, 64px); }
.el-single__meta { color: var(--c-orange); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.el-single__thumb { margin: 32px 0; border-radius: var(--radius); overflow: hidden; }
.el-page__content, .el-single__content { font-size: 17px; line-height: 1.75; }
.el-page__content h2, .el-single__content h2 { margin-top: 1.6em; font-size: clamp(28px, 3vw, 40px); }

.el-404__inner { text-align: center; padding: 120px 0; }
.el-404__eyebrow { font-family: var(--ff-display); font-size: 96px; letter-spacing: 8px; color: var(--c-orange-2); margin: 0; }
.el-404__title { font-size: clamp(36px, 5vw, 64px); color: var(--c-white); margin: 16px 0; }
.el-404__lead { color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	/* Tighter top padding on tablet — header is shorter here, no need for 140px */
	.el-hero { padding-top: 96px; }
	/* At narrow widths, drop the absolute-positioned photo back into the flow,
	   stacked above the text. Prevents any overlap with the H1. */
	.el-hero__grid {
		display: flex;
		flex-direction: column;
		gap: 24px;
		align-items: stretch;
		min-height: 0;
	}
	.el-hero__copy { max-width: 100%; }
	.el-hero__media {
		position: static;
		width: 100%;
		max-width: 100%;
		min-height: 320px;
		justify-content: center;
		margin-top: 24px;
	}
	.el-hero__portrait { max-width: 460px; justify-content: center; margin: 0 auto; }
	.el-hero__portrait-image { width: 100%; max-width: 460px; }
	.el-newsletter { padding: 64px 0; }
	.el-newsletter__inner { grid-template-columns: 1fr; gap: 36px; }

	/* Intro section — collapse 2-col to stack so the collage gets full width */
	.el-intro__grid { grid-template-columns: 1fr; gap: 56px; }
	.el-intro__copy { max-width: 720px; margin: 0 auto; text-align: left; }
	.el-intro__media { margin: 0 auto; }
	.el-intro__collage { max-width: 520px; }

	/* Founder section — collapse 2-col before content cramps. Constrain
	   the media wrapper too, so the absolute-positioned badge/chip stay
	   anchored near the photo (their %-based offsets reference the wrapper). */
	.el-founder__inner { grid-template-columns: 1fr; gap: 48px; }
	.el-founder__media {
		min-height: 0;
		max-width: 480px;
		margin: 0 auto;
		width: 100%;
	}
	.el-founder__media-frame { max-width: 420px; margin: 0 auto; }
	.el-founder__content { max-width: 720px; margin: 0 auto; }

	/* Closing CTA — stack the lead + action panel */
	.el-finalcta__grid { grid-template-columns: 1fr; gap: 40px; }
	.el-finalcta__lead { max-width: 720px; margin: 0 auto; }
	.el-finalcta__panel { max-width: 560px; margin: 0 auto; }

	/* Testimonials editorial header — stack heading and aside */
	.el-testimonials__header { grid-template-columns: 1fr; align-items: stretch; gap: 24px; }
	.el-testimonials__aside { max-width: 560px; }

	/* Feature quote — stack title above the pull-quote so neither column gets squeezed */
	.el-feature__grid { grid-template-columns: 1fr; gap: 32px; }
	.el-feature__title { max-width: 720px; }

	/* Footer 4-col → 2-col at tablet */
	.el-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 36px 32px;
		padding-bottom: 40px;
	}
	.el-footer__brand-col { grid-column: 1 / -1; max-width: none; }
	.el-newsletter__title { font-size: clamp(30px, 8vw, 42px); }
	.el-newsletter__pill {
		flex-direction: column;
		gap: 10px;
		padding: 10px;
		border-radius: 18px;
	}
	.el-newsletter__pill input { padding: 12px 14px; width: 100%; }
	.el-newsletter__submit {
		width: 100%;
		justify-content: center;
		padding: 14px 22px;
	}

	/* Founder credentials wrap to a tighter layout on tablet */
	.el-founder__credentials li { padding: 8px 20px; }
	.el-intro__cta { justify-content: center; }
	/* 3 service cards: stack to 1 column at tablet so we don't get a 2+1 orphan row */
	.el-cards { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
	.el-testimonial { flex-basis: calc((100% - 24px) / 2); }
	.el-archive__grid { grid-template-columns: repeat(2, 1fr); }
	.el-newsletter__form { gap: 16px; }
}

@media (max-width: 768px) {
	.el-nav, .el-header__cta { display: none; }
	.el-nav-toggle { display: flex; margin-left: auto; }
	.el-header__inner { gap: 16px; }

	/* ==== Mobile horizontal-overflow safety net ====
	   Even if a long button label or wide image leaks past its container,
	   each major section clips at its own edge so the whole page can't scroll
	   horizontally. `clip` + `hidden` covers all browsers. */
	.el-hero,
	.el-intro,
	.el-services,
	.el-intersections,
	.el-feature,
	.el-clients,
	.el-testimonials,
	.el-founder,
	.el-contact,
	.el-finalcta,
	.el-newsletter,
	.el-footer { overflow-x: hidden; overflow-x: clip; }

	/* Testimonials closing CTA — long button text was pushing the button
	   wider than the viewport. Force full-width, allow text to wrap. */
	.el-testimonials__cta { padding: 0; }
	.el-testimonials__cta .el-btn {
		width: 100%;
		display: flex;
		padding: 14px 18px;
		font-size: 13.5px;
		line-height: 1.35;
		min-height: 56px;
		white-space: normal;
		text-align: center;
		letter-spacing: 0.03em;
	}

	.el-footer__inner { grid-template-columns: 1fr; gap: 32px; }
	.el-footer__brand-col { grid-column: auto; }
	.el-footer__col-title { margin-top: 0; }

	.el-hero { padding: 120px 0 60px; min-height: auto; }
	.el-hero__title { font-size: clamp(32px, 8vw, 48px); }
	.el-hero__lead-block { padding-left: 16px; }
	.el-hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
	.el-hero__actions .el-btn { width: 100%; }

	/* On mobile turn the "Meet Colin" textlink into a full-width outlined button
	   so it visually pairs with the primary CTA. Uses the brand orange palette
	   (sunrise orange) instead of plain white — keeps the brand identity strong
	   even on the secondary action. */
	.el-hero__textlink {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		min-height: 48px;
		padding: 12px 24px;
		border: 2px solid var(--c-orange-2);
		border-radius: 4px;
		background: transparent;
		color: var(--c-orange-2);
		font-size: 14px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.04em;
		text-decoration: none;
		transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
	}
	.el-hero__textlink::after { display: none; } /* kill the desktop underline */
	.el-hero__textlink:hover {
		background: rgba(255,167,0,0.12);
		border-color: var(--c-orange-2);
		color: var(--c-orange-2);
	}
	.el-hero__textlink .el-icon { width: 16px; height: 16px; }
	.el-hero__scroll-cue { display: none; }
	.el-hero__tri--3 { display: none; }

	.el-intro,
	.el-services,
	.el-intersections,
	.el-feature,
	.el-contact,
	.el-finalcta,
	.el-testimonials { padding: var(--section-pad-mobile) 0; }
	.el-testimonials__header { grid-template-columns: 1fr; gap: 24px; align-items: stretch; margin-bottom: 36px; }
	.el-testimonials__title { font-size: clamp(30px, 7vw, 42px); }
	.el-testimonials__aside { max-width: none; }
	.el-finalcta__title { font-size: clamp(28px, 7vw, 38px); }
	.el-finalcta__para { font-size: 15.5px; }
	.el-finalcta__grid { grid-template-columns: 1fr; gap: 32px; }
	.el-finalcta__lead { max-width: none; }
	.el-finalcta__panel {
		padding: 24px 18px;
		border-radius: 18px;
		margin: 0 auto;
		width: 100%;
		max-width: calc(100% - 8px);
	}
	.el-finalcta__step-num { width: 38px; height: 38px; font-size: 14px; }
	.el-finalcta__steps::before { left: 18px; }
	.el-finalcta__step-label { font-size: 13px; }
	.el-finalcta__step-detail { font-size: 13px; }
	.el-finalcta__action .el-btn { padding: 14px 16px; font-size: 14px; letter-spacing: 0.04em; }
	.el-finalcta__assure { font-size: 11.5px; gap: 4px 8px; }
	.el-finalcta__traits { grid-template-columns: 1fr; gap: 12px; }
	.el-finalcta__trait { padding: 18px; }
	.el-finalcta__serving {
		flex-direction: column;
		border-radius: 18px;
		padding: 18px;
	}
	.el-finalcta__serving-label {
		border-right: 0;
		padding-right: 0;
		padding-bottom: 8px;
		border-bottom: 1px solid rgba(255,255,255,0.14);
	}
	.el-finalcta__serving-list { justify-content: center; }
	.el-founder { padding: var(--section-pad-mobile) 0 0; }
	.el-founder__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-bottom: var(--section-pad-mobile);
	}
	.el-founder__media { min-height: 0; }
	.el-founder__media-frame { max-width: 360px; margin: 0 auto; }
	.el-founder__media-shape { width: min(96%, 380px); border-radius: 20px 20px 20px 80px; }
	.el-founder__content { max-width: 640px; margin: 0 auto; text-align: left; }
	.el-founder__cta { justify-content: center; }
	.el-founder__badge {
		width: 96px;
		height: 96px;
		left: -8px;
		bottom: 6%;
	}
	.el-founder__badge-num { font-size: 34px; }
	.el-founder__chip {
		top: 4%;
		right: -4px;
		padding: 10px 12px;
	}
	.el-founder__chip-text strong { font-size: 14px; }
	.el-founder__title { font-size: clamp(28px, 7vw, 36px); }
	.el-founder__para { font-size: 15.5px; }
	.el-founder__quote p { font-size: 18px; }
	.el-founder__signature { text-align: center; align-items: center; }
	.el-intro__title { font-size: clamp(28px, 7vw, 36px); }
	.el-intro__para { font-size: 15.5px; }
	.el-intro__media { min-height: 0; padding: 32px 0 56px; }
	.el-intro__collage { max-width: 380px; }
	.el-intro__badge { width: 26%; max-width: 110px; top: -6%; right: -4%; }
	.el-intro__stat {
		left: -4%;
		bottom: -10%;
		padding: 12px 16px;
		max-width: 220px;
	}
	.el-intro__stat-num { font-size: 32px; }
	.el-intro__stat-label { font-size: 11px; }

	/* Founder credentials stack vertically on mobile */
	.el-founder__credentials { padding: 20px var(--gutter); flex-direction: column; gap: 0; }
	.el-founder__credentials li { padding: 10px 0; }
	.el-founder__credentials li:not(:last-child)::after {
		left: 50%;
		right: auto;
		top: auto;
		bottom: 0;
		transform: translateX(-50%);
		width: 32px;
		height: 1px;
	}
	.el-founder__credentials-label { font-size: 14px; }
	.el-steps { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
	.el-cards { grid-template-columns: 1fr; }
	.el-testimonial { flex: 0 0 100%; min-width: 0; padding: 28px 22px; }
	.el-form-row--two { grid-template-columns: 1fr; }
	.el-archive__grid { grid-template-columns: 1fr; }
	.el-footer { padding-top: 56px; }
	.el-footer__company-sep { display: block; margin: 4px 0; opacity: 0; height: 0; }
	.el-footer__legal-inner { flex-direction: column; text-align: center; gap: 6px; }
}

@media (max-width: 768px) {
	.el-logo__img { max-height: 64px; }
}

@media (max-width: 480px) {
	.el-logo__img { max-height: 60px; }
	.el-section__title--top { padding-top: 60px; }
	.el-section__title--bottom { padding-bottom: 60px; }
}

/* =========================================================================
   ABOUT PAGE — page-about.php
   Bespoke template mirroring the homepage's editorial design language.
   ========================================================================= */

/* ---------- 1. About hero ---------- */
.el-about-hero {
	position: relative;
	padding: calc(var(--section-pad) + 40px) 0 var(--section-pad);
	background: var(--c-offwhite);
	overflow: hidden;
	isolation: isolate;
}
.el-about-hero__bg {
	position: absolute;
	top: 50%;
	right: -120px;
	transform: translateY(-50%);
	width: clamp(380px, 44%, 620px);
	aspect-ratio: 10 / 9;
	opacity: 0.07;
	pointer-events: none;
	z-index: 0;
}
.el-about-hero__bg svg { width: 100%; height: 100%; display: block; }
.el-about-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 6vw, 88px);
	align-items: center;
}
.el-about-hero__copy { max-width: 560px; }
.el-about-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 18px;
	padding: 6px 18px;
	background: rgba(214,61,26,0.08);
	border: 1px solid rgba(214,61,26,0.24);
	border-radius: 999px;
}
.el-about-hero__eyebrow-rule {
	display: inline-block;
	width: 24px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(214,61,26,0.7));
}
.el-about-hero__title {
	font-family: var(--ff-display);
	font-size: clamp(36px, 5.2vw, 64px);
	line-height: 1.02;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0 0 22px;
}
.el-about-hero__title .el-hero__accent { display: block; margin-top: 6px; }
.el-about-hero__lead {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(34,34,34,0.78);
	margin: 0 0 28px;
}
.el-about-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.el-about-hero__pills li {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-charcoal);
	padding: 8px 14px;
	background: var(--c-white);
	border: 1px solid rgba(34,34,34,0.10);
	border-radius: 999px;
}

/* Hero photo with sunrise gradient slab backdrop */
.el-about-hero__media {
	position: relative;
	width: 100%;
	max-width: 460px;
	margin: 0 auto;
	aspect-ratio: 4 / 5;
}
.el-about-hero__media-shape {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: min(92%, 420px);
	height: 78%;
	background: linear-gradient(155deg, #FFB347 0%, #FFA700 45%, #F24D27 100%);
	border-radius: 24px 24px 24px 120px;
	z-index: 1;
	box-shadow: 0 30px 60px rgba(242,77,39,0.25);
}
.el-about-hero__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	z-index: 2;
	filter: drop-shadow(0 28px 40px rgba(34,34,34,0.28));
}

/* ---------- 2. Story section ---------- */
.el-about-story {
	padding: var(--section-pad) 0;
	background: var(--c-white);
}
.el-about-story__inner { max-width: 820px; margin: 0 auto; }
.el-about-story__header { margin-bottom: 40px; }
.el-about-story__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 14px;
}
.el-about-story__title {
	font-family: var(--ff-display);
	font-size: clamp(32px, 4.4vw, 52px);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0;
}
.el-about-story__title .el-hero__accent { display: block; margin-top: 4px; }
.el-about-story__para {
	font-size: 17px;
	line-height: 1.75;
	color: var(--c-charcoal);
	margin: 0 0 22px;
}
.el-about-story__quote {
	position: relative;
	margin: 32px 0;
	padding: 8px 0 8px 28px;
	border-left: 4px solid var(--c-orange-cta);
}
.el-about-story__quote p {
	font-family: var(--ff-display);
	font-size: clamp(22px, 2.6vw, 30px);
	line-height: 1.3;
	letter-spacing: 0.5px;
	color: var(--c-charcoal);
	margin: 0;
}
.el-about-story__quote::before {
	content: '“';
	position: absolute;
	top: -24px;
	left: 16px;
	font-family: Georgia, serif;
	font-size: 72px;
	line-height: 1;
	color: rgba(214,61,26,0.20);
	pointer-events: none;
}

/* ---------- 3. Philosophy (dark cards) ---------- */
.el-about-philosophy {
	padding: var(--section-pad) 0;
	background:
		radial-gradient(ellipse 80% 60% at 80% 20%, rgba(242,77,39,0.18) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255,167,0,0.12) 0%, transparent 60%),
		linear-gradient(135deg, #14091a 0%, #1f0f28 40%, #2b1f33 100%);
	color: var(--c-white);
	isolation: isolate;
}
.el-about-philosophy__header { text-align: center; margin-bottom: 56px; }
.el-about-philosophy__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-orange-2);
	margin: 0 0 14px;
}
.el-about-philosophy__title {
	font-family: var(--ff-display);
	font-size: clamp(32px, 4.4vw, 56px);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--c-white);
	margin: 0;
}
.el-about-philosophy__title .el-hero__accent { display: block; margin-top: 4px; }
.el-about-philosophy__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
.el-about-philosophy__card {
	padding: 32px 28px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 18px;
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.el-about-philosophy__card:hover {
	background: rgba(255,167,0,0.06);
	border-color: rgba(255,167,0,0.32);
	transform: translateY(-4px);
}
.el-about-philosophy__num {
	display: inline-block;
	font-family: var(--ff-display);
	font-size: 32px;
	letter-spacing: 1.5px;
	color: var(--c-orange-2);
	margin-bottom: 8px;
}
.el-about-philosophy__card-title {
	font-family: var(--ff-display);
	font-size: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--c-white);
	margin: 0 0 12px;
}
.el-about-philosophy__card p {
	font-size: 14.5px;
	line-height: 1.7;
	color: rgba(255,255,255,0.78);
	margin: 0;
}

/* ---------- 4. Credentials grid ---------- */
.el-about-creds {
	padding: var(--section-pad) 0;
	background: var(--c-offwhite);
}
.el-about-creds__header { text-align: center; margin-bottom: 56px; }
.el-about-creds__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 14px;
}
.el-about-creds__title {
	font-family: var(--ff-display);
	font-size: clamp(32px, 4.4vw, 56px);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0;
}
.el-about-creds__title .el-hero__accent { display: block; margin-top: 4px; }
.el-about-creds__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
.el-about-creds__card {
	padding: 32px 24px;
	background: var(--c-white);
	border: 1px solid rgba(34,34,34,0.06);
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(34,34,34,0.04);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.el-about-creds__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(242,77,39,0.16);
	border-color: rgba(242,77,39,0.20);
}
.el-about-creds__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(214,61,26,0.08);
	color: var(--c-orange-cta);
	margin-bottom: 18px;
}
.el-about-creds__icon svg { width: 24px; height: 24px; }
.el-about-creds__card h3 {
	font-family: var(--ff-display);
	font-size: 17px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--c-charcoal);
	margin: 0 0 10px;
}
.el-about-creds__card p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(34,34,34,0.72);
	margin: 0;
}

/* ---------- 5. Closing CTA wrapper override ---------- */
.el-about-cta {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}
.el-about-cta .el-finalcta__title { margin: 0 0 24px; }
.el-about-cta .el-finalcta__para {
	max-width: 560px;
	margin: 0 auto 32px;
	color: rgba(255,255,255,0.82);
}
.el-about-cta .el-finalcta__action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

/* ---------- WP editor optional body content ---------- */
.el-about-extra {
	padding: var(--section-pad) 0;
	background: var(--c-white);
}
.el-about-extra__inner {
	max-width: 720px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.75;
	color: var(--c-charcoal);
}
.el-about-extra__inner h2 { margin-top: 1.6em; font-size: clamp(28px, 3vw, 40px); }
.el-about-extra__inner h3 { margin-top: 1.4em; font-size: clamp(22px, 2.4vw, 28px); }
.el-about-extra__inner a { color: var(--c-orange-cta); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.el-about-hero { padding: calc(var(--section-pad-mobile) + 32px) 0 var(--section-pad-mobile); }
	.el-about-hero__inner { grid-template-columns: 1fr; gap: 48px; }
	.el-about-hero__copy { max-width: 720px; margin: 0 auto; text-align: left; }
	.el-about-philosophy__cards { grid-template-columns: 1fr; max-width: 560px; }
	.el-about-creds__grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}

@media (max-width: 768px) {
	.el-about-story,
	.el-about-philosophy,
	.el-about-creds,
	.el-about-extra { padding: var(--section-pad-mobile) 0; }
	.el-about-hero__title { font-size: clamp(30px, 7vw, 40px); }
	.el-about-hero__lead { font-size: 16px; }
	.el-about-hero__pills li { font-size: 11px; padding: 6px 12px; }
	.el-about-story__para { font-size: 15.5px; }
	.el-about-philosophy__header,
	.el-about-creds__header { margin-bottom: 36px; }
	.el-about-creds__grid { grid-template-columns: 1fr; max-width: 440px; }
	.el-about-philosophy__card { padding: 24px 22px; }
}

/* =========================================================================
   SHARED PAGE TEMPLATES — Coaching, Speaking, Books, Blog, Single
   ========================================================================= */

/* ---------- Generic page hero ---------- */
.el-page-hero {
	position: relative;
	padding: calc(var(--section-pad) + 40px) 0 var(--section-pad);
	background: var(--c-offwhite);
	overflow: hidden;
	isolation: isolate;
}
.el-page-hero__bg {
	position: absolute;
	top: -180px;
	right: -160px;
	width: 560px;
	height: 560px;
	background: radial-gradient(circle, rgba(255,167,0,0.18), transparent 60%);
	pointer-events: none;
	z-index: 0;
}
.el-page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
}
.el-page-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 18px;
	padding: 6px 14px;
	background: rgba(214,61,26,0.08);
	border: 1px solid rgba(214,61,26,0.24);
	border-radius: 999px;
}
.el-page-hero__title {
	font-family: var(--ff-display);
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.02;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0 0 22px;
}
.el-page-hero__title .el-hero__accent { display: block; margin-top: 6px; }
.el-page-hero__lead {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(34,34,34,0.78);
	margin: 0;
	max-width: 640px;
}

/* ---------- Generic page section ---------- */
.el-page-section { padding: var(--section-pad) 0; background: var(--c-white); }
.el-page-section--dark {
	background:
		radial-gradient(ellipse 80% 60% at 80% 20%, rgba(242,77,39,0.18) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255,167,0,0.12) 0%, transparent 60%),
		linear-gradient(135deg, #14091a 0%, #1f0f28 40%, #2b1f33 100%);
	color: var(--c-white);
	isolation: isolate;
}
.el-page-section__header { margin-bottom: 48px; max-width: 720px; }
.el-page-section__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 14px;
}
.el-page-section__eyebrow--light { color: var(--c-orange-2); }
.el-page-section__title {
	font-family: var(--ff-display);
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0;
}
.el-page-section__title--light { color: var(--c-white); }
.el-page-section__title .el-hero__accent { display: block; margin-top: 4px; }
.el-page-section__lead {
	font-size: 16px;
	line-height: 1.65;
	margin: 16px 0 0;
	color: rgba(34,34,34,0.72);
}
.el-page-section--dark .el-page-section__lead { color: rgba(255,255,255,0.78); }

/* ---------- Page cards (programmes / topics) ---------- */
.el-page-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.el-page-card {
	position: relative;
	padding: 32px 28px;
	background: var(--c-white);
	border: 1px solid rgba(34,34,34,0.06);
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(34,34,34,0.04);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.el-page-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 40px rgba(242,77,39,0.16);
	border-color: rgba(242,77,39,0.20);
}
.el-page-card__num {
	display: inline-block;
	font-family: var(--ff-display);
	font-size: 28px;
	letter-spacing: 1.5px;
	color: var(--c-orange-cta);
	margin-bottom: 8px;
}
.el-page-card__tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	background: rgba(214,61,26,0.08);
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 12px;
}
.el-page-card h3 {
	font-family: var(--ff-display);
	font-size: 22px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--c-charcoal);
	margin: 0 0 12px;
}
.el-page-card p {
	font-size: 15px;
	line-height: 1.65;
	color: rgba(34,34,34,0.72);
	margin: 0 0 16px;
}
.el-page-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.el-page-card__list li {
	position: relative;
	padding-left: 18px;
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--c-charcoal);
}
.el-page-card__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--c-orange-cta);
	border-bottom: 2px solid var(--c-orange-cta);
	transform: rotate(-45deg);
}

/* ---------- Steps timeline (Coaching how-it-works) ---------- */
.el-page-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 720px;
	counter-reset: el-steps;
}
.el-page-steps li {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 20px;
	align-items: start;
}
.el-page-steps__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(155deg, #FFB347 0%, #FFA700 50%, #F24D27 100%);
	color: var(--c-white);
	font-family: var(--ff-display);
	font-size: 16px;
	letter-spacing: 1px;
	box-shadow: 0 8px 18px rgba(242,77,39,0.34);
}
.el-page-steps li strong {
	grid-column: 2;
	font-family: var(--ff-display);
	font-size: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--c-white);
	display: block;
	margin-bottom: 6px;
}
.el-page-steps li span:not(.el-page-steps__num) {
	grid-column: 2;
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(255,255,255,0.72);
}

/* ---------- Page list (Speaking engagements) ---------- */
.el-page-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 820px;
}
.el-page-list li {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 24px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(255,255,255,0.10);
}
.el-page-list li:last-child { border-bottom: 0; }
.el-page-list li strong {
	font-family: var(--ff-display);
	font-size: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--c-orange-2);
}
.el-page-list li span {
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255,255,255,0.78);
}

/* ---------- Podcast placeholder ---------- */
.el-page-podcast { margin-top: 40px; }
.el-page-podcast__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 56px 32px;
	background: var(--c-offwhite);
	border: 2px dashed rgba(34,34,34,0.14);
	border-radius: 18px;
	text-align: center;
}
.el-page-podcast__placeholder svg {
	width: 48px;
	height: 48px;
	color: var(--c-orange-cta);
}
.el-page-podcast__placeholder p {
	font-size: 14.5px;
	color: rgba(34,34,34,0.62);
	margin: 0;
	max-width: 420px;
}

/* ---------- Books ---------- */
.el-page-book {
	padding: var(--section-pad) 0;
	background: var(--c-white);
}
.el-page-book:nth-of-type(odd) { background: var(--c-offwhite); }
.el-page-book__inner {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}
.el-page-book--flipped .el-page-book__inner { grid-template-columns: 1.4fr 1fr; }
.el-page-book--flipped .el-page-book__copy { order: -1; }
.el-page-book__cover {
	display: flex;
	justify-content: center;
}
.el-page-book__cover-placeholder {
	width: 240px;
	height: 320px;
	background: linear-gradient(155deg, #FFB347 0%, #FFA700 50%, #F24D27 100%);
	border-radius: 4px;
	box-shadow: 0 22px 44px rgba(242,77,39,0.28);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: var(--c-white);
}
.el-page-book__cover-placeholder svg { width: 56px; height: 56px; opacity: 0.6; }
.el-page-book__cover-placeholder span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0.85;
}
.el-page-book__copy { max-width: 540px; }
.el-page-book__meta {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 12px;
}
.el-page-book__title {
	font-family: var(--ff-display);
	font-size: clamp(28px, 3.6vw, 44px);
	line-height: 1.05;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0 0 8px;
}
.el-page-book__sub {
	font-size: 17px;
	font-weight: 500;
	font-style: italic;
	color: var(--c-orange-cta);
	margin: 0 0 18px;
}
.el-page-book__desc {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(34,34,34,0.78);
	margin: 0 0 24px;
}
.el-page-book__buy {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.el-page-book__buy a {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	background: var(--c-charcoal);
	color: var(--c-white);
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.el-page-book__buy a:hover { background: var(--c-orange-cta); transform: translateY(-2px); }
.el-page-book__buy a:first-child { background: var(--c-orange-cta); }
.el-page-book__buy a:first-child:hover { background: var(--c-orange-cta-hover); }

/* ---------- Page quotes (Books reviews) ---------- */
.el-page-quotes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.el-page-quotes li {
	padding: 28px 24px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 14px;
}
.el-page-quotes p {
	font-family: var(--ff-display);
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 0.4px;
	color: var(--c-white);
	margin: 0 0 14px;
}
.el-page-quotes footer {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-orange-2);
}

/* ---------- Blog index ---------- */
.el-blog {
	padding: var(--section-pad) 0;
	background: var(--c-white);
}
.el-blog__featured {
	margin: 0 0 56px;
	border-radius: 22px;
	overflow: hidden;
	background: var(--c-offwhite);
	box-shadow: 0 14px 40px rgba(34,34,34,0.08);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.el-blog__featured:hover { transform: translateY(-4px); box-shadow: 0 22px 60px rgba(242,77,39,0.18); }
.el-blog__featured-link {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	color: inherit;
	text-decoration: none;
}
.el-blog__featured-thumb {
	min-height: 360px;
	background: linear-gradient(155deg, #FFB347 0%, #FFA700 50%, #F24D27 100%);
	overflow: hidden;
}
.el-blog__featured-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.el-blog__featured-thumb--empty { background: linear-gradient(155deg, #FFB347 0%, #FFA700 50%, #F24D27 100%); }
.el-blog__featured-copy {
	padding: clamp(28px, 4vw, 56px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}
.el-blog__meta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(34,34,34,0.62);
}
.el-blog__tag {
	color: var(--c-orange-cta);
	background: rgba(214,61,26,0.08);
	padding: 4px 10px;
	border-radius: 999px;
}
.el-blog__featured-title {
	font-family: var(--ff-display);
	font-size: clamp(26px, 3.2vw, 38px);
	line-height: 1.1;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0;
}
.el-blog__excerpt {
	font-size: 15px;
	line-height: 1.65;
	color: rgba(34,34,34,0.72);
	margin: 0;
}
.el-blog__readmore {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	transition: gap 0.2s var(--ease);
}
.el-blog__featured:hover .el-blog__readmore { gap: 12px; }
.el-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 48px;
}
.el-blog__card {
	border-radius: 16px;
	overflow: hidden;
	background: var(--c-white);
	border: 1px solid rgba(34,34,34,0.06);
	box-shadow: 0 6px 18px rgba(34,34,34,0.04);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.el-blog__card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(242,77,39,0.14); }
.el-blog__card-link { color: inherit; text-decoration: none; display: flex; flex-direction: column; height: 100%; }
.el-blog__card-thumb {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(155deg, #FFB347 0%, #FFA700 50%, #F24D27 100%);
}
.el-blog__card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.el-blog__card-copy {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.el-blog__card-title {
	font-family: var(--ff-display);
	font-size: 20px;
	letter-spacing: 0.6px;
	line-height: 1.2;
	color: var(--c-charcoal);
	margin: 0;
}
.el-blog__pagination {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}
.el-blog__pagination .nav-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}
.el-blog__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: var(--c-white);
	border: 1px solid rgba(34,34,34,0.10);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--c-charcoal);
	text-decoration: none;
	transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.el-blog__pagination .page-numbers:hover,
.el-blog__pagination .page-numbers.current {
	background: var(--c-orange-cta);
	color: var(--c-white);
	border-color: var(--c-orange-cta);
}
.el-blog__empty {
	text-align: center;
	padding: 80px 24px;
	font-size: 16px;
	color: rgba(34,34,34,0.62);
}

/* ---------- Single post ---------- */
.el-single { background: var(--c-white); }
.el-single__hero {
	position: relative;
	padding: calc(var(--section-pad) + 40px) 0 56px;
	background: var(--c-offwhite);
	overflow: hidden;
	isolation: isolate;
}
.el-single__hero-inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
}
.el-single__breadcrumbs {
	display: flex;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(34,34,34,0.55);
	margin: 0 0 18px;
}
.el-single__breadcrumbs a { color: var(--c-orange-cta); text-decoration: none; }
.el-single__breadcrumbs a:hover { color: var(--c-orange); }
.el-single__breadcrumbs span { opacity: 0.5; }
.el-single__title {
	font-family: var(--ff-display);
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.05;
	letter-spacing: 0.5px;
	color: var(--c-charcoal);
	margin: 0 0 24px;
}
.el-single__meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(34,34,34,0.62);
}
.el-single__meta-item { font-weight: 600; }
.el-single__meta-sep { color: var(--c-orange-2); }

.el-single__thumb {
	margin: 0 auto 56px;
	max-width: 1180px;
	padding: 0 var(--gutter);
}
.el-single__thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 22px;
	max-height: 560px;
	object-fit: cover;
}
.el-single__content-wrap { padding: 0 0 var(--section-pad); }
.el-single__content {
	max-width: 720px;
	font-size: 18px;
	line-height: 1.8;
	color: var(--c-charcoal);
}
.el-single__content > * + * { margin-top: 1.4em; }
.el-single__content h2 { font-family: var(--ff-display); font-size: clamp(24px, 3vw, 34px); letter-spacing: 0.5px; margin-top: 1.8em; }
.el-single__content h3 { font-family: var(--ff-display); font-size: clamp(20px, 2.4vw, 26px); letter-spacing: 0.5px; margin-top: 1.6em; }
.el-single__content blockquote {
	margin: 1.8em 0;
	padding: 4px 0 4px 24px;
	border-left: 4px solid var(--c-orange-cta);
	font-family: var(--ff-display);
	font-size: clamp(20px, 2.4vw, 26px);
	line-height: 1.4;
	color: var(--c-charcoal);
}
.el-single__content a {
	color: var(--c-orange-cta);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.el-single__content a:hover { color: var(--c-orange); }
.el-single__content img { max-width: 100%; height: auto; border-radius: 12px; }

/* Author bio */
.el-single__author {
	background: var(--c-offwhite);
	padding: 48px 0;
	border-top: 1px solid rgba(34,34,34,0.06);
}
.el-single__author-inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	align-items: center;
	max-width: 720px;
}
.el-single__author-photo img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	display: block;
	border: 3px solid var(--c-white);
	box-shadow: 0 12px 24px rgba(34,34,34,0.12);
}
.el-single__author-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-orange-cta);
	margin: 0 0 6px;
}
.el-single__author-name {
	font-family: var(--ff-display);
	font-size: 22px;
	letter-spacing: 1px;
	color: var(--c-charcoal);
	margin: 0 0 10px;
}
.el-single__author-bio {
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(34,34,34,0.72);
	margin: 0;
}

.el-single__related {
	padding: var(--section-pad) 0;
	background: var(--c-white);
}
.el-single__related .el-blog__grid { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.el-page-cards { grid-template-columns: 1fr; max-width: 640px; }
	.el-page-quotes { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
	.el-page-list li { grid-template-columns: 1fr; gap: 4px; }
	.el-page-book__inner,
	.el-page-book--flipped .el-page-book__inner { grid-template-columns: 1fr; gap: 32px; }
	.el-page-book--flipped .el-page-book__copy { order: 0; }
	.el-page-book__copy { max-width: 720px; margin: 0 auto; }
	.el-page-book__cover-placeholder { width: 200px; height: 280px; }
	.el-blog__featured-link { grid-template-columns: 1fr; }
	.el-blog__featured-thumb { min-height: 240px; }
	.el-blog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.el-page-hero { padding: calc(var(--section-pad-mobile) + 24px) 0 var(--section-pad-mobile); }
	.el-page-section { padding: var(--section-pad-mobile) 0; }
	.el-page-hero__title { font-size: clamp(28px, 7vw, 40px); }
	.el-page-hero__lead { font-size: 16px; }
	.el-page-section__header { margin-bottom: 32px; }
	.el-page-section__title { font-size: clamp(26px, 7vw, 36px); }
	.el-page-card { padding: 24px 22px; }
	.el-page-steps li { grid-template-columns: 44px 1fr; gap: 16px; }
	.el-page-steps__num { width: 40px; height: 40px; font-size: 14px; }
	.el-page-book { padding: var(--section-pad-mobile) 0; }
	.el-blog { padding: var(--section-pad-mobile) 0; }
	.el-blog__grid { grid-template-columns: 1fr; gap: 20px; }
	.el-blog__featured-copy { padding: 24px; }
	.el-single__hero { padding: calc(var(--section-pad-mobile) + 16px) 0 32px; }
	.el-single__title { font-size: clamp(28px, 8vw, 40px); }
	.el-single__content { font-size: 17px; }
	.el-single__author-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 16px; }
	.el-single__related { padding: var(--section-pad-mobile) 0; }
}
