/* Polysand 2026 modernization layer */
:root {
    --ink: #121b2d;
    --ink-soft: #263247;
    --paper: #ffffff;
    --mist: #f4f6f8;
    --mist-blue: #eef2f6;
    --line: #dfe4ea;
    --muted: #647084;
    --accent: #a84b32;
    --accent-dark: #843823;
    --brand: #a84b32;
    --success: #186446;
    --radius-sm: 0.5rem;
    --radius-md: 0.85rem;
    --radius-lg: 1.25rem;
    --shadow-soft: 0 18px 50px rgba(18, 27, 45, 0.1);
    --shadow-card: 0 8px 28px rgba(18, 27, 45, 0.08);
    --content-width: 1280px;
}

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

body {
    color: var(--ink);
    background: var(--paper);
}

body.menu-open {
    overflow: hidden;
}

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

:focus-visible {
    outline: 3px solid #d97757;
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    color: white;
    background: var(--ink);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    max-width: var(--content-width);
}

#main-header {
    min-height: 76px;
    display: flex;
    align-items: center;
    padding: 0.65rem 0;
    background: rgba(14, 20, 32, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#main-header > .container {
    width: 100%;
}

#main-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 28px rgba(18, 27, 45, 0.08);
}

.logo {
    letter-spacing: -0.025em;
}

.desktop-nav ul {
    align-items: center;
}

.nav-link {
    position: relative;
    font-size: 0.78rem;
    letter-spacing: 0.075em;
}

.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.5rem;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover::before,
.nav-link:focus-visible::before,
.nav-link[aria-current="page"]::before {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    color: var(--ink) !important;
    background: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

#main-header.scrolled .nav-cta {
    color: white !important;
    background: var(--ink);
}

.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    color: inherit;
    background: transparent;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

#main-header.scrolled .menu-toggle:hover {
    background: var(--mist);
}

.mobile-menu {
    padding: 6.5rem 1.25rem 2rem;
    justify-content: flex-start;
    overflow-y: auto;
    background:
        radial-gradient(circle at top right, rgba(168, 75, 50, 0.22), transparent 35%),
        #101827;
}

.mobile-nav-link {
    width: min(100%, 560px);
    margin: 0;
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: clamp(1.35rem, 5vw, 2rem);
    text-align: left;
}

.mobile-sub-link {
    padding-left: 1rem;
    font-size: 1rem;
}

.mobile-sample-link {
    margin-top: 1.25rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid white;
    border-radius: 999px;
    text-align: center;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-align: center;
}

.btn-primary,
.btn-dark {
    color: white;
    background: var(--ink);
    border-color: var(--ink);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-dark:hover,
.btn-dark:focus-visible {
    color: white;
    background: var(--ink-soft);
    border-color: var(--ink-soft);
}

.btn-secondary {
    color: var(--ink);
    background: white;
    border: 1px solid var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    color: var(--ink);
    background: var(--mist);
    border-color: #c5ccd5;
}

.btn-light {
    color: var(--ink);
    background: white;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.breadcrumbs {
    padding: 6.25rem 0 0;
    background: transparent;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 0.8rem;
}

.breadcrumbs li + li::before {
    content: "/";
    margin-right: 0.5rem;
    color: #9aa3af;
}

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

.page-header {
    margin-bottom: 0;
    padding: 7.5rem 0 3.25rem;
    background:
        radial-gradient(circle at 80% 20%, rgba(168, 75, 50, 0.08), transparent 30%),
        var(--mist);
}

.page-header h1 {
    letter-spacing: -0.04em;
}

.page-header .section-text {
    max-width: 720px;
}

.hero-picture,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-picture {
    z-index: -2;
    overflow: hidden;
}

.hero-picture img {
    width: 100%;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover;
}

.hero-overlay {
    z-index: -1;
    background: linear-gradient(90deg, rgba(7, 12, 20, 0.9) 0%, rgba(7, 12, 20, 0.58) 52%, rgba(7, 12, 20, 0.28) 100%);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-content {
    padding: 4rem 0 6rem;
}

.product-hero {
    padding: 5.75rem 0 0;
    background: var(--paper);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    min-height: 600px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.product-hero-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--mist-blue);
}

.product-hero-media img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.product-hero-media.contain img {
    padding: clamp(2rem, 6vw, 5rem);
    object-fit: contain;
}

.product-hero-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    pointer-events: none;
    background: linear-gradient(transparent, rgba(10, 16, 26, 0.35));
}

.product-hero-caption {
    position: absolute;
    z-index: 1;
    left: 1.5rem;
    bottom: 1.25rem;
    margin: 0;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.product-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.25rem, 4vw, 4rem);
}

.product-hero-copy h1 {
    max-width: 650px;
    margin-bottom: 1.25rem;
    color: var(--ink);
    font-size: clamp(2.4rem, 4.25vw, 4rem);
    line-height: 1;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.product-hero-lead {
    max-width: 590px;
    margin: 0 0 1.75rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.product-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 1rem 0 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--mist);
}

.proof-item {
    padding: 1rem;
    border-right: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.78rem;
    text-align: center;
}

.proof-item:last-child {
    border-right: 0;
}

.proof-item strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--ink);
    font-size: 0.86rem;
}

.content-section {
    padding: 5rem 0;
}

.content-section.is-muted {
    background: var(--mist);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.content-copy {
    max-width: 680px;
}

.content-copy h2,
.section-heading h2 {
    margin-bottom: 1.25rem;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -0.04em;
}

.content-copy p {
    color: var(--muted);
    line-height: 1.75;
}

.slate-overview-section {
    overflow: hidden;
}

.slate-overview {
    width: 100%;
    align-self: stretch;
    display: grid;
    gap: clamp(2.5rem, 5vw, 4.5rem);
}

.slate-overview-header {
    max-width: 920px;
}

.slate-overview-header h2 {
    margin-bottom: 1rem;
    color: var(--ink);
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.slate-overview-header p:last-child {
    max-width: 740px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.content-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.content-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.content-image--fit img {
    object-fit: contain;
}

.slate-profile-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 3vw, 2.75rem);
}

.slate-profile-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.slate-profile-visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
}

.slate-profile-copy {
    max-width: 820px;
}

.slate-profile-copy .eyebrow {
    margin-bottom: 0.75rem;
}

.slate-profile-copy h3 {
    margin: 0 0 1rem;
    color: var(--ink);
    font-size: clamp(2rem, 3.25vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.slate-profile-copy p {
    color: var(--muted);
    line-height: 1.75;
}

.slate-profile-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
}

.slate-profile-stats div {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: white;
}

.slate-profile-stats strong,
.slate-profile-stats span {
    display: block;
}

.slate-profile-stats strong {
    color: var(--ink);
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.slate-profile-stats span {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section-heading p {
    color: var(--muted);
}

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

.benefit-card,
.document-card,
.sample-detail-card {
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: 0 4px 18px rgba(18, 27, 45, 0.04);
}

.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), rgba(168, 75, 50, 0.22));
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: var(--ink);
    border-radius: 1rem;
    background: rgba(168, 75, 50, 0.1);
}

.benefit-icon--canada {
    color: var(--brand);
}

.benefit-icon img,
.benefit-icon svg {
    width: 1.45rem;
    height: 1.45rem;
}

.benefit-card h3,
.document-card h3,
.sample-detail-card h3 {
    margin-bottom: 0.6rem;
    color: var(--ink);
    font-size: 1.05rem;
}

.benefit-card p,
.document-card p,
.sample-detail-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.color-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
}

.color-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.color-card div {
    padding: 1rem;
}

.color-card h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.color-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.sample-cta {
    padding: 5rem 0;
    color: white;
    background:
        radial-gradient(circle at 80% 20%, rgba(168, 75, 50, 0.5), transparent 35%),
        var(--ink);
}

.sample-cta-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2rem;
    align-items: center;
}

.sample-cta h2 {
    margin-bottom: 0.75rem;
    color: white;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
}

.sample-cta p {
    max-width: 700px;
    margin: 0;
    color: #d5dbe4;
}

.sample-cta-actions {
    display: flex;
    justify-content: flex-end;
}

.form-shell {
    padding: 7.5rem 0 6rem;
    background:
        radial-gradient(circle at 90% 5%, rgba(168, 75, 50, 0.11), transparent 25%),
        var(--mist);
}

.form-intro {
    max-width: 790px;
    margin-bottom: 2.5rem;
}

.form-intro h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.6rem, 6vw, 5rem);
    letter-spacing: -0.055em;
}

.form-intro p {
    color: var(--muted);
    font-size: 1.05rem;
}

.eligibility-note {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 1.75rem 0 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--line);
}

.eligibility-note div {
    padding: 1rem;
    color: var(--muted);
    background: white;
    font-size: 0.8rem;
}

.eligibility-note strong {
    display: block;
    color: var(--ink);
}

.sample-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1.5rem;
    align-items: start;
}

.sample-form,
.sample-sidebar {
    padding: clamp(1.4rem, 4vw, 2.5rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-card);
}

.sample-sidebar {
    position: sticky;
    top: 6.5rem;
}

.form-section + .form-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.form-section h2 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.form-field {
    min-width: 0;
}

.form-field.is-full {
    grid-column: 1 / -1;
}

.color-field {
    padding: 0;
    border: 0;
    margin: 0;
}

.form-field label,
.form-field legend {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    border: 1px solid #cdd3dc;
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: white;
    font: inherit;
}

.form-field textarea {
    min-height: 130px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(18, 27, 45, 0.08);
    outline: 0;
}

.field-hint,
.field-error {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
}

.field-hint {
    color: var(--muted);
}

.field-error {
    color: #a52b25;
    font-weight: 600;
}

[aria-invalid="true"] {
    border-color: #b93832 !important;
}

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

.color-choice {
    display: flex !important;
    align-items: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    border: 1px solid #cdd3dc;
    border-radius: var(--radius-sm);
    margin: 0 !important;
    background: #fff;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.color-choice:hover,
.color-choice:has(input:checked) {
    border-color: var(--ink);
    background: #f8fafc;
    box-shadow: 0 0 0 3px rgba(18, 27, 45, 0.05);
}

.color-choice input {
    width: 1.05rem;
    min-height: 1.05rem;
    margin: 0;
    accent-color: var(--ink);
}

.color-choice span {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 650;
}

.checkbox-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
}

.checkbox-row input {
    width: 1.1rem;
    min-height: 1.1rem;
    margin-top: 0.2rem;
}

.privacy-note {
    color: var(--muted);
    font-size: 0.78rem;
}

.success-panel {
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.success-mark {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    color: white;
    background: var(--success);
    font-size: 2rem;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.specs-table--sectioned {
    background: white;
    box-shadow: var(--shadow-soft);
}

.specs-table--sectioned th {
    padding: 0.9rem 1.25rem;
    color: white;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-weight: 800;
}

.specs-table--sectioned .spec-section-row td {
    padding: 1rem 1.25rem;
    color: var(--ink);
    background: linear-gradient(135deg, #eef4f9, #f8fbfd);
    border-top: 2px solid #cfdbe6;
    border-bottom: 1px solid #dbe5ee;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.specs-table--sectioned .spec-section-row:first-child td {
    border-top: 0;
}

.specs-table--sectioned td:first-child {
    width: 42%;
}

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

.document-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.document-card img {
    width: 42px;
    height: 42px;
}

.document-card a {
    color: var(--ink);
    font-weight: 700;
}

.site-footer {
    margin-top: 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: white;
}

.footer-socials a {
    width: auto;
    min-width: 36px;
    padding: 0 0.65rem;
    font-size: 0.75rem;
}

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

    .menu-toggle {
        display: inline-flex;
    }

    .product-hero-grid {
        grid-template-columns: 1fr;
    }

    .product-hero-media {
        min-height: 450px;
    }

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

    .sample-sidebar {
        position: static;
    }
}

@media (max-width: 820px) {
    .page-header {
        padding: 6.5rem 0 2.5rem !important;
    }

    .page-content {
        padding: 2.5rem 0 4rem;
    }

    .content-grid,
    .sample-cta-grid {
        grid-template-columns: 1fr;
    }

    .slate-profile-feature {
        grid-template-columns: 1fr;
    }

    .slate-profile-visual img {
        width: 100%;
        margin-left: 0;
    }

    .slate-profile-copy {
        max-width: 620px;
    }

    .sample-cta-actions {
        justify-content: flex-start;
    }

    .proof-strip,
    .eligibility-note {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-item:nth-child(2) {
        border-right: 0;
    }

    .proof-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

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

@media (max-width: 560px) {
    html {
        font-size: 16px;
    }

    #main-header {
        min-height: 68px;
    }

    .container {
        padding-right: 1.1rem;
        padding-left: 1.1rem;
    }

    .product-hero {
        padding-top: 4.75rem;
    }

    .hero-picture img {
        object-position: 60% center;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

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

    .product-hero-grid {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .product-hero-media {
        min-height: 310px;
    }

    .product-hero-media.contain img {
        padding: 1.5rem;
    }

    .product-hero-copy {
        padding: 2rem 1.1rem 2.4rem;
    }

    .product-hero-copy h1 {
        font-size: clamp(2.25rem, 13vw, 3.6rem);
    }

    .product-hero-actions,
    .sample-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-hero-actions .btn,
    .sample-cta-actions .btn {
        width: 100%;
    }

    .proof-strip,
    .eligibility-note,
    .benefit-grid,
    .documents-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .slate-profile-stats {
        grid-template-columns: 1fr;
    }

    .proof-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-item:last-child {
        border-bottom: 0;
    }

    .form-field.is-full {
        grid-column: auto;
    }

    .form-shell {
        padding-top: 6rem;
    }

    .sample-form,
    .sample-sidebar {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }
}

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

    .gallery-track {
        animation: none !important;
    }
}
