/* ============================================================================
   /assets/css/legal.css
   ----------------------------------------------------------------------------
   Shared stylesheet for the two legal pages: /privacypolicy and
   /termscondition. They share the same anatomy:

     §1  HERO       — breadcrumb, eyebrow, big serif title, last-updated
                      chip, lead paragraph
     §2  BODY       — 2-col grid: long-form prose on the left, sticky
                      "On this page" table-of-contents on the right.
     §3  CTA        — quiet "Questions about this policy?" closing card

   Class prefix `.zc-legal-{section}__{element}` so both pages use the
   same chrome. Brand grammar: amber-on-snow, mono `§ NN` eyebrows,
   hairline dividers, Outfit for display, Figtree for body, Lora for
   the long-form prose so the legal copy reads like a serious document.
   ============================================================================ */


/* ============================================================================
   §0  Page reset — drop the inherited content-wrap padding so each band
       owns its own --zc-pad-x padding.
   ============================================================================ */
body .content-wrap.my-wrap-no-padding,
body .container { /* legacy theme containers stay wide-open */ }


/* ============================================================================
   §1  HERO — quiet, single-column.
       Sits on the cream off-white background with the same amber radial
       used elsewhere. Breadcrumb on top, eyebrow chip below, then the
       display title, an "Updated on" pill, and a single lead paragraph.
   ============================================================================ */
.zc-legal-hero {
    padding: clamp(48px, 5vw, 96px) var(--zc-pad-x) clamp(32px, 3.6vw, 56px);
    background:
        radial-gradient(ellipse at 15% 0%, rgba(207, 138, 63, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 100%, rgba(46, 75, 113, 0.05) 0%, transparent 55%),
        var(--zc-off-white);
    border-bottom: 1px solid var(--zc-linen);
}
@media (max-width: 991px) {
    .zc-legal-hero { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); }
}

.zc-legal-hero__crumb {
    font-family: var(--zc-f-heading);
    font-size: 12px;
    letter-spacing: 0.4px;
    color: var(--zc-warm-mid);
    margin-bottom: clamp(20px, 2vw, 28px);
}
.zc-legal-hero__crumb a {
    color: var(--zc-warm-dk);
    text-decoration: none;
    transition: color 0.25s var(--zc-ease);
}
.zc-legal-hero__crumb a:hover { color: var(--zc-amber-dk); }
.zc-legal-hero__crumb span { margin: 0 8px; color: var(--zc-amber-a45); }
.zc-legal-hero__crumb-current { color: var(--zc-charcoal); font-weight: 600; }

.zc-legal-hero__top {
    display: inline-flex; align-items: center; gap: 14px;
    flex-wrap: wrap;
    margin-bottom: clamp(18px, 1.8vw, 24px);
}
.zc-legal-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: var(--zc-amber-a08);
    border: 1px solid var(--zc-amber-a25);
    border-radius: 999px;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
}
.zc-legal-hero__eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zc-amber-lt), var(--zc-amber-dk));
    box-shadow: 0 0 0 2px rgba(207, 138, 63, 0.18);
}
.zc-legal-hero__updated {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--zc-f-heading);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--zc-warm-dk);
}
.zc-legal-hero__updated i {
    font-size: 13px;
    color: var(--zc-amber-dk);
}
.zc-legal-hero__updated b {
    color: var(--zc-charcoal);
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.zc-legal-hero__title {
    margin: 0 0 18px;
    font-family: var(--zc-f-display);
    font-size: clamp(32px, 2.8vw + 14px, 56px);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -1.1px;
    color: var(--zc-charcoal);
    text-wrap: balance;
    max-width: 20ch;
}
.zc-legal-hero__title span {
    font-weight: 500;
    background: linear-gradient(135deg, var(--zc-amber-dk) 0%, var(--zc-amber) 50%, var(--zc-amber-lt) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.zc-legal-hero__lead {
    margin: 0;
    font-family: var(--zc-f-body);
    font-size: clamp(15px, 0.3vw + 13px, 17px);
    line-height: 1.7;
    color: var(--zc-warm-dk);
    max-width: 64ch;
    text-wrap: balance;
}


/* ============================================================================
   §2  BODY — prose column + sticky table-of-contents.
       2-col layout collapses to a single column under 980px. The TOC
       card auto-populates client-side from the prose's H2/H3 headings
       (see the inline script at the foot of each PHP file).
   ============================================================================ */
.zc-legal-body {
    background: var(--zc-white);
    padding: clamp(40px, 4.4vw, 72px) 0 clamp(48px, 5vw, 88px);
}
.zc-legal-body__inner {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    gap: clamp(28px, 3vw, 56px);
    padding-left: var(--zc-pad-x);
    padding-right: var(--zc-pad-x);
    align-items: start;
}
@media (max-width: 991px) {
    .zc-legal-body__inner { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); }
}
@media (max-width: 980px) {
    .zc-legal-body__inner { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------------------------
   §2.1  PROSE — long-form legal copy.
         The DB stores rich-text HTML; we just give it a calm reading
         shell. Lora serif body, navy headings, generous line-height,
         no italics in headings.
   ---------------------------------------------------------------------------- */
.zc-legal-prose {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(15px, 0.25vw + 13.5px, 17px);
    line-height: 1.78;
    color: var(--zc-warm-dk);
    min-width: 0;
    /* CSS counter for H2 numbering — gives each section a real, visible
       "§ 01", "§ 02" prefix that mirrors the editorial grammar used
       on the rest of the site. */
    counter-reset: zcLegalH2;
}
.zc-legal-prose p {
    margin: 0 0 18px;
}
.zc-legal-prose p:first-of-type {
    font-size: clamp(16px, 0.28vw + 14.5px, 18.5px);
    color: var(--zc-charcoal);
    font-weight: 500;
    line-height: 1.65;
}
.zc-legal-prose h1,
.zc-legal-prose h2,
.zc-legal-prose h3,
.zc-legal-prose h4,
.zc-legal-prose h5,
.zc-legal-prose h6 {
    font-family: var(--zc-f-display);
    color: var(--zc-charcoal);
    line-height: 1.18;
    letter-spacing: -0.4px;
    font-weight: 500;
    font-style: normal;
}

/* — H2 — primary section header. Premium magazine treatment: a chunky
     gold-foil hairline above, then a counter prefix in mono ("§ 01 —")
     followed by the heading text. Smooth scroll-margin-top so anchor
     jumps from the TOC land slightly below the sticky header. */
.zc-legal-prose h2 {
    counter-increment: zcLegalH2;
    position: relative;
    margin: 2.4em 0 0.6em;
    padding: 26px 0 0;
    font-size: clamp(24px, 1.5vw + 14px, 34px);
    font-weight: 500;
    color: var(--zc-charcoal);
    letter-spacing: -0.6px;
    line-height: 1.15;
    scroll-margin-top: 24px;
}
.zc-legal-prose h2::before {
    /* Gold-foil hairline above the heading — fades from amber-dk to
       transparent so each section break feels like a magazine
       chapter break, not a hard rule. */
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, var(--zc-amber-dk), var(--zc-amber), transparent);
    border-radius: 2px;
}
.zc-legal-prose h2::after {
    /* Mono counter prefix — "§ 01", "§ 02" etc. Pinned to the right of
       the foil rule with a small gap. Keeps the heading text uncluttered
       while still giving each section a real index number. */
    content: "\00A7 " counter(zcLegalH2, decimal-leading-zero);
    position: absolute;
    top: 11px; left: 0;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    transform: translateY(-3px);
    background: var(--zc-white);
    padding: 0 12px 0 0;
}
.zc-legal-prose h2:first-child {
    /* First H2 in the doc doesn't need the top hairline margin push — */
    margin-top: 0.6em;
}

/* — H3 — subsection header. Amber, with a small leading bullet marker so
     the eye picks up the hierarchy without needing to read sizes. */
.zc-legal-prose h3 {
    position: relative;
    margin: 1.8em 0 0.55em;
    padding-left: 22px;
    font-size: clamp(18px, 0.5vw + 14px, 22px);
    color: var(--zc-amber-dk);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.3px;
    scroll-margin-top: 24px;
}
.zc-legal-prose h3::before {
    /* Small amber square marker — magazine style, clean and obvious */
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--zc-amber), var(--zc-amber-dk));
    border-radius: 2px;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px -3px var(--zc-amber-a45);
}

/* — H4 — overline label */
.zc-legal-prose h4 {
    margin: 1.4em 0 0.4em;
    padding-left: 22px;
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-family: var(--zc-f-heading);
    font-weight: 700;
    color: var(--zc-warm-dk);
}
.zc-legal-prose h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 1px;
    background: var(--zc-amber-dk);
}

.zc-legal-prose b,
.zc-legal-prose strong {
    color: var(--zc-charcoal);
    font-weight: 700;
}
.zc-legal-prose em {
    /* Brand rule: no italic. Render <em> as a quiet underline accent
       instead so editors can paste DB content and not break grammar. */
    font-style: normal;
    background: linear-gradient(transparent 60%, var(--zc-amber-a18) 60%);
    padding: 0 2px;
    color: var(--zc-charcoal);
}

.zc-legal-prose a {
    color: var(--zc-amber-dk) !important;
    border-bottom: 1px solid var(--zc-amber-a35);
    text-decoration: none;
    transition: color 0.25s, border-color 0.25s;
}
.zc-legal-prose a:hover {
    color: var(--zc-amber) !important;
    border-bottom-color: var(--zc-amber);
}

.zc-legal-prose ul,
.zc-legal-prose ol {
    margin: 0 0 1.3em;
    padding-left: 1.4em;
}
.zc-legal-prose li {
    margin-bottom: 0.5em;
    padding-left: 0.4em;
}
/* Force a consistent marker type — defeats inline `list-style-type:
   circle` (or roman/square/etc.) that the WYSIWYG editor injects
   on UL/OL tags. `!important` is required because inline styles
   otherwise always win the cascade. */
.zc-legal-prose ul,
.zc-legal-prose ul[style] {
    list-style-type: disc !important;
}
.zc-legal-prose ol,
.zc-legal-prose ol[style] {
    list-style-type: decimal !important;
}
.zc-legal-prose ul li::marker { color: var(--zc-amber-dk); }
.zc-legal-prose ol li::marker {
    color: var(--zc-amber-dk);
    font-family: 'Courier New', ui-monospace, monospace;
    font-weight: 700;
}

.zc-legal-prose blockquote {
    margin: 1.6em 0;
    padding: 18px 22px 18px 24px;
    border-left: 4px solid var(--zc-amber-dk);
    background: linear-gradient(90deg, rgba(207, 138, 63, 0.06), transparent 70%);
    font-family: var(--zc-f-display);
    font-size: 18px;
    line-height: 1.55;
    font-style: normal;
    font-weight: 500;
    color: var(--zc-charcoal);
    letter-spacing: -0.2px;
}
.zc-legal-prose blockquote p { margin: 0; }

.zc-legal-prose hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--zc-amber-a45), transparent);
    margin: 2em 0;
}

.zc-legal-prose table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.4em 0;
    font-family: var(--zc-f-body);
    font-size: 14.5px;
    border: 1px solid var(--zc-linen);
    border-radius: 8px;
    overflow: hidden;
    background: var(--zc-white);
}
.zc-legal-prose table thead {
    background: linear-gradient(180deg, var(--zc-charcoal), var(--zc-deep));
}
.zc-legal-prose table th,
.zc-legal-prose table thead td {
    padding: 12px 16px;
    text-align: left;
    font-family: var(--zc-f-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--zc-amber-lt) !important;
    background: transparent !important;
    border: 0 !important;
}
.zc-legal-prose table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--zc-linen);
    color: var(--zc-warm-dk);
}
.zc-legal-prose table tr:last-child td { border-bottom: none; }

/* === TABLE SCROLL WRAPPER — horizontal scroll for wide DB tables ======
   Inline scripts in termscondition.php and privacypolicy.php wrap
   every <table> inside .zc-legal-prose with <div class="zc-table-scroll">.
   Wide tables stay readable on mobile by scrolling horizontally
   instead of squashing. Scoped to .zc-legal-prose so it never affects
   static tables elsewhere on the site. */
.zc-legal-prose .zc-table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin: 1.4em 0;
    border-radius: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--zc-amber-a35) transparent;
}
.zc-legal-prose .zc-table-scroll::-webkit-scrollbar { height: 6px; }
.zc-legal-prose .zc-table-scroll::-webkit-scrollbar-track { background: transparent; }
.zc-legal-prose .zc-table-scroll::-webkit-scrollbar-thumb {
    background: var(--zc-amber-a35);
    border-radius: 3px;
}
.zc-legal-prose .zc-table-scroll > table,
.zc-legal-prose .zc-table-scroll > table[style] {
    margin: 0 !important;
    /* Desktop default: fill the column, even column distribution. */
    width: 100% !important;
    min-width: 0;
}
/* Mobile / small screen: let the table size to its content so cells
   keep their natural widths, and scroll horizontally inside the
   wrapper when total content > viewport. */
@media (max-width: 768px) {
    .zc-legal-prose .zc-table-scroll {
        margin: 1em 0;
        -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 22px), transparent);
                mask-image: linear-gradient(90deg, #000 calc(100% - 22px), transparent);
    }
    .zc-legal-prose .zc-table-scroll > table,
    .zc-legal-prose .zc-table-scroll > table[style] {
        width: max-content !important;
        min-width: max-content;
    }
}

/* === TABLE — fully ignore writer-injected inline styles ================
   Writers occasionally add inline style="color/background/width/border/
   font-size/etc." on table / tr / td / th via the WYSIWYG editor. We
   re-declare every visual property with !important so OUR design is
   the single source of truth for table presentation regardless of
   what the inline attributes try to set. */
.zc-legal-prose table,
.zc-legal-prose table[style] {
    width: 100% !important;
    background: var(--zc-white) !important;
    border: 1px solid var(--zc-linen) !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    color: var(--zc-warm-dk) !important;
    font-family: var(--zc-f-body) !important;
}
.zc-legal-prose table tr,
.zc-legal-prose table tr[style] {
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    color: inherit !important;
    height: auto !important;
}
.zc-legal-prose table td,
.zc-legal-prose table th,
.zc-legal-prose table td[style],
.zc-legal-prose table th[style] {
    padding: 12px 16px !important;
    background-color: transparent !important;
    background-image: none !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    color: var(--zc-warm-dk) !important;
    font-family: var(--zc-f-body) !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    vertical-align: top !important;
    border-color: var(--zc-linen) !important;
}
/* thead — re-assert the dark navy header band with amber-lt text. */
.zc-legal-prose table thead th,
.zc-legal-prose table thead td,
.zc-legal-prose table thead th[style],
.zc-legal-prose table thead td[style] {
    font-family: var(--zc-f-heading) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.4px !important;
    text-transform: uppercase !important;
    color: var(--zc-amber-lt) !important;
    background: transparent !important;
    border: 0 !important;
}


/* ----------------------------------------------------------------------------
   §2.2  SIDEBAR — sticky "On this page" TOC.
         Card mirrors the article sidebar grammar elsewhere on the site.
         List is populated by the inline script at the foot of the PHP
         file: it scans the prose H2 / H3 elements, assigns IDs, and
         appends links. If fewer than two headings exist, the card stays
         hidden so the legal page falls back to single-column.
   ---------------------------------------------------------------------------- */
.zc-legal-side-wrap { align-self: start; min-width: 0; }
.zc-legal-side {
    display: flex; flex-direction: column;
    gap: clamp(14px, 1.6vw, 20px);
}

.zc-legal-side__card {
    position: relative;
    padding: clamp(18px, 2vw, 24px);
    background:
        radial-gradient(ellipse at 0% 0%, rgba(207, 138, 63, 0.10) 0%, transparent 55%),
        var(--zc-white);
    border: 1px solid var(--zc-amber-a25);
    border-radius: 12px;
}
.zc-legal-side__card::before {
    content: "";
    position: absolute;
    top: -1px; left: 22px; right: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--zc-amber-dk) 50%, transparent);
}
.zc-legal-side__card-mark {
    display: inline-block;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    margin-bottom: 6px;
}
.zc-legal-side__card-title {
    margin: 0 0 14px;
    font-family: var(--zc-f-display);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: var(--zc-charcoal);
}

.zc-legal-toc__list {
    list-style: none; margin: 0; padding: 0;
    counter-reset: zcLegalToc;
    display: flex; flex-direction: column; gap: 2px;
}
.zc-legal-toc__list li { counter-increment: zcLegalToc; }
.zc-legal-toc__list a {
    position: relative;
    display: block;
    padding: 9px 10px 9px 38px;
    border-left: 2px solid transparent;
    border-radius: 6px;
    font-family: var(--zc-f-display);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--zc-warm-dk) !important;
    text-decoration: none;
    transition: all 0.3s var(--zc-ease);
}
.zc-legal-toc__list a::before {
    content: counter(zcLegalToc, decimal-leading-zero);
    position: absolute;
    left: 10px; top: 10px;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--zc-amber-dk);
    opacity: 0.6;
    transition: opacity 0.3s var(--zc-ease), color 0.3s var(--zc-ease);
}
.zc-legal-toc__list a:hover {
    background: rgba(207, 138, 63, 0.06);
    border-left-color: var(--zc-amber-a45);
    color: var(--zc-amber-dk) !important;
    padding-left: 42px;
}
.zc-legal-toc__list a:hover::before { opacity: 1; }

/* Scroll-spy active state — the currently-visible section's TOC entry
   gets a solid amber rail, amber-tinted background, and a bumped number.
   Set client-side by an IntersectionObserver. */
.zc-legal-toc__list a.is-active {
    background: linear-gradient(90deg, var(--zc-amber-a08), transparent 80%);
    border-left-color: var(--zc-amber-dk);
    color: var(--zc-amber-dk) !important;
    font-weight: 600;
    padding-left: 42px;
}
.zc-legal-toc__list a.is-active::before {
    opacity: 1;
    color: var(--zc-amber-dk);
    font-weight: 700;
}

/* H3 (nested) entries — smaller, indented further. */
.zc-legal-toc__h3 a {
    padding-left: 50px;
    font-size: 12.5px;
    color: var(--zc-warm-mid) !important;
}
.zc-legal-toc__h3 a::before {
    left: 26px;
    font-size: 9px;
    opacity: 0.5;
}
.zc-legal-toc__h3 a:hover { padding-left: 54px; }
.zc-legal-toc__h3 a.is-active {
    padding-left: 54px;
    color: var(--zc-amber-dk) !important;
}

/* Print-friendly compliance card — quiet line of "what this means" */
.zc-legal-side__compliance {
    list-style: none; margin: 14px 0 0; padding: 14px 0 0;
    border-top: 1px dashed var(--zc-amber-a25);
    display: flex; flex-direction: column; gap: 8px;
}
.zc-legal-side__compliance li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    font-family: var(--zc-f-body);
    font-size: 12px;
    line-height: 1.45;
    color: var(--zc-warm-mid);
}
.zc-legal-side__compliance i {
    color: var(--zc-amber-dk);
    font-size: 12px;
    margin-top: 4px;
}


/* ============================================================================
   §3  CTA — quiet "Questions about this policy?" closing card.
       Centered, gold-foil hairline on top, single primary button + a
       quiet secondary link. Same grammar as the closing CTA elsewhere
       but warmer (off-white background) since these are reference pages,
       not conversion pages.
   ============================================================================ */
.zc-legal-cta {
    padding: clamp(48px, 5vw, 88px) var(--zc-pad-x);
    background:
        radial-gradient(ellipse at 8% 0%, rgba(207, 138, 63, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 92% 100%, rgba(46, 75, 113, 0.06) 0%, transparent 55%),
        var(--zc-off-white);
    border-top: 1px solid var(--zc-linen);
    text-align: center;
}
@media (max-width: 991px) {
    .zc-legal-cta { padding-left: var(--zc-pad-x-mb); padding-right: var(--zc-pad-x-mb); }
}

.zc-legal-cta__rule {
    display: block;
    width: 64px; height: 1px;
    margin: 0 auto 22px;
    background: linear-gradient(90deg, transparent, var(--zc-amber-dk), transparent);
}
.zc-legal-cta__eyebrow {
    display: inline-block;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--zc-amber-dk);
    margin-bottom: 14px;
}
.zc-legal-cta__title {
    margin: 0 auto 16px;
    font-family: var(--zc-f-display);
    font-size: clamp(24px, 1.8vw + 14px, 40px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: var(--zc-charcoal);
    text-wrap: balance;
}
.zc-legal-cta__title span {
    font-weight: 500;
    background: linear-gradient(135deg, var(--zc-amber-dk), var(--zc-amber), var(--zc-amber-lt));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.zc-legal-cta__sub {
    margin: 0 auto 24px;
    max-width: 56ch;
    font-family: var(--zc-f-body);
    font-size: clamp(14px, 0.3vw + 12px, 16px);
    line-height: 1.7;
    color: var(--zc-warm-dk);
    text-wrap: balance;
}
.zc-legal-cta__btns {
    display: inline-flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
}
.zc-legal-cta__btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    font-family: var(--zc-f-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s var(--zc-ease-spring), box-shadow 0.3s, color 0.3s;
}
.zc-legal-cta__btn--primary {
    background: linear-gradient(135deg, var(--zc-amber) 0%, var(--zc-amber-dk) 100%);
    color: var(--zc-white) !important;
    box-shadow: 0 16px 32px -10px var(--zc-amber-a45);
}
.zc-legal-cta__btn--primary:hover { transform: translateY(-2px); }
.zc-legal-cta__btn--ghost {
    background: var(--zc-white);
    border: 1px solid var(--zc-amber-a35);
    color: var(--zc-warm-dk) !important;
}
.zc-legal-cta__btn--ghost:hover {
    background: var(--zc-amber-a08);
    color: var(--zc-amber-dk) !important;
    transform: translateY(-2px);
}
