:root {
    --bg: #151515;
    --bg-2: #1d1d1b;
    --panel: rgba(255, 255, 255, 0.055);
    --panel-strong: rgba(255, 255, 255, 0.09);
    --ink: #f6f1e4;
    --muted: #bdb8aa;
    --soft: #817c70;
    --gold: #d6b74b;
    --gold-2: #a47b24;
    --line: rgba(214, 183, 75, 0.24);
    --white-line: rgba(255, 255, 255, 0.13);
    --shadow: 0 32px 110px rgba(0, 0, 0, 0.48);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(115deg, rgba(214, 183, 75, 0.09), transparent 26rem),
        linear-gradient(180deg, #111 0%, var(--bg) 44%, #0e0e0d 100%);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
}

body::after {
    content: "";
    position: fixed;
    inset: auto -10vw -18rem auto;
    z-index: -1;
    width: 58vw;
    height: 58vw;
    border: 1px solid rgba(214, 183, 75, 0.18);
    transform: rotate(18deg);
    opacity: 0.55;
}

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

img {
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.75rem clamp(1rem, 4vw, 4rem);
    border-bottom: 1px solid rgba(214, 183, 75, 0.16);
    background: rgba(18, 18, 17, 0.78);
    backdrop-filter: blur(20px);
}

.brand,
nav {
    display: flex;
    align-items: center;
}

.brand {
    gap: 0.85rem;
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.brand-mark {
    width: 3.35rem;
    height: 3rem;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.brand-mark img {
    width: 4.7rem;
    max-width: none;
}

nav {
    gap: clamp(0.9rem, 2vw, 2rem);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

nav a {
    position: relative;
    padding: 0.55rem 0;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.35rem;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms var(--ease);
}

nav a:hover {
    color: var(--gold);
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero {
    position: relative;
    min-height: 78vh;
    display: grid;
    grid-template-columns: minmax(30rem, 0.95fr) minmax(26rem, 0.9fr);
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
    padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1rem, 5vw, 5rem);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 5.5rem auto auto clamp(1rem, 5vw, 5rem);
    width: min(34rem, 52vw);
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    animation: lineSweep 3.8s var(--ease) infinite;
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 40rem;
    transition: transform 220ms ease-out;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 600;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--gold);
    font-weight: 600;
    line-height: 0.98;
}

h1 {
    max-width: 100%;
    font-size: clamp(4.4rem, 8.2vw, 7.8rem);
    letter-spacing: 0;
    overflow-wrap: normal;
}

h2 {
    font-size: clamp(3rem, 6vw, 6rem);
}

h3 {
    font-size: clamp(1.55rem, 2.35vw, 2.3rem);
}

.hero-text {
    margin: 1.4rem 0 2rem;
    max-width: 37rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.hero-actions,
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.78rem 1.3rem;
    border: 1px solid var(--line);
    font-weight: 800;
    transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: translateX(-120%);
    transition: transform 620ms var(--ease);
}

.button:hover {
    transform: translateY(-2px);
    border-color: rgba(214, 183, 75, 0.55);
}

.button:hover::after {
    transform: translateX(120%);
}

.button.primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #111;
    border-color: transparent;
}

.button.ghost {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.035);
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: clamp(2rem, 5vw, 4rem);
}

.metric-strip span {
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
    font-size: 0.84rem;
}

.metric-strip strong {
    display: block;
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.hero-visual {
    position: relative;
    justify-self: end;
    width: min(100%, 54rem);
    min-height: clamp(28rem, 48vw, 40rem);
    transition: transform 220ms ease-out;
}

.hero-media,
.image-panel,
.product-showcase {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--white-line);
    background-color: #141413;
    background-size: cover;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.hero-media {
    height: 100%;
    min-height: inherit;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.38)), url("../images/hero-factory.png");
    background-position: center;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    animation: imageFloat 8s ease-in-out infinite;
}

.hero-media::after,
.image-panel::after,
.product-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 45%, transparent 58%);
    transform: translateX(-140%);
    animation: glassSweep 7s var(--ease) infinite;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    right: clamp(0.5rem, 4vw, 3rem);
    bottom: clamp(1rem, 4vw, 3rem);
    z-index: 2;
    max-width: 17rem;
    padding: 1rem;
    border: 1px solid rgba(214, 183, 75, 0.35);
    background: rgba(15, 15, 14, 0.76);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
}

.floating-card span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.floating-card strong {
    display: block;
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    line-height: 1.05;
}

.section {
    position: relative;
    padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
    border-bottom: 1px solid var(--line);
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: clamp(1rem, 5vw, 5rem);
    width: min(9rem, 28vw);
    height: 1px;
    background: var(--gold);
}

.profile-section,
.split-section,
.products-layout {
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
}

.profile-section {
    grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
}

.profile-grid {
    display: grid;
    gap: 1rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
}

.profile-grid p,
.statement p,
.sector-grid p,
.product-list p,
.why-grid p {
    margin: 0;
}

.split-section {
    grid-template-columns: minmax(18rem, 1fr) minmax(18rem, 0.92fr);
    align-items: center;
}

.image-panel {
    min-height: clamp(29rem, 55vw, 43rem);
}

.process-panel {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2)), url("../images/lab-process.png");
    background-position: center;
}

.scan-line {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(214, 183, 75, 0.95), transparent);
    animation: scan 5.2s var(--ease) infinite;
}

.text-panel {
    display: grid;
    gap: 1.5rem;
}

.statement {
    position: relative;
    padding: 1.05rem 1.1rem;
    border-left: 2px solid var(--gold);
    background: linear-gradient(90deg, rgba(214, 183, 75, 0.08), transparent);
}

.statement strong,
.why-grid strong {
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.statement p,
.sector-grid p,
.product-list p,
.why-grid p {
    color: var(--muted);
}

.section-heading {
    max-width: 58rem;
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

.sector-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.sector-grid article,
.product-list > div,
.why-grid p {
    position: relative;
    min-height: 13rem;
    padding: 1.35rem;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(214, 183, 75, 0.085), transparent 42%),
        var(--panel);
    transition: transform 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
}

.sector-grid article:hover,
.product-list > div:hover,
.why-grid p:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 183, 75, 0.58);
    background:
        linear-gradient(135deg, rgba(214, 183, 75, 0.14), transparent 42%),
        var(--panel-strong);
}

.sector-grid span {
    display: block;
    margin-bottom: 2.3rem;
    color: rgba(214, 183, 75, 0.7);
    font-weight: 800;
}

.products-section {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(214, 183, 75, 0.08), transparent 28rem),
        var(--bg-2);
}

.products-layout {
    grid-template-columns: minmax(22rem, 1.08fr) minmax(18rem, 0.92fr);
    align-items: stretch;
}

.product-showcase {
    min-height: clamp(25rem, 44vw, 37rem);
    background-image: url("../images/private-label.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 112% auto;
}

.product-glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(214, 183, 75, 0.12));
    pointer-events: none;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.why-grid p {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.contact-section {
    position: relative;
    display: grid;
    place-items: center;
    gap: 2rem;
    padding: clamp(4.5rem, 8vw, 8rem) 1rem;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(214, 183, 75, 0.1), transparent 32rem),
        #151514;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 12% 10% auto 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.contact-section img {
    width: min(19rem, 72vw);
    filter: drop-shadow(0 22px 55px rgba(0, 0, 0, 0.5));
}

.contact-grid {
    justify-content: center;
}

.contact-grid a {
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    color: var(--gold);
    background: var(--panel);
    font-weight: 800;
    transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.contact-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 183, 75, 0.6);
    background: var(--panel-strong);
}

.site-footer {
    padding: 1.35rem 1rem;
    border-top: 1px solid var(--line);
    background: #10100f;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: var(--soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.site-footer a {
    color: var(--gold);
    transition: color 220ms var(--ease);
}

.site-footer a:hover {
    color: var(--ink);
}

.reveal,
.sector-grid article,
.product-list > div,
.why-grid p {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible,
.sector-grid article.is-visible,
.product-list > div.is-visible,
.why-grid p.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes lineSweep {
    0%,
    100% {
        opacity: 0.28;
        transform: scaleX(0.35);
        transform-origin: left;
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left;
    }
}

@keyframes imageFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.015);
    }
}

@keyframes glassSweep {
    0%,
    58% {
        transform: translateX(-140%);
    }
    100% {
        transform: translateX(140%);
    }
}

@keyframes scan {
    0%,
    100% {
        transform: translateX(0);
        opacity: 0;
    }
    12%,
    82% {
        opacity: 0.78;
    }
    50% {
        transform: translateX(42rem);
    }
}

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

@media (max-width: 1240px) {
    .hero {
        grid-template-columns: minmax(24rem, 0.95fr) minmax(22rem, 0.86fr);
        gap: clamp(2rem, 5vw, 4rem);
    }

    h1 {
        font-size: clamp(4rem, 7.5vw, 6.5rem);
    }

    .hero-visual {
        width: min(100%, 44rem);
        min-height: clamp(28rem, 52vw, 38rem);
    }
}

@media (max-width: 980px) {
    .hero,
    .profile-section,
    .split-section,
    .products-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual {
        min-height: 34rem;
    }

    .sector-grid,
    .why-grid,
    .product-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    html,
    body {
        overflow-x: hidden;
    }

    body {
        background:
            linear-gradient(155deg, rgba(214, 183, 75, 0.13), transparent 18rem),
            linear-gradient(180deg, #111 0%, #171716 48%, #0d0d0c 100%);
    }

    body::before {
        background-size: 42px 42px;
        opacity: 0.22;
    }

    body::after {
        width: 18rem;
        height: 18rem;
        inset: auto -8rem -8rem auto;
    }

    .site-header {
        position: sticky;
        align-items: stretch;
        flex-direction: column;
        gap: 0.7rem;
        padding: 0.7rem 1rem 0.75rem;
        background: rgba(15, 15, 14, 0.9);
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    }

    .brand {
        gap: 0.65rem;
        font-size: 1.25rem;
    }

    .brand-mark {
        width: 2.5rem;
        height: 2.25rem;
    }

    .brand-mark img {
        width: 3.6rem;
    }

    nav {
        width: 100%;
        gap: 0.45rem;
        overflow-x: auto;
        padding: 0.1rem 0 0.2rem;
        scrollbar-width: none;
    }

    nav::-webkit-scrollbar {
        display: none;
    }

    nav a {
        flex: 0 0 auto;
        padding: 0.55rem 0.8rem;
        border: 1px solid rgba(214, 183, 75, 0.18);
        background: rgba(255, 255, 255, 0.035);
        color: rgba(246, 241, 228, 0.78);
        font-size: 0.8rem;
        line-height: 1;
    }

    nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        gap: 1.35rem;
        align-items: start;
        padding: 2rem 1rem 3rem;
        overflow: clip;
        scroll-margin-top: 7.25rem;
    }

    .hero::before {
        inset: 1.8rem auto auto 1rem;
        width: min(15rem, 72vw);
    }

    .hero-copy {
        width: 100%;
        max-width: calc(100vw - 2rem);
        max-width: none;
        padding-top: 1.2rem;
        transform: none !important;
    }

    .eyebrow {
        margin-bottom: 0.55rem;
        font-size: clamp(1rem, 5vw, 1.22rem);
        line-height: 1.15;
    }

    h1 {
        font-size: clamp(3.2rem, 14vw, 4.15rem);
        line-height: 0.95;
    }

    h2 {
        max-width: 100%;
        font-size: clamp(2.15rem, 10.5vw, 3rem);
        line-height: 1;
        text-wrap: balance;
    }

    h3 {
        font-size: clamp(1.5rem, 8vw, 2rem);
        line-height: 1;
    }

    .hero-text {
        margin: 0.95rem 0 1.25rem;
        max-width: 22rem;
        font-size: 1rem;
        line-height: 1.75;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .button {
        width: 100%;
        min-height: 3.35rem;
        padding: 0.85rem 1rem;
    }

    .button.ghost {
        background: rgba(214, 183, 75, 0.055);
    }

    .metric-strip {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, calc((100vw - 2.9rem) / 3))) !important;
        gap: 0.45rem;
        width: 100%;
        max-width: 100%;
        margin: 1rem 0 0;
        padding: 0;
        overflow: hidden;
    }

    .metric-strip::-webkit-scrollbar {
        display: none;
    }

    .metric-strip span {
        min-width: 0;
        min-height: 4.35rem;
        padding: 0.62rem 0.55rem;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(214, 183, 75, 0.11), rgba(255, 255, 255, 0.035));
        box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .metric-strip strong {
        font-size: 1.2rem;
    }

    .hero-visual {
        width: 100%;
        min-height: 18rem;
        margin-top: 0.15rem;
        transform: none !important;
    }

    .hero-media {
        min-height: 18rem;
        clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
        background-position: 58% center;
        box-shadow: 0 24px 75px rgba(0, 0, 0, 0.46);
    }

    .hero-media::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.48)),
            radial-gradient(circle at 18% 18%, rgba(214, 183, 75, 0.18), transparent 38%);
        pointer-events: none;
    }

    .floating-card {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        display: block;
        max-width: none;
        padding: 0.8rem 0.9rem;
        background: rgba(12, 12, 11, 0.82);
    }

    .floating-card span {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .floating-card strong {
        margin-top: 0.1rem;
        max-width: none;
        font-size: 1.18rem;
        text-align: left;
    }

    .section {
        padding: 3.4rem 1rem;
        overflow: hidden;
    }

    .section::before {
        left: 1rem;
        width: 5.5rem;
    }

    .profile-section,
    .split-section,
    .products-layout {
        gap: 1.45rem;
    }

    .profile-grid {
        gap: 0.85rem;
        font-size: 1rem;
        line-height: 1.75;
    }

    .image-panel {
        min-height: 22rem;
        border-color: rgba(214, 183, 75, 0.22);
        box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
    }

    .process-panel {
        background-position: center;
    }

    .text-panel {
        gap: 1rem;
    }

    .statement {
        padding: 0.95rem;
        background:
            linear-gradient(135deg, rgba(214, 183, 75, 0.11), transparent 50%),
            rgba(255, 255, 255, 0.035);
    }

    .statement strong,
    .why-grid strong {
        font-size: 1.35rem;
    }

    .section-heading {
        margin-bottom: 1.5rem;
    }

    .sector-grid,
    .why-grid,
    .product-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .product-showcase {
        min-height: 16.5rem;
        background-size: auto 78%;
        background-position: center;
        background-color: #181817;
        box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
    }

    .products-section {
        background:
            linear-gradient(180deg, rgba(214, 183, 75, 0.08), transparent 17rem),
            #181817;
    }

    .sector-grid article,
    .product-list > div,
    .why-grid p {
        min-height: auto;
        padding: 1rem;
        background:
            linear-gradient(135deg, rgba(214, 183, 75, 0.1), transparent 48%),
            rgba(255, 255, 255, 0.04);
    }

    .sector-grid span {
        margin-bottom: 1.35rem;
        font-size: 0.82rem;
    }

    .contact-section {
        gap: 1.4rem;
        padding: 3.8rem 1rem;
    }

    .contact-section img {
        width: min(14rem, 70vw);
    }

    .contact-grid {
        display: grid;
        width: 100%;
        max-width: 22rem;
        gap: 0.65rem;
    }

    .contact-grid a {
        width: 100%;
        padding: 0.9rem 0.8rem;
    }

    .site-footer {
        padding: 1.1rem 1rem;
    }

    .site-footer p {
        font-size: 0.82rem;
    }
}

@media (max-width: 390px) {
    .brand {
        font-size: 1.12rem;
    }

    h1 {
        font-size: clamp(2.95rem, 13.5vw, 3.45rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 2.55rem);
    }

    .hero {
        padding-top: 1.6rem;
    }

    .hero-media {
        min-height: 16.5rem;
    }

    .floating-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-card strong {
        max-width: none;
        text-align: left;
    }
}
