/* ════════════════════════════════════════════════════════════════════
   CONTENTLOGICENGINE  ·  STYLE.CSS
   AESTHETIC: "SUBZERO TERMINAL" — cinematic minimalism in the cold half
   of the spectrum. Deep cold-black + graphite surfaces. Electric blue
   for primary action. Icy cyan for focus + glow. Cool violet for the
   tertiary accent. Typography in Syne + Manrope + Space Mono. Sharp
   4-6px corners. Hairline borders. No warm tones anywhere.

   01. TOKENS
   02. RESET + DOCUMENT
   03. TYPOGRAPHY PRIMITIVES
   04. LAYOUT — SHELL · SIDEBAR · MOBILE SHEET
   05. UTILITIES
   06. HERO + PAGE-HEAD + SECTION-HEAD
   07. SECTION RHYTHM
   08. BUTTONS · TAGS · LINKS · FRAMES
   09. SERVICES
   10. PRICES · BUILDER · HOURLY · FAQ
   11. TEAM · PRINCIPLES · WORK
   12. POST · PROSE · JOURNAL
   13. FORM · CONTACT
   14. STATE PAGES
   15. COOKIE BANNER
   16. FOOTER
   17. MOTION · A11Y · PRINT
   ════════════════════════════════════════════════════════════════════ */


/* ─────────────────────── 01. TOKENS ─────────────────────── */
:root {
    /* Deep cold palette */
    --cle-void:        #06080F;      /* base bg — near-black with blue undertone */
    --cle-surface-1:   #0D1120;      /* lifted */
    --cle-surface-2:   #141929;      /* card */
    --cle-surface-3:   #1C2238;      /* interactive */
    --cle-graphite:    #232A45;      /* deeper */

    /* Hairline borders */
    --cle-border:      rgba(122, 142, 200, 0.16);
    --cle-border-2:    rgba(122, 142, 200, 0.32);
    --cle-border-hot:  rgba(91, 139, 255, 0.55);

    /* Text */
    --cle-text:        #E8ECF7;
    --cle-text-2:      #9099B8;
    --cle-text-3:      #5D6587;
    --cle-text-4:      #3E456A;

    /* Cold accents — NO warm tones permitted */
    --cle-blue:        #5B8BFF;      /* electric blue — primary action */
    --cle-blue-2:      #7AA0FF;      /* lighter electric */
    --cle-cyan:        #00E5FF;      /* icy cyan — focus, glow, highlight */
    --cle-cyan-soft:   #58F0FF;
    --cle-violet:      #A78BFA;      /* cool violet — tertiary */
    --cle-violet-2:    #C4B0FC;
    --cle-silver:      #C5CCE0;      /* neutral cool-silver */

    /* Glows (used sparingly) */
    --cle-glow-cyan:   0 0 24px rgba(0, 229, 255, 0.22);
    --cle-glow-blue:   0 0 32px rgba(91, 139, 255, 0.30);

    /* Type families */
    --cle-display:  "Syne", "Manrope", -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --cle-body:     "Manrope", -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --cle-mono:     "Space Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
    --cle-serif:    "Instrument Serif", Georgia, "Times New Roman", serif;

    /* Type scale */
    --t-mega:       clamp(80px, 15vw, 240px);
    --t-display:    clamp(56px, 9vw, 144px);
    --t-display-2:  clamp(40px, 6vw, 88px);
    --t-h1:         clamp(34px, 4.6vw, 62px);
    --t-h2:         clamp(26px, 3.2vw, 46px);
    --t-h3:         clamp(20px, 2vw, 28px);
    --t-h4:         clamp(17px, 1.4vw, 21px);
    --t-lead:       clamp(17px, 1.3vw, 21px);
    --t-body:       15.5px;
    --t-small:      13.5px;
    --t-mono:       11.5px;
    --t-eyebrow:    11px;

    /* Leading + tracking */
    --lh-display:   0.94;
    --lh-tight:     1.08;
    --lh-body:      1.6;
    --lh-loose:     1.72;
    --ls-display:   -0.025em;
    --ls-tight:     -0.015em;
    --ls-mono:      0.12em;
    --ls-eyebrow:   0.20em;

    /* Spacing */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 14px;
    --sp-4: 22px;
    --sp-5: 32px;
    --sp-6: 48px;
    --sp-7: 72px;
    --sp-8: 104px;
    --sp-9: 144px;
    --sp-10: 196px;

    /* Vertical rhythm */
    --py-section:        clamp(80px, 11vh, 144px);
    --py-section-tight:  clamp(56px, 7vh, 96px);
    --py-pagehead:       clamp(72px, 10vh, 128px);
    --gap-block:         clamp(40px, 5vw, 80px);

    /* Layout */
    --sidebar-w:         240px;
    --shell-max:         1480px;
    --shell-pad-x:       clamp(20px, 4.5vw, 64px);

    /* Radii — sharp */
    --r-xs:  3px;
    --r-sm:  4px;
    --r:     6px;
    --r-md:  10px;
    --r-pill: 999px;

    /* Hairlines */
    --rule: 1px;

    /* Motion */
    --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --d-fast:      140ms;
    --d-base:      260ms;
    --d-slow:      540ms;

    /* z-index */
    --z-sidebar: 30;
    --z-sheet:   60;
    --z-cookie:  70;
    --z-skip:    90;
}


/* ─────────────────────── 02. RESET + DOCUMENT ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
    background: var(--cle-void);
    color: var(--cle-text);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
    font-family: var(--cle-body);
    font-size: var(--t-body);
    line-height: var(--lh-body);
    color: var(--cle-text);
    background:
        radial-gradient(ellipse 1100px 700px at 92% 0%,  rgba(91, 139, 255, 0.10), transparent 65%),
        radial-gradient(ellipse 900px 600px  at 4% 32%,  rgba(167, 139, 250, 0.07), transparent 70%),
        radial-gradient(ellipse 800px 500px  at 50% 95%, rgba(0, 229, 255, 0.05), transparent 70%),
        var(--cle-void);
    min-height: 100vh;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "ss02", "kern";
    font-variation-settings: "wght" 400;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--d-fast) var(--ease); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; text-align: inherit; }
input, select, textarea { font: inherit; color: inherit; background: transparent; border: 0; outline: none; }
ul, ol { list-style: none; }
::selection { background: var(--cle-blue); color: var(--cle-void); }


/* ─────────────────────── 03. TYPOGRAPHY PRIMITIVES ─────────────────────── */
.cle-display {
    font-family: var(--cle-display);
    font-weight: 500;
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
}
.cle-serif-em {
    font-family: var(--cle-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--cle-cyan);
}
.cle-mono {
    font-family: var(--cle-mono);
    font-size: var(--t-mono);
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
}
.cle-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--cle-mono);
    font-size: var(--t-eyebrow);
    letter-spacing: var(--ls-eyebrow);
    text-transform: uppercase;
    color: var(--cle-cyan);
    font-weight: 400;
}
.cle-eyebrow::before {
    content: ""; display: block;
    width: 22px; height: 1px;
    background: var(--cle-cyan);
}
.cle-eyebrow--silver { color: var(--cle-silver); }
.cle-eyebrow--silver::before { background: var(--cle-silver); }
.cle-eyebrow--blue   { color: var(--cle-blue-2); }
.cle-eyebrow--blue::before   { background: var(--cle-blue-2); }


/* ─────────────────────── 04. LAYOUT — SHELL · SIDEBAR · MOBILE SHEET ─────────────────────── */
.cle-shell {
    width: 100%;
    max-width: var(--shell-max);
    margin-inline: auto;
    padding-inline: var(--shell-pad-x);
}

/* Main wraps next to the sidebar on desktop */
.cle-main {
    min-height: 100vh;
}
@media (min-width: 1024px) {
    .cle-main { padding-left: var(--sidebar-w); }
}

/* Skip link */
.cle-skip {
    position: fixed; top: -200px; left: 16px;
    z-index: var(--z-skip);
    padding: 12px 18px;
    background: var(--cle-blue);
    color: var(--cle-void);
    font-family: var(--cle-mono);
    font-size: var(--t-mono);
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    border-radius: var(--r-sm);
    transition: top var(--d-base) var(--ease);
}
.cle-skip:focus { top: 16px; }

/* Sidebar (desktop only) */
.cle-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w);
    z-index: var(--z-sidebar);
    background: linear-gradient(180deg, var(--cle-void) 0%, var(--cle-surface-1) 100%);
    border-right: var(--rule) solid var(--cle-border);
    display: none;
    flex-direction: column;
    padding: 28px 24px;
    overflow-y: auto;
}
@media (min-width: 1024px) { .cle-sidebar { display: flex; } }

.cle-sidebar__brand {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 28px;
    border-bottom: var(--rule) solid var(--cle-border);
}
.cle-sidebar__brand__mark {
    width: 30px; height: 30px;
    display: inline-grid; place-items: center;
    background: var(--cle-blue);
    color: var(--cle-void);
    font-family: var(--cle-display);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--r-sm);
    box-shadow: var(--cle-glow-blue);
    line-height: 1;
}
.cle-sidebar__brand__word {
    display: flex; flex-direction: column;
}
.cle-sidebar__brand__word strong {
    font-family: var(--cle-display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: var(--ls-tight);
    color: var(--cle-text);
    line-height: 1.1;
}
.cle-sidebar__brand__word small {
    font-family: var(--cle-mono);
    font-size: 9.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
    margin-top: 4px;
}

.cle-sidebar__nav {
    flex-grow: 1;
    margin-top: 28px;
    display: flex; flex-direction: column; gap: 2px;
}
.cle-sidebar__link {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: baseline;
    gap: 12px;
    padding: 12px 12px;
    border-radius: var(--r-sm);
    font-family: var(--cle-body);
    font-size: 15px;
    color: var(--cle-text-2);
    transition: background var(--d-fast) var(--ease), color var(--d-fast) var(--ease);
}
.cle-sidebar__link__num {
    font-family: var(--cle-mono);
    font-size: 10px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
}
.cle-sidebar__link__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: transparent;
    transition: background var(--d-fast) var(--ease), box-shadow var(--d-fast) var(--ease);
}
.cle-sidebar__link:hover {
    background: var(--cle-surface-2);
    color: var(--cle-text);
}
.cle-sidebar__link:hover .cle-sidebar__link__dot { background: var(--cle-cyan); box-shadow: var(--cle-glow-cyan); }
.cle-sidebar__link.is-active {
    background: var(--cle-surface-2);
    color: var(--cle-text);
}
.cle-sidebar__link.is-active .cle-sidebar__link__num { color: var(--cle-cyan); }
.cle-sidebar__link.is-active .cle-sidebar__link__dot { background: var(--cle-cyan); box-shadow: var(--cle-glow-cyan); }

.cle-sidebar__cta {
    margin-top: 18px;
    padding-top: 18px;
    border-top: var(--rule) solid var(--cle-border);
}

.cle-sidebar__foot {
    padding-top: 24px;
    border-top: var(--rule) solid var(--cle-border);
    display: flex; flex-direction: column; gap: 14px;
}
.cle-sidebar__lang {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 12px;
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r-pill);
    font-family: var(--cle-mono);
    font-size: 10px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    width: fit-content;
    color: var(--cle-text-2);
}
.cle-sidebar__lang strong { color: var(--cle-cyan); font-weight: 700; }
.cle-sidebar__lang span { color: var(--cle-text-4); }

.cle-sidebar__status {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--cle-mono);
    font-size: 10px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
}
.cle-sidebar__status__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--cle-cyan);
    box-shadow: var(--cle-glow-cyan);
    animation: cle-pulse 2.2s ease-in-out infinite;
}
@keyframes cle-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.7); }
}

.cle-sidebar__legal {
    font-family: var(--cle-mono);
    font-size: 9px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-4);
    line-height: 1.5;
}

/* Mobile topbar */
.cle-topbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: var(--z-sidebar);
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px var(--shell-pad-x);
    background: linear-gradient(180deg, rgba(6, 8, 15, 0.94) 0%, rgba(6, 8, 15, 0.78) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: var(--rule) solid var(--cle-border);
}
@media (min-width: 1024px) { .cle-topbar { display: none; } }

.cle-topbar__brand {
    display: flex; align-items: center; gap: 9px;
}
.cle-topbar__brand__mark {
    width: 26px; height: 26px;
    display: inline-grid; place-items: center;
    background: var(--cle-blue);
    color: var(--cle-void);
    font-family: var(--cle-display);
    font-weight: 700;
    font-size: 13px;
    border-radius: var(--r-sm);
}
.cle-topbar__brand__word {
    font-family: var(--cle-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: var(--ls-tight);
}

.cle-burger {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 16px;
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r-pill);
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text);
    background: var(--cle-surface-1);
}
.cle-burger__bars { display: flex; flex-direction: column; gap: 3px; }
.cle-burger__bars span {
    width: 14px; height: 1px;
    background: var(--cle-cyan);
}

/* Mobile sheet (top-down) */
.cle-sheet {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: var(--z-sheet);
    background: var(--cle-void);
    transform: translateY(-100%);
    transition: transform var(--d-slow) var(--ease-out);
    visibility: hidden;
    max-height: 100vh;
    overflow-y: auto;
    border-bottom: var(--rule) solid var(--cle-border);
}
.cle-sheet.is-open { transform: translateY(0); visibility: visible; }

.cle-sheet__top {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px var(--shell-pad-x);
    border-bottom: var(--rule) solid var(--cle-border);
}
.cle-sheet__title {
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
}
.cle-sheet__title strong { color: var(--cle-cyan); font-weight: 600; }
.cle-sheet__close {
    width: 38px; height: 38px;
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r-pill);
    color: var(--cle-text);
    display: inline-grid; place-items: center;
    font-size: 16px;
    line-height: 1;
    background: var(--cle-surface-1);
}

.cle-sheet__list {
    padding: 24px var(--shell-pad-x) 16px;
    display: flex; flex-direction: column;
}
.cle-sheet__list a {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-bottom: var(--rule) solid var(--cle-border);
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: clamp(28px, 7vw, 44px);
    line-height: 1;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
}
.cle-sheet__list a small {
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
    font-weight: 400;
}
.cle-sheet__list a span {
    font-family: var(--cle-mono);
    font-size: 14px;
    color: var(--cle-text-2);
    font-weight: 400;
}

.cle-sheet__foot {
    padding: 28px var(--shell-pad-x);
    display: flex; flex-direction: column; gap: 14px;
    border-top: var(--rule) solid var(--cle-border);
    background: var(--cle-surface-1);
}
.cle-sheet__foot__row {
    display: flex; justify-content: space-between;
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-2);
}
.cle-sheet__foot__row span:first-child { color: var(--cle-text-3); }


/* ─────────────────────── 05. UTILITIES ─────────────────────── */
.cle-divider {
    height: 1px;
    background: var(--cle-border);
    width: 100%;
}
.cle-divider--vert {
    width: 1px; height: 100%;
    background: var(--cle-border);
}

.cle-text-cyan   { color: var(--cle-cyan); }
.cle-text-blue   { color: var(--cle-blue-2); }
.cle-text-violet { color: var(--cle-violet); }
.cle-text-2      { color: var(--cle-text-2); }
.cle-text-3      { color: var(--cle-text-3); }

.cle-foot-link {
    margin-top: 56px;
    display: flex;
    justify-content: flex-end;
}

/* Small spacing utilities */
.cle-mt-3 { margin-top: 14px; }
.cle-mt-4 { margin-top: 22px; }
.cle-mt-5 { margin-top: 32px; }
.cle-mt-6 { margin-top: 48px; }

/* Page-specific helpers (service detail) */
.cle-pagehead__lead--accent {
    font-family: var(--cle-serif);
    font-style: italic;
    color: var(--cle-cyan);
    font-size: clamp(20px, 1.8vw, 26px);
}
.cle-svc-meta--mb { margin-bottom: 56px; }
.cle-prose--svc {
    max-width: 64ch;
    margin-bottom: 40px;
}
.cle-svc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 80px;
}
.cle-mt-8  { margin-top: 8px; }
.cle-mt-12 { margin-top: 12px; }

.cle-end-rail {
    margin-top: 80px;
    padding-top: 32px;
    border-top: var(--rule) solid var(--cle-border);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
}

.cle-cta-banner {
    margin-top: 80px;
    background: var(--cle-surface-2);
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r);
    padding: 48px 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}
@media (min-width: 720px) {
    .cle-cta-banner { grid-template-columns: 1.4fr auto; padding: 56px 48px; }
}
.cle-cta-banner__title {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: var(--ls-display);
    color: var(--cle-text);
    max-width: 26ch;
}
.cle-cta-banner__title em { font-family: var(--cle-serif); font-style: italic; color: var(--cle-cyan); font-weight: 400; }
.cle-cta-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; }


/* ─────────────────────── 06. HERO + PAGE-HEAD + SECTION-HEAD ─────────────────────── */
.cle-hero {
    position: relative;
    padding-top: clamp(120px, 14vh, 200px);
    padding-bottom: clamp(72px, 9vh, 120px);
    overflow: hidden;
}
.cle-hero::before {
    content: "";
    position: absolute;
    top: -200px; right: -240px;
    width: 720px; height: 720px;
    background:
        radial-gradient(circle, rgba(91, 139, 255, 0.18), transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(0, 229, 255, 0.10), transparent 70%);
    pointer-events: none;
    filter: blur(2px);
}
.cle-hero::after {
    content: "";
    position: absolute;
    bottom: -120px; left: -80px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.10), transparent 70%);
    pointer-events: none;
    filter: blur(2px);
}

.cle-hero__top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: var(--sp-4);
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
    padding-bottom: var(--sp-5);
    margin-bottom: var(--sp-6);
    border-bottom: var(--rule) solid var(--cle-border);
    position: relative;
    flex-wrap: wrap;
}
.cle-hero__top span strong { color: var(--cle-cyan); font-weight: 600; }
.cle-hero__top__right { display: flex; gap: 20px; flex-wrap: wrap; }

.cle-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
@media (min-width: 1100px) {
    .cle-hero__inner { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
}

.cle-hero__masthead { display: flex; flex-direction: column; gap: var(--sp-5); }

.cle-hero__title {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: var(--t-display);
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--cle-text);
}
.cle-hero__title em {
    font-family: var(--cle-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--cle-cyan);
    letter-spacing: -0.02em;
}

.cle-hero__lead {
    max-width: 50ch;
    font-family: var(--cle-body);
    font-size: var(--t-lead);
    line-height: var(--lh-loose);
    color: var(--cle-text-2);
}
.cle-hero__lead strong { color: var(--cle-text); font-weight: 600; }

.cle-hero__actions {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-top: var(--sp-3);
}

.cle-hero__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: var(--sp-6);
    border-top: var(--rule) solid var(--cle-border);
    border-left: var(--rule) solid var(--cle-border);
    max-width: 580px;
}
.cle-hero__specs__cell {
    padding: var(--sp-3) var(--sp-4);
    border-right: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
    display: flex; flex-direction: column; gap: 4px;
}
.cle-hero__specs__cell small {
    font-family: var(--cle-mono);
    font-size: 9.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
}
.cle-hero__specs__cell strong {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: clamp(20px, 2.4vw, 32px);
    color: var(--cle-text);
    line-height: 1;
    letter-spacing: var(--ls-display);
}
.cle-hero__specs__cell strong em {
    font-family: var(--cle-serif);
    font-style: italic;
    color: var(--cle-cyan);
    font-weight: 400;
}

.cle-hero__monolith {
    position: relative;
    aspect-ratio: 4/5;
    border: var(--rule) solid var(--cle-border-2);
    border-radius: var(--r);
    overflow: hidden;
    background: var(--cle-surface-2);
}
.cle-hero__monolith img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.cle-hero__monolith__label {
    position: absolute;
    bottom: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(6, 8, 15, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: var(--rule) solid var(--cle-border-2);
    border-radius: var(--r-pill);
    font-family: var(--cle-mono);
    font-size: 10px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-hero__monolith__label__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cle-cyan);
    box-shadow: var(--cle-glow-cyan);
    animation: cle-pulse 2.2s ease-in-out infinite;
}

/* Page-head (for sub-pages) */
.cle-pagehead {
    position: relative;
    padding-block: var(--py-pagehead);
    padding-top: clamp(120px, 14vh, 184px);
    overflow: hidden;
}
.cle-pagehead::before {
    content: "";
    position: absolute;
    top: 0; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(91, 139, 255, 0.10), transparent 65%);
    pointer-events: none;
}
.cle-pagehead__crumbs {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
    margin-bottom: var(--sp-5);
}
.cle-pagehead__crumbs a { color: var(--cle-text-2); }
.cle-pagehead__crumbs a:hover { color: var(--cle-cyan); }
.cle-pagehead__crumbs__sep { color: var(--cle-text-4); }
.cle-pagehead__crumbs strong { color: var(--cle-cyan); font-weight: 400; }

.cle-pagehead__inner {
    position: relative;
    display: flex; flex-direction: column; gap: var(--sp-4);
}
.cle-pagehead__chapter {
    font-family: var(--cle-mono);
    font-size: var(--t-mono);
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-pagehead__title {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: var(--t-display-2);
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--cle-text);
}
.cle-pagehead__title em {
    font-family: var(--cle-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--cle-cyan);
}
.cle-pagehead__lead {
    margin-top: var(--sp-3);
    max-width: 64ch;
    font-family: var(--cle-body);
    font-size: var(--t-lead);
    line-height: var(--lh-loose);
    color: var(--cle-text-2);
}
.cle-pagehead__lead a { color: var(--cle-cyan); border-bottom: var(--rule) solid var(--cle-cyan); }
.cle-pagehead__meta {
    margin-top: var(--sp-6);
    display: flex; flex-wrap: wrap;
    border-top: var(--rule) solid var(--cle-border);
    border-left: var(--rule) solid var(--cle-border);
}
.cle-pagehead__meta__item {
    flex: 1;
    min-width: 180px;
    padding: var(--sp-3) var(--sp-4);
    display: flex; flex-direction: column; gap: 6px;
    border-right: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
}
.cle-pagehead__meta__item span:first-child {
    font-family: var(--cle-mono);
    font-size: 9.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
}
.cle-pagehead__meta__item span:last-child {
    font-family: var(--cle-display);
    font-size: 18px;
    color: var(--cle-text);
    font-weight: 500;
    letter-spacing: var(--ls-display);
}

/* Section-head */
.cle-section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    margin-bottom: var(--gap-block);
    align-items: end;
}
@media (min-width: 960px) {
    .cle-section-head {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        column-gap: var(--sp-7);
    }
}
.cle-section-head__lead { display: flex; flex-direction: column; gap: var(--sp-3); }
.cle-section-head__chapter {
    font-family: var(--cle-mono);
    font-size: var(--t-mono);
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-section-head__title {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: var(--t-h1);
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--cle-text);
}
.cle-section-head__title em {
    font-family: var(--cle-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--cle-cyan);
}
.cle-section-head__caption {
    font-family: var(--cle-body);
    font-size: var(--t-body);
    line-height: var(--lh-loose);
    color: var(--cle-text-2);
    max-width: 42ch;
    justify-self: start;
}
@media (min-width: 960px) { .cle-section-head__caption { justify-self: end; text-align: right; } }
.cle-section-head__caption a { color: var(--cle-cyan); border-bottom: var(--rule) solid var(--cle-cyan); }


/* ─────────────────────── 07. SECTION RHYTHM ─────────────────────── */
.cle-section { padding-block: var(--py-section); position: relative; }
.cle-section--tight { padding-block: var(--py-section-tight); }
.cle-section--flush-top { padding-top: 0; }
.cle-section--bordered {
    border-top: var(--rule) solid var(--cle-border);
}
.cle-section--surface {
    background: var(--cle-surface-1);
    border-top: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
}


/* ─────────────────────── 08. BUTTONS · TAGS · LINKS ─────────────────────── */
.cle-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    background: var(--cle-blue);
    color: var(--cle-void);
    border-radius: var(--r-sm);
    font-family: var(--cle-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    transition: background var(--d-fast) var(--ease), transform var(--d-fast) var(--ease), box-shadow var(--d-fast) var(--ease);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    position: relative;
}
.cle-btn::after {
    content: "→";
    color: inherit;
    font-size: 14px;
    line-height: 1;
    transition: transform var(--d-fast) var(--ease);
}
.cle-btn:hover {
    background: var(--cle-blue-2);
    transform: translateY(-1px);
    box-shadow: var(--cle-glow-blue);
}
.cle-btn:hover::after { transform: translateX(3px); }
.cle-btn--no-arrow::after { display: none; }

.cle-btn--ghost {
    background: transparent;
    color: var(--cle-text);
    box-shadow: inset 0 0 0 1px var(--cle-border-2);
}
.cle-btn--ghost::after { color: var(--cle-cyan); }
.cle-btn--ghost:hover {
    background: var(--cle-surface-2);
    color: var(--cle-text);
    box-shadow: inset 0 0 0 1px var(--cle-cyan);
}

.cle-btn--cyan {
    background: var(--cle-cyan);
    color: var(--cle-void);
}
.cle-btn--cyan:hover {
    background: var(--cle-cyan-soft);
    box-shadow: var(--cle-glow-cyan);
}

.cle-btn--violet {
    background: var(--cle-violet);
    color: var(--cle-void);
}
.cle-btn--violet:hover { background: var(--cle-violet-2); }

.cle-btn--sm { padding: 10px 16px; font-size: 12.5px; }
.cle-btn--lg { padding: 18px 28px; font-size: 15px; }
.cle-btn--block { width: 100%; justify-content: center; }

/* Tag pills */
.cle-tag {
    display: inline-flex; align-items: center;
    padding: 5px 11px;
    border-radius: var(--r-pill);
    background: var(--cle-surface-2);
    border: var(--rule) solid var(--cle-border);
    color: var(--cle-text-2);
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
}
.cle-tag--cyan { background: rgba(0, 229, 255, 0.1); border-color: var(--cle-cyan); color: var(--cle-cyan); }
.cle-tag--blue { background: rgba(91, 139, 255, 0.1); border-color: var(--cle-blue); color: var(--cle-blue-2); }

/* Inline arrow link */
.cle-arrow-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text);
    padding-bottom: 3px;
    border-bottom: var(--rule) solid var(--cle-cyan);
    transition: gap var(--d-fast) var(--ease), color var(--d-fast) var(--ease);
}
.cle-arrow-link::after {
    content: "→";
    color: var(--cle-cyan);
    font-size: 13px;
    transition: transform var(--d-fast) var(--ease);
}
.cle-arrow-link:hover { gap: 12px; color: var(--cle-cyan); }

.cle-back {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 16px;
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r-pill);
    background: var(--cle-surface-1);
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-2);
    margin-bottom: var(--sp-5);
    width: fit-content;
    transition: color var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease);
}
.cle-back::before {
    content: "←";
    color: var(--cle-cyan);
    font-size: 12px;
}
.cle-back:hover { color: var(--cle-text); border-color: var(--cle-cyan); }


/* ─────────────────────── 09. SERVICES ─────────────────────── */
.cle-services {
    display: grid;
    grid-template-columns: 1fr;
    border-top: var(--rule) solid var(--cle-border);
    border-left: var(--rule) solid var(--cle-border);
}
@media (min-width: 720px)  { .cle-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cle-services { grid-template-columns: repeat(3, 1fr); } }

.cle-service {
    display: flex; flex-direction: column;
    padding: var(--sp-5);
    border-right: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
    background: transparent;
    color: var(--cle-text);
    transition: background var(--d-base) var(--ease);
    position: relative;
}
.cle-service:hover { background: var(--cle-surface-1); }
.cle-service__head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: var(--sp-4);
}
.cle-service__code {
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-service__price {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
}
.cle-service__price small {
    display: block;
    margin-top: 4px;
    font-family: var(--cle-mono);
    font-size: 9.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
    text-align: right;
    font-weight: 400;
}
.cle-service__title {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.15;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
    margin-bottom: 8px;
}
.cle-service__kicker {
    font-family: var(--cle-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.35;
    color: var(--cle-cyan);
    margin-bottom: var(--sp-3);
}
.cle-service__short {
    font-family: var(--cle-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--cle-text-2);
    margin-bottom: var(--sp-4);
}
.cle-service__foot {
    margin-top: auto;
    padding-top: var(--sp-3);
    border-top: var(--rule) solid var(--cle-border);
    display: flex; justify-content: space-between; align-items: center;
}
.cle-service__duration {
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
}
.cle-service__cta {
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
    display: inline-flex; align-items: center; gap: 6px;
}
.cle-service__cta::after { content: "→"; font-size: 13px; }

/* Service detail meta strip */
.cle-svc-meta {
    display: grid;
    grid-template-columns: 1fr;
    border-top: var(--rule) solid var(--cle-border);
    border-left: var(--rule) solid var(--cle-border);
}
@media (min-width: 720px) { .cle-svc-meta { grid-template-columns: repeat(3, 1fr); } }
.cle-svc-meta__cell {
    padding: var(--sp-4) var(--sp-4);
    display: flex; flex-direction: column; gap: 8px;
    border-right: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
}
.cle-svc-meta__label {
    font-family: var(--cle-mono);
    font-size: 9.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-svc-meta__value {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
}
.cle-svc-meta__value--small { font-size: 18px; line-height: 1.3; }

.cle-includes {
    display: flex; flex-direction: column;
    border-top: var(--rule) solid var(--cle-border);
}
.cle-include {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--sp-3);
    padding: var(--sp-4) 0;
    border-bottom: var(--rule) solid var(--cle-border);
    align-items: baseline;
}
.cle-include__num {
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-include__txt {
    font-family: var(--cle-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--cle-text);
}

.cle-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: var(--rule) solid var(--cle-border);
    border-left: var(--rule) solid var(--cle-border);
}
@media (min-width: 720px) { .cle-flow { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.cle-flow__step {
    display: flex; flex-direction: column; gap: 12px;
    padding: var(--sp-4);
    border-right: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
    position: relative;
}
.cle-flow__step__num {
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-flow__step__title {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 20px;
    color: var(--cle-text);
    line-height: 1.2;
    letter-spacing: var(--ls-display);
}
.cle-flow__step__txt {
    font-family: var(--cle-body);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--cle-text-2);
}


/* ─────────────────────── 10. PRICES · BUILDER · HOURLY · FAQ ─────────────────────── */
.cle-builder {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    align-items: start;
}
@media (min-width: 1100px) {
    .cle-builder {
        grid-template-columns: minmax(0, 1.65fr) minmax(320px, 1fr);
        gap: var(--sp-6);
    }
}
.cle-builder__steps { display: flex; flex-direction: column; gap: var(--sp-5); }
.cle-builder__step {
    background: var(--cle-surface-1);
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r);
    overflow: hidden;
}
.cle-builder__step__head {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--sp-3) var(--sp-4);
    border-bottom: var(--rule) solid var(--cle-border);
    background: var(--cle-surface-2);
}
.cle-builder__step__title {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 18px;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
}
.cle-builder__step__num {
    display: inline-grid; place-items: center;
    width: 28px; height: 28px;
    background: var(--cle-blue);
    color: var(--cle-void);
    border-radius: var(--r-sm);
    font-family: var(--cle-mono);
    font-size: 11px;
    font-weight: 600;
}
.cle-builder__step__hint {
    font-family: var(--cle-mono);
    font-size: 10px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
}
.cle-builder__opts {
    display: flex; flex-direction: column;
}
.cle-builder__opt {
    display: grid;
    grid-template-columns: 20px 60px 1fr auto;
    align-items: start;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    border-bottom: var(--rule) solid var(--cle-border);
    cursor: pointer;
    transition: background var(--d-fast) var(--ease);
}
.cle-builder__opt:last-child { border-bottom: 0; }
.cle-builder__opt:hover { background: var(--cle-surface-2); }
.cle-builder__opt:has(input:checked) { background: rgba(91, 139, 255, 0.06); }
.cle-builder__opt input {
    width: 18px; height: 18px;
    accent-color: var(--cle-blue);
    margin-top: 2px;
}
.cle-builder__opt__sku {
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
    padding-top: 3px;
}
.cle-builder__opt__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cle-builder__opt__label {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 16px;
    color: var(--cle-text);
    line-height: 1.2;
    letter-spacing: var(--ls-display);
}
.cle-builder__opt__note {
    font-family: var(--cle-body);
    font-size: 13px;
    line-height: 1.55;
    color: var(--cle-text-2);
}
.cle-builder__opt__price {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--cle-text);
    text-align: right;
    white-space: nowrap;
    letter-spacing: var(--ls-display);
}

.cle-receipt {
    background: var(--cle-surface-2);
    border: var(--rule) solid var(--cle-border-2);
    border-radius: var(--r);
    padding: var(--sp-5);
    display: flex; flex-direction: column; gap: var(--sp-4);
    align-self: start;
    position: relative;
    overflow: hidden;
}
.cle-receipt::before {
    content: "";
    position: absolute;
    top: -80px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.10), transparent 65%);
    pointer-events: none;
}
@media (min-width: 1100px) {
    .cle-receipt { position: sticky; top: 28px; }
}
.cle-receipt__head {
    position: relative;
    display: flex; justify-content: space-between; align-items: baseline;
    padding-bottom: var(--sp-3);
    border-bottom: var(--rule) solid var(--cle-border-2);
}
.cle-receipt__head h3 {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
}
.cle-receipt__head h3 em { font-family: var(--cle-serif); font-style: italic; color: var(--cle-cyan); font-weight: 400; }
.cle-receipt__head span {
    font-family: var(--cle-mono);
    font-size: 10px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-receipt__rows {
    position: relative;
    min-height: 80px;
    display: flex; flex-direction: column; gap: 8px;
}
.cle-receipt__row {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: var(--sp-3);
    padding-bottom: 8px;
    border-bottom: var(--rule) dotted var(--cle-border-2);
    font-family: var(--cle-body);
    font-size: 13px;
    color: var(--cle-text);
}
.cle-receipt__row > span:first-child { flex: 1; min-width: 0; color: var(--cle-text-2); line-height: 1.4; }
.cle-receipt__row > span:last-child  { color: var(--cle-cyan); white-space: nowrap; font-weight: 600; font-family: var(--cle-mono); }
.cle-receipt__row--empty { color: var(--cle-text-3); font-style: italic; border-bottom: none; }
.cle-receipt__total {
    position: relative;
    display: flex; justify-content: space-between; align-items: baseline;
    padding-top: var(--sp-3);
    border-top: var(--rule) solid var(--cle-cyan);
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-2);
}
.cle-receipt__total b {
    font-family: var(--cle-display);
    font-weight: 600;
    font-size: clamp(28px, 3.6vw, 40px);
    color: var(--cle-cyan);
    letter-spacing: var(--ls-display);
}
.cle-receipt__note {
    position: relative;
    font-family: var(--cle-mono);
    font-size: 10px;
    line-height: 1.55;
    color: var(--cle-text-3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Hourly */
.cle-hourly-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: var(--rule) solid var(--cle-border);
    border-left: var(--rule) solid var(--cle-border);
}
@media (min-width: 720px) { .cle-hourly-grid { grid-template-columns: repeat(3, 1fr); } }
.cle-hourly {
    padding: var(--sp-5);
    border-right: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
    display: flex; flex-direction: column; gap: var(--sp-3);
    transition: background var(--d-base) var(--ease);
}
.cle-hourly:hover { background: var(--cle-surface-1); }
.cle-hourly__head {
    display: flex; justify-content: space-between; align-items: baseline;
}
.cle-hourly__hours {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: clamp(48px, 6vw, 64px);
    line-height: 1;
    color: var(--cle-cyan);
    letter-spacing: var(--ls-display);
}
.cle-hourly__hours em { font-family: var(--cle-serif); font-style: italic; font-weight: 400; color: var(--cle-text); }
.cle-hourly__hours small {
    display: block;
    margin-top: 6px;
    font-family: var(--cle-mono);
    font-size: 9.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
    font-weight: 400;
}
.cle-hourly__sku {
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-2);
    padding: 4px 10px;
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r-pill);
}
.cle-hourly__note {
    font-family: var(--cle-body);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--cle-text-2);
}
.cle-hourly__price {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 28px;
    color: var(--cle-text);
    margin-top: var(--sp-3);
    padding-top: var(--sp-3);
    border-top: var(--rule) solid var(--cle-border);
    letter-spacing: var(--ls-display);
}

/* FAQ */
.cle-faqs { display: flex; flex-direction: column; border-top: var(--rule) solid var(--cle-border); }
.cle-faq { border-bottom: var(--rule) solid var(--cle-border); }
.cle-faq__q {
    width: 100%;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-4) 0;
    text-align: left;
    cursor: pointer;
}
.cle-faq__q__num {
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-faq__q__text {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.3;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
}
.cle-faq__q__icon {
    width: 32px; height: 32px;
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r-pill);
    color: var(--cle-cyan);
    display: grid; place-items: center;
    font-size: 16px;
    line-height: 1;
    transition: transform var(--d-base) var(--ease), background var(--d-base) var(--ease), border-color var(--d-base) var(--ease);
}
.cle-faq.is-open .cle-faq__q__icon {
    transform: rotate(45deg);
    background: var(--cle-cyan);
    color: var(--cle-void);
    border-color: var(--cle-cyan);
}
.cle-faq__a {
    max-height: 0; overflow: hidden;
    transition: max-height var(--d-base) var(--ease);
    font-family: var(--cle-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--cle-text-2);
    max-width: 64ch;
    padding-left: 70px;
}
.cle-faq.is-open .cle-faq__a {
    max-height: 800px;
    padding-bottom: var(--sp-4);
}


/* ─────────────────────── 11. TEAM · PRINCIPLES · WORK ─────────────────────── */
.cle-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: var(--rule) solid var(--cle-border);
    border-left: var(--rule) solid var(--cle-border);
}
@media (min-width: 720px)  { .cle-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cle-team-grid { grid-template-columns: repeat(4, 1fr); } }
.cle-person {
    display: flex; flex-direction: column;
    gap: var(--sp-3);
    padding: var(--sp-4);
    border-right: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
}
.cle-person__frame {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cle-surface-2);
    border: var(--rule) solid var(--cle-border-2);
    border-radius: var(--r-sm);
}
.cle-person__frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--d-slow) var(--ease);
    filter: saturate(0.95);
}
.cle-person:hover .cle-person__frame img { transform: scale(1.04); }
.cle-person__name {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.15;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
}
.cle-person__role {
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-person__bio {
    font-family: var(--cle-body);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--cle-text-2);
}

.cle-principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: var(--rule) solid var(--cle-border);
    border-left: var(--rule) solid var(--cle-border);
}
@media (min-width: 720px)  { .cle-principles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cle-principles-grid { grid-template-columns: repeat(3, 1fr); } }
.cle-principle {
    display: flex; flex-direction: column;
    gap: var(--sp-3);
    padding: var(--sp-5);
    border-right: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
}
.cle-principle__code {
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-principle__name {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
    max-width: 18ch;
}
.cle-principle__detail {
    font-family: var(--cle-body);
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--cle-text-2);
}

/* Work list — rows, not bento (different from previous projects) */
.cle-work-list {
    display: flex; flex-direction: column;
    border-top: var(--rule) solid var(--cle-border);
}
.cle-work {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: var(--sp-4) 0;
    border-bottom: var(--rule) solid var(--cle-border);
    align-items: baseline;
    transition: background var(--d-fast) var(--ease);
}
.cle-work:hover { background: var(--cle-surface-1); }
@media (min-width: 720px) {
    .cle-work {
        grid-template-columns: 80px 1.4fr 1fr 1.2fr auto;
        gap: var(--sp-5);
        padding: var(--sp-4) var(--sp-3);
    }
}
.cle-work__year {
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-work__title {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--cle-text);
    line-height: 1.15;
    letter-spacing: var(--ls-display);
}
.cle-work__sector {
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-2);
}
.cle-work__kind {
    font-family: var(--cle-body);
    font-size: 13.5px;
    color: var(--cle-text);
}
.cle-work__note {
    grid-column: 1 / -1;
    font-family: var(--cle-body);
    font-size: 14px;
    line-height: 1.55;
    color: var(--cle-text-2);
    max-width: 72ch;
}
@media (min-width: 720px) { .cle-work__note { padding-top: 6px; } }


/* ─────────────────────── 12. POST · PROSE · JOURNAL ─────────────────────── */
.cle-prose {
    font-family: var(--cle-body);
    font-size: 16.5px;
    line-height: 1.72;
    color: var(--cle-text-2);
    max-width: 64ch;
}
.cle-prose > * + * { margin-top: 1.2em; }
.cle-prose h2 {
    margin-top: 2.4em;
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
}
.cle-prose h2 em { font-family: var(--cle-serif); font-style: italic; color: var(--cle-cyan); font-weight: 400; }
.cle-prose a { color: var(--cle-cyan); border-bottom: var(--rule) solid var(--cle-cyan); padding-bottom: 1px; }
.cle-prose a:hover { background: var(--cle-cyan); color: var(--cle-void); }
.cle-prose strong { color: var(--cle-text); font-weight: 600; }
.cle-prose code {
    font-family: var(--cle-mono);
    background: var(--cle-surface-2);
    padding: 2px 8px;
    border-radius: var(--r-xs);
    font-size: 0.9em;
    color: var(--cle-cyan);
}
.cle-prose ul { display: flex; flex-direction: column; gap: 10px; }
.cle-prose ul li {
    position: relative;
    padding-left: 22px;
}
.cle-prose ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 11px;
    width: 8px; height: 1px;
    background: var(--cle-cyan);
}

.cle-post { max-width: 760px; }
.cle-post__meta {
    display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
    padding: var(--sp-3) 0;
    border-top: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-2);
    margin-bottom: var(--sp-6);
}
.cle-post__meta span:first-child { color: var(--cle-cyan); }
.cle-post__title {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: clamp(36px, 5.6vw, 64px);
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--cle-text);
    margin-bottom: var(--sp-4);
}
.cle-post__title em { font-family: var(--cle-serif); font-style: italic; color: var(--cle-cyan); font-weight: 400; }
.cle-post__lead {
    font-family: var(--cle-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.45;
    color: var(--cle-cyan);
    margin-bottom: var(--sp-6);
    max-width: 60ch;
}
.cle-post__cover {
    margin-block: var(--sp-6);
    border: var(--rule) solid var(--cle-border-2);
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 16/9;
}
.cle-post__cover img { width: 100%; height: 100%; object-fit: cover; }
.cle-post__body { font-family: var(--cle-body); font-size: 16.5px; line-height: 1.72; color: var(--cle-text-2); }
.cle-post__body > p + p { margin-top: 1.4em; }
.cle-post__body p:first-of-type::first-letter {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: 5em;
    line-height: 0.88;
    color: var(--cle-cyan);
    float: left;
    margin: 0.04em 0.1em 0 -0.02em;
    text-shadow: var(--cle-glow-cyan);
}

.cle-journal-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: var(--rule) solid var(--cle-border);
    border-left: var(--rule) solid var(--cle-border);
}
@media (min-width: 720px) { .cle-journal-grid { grid-template-columns: repeat(2, 1fr); } }
.cle-journal-card {
    display: flex; flex-direction: column;
    border-right: var(--rule) solid var(--cle-border);
    border-bottom: var(--rule) solid var(--cle-border);
    background: transparent;
    transition: background var(--d-base) var(--ease);
    color: var(--cle-text);
}
.cle-journal-card:hover { background: var(--cle-surface-1); }
.cle-journal-card__cover {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--cle-surface-2);
    border-bottom: var(--rule) solid var(--cle-border);
}
.cle-journal-card__cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--d-slow) var(--ease);
}
.cle-journal-card:hover .cle-journal-card__cover img { transform: scale(1.04); }
.cle-journal-card__body {
    padding: var(--sp-5);
    display: flex; flex-direction: column; gap: 8px;
    flex: 1;
}
.cle-journal-card__meta {
    display: flex; flex-wrap: wrap; gap: var(--sp-3);
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
    margin-bottom: 8px;
}
.cle-journal-card__meta span:first-child { color: var(--cle-cyan); }
.cle-journal-card__title {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.2;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
}
.cle-journal-card__lead {
    font-family: var(--cle-body);
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--cle-text-2);
    margin-top: 4px;
}
.cle-journal-card__author {
    margin-top: auto;
    padding-top: var(--sp-3);
    font-family: var(--cle-mono);
    font-size: 11px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}


/* ─────────────────────── 13. FORM · CONTACT ─────────────────────── */
.cle-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    background: var(--cle-surface-1);
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r);
    padding: var(--sp-5);
}
@media (min-width: 720px) {
    .cle-form {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-5);
        padding: var(--sp-6);
    }
}
.cle-form__field {
    display: flex; flex-direction: column;
    gap: 8px;
    position: relative;
}
.cle-form__field--full { grid-column: 1 / -1; }
.cle-form__label {
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-2);
    display: flex; align-items: center; gap: 6px;
}
.cle-form__label--req::after {
    content: "*";
    color: var(--cle-cyan);
    font-size: 14px;
}
.cle-form__input,
.cle-form__select,
.cle-form__textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--cle-void);
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r-sm);
    font-family: var(--cle-body);
    font-size: 14.5px;
    color: var(--cle-text);
    transition: border-color var(--d-fast) var(--ease), box-shadow var(--d-fast) var(--ease);
}
.cle-form__textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.55;
}
.cle-form__input:focus,
.cle-form__select:focus,
.cle-form__textarea:focus {
    border-color: var(--cle-cyan);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}
.cle-form__input::placeholder,
.cle-form__textarea::placeholder { color: var(--cle-text-3); }
.cle-form__error {
    min-height: 14px;
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-form__msg {
    grid-column: 1 / -1;
    padding: var(--sp-4);
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r-sm);
    font-family: var(--cle-body);
    font-size: 14.5px;
    line-height: 1.55;
}
.cle-form__msg.is-ok    { background: rgba(0, 229, 255, 0.08); border-color: var(--cle-cyan); color: var(--cle-text); }
.cle-form__msg.is-error { background: rgba(167, 139, 250, 0.08); border-color: var(--cle-violet); color: var(--cle-text); }
.cle-form__submit {
    grid-column: 1 / -1;
    display: flex; justify-content: flex-end;
    margin-top: var(--sp-3);
}
.cle-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px; height: 1px;
    opacity: 0; pointer-events: none;
}

.cle-contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
}
@media (min-width: 1100px) {
    .cle-contact-layout { grid-template-columns: 1.5fr 1fr; gap: var(--sp-6); }
}
.cle-contact-side {
    background: var(--cle-surface-2);
    border: var(--rule) solid var(--cle-border);
    border-radius: var(--r);
    padding: var(--sp-5);
    display: flex; flex-direction: column; gap: var(--sp-4);
    position: relative;
    overflow: hidden;
}
.cle-contact-side::before {
    content: "";
    position: absolute;
    top: -100px; left: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(91, 139, 255, 0.10), transparent 65%);
    pointer-events: none;
}
.cle-contact-side > * { position: relative; }
.cle-contact-side h4 {
    font-family: var(--cle-mono);
    font-size: 10px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-contact-side__big {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.15;
    color: var(--cle-text);
    letter-spacing: var(--ls-display);
    word-break: break-word;
}
.cle-contact-side__mono {
    font-family: var(--cle-mono);
    font-size: 12px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text);
    line-height: 1.6;
}
.cle-contact-side__group {
    padding-block: var(--sp-3);
    border-top: var(--rule) solid var(--cle-border);
    display: flex; flex-direction: column; gap: 6px;
}
.cle-contact-side__group:first-of-type { border-top: 0; padding-top: 0; }
.cle-contact-side a {
    color: var(--cle-text);
    transition: color var(--d-fast) var(--ease);
    word-break: break-word;
}
.cle-contact-side a:hover { color: var(--cle-cyan); }


/* ─────────────────────── 14. STATE PAGES ─────────────────────── */
.cle-state {
    padding-block: clamp(96px, 14vh, 160px);
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    gap: var(--sp-4);
    max-width: 680px;
    margin-inline: auto;
}
.cle-state__num {
    display: grid; place-items: center;
    min-width: 120px;
    height: 60px;
    padding-inline: var(--sp-4);
    border: var(--rule) solid var(--cle-cyan);
    border-radius: var(--r-sm);
    color: var(--cle-cyan);
    font-family: var(--cle-mono);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    background: rgba(0, 229, 255, 0.06);
}
.cle-state__num--violet  { border-color: var(--cle-violet); color: var(--cle-violet); background: rgba(167, 139, 250, 0.06); }
.cle-state__num--silver  { border-color: var(--cle-silver); color: var(--cle-silver); background: var(--cle-surface-1); }
.cle-state__title {
    margin-top: var(--sp-3);
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: clamp(36px, 5vw, 56px);
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--cle-text);
}
.cle-state__title em { font-family: var(--cle-serif); font-style: italic; color: var(--cle-cyan); font-weight: 400; }
.cle-state__copy {
    max-width: 56ch;
    font-family: var(--cle-body);
    font-size: var(--t-lead);
    line-height: var(--lh-loose);
    color: var(--cle-text-2);
}
.cle-state__copy strong { color: var(--cle-text); font-weight: 600; }
.cle-state__ref {
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-state__cta {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
    margin-top: var(--sp-3);
}


/* ─────────────────────── 15. COOKIE BANNER ─────────────────────── */
.cle-cookie {
    position: fixed;
    bottom: 18px; left: 18px;
    z-index: var(--z-cookie);
    width: min(440px, calc(100% - 36px));
    background: var(--cle-surface-2);
    color: var(--cle-text);
    border: var(--rule) solid var(--cle-border-2);
    border-radius: var(--r);
    padding: var(--sp-4);
    display: flex; flex-direction: column; gap: var(--sp-3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--d-base) var(--ease), transform var(--d-base) var(--ease);
    pointer-events: none;
    box-shadow: 0 20px 60px rgba(6, 8, 15, 0.6);
}
.cle-cookie.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cle-cookie__head {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
}
.cle-cookie__head__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--cle-cyan);
    box-shadow: var(--cle-glow-cyan);
}
.cle-cookie__txt {
    font-family: var(--cle-body);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--cle-text-2);
}
.cle-cookie__txt a { color: var(--cle-cyan); border-bottom: var(--rule) solid var(--cle-cyan); }
.cle-cookie__btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cle-cookie__btn {
    flex: 1;
    padding: 9px 14px;
    border-radius: var(--r-sm);
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background var(--d-fast) var(--ease), color var(--d-fast) var(--ease);
}
.cle-cookie__btn--decline {
    background: transparent;
    color: var(--cle-text-2);
    box-shadow: inset 0 0 0 1px var(--cle-border);
}
.cle-cookie__btn--decline:hover {
    color: var(--cle-text);
    box-shadow: inset 0 0 0 1px var(--cle-cyan);
}
.cle-cookie__btn--accept {
    background: var(--cle-cyan);
    color: var(--cle-void);
    font-weight: 600;
}
.cle-cookie__btn--accept:hover { background: var(--cle-cyan-soft); }


/* ─────────────────────── 16. FOOTER ─────────────────────── */
.cle-footer {
    margin-top: clamp(80px, 10vh, 144px);
    border-top: var(--rule) solid var(--cle-border);
    background: var(--cle-surface-1);
    padding-block: clamp(64px, 8vw, 112px);
}
.cle-footer__signoff {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    margin-bottom: var(--sp-7);
    padding-bottom: var(--sp-6);
    border-bottom: var(--rule) solid var(--cle-border);
}
@media (min-width: 960px) {
    .cle-footer__signoff { grid-template-columns: 1.5fr auto; align-items: end; }
}
.cle-footer__signoff h2 {
    font-family: var(--cle-display);
    font-weight: 500;
    font-size: var(--t-display-2);
    line-height: var(--lh-display);
    letter-spacing: var(--ls-display);
    color: var(--cle-text);
    max-width: 18ch;
}
.cle-footer__signoff h2 em { font-family: var(--cle-serif); font-style: italic; color: var(--cle-cyan); font-weight: 400; }
.cle-footer__signoff__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.cle-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
}
@media (min-width: 720px)  { .cle-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cle-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-7); } }

.cle-footer__col h4 {
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-cyan);
    margin-bottom: var(--sp-3);
}
.cle-footer__col p,
.cle-footer__col li,
.cle-footer__col a {
    font-family: var(--cle-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--cle-text-2);
}
.cle-footer__col a {
    transition: color var(--d-fast) var(--ease);
    display: inline-block;
    padding-block: 2px;
}
.cle-footer__col a:hover { color: var(--cle-cyan); }
.cle-footer__col strong {
    display: block;
    font-family: var(--cle-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--cle-text);
    margin-bottom: 8px;
    letter-spacing: var(--ls-display);
}
.cle-footer__contact { margin-top: var(--sp-3); }
.cle-footer__hours {
    margin-top: var(--sp-3);
    font-size: 12px;
    color: var(--cle-text-3);
}

.cle-footer__bottom {
    margin-top: var(--sp-6);
    padding-top: var(--sp-4);
    border-top: var(--rule) solid var(--cle-border);
    display: flex; flex-wrap: wrap; gap: var(--sp-4);
    justify-content: space-between; align-items: center;
    font-family: var(--cle-mono);
    font-size: 10.5px;
    letter-spacing: var(--ls-mono);
    text-transform: uppercase;
    color: var(--cle-text-3);
}
.cle-footer__bottom a { color: var(--cle-cyan); border-bottom: var(--rule) solid var(--cle-cyan); padding-bottom: 1px; }


/* ─────────────────────── 17. MOTION · A11Y · PRINT ─────────────────────── */
:focus-visible {
    outline: 2px solid var(--cle-cyan);
    outline-offset: 3px;
    border-radius: 4px;
}
.cle-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.cle-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .cle-reveal { opacity: 1; transform: none; }
}

@media print {
    .cle-sidebar, .cle-topbar, .cle-sheet, .cle-cookie, .cle-footer__signoff { display: none; }
    body { background: white; color: black; }
}
