/* ============================================================
   ONYX — dark-luxury tenant theme
   Near-black canvas, Playfair Display serif headlines, warm-white
   ink, a fixed gold hairline for decoration, and brand colors
   driving the CTAs + accents. Sharper corners than Aurora (luxury
   reads crisp). Shares Aurora's page MARKUP (.aur-* classes) but
   every rule is scoped to body.theme-onyx so the two never collide.

   CONTRAST SAFEGUARD: on the dark base, a dark brand color (e.g. the
   default navy) used as TEXT would be unreadable, so accent text uses
   --aur-brand-lift (brand mixed toward warm-white). Brand-painted
   surfaces (CTA backgrounds) still pair with --brand-*-ink per
   THEME_BUILD_SPEC.
   ============================================================ */

body.theme-onyx {
    --aur-bg:           #0a0a0e;
    --aur-bg-2:         #101016;
    --aur-surface:      #15151d;
    --aur-glass:        rgba(20,20,28,0.62);
    --aur-glass-strong: rgba(16,16,23,0.9);
    --aur-ink:          #f3efe7;
    --aur-ink-soft:     #b7b2a6;
    --aur-ink-mute:     #807a6e;
    --aur-line:         rgba(255,255,255,0.09);
    --aur-line-strong:  rgba(255,255,255,0.18);
    --aur-gold:         #c8a96a;

    --aur-radius:       9px;
    --aur-radius-sm:    6px;
    --aur-radius-pill:  5px;

    --aur-ease:         cubic-bezier(0.23, 1, 0.32, 1);
    --aur-ease-soft:    cubic-bezier(0.4, 0, 0.2, 1);
    --aur-ease-inout:   cubic-bezier(0.77, 0, 0.175, 1);

    --aur-shadow-sm:    0 1px 2px rgba(0,0,0,0.4), 0 4px 14px rgba(0,0,0,0.3);
    --aur-shadow-md:    0 10px 26px rgba(0,0,0,0.45), 0 24px 60px rgba(0,0,0,0.4);
    --aur-shadow-lg:    0 16px 40px rgba(0,0,0,0.5), 0 40px 90px rgba(0,0,0,0.5);

    /* brand, made readable as text on a dark base */
    --aur-brand-lift:   color-mix(in srgb, var(--brand-primary) 52%, #f3efe7);
    --aur-brand-edge:   color-mix(in srgb, var(--aur-gold) 55%, transparent);

    background: var(--aur-bg);
    color: var(--aur-ink);
    font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility; margin: 0; overflow-x: hidden;
}
body.theme-onyx * { box-sizing: border-box; }

/* Atmosphere: a low brand glow + faint gold wash on black */
body.theme-onyx::before {
    content: ""; position: fixed; inset: -20vh -10vw auto -10vw; height: 92vh; z-index: 0; pointer-events: none;
    background:
        radial-gradient(48% 52% at 22% 10%, color-mix(in srgb, var(--brand-primary) 28%, transparent), transparent 60%),
        radial-gradient(40% 46% at 84% 4%, color-mix(in srgb, var(--aur-gold) 14%, transparent), transparent 60%);
    filter: blur(12px); opacity: 0.5;
}
body.theme-onyx > * { position: relative; z-index: 1; }
.theme-onyx .aur-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Type — Playfair serif display, warm-white */
.theme-onyx h1, .theme-onyx h2, .theme-onyx h3, .theme-onyx h4 {
    font-family: "Playfair Display", Georgia, serif; font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--aur-ink); margin: 0 0 0.5em; text-wrap: balance;
}
.theme-onyx h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 700; }
.theme-onyx h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.theme-onyx h3 { font-size: 1.32rem; font-family: "Hanken Grotesk", sans-serif; font-weight: 700; letter-spacing: -0.01em; }
.theme-onyx p  { margin: 0 0 1em; color: var(--aur-ink-soft); }
.theme-onyx a  { color: inherit; text-decoration: none; }
.theme-onyx h1 em, .theme-onyx h2 em, .theme-onyx .aur-accent,
.theme-onyx .aur-svc-title em { font-style: italic; font-weight: 600; color: var(--aur-brand-lift); }

.theme-onyx .aur-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aur-gold); margin-bottom: 18px; }
.theme-onyx .aur-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--aur-gold); opacity: 0.7; }

/* Buttons */
.theme-onyx .aur-btn { display: inline-flex; align-items: center; gap: 9px; font-family: "Hanken Grotesk", sans-serif; font-weight: 600; font-size: 0.98rem; line-height: 1; padding: 15px 28px; border-radius: var(--aur-radius-pill); border: 1px solid transparent; cursor: pointer; transition: transform 160ms var(--aur-ease), box-shadow 220ms var(--aur-ease), background 200ms var(--aur-ease), border-color 200ms var(--aur-ease); }
.theme-onyx .aur-btn svg { transition: transform 200ms var(--aur-ease); }
.theme-onyx .aur-btn:active { transform: scale(0.97); }
.theme-onyx .aur-btn-primary { background: var(--brand-primary); color: var(--brand-primary-ink); box-shadow: 0 8px 26px color-mix(in srgb, var(--brand-primary) 30%, transparent); }
.theme-onyx .aur-btn-ghost { background: transparent; color: var(--aur-ink); border-color: var(--aur-line-strong); }
@media (hover: hover) and (pointer: fine) {
    .theme-onyx .aur-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px color-mix(in srgb, var(--brand-primary) 42%, transparent); }
    .theme-onyx .aur-btn-primary:hover svg { transform: translateX(3px); }
    .theme-onyx .aur-btn-ghost:hover { border-color: var(--aur-gold); color: var(--aur-gold); transform: translateY(-2px); }
}

/* Card */
.theme-onyx .aur-card { background: var(--aur-surface); border: 1px solid var(--aur-line); border-radius: var(--aur-radius); box-shadow: var(--aur-shadow-sm); transition: transform 280ms var(--aur-ease), box-shadow 280ms var(--aur-ease), border-color 280ms var(--aur-ease); position: relative; }
@media (hover: hover) and (pointer: fine) { .theme-onyx .aur-card:hover { transform: translateY(-4px); box-shadow: var(--aur-shadow-lg); border-color: var(--aur-brand-edge); } }

/* Nav */
.theme-onyx .aur-header { position: sticky; top: 0; z-index: 100; padding: 14px 0; }
.theme-onyx .aur-nav { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 16px 12px 24px; background: var(--aur-glass); backdrop-filter: blur(18px) saturate(1.2); -webkit-backdrop-filter: blur(18px) saturate(1.2); border: 1px solid var(--aur-line); border-bottom-color: var(--aur-brand-edge); border-radius: var(--aur-radius); box-shadow: var(--aur-shadow-sm); transition: background 240ms var(--aur-ease), box-shadow 240ms var(--aur-ease); }
.theme-onyx .aur-header.scrolled .aur-nav { background: var(--aur-glass-strong); box-shadow: var(--aur-shadow-md); }
.theme-onyx .aur-logo { display: inline-flex; align-items: center; gap: 11px; font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.3rem; letter-spacing: -0.01em; color: var(--aur-ink); }
.theme-onyx .aur-logo img { height: 38px; width: auto; display: block; }
.theme-onyx .aur-logo-mark { width: 36px; height: 36px; border-radius: 7px; display: grid; place-items: center; background: var(--brand-primary); color: var(--brand-primary-ink); font-family: "Playfair Display", serif; font-size: 1.15rem; font-weight: 700; }
.theme-onyx .aur-nav-links { display: flex; align-items: center; gap: 4px; }
.theme-onyx .aur-nav-links > a:not(.aur-nav-cta):not(.aur-nav-phone) { padding: 9px 15px; border-radius: var(--aur-radius-pill); font-size: 0.95rem; font-weight: 500; color: var(--aur-ink-soft); transition: color 160ms var(--aur-ease), background 160ms var(--aur-ease); }
.theme-onyx .aur-nav-links a.active, .theme-onyx .aur-nav-links > a:not(.aur-nav-cta):not(.aur-nav-phone):hover { color: var(--aur-gold); background: rgba(255,255,255,0.04); }
.theme-onyx .aur-nav-phone { font-weight: 600; color: var(--aur-ink); padding: 9px 12px; font-size: 0.95rem; }
.theme-onyx .aur-nav-cta { background: var(--brand-primary); color: var(--brand-primary-ink); padding: 11px 22px; border-radius: var(--aur-radius-pill); font-weight: 600; font-size: 0.94rem; transition: transform 160ms var(--aur-ease), box-shadow 200ms var(--aur-ease); }
.theme-onyx .aur-nav-cta:active { transform: scale(0.97); }
@media (hover: hover) { .theme-onyx .aur-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px color-mix(in srgb, var(--brand-primary) 40%, transparent); } }
.theme-onyx .aur-nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--aur-line-strong); background: transparent; border-radius: 8px; cursor: pointer; color: var(--aur-ink); align-items: center; justify-content: center; }

/* Hero */
.theme-onyx .aur-hero { padding: 70px 0 76px; }
.theme-onyx .aur-hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.theme-onyx .aur-hero.has-form .aur-hero-grid { grid-template-columns: 1.05fr 0.95fr; }
.theme-onyx .aur-hero h1 { margin-bottom: 22px; }
.theme-onyx .aur-hero-sub { font-size: clamp(1.1rem, 1.6vw, 1.34rem); color: var(--aur-ink-soft); max-width: 38ch; margin-bottom: 34px; }
.theme-onyx .aur-hero:not(.has-form) .aur-hero-sub { margin-left: auto; margin-right: auto; }
.theme-onyx .aur-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.theme-onyx .aur-hero:not(.has-form) .aur-hero-content { text-align: center; max-width: 820px; margin: 0 auto; }
.theme-onyx .aur-hero:not(.has-form) .aur-hero-actions { justify-content: center; }
.theme-onyx .aur-hero:not(.has-form) .aur-trust { justify-content: center; }
.theme-onyx .aur-hero-media { border-radius: var(--aur-radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--aur-shadow-lg); border: 1px solid var(--aur-line); }
.theme-onyx .aur-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-onyx .aur-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; }
.theme-onyx .aur-trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 500; color: var(--aur-ink-soft); }
.theme-onyx .aur-trust-item svg { color: var(--aur-gold); flex-shrink: 0; }

/* Hero form */
.theme-onyx .aur-form-card { background: var(--aur-glass-strong); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid var(--aur-line); border-radius: var(--aur-radius); box-shadow: var(--aur-shadow-lg); padding: 30px; }
.theme-onyx .aur-form-tag { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.5rem; margin-bottom: 4px; }
.theme-onyx .aur-form-sub { font-size: 0.95rem; margin-bottom: 18px; }
.theme-onyx .aur-form .form-group { margin-bottom: 13px; }
.theme-onyx .aur-form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--aur-ink-soft); margin-bottom: 6px; }
.theme-onyx .aur-form .required { color: var(--aur-gold); }
.theme-onyx .aur-form input, .theme-onyx .aur-form select, .theme-onyx .aur-form textarea { width: 100%; padding: 12px 14px; font: inherit; font-size: 0.95rem; color: var(--aur-ink); background: rgba(255,255,255,0.04); border: 1px solid var(--aur-line-strong); border-radius: var(--aur-radius-sm); transition: border-color 160ms var(--aur-ease), box-shadow 160ms var(--aur-ease); }
.theme-onyx .aur-form input::placeholder, .theme-onyx .aur-form textarea::placeholder { color: var(--aur-ink-mute); }
.theme-onyx .aur-form select option { background: var(--aur-surface); color: var(--aur-ink); }
.theme-onyx .aur-form input:focus, .theme-onyx .aur-form select:focus, .theme-onyx .aur-form textarea:focus { outline: none; border-color: var(--aur-gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--aur-gold) 22%, transparent); }
.theme-onyx .aur-form-submit { width: 100%; margin-top: 6px; justify-content: center; background: var(--brand-primary); color: var(--brand-primary-ink); border: none; border-radius: var(--aur-radius-pill); padding: 15px; font-family: "Hanken Grotesk", sans-serif; font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: 9px; cursor: pointer; box-shadow: 0 8px 24px color-mix(in srgb, var(--brand-primary) 32%, transparent); transition: transform 160ms var(--aur-ease); }
.theme-onyx .aur-form-submit:active { transform: scale(0.98); }
@media (hover: hover) { .theme-onyx .aur-form-submit:hover { transform: translateY(-2px); } }

/* Section scaffold */
.theme-onyx .aur-section { padding: 88px 0; }
.theme-onyx .aur-section-head { max-width: 700px; margin: 0 auto 54px; text-align: center; }
.theme-onyx .aur-section-head .aur-eyebrow { justify-content: center; }
.theme-onyx .aur-section-desc { font-size: 1.1rem; color: var(--aur-ink-soft); }

/* Stats */
.theme-onyx .aur-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; margin-top: -38px; background: var(--aur-line); border: 1px solid var(--aur-line); border-radius: var(--aur-radius); overflow: hidden; }
.theme-onyx .aur-stat { background: var(--aur-surface); padding: 28px 20px; text-align: center; }
.theme-onyx .aur-stat-num { font-family: "Playfair Display", serif; font-weight: 700; font-size: 2.5rem; line-height: 1; color: var(--aur-brand-lift); }
.theme-onyx .aur-stat-label { font-size: 0.84rem; color: var(--aur-ink-mute); margin-top: 8px; letter-spacing: 0.04em; text-transform: uppercase; }

/* Split / intro */
.theme-onyx .aur-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.theme-onyx .aur-split-media { border-radius: var(--aur-radius); overflow: hidden; aspect-ratio: 3/2; box-shadow: var(--aur-shadow-md); border: 1px solid var(--aur-line); }
.theme-onyx .aur-split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-onyx .aur-content-body :is(p, li) { color: var(--aur-ink-soft); }

/* Why */
.theme-onyx .aur-why { background: var(--aur-bg-2); border-top: 1px solid var(--aur-line); border-bottom: 1px solid var(--aur-line); }
.theme-onyx .aur-why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.theme-onyx .aur-why.no-photo .aur-why-grid { grid-template-columns: 1fr; }
.theme-onyx .aur-why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.theme-onyx .aur-why-item { display: flex; gap: 16px; padding: 20px; background: var(--aur-surface); border: 1px solid var(--aur-line); border-radius: var(--aur-radius-sm); }
.theme-onyx .aur-why-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 8px; display: grid; place-items: center; background: rgba(200,169,106,0.12); color: var(--aur-gold); }
.theme-onyx .aur-why-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.theme-onyx .aur-why-item p { margin: 0; font-size: 0.95rem; }
.theme-onyx .aur-why-photo { border-radius: var(--aur-radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--aur-shadow-lg); border: 1px solid var(--aur-line); }
.theme-onyx .aur-why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Services */
.theme-onyx .aur-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.theme-onyx .aur-svc-card { overflow: hidden; display: flex; flex-direction: column; }
.theme-onyx .aur-svc-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.theme-onyx .aur-svc-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--aur-ease); filter: saturate(0.92); }
@media (hover: hover) { .theme-onyx .aur-svc-card:hover .aur-svc-media img { transform: scale(1.05); filter: none; } }
.theme-onyx .aur-svc-num { position: absolute; top: 12px; left: 12px; width: 40px; height: 40px; border-radius: 7px; display: grid; place-items: center; font-family: "Playfair Display", serif; font-style: italic; font-size: 1.3rem; background: var(--aur-glass-strong); color: var(--aur-gold); border: 1px solid var(--aur-line); }
.theme-onyx .aur-svc-body { padding: 22px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.theme-onyx .aur-svc-body h3 span { color: var(--aur-ink); transition: color 160ms var(--aur-ease); }
@media (hover: hover) { .theme-onyx .aur-svc-card:hover h3 span { color: var(--aur-gold); } }
.theme-onyx .aur-svc-body p { font-size: 0.95rem; margin: 0; }
.theme-onyx .aur-svc-more { margin-top: auto; padding-top: 12px; font-weight: 600; font-size: 0.9rem; color: var(--aur-gold); display: inline-flex; align-items: center; gap: 6px; }
.theme-onyx .aur-center-link { text-align: center; margin-top: 38px; }

/* Gallery / BA */
.theme-onyx .aur-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.theme-onyx .aur-gallery-card { border-radius: var(--aur-radius); overflow: hidden; box-shadow: var(--aur-shadow-md); border: 1px solid var(--aur-line); background: var(--aur-surface); }
.theme-onyx .ba-slider { position: relative; aspect-ratio: 3/2; overflow: hidden; cursor: ew-resize; user-select: none; }
.theme-onyx .ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-onyx .ba-after { clip-path: inset(0 0 0 50%); }
.theme-onyx .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--aur-gold); transform: translateX(-50%); }
.theme-onyx .ba-handle::after { content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--aur-gold); color: #1a160c; display: grid; place-items: center; font-size: 15px; box-shadow: var(--aur-shadow-md); }
.theme-onyx .ba-label { position: absolute; bottom: 12px; padding: 4px 11px; border-radius: var(--aur-radius-pill); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(0,0,0,0.7); color: var(--aur-ink); backdrop-filter: blur(4px); }
.theme-onyx .ba-label-before { left: 12px; } .theme-onyx .ba-label-after { right: 12px; }
.theme-onyx .aur-gallery-label { padding: 14px 18px; font-weight: 600; font-size: 0.96rem; }

/* Process */
.theme-onyx .aur-process { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.theme-onyx .aur-process-step { padding: 28px 24px; background: var(--aur-surface); border: 1px solid var(--aur-line); border-radius: var(--aur-radius); }
.theme-onyx .aur-process-num { font-family: "Playfair Display", serif; font-style: italic; font-size: 2.6rem; line-height: 1; color: var(--aur-gold); margin-bottom: 12px; }
.theme-onyx .aur-process-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.theme-onyx .aur-process-step p { margin: 0; font-size: 0.94rem; }

/* Reviews */
.theme-onyx .aur-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.theme-onyx .aur-review { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.theme-onyx .aur-review-stars { color: var(--aur-gold); letter-spacing: 2px; font-size: 1.05rem; }
.theme-onyx .aur-review-text { color: var(--aur-ink); font-size: 1.02rem; line-height: 1.6; flex: 1; font-family: "Playfair Display", serif; font-style: italic; }
.theme-onyx .aur-review-author { display: flex; align-items: center; gap: 11px; }
.theme-onyx .aur-review-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-primary); color: var(--brand-primary-ink); font-weight: 700; font-family: "Hanken Grotesk", sans-serif; font-style: normal; }
.theme-onyx .aur-review-name { font-weight: 600; font-size: 0.94rem; }
.theme-onyx .aur-review-source { font-size: 0.8rem; color: var(--aur-ink-mute); }
.theme-onyx .aur-review-readmore { align-self: flex-start; background: none; border: none; padding: 0; color: var(--aur-gold); font: inherit; font-size: 0.88rem; font-weight: 600; cursor: pointer; }

/* Band */
.theme-onyx .aur-band { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--aur-radius); overflow: hidden; box-shadow: var(--aur-shadow-md); border: 1px solid var(--aur-line); }
.theme-onyx .aur-band.is-reversed .aur-band-media { order: 2; }
.theme-onyx .aur-band.is-no-image { grid-template-columns: 1fr; }
.theme-onyx .aur-band-media { min-height: 280px; }
.theme-onyx .aur-band-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-onyx .aur-band-text { padding: 48px; display: flex; flex-direction: column; justify-content: center; background: var(--brand-primary); color: var(--brand-primary-ink); }
.theme-onyx .aur-band-text h2 { color: var(--brand-primary-ink); }
.theme-onyx .aur-band-text p { color: color-mix(in srgb, var(--brand-primary-ink) 80%, transparent); }
.theme-onyx .aur-band-text .aur-btn { align-self: flex-start; background: var(--brand-primary-ink); color: var(--brand-primary); margin-top: 8px; }

/* FAQ */
.theme-onyx .aur-faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.theme-onyx .aur-faq-item { background: var(--aur-surface); border: 1px solid var(--aur-line); border-radius: var(--aur-radius-sm); overflow: hidden; transition: border-color 200ms var(--aur-ease); }
.theme-onyx .aur-faq-item.active { border-color: var(--aur-brand-edge); }
.theme-onyx .faq-toggle { width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; font: inherit; font-weight: 600; font-size: 1.06rem; color: var(--aur-ink); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.theme-onyx .faq-icon { flex-shrink: 0; color: var(--aur-gold); transition: transform 280ms var(--aur-ease-inout); }
.theme-onyx .aur-faq-item.active .faq-icon { transform: rotate(45deg); }
.theme-onyx .faq-answer { max-height: 0; overflow: hidden; transition: max-height 320ms var(--aur-ease-inout); }
.theme-onyx .faq-answer p { padding: 0 22px 20px; margin: 0; color: var(--aur-ink-soft); }

/* Page hero / prose / breadcrumbs */
.theme-onyx .aur-page-hero { padding: 84px 0 28px; text-align: center; }
.theme-onyx .aur-page-hero .aur-eyebrow { justify-content: center; }
.theme-onyx .aur-page-body { padding: 8px 0 88px; }
.theme-onyx .aur-prose { max-width: 760px; margin: 0 auto; font-size: 1.08rem; }
.theme-onyx .aur-prose :is(h2,h3) { margin-top: 1.5em; }
.theme-onyx .aur-prose p { color: var(--aur-ink-soft); }
.theme-onyx .aur-prose a { color: var(--aur-gold); text-decoration: underline; text-underline-offset: 3px; }
.theme-onyx .aur-breadcrumbs { font-size: 0.84rem; color: var(--aur-ink-mute); margin-bottom: 18px; }
.theme-onyx .aur-breadcrumbs :is(ol, ul) { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; justify-content: center; }
.theme-onyx .aur-breadcrumbs a { color: var(--aur-ink-soft); }
@media (hover: hover) { .theme-onyx .aur-breadcrumbs a:hover { color: var(--aur-gold); } }
.theme-onyx .aur-page-hero.has-image { position: relative; padding: 110px 0 70px; background: var(--aur-hero-img) center/cover no-repeat; }
.theme-onyx .aur-page-hero.has-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(5,5,8,0.82), rgba(5,5,8,0.6)); }
.theme-onyx .aur-page-hero.has-image > .aur-wrap { position: relative; z-index: 1; }

/* Service number badge on services index reuse */
.theme-onyx .aur-svc-media { position: relative; }

/* Logo marquee */
.theme-onyx .aur-logo-marquee-sec { padding: 46px 0; border-bottom: 1px solid var(--aur-line); }
.theme-onyx .aur-marquee-heading { text-align: center; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aur-ink-mute); font-weight: 600; margin: 0 0 26px; }
.theme-onyx .aur-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.theme-onyx .aur-marquee-track { display: flex; width: max-content; animation: aur-marquee 42s linear infinite; }
.theme-onyx .aur-marquee-item { flex: 0 0 auto; height: 60px; margin: 0 36px; display: flex; align-items: center; }
.theme-onyx .aur-marquee-item img { max-height: 100%; max-width: 160px; object-fit: contain; filter: grayscale(100%) brightness(2) opacity(0.55); transition: filter 0.35s var(--aur-ease); }
@media (hover: hover) { .theme-onyx .aur-marquee-item img:hover { filter: brightness(1.4); } }
@media (prefers-reduced-motion: reduce) { .theme-onyx .aur-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* Contact */
.theme-onyx .aur-contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.theme-onyx .aur-contact-form-card { padding: 34px; }
.theme-onyx .aur-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.theme-onyx .aur-contact-side { display: flex; flex-direction: column; gap: 14px; }
.theme-onyx .aur-info-card { display: flex; gap: 15px; align-items: flex-start; padding: 20px 22px; }
.theme-onyx .aur-info-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 8px; display: grid; place-items: center; font-size: 1.2rem; background: rgba(200,169,106,0.12); color: var(--aur-gold); }
.theme-onyx .aur-info-card h3 { font-size: 1.02rem; margin: 0 0 3px; }
.theme-onyx .aur-info-card p { margin: 0; font-size: 0.96rem; }
.theme-onyx .aur-info-card a { color: var(--aur-brand-lift); font-weight: 600; }
.theme-onyx .aur-info-meta { color: var(--aur-ink-mute) !important; font-size: 0.82rem !important; font-weight: 400 !important; }

/* Service-single */
.theme-onyx .aur-svc-layout { padding: 70px 0 30px; }
.theme-onyx .aur-svc-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 56px; align-items: start; }
.theme-onyx .aur-svc-main { min-width: 0; }
.theme-onyx .aur-svc-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 26px; }
.theme-onyx .aur-svc-head { display: grid; grid-template-columns: 1fr 0.85fr; gap: 36px; align-items: center; }
.theme-onyx .aur-svc-head-img { border-radius: var(--aur-radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--aur-shadow-lg); border: 1px solid var(--aur-line); }
.theme-onyx .aur-svc-head-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-onyx .aur-svc-title { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 14px; }
.theme-onyx .aur-svc-lede { font-size: 1.18rem; color: var(--aur-ink-soft); margin-bottom: 20px; }
.theme-onyx .aur-svc-trust { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 0; margin: 8px 0; border-top: 1px solid var(--aur-line); border-bottom: 1px solid var(--aur-line); }
.theme-onyx .aur-svc-trust-item { font-size: 0.86rem; font-weight: 600; color: var(--aur-ink); padding: 7px 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--aur-line); border-radius: var(--aur-radius-pill); }
.theme-onyx .aur-svc-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.theme-onyx .aur-svc-ba.single { grid-template-columns: 1fr; max-width: 560px; }
.theme-onyx .aur-svc-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.theme-onyx .aur-svc-pill { padding: 8px 15px; border-radius: var(--aur-radius-pill); background: var(--aur-surface); border: 1px solid var(--aur-line-strong); font-size: 0.88rem; font-weight: 600; color: var(--aur-ink); transition: transform 160ms var(--aur-ease), color 160ms var(--aur-ease), border-color 160ms; }
@media (hover: hover) { .theme-onyx .aur-svc-pill:hover { color: var(--aur-gold); border-color: var(--aur-gold); transform: translateY(-1px); } }
.theme-onyx .aur-svc-side-cta { padding: 24px; }
.theme-onyx .aur-svc-side-phone { display: block; font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.8rem; color: var(--aur-ink); margin: 2px 0; }
.theme-onyx .aur-svc-side-block { padding-top: 24px; border-top: 1px solid var(--aur-line); }
.theme-onyx .aur-svc-glance { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.theme-onyx .aur-svc-glance li { font-size: 0.92rem; color: var(--aur-ink-soft); }
.theme-onyx .aur-svc-glance strong { display: inline-block; min-width: 64px; font-family: "Playfair Display", serif; font-size: 1.25rem; color: var(--aur-brand-lift); }
.theme-onyx .aur-svc-other { list-style: none; padding: 0; margin: 0 0 12px; }
.theme-onyx .aur-svc-other li { border-bottom: 1px solid var(--aur-line); }
.theme-onyx .aur-svc-other li:last-child { border-bottom: 0; }
.theme-onyx .aur-svc-other a { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; padding: 11px 0; transition: transform 200ms var(--aur-ease); }
@media (hover: hover) { .theme-onyx .aur-svc-other a:hover { transform: translateX(2px); } .theme-onyx .aur-svc-other a:hover .aur-svc-other-title { color: var(--aur-gold); } }
.theme-onyx .aur-svc-other-thumb { aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; background: var(--aur-bg-2); }
.theme-onyx .aur-svc-other-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-onyx .aur-svc-other-title { font-weight: 600; font-size: 0.96rem; color: var(--aur-ink); transition: color 160ms var(--aur-ease); }

/* Pre-CTA + Footer */
.theme-onyx .aur-pre-cta { text-align: center; padding: 84px 24px; max-width: 760px; margin: 0 auto; }
.theme-onyx .aur-pre-cta h2 { margin-bottom: 14px; }
.theme-onyx .aur-pre-cta p { font-size: 1.1rem; margin-bottom: 28px; }
.theme-onyx .aur-footer { background: #060609; color: #9a958a; padding: 64px 0 30px; margin-top: 40px; border-top: 1px solid var(--aur-line); }
.theme-onyx .aur-footer h4 { color: var(--aur-ink); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; font-family: "Hanken Grotesk", sans-serif; }
.theme-onyx .aur-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.theme-onyx .aur-footer a { color: #9a958a; transition: color 160ms var(--aur-ease); }
@media (hover: hover) { .theme-onyx .aur-footer a:hover { color: var(--aur-gold); } }
.theme-onyx .aur-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: 0.95rem; }
.theme-onyx .aur-footer-brand { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.5rem; color: var(--aur-ink); margin-bottom: 12px; }
.theme-onyx .aur-footer-tag { font-size: 0.96rem; color: #6f6a5f; max-width: 34ch; }
.theme-onyx .aur-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.theme-onyx .aur-footer-social a { width: 38px; height: 38px; border-radius: 7px; display: grid; place-items: center; background: rgba(255,255,255,0.05); color: #9a958a; transition: background 200ms var(--aur-ease), transform 200ms var(--aur-ease); }
@media (hover: hover) { .theme-onyx .aur-footer-social a:hover { background: var(--aur-gold); color: #1a160c; transform: translateY(-2px); } }
.theme-onyx .aur-footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--aur-line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.85rem; color: #6f6a5f; }
.theme-onyx .aur-mobile-cta { display: none; }

/* Motion */
.theme-onyx .reveal { opacity: 0; transform: translateY(16px); transition: opacity 680ms var(--aur-ease), transform 680ms var(--aur-ease); }
.theme-onyx .reveal.visible { opacity: 1; transform: none; }
.theme-onyx .rd1 { transition-delay: 70ms; } .theme-onyx .rd2 { transition-delay: 140ms; } .theme-onyx .rd3 { transition-delay: 210ms; } .theme-onyx .rd4 { transition-delay: 280ms; }
@media (prefers-reduced-motion: reduce) { .theme-onyx .reveal { transition: opacity 300ms ease; transform: none; } .theme-onyx .aur-btn, .theme-onyx .aur-card, .theme-onyx .aur-svc-media img { transition: none; } }

/* Responsive */
@media (max-width: 920px) {
    .theme-onyx .aur-hero.has-form .aur-hero-grid, .theme-onyx .aur-split, .theme-onyx .aur-why-grid, .theme-onyx .aur-band, .theme-onyx .aur-band.is-reversed .aur-band-media, .theme-onyx .aur-areas, .theme-onyx .aur-footer-grid, .theme-onyx .aur-contact-grid, .theme-onyx .aur-svc-grid, .theme-onyx .aur-svc-head { grid-template-columns: 1fr; }
    .theme-onyx .aur-band.is-reversed .aur-band-media { order: 0; }
    .theme-onyx .aur-why-photo { order: -1; aspect-ratio: 16/10; }
    .theme-onyx .aur-svc-side { position: static; } .theme-onyx .aur-svc-head-img { aspect-ratio: 16/10; order: -1; }
    .theme-onyx .aur-footer-grid { gap: 30px; }
}
@media (max-width: 720px) {
    body.theme-onyx { font-size: 16px; }
    .theme-onyx .aur-nav-toggle { display: inline-flex; }
    .theme-onyx .aur-nav-links { position: fixed; inset: 80px 14px auto 14px; z-index: 99; flex-direction: column; align-items: stretch; gap: 4px; padding: 14px; background: var(--aur-glass-strong); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--aur-line); border-radius: var(--aur-radius); box-shadow: var(--aur-shadow-lg); opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity 220ms var(--aur-ease), transform 220ms var(--aur-ease); }
    .theme-onyx .aur-nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
    .theme-onyx .aur-nav-links > a { padding: 13px 16px !important; }
    .theme-onyx .aur-nav-cta { text-align: center; }
    .theme-onyx .aur-section { padding: 60px 0; }
    .theme-onyx .aur-band-text { padding: 32px 26px; }
    .theme-onyx .aur-form-row, .theme-onyx .aur-svc-ba { grid-template-columns: 1fr; }
    .theme-onyx .aur-mobile-cta { display: flex; align-items: center; justify-content: center; gap: 9px; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 95; padding: 15px; border-radius: var(--aur-radius-pill); background: var(--brand-primary); color: var(--brand-primary-ink); font-weight: 700; box-shadow: var(--aur-shadow-lg); }
    .theme-onyx .aur-footer { padding-bottom: 90px; }
}

/* ============ NICHE PAGES (service-area / area / owner / careers / blog / portfolio / project) ============ */
.theme-onyx .aur-area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.theme-onyx .aur-area-card { padding: 32px 26px; text-align: center; position: relative; }
.theme-onyx .aur-area-ico { font-size: 2.4rem; line-height: 1; margin-bottom: 12px; }
.theme-onyx .aur-area-county { color: var(--aur-ink-mute); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.theme-onyx .aur-area-card p { font-size: 0.95rem; }
.theme-onyx .aur-area-card .aur-svc-more { justify-content: center; }
.theme-onyx .aur-area-hub { position: absolute; top: 14px; right: 14px; background: var(--brand-primary); color: var(--brand-primary-ink); padding: 4px 12px; border-radius: var(--aur-radius-pill); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

.theme-onyx .aur-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.theme-onyx .aur-tag { display: inline-flex; align-items: center; gap: 6px; padding: 9px 17px; border-radius: var(--aur-radius-pill); background: rgba(255,255,255,0.04); border: 1px solid var(--aur-line-strong); font-family: inherit; font-size: 0.9rem; font-weight: 600; color: var(--aur-ink); cursor: pointer; transition: transform 160ms var(--aur-ease), color 160ms var(--aur-ease), border-color 160ms var(--aur-ease), background 160ms var(--aur-ease); }
@media (hover: hover) { .theme-onyx a.aur-tag:hover, .theme-onyx button.aur-tag:hover { border-color: var(--aur-gold); color: var(--aur-gold); transform: translateY(-1px); } }
.theme-onyx .aur-tag.is-active { background: var(--brand-primary); color: var(--brand-primary-ink); border-color: var(--brand-primary); }

.theme-onyx .aur-photo-badge { position: absolute; bottom: 16px; left: 16px; background: var(--aur-glass-strong); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--aur-line); padding: 8px 15px; border-radius: var(--aur-radius-pill); font-size: 0.76rem; font-weight: 700; color: var(--aur-gold); box-shadow: var(--aur-shadow-sm); }

.theme-onyx .aur-press .aur-blog-media { position: relative; }
.theme-onyx .aur-press-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; border-radius: 50%; background: var(--aur-gold); color: #1a160c; display: grid; place-items: center; padding-left: 3px; box-shadow: var(--aur-shadow-md); }

.theme-onyx .aur-cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.theme-onyx .aur-cred-grid .aur-why-item { align-items: center; }
.theme-onyx .aur-cred-grid .aur-why-ico { font-family: "Playfair Display", serif; font-style: italic; }

.theme-onyx .aur-posting-card { padding: 28px 26px; display: flex; flex-direction: column; gap: 8px; }
.theme-onyx .aur-posting-meta { color: var(--aur-ink-soft); font-size: 0.92rem; margin: 0; }
.theme-onyx .aur-posting-card .aur-svc-more { margin-top: 10px; }

.theme-onyx .aur-byline { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 0.95rem; color: var(--aur-ink-soft); }
.theme-onyx .aur-byline img, .theme-onyx .aur-byline-mark { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.theme-onyx .aur-byline-mark { display: grid; place-items: center; background: var(--brand-primary); color: var(--brand-primary-ink); font-weight: 700; }
.theme-onyx .aur-byline strong { color: var(--aur-ink); }

.theme-onyx .aur-article-hero { border-radius: var(--aur-radius); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--aur-shadow-lg); border: 1px solid var(--aur-line); margin-top: 8px; }
.theme-onyx .aur-article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ AREAS SPLIT + RECENT BLOG (were missing from Onyx) ============ */
.theme-onyx .aur-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--aur-radius); overflow: hidden; border: 1px solid var(--aur-line); box-shadow: var(--aur-shadow-md); }
.theme-onyx .aur-areas-map img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; }
.theme-onyx .aur-areas-text { padding: 46px; background: var(--brand-secondary); color: var(--brand-secondary-ink); }
.theme-onyx .aur-areas-text h2 { color: var(--brand-secondary-ink); }
.theme-onyx .aur-areas-text p { color: color-mix(in srgb, var(--brand-secondary-ink) 80%, transparent); }
.theme-onyx .aur-areas-list { list-style: none; padding: 0; margin: 20px 0 26px; columns: 2; gap: 8px; }
.theme-onyx .aur-areas-list a { display: inline-flex; align-items: center; gap: 7px; padding: 5px 0; color: var(--brand-secondary-ink); font-weight: 500; font-size: 0.96rem; }
.theme-onyx .aur-areas-list svg { color: color-mix(in srgb, var(--brand-secondary-ink) 70%, transparent); }
.theme-onyx .aur-areas-text .aur-btn { background: var(--brand-secondary-ink); color: var(--brand-secondary); }

.theme-onyx .aur-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.theme-onyx .aur-blog-card { overflow: hidden; }
.theme-onyx .aur-blog-media { aspect-ratio: 16/9; overflow: hidden; }
.theme-onyx .aur-blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--aur-ease); }
@media (hover: hover) { .theme-onyx .aur-blog-card:hover .aur-blog-media img { transform: scale(1.04); } }
.theme-onyx .aur-blog-body { padding: 22px; }
.theme-onyx .aur-blog-date { font-size: 0.82rem; color: var(--aur-ink-mute); font-weight: 600; letter-spacing: 0.04em; }
.theme-onyx .aur-blog-body h3 { font-size: 1.15rem; margin: 8px 0; }
.theme-onyx .aur-blog-body p { font-size: 0.94rem; margin: 0 0 10px; }
