:root {
    --bg: #f6f2ea;
    --panel: rgba(255, 252, 246, 0.78);
    --panel-strong: rgba(255, 255, 255, 0.9);
    --text: #201a12;
    --muted: #756b5e;
    --faint: #a59884;
    --line: rgba(121, 94, 52, 0.18);
    --line-strong: rgba(184, 127, 42, 0.42);
    --accent: #b87919;
    --accent-hi: #f2bd5d;
    --accent-deep: #81520d;
    --blue: #1e75a8;
    --cyan: #36b8c6;
    --shadow: 0 22px 70px rgba(98, 67, 23, 0.14);
    --shadow-strong: 0 38px 120px rgba(83, 58, 23, 0.24);
    --radius: 18px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 0%, rgba(242, 189, 93, 0.28), transparent 26%),
        radial-gradient(circle at 88% 8%, rgba(54, 184, 198, 0.2), transparent 28%),
        linear-gradient(180deg, #fffaf1 0%, #f6f2ea 42%, #f7f4ed 100%);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(184, 127, 42, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(184, 127, 42, 0.05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 68%);
}

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

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

.home-page {
    width: min(calc(100vw - clamp(28px, 6vw, 112px)), 1560px);
    margin: clamp(16px, 2vw, 28px) auto 44px;
}

.home-nav {
    position: sticky;
    top: 14px;
    z-index: 60;
    min-height: 82px;
    display: grid;
    grid-template-columns: minmax(250px, .82fr) minmax(360px, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 0 24px 0 28px;
    background: rgba(255, 252, 246, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(1.15);
}

.brand {
    min-width: 260px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark,
.cta-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255,255,255,.28), transparent),
        linear-gradient(150deg, var(--accent-hi), var(--accent) 56%, var(--accent-deep));
    box-shadow: 0 14px 34px rgba(184, 127, 25, .32);
    font-weight: 800;
}

.brand strong {
    display: block;
    color: var(--accent-deep);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0;
}

.brand small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.3;
}

.nav-links {
    display: flex;
    min-width: 0;
    justify-content: center;
    gap: clamp(18px, 2.5vw, 38px);
}

.nav-links a,
.login-link,
.text-link {
    color: var(--muted);
    font-size: 15px;
    transition: color .2s var(--ease);
}

.nav-links a:hover,
.login-link:hover,
.text-link:hover {
    color: var(--accent);
}

.nav-actions,
.hero-actions,
.final-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-actions {
    justify-content: flex-end;
    white-space: nowrap;
}

.primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(180deg, var(--accent-hi), var(--accent));
    box-shadow: 0 14px 34px rgba(184, 127, 25, .26);
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.primary-link.large {
    min-height: 52px;
    padding: 0 24px;
    font-size: 16px;
}

.primary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(184, 127, 25, .34);
}

.hero {
    position: relative;
    min-height: clamp(640px, 74vh, 850px);
    display: grid;
    grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
    gap: clamp(28px, 4.5vw, 76px);
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(34px, 5vw, 80px);
    background:
        radial-gradient(circle at 78% 25%, rgba(242, 189, 93, .46), transparent 28%),
        radial-gradient(circle at 18% 12%, rgba(54, 184, 198, .18), transparent 30%),
        linear-gradient(135deg, rgba(255, 252, 246, .92), rgba(255, 247, 232, .78));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px) saturate(1.08);
}

.hero::before,
.hero::after,
.media-section::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    width: 520px;
    height: 520px;
    right: -130px;
    top: -160px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(242, 189, 93, .5), transparent 68%);
}

.hero::after {
    width: 780px;
    height: 180px;
    right: -90px;
    bottom: 70px;
    transform: rotate(-12deg);
    background: linear-gradient(90deg, transparent, rgba(54, 184, 198, .22), transparent);
}

.hero-copy,
.hero-media,
.section,
.proof-row,
.final-cta,
.site-footer {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-head span {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--accent);
    background: rgba(255, 252, 246, 0.76);
    font-size: 13px;
    font-weight: 700;
}

.hero h1 {
    max-width: 620px;
    margin: 20px 0 0;
    font-size: clamp(48px, 5.2vw, 82px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero p {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.hero-actions {
    flex-wrap: wrap;
    margin-top: 30px;
}

.promise-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.promise-row span {
    border: 1px solid rgba(121, 94, 52, 0.16);
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.45;
}

.promise-row b {
    color: var(--text);
}

.hero-media {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(180px, .72fr);
    gap: 14px;
    min-height: clamp(430px, 52vh, 620px);
}

.hero-stack {
    display: grid;
    gap: 14px;
}

.media-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 260px;
    display: grid;
    align-content: end;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 252, 246, 0.76);
    box-shadow: var(--shadow);
    isolation: isolate;
    color: inherit;
    cursor: pointer;
    appearance: none;
    font: inherit;
    text-align: left;
    transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

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

.media-card:focus-visible {
    outline: 3px solid rgba(16, 185, 129, .55);
    outline-offset: 4px;
}

.media-card.image:hover {
    overflow: visible;
    z-index: 40;
}

.media-card.video:hover,
.media-card.video:focus-within {
    overflow: visible;
    z-index: 45;
}

.media-card.hero-card {
    min-height: 100%;
}

.media-card.small {
    min-height: 0;
}

.media-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.005);
    filter: saturate(1.12) contrast(1.07);
    z-index: -2;
}

.media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, .64) 100%);
}

.media-card > span,
.media-card > strong,
.media-card > em {
    position: relative;
    z-index: 2;
}

.media-card > span {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    padding: 7px 11px;
    color: #fff;
    background: rgba(15, 23, 42, .46);
    backdrop-filter: blur(10px) saturate(1.2);
    font-size: 12px;
    font-weight: 700;
}

.media-card > strong {
    max-width: 520px;
    color: #fff;
    font-size: clamp(20px, 2.2vw, 34px);
    line-height: 1.18;
    text-shadow: 0 2px 18px rgba(0,0,0,.46);
}

.media-card.small > strong {
    font-size: 20px;
}

.media-card > em {
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
    font-style: normal;
    line-height: 1.45;
}

.media-card.text-sheet {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, .12), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(246, 248, 252, .96));
}

.media-card.text-sheet .media-main {
    object-fit: contain;
    transform: none;
    padding: 14px;
    background: rgba(255,255,255,.96);
    filter: saturate(1.03) contrast(1.02);
}

.media-card.text-sheet::after {
    background: linear-gradient(180deg, rgba(5, 10, 20, .02) 0%, rgba(5, 10, 20, .12) 56%, rgba(5, 10, 20, .68) 100%);
}

.media-card.text-sheet > strong {
    max-width: 420px;
    font-size: clamp(18px, 1.8vw, 28px);
}

.full-preview {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(88vw, 1120px);
    height: min(82vh, 760px);
    max-width: none;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.96);
    z-index: 90;
    border: 1px solid rgba(184, 127, 42, 0.48);
    border-radius: 18px;
    padding: 10px;
    background: rgba(255, 252, 246, 0.96);
    box-shadow: 0 36px 110px rgba(0, 0, 0, .38);
    transition: opacity .18s var(--ease), transform .18s var(--ease);
}

.media-card.image:hover .full-preview {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hover-video-preview {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(86vw, 720px);
    max-height: min(76vh, 720px);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.96);
    z-index: 90;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 18px;
    background: #020617;
    box-shadow: 0 36px 110px rgba(0, 0, 0, .42);
    transition: opacity .18s var(--ease), transform .18s var(--ease);
}

.media-card.video:hover .hover-video-preview,
.media-card.video:focus-within .hover-video-preview {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255,255,255,.46);
    border-radius: 999px;
    background: rgba(15, 23, 42, .48);
    backdrop-filter: blur(14px) saturate(1.3);
    transform: translate(-50%, -50%);
    box-shadow: 0 16px 42px rgba(0,0,0,.22);
}

.video-play-badge::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 20px;
    border-left: 18px solid rgba(255,255,255,.94);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.media-card.video:hover .video-play-badge,
.media-card.video:focus-within .video-play-badge {
    opacity: .18;
}

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: clamp(16px, 3vw, 42px);
    background: rgba(7, 10, 20, .78);
    backdrop-filter: blur(18px) saturate(1.2);
}

.media-lightbox[hidden] {
    display: none;
}

.media-lightbox-stage {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.media-lightbox-frame {
    width: min(94vw, 1280px);
    max-height: 92vh;
    display: grid;
    justify-items: center;
    gap: 16px;
    margin: 0;
}

.media-lightbox-stage img,
.media-lightbox-stage video {
    max-width: 100%;
    max-height: calc(88vh - 150px);
    object-fit: contain;
    border-radius: 16px;
    background: #020617;
    box-shadow: 0 32px 120px rgba(0,0,0,.45);
}

.media-lightbox-stage video {
    width: min(94vw, 960px);
    aspect-ratio: 16 / 9;
}

.media-lightbox-caption {
    width: min(100%, 1040px);
    display: grid;
    gap: 8px;
    justify-self: center;
    justify-items: center;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 18px;
    padding: 18px 22px 20px;
    color: #111827;
    background: rgba(255, 255, 255, .92);
    text-align: center;
    backdrop-filter: blur(18px) saturate(1.18);
    box-shadow: 0 20px 62px rgba(0,0,0,.34);
}

.media-lightbox-caption span {
    width: fit-content;
    border: 1px solid rgba(184, 127, 25, .24);
    border-radius: 999px;
    padding: 6px 12px;
    color: #855200;
    background: rgba(184, 127, 25, .13);
    font-size: 13px;
    font-weight: 700;
}

.media-lightbox-caption strong {
    color: #111827;
    font-size: clamp(24px, 2.45vw, 36px);
    line-height: 1.15;
}

.media-lightbox-caption em {
    max-width: 760px;
    color: #334155;
    font-size: clamp(15px, 1.4vw, 18px);
    font-style: normal;
    line-height: 1.55;
}

.media-lightbox-close {
    position: fixed;
    right: clamp(18px, 4vw, 46px);
    top: clamp(18px, 4vw, 38px);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    background: rgba(15, 23, 42, .58);
    cursor: pointer;
}

.media-lightbox-close::before,
.media-lightbox-close::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 21px;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.media-lightbox-close::before {
    transform: rotate(45deg);
}

.media-lightbox-close::after {
    transform: rotate(-45deg);
}

body.media-lightbox-open {
    overflow: hidden;
}

.proof-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.proof-row a,
.scene-grid a,
.workflow-grid a,
.ops-grid a,
.final-cta,
.site-footer,
.section {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px) saturate(1.08);
}

.proof-row a,
.scene-grid a,
.workflow-grid a,
.ops-grid a {
    border-radius: 14px;
    transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.proof-row a:hover,
.scene-grid a:hover,
.workflow-grid a:hover,
.ops-grid a:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    background: var(--panel-strong);
}

.proof-row a {
    min-height: 112px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 18px;
}

.proof-row strong {
    font-size: 18px;
    line-height: 1.35;
}

.proof-row span,
.scene-grid span,
.workflow-grid span,
.ops-grid span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.section {
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    border-radius: 22px;
    padding: clamp(24px, 3.4vw, 48px);
}

.media-section::before {
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 47%, rgba(54, 184, 198, .16) 50%, transparent 53% 100%),
        repeating-linear-gradient(90deg, transparent 0 46px, rgba(184, 127, 42, .08) 47px 48px),
        repeating-linear-gradient(0deg, transparent 0 46px, rgba(184, 127, 42, .07) 47px 48px);
    opacity: .42;
    animation: scan 7s linear infinite;
}

@keyframes scan {
    from { transform: translateX(-48px); }
    to { transform: translateX(48px); }
}

.section-head {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin-bottom: 26px;
}

.section-head h2 {
    margin: 14px 0 0;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.22;
    letter-spacing: 0;
}

.section-head p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.showcase-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
    gap: 16px;
    align-items: stretch;
}

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

.showcase-grid .media-card {
    min-height: 260px;
}

.showcase-grid .media-card.wide {
    grid-column: span 2;
}

.scene-grid,
.workflow-grid,
.ops-grid,
.image-wall,
.video-wall {
    display: grid;
    gap: 14px;
}

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

.scene-grid a {
    min-height: 190px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 22px;
}

.scene-grid i,
.workflow-grid b {
    color: var(--faint);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.scene-grid strong,
.workflow-grid strong,
.ops-grid strong {
    font-size: 20px;
    line-height: 1.35;
}

.scene-grid em {
    width: fit-content;
    margin-top: auto;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--accent);
    background: rgba(184, 127, 25, 0.1);
    font-size: 12px;
    font-style: normal;
}

.video-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-wall .media-card {
    min-height: 520px;
}

.video-wall .media-card.wide {
    grid-column: span 2;
}

.image-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-wall .media-card {
    min-height: 280px;
}

.image-wall .media-card.wide {
    grid-column: span 2;
}

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

.workflow-grid a {
    min-height: 170px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 22px;
}

.ops-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ops-grid a {
    min-height: 150px;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 20px;
}

.final-cta {
    flex-wrap: wrap;
    margin-top: 18px;
    border-radius: 22px;
    padding: clamp(26px, 3.5vw, 44px);
}

.final-cta div {
    min-width: 260px;
    flex: 1;
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(26px, 2.8vw, 42px);
    line-height: 1.2;
}

.final-cta p {
    margin: 10px 0 0;
    color: var(--muted);
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: clamp(24px, 4vw, 60px);
    margin-top: 18px;
    border-radius: 22px;
    padding: clamp(28px, 4vw, 52px);
}

.footer-brand .brand {
    margin: 0 0 18px;
}

.footer-brand p {
    max-width: 460px;
    margin: 0;
    color: var(--muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.footer-links h3 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 15px;
}

.footer-links a,
.footer-links span {
    display: block;
    margin: 8px 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-qr-wrap {
    text-align: center;
}

.footer-qr {
    width: 112px;
    height: 112px;
    margin: 0 auto 10px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background:
        linear-gradient(90deg, var(--accent-deep) 12px, transparent 12px) 14px 14px / 28px 28px,
        linear-gradient(var(--accent-deep) 12px, transparent 12px) 14px 14px / 28px 28px,
        radial-gradient(circle at 70% 30%, var(--cyan) 0 5px, transparent 6px),
        rgba(255,255,255,.75);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    color: var(--faint);
    font-size: 12px;
}

.footer-bottom a {
    color: inherit;
    font: inherit;
}

.footer-bottom a:hover {
    color: var(--muted);
}

.empty-media {
    min-height: 280px;
    display: grid;
    place-items: center;
    border: 1px dashed var(--line-strong);
    border-radius: 18px;
    color: var(--muted);
    background: rgba(255,255,255,.54);
    text-align: center;
    padding: 24px;
}

@media (max-width: 1180px) {
    .home-page {
        width: min(calc(100vw - 40px), 1120px);
    }

    .home-nav {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 18px 20px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .hero,
    .showcase-layout,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 520px;
    }

    .proof-row,
    .ops-grid,
    .video-wall,
    .image-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .home-page {
        width: min(calc(100vw - 24px), 760px);
        margin-top: 10px;
    }

    .home-nav {
        position: relative;
        top: 0;
        min-height: 0;
    }

    .brand {
        min-width: 0;
    }

    .brand strong {
        font-size: 18px;
    }

    .nav-actions {
        width: 100%;
        justify-content: space-between;
    }

    .hero {
        min-height: auto;
        padding: 28px 18px;
    }

    .hero h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .hero p {
        font-size: 16px;
    }

    .hero-media,
    .showcase-grid,
    .scene-grid,
    .workflow-grid,
    .video-wall,
    .image-wall,
    .ops-grid,
    .proof-row,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: auto;
    }

    .hero-stack {
        display: none;
    }

    .media-card,
    .video-wall .media-card,
    .image-wall .media-card,
    .showcase-grid .media-card {
        min-height: 340px;
    }

    .media-card.hero-card {
        min-height: 480px;
    }

    .showcase-grid .media-card.wide,
    .video-wall .media-card.wide,
    .image-wall .media-card.wide {
        grid-column: auto;
    }

    .full-preview {
        display: none;
    }

    .hover-video-preview {
        display: none;
    }

    .section,
    .final-cta,
    .site-footer {
        padding: 22px 16px;
    }

    .section-head h2 {
        font-size: 28px;
    }
}

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