/* Positive Earth static cPanel site - four discipline realms */
:root {
  --pe-ink: #17201b;
  --pe-forest: #123829;
  --pe-forest-2: #1f5a42;
  --pe-cream: #f6f0e5;
  --pe-paper: #fffaf0;
  --pe-line: #dccfba;
  --pe-gold: #c49b4d;
  --pe-muted: #6b675e;
  --realm: #123829;
  --realm-2: #1f5a42;
  --realm-3: #c49b4d;
  --realm-ink: #17201b;
  --realm-paper: #fffaf0;
  --radius: 18px;
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --target-main: #c49b4d;
  --target-growth: #d2a84f;
  --target-lighting: #e28a42;
  --target-systems: #65c4b3;
  --target-drafting: #9fb66f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 112px; }
body {
  margin: 0;
  color: var(--realm-ink);
  background: var(--pe-cream);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

body.realm-main {
  --realm: #123829;
  --realm-2: #2d704f;
  --realm-3: #c49b4d;
  --realm-ink: #10241b;
  --realm-paper: #fffaf0;
}
body.realm-growth {
  --realm: #0c241b;
  --realm-2: #184d38;
  --realm-3: #d2a84f;
  --realm-ink: #f7f0e6;
  --realm-paper: #102a20;
  background: #0b1913;
  color: #f7f0e6;
}
body.realm-lighting {
  --realm: #1a100c;
  --realm-2: #7c3c28;
  --realm-3: #e28a42;
  --lighting-rose: #d96557;
  --lighting-amber: #f2b45e;
  --lighting-cream: #fff1df;
  --lighting-wine: #482019;
  --realm-ink: #fff5e8;
  --realm-paper: #f5eadc;
  background: #f5eadc;
}
body.realm-systems {
  --realm: #082b2f;
  --realm-2: #13646a;
  --realm-3: #65c4b3;
  --realm-ink: #ecfffb;
  --realm-paper: #edf6f2;
  background: #edf6f2;
}
body.realm-drafting {
  --realm: #26302f;
  --realm-2: #596f6a;
  --realm-3: #9fb66f;
  --realm-ink: #f5f7ef;
  --realm-paper: #f3f2e8;
  background: #f3f2e8;
}
body.realm-intake {
  --realm: #103425;
  --realm-2: #426b4c;
  --realm-3: #d1a24e;
  --realm-ink: #14241c;
  --realm-paper: #f6efe1;
  background: #f6efe1;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topline {
  background: var(--realm);
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.topline-inner {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.topline a { color: rgba(255,255,255,0.86); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid color-mix(in srgb, var(--realm) 18%, transparent);
  background:
    radial-gradient(circle at 18% 30%, color-mix(in srgb, var(--realm-3) 10%, transparent), transparent 19rem),
    linear-gradient(180deg, color-mix(in srgb, var(--realm-paper) 94%, white 6%), color-mix(in srgb, var(--realm-paper) 86%, white 14%));
  backdrop-filter: blur(18px);
}
body.realm-growth .site-header,
body.realm-lighting .site-header,
body.realm-systems .site-header,
body.realm-drafting .site-header,
body.realm-intake .site-header {
  background:
    radial-gradient(circle at 18% 42%, color-mix(in srgb, var(--realm-3) 16%, transparent), transparent 18rem),
    linear-gradient(90deg, color-mix(in srgb, var(--realm) 92%, black 8%), color-mix(in srgb, var(--realm) 78%, black 22%));
  border-bottom-color: rgba(255,255,255,0.12);
}
.header-inner {
  min-height: 118px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 12px 0;
}
.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  padding: 0;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--realm-3) 50%, transparent),
    0 0 0 5px color-mix(in srgb, var(--realm-3) 10%, transparent),
    0 16px 32px rgba(0,0,0,0.14);
  flex: 0 0 auto;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--realm-3) 42%, transparent);
  opacity: 0.9;
}
.brand-mark img {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
}
.brand-text { min-width: 0; }
.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 29px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--realm);
  text-shadow: 0 1px 0 color-mix(in srgb, var(--realm-3) 18%, transparent);
}
.brand-tag {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--realm-3);
}
body.realm-growth .brand-name,
body.realm-lighting .brand-name,
body.realm-systems .brand-name,
body.realm-drafting .brand-name,
body.realm-intake .brand-name { color: #fff; }
body.realm-growth .brand-mark,
body.realm-lighting .brand-mark,
body.realm-systems .brand-mark,
body.realm-drafting .brand-mark,
body.realm-intake .brand-mark {
  background:
    radial-gradient(circle at 50% 50%, #fff 0 58%, color-mix(in srgb, var(--realm-3) 26%, white) 59% 72%, transparent 73%),
    color-mix(in srgb, var(--realm) 70%, white 30%);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--realm-3) 82%, transparent),
    0 0 0 6px color-mix(in srgb, var(--realm-3) 16%, transparent),
    0 18px 40px rgba(0,0,0,0.30);
}
body.realm-lighting .brand-mark {
  box-shadow:
    0 0 0 1px rgba(242,180,94,0.82),
    0 0 0 6px rgba(226,138,66,0.18),
    0 16px 46px rgba(226,138,66,0.18),
    0 18px 40px rgba(0,0,0,0.32);
}
body.realm-systems .brand-mark {
  box-shadow:
    0 0 0 1px rgba(101,196,179,0.86),
    0 0 0 6px rgba(101,196,179,0.16),
    0 16px 46px rgba(101,196,179,0.12),
    0 18px 40px rgba(0,0,0,0.32);
}
body.realm-drafting .brand-mark {
  box-shadow:
    0 0 0 1px rgba(159,182,111,0.86),
    0 0 0 6px rgba(159,182,111,0.16),
    0 16px 46px rgba(159,182,111,0.10),
    0 18px 40px rgba(0,0,0,0.32);
}

/* ============================================================
   NAVIGATION LEGIBILITY CONTRACT  ·  Rev C · 2026-09-14
   ------------------------------------------------------------
   Menu labels take an explicit, header-aware ink token. They are
   never coloured by inheritance or by a var() that can fail to
   resolve, so a label can never depend on :hover to become
   visible. Realm accent colour is carried by the border and the
   underline, not by the label text.
   Light header  = body.realm-main and pages with no realm class.
   Dark header   = realm-growth / lighting / systems / drafting / intake.
   ============================================================ */
:root {
  --nav-ink: #10241b;                 /* label colour on the light header */
  --nav-ink-on: #fffaf0;              /* label colour when the pill is filled with --nav-ink */
  --nav-border: rgba(18, 56, 41, 0.38);
  --nav-accent-blend: #10241b;        /* realm accent is blended toward this */
  --nav-focus: #123829;               /* keyboard focus ring */
  --nav-focus-halo: rgba(255, 255, 255, 0.95);
}
body.realm-growth,
body.realm-lighting,
body.realm-systems,
body.realm-drafting,
body.realm-intake {
  --nav-ink: #ffffff;
  --nav-ink-on: #10140f;
  --nav-border: rgba(255, 255, 255, 0.30);
  --nav-accent-blend: #ffffff;
  --nav-focus: #ffd98a;
  --nav-focus-halo: rgba(0, 0, 0, 0.55);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a,
.back-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--nav-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nav-ink);
  background: transparent;
}
/* Visited links keep the navigation ink — no browser default purple. */
.site-nav a:visited,
.back-main:visited,
.footer-nav a:visited { color: inherit; }
.site-nav a:visited { color: var(--nav-ink); }
body.realm-growth .site-nav a,
body.realm-lighting .site-nav a,
body.realm-systems .site-nav a,
body.realm-drafting .site-nav a,
body.realm-intake .site-nav a,
body.realm-growth .back-main,
body.realm-lighting .back-main,
body.realm-systems .back-main,
body.realm-drafting .back-main,
body.realm-intake .back-main {
  color: var(--nav-ink);
  border-color: var(--nav-border);
}
.back-main {
  background: var(--realm-3);
  border-color: var(--realm-3);
  color: #16140f !important;
}
.site-nav a.back-main,
body.realm-growth .site-nav a.back-main,
body.realm-lighting .site-nav a.back-main,
body.realm-systems .site-nav a.back-main,
body.realm-drafting .site-nav a.back-main,
body.realm-intake .site-nav a.back-main {
  background: var(--realm-3);
  border-color: var(--realm-3);
  color: #16140f !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at 82% 20%, color-mix(in srgb, var(--realm-3) 26%, transparent), transparent 24rem),
    linear-gradient(135deg, color-mix(in srgb, var(--realm) 98%, black 2%), color-mix(in srgb, var(--realm-2) 78%, black 22%));
  color: #fff;
}
body.realm-main .hero {
  color: var(--pe-forest);
  background:
    radial-gradient(circle at 86% 26%, rgba(196,155,77,0.16), transparent 28rem),
    linear-gradient(180deg, #fffaf0, #f2eadc);
}
.hero::after {
  content: "";
  position: absolute;
  right: -12rem;
  top: 50%;
  width: 32rem;
  height: 32rem;
  border: 1px solid color-mix(in srgb, var(--realm-3) 46%, transparent);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.55;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 52px;
  align-items: center;
}
.hero-inner > * {
  min-width: 0;
}
.hero-copy-only { max-width: 820px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--realm-3);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
h1, h2, h3 {
  text-wrap: balance;
}
h1 {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-serif);
  font-size: 86px;
  line-height: 0.95;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 21px;
  color: rgba(255,255,255,0.78);
}
body.realm-main .hero-lead { color: var(--pe-muted); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--realm-3);
  color: #18150f;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}
.btn-ghost {
  color: currentColor;
  border-color: color-mix(in srgb, currentColor 28%, transparent);
}

/* Destination colour system: links inherit the colour of the realm they open. */
a[href="index.html"],
a[href$="/index.html"],
a[href="intake.html"] { --target-realm: var(--target-main); --target-text: #17140d; }
a:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]),
a[href*="intake.html#growth-hub"],
a[href*="Growth%20Hub"] { --target-realm: var(--target-growth); --target-text: #17140d; --button-pattern: var(--pattern-growth); }
a:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]),
a[href*="disciplines/lighting/flow-light"],
a[href*="intake.html#lighting"],
a[href*="Lighting%20Brief"],
a[href*="lighting%20brief"] { --target-realm: var(--target-lighting); --target-text: #1d100a; --button-pattern: var(--pattern-lighting); }
a:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]),
a[href*="intake.html#systems"],
a[href*="Systems%20Project"],
a[href*="system%20problem"] { --target-realm: var(--target-systems); --target-text: #04292d; --button-pattern: var(--pattern-systems); }
a:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]),
a[href*="intake.html#drafting"],
a[href*="Engineering%20Design"],
a[href*="design%20brief"] { --target-realm: var(--target-drafting); --target-text: #1d2617; --button-pattern: var(--pattern-drafting); }

:root {
  --pattern-growth:
    linear-gradient(135deg, transparent 0 46%, rgba(255,255,255,0.22) 46% 47%, transparent 47%),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  --pattern-lighting:
    radial-gradient(ellipse at 82% 20%, rgba(255,255,255,0.28), transparent 3.8rem),
    repeating-linear-gradient(132deg, transparent 0 13px, rgba(255,255,255,0.14) 13px 14px);
  --pattern-systems:
    linear-gradient(90deg, transparent 0 20px, rgba(255,255,255,0.15) 20px 21px),
    linear-gradient(transparent 0 20px, rgba(255,255,255,0.15) 20px 21px);
  --pattern-drafting:
    linear-gradient(90deg, rgba(255,255,255,0.13) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.13) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 45%, rgba(255,255,255,0.18) 45% 46%, transparent 46%);
}

.btn,
.nav-btn,
.nav-cta,
.site-header__cta,
.back-main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.btn::before,
.nav-btn::before,
.nav-cta::before,
.site-header__cta::before,
.back-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background:
    var(--button-pattern, linear-gradient(135deg, rgba(255,255,255,0.18), transparent 52%)),
    color-mix(in srgb, var(--target-realm, var(--realm-3)) 92%, transparent);
  background-size: auto, 34px 34px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.btn:hover::before,
.btn:focus-visible::before,
.nav-btn:hover::before,
.nav-btn:focus-visible::before,
.nav-cta:hover::before,
.nav-cta:focus-visible::before,
.site-header__cta:hover::before,
.site-header__cta:focus-visible::before,
.back-main:hover::before,
.back-main:focus-visible::before {
  opacity: 1;
  transform: scale(1.08);
}
.btn:hover,
.btn:focus-visible,
.nav-btn:hover,
.nav-btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.site-header__cta:hover,
.site-header__cta:focus-visible,
.back-main:hover,
.back-main:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--target-realm, var(--realm-3)) 84%, white 16%) !important;
  box-shadow:
    0 18px 42px rgba(22,32,27,0.18),
    0 0 0 5px color-mix(in srgb, var(--target-realm, var(--realm-3)) 12%, transparent);
}
.btn:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]):hover,
.btn[href*="disciplines/lighting/flow-light"]:hover,
.btn[href*="intake.html#lighting"]:hover,
.btn[href*="Lighting%20Brief"]:hover,
.nav-btn:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]):hover,
.nav-btn[href*="disciplines/lighting/flow-light"]:hover,
.nav-cta:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]):hover,
.nav-cta[href*="disciplines/lighting/flow-light"]:hover,
.site-header__cta:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]):hover,
.site-header__cta[href*="disciplines/lighting/flow-light"]:hover {
  transform: translateY(-3px) rotate(0.5deg);
}
.btn:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]):hover,
.btn[href*="intake.html#systems"]:hover,
.btn[href*="Systems%20Project"]:hover,
.nav-btn:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]):hover,
.nav-cta:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]):hover,
.site-header__cta:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]):hover {
  transform: translateY(-3px) scale(1.025);
}
.btn:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]):hover,
.btn[href*="intake.html#drafting"]:hover,
.btn[href*="Engineering%20Design"]:hover,
.nav-btn:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]):hover,
.nav-cta:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]):hover,
.site-header__cta:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]):hover {
  transform: translateY(-3px) rotate(-0.35deg);
}

/* NOTE (2026-09-14): the previous rule here was
     .site-nav a[href],.footer-nav a[href]{--target-realm:var(--target-realm,var(--realm-3));}
   A custom property cannot reference itself. That self-reference made
   --target-realm "invalid at computed-value time" on every nav link, which
   silently dropped the pill background/border and left the :hover rule
   painting a dark --target-text label on an unchanged dark header — the
   menu items that disappeared on hover. The destination colours are
   already declared on the anchors themselves (see "Destination colour
   system" above), so no re-declaration is needed here. Every var() below
   now carries an explicit fallback so a missing token can never blank a
   label again. */

/* Destination-tinted nav pills.
   The realm accent lives in the border, tint and underline.
   The LABEL always uses --nav-ink so it can never fall below contrast. */
.site-nav a:not(.back-main):is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]),
.site-nav a:not(.back-main):is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]),
.site-nav a:not(.back-main)[href*="disciplines/lighting/flow-light"],
.site-nav a:not(.back-main):is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]),
.site-nav a:not(.back-main):is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]),
.site-nav a:not(.back-main):is([href*="intake.html#"],[href^="/intake#"]) {
  border-color: color-mix(in srgb, var(--target-realm, var(--realm-3)) 62%, var(--nav-accent-blend));
  background: color-mix(in srgb, var(--target-realm, var(--realm-3)) 14%, transparent);
  color: var(--nav-ink);
  box-shadow: inset 0 -2px 0 color-mix(in srgb, var(--target-realm, var(--realm-3)) 68%, var(--nav-accent-blend));
}
.site-nav a:not(.back-main):is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]):hover,
.site-nav a:not(.back-main):is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]):hover,
.site-nav a:not(.back-main)[href*="disciplines/lighting/flow-light"]:hover,
.site-nav a:not(.back-main):is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]):hover,
.site-nav a:not(.back-main):is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]):hover,
.site-nav a:not(.back-main):is([href*="intake.html#"],[href^="/intake#"]):hover,
.site-nav a:not(.back-main):is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]):focus-visible,
.site-nav a:not(.back-main):is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]):focus-visible,
.site-nav a:not(.back-main)[href*="disciplines/lighting/flow-light"]:focus-visible,
.site-nav a:not(.back-main):is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]):focus-visible,
.site-nav a:not(.back-main):is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]):focus-visible,
.site-nav a:not(.back-main):is([href*="intake.html#"],[href^="/intake#"]):focus-visible {
  background: var(--target-realm, var(--realm-3));
  border-color: var(--target-realm, var(--realm-3));
  color: var(--target-text, #16140f);
  transform: translateY(-1px);
}

/* Plain (anchor) nav items get a solid, high-contrast hover state too,
   so hover is a clear change of state rather than the only way to read. */
.site-nav a:not(.back-main):hover,
.site-nav a:not(.back-main):focus-visible {
  background: color-mix(in srgb, var(--nav-ink) 92%, transparent);
  border-color: var(--nav-ink);
  color: var(--nav-ink-on, #fffaf0);
}

/* Visible keyboard focus on every header, nav and footer link. */
.site-header a:focus-visible,
.site-nav a:focus-visible,
.back-main:focus-visible,
.site-header__nav a:focus-visible,
.nav a:focus-visible,
.footer-nav a:focus-visible,
.site-footer a:focus-visible,
.topline a:focus-visible {
  outline: 3px solid var(--nav-focus, #123829);
  outline-offset: 3px;
  border-radius: 999px;
}
.btn:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]),
.btn:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]),
.btn[href*="disciplines/lighting/flow-light"],
.btn:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]),
.btn:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]),
.btn:is([href*="intake.html#"],[href^="/intake#"]) {
  border-color: var(--target-realm);
}
.btn-primary:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]),
.btn-primary:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]),
.btn-primary[href*="disciplines/lighting/flow-light"],
.btn-primary:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]),
.btn-primary:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]),
.btn-primary:is([href*="intake.html#"],[href^="/intake#"]) {
  background: var(--target-realm);
  color: var(--target-text);
}
.btn-ghost:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]),
.btn-ghost:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]),
.btn-ghost[href*="disciplines/lighting/flow-light"],
.btn-ghost:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]),
.btn-ghost:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]),
.btn-ghost:is([href*="intake.html#"],[href^="/intake#"]) {
  color: color-mix(in srgb, var(--target-realm) 82%, currentColor 18%);
  background: color-mix(in srgb, var(--target-realm) 10%, transparent);
  border-color: color-mix(in srgb, var(--target-realm) 74%, transparent);
}
.footer-nav a:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]),
.footer-nav a:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]),
.footer-nav a[href*="disciplines/lighting/flow-light"],
.footer-nav a:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]),
.footer-nav a:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]),
.footer-nav a:is([href*="intake.html#"],[href^="/intake#"]) {
  color: color-mix(in srgb, var(--target-realm) 82%, white 18%);
}
.panel-list a:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]),
.panel-list a:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]),
.panel-list a[href*="disciplines/lighting/flow-light"],
.panel-list a:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]),
.panel-list a:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]),
.panel-list a:is([href*="intake.html#"],[href^="/intake#"]) {
  border-left: 4px solid var(--target-realm);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--target-realm) 18%, transparent);
}
.panel-list a:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]) b,
.panel-list a:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]) b,
.panel-list a[href*="disciplines/lighting/flow-light"] b,
.panel-list a:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]) b,
.panel-list a:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]) b,
.panel-list a:is([href*="intake.html#"],[href^="/intake#"]) b {
  color: var(--target-realm);
}
.discipline-card:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]),
.ecosystem-node:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]) { --target-realm: var(--target-growth); }
.discipline-card:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]),
.ecosystem-node:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]) { --target-realm: var(--target-lighting); }
.discipline-card:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]),
.ecosystem-node:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]) { --target-realm: var(--target-systems); }
.discipline-card:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]),
.ecosystem-node:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]) { --target-realm: var(--target-drafting); }
.discipline-card[href],
.ecosystem-node[href] {
  border-color: color-mix(in srgb, var(--target-realm) 58%, var(--pe-line));
  border-top-color: var(--target-realm);
}
.discipline-card[href] .num,
.ecosystem-node[href] span {
  color: var(--target-realm);
}
.realm-panel {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
body.realm-main .realm-panel {
  color: var(--pe-forest);
  background: rgba(255,255,255,0.72);
  border-color: var(--pe-line);
}
.realm-panel h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.1;
}
.panel-list {
  display: grid;
  gap: 10px;
}
.panel-list a,
.panel-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 13px 14px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  font-size: 14px;
}
body.realm-main .panel-list a,
body.realm-main .panel-list div {
  color: var(--pe-forest);
  border-color: var(--pe-line);
  background: #fff;
}
.panel-list b {
  color: var(--realm-3);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   ACCENT-AS-TEXT ON LIGHT SURFACES  ·  Rev C · 2026-09-14
   ------------------------------------------------------------
   The realm accents (--realm-3 and the --target-* family) are
   light colours. They read well on the dark realm sections, but
   measured 1.95-2.20:1 when used as TEXT on the white and cream
   cards (card numerals, kickers, panel labels, header tagline).
   --accent-ink / --target-ink are the SAME hues darkened to clear
   4.5:1 on white and cream. The accents themselves are unchanged,
   so fills, borders, rules and accent text on dark sections keep
   the existing Positive Earth look.
   ============================================================ */
:root {
  --accent-ink: #8a6420;   /* gold, darkened for light surfaces */
  --target-ink: var(--accent-ink);
}
body.realm-growth   { --accent-ink: #8a6320; }
body.realm-lighting { --accent-ink: #a4521c; }
body.realm-systems  { --accent-ink: #116b5e; }
body.realm-drafting { --accent-ink: #4f6321; }
body.realm-intake   { --accent-ink: #8a6420; }

/* Destination inks mirror the destination colour system above. */
a[href="index.html"],
a[href$="/index.html"],
a[href="intake.html"] { --target-ink: #8a6420; }
a:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]),
a[href*="intake.html#growth-hub"],
a[href*="Growth%20Hub"] { --target-ink: #8a6320; }
a:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]),
a[href*="disciplines/lighting/flow-light"],
a[href*="intake.html#lighting"],
a[href*="Lighting%20Brief"],
a[href*="lighting%20brief"] { --target-ink: #a4521c; }
a:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]),
a[href*="intake.html#systems"],
a[href*="Systems%20Project"],
a[href*="system%20problem"] { --target-ink: #116b5e; }
a:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]),
a[href*="intake.html#drafting"],
a[href*="Engineering%20Design"],
a[href*="design%20brief"] { --target-ink: #4f6321; }

/* The colour rules that consume these tokens are applied at the END of
   this file (see "ACCENT INK APPLICATION"), so they land after the
   original var(--realm-3) declarations they are correcting. */

.proof-strip {
  border-top: 1px solid color-mix(in srgb, var(--realm-3) 26%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--realm-3) 24%, transparent);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.74), rgba(255,255,255,0.42)),
    color-mix(in srgb, var(--realm-paper) 88%, white 12%);
}
.proof-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}
.proof-strip-inner div {
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 18px 22px;
  border-left: 1px solid color-mix(in srgb, var(--realm-3) 18%, transparent);
}
.proof-strip-inner div:last-child {
  border-right: 1px solid color-mix(in srgb, var(--realm-3) 18%, transparent);
}
.proof-strip b {
  color: var(--realm);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1;
}
.proof-strip span {
  margin-top: 8px;
  color: var(--pe-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
}
.section.alt {
  background: color-mix(in srgb, var(--realm-paper) 92%, white 8%);
}
body.realm-growth .section.alt {
  background: #10261e;
}
.section-head {
  max-width: 760px;
  margin: 0 0 42px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--realm);
}
body.realm-growth .section-head h2 { color: #fff; }
.section-head p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--pe-muted);
  font-size: 17px;
}
body.realm-growth .section-head p { color: rgba(255,255,255,0.68); }

.proof-section {
  background:
    radial-gradient(circle at 84% 20%, rgba(196,155,77,0.12), transparent 24rem),
    linear-gradient(180deg, #fffaf0, #f2eadb);
}
.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--realm-3) 36%, var(--pe-line));
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18,56,41,0.06) 1px, transparent 1px),
    linear-gradient(rgba(18,56,41,0.05) 1px, transparent 1px),
    rgba(255,255,255,0.72);
  background-size: 30px 30px, 30px 30px, auto;
  box-shadow: 0 24px 62px rgba(35,42,31,0.10);
}
.process-rail article {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid color-mix(in srgb, var(--realm-3) 25%, transparent);
}
.process-rail article:last-child {
  border-right: 0;
}
.process-rail span {
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
}
.process-rail h3 {
  margin: 42px 0 14px;
  color: var(--realm);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.05;
}
.process-rail p {
  margin: 0;
  color: #4f5c51;
  font-size: 14px;
}

.idea-proof {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(101,196,179,0.12), transparent 22rem),
    radial-gradient(circle at 88% 22%, rgba(226,138,66,0.11), transparent 24rem),
    linear-gradient(180deg, #f8f1e6, #fffaf0);
}
.idea-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(18,56,41,0.055) 1px, transparent 1px),
    linear-gradient(rgba(18,56,41,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}
.idea-proof .container {
  position: relative;
  z-index: 1;
}
.proof-board {
  display: grid;
  gap: 14px;
}
.proof-path {
  --path: var(--realm-3);
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 84px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  min-height: 156px;
  padding: 18px 22px;
  border: 1px solid color-mix(in srgb, var(--path) 48%, var(--pe-line));
  border-left: 6px solid var(--path);
  border-radius: 24px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--path) 8%, transparent), transparent 44%),
    rgba(255,255,255,0.82);
  box-shadow: 0 18px 44px rgba(22,32,27,0.08);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.proof-path::after {
  content: "";
  position: absolute;
  right: -58px;
  top: 50%;
  width: 132px;
  height: 132px;
  border: 1px solid color-mix(in srgb, var(--path) 42%, transparent);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.72;
}
.proof-path:hover,
.proof-path:focus-visible {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--path) 76%, var(--pe-line));
  box-shadow:
    0 26px 62px rgba(22,32,27,0.13),
    0 0 0 6px color-mix(in srgb, var(--path) 10%, transparent);
}
.proof-path > * {
  position: relative;
  z-index: 1;
}
.path-growth { --path: var(--target-growth); }
.path-lighting { --path: var(--target-lighting); }
.path-systems { --path: var(--target-systems); }
.path-drafting { --path: var(--target-drafting); }
.path-num {
  align-self: center;
  color: var(--path);
  font-family: var(--font-serif);
  font-size: 38px;
  font-style: italic;
  line-height: 1;
}
.proof-path div {
  display: grid;
  align-content: center;
  min-width: 0;
}
.proof-path b {
  display: block;
  color: var(--realm);
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.05;
}
.proof-path p {
  max-width: 540px;
  margin: 10px 0 0;
  color: #536056;
  font-size: 14px;
}
.proof-path i {
  align-self: center;
  justify-self: stretch;
  height: 2px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--path) 72%, transparent), transparent);
}
.proof-path i::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin-left: auto;
  margin-top: -4.5px;
  border-top: 2px solid var(--path);
  border-right: 2px solid var(--path);
  transform: rotate(45deg);
}
.case-preview .realm-card {
  min-height: 320px;
}

.realm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.realm-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.realm-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.realm-card {
  position: relative;
  min-height: 260px;
  border: 1px solid color-mix(in srgb, var(--realm-3) 38%, var(--pe-line));
  border-top: 4px solid var(--realm-3);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  color: var(--pe-ink);
  box-shadow: 0 18px 42px rgba(22,32,27,0.08);
  overflow: hidden;
}
body.realm-growth .realm-card {
  background: rgba(255,255,255,0.07);
  color: #f7f0e6;
  border-color: rgba(210,168,79,0.38);
}
.realm-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--realm-3) 40%, transparent);
}
.realm-card .num {
  display: block;
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  margin-bottom: 34px;
}
.realm-card h3 {
  margin: 0 0 12px;
  color: inherit;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.05;
}
.realm-card p, .realm-card li {
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: 15px;
}
.realm-card img:not(.disc-logo),
.discipline-card img {
  max-width: 100%;
}
.discipline-card > img,
.realm-card > img {
  width: auto;
  max-width: 88px;
  height: auto;
}
.realm-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.chip {
  border: 1px solid color-mix(in srgb, var(--realm-3) 44%, transparent);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--realm-2);
  background: color-mix(in srgb, var(--realm-3) 9%, white);
  font-size: 11px;
  font-weight: 800;
}
body.realm-growth .chip {
  color: #f3d694;
  background: rgba(210,168,79,0.12);
}

.discipline-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}
.discipline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.discipline-card > * {
  position: relative;
  z-index: 1;
}
.discipline-card[href]:hover,
.discipline-card[href]:focus-visible {
  transform: translateY(-10px);
  border-color: color-mix(in srgb, var(--target-realm) 72%, white 28%);
  box-shadow:
    0 34px 82px rgba(31,41,32,0.18),
    0 0 0 8px color-mix(in srgb, var(--target-realm) 10%, transparent);
}
.discipline-card[href]:hover::before,
.discipline-card[href]:focus-visible::before {
  opacity: 0.74;
  transform: scale(1.03);
}
.discipline-card:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"])::before {
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(210,168,79,0.16) 42% 43%, transparent 43%),
    linear-gradient(90deg, rgba(210,168,79,0.10) 1px, transparent 1px),
    linear-gradient(rgba(210,168,79,0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}
.discipline-card:is([href*="growth-hub.html"],[href="/growth-hub"],[href^="/growth-hub#"],[href^="/growth-hub?"]):hover {
  transform: translateY(-12px) rotate(-0.35deg);
  background:
    radial-gradient(circle at 86% 16%, rgba(210,168,79,0.18), transparent 12rem),
    #fffdf7;
}
.discipline-card:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"])::before {
  background:
    radial-gradient(ellipse at 78% 26%, rgba(226,138,66,0.20), transparent 9rem),
    repeating-linear-gradient(132deg, transparent 0 18px, rgba(226,138,66,0.10) 18px 19px);
}
.discipline-card:is([href*="lighting.html"],[href="/lighting"],[href^="/lighting#"],[href^="/lighting?"]):hover {
  transform: translateY(-12px) rotate(0.45deg) scale(1.012);
  background:
    radial-gradient(circle at 84% 18%, rgba(226,138,66,0.18), transparent 12rem),
    #fffaf4;
}
.discipline-card:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"])::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(101,196,179,0.18), transparent 8rem),
    linear-gradient(90deg, transparent 0 28px, rgba(101,196,179,0.12) 28px 29px),
    linear-gradient(transparent 0 28px, rgba(101,196,179,0.12) 28px 29px);
  background-size: auto, 58px 58px, 58px 58px;
}
.discipline-card:is([href*="systems-projects.html"],[href="/systems-projects"],[href^="/systems-projects#"],[href^="/systems-projects?"]):hover {
  transform: translateY(-12px) scale(1.018);
  background:
    radial-gradient(circle at 86% 18%, rgba(101,196,179,0.18), transparent 12rem),
    #fafffb;
}
.discipline-card:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"])::before {
  background:
    linear-gradient(90deg, rgba(159,182,111,0.11) 1px, transparent 1px),
    linear-gradient(rgba(159,182,111,0.11) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 47%, rgba(159,182,111,0.16) 47% 48%, transparent 48%);
  background-size: 34px 34px, 34px 34px, auto;
}
.discipline-card:is([href*="engineering-drafting-design.html"],[href="/engineering-drafting-design"],[href^="/engineering-drafting-design#"],[href^="/engineering-drafting-design?"]):hover {
  transform: translateY(-12px) rotate(0.25deg);
  background:
    radial-gradient(circle at 86% 18%, rgba(159,182,111,0.18), transparent 12rem),
    #fbfcf5;
}
.discipline-card .disc-logo {
  width: clamp(48px, 4.4vw, 55px) !important;
  height: clamp(48px, 4.4vw, 55px) !important;
  max-width: 55px;
  max-height: 55px;
  border-radius: 50%;
  margin-left: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--realm-3) 34%, transparent),
    0 12px 26px color-mix(in srgb, var(--realm-2) 12%, transparent);
}
.discipline-card .card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
}
.discipline-card .kicker {
  margin-top: auto;
  display: block;
  color: var(--realm-3);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.discipline-card h3 {
  margin-top: 10px;
}

.home-lighting-feature {
  background:
    radial-gradient(circle at 18% 20%, rgba(226,138,66,0.16), transparent 24rem),
    radial-gradient(circle at 88% 68%, rgba(72,32,25,0.10), transparent 22rem),
    linear-gradient(180deg, #fff6e9, #f4e5d3);
}
.home-lighting-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.86fr));
  gap: 18px;
}
.home-light-card {
  position: relative;
  display: grid;
  min-height: 420px;
  border: 1px solid rgba(111,61,39,0.24);
  border-radius: 24px;
  overflow: hidden;
  background: #1b1410;
  color: #fff5e8;
  box-shadow: 0 24px 54px rgba(64,35,22,0.15);
  isolation: isolate;
}
.home-light-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(27,20,16,0.92) 62%, #1b1410);
}
.home-light-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.home-light-card:hover img,
.home-light-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}
.home-light-card.sketch img {
  object-fit: contain;
  padding: 24px;
  background: linear-gradient(180deg, #f8f4ee, #efe8dc);
}
.home-light-card span,
.home-light-card b {
  position: relative;
  z-index: 2;
  align-self: end;
  padding-inline: 24px;
}
.home-light-card span {
  margin-top: auto;
  padding-top: 250px;
  color: var(--target-lighting);
  font-family: var(--font-serif);
  font-size: 30px;
  font-style: italic;
}
.home-light-card b {
  display: block;
  padding-bottom: 24px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.05;
}
.home-light-card.feature b {
  font-size: 32px;
}

.shortcut-hero .hero-inner {
  grid-template-columns: minmax(0, 1fr) 280px;
}
.shortcut-preview {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 280px;
  border: 1px solid color-mix(in srgb, var(--realm-3) 36%, transparent);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 28%, rgba(196,155,77,0.16), transparent 8rem),
    rgba(255,255,255,0.76);
  box-shadow: 0 24px 62px rgba(22,32,27,0.12);
  text-align: center;
}
.shortcut-preview img {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(18,56,41,0.24);
}
.shortcut-preview b {
  margin-top: 18px;
  color: var(--realm);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
}
.shortcut-preview span {
  margin-top: 8px;
  color: var(--pe-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.brief-card {
  min-height: 310px;
}
.brief-card .kicker {
  display: block;
  color: var(--realm-3);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.intake-section .split-inner,
.intake-detail {
  align-items: start;
}
.intake-detail .realm-card {
  min-height: auto;
}
.intake-detail .realm-card h3 {
  font-size: 30px;
}
.brief-btn {
  margin-top: 22px;
}

.brand-system {
  background:
    radial-gradient(circle at 50% 35%, rgba(196,155,77,0.15), transparent 24rem),
    linear-gradient(180deg, #f8f1e5, #efe6d6);
}
.brand-system-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
}
.ecosystem-map {
  position: relative;
  min-height: 600px;
  border: 1px solid rgba(18,56,41,0.12);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(18,56,41,0.06) 1px, transparent 1px),
    linear-gradient(rgba(18,56,41,0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(18,56,41,0.08), transparent 18rem),
    rgba(255,250,240,0.78);
  background-size: 44px 44px, 44px 44px, auto, auto;
  box-shadow: 0 26px 70px rgba(31,41,32,0.10);
  overflow: visible;
  isolation: isolate;
}
.ecosystem-map::before,
.ecosystem-map::after {
  content: "";
  position: absolute;
  inset: 70px;
  border: 1px solid rgba(196,155,77,0.38);
  border-radius: 50%;
}
.ecosystem-map::after {
  inset: 132px;
  border-color: rgba(18,56,41,0.14);
}
.ecosystem-core,
.ecosystem-node {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 5px;
  border-radius: 18px;
  border: 1px solid rgba(18,56,41,0.14);
  background: rgba(255,253,247,0.92);
  color: #13261c;
  padding: 18px;
  box-shadow: 0 20px 48px rgba(31,41,32,0.12);
}
.ecosystem-core {
  left: 50%;
  top: 50%;
  width: 190px;
  min-height: 190px;
  place-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #123829;
  color: #fff8ea;
}
.ecosystem-core img {
  width: 74px;
  height: 74px;
}
.ecosystem-node {
  width: 214px;
  min-height: 150px;
  align-content: center;
  transform: var(--node-transform, translate3d(0,0,0)) scale(1);
  transform-origin: center;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    opacity 0.24s ease;
  will-change: transform;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.ecosystem-node::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.54;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.ecosystem-node:hover,
.ecosystem-node:focus-visible {
  z-index: 8;
  transform: var(--node-transform, translate3d(0,0,0)) translateY(-18px) scale(1.18);
  border-color: color-mix(in srgb, var(--target-realm, var(--realm-3)) 74%, white 26%);
  background:
    radial-gradient(circle at 90% 12%, color-mix(in srgb, var(--target-realm, var(--realm-3)) 18%, transparent), transparent 8rem),
    rgba(255,253,247,0.98);
  box-shadow:
    0 38px 90px rgba(31,41,32,0.28),
    0 0 0 10px color-mix(in srgb, var(--target-realm, var(--realm-3)) 13%, transparent),
    0 0 42px color-mix(in srgb, var(--target-realm, var(--realm-3)) 22%, transparent);
}
.ecosystem-node:hover::before,
.ecosystem-node:focus-visible::before {
  opacity: 0.92;
  transform: scale(1.08);
}
.ecosystem-map:hover .ecosystem-node:not(:hover) {
  opacity: 0.7;
}
.ecosystem-node span {
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
}
.ecosystem-node b,
.ecosystem-core b {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.05;
}
.ecosystem-node em,
.ecosystem-core em {
  color: rgba(19,38,28,0.62);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ecosystem-core em { color: rgba(255,248,234,0.66); }
.node-growth::before {
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(210,168,79,0.16) 42% 43%, transparent 43%),
    linear-gradient(90deg, rgba(210,168,79,0.10) 1px, transparent 1px),
    linear-gradient(rgba(210,168,79,0.07) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
}
.node-lighting::before {
  background:
    radial-gradient(ellipse at 82% 18%, rgba(226,138,66,0.22), transparent 7rem),
    repeating-linear-gradient(132deg, transparent 0 15px, rgba(226,138,66,0.10) 15px 16px);
}
.node-systems::before {
  background:
    radial-gradient(circle at 82% 20%, rgba(101,196,179,0.18), transparent 7rem),
    linear-gradient(90deg, transparent 0 22px, rgba(101,196,179,0.13) 22px 23px),
    linear-gradient(transparent 0 22px, rgba(101,196,179,0.13) 22px 23px);
  background-size: auto, 46px 46px, 46px 46px;
}
.node-drafting::before {
  background:
    linear-gradient(90deg, rgba(159,182,111,0.12) 1px, transparent 1px),
    linear-gradient(rgba(159,182,111,0.12) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 45%, rgba(159,182,111,0.16) 45% 46%, transparent 46%);
  background-size: 26px 26px, 26px 26px, auto;
}
.node-growth {
  right: calc(50% + 64px);
  top: 90px;
  border-top: 4px solid #d2a84f;
  --node-transform: translate3d(0,0,0);
}
.node-lighting {
  left: calc(50% + 64px);
  top: 90px;
  border-top: 4px solid #df8d46;
  --node-transform: translate3d(0,0,0);
}
.node-systems {
  right: calc(50% + 64px);
  bottom: 90px;
  border-top: 4px solid #65c4b3;
  --node-transform: translate3d(0,0,0);
}
.node-drafting {
  left: calc(50% + 64px);
  bottom: 90px;
  border-top: 4px solid #9fb66f;
  --node-transform: translate3d(0,0,0);
}

.growth-intelligence,
.systems-dashboard,
.technical-data {
  background:
    radial-gradient(circle at 84% 20%, color-mix(in srgb, var(--realm-3) 18%, transparent), transparent 22rem),
    color-mix(in srgb, var(--realm-paper) 90%, white 10%);
}
.intelligence-board,
.spectrum-board,
.dashboard-grid,
.technical-matrix {
  border: 1px solid color-mix(in srgb, var(--realm-3) 34%, transparent);
  border-radius: 28px;
  padding: 24px;
  background: color-mix(in srgb, var(--realm) 86%, black 14%);
  color: #fff;
  box-shadow: 0 26px 70px rgba(0,0,0,0.16);
}
.intelligence-board {
  display: grid;
  gap: 14px;
}
.signal-card {
  display: grid;
  grid-template-columns: 180px 1fr 100px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}
.signal-label,
.dashboard-card span,
.technical-matrix span {
  color: rgba(255,255,255,0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.signal-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.signal-bar i {
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--realm-3), #fff0b8);
}
.signal-card b {
  color: var(--realm-3);
  text-align: right;
}
.creative-spectrum {
  background:
    radial-gradient(circle at 12% 18%, rgba(223,141,70,0.16), transparent 22rem),
    linear-gradient(180deg, #fff7ed, #f1dfca);
}
.spectrum-board {
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(223,141,70,0.22), transparent 16rem),
    #1b1410;
}
.spectrum-row {
  display: grid;
  grid-template-columns: 170px 1fr 46px;
  gap: 16px;
  align-items: center;
}
.spectrum-row span {
  color: rgba(255,245,232,0.78);
  font-weight: 800;
}
.spectrum-row i {
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #df8d46 var(--level), rgba(255,255,255,0.12) var(--level));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
.spectrum-row b {
  color: #df8d46;
  font-family: var(--font-serif);
  font-size: 26px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 14px;
}
.dashboard-card {
  min-height: 170px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255,255,255,0.06);
}
.dashboard-card.wide {
  grid-row: span 1;
}
.dashboard-card b {
  display: block;
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 1;
}
.dashboard-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 104px;
  margin-top: 20px;
}
.dashboard-bars i {
  flex: 1;
  height: var(--level);
  min-height: 22px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--realm-3), rgba(101,196,179,0.22));
}
.technical-matrix {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  background:
    linear-gradient(90deg, rgba(159,182,111,0.08) 1px, transparent 1px),
    linear-gradient(rgba(159,182,111,0.08) 1px, transparent 1px),
    #26302f;
  background-size: 34px 34px;
}
.technical-matrix div {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
}
.technical-matrix b {
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 34px;
  font-style: italic;
}
.technical-matrix i {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--realm-3), transparent);
}

body.realm-intake .intake-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(209,162,78,0.24), transparent 23rem),
    radial-gradient(circle at 18% 86%, rgba(119,151,105,0.18), transparent 26rem),
    linear-gradient(135deg, #0d2f22, #1d4b35 58%, #7a6335);
}
body.realm-intake .intake-hero .hero-lead {
  color: rgba(255,250,240,0.82);
}
body.realm-intake .intake-hero .realm-panel {
  background: rgba(246,239,225,0.10);
  border-color: rgba(246,239,225,0.22);
}
body.realm-intake #paths {
  background:
    radial-gradient(circle at 12% 10%, rgba(209,162,78,0.12), transparent 20rem),
    linear-gradient(180deg, #f9f3e8, #efe8d9);
}
body.realm-intake #paths .section-head h2,
body.realm-intake .intake-detail h2 {
  color: #143225;
}
body.realm-intake #paths .section-head p,
body.realm-intake .intake-detail p {
  color: #4f5c51;
}
body.realm-intake .brief-card {
  background:
    radial-gradient(circle at 100% 100%, color-mix(in srgb, var(--realm-3) 20%, transparent), transparent 9rem),
    linear-gradient(180deg, #fffdf7, #f7f1e6);
  border-color: color-mix(in srgb, var(--realm-3) 46%, #d7c6a9);
}
body.realm-intake .brief-card h3,
body.realm-intake .brief-card p {
  color: #17251d;
}
body.realm-intake .brief-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(35,42,31,0.14);
}
body.realm-intake .intake-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.72), rgba(255,255,255,0.34)),
    #f4eadb;
}
body.realm-intake .intake-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 8% 18%, rgba(209,162,78,0.12), transparent 18rem);
}
body.realm-intake .intake-section > .container {
  position: relative;
  z-index: 1;
}
body.realm-intake #growth-hub {
  background:
    radial-gradient(circle at 92% 18%, rgba(209,162,78,0.12), transparent 22rem),
    linear-gradient(135deg, #112f23, #1d4c36);
}
body.realm-intake #growth-hub h2,
body.realm-intake #growth-hub p {
  color: #fff7e8;
}
body.realm-intake #lighting {
  background:
    radial-gradient(circle at 90% 24%, rgba(218,132,67,0.18), transparent 22rem),
    linear-gradient(135deg, #f7eadb, #efe0cd);
}
body.realm-intake #systems {
  background:
    radial-gradient(circle at 88% 24%, rgba(92,181,164,0.18), transparent 22rem),
    linear-gradient(135deg, #e8f0e8, #dceae2);
}
body.realm-intake #drafting {
  background:
    radial-gradient(circle at 88% 24%, rgba(159,182,111,0.18), transparent 22rem),
    linear-gradient(135deg, #f1efe3, #e5e5d7);
}
body.realm-intake .intake-detail .realm-card {
  background:
    radial-gradient(circle at 100% 100%, color-mix(in srgb, var(--realm-3) 18%, transparent), transparent 8rem),
    rgba(255,253,247,0.92);
  border-color: color-mix(in srgb, var(--realm-3) 58%, #d7c6a9);
  box-shadow: 0 24px 62px rgba(46,37,24,0.12);
}
body.realm-intake #growth-hub .realm-card {
  background: rgba(255,250,240,0.96);
}
body.realm-intake .intake-detail .realm-card h3 {
  color: #17251d;
}
body.realm-intake .intake-detail .realm-card li {
  color: #4f5c51;
}
body.realm-intake .intake-detail .realm-card li b {
  display: inline-block;
  min-width: 5.4rem;
  color: color-mix(in srgb, var(--realm-3) 72%, #17251d);
  font-weight: 900;
}
body.realm-intake .enquiry-template {
  overflow: hidden;
}
body.realm-intake .enquiry-template::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.62;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--realm-3) 10%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--realm-3) 9%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
}
body.realm-intake .enquiry-template > * {
  position: relative;
  z-index: 1;
}
body.realm-intake .template-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--realm-3) 86%, #17251d);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
body.realm-intake .template-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 22px 0 20px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--realm-3) 28%, transparent);
  border-radius: 999px;
  background: rgba(255,255,255,0.56);
}
body.realm-intake .template-flow span {
  color: #17251d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
body.realm-intake .template-flow i {
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--realm-3) 60%, transparent), transparent);
}
body.realm-intake .lighting-template {
  background:
    radial-gradient(circle at 94% 18%, rgba(255,214,166,0.34), transparent 9rem),
    repeating-linear-gradient(132deg, rgba(223,141,70,0.10) 0 1px, transparent 1px 16px),
    rgba(255,253,247,0.94);
}
body.realm-intake .growth-template {
  background:
    radial-gradient(circle at 92% 16%, rgba(210,168,79,0.26), transparent 9rem),
    linear-gradient(135deg, rgba(210,168,79,0.12) 0 1px, transparent 1px 28px),
    rgba(255,253,247,0.94);
}
body.realm-intake .systems-template {
  background:
    radial-gradient(circle at 94% 18%, rgba(101,196,179,0.26), transparent 9rem),
    linear-gradient(90deg, rgba(19,100,106,0.07) 1px, transparent 1px),
    linear-gradient(rgba(19,100,106,0.07) 1px, transparent 1px),
    rgba(255,253,247,0.94);
  background-size: auto, 30px 30px, 30px 30px, auto;
}
body.realm-intake .drafting-template {
  background:
    radial-gradient(circle at 94% 18%, rgba(159,182,111,0.26), transparent 9rem),
    linear-gradient(90deg, rgba(89,111,106,0.06) 1px, transparent 1px),
    linear-gradient(rgba(89,111,106,0.06) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 47%, rgba(159,182,111,0.12) 47% 48%, transparent 48%),
    rgba(255,253,247,0.94);
  background-size: auto, 26px 26px, 26px 26px, 38px 38px, auto;
}
body.realm-intake .intake-detail .eyebrow {
  color: color-mix(in srgb, var(--realm-3) 80%, #6a5b35);
}
body.realm-intake #growth-hub .eyebrow {
  color: #e0bd68;
}
body.realm-intake .cta {
  background:
    radial-gradient(circle at 14% 20%, rgba(209,162,78,0.14), transparent 22rem),
    #f6efe1;
}

.project-hero {
  padding: 86px 0;
}
.project-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: center;
}
.project-hero-copy h1 {
  max-width: 760px;
  font-size: 78px;
}
.project-hero-image {
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--realm-3) 42%, transparent);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 28px 70px rgba(0,0,0,0.22);
}
.project-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.project-overview {
  background: var(--realm);
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.project-gallery figure {
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--realm-3) 34%, var(--pe-line));
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22,32,27,0.08);
}
.project-gallery .gallery-feature {
  grid-column: span 2;
}
.project-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e9e4d9;
}
.project-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--pe-muted);
  font-size: 13px;
}

.lighting-gallery-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(223,141,70,0.16), transparent 22rem),
    linear-gradient(180deg, #f5eadc, #fff7ed);
}
.lighting-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.lighting-gallery-card {
  margin: 0;
  border: 1px solid rgba(111,61,39,0.24);
  border-radius: 22px;
  overflow: hidden;
  background: #1b1410;
  color: #fff5e8;
  box-shadow: 0 24px 54px rgba(64,35,22,0.16);
}
.lighting-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #201713;
  border-bottom: 1px solid rgba(223,141,70,0.26);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.lighting-gallery-card img.image-contain {
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #f8f4ee, #efe8dc);
}
.lighting-gallery-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}
.lighting-gallery-card:hover img.image-contain {
  transform: scale(1.01);
}
.lighting-gallery-card figcaption {
  min-height: 250px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 100%, rgba(223,141,70,0.22), transparent 9rem),
    linear-gradient(180deg, #1b1410, #2a1b14);
}
.lighting-gallery-card .num {
  display: block;
  margin-bottom: 18px;
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 30px;
  font-style: italic;
}
.lighting-gallery-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.02;
}
.lighting-gallery-card p {
  margin: 0;
  color: rgba(255,245,232,0.72);
  font-size: 14px;
}
.lighting-showcase-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.lighting-showcase-link {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: space-between;
  gap: 18px 24px;
  padding: 28px;
  border: 1px solid rgba(226,138,66,0.36);
  border-radius: 24px;
  overflow: hidden;
  color: #fff5e8;
  background:
    radial-gradient(circle at 88% 20%, rgba(242,180,94,0.20), transparent 9rem),
    linear-gradient(135deg, #1b1410, #3b2017);
  box-shadow: 0 26px 70px rgba(63,32,21,0.20);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.lighting-showcase-link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    repeating-linear-gradient(132deg, transparent 0 16px, rgba(242,180,94,0.16) 16px 17px),
    radial-gradient(circle at 100% 100%, transparent 0 4rem, rgba(242,180,94,0.30) 4.05rem 4.12rem, transparent 4.18rem);
  pointer-events: none;
}
.lighting-showcase-link:hover,
.lighting-showcase-link:focus-visible {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(242,180,94,0.72);
  box-shadow: 0 34px 82px rgba(63,32,21,0.28);
}
.lighting-showcase-link > * {
  position: relative;
  z-index: 1;
}
.lighting-showcase-link .num {
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  line-height: 1;
}
.showcase-copy b {
  display: block;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
}
.showcase-copy em {
  display: block;
  max-width: 520px;
  margin-top: 10px;
  color: rgba(255,245,232,0.72);
  font-style: normal;
  font-size: 15px;
}
.showcase-action {
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(242,180,94,0.60);
  border-radius: 999px;
  color: #1b1410;
  background: var(--realm-3);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lighting-showcase-link.pattern-collection {
  background:
    radial-gradient(circle at 88% 20%, rgba(217,101,87,0.20), transparent 9rem),
    linear-gradient(135deg, #20100d, #482019);
}

.flow-light-page {
  --realm: #1a100c;
  --realm-2: #5e2d20;
  --realm-3: #e28a42;
}
.flow-light-page .flow-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(242,180,94,0.24), transparent 22rem),
    radial-gradient(circle at 18% 80%, rgba(217,101,87,0.16), transparent 22rem),
    linear-gradient(135deg, #1a100c, #3b2017 58%, #0f0c0a);
}
.flow-hero-image {
  position: relative;
  margin: 0;
  border: 1px solid rgba(242,180,94,0.42);
  border-radius: 30px;
  overflow: hidden;
  background: #201713;
  box-shadow: 0 34px 88px rgba(0,0,0,0.34);
}
.flow-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(242,180,94,0.12), transparent 16rem),
    linear-gradient(180deg, transparent 42%, rgba(20,12,8,0.58));
  pointer-events: none;
}
.flow-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.flow-hero-image figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  color: rgba(255,245,232,0.86);
  background: rgba(20,12,8,0.58);
  backdrop-filter: blur(10px);
  font-size: 13px;
}
.flow-intro {
  background:
    radial-gradient(circle at 88% 10%, rgba(226,138,66,0.12), transparent 20rem),
    #fff7ed;
}
.flow-intro .split-inner {
  align-items: center;
}
.flow-intro h2,
.flow-enquiry h2 {
  margin: 0;
  color: #1d140f;
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
}
.flow-intro p,
.flow-enquiry p {
  color: #5f554c;
  font-size: 18px;
}
.flow-diagram {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(226,138,66,0.28);
  border-radius: 28px;
  background:
    repeating-linear-gradient(132deg, transparent 0 18px, rgba(226,138,66,0.08) 18px 19px),
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,247,237,0.78));
  box-shadow: 0 26px 70px rgba(63,32,21,0.10);
}
.flow-diagram span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(226,138,66,0.34);
  border-radius: 999px;
  color: #1d140f;
  background: rgba(255,255,255,0.72);
  font-weight: 850;
}
.flow-diagram i {
  width: 1px;
  height: 18px;
  margin-left: 28px;
  background: linear-gradient(180deg, rgba(226,138,66,0.64), transparent);
}
.flow-use-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}
.flow-use-grid article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(226,138,66,0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 100%, rgba(226,138,66,0.12), transparent 6rem),
    rgba(255,253,247,0.78);
}
.flow-use-grid span {
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
}
.flow-use-grid b {
  color: #1d140f;
  font-size: 14px;
}
.flow-proof {
  background:
    radial-gradient(circle at 18% 18%, rgba(226,138,66,0.11), transparent 22rem),
    linear-gradient(180deg, #fffaf1, #f4ebdc);
}
.flow-proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}
.flow-proof-card {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(226,138,66,0.28);
  border-radius: 28px;
  background: #17100d;
  box-shadow: 0 24px 70px rgba(57,34,22,0.16);
}
.flow-proof-card.large {
  grid-row: span 2;
  min-height: 700px;
}
.flow-proof-card.wide {
  grid-column: span 2;
}
.flow-proof-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}
.flow-proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(17,10,7,0.86));
  pointer-events: none;
}
.flow-proof-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fffaf1;
}
.flow-proof-card figcaption span {
  display: block;
  margin-bottom: 8px;
  color: #f2b45e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.flow-proof-card figcaption b {
  display: block;
  max-width: 24rem;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 0.98;
}
.flow-proof-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.06);
}
.flow-trial {
  background:
    radial-gradient(circle at 82% 18%, rgba(226,138,66,0.22), transparent 20rem),
    linear-gradient(135deg, #1a100c, #482019);
}
.flow-trial .eyebrow::before {
  background: currentColor;
}
.flow-price-panel {
  padding: 30px;
  border: 1px solid rgba(242,180,94,0.34);
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 28px 76px rgba(0,0,0,0.22);
}
.flow-price-panel h3 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 34px;
}
.price-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.price-line span {
  color: rgba(255,245,232,0.72);
}
.price-line b {
  color: var(--realm-3);
  white-space: nowrap;
}
.flow-options {
  background:
    radial-gradient(circle at 10% 18%, rgba(226,138,66,0.12), transparent 22rem),
    #f5eadc;
}
.flow-options .realm-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flow-options .realm-card {
  min-height: 220px;
}
.light-studio {
  background:
    radial-gradient(circle at 80% 12%, rgba(226,138,66,0.16), transparent 26rem),
    radial-gradient(circle at 18% 86%, rgba(242,180,94,0.12), transparent 26rem),
    linear-gradient(180deg, #fff8ee 0%, #f2dfcb 100%);
}
.light-studio-grid {
  --studio-glow: 255,181,88;
  --studio-brightness: 58;
  --studio-diffusion: 64;
  --studio-warmth: 76;
  --studio-pattern: 58;
  --studio-fixture-x: 50%;
  --studio-fixture-y: 46%;
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr) minmax(260px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}
.light-scene-card,
.light-controls,
.light-output {
  border: 1px solid rgba(226,138,66,0.24);
  border-radius: 28px;
  background: rgba(255,253,247,0.82);
  box-shadow: 0 30px 80px rgba(63,32,21,0.12);
}
.light-scene-card {
  padding: 18px;
}
.light-scene {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(29,20,15,0.12);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(29,20,15,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(29,20,15,0.04) 1px, transparent 1px),
    linear-gradient(135deg, #f6eadc 0%, #efe0ce 54%, #d9c2a7 100%);
  background-size: 34px 34px, 34px 34px, auto;
}
.studio-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  filter: saturate(0.98) contrast(0.98);
  transition: opacity 220ms ease;
  z-index: -2;
}
.light-scene.has-photo .studio-photo {
  opacity: 0.88;
}
.light-scene.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,12,9,0.04), rgba(22,12,9,0.16));
  z-index: -1;
}
.light-scene.has-photo .scene-wall,
.light-scene.has-photo .scene-floor,
.light-scene.has-photo .scene-window {
  opacity: 0;
}
.light-scene.has-photo .light-wash {
  opacity: 0.74;
}
.scene-photo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  color: #fff8ed;
  background: rgba(22,12,9,0.62);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scene-wall,
.scene-floor,
.scene-window {
  position: absolute;
  pointer-events: none;
}
.scene-wall {
  inset: 0 0 28%;
  background:
    radial-gradient(circle at 50% 48%, rgba(var(--studio-glow), calc(var(--studio-brightness) * 0.006)), transparent calc(12rem + var(--studio-diffusion) * 0.12rem)),
    linear-gradient(135deg, rgba(255,255,255,0.38), rgba(255,255,255,0.06));
}
.scene-floor {
  left: -8%;
  right: -8%;
  bottom: -18%;
  height: 42%;
  transform: perspective(480px) rotateX(58deg);
  background:
    repeating-linear-gradient(90deg, rgba(87,58,41,0.32) 0 1px, transparent 1px 64px),
    linear-gradient(90deg, rgba(87,58,41,0.24), rgba(201,151,90,0.22));
}
.scene-window {
  top: 34px;
  right: 34px;
  width: 112px;
  height: 150px;
  border: 1px solid rgba(29,20,15,0.28);
  border-radius: 999px 999px 12px 12px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(29,20,15,0.28) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(29,20,15,0.24) 49% 51%, transparent 52%),
    linear-gradient(180deg, rgba(90,133,151,0.34), rgba(242,180,94,0.24));
}
.flow-fixture {
  position: absolute;
  left: var(--studio-fixture-x);
  top: var(--studio-fixture-y);
  width: min(calc(48% + var(--studio-brightness) * 0.22%), 390px);
  aspect-ratio: 3.7 / 1;
  transform: translate(-50%, -50%);
  border: 10px solid rgba(70,42,29,0.78);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, transparent 0 calc(10px + var(--studio-pattern) * 0.14px), rgba(255,255,255,0.72) calc(10px + var(--studio-pattern) * 0.14px) calc(14px + var(--studio-pattern) * 0.18px)),
    rgba(52,31,22,0.72);
  box-shadow:
    0 0 calc(var(--studio-brightness) * 0.72px) rgba(var(--studio-glow), 0.72),
    inset 0 0 34px rgba(var(--studio-glow), 0.42);
  cursor: grab;
  touch-action: none;
  z-index: 2;
  transition: box-shadow 180ms ease, filter 180ms ease;
}
.flow-fixture:hover,
.flow-fixture:focus-visible {
  filter: brightness(1.08);
  outline: 2px solid rgba(255,255,255,0.72);
  outline-offset: 7px;
}
.flow-fixture.is-dragging {
  cursor: grabbing;
  filter: brightness(1.16);
}
.flow-fixture span {
  position: absolute;
  inset: 26%;
  border: 2px solid rgba(255,255,255,0.52);
  border-radius: 999px;
}
.light-wash {
  position: absolute;
  left: var(--studio-fixture-x);
  top: var(--studio-fixture-y);
  width: calc(180px + var(--studio-brightness) * 5px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--studio-glow), 0.72), rgba(var(--studio-glow), 0.28) 34%, transparent 70%);
  filter: blur(calc(var(--studio-diffusion) * 0.18px));
  mix-blend-mode: screen;
  transition: left 120ms ease, top 120ms ease, width 180ms ease, filter 180ms ease;
}
.scene-position-note {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  max-width: 150px;
  color: rgba(255,248,237,0.84);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}
.scene-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 18px;
  color: #fff8ed;
  background: rgba(22,12,9,0.64);
  backdrop-filter: blur(10px);
}
.scene-label span,
.scene-label b {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.photo-loader {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(226,138,66,0.34);
  border-radius: 999px;
  color: #1d140f;
  font-weight: 900;
  cursor: pointer;
}
.photo-loader input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.studio-note {
  margin: 10px 4px 0;
  color: rgba(95,85,76,0.78);
  font-size: 13px;
  line-height: 1.5;
}
.light-controls,
.light-output {
  padding: 24px;
}
.control-group {
  margin-bottom: 22px;
}
.control-group h3,
.light-output h3 {
  margin: 0 0 12px;
  color: #1d140f;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.08;
}
.preset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.studio-chip {
  min-height: 44px;
  border: 1px solid rgba(95,85,76,0.18);
  border-radius: 999px;
  color: #1d140f;
  background: #fffaf4;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.studio-chip:hover,
.studio-chip.active {
  transform: translateY(-2px);
  border-color: rgba(226,138,66,0.74);
  background: #f0a04e;
}
.range-stack {
  display: grid;
  gap: 14px;
  padding: 18px 0;
  border-block: 1px solid rgba(95,85,76,0.14);
}
.measurement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}
.measurement-grid label {
  position: relative;
  display: grid;
  gap: 7px;
  color: #5f554c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.measurement-grid input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(95,85,76,0.22);
  border-radius: 14px;
  padding: 12px 32px 12px 12px;
  color: #1d140f;
  background: #fffaf4;
  font: inherit;
  letter-spacing: 0;
}
.measurement-grid span {
  position: absolute;
  right: 12px;
  bottom: 13px;
  color: rgba(95,85,76,0.62);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.range-row,
.studio-select,
.studio-description {
  display: grid;
  gap: 9px;
  color: #5f554c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.range-row input {
  width: 100%;
  accent-color: #e28a42;
}
.studio-select,
.studio-description {
  margin-top: 18px;
}
.studio-select select,
.studio-description textarea {
  width: 100%;
  border: 1px solid rgba(95,85,76,0.22);
  border-radius: 14px;
  padding: 13px 14px;
  color: #1d140f;
  background: #fffaf4;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.light-output {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    radial-gradient(circle at 78% 6%, rgba(var(--studio-glow), 0.16), transparent 12rem),
    rgba(255,253,247,0.9);
}
.light-output .eyebrow {
  margin: 0;
}
.fit-meter {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(226,138,66,0.22);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(var(--studio-glow),0.16), rgba(255,255,255,0.3));
}
.fit-meter span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: #5f554c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fit-meter b {
  color: #1d140f;
  font-size: 24px;
  letter-spacing: 0;
}
.fit-meter i {
  position: relative;
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(95,85,76,0.12);
}
.fit-meter em {
  position: absolute;
  inset: 0 auto 0 0;
  width: 82%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e28a42, rgb(var(--studio-glow)));
  transition: width 180ms ease;
}
.output-list {
  display: grid;
  gap: 10px;
}
.output-list div {
  padding: 14px 0;
  border-top: 1px solid rgba(95,85,76,0.14);
}
.output-list span {
  display: block;
  color: #8a6b43;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.output-list b {
  display: block;
  margin-top: 4px;
  color: #1d140f;
}
.light-output p {
  margin: 0;
  color: #5f554c;
  line-height: 1.65;
}
.studio-insight {
  padding: 14px 16px;
  border-left: 4px solid rgb(var(--studio-glow));
  border-radius: 14px;
  color: #4f4338;
  background: rgba(255,250,244,0.74);
  font-size: 14px;
  line-height: 1.55;
}
.light-output .btn {
  margin-top: auto;
}
.flow-trial-card {
  background:
    radial-gradient(circle at 84% 14%, rgba(242,180,94,0.18), transparent 10rem),
    repeating-linear-gradient(132deg, transparent 0 16px, rgba(226,138,66,0.08) 16px 17px),
    rgba(255,253,247,0.92);
}
.flow-trial-card .hero-actions {
  margin-top: 20px;
}
.flow-trial-card .btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 12px;
}
.flow-enquiry {
  background:
    radial-gradient(circle at 82% 20%, rgba(226,138,66,0.12), transparent 22rem),
    #fff7ed;
}
.flow-enquiry-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}
.flow-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(226,138,66,0.32);
  border-radius: 28px;
  background: rgba(255,253,247,0.86);
  box-shadow: 0 26px 70px rgba(63,32,21,0.10);
}
.flow-form label {
  display: grid;
  gap: 7px;
  color: #5f554c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.flow-form label.full,
.flow-form button {
  grid-column: 1 / -1;
}
.flow-form input,
.flow-form textarea {
  width: 100%;
  border: 1px solid rgba(95,85,76,0.22);
  border-radius: 14px;
  padding: 13px 14px;
  color: #1d140f;
  background: #fffaf4;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.flow-form input:focus,
.flow-form textarea:focus {
  outline: 2px solid rgba(226,138,66,0.32);
  border-color: rgba(226,138,66,0.72);
}
.flow-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.flow-form .form-note {
  margin: 2px 0 0;
  color: rgba(95,85,76,0.78);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

body.realm-lighting .hero {
  background:
    radial-gradient(circle at 86% 20%, rgba(242,180,94,0.34), transparent 20rem),
    radial-gradient(circle at 12% 82%, rgba(217,101,87,0.18), transparent 24rem),
    linear-gradient(135deg, #160c09 0%, #32170f 44%, #7b3a25 100%);
}
body.realm-lighting .hero::after {
  width: 42rem;
  height: 42rem;
  right: -16rem;
  border-color: rgba(242,180,94,0.34);
  box-shadow: inset 0 0 80px rgba(226,138,66,0.12);
}
.lighting-hero-visual {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}
.lighting-hero-visual::before {
  content: "";
  position: absolute;
  inset: 44px 40px 54px 18px;
  border: 1px solid rgba(242,180,94,0.26);
  border-radius: 999px;
  transform: rotate(-11deg);
  box-shadow: 0 0 80px rgba(226,138,66,0.20);
  z-index: -1;
}
.lighting-hero-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,241,223,0.22);
  background: #160c09;
  box-shadow: 0 32px 82px rgba(0,0,0,0.36);
}
.lighting-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-frame {
  inset: 22px 82px 70px 10px;
  border-radius: 42px;
}
.top-frame {
  right: 0;
  top: 0;
  width: 210px;
  height: 178px;
  border-radius: 24px;
}
.lower-frame {
  right: 22px;
  bottom: 12px;
  width: 240px;
  height: 232px;
  border-radius: 34px;
  background: #fff4e8;
}
.lower-frame img {
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #fff8ef, #efe5d8);
}
.light-note {
  position: absolute;
  left: 42px;
  bottom: 28px;
  max-width: 270px;
  border: 1px solid rgba(255,241,223,0.22);
  border-radius: 20px;
  padding: 18px;
  background: rgba(22,12,9,0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.light-note span {
  display: block;
  color: var(--lighting-amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.light-note b {
  display: block;
  margin-top: 6px;
  color: #fff1df;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.05;
}
.lighting-atelier {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(226,138,66,0.16), transparent 24rem),
    linear-gradient(180deg, #fff3e4, #f1d8c1);
}
.atelier-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
}
.atelier-inner h2 {
  margin: 0;
  color: #24100c;
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 0.98;
}
.atelier-inner p {
  max-width: 640px;
  color: #654033;
  font-size: 17px;
}
.atelier-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.atelier-cue {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 230px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(72,32,25,0.16);
  border-radius: 28px;
  padding: 24px;
  color: #fff1df;
  box-shadow: 0 24px 62px rgba(78,45,28,0.16);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.atelier-cue::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26,12,8,0.03) 18%, rgba(26,12,8,0.82) 100%);
}
.atelier-cue-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.76;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 500ms ease, opacity 240ms ease, filter 240ms ease;
}
.atelier-cue:hover,
.atelier-cue:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 30px 76px rgba(78,45,28,0.26);
}
.atelier-cue:hover .atelier-cue-image,
.atelier-cue:focus-within .atelier-cue-image {
  transform: scale(1.045);
  opacity: 0.9;
  filter: saturate(1) contrast(1.06);
}
.atelier-cue:first-child {
  grid-row: span 2;
  min-height: 476px;
}
.atelier-cue.copper {
  background:
    radial-gradient(circle at 58% 22%, rgba(255,221,167,0.3), transparent 12rem),
    linear-gradient(145deg, rgba(76,32,21,0.68), rgba(183,91,50,0.52) 58%, rgba(227,157,83,0.42));
}
.atelier-cue.amber {
  background:
    radial-gradient(circle at 85% 22%, rgba(255,246,213,0.34), transparent 9rem),
    linear-gradient(145deg, rgba(115,64,30,0.58), rgba(226,164,79,0.42));
}
.atelier-cue.ink {
  background:
    radial-gradient(circle at 70% 10%, rgba(226,138,66,0.24), transparent 9rem),
    linear-gradient(145deg, rgba(22,12,9,0.74), rgba(72,32,25,0.58));
}
.atelier-cue span {
  color: rgba(255,241,223,0.72);
  font-family: var(--font-serif);
  font-size: 36px;
  font-style: italic;
}
.atelier-cue b {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
}
.atelier-cue p {
  margin: 12px 0 0;
  color: rgba(255,241,223,0.78);
  font-size: 14px;
}
.lighting-brief-strip {
  background:
    linear-gradient(90deg, rgba(26,16,12,0.94), rgba(72,32,25,0.94)),
    #1a100c;
  color: #fff1df;
}
.brief-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.brief-step {
  border: 1px solid rgba(255,241,223,0.16);
  border-radius: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at 92% 12%, rgba(226,138,66,0.18), transparent 10rem),
    rgba(255,255,255,0.05);
}
.brief-step span {
  color: var(--lighting-amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brief-step b {
  display: block;
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
}
.brief-step p {
  margin: 12px 0 0;
  color: rgba(255,241,223,0.72);
}

.split-band {
  background: var(--realm);
  color: #fff;
  padding: 92px 0;
}
.split-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.split-inner h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.05;
}
.split-inner p { color: rgba(255,255,255,0.72); font-size: 17px; }
.stat-grid {
  display: grid;
  gap: 14px;
}
.stat {
  border: 1px solid rgba(255,255,255,0.16);
  border-left: 4px solid var(--realm-3);
  border-radius: 14px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
}
.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.66);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.method-links {
  display: grid;
  gap: 16px;
}
.method-link {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 128px;
  padding: 18px 20px;
  border: 1px solid rgba(101,196,179,0.28);
  border-left: 5px solid var(--realm-3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(101,196,179,0.16), transparent 9rem),
    rgba(255,255,255,0.06);
  color: #fff;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.method-link::after {
  content: "";
  position: absolute;
  inset: auto 20px 14px 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(101,196,179,0.74), transparent);
  opacity: 0.65;
}
.method-link:hover {
  transform: translateY(-3px);
  border-color: rgba(101,196,179,0.62);
  background:
    radial-gradient(circle at 88% 18%, rgba(101,196,179,0.24), transparent 10rem),
    rgba(255,255,255,0.09);
  box-shadow: 0 22px 54px rgba(0,0,0,0.24);
}
.method-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: rgba(101,196,179,0.10);
  box-shadow: inset 0 0 0 1px rgba(101,196,179,0.28);
}
.method-icon svg {
  width: 68px;
  height: 52px;
}
.method-icon path,
.method-icon rect,
.method-icon circle {
  fill: none;
  stroke: var(--realm-3);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.method-copy b {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 0.95;
}
.method-copy span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.method-copy em {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,0.64);
  font-size: 14px;
  font-style: normal;
}
.method-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(101,196,179,0.32);
  border-radius: 999px;
  color: var(--realm-3);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.method-arrow::after {
  content: " ->";
}

body.realm-systems .hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(101,196,179,0.28), transparent 24rem),
    radial-gradient(circle at 18% 92%, rgba(151,209,199,0.14), transparent 28rem),
    linear-gradient(135deg, #061e22 0%, #08343a 48%, #12636b 100%);
}
.systems-console {
  border: 1px solid rgba(101,196,179,0.24);
  border-radius: 30px;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(101,196,179,0.08) 1px, transparent 1px),
    linear-gradient(rgba(101,196,179,0.08) 1px, transparent 1px),
    rgba(4,26,30,0.64);
  background-size: 28px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
}
.console-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(101,196,179,0.18);
}
.console-top span {
  color: rgba(236,255,251,0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.console-top b {
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 28px;
}
.console-flow {
  position: relative;
  min-height: 170px;
  margin: 24px 0;
}
.console-flow::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(101,196,179,0.72), transparent);
}
.console-flow i {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  border: 1px solid rgba(101,196,179,0.38);
  background: rgba(236,255,251,0.08);
  box-shadow: 0 0 38px rgba(101,196,179,0.16);
}
.console-flow i:nth-child(1) { left: 4%; top: 18%; }
.console-flow i:nth-child(2) { left: 34%; top: 48%; }
.console-flow i:nth-child(3) { right: 18%; top: 12%; }
.console-flow i:nth-child(4) { right: 4%; bottom: 4%; }
.console-stack {
  display: grid;
  gap: 10px;
}
.console-stack div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(101,196,179,0.18);
  border-radius: 16px;
  background: rgba(236,255,251,0.06);
}
.console-stack b {
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 24px;
}
.console-stack span {
  color: rgba(236,255,251,0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tool-lab-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.tool-card {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(8,43,47,0.14);
  border-top: 4px solid var(--realm-3);
  border-radius: 26px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(101,196,179,0.12), transparent 11rem),
    #ffffff;
  color: #092a2e;
  box-shadow: 0 24px 62px rgba(8,43,47,0.10);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 76px rgba(8,43,47,0.16);
}
.tool-card.paralign { border-top-color: #8aa7ff; }
.tool-card.life-capsule { border-top-color: #9fb66f; }
.tool-card.delivery { border-top-color: #d2a84f; }
.tool-card.rfi-radar { border-top-color: #efb85b; }
.tool-card.quote-pulse { border-top-color: #d97843; }
.tool-card.proof-pack { border-top-color: #5f96c8; }
.tool-graphic {
  position: relative;
  height: 128px;
  margin: -4px -4px 26px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,43,47,0.08) 1px, transparent 1px),
    linear-gradient(rgba(8,43,47,0.08) 1px, transparent 1px),
    linear-gradient(135deg, #eafffb, #dcefe9);
  background-size: 24px 24px, 24px 24px, auto;
}
.tool-graphic span {
  position: absolute;
  display: block;
  border: 2px solid #13646a;
  background: rgba(255,255,255,0.72);
}
.tool-graphic:not(.orbit):not(.capsule):not(.gridlines):not(.radar):not(.pulse):not(.proof) span:nth-child(1) {
  width: 70px; height: 34px; left: 18px; top: 24px; border-radius: 999px;
}
.tool-graphic:not(.orbit):not(.capsule):not(.gridlines):not(.radar):not(.pulse):not(.proof) span:nth-child(2) {
  width: 112px; height: 12px; left: 76px; top: 58px; border-radius: 999px;
}
.tool-graphic:not(.orbit):not(.capsule):not(.gridlines):not(.radar):not(.pulse):not(.proof) span:nth-child(3) {
  width: 72px; height: 34px; right: 18px; bottom: 24px; border-radius: 999px;
}
.tool-graphic.orbit {
  background: radial-gradient(circle at 50% 50%, rgba(138,167,255,0.18), transparent 5rem), #eef2ff;
}
.tool-graphic.orbit span {
  border-color: #526bc7;
  border-radius: 50%;
  background: rgba(255,255,255,0.62);
}
.tool-graphic.orbit span:nth-child(1) { width: 92px; height: 92px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.tool-graphic.orbit span:nth-child(2) { width: 28px; height: 28px; left: 28px; top: 26px; }
.tool-graphic.orbit span:nth-child(3) { width: 36px; height: 36px; right: 32px; bottom: 24px; }
.tool-graphic.capsule {
  background: radial-gradient(circle at 50% 35%, rgba(159,182,111,0.28), transparent 5rem), #f2f5e9;
}
.tool-graphic.capsule span {
  border-color: #6d8547;
  border-radius: 24px;
}
.tool-graphic.capsule span:nth-child(1) { width: 76px; height: 92px; left: 30px; top: 18px; border-radius: 999px 999px 24px 24px; }
.tool-graphic.capsule span:nth-child(2) { width: 76px; height: 92px; right: 30px; top: 18px; border-radius: 24px 24px 999px 999px; }
.tool-graphic.capsule span:nth-child(3) { width: 50px; height: 50px; left: 50%; top: 42px; transform: translateX(-50%); border-radius: 50%; }
.tool-graphic.gridlines span {
  border-color: #c49b4d;
  border-radius: 14px;
}
.tool-graphic.gridlines span:nth-child(1) { width: 70px; height: 42px; left: 18px; top: 20px; }
.tool-graphic.gridlines span:nth-child(2) { width: 70px; height: 42px; right: 18px; top: 20px; }
.tool-graphic.gridlines span:nth-child(3) { width: calc(100% - 36px); height: 36px; left: 18px; bottom: 20px; }
.tool-graphic.radar {
  background:
    radial-gradient(circle at 50% 50%, rgba(239,184,91,0.24), transparent 5rem),
    linear-gradient(90deg, rgba(197,139,45,0.08) 1px, transparent 1px),
    linear-gradient(rgba(197,139,45,0.08) 1px, transparent 1px),
    #fff7e8;
  background-size: auto, 22px 22px, 22px 22px, auto;
}
.tool-graphic.radar span {
  border-color: #bd7f26;
  border-radius: 50%;
  background: rgba(255,255,255,0.48);
}
.tool-graphic.radar span:nth-child(1) { width: 88px; height: 88px; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.tool-graphic.radar span:nth-child(2) { width: 142px; height: 142px; left: 50%; top: 50%; transform: translate(-50%, -50%); opacity: 0.48; }
.tool-graphic.radar span:nth-child(3) { width: 12px; height: 78px; left: 50%; top: 18px; transform: translateX(-50%) rotate(38deg); border-radius: 999px; transform-origin: 50% 100%; background: rgba(239,184,91,0.28); }
.tool-graphic.pulse {
  background:
    linear-gradient(90deg, rgba(217,120,67,0.10) 1px, transparent 1px),
    linear-gradient(rgba(217,120,67,0.10) 1px, transparent 1px),
    linear-gradient(135deg, #fff2ea, #f9ded0);
  background-size: 22px 22px, 22px 22px, auto;
}
.tool-graphic.pulse span {
  border-color: #d97843;
  background: rgba(255,255,255,0.66);
}
.tool-graphic.pulse span:nth-child(1) { width: calc(100% - 48px); height: 42px; left: 24px; top: 44px; border-width: 0 0 3px; border-radius: 0; transform: skewX(-18deg); }
.tool-graphic.pulse span:nth-child(2) { width: 34px; height: 34px; left: 30px; top: 30px; border-radius: 50%; }
.tool-graphic.pulse span:nth-child(3) { width: 84px; height: 42px; right: 30px; bottom: 26px; border-radius: 14px; }
.tool-graphic.proof {
  background:
    radial-gradient(circle at 70% 34%, rgba(95,150,200,0.18), transparent 5rem),
    linear-gradient(90deg, rgba(95,150,200,0.08) 1px, transparent 1px),
    linear-gradient(rgba(95,150,200,0.08) 1px, transparent 1px),
    #eef7ff;
  background-size: auto, 22px 22px, 22px 22px, auto;
}
.tool-graphic.proof span {
  border-color: #4f86b7;
  background: rgba(255,255,255,0.70);
}
.tool-graphic.proof span:nth-child(1) { width: 76px; height: 92px; left: 32px; top: 18px; border-radius: 14px; }
.tool-graphic.proof span:nth-child(2) { width: 98px; height: 62px; right: 32px; top: 28px; border-radius: 16px; }
.tool-graphic.proof span:nth-child(3) { width: 44px; height: 44px; left: 50%; bottom: 18px; transform: translateX(-50%); border-radius: 50%; background: rgba(95,150,200,0.18); }
.tool-card .num {
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 30px;
  font-style: italic;
}
.tool-card h3 {
  margin: 18px 0 12px;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
}
.tool-card p {
  margin: 0;
  color: rgba(9,42,46,0.72);
  font-size: 14px;
}
.concept-board {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--realm-3) 32%, rgba(8,43,47,0.08));
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(8,43,47,0.055) 1px, transparent 1px),
    linear-gradient(rgba(8,43,47,0.055) 1px, transparent 1px),
    color-mix(in srgb, var(--realm-3) 7%, #ffffff);
  background-size: 18px 18px, 18px 18px, auto;
  overflow: hidden;
}
.concept-board::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  right: -40px;
  bottom: -42px;
  border: 1px solid color-mix(in srgb, var(--realm-3) 42%, transparent);
  border-radius: 50%;
}
.concept-board span {
  align-self: center;
  color: #13646a;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.concept-board b {
  align-self: center;
  color: #092a2e;
  font-size: 12px;
  line-height: 1.2;
}
.concept-board i {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--realm-3) 62%, transparent), transparent);
}
.tool-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(8,43,47,0.10);
}
.tool-meta span {
  display: block;
  color: #13646a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tool-meta b {
  display: block;
  margin-top: 6px;
  color: #092a2e;
  font-size: 13px;
}
.systems-tool-map {
  background:
    radial-gradient(circle at 12% 22%, rgba(101,196,179,0.14), transparent 20rem),
    linear-gradient(180deg, #eef8f4, #dcebe6);
}
.tool-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr) 80px minmax(0, 1fr);
  align-items: stretch;
}
.tool-map-node {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(8,43,47,0.16);
  border-top: 4px solid var(--realm-3);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at 86% 16%, rgba(101,196,179,0.16), transparent 9rem),
    linear-gradient(90deg, rgba(8,43,47,0.045) 1px, transparent 1px),
    linear-gradient(rgba(8,43,47,0.045) 1px, transparent 1px),
    #fff;
  background-size: auto, 28px 28px, 28px 28px, auto;
  color: #092a2e;
  box-shadow: 0 24px 62px rgba(8,43,47,0.10);
  overflow: hidden;
}
.tool-map-node::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 122px;
  height: 122px;
  border: 1px solid color-mix(in srgb, var(--realm-3) 44%, transparent);
  border-radius: 50%;
}
.tool-map-node > * {
  position: relative;
  z-index: 1;
}
.tool-map-node.active {
  background:
    radial-gradient(circle at 82% 16%, rgba(101,196,179,0.24), transparent 11rem),
    #082b2f;
  color: #ecfffb;
}
.tool-map-node.build-step {
  border-top-color: #65c4b3;
  background:
    radial-gradient(circle at 86% 16%, rgba(101,196,179,0.20), transparent 9rem),
    linear-gradient(135deg, transparent 0 46%, rgba(101,196,179,0.12) 46% 47%, transparent 47%),
    #ffffff;
}
.tool-map-node.action-step {
  border-top-color: #d2a84f;
  background:
    radial-gradient(circle at 86% 16%, rgba(210,168,79,0.18), transparent 9rem),
    linear-gradient(90deg, rgba(210,168,79,0.09) 1px, transparent 1px),
    linear-gradient(rgba(101,196,179,0.07) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 24px 24px, 24px 24px, auto;
}
.tool-map-node span {
  color: var(--realm-3);
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
}
.tool-map-node b {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
}
.tool-map-node p {
  color: color-mix(in srgb, currentColor 76%, transparent);
}
.tool-map-line {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, rgba(8,43,47,0.18), rgba(101,196,179,0.76), rgba(8,43,47,0.18));
}

.cta {
  padding: 92px 0;
  text-align: center;
}
.cta-box {
  border-radius: 30px;
  padding: 56px 32px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--realm-3) 34%, transparent), transparent 18rem),
    linear-gradient(135deg, var(--realm), var(--realm-2));
}
.cta h2 {
  margin: 0 auto 16px;
  max-width: 760px;
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.02;
}
.cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.76);
}

.site-footer {
  background: #0b1712;
  color: rgba(255,255,255,0.64);
  padding: 38px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a { color: rgba(255,255,255,0.72); font-size: 13px; }

@media (max-width: 980px) {
  h1 { font-size: 64px; }
  .hero-lead { font-size: 19px; }
  .section-head h2,
  .split-inner h2,
  .cta h2,
  .atelier-inner h2 { font-size: 46px; }
  .project-hero-copy h1 { font-size: 62px; }
  .method-copy b { font-size: 34px; }
  .hero-inner,
  .project-hero-inner,
  .split-inner,
  .brand-system-inner,
  .atelier-inner,
  .light-studio-grid,
  .flow-enquiry-inner {
    grid-template-columns: 1fr;
  }
  .lighting-hero-visual {
    min-height: 460px;
  }
  .tool-lab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow-use-grid,
  .flow-options .realm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow-proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .flow-proof-card.large,
  .flow-proof-card.wide {
    grid-column: span 2;
    grid-row: auto;
    min-height: 460px;
  }
  .tool-map {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tool-map-line {
    width: 2px;
    height: 44px;
    justify-self: center;
  }
  .ecosystem-map {
    min-height: 520px;
  }
  .method-link {
    grid-template-columns: 84px 1fr;
  }
  .method-arrow {
    grid-column: 2;
    justify-self: start;
  }
  .project-meta-grid,
  .project-gallery,
  .lighting-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dashboard-grid,
  .technical-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brief-strip-inner {
    grid-template-columns: 1fr;
  }
  .signal-card {
    grid-template-columns: 1fr;
  }
  .signal-card b {
    text-align: left;
  }
  .realm-grid,
  .realm-grid.three,
  .realm-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-strip-inner,
  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-rail article:nth-child(2) {
    border-right: 0;
  }
  .proof-path {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px 18px;
  }
  .proof-path i {
    grid-column: 1 / -1;
  }
}

/* ---- Tablet / large phone: keep tile feel, tighten spacing ---- */
@media (max-width: 720px) {
  section[id] { scroll-margin-top: 120px; }
  .container { width: min(calc(100% - 24px), 1180px); }

  /* Top utility strip - very compact */
  .topline { font-size: 10px; letter-spacing: 0.08em; }
  .topline-inner {
    min-height: 28px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    gap: 8px;
    text-align: left;
  }
  .topline-inner span,
  .topline-inner a {
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Header - row layout, compact brand */
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 12px 0;
    gap: 10px;
    flex-wrap: wrap;
  }
  .brand { gap: 10px; }
  .brand-mark {
    width: 44px;
    height: 44px;
    padding: 0;
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--realm-3) 70%, transparent),
      0 0 0 4px color-mix(in srgb, var(--realm-3) 12%, transparent),
      0 10px 22px rgba(0,0,0,0.16);
  }
  .brand-mark::before { inset: -5px; }
  .brand-name { font-size: 20px; }
  .brand-tag { font-size: 10px; letter-spacing: 0.18em; }
  .site-nav {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 0 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav::-webkit-scrollbar {
    display: none;
  }
  .site-nav a,
  .back-main {
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 11px;
    text-align: center;
  }
  .site-nav a[href^="#"] {
    display: none;
  }
  body.realm-main .brand-system {
    display: none;
  }
  body.realm-main .proof-strip {
    display: none;
  }

  /* Hero - much tighter */
  .hero { padding: 32px 0 36px; }
  .hero-inner { min-width: 0; overflow: hidden; gap: 22px; }
  .project-hero-inner { min-width: 0; overflow: hidden; gap: 22px; }
  .hero-inner > div:first-child,
  .hero-copy-only,
  .project-hero-copy {
    width: 100%;
    max-width: 100%;
  }
  h1 {
    width: 100%;
    max-width: 100%;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: 0;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: normal;
    margin: 8px 0 12px;
  }
  .hero-lead { font-size: 15px; line-height: 1.5; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 12px;
    font-size: 13px;
  }
  .flow-hero-image figcaption {
    position: static;
    border-radius: 0;
    border-inline: 0;
    border-bottom: 0;
    background: rgba(20,12,8,0.72);
  }
  .flow-proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .flow-proof-card,
  .flow-proof-card.large,
  .flow-proof-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
    border-radius: 22px;
  }
  .flow-proof-card.large {
    min-height: 430px;
  }
  .flow-proof-card figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .flow-proof-card figcaption b {
    font-size: 24px;
  }
  .flow-intro h2,
  .flow-enquiry h2 {
    font-size: 28px;
    line-height: 1.1;
  }
  .flow-intro p,
  .flow-enquiry p {
    font-size: 14px;
    line-height: 1.5;
  }
  .flow-use-grid {
    gap: 10px;
  }
  .flow-use-grid article {
    min-height: 118px;
    padding: 14px;
  }
  .flow-price-panel {
    padding: 18px;
  }
  .flow-price-panel h3 {
    font-size: 24px;
  }
  .light-scene {
    min-height: 360px;
  }
  .scene-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .light-controls,
  .light-output,
  .light-scene-card {
    padding: 16px;
    border-radius: 22px;
  }
  .measurement-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .control-group h3,
  .light-output h3 {
    font-size: 24px;
  }
  .price-line {
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
  }
  .flow-form {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 20px;
  }

  /* Realm side panel */
  .realm-panel { padding: 16px; }
  .realm-panel h2 { font-size: 20px; margin: 0 0 12px; }
  .panel-list a,
  .panel-list div {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
    gap: 4px;
  }
  .panel-list a span,
  .panel-list div span { font-size: 13px; }
  .panel-list b { font-size: 10px; }

  /* Section heads - less air */
  .section, .split-band, .cta { padding: 36px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head h2 { font-size: 26px; line-height: 1.15; margin: 6px 0 8px; }
  .section-head p { font-size: 14px; line-height: 1.5; }

  /* KEEP 2-column tile feel on phones (was collapsing to 1) */
  .realm-grid,
  .realm-grid.three,
  .realm-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .proof-strip-inner,
  .process-rail {
    grid-template-columns: 1fr;
  }
  .proof-strip-inner div {
    min-height: 0;
    padding: 14px 16px;
    border-right: 1px solid color-mix(in srgb, var(--realm-3) 18%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--realm-3) 14%, transparent);
  }
  .proof-strip b {
    font-size: 22px;
  }
  .process-rail article {
    min-height: 0;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--realm-3) 22%, transparent);
  }
  .process-rail h3 {
    margin: 18px 0 10px;
    font-size: 22px;
  }
  .proof-path {
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
  }
  .path-num {
    font-size: 28px;
  }
  .proof-path b {
    font-size: 22px;
  }
  .proof-path p {
    font-size: 13px;
    line-height: 1.45;
  }
  .project-meta-grid,
  .project-gallery,
  .lighting-gallery,
  .home-lighting-grid,
  .atelier-board,
  .tool-lab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .lighting-hero-visual {
    min-height: 340px;
  }
  .main-frame { inset: 10px 66px 54px 0; border-radius: 28px; }
  .top-frame { width: 150px; height: 126px; border-radius: 18px; }
  .lower-frame { width: 156px; height: 150px; right: 8px; border-radius: 22px; }
  .light-note { left: 16px; bottom: 12px; max-width: 210px; padding: 14px; }
  .light-note b { font-size: 18px; }
  .atelier-inner { gap: 24px; }
  .atelier-inner h2 { font-size: 28px; line-height: 1.1; }
  .atelier-cue, .atelier-cue:first-child { min-height: 220px; }
  .atelier-cue { padding: 18px; }
  .atelier-cue b { font-size: 24px; }
  .brief-step { padding: 18px; }
  .systems-console { padding: 16px; }
  .console-flow { min-height: 130px; }
  .console-flow i { width: 52px; height: 52px; border-radius: 16px; }
  .tool-card { min-height: 0; padding: 16px; }
  .tool-graphic { height: 104px; }
  .tool-card h3 { font-size: 24px; }
  .tool-map-node { min-height: 0; padding: 20px; }
  .tool-map-node b { font-size: 24px; }
  .project-gallery .gallery-feature { grid-column: span 2; }

  /* Discipline / realm cards - more compact tiles */
  .discipline-card {
    min-height: 0;
    padding: 16px;
  }
  .discipline-card .card-top { margin-bottom: 8px; }
  .discipline-card .disc-logo { width: 42px !important; height: 42px !important; }
  .discipline-card .num { font-size: 20px; }
  .discipline-card .kicker { font-size: 10px; }
  .discipline-card h3 { font-size: 18px; line-height: 1.15; margin: 4px 0 6px; }
  .discipline-card p { font-size: 12px; line-height: 1.4; }

  .realm-card { padding: 16px; }
  .realm-card .num { font-size: 22px; }
  .realm-card h3 { font-size: 18px; line-height: 1.15; margin: 4px 0 6px; }
  .realm-card p, .realm-card li { font-size: 13px; line-height: 1.45; }

  /* Lighting gallery tiles - compact captions */
  .lighting-gallery-card figcaption { padding: 12px; gap: 4px; }
  .lighting-gallery-card .num { font-size: 20px; }
  .lighting-gallery-card h3 { font-size: 16px; margin: 2px 0 4px; }
  .lighting-gallery-card p { font-size: 12px; line-height: 1.4; }
  .lighting-showcase-links {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }
  .lighting-showcase-link {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
    gap: 12px;
  }
  .lighting-showcase-link .num {
    font-size: 22px;
  }
  .showcase-copy b {
    font-size: 24px;
  }
  .showcase-copy em {
    font-size: 13px;
  }
  .showcase-action {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 36px;
    font-size: 10px;
  }
  .home-light-card {
    min-height: 300px;
    border-radius: 18px;
  }
  .home-light-card span {
    padding-top: 170px;
    padding-inline: 16px;
    font-size: 22px;
  }
  .home-light-card b,
  .home-light-card.feature b {
    padding-inline: 16px;
    padding-bottom: 16px;
    font-size: 18px;
  }

  /* Split band + stat grid */
  .split-inner { gap: 22px; }
  .split-inner h2 { font-size: 24px; line-height: 1.15; }
  .split-inner p { font-size: 14px; }
  .stat-grid { gap: 10px; }
  .stat b { font-size: 22px; }
  .stat span { font-size: 10px; }
  .method-links { gap: 10px; }
  .method-link {
    min-height: 0;
    padding: 14px;
    gap: 12px;
  }
  .method-link::after {
    inset: auto 14px 10px 112px;
  }
  .method-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }
  .method-icon svg {
    width: 58px;
    height: 46px;
  }
  .method-copy b { font-size: 24px; }
  .method-copy span { font-size: 10px; }
  .method-copy em { font-size: 12px; }
  .method-arrow {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 10px;
  }

  /* CTA block */
  .cta-box { padding: 24px 18px; }
  .cta h2 { font-size: 22px; line-height: 1.15; margin: 0 0 8px; }
  .cta p { font-size: 14px; }

  /* Footer compact */
  .footer-inner { padding: 16px 0; gap: 10px; flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 10px; }
  .footer-nav a { font-size: 12px; }

  .ecosystem-map {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
    overflow: hidden;
  }
  .ecosystem-map::before,
  .ecosystem-map::after {
    display: none;
  }
  .ecosystem-core,
  .ecosystem-node {
    position: static;
    width: 100%;
    min-height: 138px;
    transform: none;
  }
  .ecosystem-core {
    grid-column: 1 / -1;
    order: -1;
    min-height: 118px;
    border-radius: 22px;
  }
  .ecosystem-node:hover,
  .ecosystem-node:focus-visible {
    transform: translateY(-4px) scale(1.02);
  }
}

/* ---- Phone: ultra-compact, single-column only where needed ---- */
@media (max-width: 440px) {
  .container { width: min(calc(100% - 20px), 1180px); }
  .hero { padding: 24px 0 28px; }
  h1 { font-size: 26px; }
  .hero-lead { font-size: 14px; }
  .hero-actions { grid-template-columns: 1fr; }
  .section, .split-band, .cta { padding: 28px 0; }
  .section-head h2 { font-size: 22px; }
  .realm-grid, .realm-grid.two, .realm-grid.three,
  .lighting-gallery, .project-meta-grid, .project-gallery,
  .home-lighting-grid, .atelier-board, .tool-lab-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .preset-grid {
    grid-template-columns: 1fr;
  }
  .measurement-grid {
    grid-template-columns: 1fr;
  }
  .light-scene {
    min-height: 300px;
  }
  .flow-fixture {
    width: 72%;
    border-width: 7px;
  }
  .scene-window {
    top: 18px;
    right: 18px;
    width: 78px;
    height: 106px;
  }
  .scene-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }
  .photo-loader,
  .studio-chip {
    min-height: 42px;
  }
  .lighting-hero-visual {
    min-height: 360px;
  }
  .lighting-hero-visual::before {
    inset: 40px 20px;
  }
  .main-frame {
    inset: 0 38px 86px 0;
  }
  .top-frame {
    width: 130px;
    height: 112px;
  }
  .lower-frame {
    width: 140px;
    height: 136px;
  }
  .light-note {
    left: 10px;
    right: 10px;
    bottom: 0;
    max-width: none;
  }
  .atelier-cue:first-child {
    grid-row: span 1;
  }
  .brief-strip-inner {
    grid-template-columns: 1fr;
  }
  .brand-system-inner,
  .dashboard-grid,
  .technical-matrix {
    grid-template-columns: 1fr;
  }
  .ecosystem-map {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }
  .ecosystem-core {
    min-height: 0;
    border-radius: 18px;
  }
  .ecosystem-node { min-height: 0; }
  .spectrum-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .proof-path {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .proof-path i {
    width: 100%;
  }
  .spectrum-row i {
    width: 100%;
  }
  .method-link {
    grid-template-columns: 1fr;
  }
  .method-link::after {
    inset: auto 14px 10px 14px;
  }
  .method-arrow {
    grid-column: auto;
  }
  .project-gallery .gallery-feature { grid-column: span 1; }
  .site-nav a, .back-main { font-size: 10.5px; padding: 9px 10px; }
  .brand { padding: 8px 0; }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .brand-name { font-size: 17px; }
  .brand-tag { display: none; }
  .topline { display: none; }
}


/* ============================================================
   ACCENT INK APPLICATION  ·  Rev C · 2026-09-14
   ------------------------------------------------------------
   Placed last so it lands after the original `color: var(--realm-3)`
   declarations. Only components that sit on WHITE or CREAM surfaces
   are listed here; accent text on the dark realm sections is left
   untouched. Tokens are defined near the .panel-list block above.
   ============================================================ */
/* Guards: realm-growth cards, the filled .tool-map-node.active and the
   lighting showcase links sit on DARK panels — they keep the light accent. */
body:not(.realm-growth) .realm-card .num,
body:not(.realm-growth) .brief-card .num,
body:not(.realm-growth) .brief-card .kicker,
body:not(.realm-growth) .discipline-card .kicker,
.tool-card .num,
.tool-map-node:not(.active) span,
.lighting-gallery-card .num,
body.realm-main .panel-list b,
body.realm-main .ecosystem-node span {
  color: var(--accent-ink);
}
/* Destination-tinted cards keep their own realm hue, darkened for the card. */
body:not(.realm-growth) .discipline-card[href] .num,
body:not(.realm-growth) .discipline-card[href] .kicker,
body:not(.realm-growth) .brief-card[href] .num,
body:not(.realm-growth) .brief-card[href] .kicker,
body.realm-main .ecosystem-node[href] span {
  color: var(--target-ink, var(--accent-ink));
}
/* Header tagline: dark ink on the light header, accent on the dark headers. */
.brand-tag { color: var(--accent-ink); }
body.realm-growth .brand-tag,
body.realm-lighting .brand-tag,
body.realm-systems .brand-tag,
body.realm-drafting .brand-tag,
body.realm-intake .brand-tag { color: var(--realm-3); }

/* Contrast repair, 15 September 2026.
   Scope ink to its painted surface; keep destination accents on borders/fills. */
:root { --pe-muted: #5c574d; }

/* Light landing, confirmation and case-study surfaces. */
body.realm-main .hero .eyebrow,
body.realm-main .process-rail article > span,
body.realm-main .pe-quick > .eyebrow,
.project-hero-text > .eyebrow,
body:not([class]) .section-head > .eyebrow { color: #79571c; }
.flow-enquiry h1 { color: #1d140f; }
.flow-enquiry .eyebrow { color: #884117; }
.flow-enquiry .btn-ghost { color: #44392f; border-color: #795d43; }
.enquiry-confirmation .flow-enquiry-inner { display: block; }
.enquiry-confirmation .flow-enquiry-inner > div { max-width: 920px; }
.enquiry-confirmation h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.06; max-width: 20ch; }

/* All realm panels except the main site's white panels have dark surfaces. */
body:not(.realm-main) .realm-panel .panel-list > div,
body:not(.realm-main) .realm-panel .panel-list > a {
  color: #fff;
  background: #243d32;
}
body:not(.realm-main) .realm-panel .panel-list b { color: #fff; }
.hero .btn-ghost[href],
.project-hero .btn-ghost[href],
.cta-box .btn-ghost[href] { color: #fff; background-color: #243d32; }
.hero .btn-ghost[href]:hover, .hero .btn-ghost[href]:focus-visible,
.project-hero .btn-ghost[href]:hover, .project-hero .btn-ghost[href]:focus-visible,
.cta-box .btn-ghost[href]:hover, .cta-box .btn-ghost[href]:focus-visible {
  color: #17201b;
  background: var(--target-realm, #d2a84f);
}

/* The intake cards remain cream, including inside the dark Growth section. */
body.realm-intake .enquiry-template { --accent-ink: #79571c; }
body.realm-intake .lighting-template { --accent-ink: #884117; }
body.realm-intake .systems-template { --accent-ink: #116050; }
body.realm-intake .drafting-template { --accent-ink: #45591d; }
body.realm-intake .enquiry-template .template-label,
body.realm-intake .realm-card.enquiry-template ul li b { color: var(--accent-ink); }
body.realm-intake .intake-section:not(#growth-hub) .intake-detail > div > .eyebrow {
  color: #79571c;
}

/* Flow Light's introduction and controls sit on cream; trial section stays dark. */
.flow-light-page .flow-intro .split-inner p { color: #51463c; }
.flow-light-page .flow-intro .split-inner .eyebrow { color: #884117; }
.flow-light-page .flow-use-grid article > span { color: #884117; }
.flow-light-page .scene-position-note {
  color: #fffaf0;
  background: #30271e;
  padding: 7px 9px;
  border-radius: 8px;
}
.flow-light-page .measurement-grid label > span,
.flow-light-page .flow-form .form-note,
.flow-light-page .studio-note { color: #51463c; }
.flow-light-page .flow-hero-image figcaption { color: #fffaf0; background: #30271e; }

/* Standalone commercial pages: preserve their dark heroes and cream cards. */
body.pe-light-footer { --muted: #545d55; }
body.pe-light-footer .hero .eyebrow { color: #f0ce85; }
body.pe-light-footer .card .tag { color: #fffaf0; background: #243d32; }
body.pe-light-footer .case-tile__meta dt,
body.pe-light-footer .case-studies-strip__label { color: #555; }
body.pe-light-footer .hero .brand-line-2 { color: #f0ce85 !important; }
body.pe-light-footer .hero .nav a:is(.nav-btn,.nav-cta):hover,
body.pe-light-footer .hero .nav a:is(.nav-btn,.nav-cta):focus-visible,
body.pe-light-footer :is(.btn-primary,.btn-secondary,.btn--primary,.btn--secondary):is(:hover,:focus-visible) {
  color: #17201b !important;
  background: var(--target-realm, #d2bd86);
}
body.pe-light-footer .hero .nav a::before,
body.pe-light-footer :is(.btn-primary,.btn-secondary,.btn--primary,.btn--secondary)::before { content: none; }
body.pe-light-footer .hero .nav a:focus-visible { outline: 3px solid #f0ce85; outline-offset: 4px; }

/* Case studies owns a light editorial hero and footer, plus dark commitments.
   Shared .hero/.cta/.site-footer rules must not change those surface contracts. */
body[data-page="case-studies"] { --muted-2: #575247; }
body[data-page="case-studies"] .hero {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
  color: var(--ink);
}
body[data-page="case-studies"] .hero::after,
body[data-page="case-studies"] .hero::before { content: none; }
body[data-page="case-studies"] .cta__body p { color: var(--muted); }
body[data-page="case-studies"] .site-footer { background: var(--paper); color: var(--muted); }
body[data-page="case-studies"] .site-footer p,
body[data-page="case-studies"] .site-footer a { color: var(--muted); }
body[data-page="case-studies"] .site-footer h4 { color: var(--ink); }
body[data-page="case-studies"] .commitments__label,
body[data-page="case-studies"] .commitment__number { color: #d2bd86; }
body[data-page="case-studies"] .site-header a:focus-visible {
  outline: 3px solid #123829; outline-offset: 4px;
}
body[data-page="case-studies"] .site-header__cta:hover,
body[data-page="case-studies"] .site-header__cta:focus-visible {
  color: #17201b !important;
  background: #d2bd86;
}
body[data-page="case-studies"] .site-header__cta::before { content: none; }
body[data-page="case-studies"] .case--draft .case__number { color: #575247; }

/* Text over imagery needs an opaque enough scrim across its whole line. */
.atelier-cue::after {
  background: linear-gradient(180deg, rgba(26,12,8,.70), rgba(26,12,8,.90));
}
.atelier-cue span, .atelier-cue p { color: #fff1df; }
.flow-proof-card figcaption { background: #30271e; }
.flow-proof-card figcaption > span { color: #f2cc98; }
.cta-box > p { color: #fff; }
body.realm-drafting .realm-card .chip { color: #344f45; }
body.realm-drafting .hero .eyebrow,
body.realm-drafting .project-hero .eyebrow { color: #d1dfa8; }
body.realm-systems .hero .hero-lead { color: #fff; }
.flow-light-page .hero .eyebrow { color: #f2cc98; }
.pe-quick .pe-quick-note { color: #3e5044; }
/* A wordmark needs a rectangular focus ring; a pill can cross its glyphs. */
body.pe-light-footer .hero .nav > a:has(.brand):focus-visible,
.site-header .brand:focus-visible,
.site-header__brand:focus-visible { border-radius: 8px; }
body[data-page="case-studies"] .site-header__nav a:focus-visible { border-radius: 4px; }
/* Decorative hero rings must not block mobile navigation hit targets. */
.hero::before, .hero::after { pointer-events: none; }
body.pe-light-footer .hero .nav { position: relative; z-index: 2; }
