/* ============================================================
   SUNDIAL — warm & friendly tenant theme
   Warm off-white canvas, Baloo 2 rounded headlines, Nunito body,
   big soft-rounded corners, pill buttons, warm honey shadows, and
   a springy ease on hover/press so everything feels bouncy and
   approachable. Brand colors drive the CTA + accents; the base is
   light so brand reads as text directly (like Aurora — no lift
   needed). Shares Aurora's page MARKUP (.aur-* classes); every rule
   is scoped to body.theme-sundial so the themes never collide.
   ============================================================ */

body.theme-sundial {
    /* Warm neutral system (theme-fixed — contrast guaranteed here) */
    --aur-bg:          #fdf8f0;
    --aur-bg-2:        #f7efe2;
    --aur-surface:     #fffdf8;
    --aur-glass:       rgba(255, 253, 248, 0.74);
    --aur-glass-strong:rgba(255, 253, 248, 0.9);
    --aur-ink:         #33291c;
    --aur-ink-soft:    #6b5e4d;
    /* 4.7:1 on the sunny canvas — the previous #9c9080 sat at ~3:1,
       failing AA for every small label/date/meta line on this token. */
    --aur-ink-mute:    #7a6e5e;
    /* Brand-as-text for the shared aurora-family templates (light canvas
       here → readable variant; onyx overrides to lift). */
    --brand-primary-text: var(--brand-primary-readable);
    --aur-line:        rgba(51, 41, 28, 0.09);
    --aur-line-strong: rgba(51, 41, 28, 0.16);
    --aur-sun:         #f6a623; /* warm honey accent for decorative bits */

    --aur-radius:      26px;
    --aur-radius-sm:   18px;
    --aur-radius-pill: 999px;

    --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-spring:      cubic-bezier(0.34, 1.56, 0.64, 1); /* bouncy, friendly */

    --aur-shadow-sm:   0 2px 4px rgba(91, 64, 24, 0.06), 0 6px 16px rgba(91, 64, 24, 0.06);
    --aur-shadow-md:   0 8px 20px rgba(91, 64, 24, 0.08), 0 18px 44px rgba(91, 64, 24, 0.1);
    --aur-shadow-lg:   0 12px 32px rgba(91, 64, 24, 0.1), 0 34px 74px rgba(91, 64, 24, 0.14);

    /* brand helpers */
    --aur-brand-tint:  color-mix(in srgb, var(--brand-primary) 12%, white);
    --aur-brand-edge:  color-mix(in srgb, var(--brand-primary) 30%, transparent);

    background: var(--aur-bg);
    color: var(--aur-ink);
    font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0;
    overflow-x: hidden;
}

body.theme-sundial * { box-sizing: border-box; }

/* Atmosphere: a warm, sunny brand wash — soft and welcoming */
body.theme-sundial::before {
    content: "";
    position: fixed;
    inset: -20vh -10vw auto -10vw;
    height: 92vh;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(50% 55% at 16% 10%, color-mix(in srgb, var(--brand-primary) 20%, transparent) 0%, transparent 62%),
        radial-gradient(46% 50% at 86% 6%, color-mix(in srgb, var(--aur-sun) 26%, transparent) 0%, transparent 60%),
        radial-gradient(60% 60% at 50% 0%, color-mix(in srgb, var(--brand-accent) 14%, transparent) 0%, transparent 70%);
    filter: blur(10px);
    opacity: 0.85;
}
body.theme-sundial > * { position: relative; z-index: 1; }

.theme-sundial .aur-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Typography ------------------------------------------------ */
.theme-sundial h1, .theme-sundial h2, .theme-sundial h3, .theme-sundial h4 {
    font-family: "Baloo 2", "Nunito", sans-serif;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.01em;
    color: var(--aur-ink);
    margin: 0 0 0.5em;
    text-wrap: balance;
}
.theme-sundial h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); font-weight: 800; }
.theme-sundial h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; }
.theme-sundial h3 { font-size: 1.3rem; font-weight: 700; }
.theme-sundial p  { margin: 0 0 1em; color: var(--aur-ink-soft); }
.theme-sundial a  { color: inherit; text-decoration: none; }

/* The signature accent: accent_heading() wraps the last word in <em>.
   In Sundial that word gets the brand color plus a soft rounded
   marker-highlight behind it — friendly and a touch playful. */
.theme-sundial h1 em, .theme-sundial h2 em, .theme-sundial .aur-accent,
.theme-sundial .aur-svc-title em {
    font-style: normal;
    color: var(--brand-primary-readable);
    background: color-mix(in srgb, var(--brand-primary) 14%, transparent);
    border-radius: 0.4em;
    padding: 0 0.12em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Buttons --------------------------------------------------- */
.theme-sundial .aur-btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: "Baloo 2", sans-serif;
    font-weight: 600; font-size: 1rem; line-height: 1;
    padding: 15px 28px; border-radius: var(--aur-radius-pill);
    border: 2px solid transparent; cursor: pointer;
    transition: transform 220ms var(--aur-spring), box-shadow 220ms var(--aur-ease), background 200ms var(--aur-ease);
    will-change: transform;
}
.theme-sundial .aur-btn svg { transition: transform 220ms var(--aur-spring); }
.theme-sundial .aur-btn:active { transform: scale(0.95); }

.theme-sundial .aur-btn-primary {
    background: var(--brand-primary); color: var(--brand-primary-ink);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--brand-primary) 30%, transparent);
}
.theme-sundial .aur-btn-ghost {
    background: var(--aur-surface); color: var(--aur-ink);
    border-color: var(--aur-line-strong);
}
@media (hover: hover) and (pointer: fine) {
    .theme-sundial .aur-btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 16px 34px color-mix(in srgb, var(--brand-primary) 40%, transparent);
    }
    .theme-sundial .aur-btn-primary:hover svg { transform: translateX(3px); }
    .theme-sundial .aur-btn-ghost:hover { border-color: var(--brand-primary); color: var(--brand-primary-readable); transform: translateY(-3px); }
}

/* Card primitive -------------------------------------------- */
.theme-sundial .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 300ms var(--aur-spring), box-shadow 300ms var(--aur-ease), border-color 300ms var(--aur-ease);
}
@media (hover: hover) and (pointer: fine) {
    .theme-sundial .aur-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--aur-shadow-lg);
        border-color: var(--aur-brand-edge);
    }
}

/* ============ NAV ============ */
.theme-sundial .aur-header {
    position: sticky; top: 0; z-index: 100;
    padding: 14px 0;
    transition: padding 240ms var(--aur-ease);
}
.theme-sundial .aur-nav {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px; padding: 10px 14px 10px 22px;
    background: var(--aur-glass);
    backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid var(--aur-line);
    border-radius: var(--aur-radius-pill);
    box-shadow: var(--aur-shadow-sm);
    transition: box-shadow 240ms var(--aur-ease), background 240ms var(--aur-ease);
}
.theme-sundial .aur-header.scrolled .aur-nav {
    background: var(--aur-glass-strong);
    box-shadow: var(--aur-shadow-md);
}
.theme-sundial .aur-logo {
    display: inline-flex; align-items: center; gap: 11px;
    font-family: "Baloo 2", sans-serif; font-weight: 700;
    font-size: 1.22rem; letter-spacing: -0.01em; color: var(--aur-ink);
}
.theme-sundial .aur-logo img { height: 38px; width: auto; display: block; }
.theme-sundial .aur-logo-mark {
    width: 36px; height: 36px; border-radius: 13px;
    display: grid; place-items: center;
    background: var(--brand-primary); color: var(--brand-primary-ink);
    font-family: "Baloo 2", sans-serif; font-size: 1.1rem; font-weight: 800;
}
.theme-sundial .aur-nav-links { display: flex; align-items: center; gap: 4px; }
.theme-sundial .aur-nav-links > a:not(.aur-nav-cta):not(.aur-nav-phone) {
    padding: 9px 15px; border-radius: var(--aur-radius-pill);
    font-size: 0.96rem; font-weight: 600; color: var(--aur-ink-soft);
    transition: color 160ms var(--aur-ease), background 160ms var(--aur-ease);
}
.theme-sundial .aur-nav-links a.active,
.theme-sundial .aur-nav-links > a:not(.aur-nav-cta):not(.aur-nav-phone):hover {
    color: var(--brand-primary-readable); background: color-mix(in srgb, var(--brand-primary) 11%, transparent);
}
.theme-sundial .aur-nav-phone {
    font-weight: 700; color: var(--aur-ink); padding: 9px 12px; font-size: 0.96rem;
}
.theme-sundial .aur-nav-cta {
    background: var(--brand-primary); color: var(--brand-primary-ink);
    padding: 11px 22px; border-radius: var(--aur-radius-pill);
    font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 0.95rem;
    transition: transform 220ms var(--aur-spring), box-shadow 200ms var(--aur-ease);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--brand-primary) 28%, transparent);
}
.theme-sundial .aur-nav-cta:active { transform: scale(0.95); }
@media (hover: hover) { .theme-sundial .aur-nav-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 26px color-mix(in srgb, var(--brand-primary) 38%, transparent); } }
.theme-sundial .aur-nav-toggle {
    display: none; width: 44px; height: 44px; border: 1px solid var(--aur-line-strong);
    background: var(--aur-surface); border-radius: 14px; cursor: pointer;
    color: var(--aur-ink); align-items: center; justify-content: center;
}

/* ============ HERO ============ */
.theme-sundial .aur-hero { padding: 66px 0 74px; }
.theme-sundial .aur-hero-grid {
    display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
.theme-sundial .aur-hero.has-form .aur-hero-grid { grid-template-columns: 1.05fr 0.95fr; }
.theme-sundial .aur-hero h1 { margin-bottom: 22px; }
.theme-sundial .aur-hero-sub {
    font-size: clamp(1.1rem, 1.6vw, 1.34rem); color: var(--aur-ink-soft);
    max-width: 37ch; margin-bottom: 32px;
}
.theme-sundial .aur-hero:not(.has-form) .aur-hero-sub { margin-left: auto; margin-right: auto; }
.theme-sundial .aur-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.theme-sundial .aur-hero:not(.has-form) .aur-hero-content { text-align: center; max-width: 780px; margin: 0 auto; }
.theme-sundial .aur-hero:not(.has-form) .aur-hero-actions { justify-content: center; }

.theme-sundial .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-sundial .aur-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.theme-sundial .aur-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; }
.theme-sundial .aur-hero:not(.has-form) .aur-trust { justify-content: center; }
.theme-sundial .aur-trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 600; color: var(--aur-ink-soft); }
.theme-sundial .aur-trust-item svg { color: var(--brand-primary-readable); flex-shrink: 0; }

/* Inline hero quote form */
.theme-sundial .aur-form-card {
    background: var(--aur-glass-strong);
    backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border: 1px solid var(--aur-line); border-radius: var(--aur-radius);
    box-shadow: var(--aur-shadow-lg); padding: 30px;
}
.theme-sundial .aur-form-tag { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.45rem; margin-bottom: 4px; }
.theme-sundial .aur-form-sub { font-size: 0.95rem; margin-bottom: 18px; }
.theme-sundial .aur-form .form-group { margin-bottom: 13px; }
.theme-sundial .aur-form label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--aur-ink-soft); margin-bottom: 6px; }
.theme-sundial .aur-form .required { color: var(--brand-primary-readable); }
/* Checkboxes must not take the 100% field width — inside flex consent
   labels a full-width checkbox pushes the label text out of the card. */
.theme-sundial .aur-form input[type="checkbox"] { width: auto; flex: 0 0 auto; padding: 0; }
.theme-sundial .aur-form input, .theme-sundial .aur-form select, .theme-sundial .aur-form textarea {
    width: 100%; padding: 13px 15px; font: inherit; font-size: 0.95rem;
    color: var(--aur-ink); background: #fff;
    border: 1.5px solid var(--aur-line-strong); border-radius: 14px;
    transition: border-color 160ms var(--aur-ease), box-shadow 160ms var(--aur-ease);
}
.theme-sundial .aur-form input::placeholder, .theme-sundial .aur-form textarea::placeholder { color: var(--aur-ink-mute); }
.theme-sundial .aur-form input:focus, .theme-sundial .aur-form select:focus, .theme-sundial .aur-form textarea:focus {
    outline: none; border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-primary) 16%, transparent);
}
.theme-sundial .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: 16px;
    font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.05rem;
    display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--brand-primary) 32%, transparent);
    transition: transform 220ms var(--aur-spring), box-shadow 200ms var(--aur-ease);
}
.theme-sundial .aur-form-submit:active { transform: scale(0.97); }
@media (hover: hover) { .theme-sundial .aur-form-submit:hover { transform: translateY(-2px) scale(1.01); } }

/* ============ SECTION SCAFFOLD ============ */
.theme-sundial .aur-section { padding: 84px 0; }
.theme-sundial .aur-section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.theme-sundial .aur-section-head.left { margin-left: 0; text-align: left; }
.theme-sundial .aur-section-desc { font-size: 1.1rem; color: var(--aur-ink-soft); }

/* Stats */
.theme-sundial .aur-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px; margin-top: -36px;
}
.theme-sundial .aur-stat {
    background: var(--aur-surface);
    border: 1px solid var(--aur-line); border-radius: var(--aur-radius);
    padding: 28px 20px; text-align: center; box-shadow: var(--aur-shadow-sm);
}
.theme-sundial .aur-stat-num { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 2.5rem; line-height: 1; color: var(--brand-primary-readable); }
.theme-sundial .aur-stat-label { font-size: 0.88rem; color: var(--aur-ink-mute); margin-top: 8px; font-weight: 600; }

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

/* Why-us (value props) */
.theme-sundial .aur-why {
    background: linear-gradient(180deg, var(--aur-bg) 0%, var(--aur-bg-2) 100%);
    border-top: 1px solid var(--aur-line); border-bottom: 1px solid var(--aur-line);
}
.theme-sundial .aur-why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.theme-sundial .aur-why.no-photo .aur-why-grid { grid-template-columns: 1fr; }
.theme-sundial .aur-why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.theme-sundial .aur-why-item { display: flex; gap: 16px; padding: 22px; background: var(--aur-surface); border: 1px solid var(--aur-line); border-radius: var(--aur-radius-sm); box-shadow: var(--aur-shadow-sm); }
.theme-sundial .aur-why-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: color-mix(in srgb, var(--brand-primary) 14%, white); color: var(--brand-primary-readable); }
.theme-sundial .aur-why-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.theme-sundial .aur-why-item p { margin: 0; font-size: 0.96rem; }
.theme-sundial .aur-why-photo { border-radius: var(--aur-radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--aur-shadow-lg); }
.theme-sundial .aur-why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Services grid */
.theme-sundial .aur-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.theme-sundial .aur-svc-card { overflow: hidden; display: flex; flex-direction: column; }
.theme-sundial .aur-svc-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.theme-sundial .aur-svc-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--aur-ease); }
@media (hover: hover) { .theme-sundial .aur-svc-card:hover .aur-svc-media img { transform: scale(1.06); } }
.theme-sundial .aur-svc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.theme-sundial .aur-svc-body h3 a, .theme-sundial .aur-svc-body h3 span { color: var(--aur-ink); transition: color 160ms var(--aur-ease); }
@media (hover: hover) { .theme-sundial .aur-svc-card:hover h3 a, .theme-sundial .aur-svc-card:hover h3 span { color: var(--brand-primary-readable); } }
.theme-sundial .aur-svc-body p { font-size: 0.96rem; margin: 0; }
.theme-sundial .aur-svc-more { margin-top: auto; padding-top: 12px; font-weight: 700; font-size: 0.92rem; color: var(--brand-primary-readable); display: inline-flex; align-items: center; gap: 6px; }
.theme-sundial .aur-center-link { text-align: center; margin-top: 36px; }

/* Service number badge (services index) */
.theme-sundial .aur-svc-num {
    position: absolute; top: 12px; left: 12px;
    width: 42px; height: 42px; border-radius: 14px;
    display: grid; place-items: center;
    font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.15rem;
    background: var(--aur-glass-strong); color: var(--brand-primary-readable);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--aur-shadow-sm);
}

/* Gallery / before-after */
.theme-sundial .aur-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.theme-sundial .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-sundial .ba-slider { position: relative; aspect-ratio: 3/2; overflow: hidden; cursor: ew-resize; user-select: none; }
.theme-sundial .ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-sundial .ba-after { clip-path: inset(0 0 0 50%); }
.theme-sundial .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.08); transform: translateX(-50%); }
.theme-sundial .ba-handle::after { content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--brand-primary-readable); display: grid; place-items: center; font-size: 16px; box-shadow: var(--aur-shadow-md); }
.theme-sundial .ba-label { position: absolute; bottom: 12px; padding: 5px 12px; border-radius: var(--aur-radius-pill); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background: rgba(51,41,28,0.72); color: #fff; backdrop-filter: blur(4px); }
.theme-sundial .ba-label-before { left: 12px; } .theme-sundial .ba-label-after { right: 12px; }
.theme-sundial .aur-gallery-label { padding: 14px 18px; font-weight: 700; font-size: 0.96rem; }

/* Process */
.theme-sundial .aur-process { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.theme-sundial .aur-process-step { position: relative; padding: 28px 24px; background: var(--aur-surface); border: 1px solid var(--aur-line); border-radius: var(--aur-radius); box-shadow: var(--aur-shadow-sm); }
.theme-sundial .aur-process-num { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--brand-primary-readable); margin-bottom: 12px; }
.theme-sundial .aur-process-step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.theme-sundial .aur-process-step p { margin: 0; font-size: 0.95rem; }

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

/* CTA band */
.theme-sundial .aur-band { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--aur-radius); overflow: hidden; box-shadow: var(--aur-shadow-md); border: 1px solid var(--aur-line); }
.theme-sundial .aur-band.is-reversed .aur-band-media { order: 2; }
.theme-sundial .aur-band.is-no-image { grid-template-columns: 1fr; }
.theme-sundial .aur-band-media { min-height: 280px; }
.theme-sundial .aur-band-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-sundial .aur-band-text { padding: 46px; display: flex; flex-direction: column; justify-content: center; background: var(--brand-primary); color: var(--brand-primary-ink); }
.theme-sundial .aur-band-text h2 { color: var(--brand-primary-ink); }
.theme-sundial .aur-band-text p { color: color-mix(in srgb, var(--brand-primary-ink) 92%, transparent); }
/* :not(.aur-btn-ghost): this 3-class rule used to clobber the ghost
   variant's background, leaving ink-on-ink invisible buttons. */
.theme-sundial .aur-band-text .aur-btn:not(.aur-btn-ghost) { align-self: flex-start; background: var(--brand-primary-ink); color: var(--brand-primary); margin-top: 8px; }
.theme-sundial .aur-band-text .aur-btn-ghost { align-self: flex-start; margin-top: 8px; }
/* The marker-highlight em treatment (readable text + soft tint) is tuned
   for the light canvas; inside the brand-primary band it lands brand-on-
   brand. Flip to the ink pair there. */
.theme-sundial .aur-band-text h2 em { color: var(--brand-primary-ink); background: color-mix(in srgb, var(--brand-primary-ink) 12%, transparent); }

/* FAQ accordion */
.theme-sundial .aur-faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.theme-sundial .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), box-shadow 200ms var(--aur-ease); }
.theme-sundial .aur-faq-item.active { border-color: var(--aur-brand-edge); box-shadow: var(--aur-shadow-sm); }
.theme-sundial .faq-toggle { width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; font: inherit; font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--aur-ink); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.theme-sundial .faq-icon { flex-shrink: 0; color: var(--brand-primary-readable); transition: transform 320ms var(--aur-spring); }
.theme-sundial .aur-faq-item.active .faq-icon { transform: rotate(135deg); }
.theme-sundial .faq-answer { max-height: 0; overflow: hidden; transition: max-height 320ms var(--aur-ease-inout); }
.theme-sundial .faq-answer p { padding: 0 22px 20px; margin: 0; color: var(--aur-ink-soft); }

/* Areas split */
.theme-sundial .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-sundial .aur-areas-map img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; }
.theme-sundial .aur-areas-text { padding: 46px; background: var(--brand-secondary); color: var(--brand-secondary-ink); }
.theme-sundial .aur-areas-text h2 { color: var(--brand-secondary-ink); }
.theme-sundial .aur-areas-text p { color: color-mix(in srgb, var(--brand-secondary-ink) 80%, transparent); }
.theme-sundial .aur-areas-list { list-style: none; padding: 0; margin: 20px 0 26px; columns: 2; gap: 8px; }
.theme-sundial .aur-areas-list a { display: inline-flex; align-items: center; gap: 7px; padding: 5px 0; color: var(--brand-secondary-ink); font-weight: 600; font-size: 0.96rem; }
.theme-sundial .aur-areas-list svg { color: color-mix(in srgb, var(--brand-secondary-ink) 70%, transparent); }
.theme-sundial .aur-areas-text .aur-btn { background: var(--brand-secondary-ink); color: var(--brand-secondary); }

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

/* Logo marquee */
.theme-sundial .aur-logo-marquee-sec { padding: 46px 0; border-bottom: 1px solid var(--aur-line); }
.theme-sundial .aur-marquee-heading { text-align: center; font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--aur-ink-mute); font-weight: 700; margin: 0 0 26px; }
.theme-sundial .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-sundial .aur-marquee-track { display: flex; width: max-content; animation: aur-marquee 42s linear infinite; }
@keyframes aur-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.theme-sundial .aur-marquee-item { flex: 0 0 auto; height: 60px; margin: 0 36px; display: flex; align-items: center; }
.theme-sundial .aur-marquee-item img { max-height: 100%; max-width: 160px; object-fit: contain; filter: grayscale(100%) opacity(0.6); transition: filter 0.35s var(--aur-ease); }
@media (hover: hover) { .theme-sundial .aur-marquee-item img:hover { filter: none; } }
@media (prefers-reduced-motion: reduce) { .theme-sundial .aur-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* Generic page hero + content body */
.theme-sundial .aur-page-hero { padding: 80px 0 28px; text-align: center; }
.theme-sundial .aur-page-body { padding: 8px 0 84px; }
.theme-sundial .aur-prose { max-width: 760px; margin: 0 auto; font-size: 1.08rem; }
.theme-sundial .aur-prose :is(h2,h3) { margin-top: 1.5em; }
.theme-sundial .aur-prose p { color: var(--aur-ink-soft); }
.theme-sundial .aur-prose a { color: var(--brand-primary-readable); text-decoration: underline; text-underline-offset: 3px; }

/* Breadcrumbs */
.theme-sundial .aur-breadcrumbs { font-size: 0.84rem; color: var(--aur-ink-mute); margin-bottom: 18px; }
.theme-sundial .aur-breadcrumbs :is(ol, ul) { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; justify-content: center; align-items: center; }
.theme-sundial .aur-breadcrumbs a { color: var(--aur-ink-soft); }
@media (hover: hover) { .theme-sundial .aur-breadcrumbs a:hover { color: var(--brand-primary-readable); } }

/* Page hero with background image */
.theme-sundial .aur-page-hero.has-image {
    position: relative; color: #fff; padding: 110px 0 70px;
    background: var(--aur-hero-img) center/cover no-repeat;
}
.theme-sundial .aur-page-hero.has-image::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(40,28,12,0.74), rgba(40,28,12,0.5));
}
.theme-sundial .aur-page-hero.has-image > .aur-wrap { position: relative; z-index: 1; }
.theme-sundial .aur-page-hero.has-image h1 { color: #fff; }
.theme-sundial .aur-page-hero.has-image h1 em { color: #fff; background: rgba(255,255,255,0.18); }
.theme-sundial .aur-page-hero.has-image .aur-section-desc,
.theme-sundial .aur-page-hero.has-image .aur-breadcrumbs,
.theme-sundial .aur-page-hero.has-image .aur-breadcrumbs a { color: rgba(255,255,255,0.88); }

/* ============ FOOTER ============ */
.theme-sundial .aur-pre-cta { text-align: center; padding: 80px 24px; max-width: 760px; margin: 0 auto; }
.theme-sundial .aur-pre-cta h2 { margin-bottom: 14px; }
.theme-sundial .aur-pre-cta p { font-size: 1.1rem; margin-bottom: 28px; }
.theme-sundial .aur-footer { background: #2d2417; color: #d9cdba; padding: 64px 0 30px; margin-top: 40px; }
.theme-sundial .aur-footer h4 { color: #fff; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; font-family: "Baloo 2", sans-serif; }
.theme-sundial .aur-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.theme-sundial .aur-footer a { color: #d9cdba; transition: color 160ms var(--aur-ease); }
@media (hover: hover) { .theme-sundial .aur-footer a:hover { color: #fff; } }
.theme-sundial .aur-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: 0.95rem; }
.theme-sundial .aur-footer-brand { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: 12px; }
.theme-sundial .aur-footer-tag { font-size: 0.96rem; color: #b3a690; max-width: 34ch; }
.theme-sundial .aur-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.theme-sundial .aur-footer-social a { width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: #d9cdba; transition: background 200ms var(--aur-ease), transform 220ms var(--aur-spring); }
@media (hover: hover) { .theme-sundial .aur-footer-social a:hover { background: var(--brand-primary); color: var(--brand-primary-ink); transform: translateY(-3px); } }
.theme-sundial .aur-footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.85rem; color: #b3a690; }

/* Mobile sticky call bar */
.theme-sundial .aur-mobile-cta { display: none; }

/* ============ CONTACT PAGE ============ */
.theme-sundial .aur-contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.theme-sundial .aur-contact-form-card { padding: 34px; }
.theme-sundial .aur-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.theme-sundial .aur-contact-side { display: flex; flex-direction: column; gap: 14px; }
.theme-sundial .aur-info-card { display: flex; gap: 15px; align-items: flex-start; padding: 22px; }
.theme-sundial .aur-info-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; font-size: 1.2rem; background: color-mix(in srgb, var(--brand-primary) 14%, white); color: var(--brand-primary-readable); }
.theme-sundial .aur-info-card h3 { font-size: 1.02rem; margin: 0 0 3px; }
.theme-sundial .aur-info-card p { margin: 0; font-size: 0.96rem; }
.theme-sundial .aur-info-card a { color: var(--brand-primary-readable); font-weight: 700; }
.theme-sundial .aur-info-meta { color: var(--aur-ink-mute) !important; font-size: 0.82rem !important; font-weight: 500 !important; margin-top: 2px !important; }

/* ============ SERVICE-SINGLE ============ */
.theme-sundial .aur-svc-layout { padding: 70px 0 30px; }
.theme-sundial .aur-svc-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 56px; align-items: start; }
.theme-sundial .aur-svc-main { min-width: 0; }
.theme-sundial .aur-svc-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 26px; }
.theme-sundial .aur-svc-head { display: grid; grid-template-columns: 1fr 0.85fr; gap: 36px; align-items: center; }
.theme-sundial .aur-svc-head-img { border-radius: var(--aur-radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--aur-shadow-lg); }
.theme-sundial .aur-svc-head-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-sundial .aur-svc-title { font-size: clamp(2.1rem, 4vw, 3.3rem); margin-bottom: 14px; }
.theme-sundial .aur-svc-lede { font-size: 1.18rem; color: var(--aur-ink-soft); margin-bottom: 20px; }
.theme-sundial .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-sundial .aur-svc-trust-item { font-size: 0.86rem; font-weight: 700; color: var(--aur-ink); padding: 7px 15px; background: color-mix(in srgb, var(--brand-primary) 10%, white); border-radius: var(--aur-radius-pill); }
.theme-sundial .aur-svc-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.theme-sundial .aur-svc-ba.single { grid-template-columns: 1fr; max-width: 560px; }
.theme-sundial .aur-svc-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.theme-sundial .aur-svc-pill { padding: 9px 16px; border-radius: var(--aur-radius-pill); background: var(--aur-surface); border: 1.5px solid var(--aur-line-strong); font-size: 0.88rem; font-weight: 700; color: var(--aur-ink); transition: transform 200ms var(--aur-spring), background 160ms var(--aur-ease), color 160ms var(--aur-ease), border-color 160ms var(--aur-ease); }
@media (hover: hover) { .theme-sundial .aur-svc-pill:hover { background: var(--brand-primary); color: var(--brand-primary-ink); border-color: var(--brand-primary); transform: translateY(-2px); } }
.theme-sundial .aur-svc-side-cta { padding: 26px; }
.theme-sundial .aur-svc-side-phone { display: block; font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--aur-ink); margin: 2px 0; }
.theme-sundial .aur-svc-side-block { padding-top: 24px; border-top: 1px solid var(--aur-line); }
/* Service starting-price block */
.theme-sundial .aur-svc-price { display: flex; flex-direction: column; gap: 4px; padding: 24px 28px; }
.theme-sundial .aur-svc-price-amount { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: clamp(34px, 4.6vw, 46px); line-height: 1.05; letter-spacing: -0.01em; color: var(--aur-ink); }
.theme-sundial .aur-svc-price-note { font-size: 0.95rem; color: var(--aur-ink-soft); line-height: 1.5; margin-top: 4px; }
.theme-sundial .aur-svc-price-tag { font-weight: 800; font-size: 0.95rem; color: var(--brand-primary-readable); margin: 0 0 6px; }
.theme-sundial .aur-svc-glance { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.theme-sundial .aur-svc-glance li { font-size: 0.92rem; color: var(--aur-ink-soft); }
.theme-sundial .aur-svc-glance strong { display: inline-block; min-width: 64px; font-family: "Baloo 2", sans-serif; font-size: 1.2rem; color: var(--brand-primary-readable); }
.theme-sundial .aur-svc-other { list-style: none; padding: 0; margin: 0 0 12px; }
.theme-sundial .aur-svc-other li { border-bottom: 1px solid var(--aur-line); }
.theme-sundial .aur-svc-other li:last-child { border-bottom: 0; }
.theme-sundial .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-sundial .aur-svc-other a:hover { transform: translateX(3px); } .theme-sundial .aur-svc-other a:hover .aur-svc-other-title { color: var(--brand-primary-readable); } }
.theme-sundial .aur-svc-other-thumb { aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; background: var(--aur-bg-2); }
.theme-sundial .aur-svc-other-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-sundial .aur-svc-other-title { font-weight: 700; font-size: 0.96rem; color: var(--aur-ink); transition: color 160ms var(--aur-ease); }

/* ============ MOTION: reveals + stagger ============ */
.theme-sundial .reveal { opacity: 0; transform: translateY(18px); transition: opacity 640ms var(--aur-ease), transform 640ms var(--aur-spring); }
.theme-sundial .reveal.visible { opacity: 1; transform: none; }
.theme-sundial .rd1 { transition-delay: 60ms; }
.theme-sundial .rd2 { transition-delay: 120ms; }
.theme-sundial .rd3 { transition-delay: 180ms; }
.theme-sundial .rd4 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
    .theme-sundial .reveal { transition: opacity 300ms ease; transform: none; }
    .theme-sundial * { scroll-behavior: auto !important; }
    .theme-sundial .aur-btn, .theme-sundial .aur-card, .theme-sundial .aur-svc-media img, .theme-sundial .aur-nav-cta { transition: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
    .theme-sundial .aur-hero.has-form .aur-hero-grid,
    .theme-sundial .aur-split,
    .theme-sundial .aur-why-grid,
    .theme-sundial .aur-band,
    .theme-sundial .aur-band.is-reversed .aur-band-media,
    .theme-sundial .aur-areas,
    .theme-sundial .aur-contact-grid,
    .theme-sundial .aur-svc-grid,
    .theme-sundial .aur-svc-head,
    .theme-sundial .aur-footer-grid { grid-template-columns: 1fr; }
    .theme-sundial .aur-band.is-reversed .aur-band-media { order: 0; }
    .theme-sundial .aur-why-photo { order: -1; aspect-ratio: 16/10; }
    .theme-sundial .aur-svc-side { position: static; }
    .theme-sundial .aur-svc-head-img { aspect-ratio: 16/10; order: -1; }
    .theme-sundial .aur-footer-grid { gap: 30px; }
}

@media (max-width: 720px) {
    body.theme-sundial { font-size: 16px; }
    .theme-sundial .aur-nav-toggle { display: inline-flex; }
    .theme-sundial .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) scale(0.98); pointer-events: none;
        transition: opacity 220ms var(--aur-ease), transform 240ms var(--aur-spring);
    }
    .theme-sundial .aur-nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
    .theme-sundial .aur-nav-links > a { padding: 13px 16px !important; border-radius: 14px; }
    .theme-sundial .aur-nav-cta { text-align: center; }
    .theme-sundial .aur-section { padding: 60px 0; }
    .theme-sundial .aur-band-text, .theme-sundial .aur-areas-text { padding: 32px 26px; }
    .theme-sundial .aur-areas-list { columns: 1; }
    .theme-sundial .aur-form-row, .theme-sundial .aur-svc-ba { grid-template-columns: 1fr; }
    .theme-sundial .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: 16px; border-radius: var(--aur-radius-pill);
        background: var(--brand-primary); color: var(--brand-primary-ink); font-family: "Baloo 2", sans-serif; font-weight: 700;
        box-shadow: var(--aur-shadow-lg);
    }
    .theme-sundial .aur-footer { padding-bottom: 90px; }
}

/* ============ NICHE PAGES (service-area / area / owner / careers / blog / portfolio / project) ============ */
.theme-sundial .aur-area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.theme-sundial .aur-area-card { padding: 32px 26px; text-align: center; position: relative; }
.theme-sundial .aur-area-ico { font-size: 2.4rem; line-height: 1; margin-bottom: 12px; }
.theme-sundial .aur-area-county { color: var(--aur-ink-mute); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.theme-sundial .aur-area-card p { font-size: 0.95rem; }
.theme-sundial .aur-area-card .aur-svc-more { justify-content: center; }
.theme-sundial .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-sundial .aur-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.theme-sundial .aur-tag { display: inline-flex; align-items: center; gap: 6px; padding: 9px 17px; border-radius: var(--aur-radius-pill); background: var(--aur-surface); 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-sundial a.aur-tag:hover, .theme-sundial button.aur-tag:hover { border-color: var(--brand-primary); color: var(--brand-primary-readable); transform: translateY(-1px); } }
.theme-sundial .aur-tag.is-active { background: var(--brand-primary); color: var(--brand-primary-ink); border-color: var(--brand-primary); }

.theme-sundial .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(--brand-primary-readable); box-shadow: var(--aur-shadow-sm); }

.theme-sundial .aur-press .aur-blog-media { position: relative; }
.theme-sundial .aur-press-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.94); color: var(--brand-primary-readable); display: grid; place-items: center; padding-left: 3px; box-shadow: var(--aur-shadow-md); }

.theme-sundial .aur-cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.theme-sundial .aur-cred-grid .aur-why-item { align-items: center; }

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

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

.theme-sundial .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-sundial .aur-article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 720px) {
    .theme-sundial .aur-byline { font-size: 0.9rem; }
}
