/* ==========================================================================
   site.css — alexconesa.com
   Single stylesheet for the rebuilt layout. Replaces bootstrap.min.css,
   styles.css, responsive.css, owl.carousel.min.css, animate.min.css and the
   old theme.css layer.

   Still loaded alongside this file: fonts.css (Google Sans / Lato / Roboto)
   and all.css (Font Awesome icons).

   Structure
     1. Tokens
     2. Reset & base
     3. Layout primitives
     4. Header
     5. Hero + proof bar
     6. Prose (About)
     7. Card grids (Services, Recognition)
     8. Testimonials
     9. Contact + footer
    10. Motion
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
    color-scheme: light;

    --bg:            #f7f8fa;
    --bg-elev:       #ffffff;
    --bg-sunken:     #eef0f4;
    --bg-tint:       #fff3ec;

    --ink:           #12151a;
    --ink-body:      #4b5462;
    --ink-muted:     #79828f;

    --line:          rgba(18, 21, 26, .10);
    --line-strong:   rgba(18, 21, 26, .20);

    --accent:        #d24a08;
    --accent-hover:  #b13d05;
    --accent-ink:    #ffffff;
    --accent-soft:   rgba(210, 74, 8, .10);

    --shadow-sm: 0 1px 2px rgba(16, 20, 28, .04), 0 2px 8px rgba(16, 20, 28, .05);
    --shadow-md: 0 2px 6px rgba(16, 20, 28, .05), 0 12px 28px rgba(16, 20, 28, .08);
    --shadow-lg: 0 6px 14px rgba(16, 20, 28, .07), 0 28px 60px rgba(16, 20, 28, .12);

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-full: 999px;

    --wrap: 1140px;
    --gutter: clamp(20px, 5vw, 48px);
    --section-y: clamp(64px, 9vw, 120px);

    --ease: cubic-bezier(.22, .61, .36, 1);

    --font-display: 'Google Sans', 'Google Sans Text', Lato, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Google Sans Text', Lato, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        color-scheme: dark;

        --bg:          #0d1014;
        --bg-elev:     #161a21;
        --bg-sunken:   #11151b;
        --bg-tint:     rgba(255, 133, 74, .10);

        --ink:         #eef1f5;
        --ink-body:    #adb5c1;
        --ink-muted:   #838d9b;

        --line:        rgba(255, 255, 255, .10);
        --line-strong: rgba(255, 255, 255, .20);

        --accent:      #ff8a4c;
        --accent-hover:#ffa574;
        --accent-ink:  #221004;
        --accent-soft: rgba(255, 138, 76, .14);

        --shadow-sm: 0 1px 2px rgba(0, 0, 0, .40), 0 2px 8px rgba(0, 0, 0, .30);
        --shadow-md: 0 2px 6px rgba(0, 0, 0, .44), 0 12px 28px rgba(0, 0, 0, .40);
        --shadow-lg: 0 6px 14px rgba(0, 0, 0, .50), 0 28px 60px rgba(0, 0, 0, .55);
    }
}

:root[data-theme="dark"] {
    color-scheme: dark;

    --bg:          #0d1014;
    --bg-elev:     #161a21;
    --bg-sunken:   #11151b;
    --bg-tint:     rgba(255, 133, 74, .10);

    --ink:         #eef1f5;
    --ink-body:    #adb5c1;
    --ink-muted:   #838d9b;

    --line:        rgba(255, 255, 255, .10);
    --line-strong: rgba(255, 255, 255, .20);

    --accent:      #ff8a4c;
    --accent-hover:#ffa574;
    --accent-ink:  #221004;
    --accent-soft: rgba(255, 138, 76, .14);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .40), 0 2px 8px rgba(0, 0, 0, .30);
    --shadow-md: 0 2px 6px rgba(0, 0, 0, .44), 0 12px 28px rgba(0, 0, 0, .40);
    --shadow-lg: 0 6px 14px rgba(0, 0, 0, .50), 0 28px 60px rgba(0, 0, 0, .55);
}

/* ---------- 2. Reset & base ---------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink-body);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0;
    font-weight: 700;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* Browsers give <figure> a 40px side margin and <blockquote> a 40px one too;
   both are used as layout containers here, so zero them. */
figure, blockquote { margin: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

strong { color: var(--ink); font-weight: 700; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection { background: var(--accent); color: var(--accent-ink); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--accent);
    color: var(--accent-ink);
    padding: 12px 18px;
    border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; color: var(--accent-ink); }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ---------- 3. Layout primitives ----------------------------------------- */

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--sunken { background: var(--bg-sunken); }

.section-head {
    max-width: 46rem;
    margin: 0 auto clamp(36px, 5vw, 60px);
    text-align: center;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}

.section-head .kicker {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .7rem;
}

.section-head p {
    margin-top: .85rem;
    color: var(--ink-muted);
    font-size: 1.02rem;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6em;
    font-family: var(--font-body);
    font-size: .97rem;
    font-weight: 600;
    line-height: 1;
    padding: .95em 1.5em;
    border-radius: var(--r-full);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .18s var(--ease), border-color .18s var(--ease),
                color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--accent-hover); color: var(--accent-ink); box-shadow: var(--shadow-md); }

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--bg-elev); color: var(--ink); border-color: var(--ink-muted); }

.btn--sm { padding: .7em 1.15em; font-size: .88rem; }

/* ---------- 4. Header ---------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.site-header.is-stuck {
    border-bottom-color: var(--line);
    background: color-mix(in srgb, var(--bg) 92%, transparent);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 68px;
}

.brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.06rem;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-right: auto;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}
.brand:hover { color: var(--ink); }
.brand .brand-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--accent);
    flex: none;
}

.site-nav { display: flex; align-items: center; gap: .35rem; }

.site-nav a {
    position: relative;
    color: var(--ink-body);
    font-size: .93rem;
    font-weight: 500;
    padding: .5rem .72rem;
    border-radius: var(--r-sm);
    transition: color .18s var(--ease), background-color .18s var(--ease);
}
.site-nav a:hover { color: var(--ink); background: var(--accent-soft); }
.site-nav a.is-active { color: var(--accent); }

.header-tools {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-left: .35rem;
    border-left: 1px solid var(--line);
    margin-left: .35rem;
}

.icon-btn {
    display: inline-grid;
    place-items: center;
    width: 38px; height: 38px;
    border-radius: var(--r-full);
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink-body);
    font-size: .95rem;
    cursor: pointer;
    transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.icon-btn:hover { background: var(--bg-elev); color: var(--ink); border-color: var(--line-strong); }

.lang-switch {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: var(--r-full);
    overflow: hidden;
}
.lang-switch a {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: .5rem .68rem;
    color: var(--ink-muted);
    transition: background-color .18s var(--ease), color .18s var(--ease);
}
.lang-switch a:hover { background: var(--bg-elev); color: var(--ink); }
.lang-switch a.is-active { background: var(--accent); color: var(--accent-ink); }

.nav-toggle { display: none; }

@media (max-width: 960px) {
    .site-header .wrap { gap: .5rem; }
    .nav-toggle { display: inline-grid; }
    .header-tools { border-left: 0; margin-left: 0; }

    .site-nav {
        position: absolute;
        inset: 100% 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--bg-elev);
        border-block: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        padding: .5rem var(--gutter) 1rem;
        display: none;
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: .8rem .25rem; font-size: 1rem; border-radius: 0; }
    .site-nav a + a { border-top: 1px solid var(--line); }
}

@media (max-width: 460px) {
    .header-cta { display: none; }
}

/* ---------- 5. Hero ------------------------------------------------------ */

.hero {
    position: relative;
    padding-block: clamp(48px, 7vw, 92px) clamp(40px, 6vw, 72px);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -32%;
    right: -12%;
    width: 62vw;
    height: 62vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle at 50% 50%, var(--accent-soft), transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: .45rem .85rem;
    border-radius: var(--r-full);
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.15rem);
    letter-spacing: -.035em;
    margin-bottom: .35rem;
}

.hero .hero-role {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.3vw, 1.55rem);
    font-weight: 500;
    color: var(--ink-body);
    letter-spacing: -.01em;
    margin-bottom: 1.35rem;
}

.hero .hero-lede {
    font-size: clamp(1.03rem, 1.5vw, 1.17rem);
    line-height: 1.6;
    color: var(--ink-body);
    max-width: 34rem;
    margin-bottom: 1.35rem;
}

/* Availability line — states plainly that permanent roles are on the table. */
.hero-note {
    max-width: 34rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent);
    color: var(--ink-muted);
    font-size: .97rem;
    line-height: 1.55;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}

.hero-availability {
    max-width: 34rem;
    margin-top: 1rem;
    color: var(--ink-muted);
    font-size: .92rem;
    line-height: 1.55;
}

.hero-photo {
    position: relative;
    justify-self: center;
    width: min(100%, 400px);
}

.hero-photo img {
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    background: var(--bg-elev);
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    box-shadow: inset 0 0 0 1px var(--line);
    pointer-events: none;
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-photo { order: -1; width: min(100%, 280px); justify-self: start; }
    .hero .hero-lede { max-width: none; }
}

/* Proof bar -------------------------------------------------------------- */

.proof {
    margin-top: clamp(28px, 3.5vw, 48px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
}

.proof div {
    background: var(--bg);
    padding: 1.35rem 1.25rem;
    text-align: center;
}

.proof b {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1.1;
}

.proof span {
    display: block;
    margin-top: .3rem;
    font-size: .82rem;
    color: var(--ink-muted);
    line-height: 1.35;
}

@media (max-width: 720px) {
    .proof { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 6. Prose (About) --------------------------------------------- */

.prose {
    max-width: 44rem;
    margin-inline: auto;
    font-size: 1.06rem;
}

.prose p { margin-bottom: 1.3em; }

.prose .lead {
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--ink);
}

.prose h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin: 2.6rem 0 1.1rem;
}

.check-list { display: grid; gap: .8rem; margin-bottom: 1.6em; }

.check-list li {
    position: relative;
    padding-left: 2rem;
    line-height: 1.55;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .48em;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: var(--accent-soft);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
}

.check-list li::after {
    content: "";
    position: absolute;
    left: .35rem;
    top: .78em;
    width: .4rem;
    height: .22rem;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
}

/* ---------- 7. Card grids ------------------------------------------------ */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.card {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: clamp(22px, 2.4vw, 30px);
    box-shadow: var(--shadow-sm);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

.card .card-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}

.card h3 {
    font-size: 1.08rem;
    line-height: 1.3;
    margin-bottom: .6rem;
}

.card p {
    font-size: .96rem;
    line-height: 1.6;
    color: var(--ink-body);
}

/* Recognition cards read as credentials, not services */
.card--award .card-icon {
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--ink-muted);
}
.card--award:hover .card-icon { color: var(--accent); border-color: var(--accent); }

/* ---------- 8. Testimonials ---------------------------------------------- */

.tst { position: relative; }

.tst-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(280px, 30vw, 368px);
    gap: clamp(16px, 2vw, 22px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    padding-block: 6px 22px;
    padding-inline: var(--gutter);
    margin-inline: calc(var(--gutter) * -1);
    scrollbar-width: none;
}
.tst-track::-webkit-scrollbar { display: none; }

.tst-card {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: clamp(22px, 2.4vw, 28px);
    box-shadow: var(--shadow-sm);
}

/* The quote glyph lives on the card, not the blockquote, so the blockquote can
   be line-clamped without the glyph counting as one of the visible lines. */
.tst-card::before {
    content: "\201C";
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    line-height: .7;
    color: var(--accent);
    opacity: .35;
    margin-bottom: .5rem;
}

.tst-card blockquote {
    margin: 0 0 1.4rem;
    font-size: .97rem;
    line-height: 1.62;
    color: var(--ink-body);
    flex: 1;
    /* Quote lengths vary from two lines to twenty; without a cap one outlier
       sets the height of every card in the rail. */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 11;
    line-clamp: 11;
    overflow: hidden;
}

.tst-who {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
}

.tst-who img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
    background: var(--bg-sunken);
}

.tst-name {
    display: block;
    font-weight: 700;
    color: var(--ink);
    font-size: .95rem;
    line-height: 1.3;
}

.tst-role {
    display: block;
    font-size: .82rem;
    color: var(--ink-muted);
    line-height: 1.35;
    margin-top: .12rem;
}

.tst-region {
    display: inline-block;
    margin-top: .35rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--accent);
}

.tst-controls {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin-top: 1.6rem;
}

.tst-controls button[disabled] { opacity: .35; cursor: default; }

/* ---------- 9. Contact + footer ------------------------------------------ */

.contact-panel {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(30px, 5vw, 60px);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-panel h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    margin-bottom: .9rem;
}

.contact-panel .contact-lede {
    max-width: 40rem;
    margin: 0 auto 2.2rem;
    color: var(--ink-body);
    font-size: 1.06rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2.2rem;
    text-align: left;
}

.contact-methods li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1.05rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--bg);
}

.contact-methods i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: .28rem;
    flex: none;
}

.contact-methods .label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: .2rem;
}

.contact-methods .value { color: var(--ink); font-weight: 500; font-size: .95rem; overflow-wrap: anywhere; word-break: normal; }
.contact-methods .value a { color: var(--ink); }
.contact-methods .value a:hover { color: var(--accent); }
.contact-methods .value .muted { color: var(--ink-muted); font-weight: 400; }

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding-block: 2.4rem;
    color: var(--ink-muted);
    font-size: .88rem;
}

.site-footer .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.social-row { display: flex; gap: .5rem; }

.social-row a {
    display: grid;
    place-items: center;
    width: 38px; height: 38px;
    border-radius: var(--r-full);
    border: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 1rem;
    transition: color .18s var(--ease), border-color .18s var(--ease), background-color .18s var(--ease);
}
.social-row a:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }

/* ---------- 10. Motion ---------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- 11. Case studies (#impact) ------------------------------------ */

/* Situation / Action / Result are the scan path through a long case study.
   Two-column grid so the three labels align and a reader can jump straight to
   Result. Collapses to stacked labels on narrow screens. */

.case { margin-bottom: 2.6em; }
.case:last-child { margin-bottom: 0; }

.case-line {
    display: grid;
    grid-template-columns: 6.5rem 1fr;
    gap: 0 1.25rem;
    margin-bottom: .85em;
}

.case-tag {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--accent);
    padding-top: .34em;
}

.case-line--result .case-tag { color: var(--ink); }
.case-line--result p { font-weight: 500; }
.case-line p { margin: 0; }

@media (max-width: 640px) {
    .case-line { grid-template-columns: 1fr; gap: .15rem; }
    .case-tag { padding-top: 0; }
}

.case-note {
    margin-top: 1.6rem;
    color: var(--ink-muted);
    font-size: .92rem;
    font-style: italic;
}
