/* ============================================================
   LEADERS FINANCIAL GROUP — shared visual system
   Palette: obsidian + gold. Type: Space Grotesk (tech display),
   Cormorant Garamond (human/legacy display), Pinyon Script
   (emotional accent, 1–2 words per page), Jost 300 (body).
   ============================================================ */

:root {
  --obsidian: #0B0B0C;
  --surface: #111214;
  --panel: #1C1D20;
  --line: #2B2D31;
  --ash: #8A8D93;
  --silver: #C7CAD1;
  --ivory: #F4F1EA;
  --gold: #C9A24B;
  --gold-bright: #E6C66E;
  --gold-deep: #9A7B2E;
  --gold-grad: linear-gradient(135deg, #9A7B2E 0%, #E6C66E 45%, #C9A24B 100%);

  --font-display: "Oswald", sans-serif;
  --font-tech: "Montserrat", sans-serif;
  --font-serif: "Oswald", sans-serif;
  --font-script: "Pinyon Script", cursive;
  --font-body: "Montserrat", sans-serif;

  --wrap: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --header-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(201, 162, 75, 0.28); color: var(--ivory); }

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSczMDAnIGhlaWdodD0nMzAwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzMwMCcgaGVpZ2h0PSczMDAnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPg==");
}

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(88px, 12vw, 160px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 104px); }
.section--surface { background: var(--surface); }

.hairline {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 75, 0.55), transparent);
}
.hairline--left { background: linear-gradient(90deg, rgba(201, 162, 75, 0.65), transparent); }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--font-tech);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-grad);
  flex: none;
}
.eyebrow--bare::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
  font-size: clamp(40px, 6vw, 88px);
  text-wrap: balance;
}
.display--md { font-size: clamp(34px, 4.6vw, 64px); }
.display--sm { font-size: clamp(26px, 3.2vw, 42px); }

.serif-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  font-size: clamp(38px, 5.6vw, 80px);
  text-wrap: balance;
}
.serif-display--md { font-size: clamp(32px, 4.4vw, 60px); }
.serif-display--sm { font-size: clamp(26px, 3vw, 40px); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.16em;
  line-height: 1.25;
  display: inline-block;
  /* Pinyon's swashes and descenders extend far beyond the line box;
     background-clip:text erases anything outside the painted box, so
     pad generously and cancel the layout shift with negative margins. */
  padding: 0.32em 0.28em 0.38em 0.16em;
  margin: -0.32em -0.2em -0.38em -0.1em;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.8;
  color: var(--silver);
  max-width: 56ch;
  text-wrap: pretty;
}
.muted { color: var(--ash); }
.small { font-size: 14px; line-height: 1.7; }

p { text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-tech);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 19px 36px;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.btn--gold {
  color: var(--obsidian);
  background: var(--gold-grad);
}
.btn--gold::after {
  /* sheen sweep */
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 252, 240, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn--gold:hover::after { left: 130%; }

.btn--ghost {
  color: var(--ivory);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow 0.3s ease, color 0.3s ease;
}
.btn--ghost:hover {
  box-shadow: inset 0 0 0 1px rgba(201, 162, 75, 0.7);
  color: var(--gold-bright);
}

.btn--small { padding: 13px 24px; font-size: 12px; }

.btn .arrow { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover .arrow { transform: translateX(5px); }

/* refined text links */
.textlink {
  font-family: var(--font-tech);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  position: relative;
  padding-bottom: 5px;
}
.textlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.textlink:hover::after { transform: scaleX(1); }

/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
  border-bottom: 1px solid transparent;
}
.header.is-solid {
  background: rgba(11, 11, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(43, 45, 49, 0.8);
  height: 72px;
}
.header .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.logo .logo-mark { color: var(--gold); letter-spacing: 0.14em; }
.logo-img { height: 46px; width: auto; flex: none; }
.footer-lockup { width: 230px; height: auto; }
.logo .logo-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a:not(.btn) {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--silver);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav a:not(.btn):hover { color: var(--ivory); }
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav a.is-active { color: var(--gold-bright); }
.nav a.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1102;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ivory);
  margin: 6px auto;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1140px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 1100;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(11, 11, 12, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a:not(.btn) { font-size: 19px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero--short { min-height: 78svh; }

.hero-canvas,
.net-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 65% at 30% 40%, transparent 40%, rgba(11, 11, 12, 0.85) 100%),
    linear-gradient(180deg, rgba(11, 11, 12, 0.25) 0%, transparent 30%, rgba(11, 11, 12, 0.9) 96%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--silver);
  max-width: 54ch;
  margin-top: 36px;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 48px;
}
/* Mobile: stack hero CTA pairs into full-width buttons so the two
   side-by-side CTAs ("Book a Partnership Call" + "Explore Our Services")
   are not cramped on narrow phones. Desktop layout is untouched. */
@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .hero-ctas .btn {
    width: 100%;
    white-space: normal;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: var(--pad);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
}
.scroll-hint::after {
  content: "";
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 75, 0.7), transparent);
}

/* ---------- marquee strip ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding-block: 26px;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-inline: 28px;
  font-family: var(--font-serif);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.08em;
  color: var(--silver);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ---------- panels / cards ---------- */
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(28px, 3.4vw, 48px);
  position: relative;
}
.panel--charcoal { background: var(--panel); }
.panel--glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 162, 75, 0.09), transparent 70%);
}

.icon-gold {
  width: 40px;
  height: 40px;
  flex: none;
  color: var(--gold);
}
.icon-gold svg { width: 100%; height: 100%; }

/* ---------- lists ---------- */
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  color: var(--silver);
}
.checklist li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 1px;
  background: var(--gold-grad);
  transform: translateY(-4px);
}

/* ---------- stats ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: clamp(36px, 4vw, 60px) clamp(20px, 2.5vw, 44px);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(56px, 6vw, 104px);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  margin-top: 14px;
  font-family: var(--font-tech);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
}
@media (max-width: 860px) {
  .stat-band { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding-block: clamp(64px, 8vw, 110px) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(36px, 5vw, 80px);
}
.footer h4 {
  font-family: var(--font-tech);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 22px;
}
.footer-links { list-style: none; display: grid; gap: 12px; }
.footer-links a {
  text-decoration: none;
  color: var(--silver);
  font-size: 15px;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-tagline {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  color: var(--ivory);
  max-width: 18ch;
}
.footer-fine {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--ash);
  font-size: 13px;
}
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding-block: clamp(96px, 13vw, 180px);
  border-top: 1px solid var(--line);
}
.cta-band .net-canvas { opacity: 0.55; }
.cta-band-inner { position: relative; z-index: 2; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: grid; gap: 9px; }
.field label {
  font-family: var(--font-tech);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--ivory);
  background: var(--obsidian);
  border: 1px solid var(--line);
  padding: 15px 18px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- Accessibility: visible keyboard focus ----------
   Inputs zero out the default outline (they have a :focus border-glow),
   but keyboard users still need a clear ring on every interactive element.
   :focus-visible shows it for keyboard nav only, never on mouse click. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold-bright, #E6C66E);
  outline-offset: 3px;
  border-radius: 2px;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline-offset: 0;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A24B' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(201, 162, 75, 0.65);
  box-shadow: 0 0 0 1px rgba(201, 162, 75, 0.25), 0 0 24px rgba(201, 162, 75, 0.07);
}
.field input::placeholder,
.field textarea::placeholder { color: #5d6066; }

/* ---------- numbered editorial rows ---------- */
.row-list { border-top: 1px solid var(--line); }
.row-item {
  display: grid;
  grid-template-columns: 110px 1.1fr 1.6fr;
  gap: clamp(20px, 3.5vw, 56px);
  padding-block: clamp(36px, 4.5vw, 64px);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.row-num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  padding-top: 6px;
}
.row-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: 0.015em;
  line-height: 1.18;
}
.row-body { color: var(--silver); max-width: 52ch; }
.row-body .small { display: block; margin-top: 14px; color: var(--ash); }
@media (max-width: 760px) {
  .row-item { grid-template-columns: 1fr; gap: 14px; }
  .row-num { padding-top: 0; }
}

/* ---------- reveal default (JS sets initial state; CSS keeps no-JS visible) ---------- */
[data-reveal] { will-change: transform, opacity; }

/* ---------- utility ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }
/* Several pages set an inline grid-template-columns on .grid-2 / .row-item
   (e.g. "1.3fr 1fr") which would otherwise win over the stacking media
   query above and stay 2-column on phones. Force single-column on mobile.
   The !important is required to override the element-level inline style. */
@media (max-width: 760px) {
  .grid-2,
  .row-item {
    grid-template-columns: 1fr !important;
  }
}

.offset-right { margin-left: auto; max-width: 880px; }

/* ---------- back-to-main-site link (landing pages) ---------- */
.back-home {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.back-home:hover { color: var(--gold-bright); }
@media (max-width: 760px) { .header .back-home { display: none; } }

/* ---------- client service-page cards (home) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .svc-grid { grid-template-columns: 1fr; } }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 28px; }
.mt-3 { margin-top: 44px; }
.mt-4 { margin-top: 64px; }

/* ---------- compliance / legal fine print (dark pages) ---------- */
.legal-block {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 80ch;
  margin-inline: auto;
}
.legal-block p {
  font-family: var(--font-tech, var(--font-body));
  font-size: 12.5px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ash, #8A8D94);
}
.legal-block p + p { margin-top: 14px; }
.legal-block a { color: var(--silver); text-decoration: underline; }
.legal-block a:hover { color: var(--gold-bright); }

/* ---------- form consent fine print ---------- */
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 6px 0;
}
.consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--gold, #C9A24B);
}
.consent label {
  font-family: var(--font-tech, var(--font-body));
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ash, #8A8D94);
}
.consent label a { color: var(--silver); text-decoration: underline; }

/* ---------- embedded mode (page inside a cross-origin iframe, e.g. a GHL page) ----------
   Mirrors the bare /embed/ layout so full pages render correctly when iframed:
   scroll-reveals never fire in a non-scrolling iframe, so force content visible;
   kill the intro loader; pin svh heroes; un-fix the header; hide viewport-fixed bars. */
.is-embedded .header { position: absolute; top: 0; }
.is-embedded .hero, .is-embedded .hero--short, .is-embedded .lp-hero { min-height: 600px !important; }
.is-embedded .ltc-stickybar, .is-embedded .sticky-cta { display: none !important; }
html.is-embedded.lfgm-loading::before, html.is-embedded.lfgm-fast::before { display: none !important; }
.is-embedded .lfgm-loader, .is-embedded .lfgm-curtain, .is-embedded .lfgm-glow, .is-embedded .lfgm-dust { display: none !important; }
.is-embedded [data-reveal], .is-embedded [data-reveal] *, .is-embedded [data-reveal-group] > *, .is-embedded [data-hero-seq] > * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
