/* BUILD: saintcvrlos-media-css-20260804-1747 */
/* BUILD: saintcvrlos-media-css-20260804-1414 */
/* BUILD: saintcvrlos-media-export-20260804-1315 */
/* =========================================================SELF-HOSTED INTER VARIABLE FONTFont file and license are stored in the repository root.========================================================= */

    @font-face {
        font-family: "Inter";
        src: url("../InterVariable.woff2") format("woff2");
        font-style: normal;
        font-weight: 100 900;
        font-display: swap;
    }

    :root {
        --background: #0b0b0d;
        --surface: #141417;
        --surface-light: #19191d;
        --surface-blue: #151e2b;
        --border: #29292f;
        --text: #f5f5f7;
        --muted: #a1a1aa;
        --quiet: #6f6f78;
        --accent: #5ea8ff;
        --accent-soft: rgba(94, 168, 255, 0.12);
        --accent-border: rgba(94, 168, 255, 0.28);
        --page-width: 1240px;
        --page-padding: clamp(22px, 5vw, 72px);
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 76px;
    }

    body {
        margin: 0;
        background: var(--background);
        color: var(--text);
        font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    body.menu-open {
        overflow: hidden;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

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

    button,
    a {
        -webkit-tap-highlight-color: transparent;
    }

    button {
        font: inherit;
    }

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

    .container {
        width: min(100%, var(--page-width));
        margin-inline: auto;
        padding-inline: var(--page-padding);
    }

    .section {
        padding-block: clamp(100px, 13vw, 180px);
    }

    .section-label {
        margin: 0 0 30px;
        color: var(--accent);
        font-size: clamp(0.78rem, 0.85vw, 0.9rem);
        font-weight: 750;
        letter-spacing: 0.22em;
        text-transform: uppercase;
    }

    .section-title {
        max-width: 980px;
        margin: 0;
        font-size: clamp(3.3rem, 7vw, 7.7rem);
        font-weight: 620;
        letter-spacing: -0.07em;
        line-height: 0.92;
    }

    .section-description {
        max-width: 670px;
        margin: 42px 0 0;
        color: var(--muted);
        font-size: clamp(1.05rem, 1.7vw, 1.3rem);
        line-height: 1.6;
    }

    .section-description.indented {
        margin-left: clamp(0px, 8vw, 104px);
        padding-left: 24px;
        border-left: 1px solid var(--accent-border);
    }

    .explore-intro .section-description {
        font-size: clamp(1.12rem, 1.82vw, 1.4rem);
        font-weight: 470;
        letter-spacing: -0.018em;
        line-height: 1.55;
    }

    .site-header {
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(11, 11, 13, 0.8);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .nav {
        min-height: 76px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
    }

    .wordmark {
        position: relative;
        z-index: 102;
        font-size: 0.9rem;
        font-weight: 800;
        letter-spacing: 0.17em;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: clamp(18px, 3vw, 38px);
    }

    .nav-links a {
        position: relative;
        color: var(--muted);
        font-size: 0.82rem;
        transition: color 180ms ease, transform 180ms ease;
    }

    .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 1px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 220ms ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        color: var(--text);
        transform: translateY(-1px);
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .menu-button {
        position: relative;
        z-index: 102;
        display: none;
        padding: 8px 0;
        color: var(--text);
        background: transparent;
        border: 0;
        cursor: pointer;
        font-size: 0.72rem;
        font-weight: 750;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .mobile-menu {
        position: fixed;
        z-index: 200;
        inset: 0;
        display: flex;
        flex-direction: column;
        background: rgba(11, 11, 13, 0.99);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 240ms ease, visibility 240ms ease;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-header {
        min-height: 68px;
        padding-inline: var(--page-padding);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu-wordmark {
        font-size: 0.9rem;
        font-weight: 800;
        letter-spacing: 0.17em;
    }

    .mobile-close {
        padding: 8px 0;
        color: var(--text);
        background: transparent;
        border: 0;
        cursor: pointer;
        font-size: 0.72rem;
        font-weight: 750;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .mobile-menu-body {
        flex: 1;
        padding: clamp(42px, 10vh, 84px) var(--page-padding) 38px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-links a {
        padding-block: 18px;
        color: var(--muted);
        border-bottom: 1px solid var(--border);
        font-size: clamp(2.3rem, 12vw, 4.6rem);
        font-weight: 560;
        letter-spacing: -0.055em;
        line-height: 0.98;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a:focus-visible {
        color: var(--text);
    }

    .mobile-menu-note {
        color: var(--quiet);
        font-size: 0.72rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .hero {
        min-height: 100svh;
        padding-top: 120px;
        display: grid;
        align-items: center;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
        align-items: center;
        gap: clamp(50px, 8vw, 120px);
        padding-block: 80px;
    }

    .hero-copy {
        position: relative;
        z-index: 2;
    }

    .hero-eyebrow {
        margin: 0 0 24px;
        color: var(--muted);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
    }

    .hero-title {
        margin: 0;
        font-size: clamp(4rem, 11vw, 10.5rem);
        font-weight: 650;
        letter-spacing: -0.085em;
        line-height: 0.8;
    }

    .hero-actions {
        margin-top: 48px;
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero-tagline {
        width: max-content;
        max-width: min(100%, 820px);
        margin: 52px 0 0 clamp(0px, 3vw, 42px);
        color: var(--text);
        font-size: clamp(1.36rem, 2.15vw, 1.95rem);
        font-weight: 620;
        letter-spacing: -0.06em;
        line-height: 1.08;
        white-space: nowrap;
    }

    .button {
        min-height: 52px;
        padding: 0 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border: 1px solid var(--border);
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 650;
        transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
    }

    .button-primary {
        background: var(--text);
        color: #09090b;
        border-color: var(--text);
    }

    .button-primary:hover {
        background: var(--accent);
        border-color: var(--accent);
        transform: translateY(-3px);
    }

    .button-secondary {
        color: var(--muted);
    }

    .button-secondary:hover {
        color: var(--text);
        border-color: var(--muted);
        transform: translateY(-3px);
    }

    .button-arrow {
        font-size: 1rem;
        transition: transform 220ms ease;
    }

    .button:hover .button-arrow {
        transform: translateX(4px);
    }

    .portrait-frame {
        position: relative;
        min-height: min(68vh, 740px);
        overflow: hidden;
        background:
            linear-gradient(145deg, rgba(94, 168, 255, 0.1), transparent 42%),
            var(--surface);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow:
            7px 7px 0 -1px rgba(94, 168, 255, 0.11),
            10px 10px 28px rgba(94, 168, 255, 0.05);
        isolation: isolate;
    }

    .portrait-frame::before {
        content: "";
        position: absolute;
        inset: 18px;
        z-index: 3;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: inset 0 0 28px rgba(94, 168, 255, 0.035);
        pointer-events: none;
    }

    .portrait-frame::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background:
            radial-gradient(
                circle at 92% 8%,
                rgba(94, 168, 255, 0.16),
                transparent 31%
            ),
            linear-gradient(
                to top,
                rgba(3, 5, 9, 0.58),
                transparent 42%
            ),
            repeating-radial-gradient(
                circle at 20% 30%,
                rgba(255, 255, 255, 0.045) 0 0.55px,
                transparent 0.8px 3px
            );
        mix-blend-mode: soft-light;
        opacity: 0.72;
    }

    .portrait-image {
        width: 100%;
        height: 100%;
        min-height: min(68vh, 740px);
        object-fit: cover;
        object-position: center top;
        filter:
            grayscale(100%)
            sepia(18%)
            saturate(130%)
            hue-rotate(165deg)
            contrast(1.1)
            brightness(1.06);
        transition:
            filter 500ms ease,
            transform 900ms cubic-bezier(.2, .7, .2, 1);
    }

    .portrait-frame:hover .portrait-image {
        filter:
            grayscale(100%)
            sepia(18%)
            saturate(130%)
            hue-rotate(165deg)
            contrast(1.1)
            brightness(1.06);
        transform: scale(1.018);
    }

    .portrait-placeholder {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        padding: 40px;
        color: var(--quiet);
        text-align: center;
        font-size: 0.76rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .portrait-frame.has-image .portrait-placeholder {
        display: none;
    }

    .portrait-index {
        position: absolute;
        z-index: 4;
        right: 32px;
        bottom: 26px;
        padding: 8px 10px;
        color: rgba(255, 255, 255, 0.74);
        background: rgba(8, 10, 14, 0.52);
        border: 1px solid rgba(255, 255, 255, 0.09);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        font-size: 0.66rem;
        letter-spacing: 0.16em;
    }

    .explore-section {
        border-top: 1px solid var(--border);
    }

    .explore-panel {
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.018),
                transparent 48%
            ),
            var(--surface);
        border: 1px solid var(--border);
    }

    .explore-panel::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -170px;
        width: 460px;
        height: 460px;
        background: radial-gradient(
            circle,
            rgba(94, 168, 255, 0.14),
            transparent 68%
        );
        pointer-events: none;
    }

    .explore-neural-graphic {
        position: absolute;
        z-index: 1;
        top: clamp(58px, 7vw, 96px);
        right: clamp(24px, 5vw, 70px);
        width: clamp(230px, 28vw, 410px);
        height: auto;
        color: var(--accent);
        opacity: 0.13;
        filter: drop-shadow(0 0 24px rgba(94, 168, 255, 0.08));
        pointer-events: none;
    }

    .explore-neural-graphic .neural-secondary {
        opacity: 0.48;
    }

    .explore-neural-graphic .neural-node {
        fill: currentColor;
        stroke: none;
    }

    .explore-intro {
        position: relative;
        z-index: 2;
        padding: clamp(38px, 7vw, 90px);
        border-bottom: 1px solid var(--border);
    }

    .inline-wordmark {
        color: var(--text);
        font-size: 0.86em;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .inline-wordmark::after {
        content: "";
        display: inline-block;
        width: 0.7em;
        height: 1px;
        margin: 0 0.28em 0.24em;
        vertical-align: middle;
        background: var(--accent);
    }

    .feature-grid {
        position: relative;
        z-index: 2;
        margin-top: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-left: 1px solid var(--border);
    }

    .feature-card {
        position: relative;
        min-height: 370px;
        padding: clamp(26px, 3vw, 42px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 45%);
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        overflow: hidden;
        transition: background 300ms ease, transform 300ms ease, border-color 300ms ease;
        scroll-snap-align: start;
    }

    .feature-card::before {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 3px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 300ms ease;
    }

    .feature-card::after {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(94, 168, 255, 0.14), transparent 68%);
        opacity: 0.4;
        transition: opacity 300ms ease;
        pointer-events: none;
    }

    .feature-card:hover {
        background: var(--surface);
        border-color: var(--accent-border);
        transform: translateY(-5px);
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover::after {
        opacity: 1;
    }

    .feature-card-top {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
    }

    .feature-number {
        color: #85858d;
        font-size: 0.74rem;
        letter-spacing: 0.16em;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        color: rgba(255, 255, 255, 0.28);
        transition: color 300ms ease, transform 300ms ease;
    }

    .feature-card:hover .feature-icon {
        color: rgba(94, 168, 255, 0.84);
        transform: translateY(-3px);
    }

    .feature-card-content {
        position: relative;
        z-index: 2;
    }

    .feature-title-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .feature-title {
        margin: 0;
        font-size: clamp(1.9rem, 2.8vw, 2.75rem);
        font-weight: 560;
        letter-spacing: -0.05em;
    }

    .feature-arrow {
        color: rgba(255, 255, 255, 0.34);
        font-size: 1.15rem;
        transition: color 250ms ease, transform 250ms ease;
    }

    .feature-card:hover .feature-arrow {
        color: var(--accent);
        transform: translateX(4px);
    }

    .feature-text {
        max-width: 280px;
        margin: 18px 0 0;
        color: var(--muted);
        font-size: 0.96rem;
    }

    .mobile-scroll-hint {
        display: none;
    }

    .media-panel {
        position: relative;
        padding: clamp(38px, 7vw, 90px);
        min-height: 580px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
        background:
            radial-gradient(circle at 82% 18%, rgba(94, 168, 255, 0.14), transparent 28%),
            var(--surface);
        border: 1px solid var(--border);
    }

    .media-panel::before {
        content: "";
        position: absolute;
        z-index: 1;
        right: clamp(34px, 5vw, 72px);
        top: 50%;
        transform: translateY(-44%);
        width: clamp(220px, 28vw, 380px);
        height: clamp(130px, 16vw, 220px);
        opacity: 0.18;
        pointer-events: none;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 240' fill='none'><path d='M30 120C78 62 130 36 210 36C290 36 342 62 390 120C342 178 290 204 210 204C130 204 78 178 30 120Z' stroke='rgba(94,168,255,0.55)' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/><circle cx='210' cy='120' r='40' stroke='rgba(94,168,255,0.55)' stroke-width='6'/><circle cx='210' cy='120' r='12' fill='rgba(94,168,255,0.42)'/><path d='M118 120C138 93 169 76 210 76C251 76 282 93 302 120' stroke='rgba(255,255,255,0.22)' stroke-width='3' stroke-linecap='round'/><path d='M118 120C138 147 169 164 210 164C251 164 282 147 302 120' stroke='rgba(255,255,255,0.14)' stroke-width='3' stroke-linecap='round'/></svg>");
        filter: blur(0.2px);
    }

    .media-panel::after {
        content: "MEDIA";
        position: absolute;
        right: -0.045em;
        bottom: -0.22em;
        color: rgba(255, 255, 255, 0.025);
        font-size: clamp(7rem, 21vw, 19rem);
        font-weight: 800;
        letter-spacing: -0.08em;
        line-height: 1;
        pointer-events: none;
    }

    .media-copy {
        position: relative;
        z-index: 2;
    }

    .media-title {
        max-width: 900px;
        margin: 0;
        font-size: clamp(3.8rem, 8.5vw, 8.7rem);
        font-weight: 620;
        letter-spacing: -0.08em;
        line-height: 0.88;
    }

    .media-description {
        max-width: 620px;
        margin: 34px 0 0;
        color: var(--muted);
        font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    }

    .media-footer {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
    }

    .media-categories {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .category {
        padding: 9px 13px;
        color: var(--muted);
        border: 1px solid var(--border);
        border-radius: 999px;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .about-section {
        border-top: 1px solid var(--border);
    }

    .about-panel {
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(
                145deg,
                rgba(255, 255, 255, 0.018),
                transparent 48%
            ),
            var(--surface);
        border: 1px solid var(--border);
    }

    .about-panel::before {
        content: "";
        position: absolute;
        top: -180px;
        right: -160px;
        width: 420px;
        height: 420px;
        background: radial-gradient(
            circle,
            rgba(94, 168, 255, 0.14),
            transparent 68%
        );
        pointer-events: none;
    }

    .about-intro {
        position: relative;
        z-index: 2;
        padding: clamp(38px, 7vw, 90px);
        border-bottom: 1px solid var(--border);
    }

    .about-intro-text {
        max-width: 930px;
        margin: 0 0 0 clamp(10px, 1.5vw, 24px);
        font-size: clamp(1.82rem, 3.35vw, 3.4rem);
        font-weight: 470;
        letter-spacing: -0.045em;
        line-height: 1.16;
    }

    .about-intro-copy {
        font-weight: 540;
        letter-spacing: -0.055em;
    }

    .about-brand {
        display: inline-block;
        color: var(--text);
        font-size: 0.78em;
        font-weight: 850;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .about-brand::after {
        content: "";
        display: block;
        width: 48%;
        height: 2px;
        margin-top: 0.15em;
        background: var(--accent);
    }

    .rotating-principle-row {
        position: relative;
        min-height: clamp(104px, 10vw, 132px);
        margin-top: clamp(18px, 2.5vw, 30px);
        display: grid;
        place-items: end center;
        border-bottom: 1px solid var(--border);
    }

    .rotating-principle {
        min-width: 0;
        max-width: calc(100% - 120px);
        padding: 0 0 18px;
        color: var(--accent);
        background: transparent;
        border: 0;
        cursor: pointer;
        text-align: center;
        white-space: nowrap;
        font-size: clamp(2.5rem, 6.8vw, 5.9rem);
        font-weight: 620;
        letter-spacing: -0.075em;
        line-height: 0.92;
        text-transform: uppercase;
        transition:
            opacity 180ms ease,
            transform 180ms ease,
            color 180ms ease;
    }

    .rotating-principle[data-principle-size="short"] {
        font-size: clamp(2.85rem, 7.5vw, 6.3rem);
    }

    .rotating-principle[data-principle-size="medium"] {
        font-size: clamp(2.5rem, 6.8vw, 5.9rem);
    }

    .rotating-principle[data-principle-size="long"] {
        font-size: clamp(2.25rem, 5.8vw, 5.2rem);
    }

    .rotating-principle[data-principle-size="x-long"] {
        font-size: clamp(2rem, 5.1vw, 4.65rem);
    }

    .rotating-principle:hover,
    .rotating-principle:focus-visible {
        color: #86bdff;
    }

    .rotating-principle.changing {
        opacity: 0;
        transform: translateY(10px);
    }

    .principle-counter {
        position: absolute;
        right: 0;
        bottom: 20px;
        color: var(--quiet);
        font-size: 0.7rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .principle-icon-strip {
        width: min(100%, 610px);
        margin: 24px auto 0;
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        border-top: 1px solid var(--border);
        border-left: 1px solid var(--border);
    }

    .principle-symbol {
        aspect-ratio: 1;
        min-width: 0;
        display: grid;
        place-items: center;
        color: rgba(255, 255, 255, 0.28);
        background: transparent;
        border: 0;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        cursor: pointer;
        transition:
            color 220ms ease,
            background 220ms ease,
            box-shadow 220ms ease;
    }

    .principle-symbol svg {
        width: clamp(20px, 2vw, 28px);
        height: clamp(20px, 2vw, 28px);
    }

    .principle-symbol:hover,
    .principle-symbol:focus-visible,
    .principle-symbol.active {
        color: var(--accent);
        background: rgba(94, 168, 255, 0.07);
        box-shadow: inset 0 -2px 0 var(--accent);
    }

    .about-supporting {
        max-width: 760px;
        margin: 34px auto 0;
        color: var(--muted);
        font-size: clamp(1.05rem, 1.8vw, 1.38rem);
        line-height: 1.6;
        text-align: center;
        text-wrap: balance;
    }

    .about-closing {
        position: relative;
        z-index: 2;
        overflow: hidden;
        padding: clamp(38px, 7vw, 90px);
        background:
            linear-gradient(
                90deg,
                rgba(94, 168, 255, 0.13),
                rgba(94, 168, 255, 0.035)
            );
    }

    .about-profile-graphic {
        position: absolute;
        z-index: 1;
        top: 50%;
        right: clamp(-34px, -1.2vw, -6px);
        width: clamp(300px, 37vw, 500px);
        height: auto;
        transform: translateY(-50%);
        color: var(--accent);
        opacity: 0.135;
        filter: drop-shadow(0 0 24px rgba(94, 168, 255, 0.1));
        pointer-events: none;
    }

    .about-profile-graphic .profile-secondary {
        opacity: 0.46;
    }

    .about-profile-graphic .profile-node {
        fill: currentColor;
        stroke: none;
    }

    .about-closing-text {
        position: relative;
        z-index: 2;
        max-width: 78%;
        margin: 0;
        font-size: clamp(2.45rem, 5.6vw, 6rem);
        font-weight: 620;
        letter-spacing: -0.075em;
        line-height: 0.94;
        text-wrap: balance;
    }

    .about-closing-text span {
        color: var(--accent);
    }

    .site-footer {
        padding-block: 46px;
        border-top: 1px solid var(--border);
    }

    .footer-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        color: var(--quiet);
        font-size: 0.76rem;
    }

    .footer-wordmark {
        color: var(--text);
        font-weight: 800;
        letter-spacing: 0.16em;
    }

    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 750ms ease, transform 750ms cubic-bezier(.2, .7, .2, 1);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

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

        .hero-tagline {
            width: auto;
            max-width: 620px;
            margin-left: 0;
            white-space: normal;
        }
    }

    @media (max-width: 900px) {
        .hero {
            min-height: auto;
        }

        .hero-grid {
            grid-template-columns: 1fr;
            padding-top: 90px;
        }

        .hero-title {
            font-size: clamp(4.2rem, 17vw, 8rem);
        }

        .portrait-frame,
        .portrait-image {
            min-height: 620px;
        }
    }

    @media (max-width: 720px) {
        .nav-links {
            display: none;
        }

        .menu-button {
            display: block;
        }

        .section-description.indented {
            margin-left: 0;
            padding-left: 18px;
        }

        .feature-grid {
            width: 100%;
            margin-top: 0;
            padding: 14px;
            display: flex;
            gap: 14px;
            overflow-x: auto;
            overscroll-behavior-inline: contain;
            scroll-snap-type: x mandatory;
            scroll-padding-left: 14px;
            border-left: 0;
            scrollbar-width: none;
        }

        .feature-grid::-webkit-scrollbar {
            display: none;
        }

        .feature-card {
            flex: 0 0 min(78vw, 370px);
            min-height: 350px;
            border: 1px solid var(--border);
        }

        .mobile-scroll-hint {
            margin: 2px 14px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            color: var(--quiet);
            font-size: 0.68rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .mobile-scroll-hint::before {
            content: "";
            width: 58px;
            height: 1px;
            background: linear-gradient(90deg, var(--accent), var(--border));
        }
    }

    @media (max-width: 650px) {
        .nav {
            min-height: 68px;
        }

        .hero-grid {
            padding-top: 70px;
            gap: 54px;
        }

        .hero-title {
            font-size: clamp(3.7rem, 18vw, 6rem);
        }

        .hero-tagline {
            width: auto;
            max-width: 24rem;
            margin: 36px 0 0;
            font-size: clamp(1.16rem, 5.4vw, 1.55rem);
            font-weight: 620;
            letter-spacing: -0.05em;
            line-height: 1.12;
            white-space: normal;
        }

        .portrait-frame,
        .portrait-image {
            min-height: 500px;
        }

        .portrait-frame {
            box-shadow:
                2px 2px 0 -1px rgba(94, 168, 255, 0.075),
                4px 4px 12px rgba(94, 168, 255, 0.028);
        }

        .portrait-index {
            right: 24px;
            bottom: 22px;
            padding: 7px 8px;
            font-size: 0.56rem;
        }

        .section-title {
            font-size: clamp(3rem, 14vw, 5.6rem);
        }

        .explore-neural-graphic {
            top: 74px;
            right: -42px;
            width: 210px;
            opacity: 0.085;
        }

        .media-panel {
            min-height: 670px;
        }

        .media-panel::before {
            right: 18px;
            top: auto;
            bottom: 96px;
            transform: none;
            width: 150px;
            height: 90px;
            opacity: 0.13;
        }

        .media-title {
            font-size: clamp(3.2rem, 14vw, 5.8rem);
        }

        .explore-intro,
        .about-intro,
        .about-closing {
            padding: 30px 24px;
        }

        .about-intro-text {
            font-size: clamp(1.65rem, 7.4vw, 2.35rem);
            line-height: 1.2;
        }

        .about-brand {
            font-size: 0.72em;
            letter-spacing: 0.1em;
        }

        .rotating-principle-row {
            min-height: 92px;
            margin-top: 18px;
        }

        .rotating-principle {
            max-width: calc(100% - 88px);
            padding-bottom: 14px;
            letter-spacing: -0.06em;
            white-space: nowrap;
            overflow-wrap: normal;
        }

        .rotating-principle[data-principle-size="short"] {
            font-size: clamp(2.75rem, 13vw, 4.1rem);
        }

        .rotating-principle[data-principle-size="medium"] {
            font-size: clamp(2.4rem, 11vw, 3.65rem);
        }

        .rotating-principle[data-principle-size="long"] {
            font-size: clamp(2.1rem, 9.6vw, 3.25rem);
        }

        .rotating-principle[data-principle-size="x-long"] {
            font-size: clamp(1.8rem, 7.7vw, 2.85rem);
        }

        .principle-counter {
            right: 0;
            bottom: 16px;
            font-size: 0.62rem;
        }

        .principle-icon-strip {
            width: 100%;
            margin-top: 18px;
        }

        .principle-symbol svg {
            width: 21px;
            height: 21px;
        }

        .about-supporting {
            margin-top: 26px;
            font-size: 1.05rem;
        }

        .about-profile-graphic {
            top: auto;
            right: -84px;
            bottom: -8px;
            width: 292px;
            transform: none;
            opacity: 0.09;
        }

        .about-closing-text {
            max-width: 100%;
            font-size: clamp(2.35rem, 11vw, 4.2rem);
        }

        .footer-row {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
        }

        .reveal {
            opacity: 1;
            transform: none;
        }
    }

.featured-section { padding-top: 0; }.featured-intro { margin-bottom: 34px; }.feature-stack { display: grid; gap: 22px; }.feature-showcase {min-height: 570px;padding: clamp(32px, 5.7vw, 72px);display: grid;grid-template-columns: minmax(0, 1fr) minmax(310px, 0.84fr);align-items: center;gap: clamp(42px, 7vw, 96px);overflow: hidden;background: var(--surface);border: 1px solid var(--border);}.feature-showcase:nth-child(2) { background: var(--surface-blue); }.feature-copy h3 {margin: 0;font-size: clamp(2.8rem, 5.4vw, 6rem);font-weight: 620;letter-spacing: -0.075em;line-height: 0.92;}.feature-copy h3 span { color: var(--accent); }.feature-copy > p:not(.section-label) {max-width: 610px;margin: 28px 0 0;color: var(--muted);font-size: 1.02rem;}.feature-list { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }.feature-list span {padding: 8px 11px;border: 1px solid var(--accent-border);color: #c7d9ee;font-size: 0.7rem;letter-spacing: 0.06em;text-transform: uppercase;}.feature-cta { margin-top: 30px; }.feature-visual { position: relative; min-height: 420px; display: grid; place-items: center; }

/* Featured video embed */
.video-visual {
    min-height: 520px;
    display: grid;
    place-items: center;
}

.video-embed-shell {
    width: min(100%, 288px);
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #090a0d;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.video-embed-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    color: var(--text);
    background: #090a0d;
    border: 0;
    cursor: pointer;
}

.video-embed-poster,
.video-embed-frame {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.video-embed-poster {
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 260ms ease, filter 260ms ease;
}

.video-embed-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(5, 6, 9, 0.88), transparent 42%),
        linear-gradient(to bottom, rgba(5, 6, 9, 0.25), transparent 28%);
    pointer-events: none;
}

.video-embed-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #08090b;
    background: rgba(245, 245, 247, 0.94);
    border-radius: 50%;
    font-size: 1.05rem;
    line-height: 1;
    transform: translate(-50%, -50%);
    transition: background 220ms ease, transform 220ms ease;
    pointer-events: none;
}

.video-embed-meta {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 17px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.64rem;
    font-weight: 760;
    letter-spacing: 0.17em;
    text-align: center;
    text-transform: uppercase;
    pointer-events: none;
}

.video-embed-trigger:hover .video-embed-poster,
.video-embed-trigger:focus-visible .video-embed-poster {
    filter: brightness(1.08);
    transform: scale(1.045);
}

.video-embed-trigger:hover .video-embed-play,
.video-embed-trigger:focus-visible .video-embed-play {
    background: var(--accent);
    transform: translate(-50%, -50%) scale(1.06);
}

/* Photography visual */
.feature-showcase:nth-child(2) {
    grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
}

.photo-contact-sheet {
    width: min(100%, 590px);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    justify-self: stretch;
    background: #0f1013;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.photo-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111216;
    border: 1px solid var(--border);
}

.photo-frame::before {
    content: none;
}

.photo-frame::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(to top, rgba(5, 6, 9, 0.86), transparent);
    pointer-events: none;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 420ms cubic-bezier(.2, .7, .2, 1), filter 260ms ease;
}

.photo-frame span {
    position: absolute;
    z-index: 2;
    left: 12px;
    bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.52rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.photo-frame:hover img {
    filter: brightness(1.05);
    transform: scale(1.025);
}

/* Website visual */.browser-window {width: min(100%, 500px);overflow: hidden;border: 1px solid rgba(255,255,255,.24);background: #0f1013;}.browser-top { height: 38px; display: flex; align-items: center; gap: 7px; padding-inline: 14px; border-bottom: 1px solid var(--border); }.browser-top i { width: 7px; height: 7px; border-radius: 50%; background: var(--quiet); }.browser-address { flex: 1; height: 15px; margin-left: 8px; border: 1px solid var(--border); }.browser-page { min-height: 340px; padding: 28px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }.web-copy { display: flex; flex-direction: column; justify-content: center; }.web-kicker { width: 42%; height: 7px; background: var(--accent); opacity: .78; }.web-line { height: 13px; margin-top: 12px; background: rgba(245,245,247,.75); }.web-line.short { width: 72%; }.web-body { width: 88%; height: 8px; margin-top: 22px; background: rgba(161,161,170,.38); }.web-body + .web-body { width: 70%; margin-top: 8px; }.web-button { width: 44%; height: 32px; margin-top: 24px; border: 1px solid var(--accent); background: var(--accent-soft); }.web-image { min-height: 250px; border: 1px solid var(--accent-border); background: radial-gradient(circle at 50% 35%, rgba(94,168,255,.35), transparent 28%), linear-gradient(145deg, #1c2531, #101115 65%); }

.inquiry-panel {padding: clamp(34px, 6vw, 76px);display: grid;grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);gap: clamp(50px, 8vw, 110px);background: radial-gradient(circle at 10% 100%, rgba(94,168,255,.12), transparent 34%), var(--surface);border: 1px solid var(--border);}.inquiry-copy h2 {margin: 0;font-size: clamp(3rem, 5.7vw, 6.4rem);font-weight: 620;letter-spacing: -0.075em;line-height: 0.92;}.inquiry-copy h2 span { color: var(--accent); }.inquiry-copy > p:not(.section-label) { max-width: 620px; margin: 32px 0 0; color: var(--muted); font-size: 1.06rem; }.inquiry-form { display: flex; flex-direction: column; gap: 20px; }.inquiry-form label { display: block; color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }.inquiry-form select, .inquiry-form textarea {width: 100%;margin-top: 9px;padding: 14px 15px;color: var(--text);background: #101014;border: 1px solid var(--border);border-radius: 0;outline: none;font-size: 0.94rem;letter-spacing: normal;text-transform: none;}.inquiry-form select, .inquiry-form textarea { border-color: var(--accent); }.inquiry-form textarea { min-height: 150px; resize: vertical; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.form-button { width: 100%; margin-top: 2px; border: 0; }.form-note { margin: -6px 0 0; color: var(--quiet); font-size: 0.76rem; }.inquiry-output { margin-top: 20px; padding: 26px; background: #101014; border: 1px solid var(--accent-border); }.output-label { color: var(--accent); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.16em; }.inquiry-output pre { margin: 18px 0 0; color: var(--muted); white-space: pre-wrap; font-family: Inter, sans-serif; font-size: 0.92rem; line-height: 1.6; }

.contact-section { padding-top: 0; }.contact-panel {padding: clamp(34px, 6vw, 76px);background: var(--surface-blue);border: 1px solid var(--border);}.contact-heading {display: grid;grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);gap: clamp(42px, 7vw, 90px);align-items: end;}.contact-heading h2 {margin: 0;font-size: clamp(3rem, 5.7vw, 6.4rem);font-weight: 620;letter-spacing: -0.075em;line-height: 0.92;}.contact-heading h2 span { color: var(--accent); }.contact-heading p:not(.section-label) { max-width: 620px; margin: 0; color: var(--muted); font-size: 1.03rem; }.contact-grid {margin-top: clamp(42px, 6vw, 68px);display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));border-top: 1px solid var(--accent-border);border-left: 1px solid var(--accent-border);}.contact-item {min-height: 210px;padding: 28px;display: flex;flex-direction: column;justify-content: space-between;border-right: 1px solid var(--accent-border);border-bottom: 1px solid var(--accent-border);transition: background 180ms ease;}.contact-item { background: rgba(94,168,255,.07); }.contact-label { color: var(--accent); font-size: .68rem; font-weight: 760; letter-spacing: .17em; text-transform: uppercase; }.contact-value { margin-top: 48px; font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 560; letter-spacing: -.025em; overflow-wrap: anywhere; }.contact-detail { margin-top: 10px; color: var(--muted); font-size: .86rem; }.contact-arrow { align-self: flex-end; color: var(--accent); }.contact-footnote { margin: 22px 0 0; color: var(--quiet); font-size: .75rem; }

/* =========================================================MEDIA PAGE ADAPTATIONHomepage visual system + media-specific sections========================================================= */


select,textarea {font: inherit;}

.nav-links a.active {color: var(--text);}

.nav-links a.active::after {transform: scaleX(1);}

.services-panel .feature-grid {grid-template-columns: repeat(3, minmax(0, 1fr));}

.services-panel .feature-card {min-height: 360px;}

.services-panel .feature-title {font-size: clamp(1.75rem, 2.35vw, 2.55rem);}

.service-area-copy {max-width: 670px;margin: 24px 0 0 clamp(0px, 8vw, 104px);padding-left: 24px;color: var(--muted);font-size: clamp(0.82rem, 1.2vw, 0.98rem);letter-spacing: 0.015em;line-height: 1.7;}

.remote-service-copy {color: var(--accent);}

.featured-section,.inquiry-section,.contact-section {padding-block: clamp(100px, 13vw, 180px);}

.featured-section {padding-top: clamp(100px, 13vw, 180px);}

.feature-stack {display: grid;gap: 22px;}

.feature-showcase-primary {position: relative;padding-top: clamp(82px, 8vw, 112px);}

.feature-section-label {
    position: absolute;
    top: clamp(28px, 3.4vw, 44px);
    left: clamp(28px, 4.5vw, 60px);
    margin: 0;
}

.services-panel .inline-wordmark.text-highlight,
.about-brand.text-highlight,
.feature-section-label.label-highlight {
    width: fit-content;
    padding: 0.04em 0.12em;
    color: #090a0d;
    background: var(--accent);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.about-brand.text-highlight::after {
    width: 48%;
    margin-top: 0.22em;
    background: var(--accent);
}

.feature-section-label.label-highlight {
    line-height: 1.35;
}

.feature-type-label {
    color: rgba(94, 168, 255, 0.72);
}

.inquiry-copy h2 strong {font-size: 1.05em;font-weight: inherit;}

.contact-section {padding-top: 0;}

.contact-panel {position: relative;overflow: visible;}

.contact-heading {position: relative;min-height: clamp(390px, 38vw, 500px);overflow: visible;}

.contact-heading-copy,.contact-heading > p {position: relative;z-index: 3;}

.contact-heading > p {align-self: end;padding-bottom: clamp(12px, 2vw, 26px);}

.contact-emphasis {font-size: 1.1em;font-weight: inherit;}

.contact-phone-art {position: absolute;z-index: 1;top: 50%;right: clamp(-70px, -3vw, -18px);width: clamp(430px, 50vw, 670px);height: auto;color: var(--accent);opacity: 0.16;transform: translateY(-51%);filter: drop-shadow(0 0 28px rgba(94, 168, 255, 0.1));pointer-events: none;}

.contact-phone-art .phone-secondary {opacity: 0.46;}

.contact-grid {position: relative;overflow: visible;isolation: isolate;}

.contact-signal-art {position: absolute;z-index: 0;top: 50%;left: 50%;width: min(128%, 1320px);max-width: none;height: auto;color: rgba(94, 168, 255, 0.11);transform: translate(-50%, -50%);pointer-events: none;}

.contact-item {position: relative;z-index: 1;background: rgba(21, 30, 43, 0.58);backdrop-filter: blur(1px);-webkit-backdrop-filter: blur(1px);}

.contact-item[href^="mailto:"] .contact-value {white-space: nowrap;font-size: clamp(0.96rem, 1.45vw, 1.3rem);}

@media (max-width: 1050px) {.services-panel .feature-grid {grid-template-columns: repeat(2, minmax(0, 1fr));}}

@media (max-width: 1000px) {.feature-showcase,
.feature-showcase:nth-child(2),
.inquiry-panel,
.contact-heading {grid-template-columns: 1fr;}

.feature-visual {
    min-height: 380px;
}

.inquiry-copy {
    max-width: 760px;
}

.contact-heading {
    min-height: 0;
    padding-top: clamp(300px, 46vw, 390px);
}

.contact-phone-art {
    top: 18px;
    left: 50%;
    right: auto;
    width: min(94%, 650px);
    transform: translateX(-50%);
}

.contact-grid {
    grid-template-columns: 1fr;
}

.contact-item {
    min-height: 160px;
}

.contact-value {
    margin-top: 30px;
}

.contact-signal-art {
    width: min(165%, 1050px);
}

}

@media (max-width: 720px) {.service-area-copy {margin-left: 0;padding-left: 18px;font-size: 0.9rem;}

.services-panel .feature-grid {
    grid-template-columns: none;
}

.featured-section,
.inquiry-section,
.contact-section {
    padding-block: 92px;
}

.feature-showcase {
    min-height: 0;
    padding: 30px 22px;
    gap: 34px;
}

.feature-showcase-primary {
    padding-top: 78px;
}

.feature-section-label {
    top: 27px;
    left: 22px;
}

.feature-copy h3 {
    font-size: clamp(2.65rem, 12vw, 4.75rem);
}

.feature-visual {
    min-height: 340px;
}

.video-visual {
    min-height: 390px;
}

.video-embed-shell {
    width: min(70vw, 236px);
}

.photo-contact-sheet {
    width: 100%;
    padding: 10px;
    gap: 8px;
}

.photo-frame span {
    left: 9px;
    bottom: 8px;
    font-size: 0.46rem;
}

.browser-page {
    min-height: 280px;
    padding: 18px;
    grid-template-columns: 1fr;
}

.web-image {
    min-height: 150px;
}

.inquiry-panel,
.contact-panel {
    padding: 30px 22px;
}

.inquiry-copy h2,
.contact-heading h2 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
}

.form-row {
    grid-template-columns: 1fr;
}

.contact-heading {
    padding-top: 235px;
}

.contact-phone-art {
    top: 0;
    width: min(122%, 510px);
}

.contact-heading > p {
    font-size: 1.05rem;
}

.contact-item {
    padding: 25px;
}

.contact-item[href^="mailto:"] .contact-value {
    font-size: clamp(0.88rem, 4vw, 1.08rem);
}

.contact-signal-art {
    width: 205%;
}

}

@media (max-width: 430px) {
.video-visual {
    min-height: 360px;
}

.video-embed-shell {
    width: min(72vw, 218px);
}

.photo-contact-sheet {
    padding: 8px;
    gap: 7px;
}

.contact-heading {padding-top: 205px;}

.contact-phone-art {
    width: 132%;
}

.contact-item[href^="mailto:"] .contact-value {
    font-size: 0.86rem;
    letter-spacing: -0.04em;
}

}

/* =========================================================FINAL MEDIA PAGE FLOW + CONTACT FORM PASS========================================================= */

/* Services copy transitions directly into the card grid. */.services-section {padding-bottom: clamp(42px, 5vw, 72px);}

.services-panel .explore-intro {padding-bottom: clamp(34px, 4.5vw, 56px);}

.service-area-copy {max-width: 760px;margin: clamp(42px, 5vw, 64px) auto 0;padding-left: 0;color: var(--accent);font-size: clamp(0.86rem, 1.15vw, 1rem);font-weight: 520;letter-spacing: 0.012em;line-height: 1.7;text-align: center;text-wrap: balance;}

.remote-service-copy {color: inherit;}

/* Remove the homepage separator and excess section-sized gaps. */.about-section {padding-top: 0;padding-bottom: clamp(42px, 5vw, 72px);border-top: 0;}

.about-intro {padding-bottom: clamp(38px, 5vw, 62px);}

.about-supporting {display: none;}

/* One continuous black Featured Work container, divided by spacing only. */.featured-section {padding-block: 0 clamp(42px, 5vw, 72px);}

.feature-stack {display: block;overflow: hidden;background: var(--surface);border: 1px solid var(--border);}

.feature-showcase,.feature-showcase:nth-child(2) {min-height: clamp(540px, 55vw, 720px);padding: clamp(62px, 7vw, 92px) clamp(34px, 6vw, 76px);background: transparent;border: 0;}

.feature-showcase-primary {padding-top: clamp(96px, 9vw, 124px);}

.feature-showcase + .feature-showcase {padding-top: clamp(48px, 6vw, 78px);}

.feature-cta {margin-top: 30px;}

/* Contact follows Featured Work directly and contains the compact response form. */.contact-section {padding-block: 0 clamp(72px, 8vw, 112px);}

.contact-heading {min-height: 0;grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);align-items: center;gap: clamp(28px, 5vw, 76px);}

.contact-heading-copy {align-self: center;}

.contact-response-area {position: relative;min-height: clamp(500px, 43vw, 590px);display: grid;place-items: center;isolation: isolate;}

.contact-phone-art {z-index: 0;inset: 50% auto auto 50%;right: auto;width: min(125%, 680px);opacity: 0.13;transform: translate(-50%, -50%);}

.response-form {position: relative;z-index: 2;width: min(100%, 470px);padding: clamp(22px, 3vw, 32px);background: rgba(15, 20, 28, 0.88);border: 1px solid var(--accent-border);box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);backdrop-filter: blur(8px);-webkit-backdrop-filter: blur(8px);}

.response-form-heading {margin-bottom: 20px;}

.response-form-label {margin: 0;color: var(--accent);font-size: 0.72rem;font-weight: 780;letter-spacing: 0.19em;text-transform: uppercase;}

.response-form-intro {margin: 9px 0 0;color: var(--muted);font-size: 0.82rem;line-height: 1.5;}

.response-form-grid {display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));gap: 12px;}

.response-form label,.response-details summary {color: var(--muted);font-size: 0.67rem;font-weight: 720;letter-spacing: 0.1em;text-transform: uppercase;}

.response-form select,.response-form input,.response-form textarea {width: 100%;margin-top: 8px;padding: 12px 13px;color: var(--text);background: rgba(9, 9, 12, 0.82);border: 1px solid var(--border);border-radius: 0;outline: none;font: inherit;font-size: 0.86rem;font-weight: 500;letter-spacing: normal;text-transform: none;transition: border-color 180ms ease, background 180ms ease;}

.response-form select,.response-form input,.response-form textarea {border-color: var(--accent);background: rgba(9, 9, 12, 0.96);}

.response-form input[aria-invalid="true"] {border-color: #ff7d7d;}

.response-contact-field {display: block;margin-top: 14px;}

.response-contact-field > span {color: var(--accent);}

.response-details {margin-top: 13px;border-top: 1px solid var(--border);border-bottom: 1px solid var(--border);}

.response-details summary {padding: 12px 0;display: flex;align-items: center;justify-content: space-between;gap: 16px;cursor: pointer;list-style: none;}

.response-details summary::-webkit-details-marker {display: none;}

.response-details summary::after {content: "+";color: var(--accent);font-size: 1rem;font-weight: 500;}

.response-details[open] summary::after {content: "−";}

.response-details summary span {margin-left: auto;color: var(--quiet);font-size: 0.6rem;}

.response-details label {display: block;padding: 0 0 14px;}

.response-form textarea {min-height: 92px;resize: vertical;}

.response-submit {width: 100%;margin-top: 17px;border: 0;cursor: pointer;}

.response-submit {cursor: wait;opacity: 0.66;transform: none;}

.response-status {min-height: 1.3em;margin: 11px 0 0;color: var(--muted);font-size: 0.75rem;line-height: 1.45;}

.response-status[data-state="success"] {color: #8fd6ae;}

.response-status[data-state="error"] {color: #ff9b9b;}

.response-privacy {margin: 7px 0 0;color: var(--quiet);font-size: 0.67rem;line-height: 1.45;}

.contact-grid {margin-top: clamp(26px, 4vw, 46px);}

@media (max-width: 1000px) {.contact-heading {grid-template-columns: 1fr;gap: 16px;padding-top: 0;}

.contact-response-area {
    min-height: 560px;
}

.contact-phone-art {
    top: 50%;
    left: 50%;
    width: min(108%, 680px);
    transform: translate(-50%, -50%);
}

}

@media (max-width: 720px) {.services-section {padding-bottom: 48px;}

.service-area-copy {
    margin-top: 38px;
    padding-left: 0;
    font-size: 0.88rem;
}

.about-section,
.featured-section {
    padding-bottom: 48px;
}

.feature-showcase,
.feature-showcase:nth-child(2) {
    min-height: 0;
    padding: 52px 22px;
    gap: 34px;
}

.feature-showcase-primary {
    padding-top: 82px;
}

.feature-showcase + .feature-showcase {
    padding-top: 46px;
}

.contact-section {
    padding-block: 0 76px;
}

.contact-heading {
    padding-top: 0;
}

.contact-response-area {
    min-height: 520px;
    margin-top: 8px;
}

.contact-phone-art {
    top: 50%;
    width: min(145%, 560px);
}

.response-form {
    width: min(100%, 500px);
    padding: 22px;
}

.response-form-grid {
    grid-template-columns: 1fr;
}

}

@media (max-width: 430px) {.contact-response-area {min-height: 555px;}

.contact-phone-art {
    width: 165%;
}

.response-form {
    padding: 19px;
}

}



/* =========================================================EDITORIAL HIERARCHY + NUMBERING POLISH========================================================= */

/* Remove the decorative dash after the Services wordmark. */.services-panel .inline-wordmark::after {display: none;}

.services-panel .inline-wordmark {margin-right: 0.22em;}

/* Give the hero statement a stronger editorial rhythm. */.hero-tagline {width: fit-content;max-width: min(100%, 680px);font-size: clamp(1.55rem, 2.55vw, 2.35rem);font-weight: 610;letter-spacing: -0.065em;line-height: 0.98;white-space: normal;}

.hero-tagline-accent {color: var(--accent);}

/* Close the Services section with the local + worldwide availability note. */.service-area-row {max-width: 900px;margin: 0 auto;padding: clamp(32px, 4.5vw, 54px) clamp(22px, 4vw, 52px);display: flex;align-items: center;justify-content: center;gap: 16px;border-top: 1px solid var(--border);}

.service-area-icon {flex: 0 0 auto;width: 88px;height: auto;color: var(--accent);opacity: 0.92;}

.service-area-icon .texas-outline {stroke-width: 2.5;}

.service-area-copy {margin: 0;padding: 0;color: var(--accent);font-size: clamp(0.86rem, 1.1vw, 0.98rem);font-weight: 520;letter-spacing: 0.012em;line-height: 1.65;text-align: left;}

/* Match Contact to the blue-gray About closing treatment. */.contact-panel {background:linear-gradient(90deg,rgba(94, 168, 255, 0.13),rgba(94, 168, 255, 0.035)),var(--surface);}

@media (max-width: 720px) {.hero-tagline {max-width: 25rem;font-size: clamp(1.35rem, 6.2vw, 1.85rem);line-height: 1.02;}

.service-area-row {
    padding: 30px 22px 34px;
    align-items: flex-start;
    gap: 11px;
}

.service-area-icon {
    width: 66px;
    margin-top: 2px;
}

.service-area-copy {
    font-size: 0.84rem;
    line-height: 1.6;
}

}

@media (max-width: 430px) {.service-area-row {flex-direction: column;align-items: center;text-align: center;}

.service-area-icon {
    width: 70px;
    margin-top: 0;
}

.service-area-copy {
    text-align: center;
}

}

/* =========================================================FINAL RESPONSIVE CONTAINMENT PASS========================================================= */

html,body {max-width: 100%;overflow-x: clip;}

main,section,article,.container,.hero-grid,.explore-panel,.about-panel,.feature-stack,.feature-showcase,.contact-heading,.contact-response-area,.response-form,.contact-grid,.contact-item {min-width: 0;}

.services-section .explore-panel,.contact-panel,.contact-response-area {overflow: hidden;}

.contact-panel {isolation: isolate;}

.contact-phone-art {width: min(114%, 620px);opacity: 0.115;}

.contact-signal-art {width: min(118%, 980px);top: 52%;}

@media (max-width: 1000px) {.contact-phone-art {width: min(98%, 540px);opacity: 0.11;}

.contact-signal-art {
    width: min(145%, 860px);
    top: 50%;
}

}

@media (max-width: 720px) {.contact-response-area {min-height: 500px;margin-top: 0;}

.contact-phone-art {
    width: min(102%, 460px);
    top: 49%;
}

.contact-signal-art {
    width: 152%;
}

}

@media (max-width: 430px) {.contact-response-area {min-height: 488px;}

.contact-phone-art {
    width: 108%;
    top: 48%;
}

.contact-signal-art {
    width: 168%;
}

}

/* =========================================================FINAL VISUAL POLISH — TAGLINE, SERVICE GLOBE, CONTACT CARDS========================================================= */

/* Keep the hero statement quiet, editorial, and on one line at every size. */.hero-tagline {width: max-content;max-width: none;margin-top: clamp(36px, 5vw, 58px);color: var(--muted);font-size: clamp(0.66rem, 1.55vw, 1.45rem);font-weight: 590;letter-spacing: -0.045em;line-height: 1;white-space: nowrap;}

.hero-tagline-accent {color: inherit;}

/* Preserve exactly one natural text space after SAINTCVRLOS. */.services-panel .inline-wordmark {margin-right: 0;}

.services-panel .inline-wordmark::after {display: none;content: none;}

/* Technical globe/network artwork closing the Services card grid. */.service-area-panel {position: relative;min-height: clamp(210px, 24vw, 300px);padding: clamp(54px, 7vw, 86px) clamp(24px, 5vw, 64px);display: grid;place-items: center;overflow: hidden;isolation: isolate;border-top: 1px solid var(--border);background:radial-gradient(circle at 50% 50%, rgba(94, 168, 255, 0.07), transparent 58%),linear-gradient(145deg, rgba(255, 255, 255, 0.014), transparent 52%);}

.service-area-art {position: absolute;z-index: 0;top: 50%;left: 50%;width: min(86%, 820px);max-width: none;height: auto;color: var(--accent);opacity: 0.16;transform: translate(-50%, -50%);filter: drop-shadow(0 0 28px rgba(94, 168, 255, 0.08));pointer-events: none;}

.service-area-art .service-area-orbits,.service-area-art .service-area-signals {opacity: 0.52;}

.service-area-art .service-area-network {opacity: 0.72;}

.service-area-copy {position: relative;z-index: 1;margin: 0;padding: 14px 20px;color: var(--accent);background: rgba(20, 20, 23, 0.42);border: 1px solid rgba(94, 168, 255, 0.12);backdrop-filter: blur(3px);-webkit-backdrop-filter: blur(3px);font-size: clamp(0.86rem, 1.1vw, 0.98rem);font-weight: 520;letter-spacing: 0.012em;line-height: 1.7;text-align: center;text-wrap: balance;}

/* Match the response box and direct-contact cards to the site's card system. */.response-form {background:linear-gradient(145deg, rgba(255, 255, 255, 0.024), transparent 46%),rgba(20, 20, 23, 0.82);border-color: var(--border);}

.contact-grid {border-top-color: var(--border);border-left-color: var(--border);}

.contact-item {background:linear-gradient(145deg, rgba(255, 255, 255, 0.022), transparent 46%),rgba(20, 20, 23, 0.58);border-right-color: var(--border);border-bottom-color: var(--border);}

.contact-item {background:linear-gradient(145deg, rgba(255, 255, 255, 0.032), transparent 46%),rgba(20, 20, 23, 0.7);}

@media (max-width: 720px) {.hero-tagline {max-width: none;font-size: clamp(0.66rem, 3vw, 0.92rem);letter-spacing: -0.035em;white-space: nowrap;}

.service-area-panel {
    min-height: 218px;
    padding: 48px 18px;
}

.service-area-art {
    width: 142%;
    opacity: 0.14;
}

.service-area-copy {
    max-width: 92%;
    padding: 12px 14px;
    font-size: 0.82rem;
    line-height: 1.62;
}

}

@media (max-width: 430px) {.hero-tagline {font-size: clamp(0.62rem, 2.85vw, 0.76rem);}

.service-area-art {
    width: 174%;
}

}
/* =========================================================
   REQUESTED MEDIA PAGE UPDATES — JULY 2026
   ========================================================= */

/* Present the hero tagline in all caps. */
.hero-tagline {
    text-transform: uppercase;
}

/* Blend the Austin / remote availability treatment into the Services card. */
.service-area-panel {
    border-top: 0;
    background: transparent;
}

.service-area-copy {
    width: fit-content;
    max-width: min(100%, 760px);
    margin: 0;
    padding: 2px 0 2px 24px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-left: 2px solid var(--accent);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: clamp(0.7rem, 0.9vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.9;
    text-align: center;
    text-transform: uppercase;
    text-wrap: balance;
}

/* Keep the complete speech-bubble artwork inside the Contact panel. */
.contact-signal-art {
    top: 50%;
    left: 50%;
    width: min(82%, 720px);
    max-width: none;
    transform: translate(-50%, -50%);
}

@media (max-width: 1000px) {
    .contact-signal-art {
        width: min(86%, 660px);
    }
}

@media (max-width: 720px) {
    .service-area-copy {
        max-width: 94%;
        padding-left: 18px;
        font-size: 0.7rem;
        letter-spacing: 0.13em;
        line-height: 1.8;
    }

    .contact-signal-art {
        width: min(92%, 540px);
    }
}

@media (max-width: 430px) {
    .service-area-copy {
        max-width: 96%;
        padding-left: 15px;
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .contact-signal-art {
        width: 94%;
    }
}

/* =========================================================
   CONTACT ARTWORK STABILIZATION — 2026-07-29 16:43
   Keeps the working Contact layout intact while making both
   inline SVG artwork layers visible on desktop and mobile.
   ========================================================= */

/* The outer panel remains the containment boundary. */
.contact-panel {
    overflow: hidden;
    isolation: isolate;
}

/* Keep content above the full-panel speech bubble. */
.contact-heading,
.contact-grid {
    position: relative;
    z-index: 1;
}

/* Allow the phone's signal lines to extend around the form. */
.contact-response-area {
    overflow: visible;
}

.contact-phone-art {
    z-index: 1;
    top: 54%;
    left: 50%;
    right: auto;
    width: min(142%, 760px);
    max-width: none;
    opacity: 0.16;
    transform: translate(-50%, -50%);
}

.response-form {
    position: relative;
    z-index: 3;
}

/* Desktop/tablet: retain the artwork across the full Contact panel. */
.contact-signal-art {
    z-index: 0;
    top: 50%;
    left: 50%;
    width: min(108%, 1040px);
    max-width: none;
    height: auto;
    transform: translate(-50%, -50%);
}

@media (max-width: 1000px) {
    .contact-phone-art {
        top: 55%;
        width: min(150%, 720px);
    }

    /* Anchor the bubble to the heading/form region instead of the
       midpoint of the much taller stacked mobile Contact panel. */
    .contact-signal-art {
        top: 72px;
        width: min(138%, 760px);
        transform: translateX(-50%);
    }
}

@media (max-width: 720px) {
    .contact-response-area {
        overflow: visible;
    }

    .contact-phone-art {
        top: 56%;
        width: min(164%, 650px);
        opacity: 0.15;
    }

    .contact-signal-art {
        top: 52px;
        width: 148%;
        transform: translateX(-50%);
    }
}

@media (max-width: 430px) {
    .contact-phone-art {
        top: 57%;
        width: 176%;
        opacity: 0.15;
    }

    .contact-signal-art {
        top: 44px;
        width: 158%;
    }
}

/* =========================================================
   MOBILE LAYOUT UPDATE — 20260729-1852
   Based on the live-stable 20260729-1643 pair.
   Desktop changes are limited to approved Services copy and
   the portrait-style frame around the featured video.
   ========================================================= */

.cta-label-mobile,
.featured-swipe-hint,
.contact-swipe-hint {
    display: none;
}

/* Match the featured video treatment to the portrait displays. */
.video-embed-shell {
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        7px 7px 0 -1px rgba(94, 168, 255, 0.10),
        10px 10px 28px rgba(94, 168, 255, 0.045);
}

.video-embed-shell::before {
    content: "";
    position: absolute;
    z-index: 4;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 24px rgba(94, 168, 255, 0.035);
    pointer-events: none;
}

@media (max-width: 720px) {
    /* Keep every hero action on one flexible row, even on narrow phones. */
    .hero-actions {
        width: 100%;
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        flex-wrap: nowrap;
    }

    .hero-actions .button {
        min-width: 0;
        min-height: 40px;
        padding-inline: clamp(5px, 2vw, 10px);
        gap: clamp(4px, 1.2vw, 7px);
        font-size: clamp(0.54rem, 2.35vw, 0.68rem);
        line-height: 1;
        white-space: nowrap;
    }

    .hero-actions .button-arrow {
        font-size: 0.8rem;
    }

    /* Place the tagline immediately above the portrait and center it. */
    .hero-grid {
        gap: 18px;
    }

    .hero-tagline {
        width: 100%;
        max-width: 100%;
        margin: 30px auto 0;
        text-align: center;
    }

    /* Compress the Services carousel while making its artwork more prominent. */
    .services-panel .feature-grid {
        padding: 12px 14px 14px;
        gap: 12px;
    }

    .services-panel .feature-card {
        flex: 0 0 min(76vw, 330px);
        min-height: 274px;
        padding: 20px;
    }

    .services-panel .feature-card-top {
        gap: 16px;
    }

    .services-panel .feature-icon {
        width: 84px;
        height: 84px;
    }

    .services-panel .feature-title {
        font-size: clamp(1.62rem, 7.8vw, 2.15rem);
    }

    .services-panel .feature-text {
        margin-top: 11px;
        font-size: 0.88rem;
        line-height: 1.48;
    }

    .services-swipe-hint {
        margin: 0 14px 18px;
    }

    .mobile-scroll-hint span,
    .featured-swipe-hint span,
    .contact-swipe-hint span {
        color: var(--accent);
        font-size: 0.9rem;
    }

    /* One-row, horizontally swipeable service pills in both Featured panels. */
    .feature-list {
        margin: 28px -22px 0;
        padding: 2px 22px 8px;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        scroll-padding-inline: 22px;
        scrollbar-width: none;
    }

    .feature-list::-webkit-scrollbar {
        display: none;
    }

    .feature-list span {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        background: #0b0b0d;
        border: 1px solid var(--border);
        border-radius: 999px;
        scroll-snap-align: start;
        text-align: center;
        white-space: nowrap;
    }

    .featured-swipe-hint,
    .contact-swipe-hint {
        margin-top: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--quiet);
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .feature-cta {
        width: fit-content;
        margin: 24px auto 0;
        color: var(--text);
        background: #0b0b0d;
        border-color: var(--border);
    }

    .feature-cta:hover,
    .feature-cta:focus-visible {
        color: var(--text);
        background: var(--surface-light);
        border-color: var(--accent-border);
    }

    .cta-label-desktop {
        display: none;
    }

    .cta-label-mobile {
        display: inline;
    }

    /* Horizontal contact-card carousel with an explicit swipe cue. */
    .contact-grid {
        margin: 28px -1px 0;
        padding: 0 1px 8px;
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 1px;
        border-top: 0;
        border-left: 0;
        scrollbar-width: none;
    }

    .contact-grid::-webkit-scrollbar {
        display: none;
    }

    .contact-item {
        flex: 0 0 min(82vw, 340px);
        min-height: 190px;
        padding: 24px;
        border: 1px solid var(--border);
        scroll-snap-align: start;
    }

    .contact-value {
        margin-top: 28px;
    }

    .contact-swipe-hint {
        margin-top: 8px;
    }
}

@media (max-width: 390px) {
    .hero-actions {
        gap: 4px;
    }

    .hero-actions .button {
        padding-inline: 4px;
        font-size: clamp(0.5rem, 2.45vw, 0.6rem);
    }

    .hero-actions .button-arrow {
        font-size: 0.72rem;
    }
}



/* =========================================================
   STABLE FINAL LOCKED PASS — 20260731-2300
   Built from the untouched pre-pill desktop styling. This
   block carries forward only the explicitly approved changes.
   ========================================================= */

/* Keep the hero Explore arrow moving in its actual direction. */
.hero-actions .button-primary:hover .button-arrow,
.hero-actions .button-primary:focus-visible .button-arrow {
    transform: translateY(4px);
}

/* The rotating principle row reserves one constant block size.
   Word sizes, counter placement, spacing, and icon strip remain unchanged. */
.rotating-principle-row {
    height: clamp(104px, 10vw, 132px);
    min-height: clamp(104px, 10vw, 132px);
    max-height: clamp(104px, 10vw, 132px);
    box-sizing: border-box;
}

/* Services cards: preserve typography and artwork sizes while
   removing excess vertical space. */
.services-panel .feature-card {
    min-height: 312px;
    padding: clamp(24px, 2.45vw, 34px);
}

/* Austin + remote availability: one shared accent rule and two compact lines. */
.service-area-copy {
    width: fit-content;
    max-width: min(100%, 920px);
    margin: 0;
    padding: 2px 0 2px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45em;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-left: 2px solid var(--accent);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: clamp(0.74rem, 0.95vw, 0.86rem);
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
    text-wrap: balance;
}

.service-area-primary,
.service-area-secondary {
    display: block;
    text-align: center;
}

.service-area-primary {
    color: var(--text);
}

.service-area-secondary {
    color: var(--accent);
}

.service-area-mobile-break {
    display: none;
}

/* Restore the exact original desktop service-box language. */
.feature-list span {
    min-height: auto;
    padding: 8px 11px;
    color: #c7d9ee;
    background: transparent;
    border: 1px solid var(--accent-border);
    border-radius: 0;
    box-shadow: none;
    font-size: 0.7rem;
    font-weight: inherit;
    letter-spacing: 0.06em;
    line-height: normal;
    text-transform: uppercase;
}

/* Booking CTAs use the same visual system as the Send Request button. */
.feature-cta,
.feature-cta:hover,
.feature-cta:focus-visible {
    box-shadow: none;
}

.feature-cta {
    width: fit-content;
    color: #09090b;
    background: var(--text);
    border-color: var(--text);
}

.feature-cta:hover,
.feature-cta:focus-visible {
    color: #09090b;
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.feature-cta .button-arrow {
    position: static;
    color: currentColor;
    transform: none;
}

.feature-cta:hover .button-arrow,
.feature-cta:focus-visible .button-arrow {
    transform: translateX(4px);
}

/* Clean, centered video labels using the restored rectangular box system. */
.video-embed-shell {
    position: relative;
    z-index: 2;
    isolation: isolate;
    background: #090a0d;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.video-embed-demo,
.video-embed-meta {
    z-index: 5;
    width: auto;
    padding: 8px 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c7d9ee;
    background: rgba(9, 10, 13, 0.84);
    border: 1px solid var(--accent-border);
    border-radius: 0;
    box-shadow: none;
    font-size: 0.58rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.video-embed-demo {
    position: absolute;
    top: 17px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.video-embed-meta {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 17px;
    transform: translateX(-50%);
}

/* Subtle open technical treatment behind the vertical Short. */
.video-visual {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(94, 168, 255, 0.075),
            rgba(94, 168, 255, 0.018) 34%,
            transparent 68%
        );
}

.video-visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: min(88%, 520px);
    height: min(88%, 690px);
    border: 1px solid rgba(94, 168, 255, 0.10);
    box-shadow:
        18px 18px 0 -1px rgba(94, 168, 255, 0.025),
        -18px -18px 0 -1px rgba(255, 255, 255, 0.018),
        inset 0 0 70px rgba(94, 168, 255, 0.018);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-visual::after {
    content: "VIDEO / 01";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    color: rgba(94, 168, 255, 0.035);
    font-size: clamp(4.8rem, 10vw, 9.5rem);
    font-weight: 780;
    letter-spacing: -0.075em;
    line-height: 0.8;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (max-width: 720px) {
    /* Lock the existing mobile About geometry; only its height becomes fixed. */
    .rotating-principle-row {
        height: 92px;
        min-height: 92px;
        max-height: 92px;
    }

    /* Slim Services cards without changing type or icon sizes. */
    .services-panel .feature-card {
        min-height: 250px;
        padding: 18px 20px;
    }

    /* Consistent swipe-hint treatment. */
    .mobile-scroll-hint::before {
        display: none;
    }

    .services-swipe-hint,
    .featured-swipe-hint,
    .contact-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--quiet);
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        text-align: center;
        text-transform: uppercase;
    }

    .services-swipe-hint span,
    .featured-swipe-hint span,
    .contact-swipe-hint span {
        color: var(--accent);
        font-size: 0.9rem;
        line-height: 1;
    }

    /* Keep the category boxes visually identical to desktop while
       preserving the horizontal carousel and next-box preview. */
    .feature-list {
        margin: 28px -22px 0;
        padding: 2px 22px 8px;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        scroll-padding-inline: 22px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .feature-list::-webkit-scrollbar {
        display: none;
    }

    .feature-list span {
        flex: 0 0 auto;
        min-height: 42px;
        padding: 0 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #c7d9ee;
        background: transparent;
        border: 1px solid var(--accent-border);
        border-radius: 0;
        box-shadow: none;
        font-size: 0.66rem;
        font-weight: inherit;
        letter-spacing: 0.08em;
        scroll-snap-align: start;
        text-align: center;
        white-space: nowrap;
    }

    /* Same Send Request styling, with the mobile label selected by HTML/CSS. */
    .feature-cta {
        width: min(100%, 276px);
        margin: 24px auto 0;
        padding: 0 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: #09090b;
        background: var(--text);
        border-color: var(--text);
    }

    .feature-cta .cta-label-mobile {
        position: static;
        width: auto;
        max-width: none;
        display: inline;
        text-align: center;
        transform: none;
    }

    .feature-cta .button-arrow {
        position: static;
        color: currentColor;
        transform: none;
    }

    .feature-cta:hover,
    .feature-cta:focus-visible {
        color: #09090b;
        background: var(--accent);
        border-color: var(--accent);
    }

    .feature-cta:hover .button-arrow,
    .feature-cta:focus-visible .button-arrow {
        transform: translateX(4px);
    }

    /* Two compact centered availability lines, with the second sentence
       deliberately wrapped at the approved point. */
    .service-area-copy {
        width: min(100%, 560px);
        max-width: 96%;
        padding: 2px 0 2px 15px;
        gap: 0.48em;
        align-items: center;
        font-size: 0.65rem;
        letter-spacing: 0.10em;
        line-height: 1.35;
        text-align: center;
    }

    .service-area-mobile-break {
        display: block;
    }

    /* Make the decorative Short treatment tall and slim on phones. */
    .video-visual {
        overflow: hidden;
        background:
            radial-gradient(
                circle at 50% 50%,
                rgba(94, 168, 255, 0.065),
                rgba(94, 168, 255, 0.014) 38%,
                transparent 72%
            );
    }

    .video-visual::before {
        width: auto;
        height: calc(100% - 24px);
        max-height: 540px;
        max-width: 68%;
        aspect-ratio: 9 / 16;
        box-shadow:
            10px 10px 0 -1px rgba(94, 168, 255, 0.022),
            -10px -10px 0 -1px rgba(255, 255, 255, 0.014),
            inset 0 0 48px rgba(94, 168, 255, 0.014);
    }

    .video-visual::after {
        width: 72%;
        max-width: 310px;
        color: rgba(94, 168, 255, 0.028);
        font-size: clamp(2.35rem, 10.8vw, 4rem);
        letter-spacing: 0.04em;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
        transform: translate(-50%, -50%) scaleX(1.05);
    }

    .video-embed-demo {
        top: 14px;
    }

    .video-embed-meta {
        bottom: 14px;
    }

    /* On mobile, direct contact options lead and the response form follows. */
    .contact-panel {
        display: flex;
        flex-direction: column;
    }

    .contact-heading {
        display: contents;
    }

    .contact-heading-copy {
        order: 1;
    }

    .contact-grid {
        order: 2;
        width: 100%;
        margin: 28px 0 0;
        padding: 0 42px 8px 0;
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0 42px;
        border-top: 0;
        border-left: 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .contact-grid::-webkit-scrollbar {
        display: none;
    }

    .contact-item {
        flex: 0 0 min(calc(100% - 42px), 340px);
        min-height: 190px;
        padding: 24px;
        border: 1px solid var(--border);
        scroll-snap-align: start;
    }

    .contact-swipe-hint {
        order: 3;
        margin-top: 8px;
    }

    .contact-response-area {
        order: 4;
        width: 100%;
        margin-top: 30px;
    }
}


/* =========================================================
   STABLE FINAL V2 — 20260801-0046
   Final approved corrections only. Earlier rules remain as
   recovery context; this terminal block is the source of truth.
   ========================================================= */

/* Hero: two approved actions only. Desktop keeps the native flex layout;
   mobile uses an even two-column row. */
@media (max-width: 720px) {
    .hero-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-actions .button {
        width: 100%;
    }
}

/* Services cards: preserve every type and icon size while reducing only
   their vertical footprint and padding. */
.services-panel .feature-card {
    min-height: 290px;
    padding: clamp(21px, 2.2vw, 30px);
}

@media (max-width: 720px) {
    .services-panel .feature-card {
        min-height: 228px;
        padding: 16px 18px;
    }
}

/* Featured media must never inherit min-content width from either carousel.
   Keep the video and 2x2 photo sheet centered and fully contained. */
.feature-showcase,
.feature-copy,
.feature-visual,
.video-visual,
.feature-list,
.photo-contact-sheet,
.video-embed-shell {
    min-width: 0;
}

.feature-visual,
.video-visual {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
}

.video-embed-shell,
.photo-contact-sheet {
    margin-inline: auto;
}

.photo-contact-sheet {
    max-width: min(100%, 590px);
    box-sizing: border-box;
}

@media (max-width: 1000px) {
    .feature-showcase,
    .feature-showcase:nth-child(2) {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .feature-copy,
    .feature-visual,
    .video-visual,
    .photo-contact-sheet {
        width: 100%;
        max-width: 100%;
    }

    .feature-list {
        max-width: calc(100% + 44px);
    }

    .video-embed-shell {
        justify-self: center;
    }

    .photo-contact-sheet {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-self: center;
    }
}

/* Featured booking CTAs now use the exact Send Request visual language.
   The label is mathematically centered while the arrow is independently
   anchored to the right on desktop and mobile. */
.feature-cta {
    position: relative;
    width: min(100%, 470px);
    min-height: 52px;
    margin: 30px auto 0;
    padding: 0 58px 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #09090b;
    background: var(--text);
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    text-align: center;
}

.feature-cta .cta-label-desktop,
.feature-cta .cta-label-mobile {
    position: static;
    width: auto;
    max-width: 100%;
    text-align: center;
    transform: none;
}

.feature-cta .button-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    color: currentColor;
    transform: translateY(-50%);
}

.feature-cta:hover,
.feature-cta:focus-visible {
    color: #09090b;
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.feature-cta:hover .button-arrow,
.feature-cta:focus-visible .button-arrow {
    transform: translate(4px, -50%);
}

@media (max-width: 720px) {
    .feature-cta {
        width: 100%;
        max-width: 100%;
        min-height: 52px;
        margin-top: 24px;
        padding: 0 58px 0 24px;
    }
}

/* Contact form color hierarchy. */
.response-form-label {
    color: var(--accent) !important;
}

.response-form-intro {
    color: var(--text) !important;
}

.response-form select {
    color: var(--muted);
}

.response-form select option {
    color: var(--muted);
    background: #09090c;
}

/* Desktop contact order: direct contact cards first, then the existing
   heading/form row. Dimensions remain unchanged; only flow and spacing move. */
@media (min-width: 721px) {
    .contact-panel {
        display: flex;
        flex-direction: column;
    }

    .contact-grid {
        order: 1;
        margin-top: 0;
    }

    .contact-heading {
        order: 2;
        margin-top: clamp(42px, 6vw, 68px);
    }

    .contact-swipe-hint {
        order: 3;
    }
}


/* =========================================================
   DESKTOP ALIGNMENT + BUTTON CONSISTENCY PASS — 20260801-0145
   Approved changes only. This terminal block is authoritative.
   ========================================================= */

/* 1. Desktop Services: every grid row uses the same track height, so the
   second row matches the first without changing card width, type, or artwork. */
@media (min-width: 721px) {
    .services-panel .feature-grid {
        grid-auto-rows: 1fr;
        align-items: stretch;
    }

    .services-panel .feature-card {
        height: 100%;
    }
}

/* 2. Featured booking buttons: exact Contact-button visual language.
   Width remains specific to Featured Work; color, shape, type, and arrow
   behavior match the Send Request control. */
.feature-cta {
    position: relative;
    width: min(100%, 470px);
    min-height: 52px;
    margin: 30px auto 0;
    padding: 0 58px 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #09090b;
    background: var(--text);
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 650;
    line-height: 1;
    text-align: center;
}

.feature-cta .cta-label-desktop,
.feature-cta .cta-label-mobile {
    position: static;
    width: auto;
    max-width: 100%;
    text-align: center;
    transform: none;
}

.feature-cta .button-arrow {
    position: absolute;
    top: 50%;
    right: 24px;
    color: currentColor;
    transform: translateY(-50%);
}

.feature-cta:hover,
.feature-cta:focus-visible {
    color: #09090b;
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.feature-cta:hover .button-arrow,
.feature-cta:focus-visible .button-arrow {
    transform: translate(4px, -50%);
}


/* 5. View Services arrow on every viewport. Mobile keeps both actions in one
   compact desktop-style row rather than stretching them into equal columns. */
.hero-services-link .button-arrow {
    display: inline-block;
    flex: 0 0 auto;
}

.hero-services-link:hover .button-arrow,
.hero-services-link:focus-visible .button-arrow {
    transform: translateY(4px);
}

@media (max-width: 720px) {
    .hero-actions {
        width: auto;
        max-width: 100%;
        margin: 30px auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .hero-actions .button {
        width: auto;
        min-width: 0;
        min-height: 44px;
        padding: 0 clamp(14px, 4vw, 20px);
        gap: 8px;
        font-size: clamp(0.65rem, 2.8vw, 0.78rem);
        line-height: 1;
        white-space: nowrap;
    }

    .hero-actions .button-arrow {
        font-size: 0.82rem;
    }
}

@media (max-width: 360px) {
    .hero-actions {
        gap: 6px;
    }

    .hero-actions .button {
        padding-inline: 11px;
        font-size: 0.62rem;
    }
}

/* =========================================================
   SAINTCVRLOS MEDIA FINAL LOCKED RULES — 20260804-1444
   This terminal block is intentionally last and authoritative.
   Active files: /media/index.html and /media/media-20260804-1444.css
   ========================================================= */

/* Services desktop cards: approved smaller card height. */
@media (min-width: 721px) {
    .services-panel .feature-grid {
        grid-auto-rows: 305px !important;
        align-items: stretch !important;
    }

    .services-panel .feature-card {
        min-height: 0 !important;
        height: 305px !important;
    }
}

/* Featured Work booking buttons: clickable, visible hover, Contact submit untouched. */
.feature-showcase .feature-cta {
    pointer-events: auto !important;
    cursor: pointer !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 5 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    min-height: 52px !important;
    color: #09090b !important;
    background: var(--text) !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    font-size: 0.85rem !important;
    font-weight: 650 !important;
    line-height: 1 !important;
    text-align: center !important;
    transform: none !important;
    transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease !important;
}

.feature-showcase .feature-cta:hover,
.feature-showcase .feature-cta:focus-visible {
    color: #09090b !important;
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    opacity: 1 !important;
    transform: translateY(-3px) !important;
}

.feature-showcase .feature-cta .cta-label-desktop,
.feature-showcase .feature-cta .cta-label-mobile {
    position: static !important;
    width: auto !important;
    max-width: 100% !important;
    text-align: center !important;
    transform: none !important;
}

.feature-showcase .feature-cta .button-arrow {
    position: static !important;
    flex: 0 0 auto !important;
    color: currentColor !important;
    transform: none !important;
    transition: transform 220ms ease !important;
}

.feature-showcase .feature-cta:hover .button-arrow,
.feature-showcase .feature-cta:focus-visible .button-arrow {
    transform: translateX(4px) !important;
}

@media (min-width: 721px) {
    .feature-showcase .feature-cta {
        width: min(100%, 404px) !important;
        margin: 30px 0 0 !important;
        padding: 0 24px !important;
    }
}

@media (max-width: 720px) {
    .feature-showcase .feature-cta {
        width: min(100%, 276px) !important;
        margin: 24px auto 0 !important;
        padding: 0 24px !important;
    }
}

/* Desktop Contact order:
   CONTACT / 04
   contact cards
   headline left and request form right
*/
@media (min-width: 721px) {
    .contact-panel {
        position: relative !important;
        display: grid !important;
        grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr) !important;
        column-gap: clamp(28px, 5vw, 76px) !important;
        row-gap: clamp(30px, 4.5vw, 52px) !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    .contact-section-label {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 3 !important;
    }

    .contact-grid {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        margin: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        position: relative !important;
        z-index: 3 !important;
    }

    .contact-heading {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding-top: 0 !important;
        display: grid !important;
        grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr) !important;
        column-gap: clamp(28px, 5vw, 76px) !important;
        align-items: center !important;
        position: relative !important;
        z-index: 3 !important;
    }

    .contact-heading-copy {
        grid-column: 1 !important;
        display: block !important;
        width: auto !important;
        align-self: center !important;
    }

    .contact-heading-copy h2 {
        margin: 0 !important;
    }

    .contact-response-area {
        grid-column: 2 !important;
        width: 100% !important;
        min-height: clamp(500px, 43vw, 590px) !important;
        margin-top: 0 !important;
        display: grid !important;
        place-items: center !important;
        position: relative !important;
        z-index: 3 !important;
    }

    .contact-swipe-hint {
        display: none !important;
    }
}

/* Mobile contact keeps the old readable flow even though desktop HTML is reordered. */
@media (max-width: 720px) {
    .contact-panel {
        display: flex !important;
        flex-direction: column !important;
    }

    .contact-section-label {
        order: 1 !important;
    }

    .contact-heading {
        order: 2 !important;
    }

    .contact-grid {
        order: 3 !important;
    }

    .contact-swipe-hint {
        order: 4 !important;
    }
}

/* Contact select values match the phone/email input color. */
.response-form select,
.response-form select option {
    color: var(--text) !important;
}

/* View Services arrow on every viewport, with downward motion. */
.hero-services-link .button-arrow {
    display: inline-block !important;
    flex: 0 0 auto !important;
}

.hero-services-link:hover .button-arrow,
.hero-services-link:focus-visible .button-arrow {
    transform: translateY(4px) !important;
}

/* Mobile hero actions: compact desktop-style side-by-side placement only. */
@media (max-width: 720px) {
    .hero-actions {
        width: auto !important;
        max-width: 100% !important;
        margin: 30px auto 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
    }

    .hero-actions .button {
        width: auto !important;
        min-width: 0 !important;
        min-height: 44px !important;
        padding: 0 clamp(14px, 4vw, 20px) !important;
        gap: 8px !important;
        font-size: clamp(0.65rem, 2.8vw, 0.78rem) !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .hero-actions .button-arrow {
        font-size: 0.82rem !important;
    }
}

@media (max-width: 360px) {
    .hero-actions {
        gap: 6px !important;
    }

    .hero-actions .button {
        padding-inline: 11px !important;
        font-size: 0.62rem !important;
    }
}

/* Desktop Contact card text alignment — 20260804-1414
   Keeps the small detail text aligned across Email, Instagram, and Text cards.
*/
@media (min-width: 721px) {
    .contact-grid .contact-item {
        display: grid !important;
        grid-template-rows: auto minmax(86px, auto) minmax(54px, auto) 1fr auto !important;
        align-items: start !important;
        justify-content: stretch !important;
    }

    .contact-grid .contact-item > div {
        display: contents !important;
    }

    .contact-grid .contact-label {
        grid-row: 1 !important;
        align-self: start !important;
    }

    .contact-grid .contact-value {
        grid-row: 2 !important;
        align-self: end !important;
        margin-top: 0 !important;
    }

    .contact-grid .contact-detail {
        grid-row: 3 !important;
        align-self: start !important;
        margin-top: 10px !important;
    }

    .contact-grid .contact-arrow {
        grid-row: 5 !important;
        align-self: end !important;
        justify-self: end !important;
    }
}
/* END Desktop Contact card text alignment — 20260804-1414 */

/* =========================================================
   FEATURED WORK CTA FLOW — 20260804-1444
   Buttons fit their text, use downward arrows, and land at CONTACT / 04.
   ========================================================= */
#contact {
    scroll-margin-top: 96px !important;
}

.feature-showcase .feature-cta {
    width: fit-content !important;
    min-width: max-content !important;
    max-width: 100% !important;
    padding: 0 28px !important;
    gap: 12px !important;
}

.feature-showcase .feature-cta .button-arrow {
    position: static !important;
    display: inline-block !important;
    transform: none !important;
    transition: transform 220ms ease !important;
}

.feature-showcase .feature-cta:hover .button-arrow,
.feature-showcase .feature-cta:focus-visible .button-arrow {
    transform: translateY(4px) !important;
}

@media (min-width: 721px) {
    .feature-showcase .feature-cta {
        width: fit-content !important;
        min-width: max-content !important;
        margin: 30px 0 0 !important;
    }
}

@media (max-width: 720px) {
    #contact {
        scroll-margin-top: 82px !important;
    }

    .feature-showcase .feature-cta {
        width: fit-content !important;
        min-width: max-content !important;
        margin: 24px auto 0 !important;
        padding: 0 24px !important;
    }
}
/* END FEATURED WORK CTA FLOW — 20260804-1444 */


/* =========================================================
   SERVICES SECTION REDESIGN — 20260804-1518
   Two featured service cards up top, four compact capability rows below.
   Tech / IT Support is promoted to card 03.
   Keeps existing site typography, colors, and interaction language.
   ========================================================= */
.services-panel .service-board {
    position: relative;
    z-index: 2;
    margin-top: clamp(34px, 4vw, 52px);
    display: grid;
    gap: 14px;
}

.services-panel .service-hero-card,
.services-panel .service-list-card {
    position: relative;
    text-decoration: none;
    color: var(--text);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 45%);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: background 300ms ease, transform 300ms ease, border-color 300ms ease;
}

.services-panel .service-hero-card::before,
.services-panel .service-list-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms ease;
}

.services-panel .service-hero-card::after,
.services-panel .service-list-card::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(94, 168, 255, 0.14), transparent 68%);
    opacity: 0.35;
    transition: opacity 300ms ease;
    pointer-events: none;
}

.services-panel .service-hero-card:hover,
.services-panel .service-hero-card:focus-visible,
.services-panel .service-list-card:hover,
.services-panel .service-list-card:focus-visible {
    background: var(--surface);
    border-color: var(--accent-border);
    transform: translateY(-5px);
}

.services-panel .service-hero-card:hover::before,
.services-panel .service-hero-card:focus-visible::before,
.services-panel .service-list-card:hover::before,
.services-panel .service-list-card:focus-visible::before {
    transform: scaleX(1);
}

.services-panel .service-hero-card:hover::after,
.services-panel .service-hero-card:focus-visible::after,
.services-panel .service-list-card:hover::after,
.services-panel .service-list-card:focus-visible::after {
    opacity: 1;
}

.services-panel .service-card-meta,
.services-panel .service-list-heading,
.services-panel .service-hero-heading {
    position: relative;
    z-index: 2;
}

.services-panel .service-card-number {
    color: #85858d;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
}

.services-panel .service-card-icon {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.28);
    flex: 0 0 auto;
    transition: color 300ms ease, transform 300ms ease;
}

.services-panel .service-card-icon-large {
    width: 72px;
    height: 72px;
}

.services-panel .service-hero-card:hover .service-card-icon,
.services-panel .service-hero-card:focus-visible .service-card-icon,
.services-panel .service-list-card:hover .service-card-icon,
.services-panel .service-list-card:focus-visible .service-card-icon {
    color: rgba(94, 168, 255, 0.84);
    transform: translateY(-3px);
}

.services-panel .service-card-title {
    margin: 0;
    color: var(--text);
    font-weight: 560;
    letter-spacing: -0.05em;
}

.services-panel .service-card-copy {
    margin: 0;
    color: var(--muted);
}

.services-panel .service-card-arrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 1.2rem;
    line-height: 1;
    transition: color 250ms ease, transform 250ms ease;
}

.services-panel .service-hero-card:hover .service-card-arrow,
.services-panel .service-hero-card:focus-visible .service-card-arrow,
.services-panel .service-list-card:hover .service-card-arrow,
.services-panel .service-list-card:focus-visible .service-card-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

@media (min-width: 721px) {
    .services-panel .service-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .services-panel .service-hero-card {
        min-height: 340px;
        padding: clamp(28px, 3vw, 38px);
        display: grid;
        grid-template-rows: auto 1fr;
        gap: 38px;
    }

    .services-panel .service-card-meta {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
    }

    .services-panel .service-hero-content {
        display: grid;
        align-content: end;
        gap: 16px;
    }

    .services-panel .service-hero-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .services-panel .service-hero-card .service-card-title {
        font-size: clamp(2.15rem, 3vw, 2.95rem);
    }

    .services-panel .service-hero-card .service-card-copy {
        max-width: 540px;
        font-size: 1rem;
        line-height: 1.62;
    }

    .services-panel .service-list-card {
        min-height: 158px;
        padding: 24px 28px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 22px;
        align-items: center;
    }

    .services-panel .service-list-icon-wrap {
        width: 74px;
        height: 74px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(94, 168, 255, 0.18);
        border-radius: 999px;
        background: radial-gradient(circle at 50% 50%, rgba(94, 168, 255, 0.12), transparent 70%);
        position: relative;
        z-index: 2;
    }

    .services-panel .service-list-content {
        display: grid;
        gap: 10px;
        position: relative;
        z-index: 2;
    }

    .services-panel .service-list-heading {
        display: flex;
        align-items: baseline;
        gap: 16px;
    }

    .services-panel .service-list-card .service-card-title {
        font-size: clamp(1.65rem, 2vw, 2.15rem);
    }

    .services-panel .service-list-card .service-card-copy {
        max-width: 520px;
        font-size: 0.97rem;
        line-height: 1.65;
    }
}

@media (max-width: 720px) {
    .services-panel .service-board {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .services-panel .service-hero-card,
    .services-panel .service-list-card {
        padding: 24px 22px;
    }

    .services-panel .service-hero-card {
        display: grid;
        gap: 24px;
        min-height: 0;
    }

    .services-panel .service-card-meta {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 18px;
    }

    .services-panel .service-hero-heading,
    .services-panel .service-list-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .services-panel .service-hero-card .service-card-title {
        font-size: clamp(2rem, 9vw, 2.65rem);
    }

    .services-panel .service-hero-card .service-card-copy,
    .services-panel .service-list-card .service-card-copy {
        margin-top: 14px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .services-panel .service-list-card {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 16px;
        align-items: start;
    }

    .services-panel .service-list-icon-wrap {
        width: 62px;
        height: 62px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(94, 168, 255, 0.16);
        border-radius: 999px;
        background: radial-gradient(circle at 50% 50%, rgba(94, 168, 255, 0.1), transparent 70%);
    }

    .services-panel .service-list-content {
        min-width: 0;
    }

    .services-panel .service-list-heading {
        align-items: baseline;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 12px;
    }

    .services-panel .service-list-card .service-card-title {
        font-size: clamp(1.45rem, 6vw, 1.9rem);
    }

    .services-panel .service-list-card .service-card-arrow {
        align-self: center;
    }
}
/* END SERVICES SECTION REDESIGN — 20260804-1518 */


/* =========================================================
   SERVICES INDEX + HERO / CONTACT FLOW — 20260804-1747
   Final override only, avoids touching unrelated sections.
   ========================================================= */

/* Hero: add Home button while keeping all hero buttons in one row. */
.hero-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
}

.hero-actions .button {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    white-space: nowrap !important;
}

.hero-home-link {
    text-decoration: none !important;
}

@media (max-width: 720px) {
    .hero-actions {
        gap: clamp(5px, 1.8vw, 10px) !important;
    }

    .hero-actions .button {
        min-height: 42px !important;
        padding: 0 clamp(9px, 2.8vw, 15px) !important;
        gap: 6px !important;
        font-size: clamp(0.55rem, 2.35vw, 0.7rem) !important;
        letter-spacing: clamp(0.06em, 0.7vw, 0.13em) !important;
    }
}

@media (max-width: 360px) {
    .hero-actions {
        gap: 4px !important;
    }

    .hero-actions .button {
        padding-inline: 8px !important;
        font-size: 0.54rem !important;
    }
}

/* Services intro: remove the added separator and tighten the card landing space. */
.services-panel .explore-intro {
    border-bottom: 0 !important;
    padding-bottom: clamp(22px, 3vw, 34px) !important;
}

.services-panel .service-board.service-index-board {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.services-panel .service-index-card {
    position: relative !important;
    min-height: 150px !important;
    padding: clamp(20px, 2.3vw, 26px) clamp(20px, 2.6vw, 30px) !important;
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: clamp(18px, 2.4vw, 26px) !important;
    color: var(--text) !important;
    text-decoration: none !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 48%), rgba(20, 20, 23, 0.78) !important;
    border: 1px solid var(--border) !important;
    overflow: hidden !important;
    transition: background 300ms ease, transform 300ms ease, border-color 300ms ease !important;
}

.services-panel .service-index-card::before {
    content: "" !important;
    position: absolute !important;
    inset: auto 0 0 !important;
    height: 3px !important;
    background: var(--accent) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 300ms ease !important;
}

.services-panel .service-index-card::after {
    content: "" !important;
    position: absolute !important;
    top: -90px !important;
    right: -90px !important;
    width: 210px !important;
    height: 210px !important;
    background: radial-gradient(circle, rgba(94, 168, 255, 0.13), transparent 68%) !important;
    opacity: 0.32 !important;
    pointer-events: none !important;
    transition: opacity 300ms ease !important;
}

.services-panel .service-index-card:hover,
.services-panel .service-index-card:focus-visible {
    background: var(--surface) !important;
    border-color: var(--accent-border) !important;
    transform: translateY(-4px) !important;
}

.services-panel .service-index-card:hover::before,
.services-panel .service-index-card:focus-visible::before {
    transform: scaleX(1) !important;
}

.services-panel .service-index-card:hover::after,
.services-panel .service-index-card:focus-visible::after {
    opacity: 1 !important;
}

.services-panel .service-index-icon-wrap {
    width: 82px !important;
    height: 82px !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(94, 168, 255, 0.2) !important;
    border-radius: 999px !important;
    background: radial-gradient(circle at 50% 50%, rgba(94, 168, 255, 0.14), transparent 70%) !important;
    position: relative !important;
    z-index: 2 !important;
}

.services-panel .service-index-card .service-card-icon {
    width: 64px !important;
    height: 64px !important;
    color: rgba(255, 255, 255, 0.32) !important;
    filter: drop-shadow(0 0 8px rgba(94, 168, 255, 0.08)) !important;
    transition: color 300ms ease, transform 300ms ease, filter 300ms ease !important;
}

.services-panel .service-index-card:hover .service-card-icon,
.services-panel .service-index-card:focus-visible .service-card-icon {
    color: rgba(94, 168, 255, 0.86) !important;
    transform: translateY(-2px) !important;
    filter: drop-shadow(0 0 12px rgba(94, 168, 255, 0.22)) !important;
}

.services-panel .service-index-content {
    min-width: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

.services-panel .service-index-heading {
    display: flex !important;
    align-items: baseline !important;
    gap: 18px !important;
}

.services-panel .service-index-card .service-card-number {
    flex: 0 0 auto !important;
    color: var(--accent) !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.16em !important;
}

.services-panel .service-index-card .service-card-title {
    margin: 0 !important;
    color: var(--text) !important;
    font-size: clamp(1.55rem, 2.05vw, 2rem) !important;
    font-weight: 560 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.05em !important;
}

.services-panel .service-index-card .service-card-copy {
    max-width: 480px !important;
    margin: 12px 0 0 !important;
    color: var(--muted) !important;
    font-size: clamp(0.88rem, 1.05vw, 0.97rem) !important;
    line-height: 1.55 !important;
}

.services-panel .service-index-card .service-card-arrow {
    position: relative !important;
    z-index: 2 !important;
    align-self: center !important;
    justify-self: end !important;
    color: rgba(255, 255, 255, 0.38) !important;
    font-size: 1.28rem !important;
    line-height: 1 !important;
    transition: color 250ms ease, transform 250ms ease !important;
}

.services-panel .service-index-card:hover .service-card-arrow,
.services-panel .service-index-card:focus-visible .service-card-arrow {
    color: var(--accent) !important;
    transform: translateY(5px) !important;
}

/* Austin / remote line: slimmer accent, bigger first line, desktop-only blank line gap. */
.service-area-copy {
    border-left: 1px solid var(--accent-border) !important;
    padding-left: 24px !important;
}

.service-area-primary {
    font-size: 1.25em !important;
    line-height: 1.45 !important;
}

@media (min-width: 721px) {
    .service-area-secondary {
        margin-top: 1.05em !important;
    }
}

@media (max-width: 1050px) {
    .services-panel .service-board.service-index-board {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 720px) {
    .services-panel .explore-intro {
        padding-bottom: 26px !important;
    }

    .services-panel .service-index-card {
        min-height: 132px !important;
        padding: 20px !important;
        grid-template-columns: 74px minmax(0, 1fr) auto !important;
        gap: 16px !important;
    }

    .services-panel .service-index-icon-wrap {
        width: 70px !important;
        height: 70px !important;
    }

    .services-panel .service-index-card .service-card-icon {
        width: 54px !important;
        height: 54px !important;
    }

    .services-panel .service-index-heading {
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .services-panel .service-index-card .service-card-title {
        font-size: clamp(1.32rem, 6vw, 1.75rem) !important;
    }

    .services-panel .service-index-card .service-card-copy {
        margin-top: 9px !important;
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }

    .service-area-copy {
        padding-left: 18px !important;
    }

    .service-area-secondary {
        margin-top: 0 !important;
    }
}
/* END SERVICES INDEX + HERO / CONTACT FLOW — 20260804-1747 */


/* =========================================================
   FINAL RESPONSIVE POLISH + SERVICE SCROLL TARGETS — 20260804-1952
   Authoritative terminal overrides for hero buttons, service flow,
   Austin line, About alignment, and Contact desktop/mobile polish.
   ========================================================= */

/* Anchor landings for service cards. */
#featured-video,
#featured-photography,
#contact {
    scroll-margin-top: 96px !important;
}

/* Hero buttons: left-aligned row, with Home sized to match the visual weight. */
.hero-actions {
    justify-content: flex-start !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin-left: 0 !important;
}

.hero-actions .button {
    flex: 0 1 auto !important;
    white-space: nowrap !important;
}

.hero-home-link {
    min-width: 106px !important;
    padding-inline: 26px !important;
    text-align: center !important;
    text-decoration: none !important;
}

/* Keep the mobile menu typography aligned with the site home/menu language. */
.menu-button,
.mobile-close {
    font-size: clamp(0.82rem, 2.65vw, 0.95rem) !important;
    font-weight: 800 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
}

/* Services card behavior and visual down-arrow language. */
.services-panel .service-index-card .service-card-arrow {
    display: inline-block !important;
    transform: none !important;
    transition: color 250ms ease, transform 250ms ease !important;
}

.services-panel .service-index-card:hover .service-card-arrow,
.services-panel .service-index-card:focus-visible .service-card-arrow {
    color: var(--accent) !important;
    transform: translateY(5px) !important;
}

/* Mobile Services: two-row horizontal swipe board, with icons kept prominent. */
@media (max-width: 720px) {
    #featured-video,
    #featured-photography,
    #contact {
        scroll-margin-top: 82px !important;
    }

    .hero-actions {
        width: 100% !important;
        margin: 30px 0 0 !important;
        justify-content: flex-start !important;
        gap: clamp(6px, 1.8vw, 10px) !important;
    }

    .hero-actions .button {
        min-height: 42px !important;
        padding: 0 clamp(9px, 2.7vw, 14px) !important;
        gap: 6px !important;
        font-size: clamp(0.54rem, 2.3vw, 0.7rem) !important;
        letter-spacing: clamp(0.055em, 0.68vw, 0.12em) !important;
    }

    .hero-home-link {
        min-width: clamp(76px, 18vw, 96px) !important;
        padding-inline: clamp(12px, 3vw, 18px) !important;
    }

    .services-panel .service-board.service-index-board {
        width: 100% !important;
        margin-top: 0 !important;
        padding: 0 42px 8px 0 !important;
        display: grid !important;
        grid-auto-flow: column !important;
        grid-template-columns: none !important;
        grid-template-rows: repeat(2, minmax(142px, auto)) !important;
        grid-auto-columns: minmax(min(82vw, 430px), min(82vw, 430px)) !important;
        gap: 12px !important;
        overflow-x: auto !important;
        overscroll-behavior-inline: contain !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-inline: 0 42px !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .services-panel .service-board.service-index-board::-webkit-scrollbar {
        display: none !important;
    }

    .services-panel .service-index-card {
        min-height: 142px !important;
        padding: 20px !important;
        grid-template-columns: 74px minmax(0, 1fr) auto !important;
        gap: 16px !important;
        scroll-snap-align: start !important;
    }

    .services-panel .service-index-icon-wrap {
        width: 70px !important;
        height: 70px !important;
    }

    .services-panel .service-index-card .service-card-icon {
        width: 54px !important;
        height: 54px !important;
    }

    .services-swipe-hint {
        display: flex !important;
        margin: 10px 0 0 !important;
    }
}

@media (max-width: 360px) {
    .hero-actions {
        gap: 4px !important;
    }

    .hero-actions .button {
        padding-inline: 8px !important;
        font-size: 0.52rem !important;
    }

    .hero-home-link {
        min-width: 70px !important;
    }
}

/* Austin / remote service line: keep placement, increase primary line 30%, keep desktop blank-line gap. */
.service-area-copy {
    border-left: 1px solid rgba(94, 168, 255, 0.8) !important;
    padding-left: 24px !important;
}

.service-area-primary {
    font-size: 1.3em !important;
    line-height: 1.42 !important;
}

@media (min-width: 721px) {
    .service-area-secondary {
        margin-top: 1.08em !important;
    }
}

@media (max-width: 720px) {
    .service-area-copy {
        padding-left: 18px !important;
    }

    .service-area-secondary {
        margin-top: 0 !important;
    }
}

/* Desktop Contact: lift the speech-bubble artwork and enlarge only the headline. */
@media (min-width: 721px) {
    .contact-signal-art {
        top: 40% !important;
        transform: translate(-50%, -50%) !important;
    }

    .contact-heading-copy h2 {
        font-size: clamp(3.45rem, 6.55vw, 7.36rem) !important;
        line-height: 0.9 !important;
    }
}

/* Contact card artwork: subtle full-card line art, themed per contact method. */
.contact-grid .contact-item {
    position: relative !important;
    overflow: hidden !important;
}

.contact-grid .contact-item > * {
    position: relative !important;
    z-index: 2 !important;
}

.contact-grid .contact-item::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    opacity: 0.16 !important;
    pointer-events: none !important;
    background-repeat: no-repeat !important;
    background-position: right 18px bottom 10px !important;
    background-size: min(58%, 260px) auto !important;
    filter: drop-shadow(0 0 18px rgba(94, 168, 255, 0.12)) !important;
}

.contact-grid .contact-item:nth-child(1)::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 180' fill='none'><rect x='30' y='44' width='190' height='110' rx='10' stroke='%235EA8FF' stroke-width='4'/><path d='M38 56L125 112L212 56' stroke='%235EA8FF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/><path d='M64 28C34 48 18 76 18 112M84 22C45 48 28 79 29 125' stroke='%235EA8FF' stroke-width='3' stroke-linecap='round' opacity='.55'/></svg>") !important;
}

.contact-grid .contact-item:nth-child(2)::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 180' fill='none'><rect x='54' y='28' width='150' height='124' rx='24' stroke='%235EA8FF' stroke-width='4'/><circle cx='129' cy='91' r='34' stroke='%235EA8FF' stroke-width='4'/><circle cx='176' cy='58' r='8' fill='%235EA8FF'/><path d='M35 137C66 159 105 169 148 164C182 160 207 146 228 124' stroke='%235EA8FF' stroke-width='3' stroke-linecap='round' opacity='.5'/></svg>") !important;
}

.contact-grid .contact-item:nth-child(3)::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 180' fill='none'><path d='M48 46C48 30 61 18 78 18H186C203 18 216 30 216 46V100C216 116 203 128 186 128H128L82 158V128H78C61 128 48 116 48 100V46Z' stroke='%235EA8FF' stroke-width='4' stroke-linejoin='round'/><path d='M82 58H178M82 82H160M82 106H132' stroke='%235EA8FF' stroke-width='4' stroke-linecap='round'/><path d='M224 58C240 73 247 90 246 112M35 66C20 84 15 103 20 124' stroke='%235EA8FF' stroke-width='3' stroke-linecap='round' opacity='.55'/></svg>") !important;
}

/* Mobile Contact: cards first, swipe hint immediately under cards, then headline, then form. */
@media (max-width: 720px) {
    .contact-panel {
        display: flex !important;
        flex-direction: column !important;
    }

    .contact-section-label {
        order: 1 !important;
    }

    .contact-grid {
        order: 2 !important;
        margin-top: 28px !important;
    }

    .contact-swipe-hint {
        order: 3 !important;
        display: flex !important;
        margin: 8px 0 0 !important;
    }

    .contact-heading {
        display: contents !important;
    }

    .contact-heading-copy {
        order: 4 !important;
        margin-top: 30px !important;
    }

    .contact-response-area {
        order: 5 !important;
        margin-top: 30px !important;
    }

    .contact-heading-copy h2 {
        margin: 0 !important;
    }

    .contact-grid .contact-item::before {
        background-size: min(70%, 230px) auto !important;
        opacity: 0.14 !important;
    }
}
/* END FINAL RESPONSIVE POLISH + SERVICE SCROLL TARGETS — 20260804-1952 */





/* =========================================================
   FINAL ABOUT + FEATURED MOBILE POLISH — 20260804-2358
   Restores desktop About alignment, fixes mobile About spacing/counter flow with a stable word row,
   centers Featured mobile CTAs, and adds the Services title highlight.
   ========================================================= */

/* Services title highlight: visual effect only, no font-size changes. */
.services-panel .section-title .title-highlight {
    color: #050506 !important;
    background: var(--accent) !important;
    padding: 0.02em 0.045em !important;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

@media (min-width: 721px) {
    /* Desktop About / 03: restore centered content column and remove only the blank-line gap. */
    .about-intro-text {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .about-intro .rotating-principle-row {
        margin-top: 5px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 720px) {
    /* Mobile About / 03: remove the blank-line gap without changing word sizes. */
    .about-intro .rotating-principle-row {
        position: relative !important;
        height: 96px !important;
        min-height: 96px !important;
        max-height: 96px !important;
        margin-top: 0 !important;
        padding: 0 0 28px !important;
        display: grid !important;
        place-items: center !important;
        border-bottom: 1px solid var(--border) !important;
        box-sizing: border-box !important;
    }

    .about-intro .rotating-principle {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .about-intro .principle-counter {
        position: absolute !important;
        right: 0 !important;
        bottom: 7px !important;
        z-index: 3 !important;
        padding: 0 !important;
        background: transparent !important;
        transform: none !important;
        white-space: nowrap !important;
    }

    /* Mobile Featured buttons: center visually inside the content container. */
    .feature-showcase .feature-cta {
        position: relative !important;
        left: 50% !important;
        width: fit-content !important;
        min-width: max-content !important;
        max-width: calc(100% - 48px) !important;
        margin: 24px 0 0 !important;
        transform: translateX(-50%) !important;
    }

    .feature-showcase .feature-cta:hover,
    .feature-showcase .feature-cta:focus-visible {
        transform: translate(-50%, -3px) !important;
    }
}
/* END FINAL ABOUT + FEATURED MOBILE POLISH — 20260804-2358 */


/* =========================================================
   OPTIONAL PHOTOGRAPHY PERFORMANCE PASS — 20260804-2358
   Keeps the same visual layout while reducing repaint/hover work around portraits.
   ========================================================= */
.photo-contact-sheet,
.photo-frame {
    contain: layout paint !important;
}

.photo-frame {
    isolation: isolate !important;
}

.photo-frame img {
    backface-visibility: hidden !important;
}

@media (hover: none), (pointer: coarse) {
    .photo-frame img {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .photo-frame:hover img,
    .photo-frame:focus-within img {
        transform: none !important;
        filter: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .photo-frame img {
        transition: none !important;
    }
}
/* END OPTIONAL PHOTOGRAPHY PERFORMANCE PASS — 20260804-2358 */
