/* ==========================================================================
   Elementor bridge — adapts the approved design system to Elementor's DOM.
   site.css already styles element/descendant selectors that match through
   Elementor wrappers. This file covers Elementor's own markup (buttons) and
   text skins keyed to WIDGET classes (Elementor doesn't emit _css_classes on
   imported CONTAINERS, so container visuals are set natively in the page data).
   Colours use !important to beat the Elementor Global Kit's default palette.
   ========================================================================== */

/* --- Buttons: reproduce .btn on Elementor's <a.elementor-button> ---------- */
.zbtn .elementor-button {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-family: var(--font-body); font-weight: 700; font-size: 16px; line-height: 1;
	padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
	white-space: nowrap; text-decoration: none;
}
.zbtn.is-lg .elementor-button { padding: 17px 32px; font-size: 17px; }
.zbtn.is-primary .elementor-button { background: var(--action-deep); color: #fff; box-shadow: 0 6px 16px rgba(198,92,22,.35); }
.zbtn.is-primary .elementor-button:hover { background: #a84e10; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(198,92,22,.42); }
.zbtn.is-light .elementor-button { background: #fff; color: var(--ink); }
.zbtn.is-light .elementor-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
/* Ghost = transparent fill + warm border (dist .btn--ghost); without this the Elementor
   button base fills it white. */
.zbtn.is-ghost .elementor-button { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.zbtn.is-ghost .elementor-button:hover { border-color: var(--ink); transform: translateY(-2px); }
.zbtn.is-outline-light .elementor-button { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.zbtn.is-outline-light .elementor-button:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }
.zbtn .elementor-button-content-wrapper { display: inline-flex; align-items: center; gap: 9px; }

/* --- Widget defaults / resets -------------------------------------------- */
.zsection .elementor-widget:not(:last-child) { margin-bottom: 0; }
.elementor-widget-heading .elementor-heading-title { margin: 0; }
.fact-row .elementor-widget-container { margin: 0; }

/* Force the approved fonts over the Elementor Global Kit (which imposes Roboto).
   Headings = Newsreader (var(--font-head) resolves to serif via data-headfont);
   body/text/buttons = Hanken Grotesk (var(--font-body)). */
.elementor-widget-heading .elementor-heading-title { color: var(--ink) !important; font-family: var(--font-head) !important; }
.elementor-widget-text-editor, .elementor-widget-text-editor p { font-family: var(--font-body) !important; }
.zbtn .elementor-button { font-family: var(--font-body) !important; font-weight: 700 !important; }
/* Eyebrows + trust items use the BODY font (not the serif heading font). */
.eyebrow .elementor-heading-title, .ht-item .elementor-heading-title { font-family: var(--font-body) !important; }

/* --- Eyebrow ------------------------------------------------------------- */
.eyebrow > .elementor-widget-container { display: inline-flex; align-items: center; }
/* Light-section eyebrows: the Global Kit colours `.elementor-heading-title` (ink),
   which beats the inherited `.eyebrow{color:--eyebrow-color}` — so native eyebrows on
   light sections rendered ink instead of orange-deep. Re-assert the eyebrow colour on
   the title itself (dark-context eyebrows carry .eyebrow-gold and are excluded). */
.eyebrow:not(.eyebrow-gold) .elementor-heading-title { color: var(--eyebrow-color) !important; }
.eyebrow-gold .elementor-heading-title { color: var(--gold-soft) !important; }
.eyebrow-gold::before { background: var(--gold) !important; }

/* --- Hero ---------------------------------------------------------------- */
.hero-h1 .elementor-heading-title { color: #fff !important; font-size: clamp(40px,5.6vw,72px) !important; font-weight: 500 !important; line-height: 1.08; }
.hero-h1 .elementor-heading-title em { color: var(--gold-soft) !important; font-style: italic; }
.hero-lede .elementor-widget-container, .hero-lede p { color: rgba(255,255,255,.9) !important; font-size: clamp(17px,1.5vw,20px); line-height: 1.55; margin: 0; max-width: 540px; }

/* --- Trust bar ----------------------------------------------------------- */
.ht-item .elementor-heading-title { color: rgba(255,255,255,.86) !important; font-family: var(--font-body); font-weight: 600; font-size: 14.5px; }

/* --- Cards --------------------------------------------------------------- */
.card-title .elementor-heading-title { color: var(--ink) !important; font-family: var(--font-head); font-weight: 500; font-size: 21px; margin: 0 0 10px; }
.card-note .elementor-widget-container, .card-note p { color: var(--muted) !important; font-size: 14px; margin: 12px 0 0; }
/* Fact rows (original .fact-row): key 12.5px/700/uppercase/.05em muted, value 16px/600 ink */
.fact-k .elementor-widget-container, .fact-k p { color: var(--muted) !important; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; margin: 0; }
.fact-v .elementor-widget-container, .fact-v p { color: var(--ink) !important; font-weight: 600; font-size: 16px; margin: 0; }

/* --- Section heads / links ----------------------------------------------- */
/* section-head sub = clamp(17,1.3vw,19.5); program-copy sub = 17px (scoped override below) */
.sub .elementor-widget-container, .sub p { color: var(--muted) !important; font-size: clamp(17px,1.3vw,19.5px); margin: 16px 0 0; }
.linkline .elementor-widget-container a, .linkline a { color: var(--orange-deep) !important; font-weight: 600; }

/* --- Final CTA (dark card) ----------------------------------------------- */
.on-dark-h2 .elementor-heading-title { color: #fff !important; font-size: clamp(32px,4.6vw,58px); margin: 18px auto 0; max-width: 720px; }
.enroll-line .elementor-widget-container, .enroll-line p { color: var(--gold-soft) !important; font-weight: 600; font-size: 17px; margin: 18px 0 0; }
.support .elementor-widget-container, .support p { color: rgba(255,255,255,.75) !important; margin: 0; }

/* --- Trust-bar icons (gold, from the original inline SVGs) ------------- */
.ht-item { display: inline-flex; align-items: center; gap: 10px; }
.ht-item::before { content: ''; width: 19px; height: 19px; flex: none; background-position: center; background-repeat: no-repeat; background-size: contain; }
.ht-1::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%20stroke%3D%27%23f5b819%27%20stroke-width%3D%271.5%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M10%202l6%203v5c0%204-2.7%206.5-6%208-3.3-1.5-6-4-6-8V5l6-3z%27%2F%3E%3C%2Fsvg%3E"); }
.ht-2::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%20stroke%3D%27%23f5b819%27%20stroke-width%3D%271.5%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M10%203v14M5%208h10%27%20stroke-linecap%3D%27round%27%2F%3E%3C%2Fsvg%3E"); }
.ht-3::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%20stroke%3D%27%23f5b819%27%20stroke-width%3D%271.5%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M10%202l6%203v5c0%204-2.7%206.5-6%208-3.3-1.5-6-4-6-8V5l6-3z%27%2F%3E%3Cpath%20d%3D%27M7.5%2010l1.7%201.7L13%208%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%2F%3E%3C%2Fsvg%3E"); }
.ht-4::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%20stroke%3D%27%23f5b819%27%20stroke-width%3D%271.5%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%206l7-3%207%203-7%203-7-3z%27%2F%3E%3Cpath%20d%3D%27M6%208v4c0%201%201.8%202%204%202s4-1%204-2V8%27%20stroke-linecap%3D%27round%27%2F%3E%3C%2Fsvg%3E"); }
.ht-5::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%20stroke%3D%27%23f5b819%27%20stroke-width%3D%271.5%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2710%27%20cy%3D%278%27%20r%3D%272.5%27%2F%3E%3Cpath%20d%3D%27M10%202c3.3%200%206%202.5%206%206%200%204-6%2010-6%2010S4%2012%204%208c0-3.5%202.7-6%206-6z%27%2F%3E%3C%2Fsvg%3E"); }

/* --- Hero A scrim — exact two-layer gradient from the original .hero-a-scrim */
#hero-a { position: relative; }
#hero-a::before {
	content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background:
		linear-gradient(90deg, rgba(28,20,12,.86) 0%, rgba(28,20,12,.6) 38%, rgba(28,20,12,.12) 70%, rgba(28,20,12,0) 100%),
		linear-gradient(0deg, rgba(28,20,12,.6) 0%, rgba(28,20,12,0) 45%);
}
#hero-a > .e-con { position: relative; z-index: 2; }

/* --- Final CTA card — gold + orange radial glows (original .final-card ::before/::after) */
#final-cta-card { position: relative; overflow: hidden; text-align: center; }
#final-cta-card::before {
	content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%;
	background: radial-gradient(circle, rgba(245,184,25,.28), transparent 70%);
	top: -120px; right: -80px; z-index: 0; pointer-events: none;
}
#final-cta-card::after {
	content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%;
	background: radial-gradient(circle, rgba(232,116,43,.28), transparent 70%);
	bottom: -140px; left: -90px; z-index: 0; pointer-events: none;
}
#final-cta-card > * { position: relative; z-index: 2; }
