/* ==========================================================================
   Greenbelt Capital Partners — Website V2
   Shared stylesheet
   ==========================================================================
   Edit palette tokens in :root (below) and changes propagate across every
   page. Per-page styles live alongside each page template; this file is the
   design system.
   ========================================================================== */

/* ── Fonts ─────────────────────────────────────────────────────────────── */
@font-face {
    font-family: 'PP Right Serif';
    src: url('fonts/greenbelt/PP%20Right%20Serif%20-%20Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PP Right Serif';
    src: url('fonts/greenbelt/PP%20Right%20Serif%20-%20Light%20Italic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'PP Right Serif';
    src: url('fonts/greenbelt/PP%20Right%20Serif%20-%20Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PP Right Serif';
    src: url('fonts/greenbelt/PP%20Right%20Serif%20-%20Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Design tokens ─────────────────────────────────────────────────────── */
:root {
    /* Brand palette */
    --heritage-cream: #e9f3df;
    --deep-teal: #195246;
    --moss-green: #607025;
    --copper-ochre: #976B26;
    --slate-harbor: #2b4d3a;
    --midnight-charcoal: #1e2225;

    /* Page backgrounds */
    --bg-dark: #0d1f1a;
    --bg-teal: #132e26;
    --bg-light: #ffffff;       /* Light sections: pure white */

    /* Text */
    --text-light: #f5f3ee;
    --text-dark: #1e2225;
    --text-muted-light: rgba(233, 243, 223, 0.6);
    --text-muted-dark: rgba(30, 34, 37, 0.6);

    /* Borders */
    --border-light: rgba(233, 243, 223, 0.12);
    --border-dark: rgba(30, 34, 37, 0.1);

    /* Accent (page-specific overrides welcome) */
    --intersect-yellow: #F2C230;

    /* Typography */
    --font-serif: 'PP Right Serif', Georgia, 'Times New Roman', serif;
    --font-sans: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --pad-edge: 5vw;
    --section-pad: 8vmax;
    --container-max: 1400px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-base: 0.4s;
    --dur-long: 0.8s;

    /* Radius — change here to test different beveled-corner rhythms site-wide */
    --radius-card: 20px;        /* Big content cards: portfolio, team, news, project, contact panels, etc. */
    --radius-control: 4px;      /* Small controls: form fields, segmented buttons, hover pills */
    --radius-pill: 999px;       /* Filter pills (intentionally fully-rounded) */
    --radius-tag: 3px;          /* Tiny accent tags + badges */
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Pages that open into a light section can opt in */
body.light-page {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
em { font-style: italic; font-weight: 300; }
/* Within headings, emphasis is carried by a lighter weight (not italics), against the
   Medium-weight titles. Per Greenbelt request 2026-06-18 (Dessy): no italics in titles. */
h1 em, h2 em, h3 em { font-weight: 300; font-style: normal; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* Focus visibility (accessibility) */
:focus-visible {
    outline: 2px solid var(--copper-ochre);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Screen-reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Shared utility type ───────────────────────────────────────────────── */
.label {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

/* ── Site header / nav ─────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* env() adds the iOS status-bar safe area (0 on desktop) so full-bleed heroes can
       sit behind the status bar (viewport-fit=cover) without the logo tucking under it. */
    padding: calc(2rem + env(safe-area-inset-top)) var(--pad-edge) 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background var(--dur-base) ease, padding var(--dur-base) ease;
}

.site-header.scrolled {
    background: rgba(13, 31, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: calc(1.2rem + env(safe-area-inset-top)) var(--pad-edge) 1.2rem;
}

/* On a light-page, header sits over a dark hero so it stays in its "cream" tint;
   when scrolled, it dims to the same translucent teal as dark pages. */

.site-header .logo { text-decoration: none; display: flex; align-items: center; }
.site-header .logo img {
    height: 43px;
    width: auto;
    transition: height var(--dur-base) ease;
}
.site-header.scrolled .logo img { height: 36px; }

.site-nav {
    display: flex;
    gap: 2.5vw;
    align-items: center;
}

.site-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.site-nav a:hover { opacity: 1; }

.site-nav a.is-active {
    opacity: 1;
    border-bottom: 1px solid var(--heritage-cream);
    padding-bottom: 2px;
}

.btn-login {
    border: 1px solid rgba(233, 243, 223, 0.25);
    padding: 0.7em 1.4em;
    border-radius: 2px;
    opacity: 1 !important;
}

.btn-login:hover { background: rgba(233, 243, 223, 0.08); }

/* Back link (used on detail pages) */
.back-link {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.back-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* ── Mobile nav toggle (hamburger) ─────────────────────────────────────── */
.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 101;
    border-radius: 2px;
}

.nav-toggle .bar {
    display: block;
    position: absolute;
    left: 8px;
    right: 8px;
    height: 1.5px;
    background: var(--heritage-cream);
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.nav-toggle .bar:nth-child(1) { top: 12px; }
.nav-toggle .bar:nth-child(2) { top: 17px; }
.nav-toggle .bar:nth-child(3) { top: 22px; }

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    top: 17px;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    top: 17px;
    transform: rotate(-45deg);
}

/* ── Site footer ───────────────────────────────────────────────────────── */
.site-footer {
    background: var(--midnight-charcoal);
    padding: 3rem var(--pad-edge);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    gap: 2rem;
}

.site-footer .footer-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.site-footer .footer-brand {
    display: inline-block;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.site-footer .footer-brand:hover { opacity: 1; }

.site-footer .footer-brand img {
    height: 28px;
    width: auto;
    display: block;
}

.site-footer .footer-legal {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted-light);
}

.site-footer .footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.site-footer .footer-links a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted-light);
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer .footer-links a:hover { color: var(--heritage-cream); }

/* ── Scroll animations (shared) ────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--dur-long) ease, transform var(--dur-long) ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-up {
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive: mobile nav ────────────────────────────────────────────── */
@media (max-width: 860px) {
    .nav-toggle { display: block; }

    /* Full-screen overlay panel. Kept below the header's z-index so the
       logo + close button stay tappable; kept hidden via visibility + opacity
       as well as transform, so even if the transform can't resolve 100% of
       its own height (e.g. pre-animation), nothing leaks into the layout. */
    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;                       /* iOS Safari dynamic viewport */
        background: rgba(13, 31, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 6rem var(--pad-edge) 4rem;
        overflow-y: auto;
        z-index: 90;                          /* below header (100) so hamburger stays on top */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-100%);
        transition:
            transform var(--dur-base) var(--ease-out),
            opacity var(--dur-base) ease,
            visibility 0s linear var(--dur-base);
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition:
            transform var(--dur-base) var(--ease-out),
            opacity var(--dur-base) ease,
            visibility 0s linear 0s;
    }

    .site-nav a {
        font-size: 20px;
        letter-spacing: 0.14em;
        opacity: 0.9;
    }

    .site-nav a:hover,
    .site-nav a.is-active {
        opacity: 1;
    }

    .site-nav a.is-active {
        border-bottom: 1px solid var(--heritage-cream);
        padding-bottom: 4px;
    }

    .btn-login {
        margin-top: 1.5rem;
        padding: 0.9em 1.8em;
    }

    .site-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .site-footer .footer-left {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .site-footer .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .site-header {
        padding: calc(1.25rem + env(safe-area-inset-top)) var(--pad-edge) 1.25rem;
    }

    .site-header .logo img { height: 36px; }
}

/* ── News article (detail pages) ───────────────────────────────────────── */

.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--copper-ochre);
    z-index: 120;
    transition: width 0.08s linear;
    pointer-events: none;
}

.article-hero {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-teal) 55%, var(--deep-teal) 100%);
    color: var(--text-light);
    padding: 22vh var(--pad-edge) 6rem;
    overflow: hidden;
    isolation: isolate;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(151, 107, 38, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.article-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.article-hero .back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 2.5rem;
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--text-muted-light);
    text-decoration: none;
    transition: color 0.3s;
}

.article-hero .back-to-news:hover { color: var(--heritage-cream); }

.article-hero .back-to-news svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.article-meta .badge {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    padding: 0.45em 1em;
    border-radius: 3px;
    background: rgba(151, 107, 38, 0.18);
    color: var(--copper-ochre);
}

.article-meta time {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--text-muted-light);
}

.article-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.1;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: -0.015em;
    margin-bottom: 1.75rem;
}

.article-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: 300;
    color: var(--text-muted-light);
    max-width: 760px;
    margin-bottom: 1.75rem;
    line-height: 1.45;
}

.article-dateline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted-light);
    font-weight: 300;
}

.article-hero-logo {
    position: absolute;
    bottom: 3rem;
    right: var(--pad-edge);
    max-width: 180px;
    opacity: 0.55;
    pointer-events: none;
}

.article-hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 7vmax var(--pad-edge) 4vmax;
}

.article-body-inner {
    max-width: 760px;
    margin: 0 auto;
}

.article-body p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-muted-dark);
    margin-bottom: 1.75rem;
}

.article-body p.lead {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 1.65vw, 1.45rem);
    font-weight: 300;
    line-height: 1.55;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.article-subhead {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 2.7vw, 2.35rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--deep-teal);
    margin: 3.25rem 0 1.15rem;
    max-width: 820px;
    letter-spacing: 0;
}

.article-body strong { color: var(--deep-teal); font-weight: 500; }

/* Quotes read inline within the press release — a clean, stacked single
   column in the body's reading order. (No full-bleed dark band, decorative
   glyphs, card grid, or accent borders — keep it press-release-simple.) */
.article-quotes {
    margin: 2.5rem 0;
    padding: 0;
}

.article-quotes-grid,
.article-quotes-grid.q-1,
.article-quotes-grid.q-2 {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.article-quote {
    padding: 0;
}

.article-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.5;
    font-style: italic;
    font-weight: 300;
    color: var(--text-dark);
    margin: 0 0 0.9rem;
}

.article-quote cite {
    font-style: normal;
    display: block;
}

.article-quote .q-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-teal);
}

.article-quote .q-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted-dark);
    margin-top: 0.25rem;
}

.article-boilerplate {
    background: var(--bg-light);
    padding: 5vmax var(--pad-edge) 3vmax;
    border-top: 1px solid var(--border-dark);
}

.article-boilerplate-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(var(--boilerplate-cols, 2), 1fr);
    gap: 4rem;
}

.article-boilerplate-inner.b-1 { --boilerplate-cols: 1; max-width: 760px; }
.article-boilerplate-inner.b-3 { --boilerplate-cols: 3; gap: 3rem; }

.boilerplate-block h3 {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--moss-green);
    margin-bottom: 1rem;
}

.boilerplate-block p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text-muted-dark);
}

.article-contacts {
    background: var(--bg-light);
    padding: 2rem var(--pad-edge) 3rem;
}

.article-contacts-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.article-contacts h4 {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: var(--text-muted-dark);
    margin-bottom: 0.75rem;
}

.article-contacts p {
    font-size: 12.5px;
    line-height: 1.8;
    color: var(--text-muted-dark);
}

.article-contacts a {
    color: var(--deep-teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(25, 82, 70, 0.3);
    transition: border-color 0.3s;
}

.article-contacts a:hover { border-color: var(--deep-teal); }

.article-back-link {
    background: var(--bg-light);
    padding: 2rem var(--pad-edge) 6vmax;
    text-align: center;
    border-top: 1px solid var(--border-dark);
}

.article-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--deep-teal);
    text-decoration: none;
    padding-bottom: 0.3em;
    border-bottom: 1px solid var(--deep-teal);
    transition: opacity 0.3s;
}

.article-back-link a:hover { opacity: 0.7; }

.article-back-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

@media (max-width: 900px) {
    .article-hero { padding: 18vh var(--pad-edge) 5rem; }
    .article-hero-logo { position: static; margin-top: 2.5rem; max-width: 140px; opacity: 0.7; }
    .article-quotes-grid,
    .article-quotes-grid.q-2 { grid-template-columns: 1fr; }
    .article-boilerplate-inner,
    .article-boilerplate-inner.b-3 { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Page-bottom compliance footnote (homepage / thesis / portfolio) ──────
   Sized deliberately larger than the prior small stats footnote per Amanda.
   Sits on the dark footer background (not white) so it reads as part of the
   footer region rather than a jarring white band above it. */
.page-footnote {
    background: var(--midnight-charcoal);
    color: var(--text-muted-light);
    padding: 3rem var(--pad-edge) 2.5rem;
    border-top: 1px solid var(--border-light);
}
.page-footnote p {
    max-width: var(--container-max);
    margin: 0;
    font-family: var(--font-sans);
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--text-muted-light);
}
/* Empty-line gap between consecutive footnote paragraphs */
.page-footnote p + p { margin-top: 1.4rem; }

/* ── "Legal Disclaimer" inline hover-reveal ───────────────────────────────
   Per Amanda (2026-06): the testimonial disclaimer must sit directly beneath
   each exec quote, not in the footer. Trigger inherits the surrounding text
   colour so it works on light and dark sections; the tooltip is self-contained. */
.legal-disclaimer {
    position: relative;
    display: inline-block;
    font-family: var(--font-sans);
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: inherit;
    opacity: 0.6;
    cursor: help;
    border-bottom: 1px dotted currentColor;
}
.legal-disclaimer:hover, .legal-disclaimer:focus, .legal-disclaimer:focus-within { opacity: 0.9; }
.legal-disclaimer .legal-disclaimer-tip {
    position: absolute;
    left: 0;
    bottom: calc(100% + 0.55rem);
    z-index: 50;
    width: min(440px, 78vw);
    padding: 0.95rem 1.1rem;
    background: #16241f;
    color: #f5f3ee;
    font-style: normal;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0;
    border: 1px solid rgba(233, 243, 223, 0.18);
    border-radius: 6px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    pointer-events: none;
}
.legal-disclaimer:hover .legal-disclaimer-tip,
.legal-disclaimer:focus .legal-disclaimer-tip,
.legal-disclaimer:focus-within .legal-disclaimer-tip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.legal-disclaimer-line { margin: 1.25rem 0 0; }
/* On narrow screens the trigger is too small to anchor a floating box without it
   running off-screen, so the disclaimer drops in as a full-width panel below the
   line (anchored to the line, not the trigger). */
@media (max-width: 768px) {
    .legal-disclaimer-line { position: relative; }
    .legal-disclaimer { position: static; }
    .legal-disclaimer .legal-disclaimer-tip {
        left: 0; right: 0; width: auto;
        top: calc(100% + 0.55rem); bottom: auto;
        text-align: left;
    }
    /* The tip is a full-width absolute panel that overflows into the NEXT section;
       lift the section holding an open disclaimer above its sibling so the panel is
       never painted over. (A section paint-order issue, not a z-index value issue.) */
    section:has(.legal-disclaimer:focus-within),
    section:has(.legal-disclaimer:hover) { position: relative; z-index: 60; }
}

/* ── Graceful autoplay fallback ──────────────────────────────────────────
   When a browser blocks muted-video autoplay (e.g. Safari in Low Power Mode),
   suppress its native center "play" overlay so the <video> simply shows its
   poster still — a clean static image instead of a tap-to-play affordance. */
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
video::-webkit-media-controls {
  display: none !important;
}
