/* ════════════════════════════════════════════════════════════════════
   GLORIA · SERVICES PAGE
   Service-first information design · same brand tokens as homepage
   ════════════════════════════════════════════════════════════════════ */

.page-sv .n-link.is-current { color: var(--m); }
.page-sv .n-link.is-current::after {
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    background: var(--m);
    margin-top: 4px;
}


/* ═══════════════════════════════════════════════════
   1 · HERO BANNER · cinematic full-bleed
   ═══════════════════════════════════════════════════ */
#sv-hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
    isolation: isolate;
    color: var(--white);
}

.sv-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.sv-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .58;
}
.sv-hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, .55) 0%, rgba(8, 8, 8, .25) 40%, rgba(8, 8, 8, .85) 100%),
        radial-gradient(circle at 20% 80%, rgba(237, 20, 91, .25), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(0, 174, 239, .15), transparent 55%);
}
.sv-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, .65), transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, .65), transparent 75%);
    opacity: .55;
}

.sv-hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 78px;
}

.sv-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    margin-bottom: 32px;
    opacity: 0;
    animation: svPillIn .9s .25s cubic-bezier(.165,.84,.44,1) forwards;
}
@keyframes svPillIn { to { opacity: 1; transform: translateY(0); } }
.sv-hero-pill { transform: translateY(10px); }
.sv-hero-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--m);
    box-shadow: 0 0 10px var(--m);
    animation: svPulse 2s ease-in-out infinite;
}
@keyframes svPulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.sv-hero-h {
    font-family: var(--sans);
    font-weight: 800;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    line-height: .95;
    letter-spacing: -.03em;
    color: var(--white);
    margin: 0 0 28px;
}
.sv-hero-h .word-row {
    display: block;
    overflow: hidden;
    padding-bottom: .05em;
}
.sv-hero-h .italic-row em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--m);
    -webkit-text-stroke: 0;   /* reset homepage's 1px white outline */
    -webkit-text-fill-color: var(--m);
    font-size: 1.15em;
    line-height: 1;
    padding: 0 .04em;
    letter-spacing: 0;
}

.sv-hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, .78);
    max-width: 620px;
    margin-bottom: 44px;
}

.sv-hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
#sv-hero .pill-btn {
    background: var(--white);
    color: var(--text);
}
#sv-hero .pill-btn:hover { background: var(--m); color: var(--white); }
.sv-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .35s, color .35s, border-color .35s;
}
.sv-hero-secondary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; transition: transform .3s; }
.sv-hero-secondary:hover { background: var(--m); border-color: var(--m); }
.sv-hero-secondary:hover svg { transform: translateX(4px); }

.sv-hero-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.sv-cue-bar {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .8));
    position: relative;
    overflow: hidden;
}
.sv-cue-bar::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 30%;
    background: var(--white);
    box-shadow: 0 0 8px var(--m);
    animation: svCue 2s ease-in-out infinite;
}
@keyframes svCue { 0% { top: -30%; } 100% { top: 100%; } }
.sv-cue-txt {
    font-family: var(--sans);
    font-size: .65rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
}

@media (max-width: 768px) {
    .sv-hero-h { font-size: clamp(2.75rem, 12vw, 4.5rem); }
}

/* Small variant for reuse on other pages (Contact) */
#sv-hero.small, .sv-hero.small {
    height: 60vh;
    min-height: 380px;
}
#sv-hero.small .sv-hero-content, .sv-hero.small .sv-hero-content {
    padding-top: 36px;
}
#sv-hero.small .sv-hero-h, .sv-hero.small .sv-hero-h {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    margin-bottom: 18px;
}
#sv-hero.small .sv-hero-sub, .sv-hero.small .sv-hero-sub {
    font-size: 1rem;
    max-width: 720px;
    margin-bottom: 30px;
}
#sv-hero.small .sv-hero-pill,
#sv-hero.small .sv-hero-cue,
.sv-hero.small .sv-hero-pill,
.sv-hero.small .sv-hero-cue {
    display: none;
}


/* ═══════════════════════════════════════════════════
   2 · THE REEL · cinematic editorial showreel
   ═══════════════════════════════════════════════════ */
#sv-index {
    padding: 130px 0 140px;
    background: var(--bg-cream);
    position: relative;
    z-index: 1;
}
.sv-reel-head { margin-bottom: 70px; max-width: 760px; }
.sv-reel-head .intro-body { font-size: 1rem; color: var(--muted); margin: 0; }

.sv-reel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    padding: 0 5%;
    max-width: 1500px;
    margin: 0 auto;
}
.sv-reel-card {
    display: block;
    color: var(--text);
    cursor: none;
}

/* IMAGE — the whole point of a reel */
.sv-reel-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    margin-bottom: 22px;
    isolation: isolate;
}
.sv-reel-image img,
.sv-reel-image video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.86) saturate(1.04);
    transition: transform 1.4s cubic-bezier(.165, .84, .44, 1), filter .8s;
    will-change: transform;
    display: block;
}
.sv-reel-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, .35) 100%);
    z-index: 1;
    transition: background .55s;
}
.sv-reel-card:hover .sv-reel-image img,
.sv-reel-card:hover .sv-reel-image video { transform: scale(1.06); filter: brightness(1) saturate(1.1); }
.sv-reel-card:hover .sv-reel-veil {
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--c) 0%, transparent) 0%,
        color-mix(in srgb, var(--c) 35%, transparent) 100%);
}
.sv-reel-no {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    font-size: 1.1rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
    letter-spacing: .02em;
}

/* CAPTION — editorial newspaper feel */
.sv-reel-caption { padding: 0 4px; }
.sv-reel-caption h3 {
    font-family: var(--sans);
    font-weight: 800;
    font-size: clamp(1.4rem, 2.1vw, 1.85rem);
    line-height: 1.05;
    letter-spacing: -.015em;
    color: var(--text);
    margin-bottom: 12px;
    transition: color .35s;
}
.sv-reel-caption h3 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--m);
    font-size: 1.15em;
    letter-spacing: 0;
    transition: color .35s;
}
.sv-reel-card:hover .sv-reel-caption h3 em { color: var(--c); }
.sv-reel-caption p {
    font-size: .95rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 18px;
    max-width: 95%;
}
.sv-reel-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text);
    transition: color .35s;
}
.sv-reel-link em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.12rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text);
    transition: color .35s;
}
.sv-reel-link svg {
    width: 36px;
    height: 10px;
    stroke: var(--c);
    fill: none;
    stroke-width: 1.5;
    transition: transform .4s, stroke .35s;
}
.sv-reel-card:hover .sv-reel-link em,
.sv-reel-card:hover .sv-reel-link { color: var(--c); }
.sv-reel-card:hover .sv-reel-link svg { transform: translateX(8px); }

@media (max-width: 1024px) {
    .sv-reel { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    #sv-index { padding: 90px 0 100px; }
}
@media (max-width: 600px) {
    .sv-reel { grid-template-columns: 1fr; gap: 36px; padding: 0 6%; }
}


/* ═══════════════════════════════════════════════════
   3-8 · SERVICE PROFILES
   ═══════════════════════════════════════════════════ */
.sv-profile {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}
.sv-profile:nth-of-type(even) { background: var(--bg-cream); }
/* (nth-of-type counts among same-tag siblings — multiple .sv-profile sections
    alternate via the document order regardless of intervening tags) */

/* override above — alternate explicitly by index since :nth-of-type won't
   work as intended on adjacent <section>s mixed with other sections */
#sv-mall, #sv-brand, #sv-consult { background: var(--bg-white); }
#sv-conf, #sv-celeb, #sv-stalls   { background: var(--bg-cream); }

.sv-prof-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 5rem;
    align-items: center;
}
.sv-prof-mirror .sv-prof-grid { grid-template-columns: 1fr 1.05fr; }
.sv-prof-mirror .sv-prof-media { order: 2; }
.sv-prof-mirror .sv-prof-body  { order: 1; }

/* MEDIA · collaged photo arrangement */
.sv-prof-media {
    position: relative;
    aspect-ratio: 1 / 1;
}
.sv-prof-big,
.sv-prof-small {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    background: #111;
    box-shadow: 0 14px 36px rgba(14, 29, 82, .08);
}
.sv-prof-big {
    top: 0; left: 0;
    width: 72%;
    height: 72%;
    z-index: 1;
}
.sv-prof-small.s1 {
    bottom: 0; right: 0;
    width: 50%;
    height: 50%;
    z-index: 2;
    border: 4px solid var(--bg-white);
}
.sv-prof-small.s2 {
    top: 8%;
    right: 0;
    width: 36%;
    height: 32%;
    z-index: 0;
}
.sv-prof-mirror .sv-prof-small.s1 { bottom: 0; right: auto; left: 0; }
.sv-prof-mirror .sv-prof-small.s2 { top: 8%; right: auto; left: 0; }

.sv-prof-big img,
.sv-prof-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.165, .84, .44, 1);
}
.sv-prof-media:hover .sv-prof-big img,
.sv-prof-media:hover .sv-prof-small img { transform: scale(1.04); }

/* colored accent stripe on the small frame */
.sv-prof-small.s1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--c);
    z-index: 2;
}

/* BODY · service info */
.sv-prof-no {
    display: inline-block;
    font-family: var(--body);
    font-size: .68rem;
    letter-spacing: .22em;
    color: var(--c);
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 14px;
    background: color-mix(in srgb, var(--c) 10%, transparent);
    border-radius: 999px;
    margin-bottom: 22px;
}
.sv-prof-body .sec-title { margin-bottom: 18px; max-width: 520px; }
.sv-prof-body .intro-body em { font-family: var(--serif); font-style: italic; color: var(--m); font-size: 1.08em; }

/* Editorial credits — replaces SaaS deliverable list + chip row */
.sv-prof-credits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 0;
    margin: 24px 0 32px;
    border-top: 1px solid rgba(14, 29, 82, .12);
    border-bottom: 1px solid rgba(14, 29, 82, .12);
}
.sv-prof-credits > div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: baseline;
}
.sv-prof-credits dt {
    font-family: var(--sans);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c);
}
.sv-prof-credits dd {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.3;
}

/* "What We Do" — non-clickable tag pills, wrap one after another */
.sv-prof-wwd {
    padding: 28px 0;
    margin: 24px 0 32px;
    border-top: 1px solid rgba(14, 29, 82, .12);
    border-bottom: 1px solid rgba(14, 29, 82, .12);
}
.sv-prof-wwd-h {
    font-family: var(--sans);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--text);
    margin: 0 0 16px;
}
.sv-prof-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sv-prof-chip {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;
    color: var(--text);
    font-family: var(--sans);
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: default;
    user-select: none;
}
/* cycle through the brand's 7-colour rainbow palette so each tag stands apart */
.sv-prof-chip:nth-child(7n+1) { background: color-mix(in srgb, #00A651 16%, transparent); }
.sv-prof-chip:nth-child(7n+2) { background: color-mix(in srgb, #FACC15 26%, transparent); }
.sv-prof-chip:nth-child(7n+3) { background: color-mix(in srgb, #F26522 16%, transparent); }
.sv-prof-chip:nth-child(7n+4) { background: color-mix(in srgb, #ED145B 16%, transparent); }
.sv-prof-chip:nth-child(7n+5) { background: color-mix(in srgb, #00AEEF 18%, transparent); }
.sv-prof-chip:nth-child(7n+6) { background: color-mix(in srgb, #92278F 16%, transparent); }
.sv-prof-chip:nth-child(7n)   { background: color-mix(in srgb, #2E3192 16%, transparent); }

.sv-prof-foot {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.sv-prof-cta {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    background: var(--text);
    color: var(--white) !important;
    font-family: var(--sans);
    font-weight: 700;
    font-size: .76rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: background .35s, transform .35s;
}
.sv-prof-cta:hover { background: var(--c); transform: translateY(-2px); }

@media (max-width: 900px) {
    .sv-profile { padding: 80px 0; }
    .sv-prof-grid, .sv-prof-mirror .sv-prof-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .sv-prof-mirror .sv-prof-media { order: 0; }
    .sv-prof-mirror .sv-prof-body  { order: 0; }
    .sv-prof-media { aspect-ratio: 5 / 4; max-width: 100%; }
}


/* ═══════════════════════════════════════════════════
   9 · HOW WE ENGAGE · editorial, no pricing
   ═══════════════════════════════════════════════════ */
#sv-engage {
    padding: 130px 0;
    background: var(--bg-white);
}
.sv-eng-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(14, 29, 82, .12);
    border-bottom: 1px solid rgba(14, 29, 82, .12);
}
.sv-eng-card {
    position: relative;
    padding: 50px 38px 56px;
    border-right: 1px solid rgba(14, 29, 82, .12);
    cursor: none;
    transition: background .4s;
}
.sv-eng-card:last-child { border-right: none; }
.sv-eng-card:hover { background: color-mix(in srgb, var(--m) 4%, transparent); }
.sv-eng-card:hover h3 em { color: var(--m); }

.sv-eng-feature { background: var(--bg-cream); }
.sv-eng-feature:hover { background: color-mix(in srgb, var(--m) 6%, var(--bg-cream)); }

.sv-eng-no {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--m);
    font-size: 1.05rem;
    margin-bottom: 22px;
    letter-spacing: .02em;
}
.sv-eng-card h3 {
    font-family: var(--sans);
    font-weight: 800;
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -.015em;
    line-height: 1.05;
}
.sv-eng-card h3 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--text);
    font-size: 1.2em;
    letter-spacing: 0;
    transition: color .35s;
}
.sv-eng-card p {
    font-family: var(--sans);
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.7;
    max-width: 320px;
}

@media (max-width: 900px) {
    .sv-eng-grid { grid-template-columns: 1fr; }
    .sv-eng-card { border-right: none; border-bottom: 1px solid rgba(14, 29, 82, .12); padding: 40px 30px; }
    .sv-eng-card:last-child { border-bottom: none; }
    #sv-engage { padding: 90px 0; }
}


/* ═══════════════════════════════════════════════════
   10 · BRIEF-INTAKE STEPS
   ═══════════════════════════════════════════════════ */
#sv-intake {
    padding: 110px 0;
    background: var(--bg-cream);
}
.sv-in-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    counter-reset: in-step;
}
.sv-in-step {
    position: relative;
    padding: 32px 30px 32px;
    background: var(--bg-white);
    border: 1px solid rgba(14, 29, 82, .07);
    border-radius: 8px;
    transition: border-color .35s, transform .35s;
}
.sv-in-step:hover { border-color: rgba(237, 20, 91, .35); transform: translateY(-4px); }
.sv-in-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-top: 1px solid var(--m);
    border-right: 1px solid var(--m);
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
}
.sv-in-num {
    display: inline-block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 2.2rem;
    color: var(--m);
    line-height: 1;
    margin-bottom: 18px;
}
.sv-in-step h4 {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}
.sv-in-step p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .sv-in-grid { grid-template-columns: 1fr; }
    .sv-in-step:not(:last-child)::after { display: none; }
    #sv-intake { padding: 80px 0; }
}


/* ═══════════════════════════════════════════════════
   11 · FAQ
   ═══════════════════════════════════════════════════ */
#sv-faq {
    padding: 110px 0;
    background: var(--bg-white);
}
.sv-faq-list {
    max-width: 880px;
    margin: 0 auto;
}
.sv-faq-item {
    border-bottom: 1px solid rgba(14, 29, 82, .12);
    transition: border-color .35s;
}
.sv-faq-item[open] { border-color: rgba(237, 20, 91, .35); }
.sv-faq-item summary {
    list-style: none;
    cursor: none;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: padding-left .35s;
}
.sv-faq-item summary::-webkit-details-marker { display: none; }
.sv-faq-item:hover summary { padding-left: 6px; }
.sv-faq-item:hover .sv-faq-q { color: var(--m); }

.sv-faq-q {
    font-family: var(--sans);
    font-weight: 800;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text);
    letter-spacing: -.005em;
    transition: color .35s;
}
.sv-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(14, 29, 82, .15);
    background: var(--bg-cream);
    position: relative;
    transition: background .35s, border-color .35s, transform .35s;
}
.sv-faq-icon::before,
.sv-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--text);
    transition: background .35s, transform .35s;
}
.sv-faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.sv-faq-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.sv-faq-item[open] .sv-faq-icon {
    background: var(--m);
    border-color: var(--m);
    transform: rotate(180deg);
}
.sv-faq-item[open] .sv-faq-icon::before,
.sv-faq-item[open] .sv-faq-icon::after { background: var(--white); }
.sv-faq-item[open] .sv-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.sv-faq-item[open] .sv-faq-q { color: var(--m); }

.sv-faq-a { padding: 0 0 28px; color: var(--muted); max-width: 700px; }
.sv-faq-a p { font-size: .96rem; line-height: 1.75; }

@media (max-width: 700px) {
    #sv-faq { padding: 80px 0; }
    .sv-faq-item summary { padding: 22px 0; gap: 16px; }
}


/* ═══════════════════════════════════════════════════
   12 · BRIEF INTAKE CTA · split form
   ═══════════════════════════════════════════════════ */
#sv-brief {
    padding: 130px 0;
    background: var(--text);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
#sv-brief::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(237, 20, 91, .22), transparent 40%),
        radial-gradient(circle at 86% 82%, rgba(0, 174, 239, .12), transparent 45%);
    pointer-events: none;
}
.sv-brief-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 5rem;
    align-items: start;
}
.sv-brief-left .eyebrow.light { color: var(--white); }
.sv-brief-h {
    font-family: var(--sans);
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -.02em;
    color: var(--white);
    margin: 0 0 22px;
}
.sv-brief-h em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--m);
    font-size: 1.15em;
    letter-spacing: 0;
}
.sv-brief-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 36px;
    max-width: 460px;
}
.sv-brief-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sv-brief-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .8);
    font-size: .95rem;
    line-height: 1.5;
}
.sv-brief-list li a { color: rgba(255, 255, 255, .85); transition: color .3s; }
.sv-brief-list li a:hover { color: var(--m); }
.sv-brief-k {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(237, 20, 91, .15);
    color: var(--m);
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(237, 20, 91, .35);
}

/* FORM */
.sv-brief-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 36px 36px 32px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    backdrop-filter: blur(8px);
}
.sv-bf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sv-brief-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sv-brief-form label > span {
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
}
.sv-brief-form input,
.sv-brief-form select,
.sv-brief-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, .15);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--body);
    font-size: .95rem;
    transition: border-color .3s, background .3s;
    outline: none;
    cursor: text;
}
.sv-brief-form select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23fff' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 44px; }
.sv-brief-form textarea { resize: vertical; min-height: 110px; }
.sv-brief-form input::placeholder,
.sv-brief-form textarea::placeholder { color: rgba(255, 255, 255, .35); }
.sv-brief-form input:focus,
.sv-brief-form select:focus,
.sv-brief-form textarea:focus {
    border-color: var(--m);
    background: rgba(0, 0, 0, .25);
    box-shadow: 0 0 0 3px rgba(237, 20, 91, .15);
}
.sv-brief-form select option { background: var(--text); color: var(--white); }

.sv-bf-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: var(--m);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: none;
    transition: background .35s, transform .35s;
    margin-top: 6px;
}
.sv-bf-submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; transition: transform .3s; }
.sv-bf-submit:hover { background: var(--white); color: var(--text); transform: translateY(-2px); }
.sv-bf-submit:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
    .sv-brief-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sv-bf-row { grid-template-columns: 1fr; }
    .sv-brief-form { padding: 28px 24px 26px; }
    #sv-brief { padding: 90px 0; }
}
