:root {
    --ink: #15252d;
    --ink-soft: #41545e;
    --navy: #123746;
    --teal: #176477;
    --teal-dark: #104b5a;
    --orange: #b74410;
    --orange-dark: #8f330c;
    --cream: #f5f1e8;
    --paper: #ffffff;
    --surface: #f6f8f7;
    --line: #dbe3e3;
    --success: #22734b;
    --warning: #9b551f;
    --shadow-sm: 0 8px 24px rgba(21, 37, 45, 0.08);
    --shadow-lg: 0 20px 55px rgba(18, 55, 70, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --content: 1160px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

main {
    flex: 1;
}

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

a {
    color: var(--teal);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--teal-dark);
}

button, input, textarea, select {
    font: inherit;
}

button {
    color: inherit;
}

h1, h2, h3 {
    margin: 0;
    color: var(--ink);
    font-family: "Arial Narrow", "Roboto Condensed", Inter, ui-sans-serif, sans-serif;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.45rem, 6vw, 4.8rem);
}

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

h3 {
    font-size: 1.18rem;
    letter-spacing: -0.01em;
}

p, ul, ol, dl {
    margin-top: 0;
}

p:last-child, ul:last-child, ol:last-child, dl:last-child {
    margin-bottom: 0;
}

[id] {
    scroll-margin-top: 100px;
}

.container {
    width: min(var(--content), calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    width: min(780px, 100%);
}

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

.clipboard-buffer {
    position: fixed;
    left: -9999px;
    top: 0;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--ink);
    color: white;
}

.skip-link:focus {
    top: 14px;
}

:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px var(--teal-dark);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(219, 227, 227, 0.95);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

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

.brand-mark {
    position: relative;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 7px solid var(--ink);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px var(--orange);
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    transform: translate(-50%, -50%);
}

.brand-name {
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: #314650;
    font-size: 0.93rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--teal-dark);
    background: #eaf2f3;
}

.site-nav .nav-cta {
    margin-left: 6px;
    padding-inline: 18px;
    color: white;
    background: var(--orange);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
    color: white;
    background: var(--orange-dark);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-lines {
    position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Shared layout */
.section {
    padding: 88px 0;
}

.section-compact {
    padding: 62px 0;
}

.section-white {
    background: var(--paper);
}

.section-dark {
    color: #e8f0f2;
    background: var(--navy);
}

.section-dark h2,
.section-dark h3 {
    color: white;
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-head p {
    margin: 14px 0 0;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.section-dark .section-head p {
    color: #c6d5da;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 3px;
    border-radius: 99px;
    background: var(--orange);
}

.lead {
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.muted {
    color: var(--ink-soft);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.button-row.center {
    justify-content: center;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: white;
    background: var(--orange);
    box-shadow: 0 10px 24px rgba(230, 107, 47, 0.24);
}

.button-primary:hover {
    color: white;
    background: var(--orange-dark);
}

.button-secondary {
    color: var(--ink);
    border-color: #b9c7c9;
    background: white;
}

.button-secondary:hover {
    color: var(--ink);
    background: #edf3f3;
}

.button-quiet {
    min-height: 42px;
    padding-inline: 16px;
    color: var(--teal-dark);
    border-color: #b9c7c9;
    background: transparent;
}

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

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

.card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: var(--ink-soft);
}

.card-link {
    display: inline-flex;
    margin-top: 14px;
    font-weight: 750;
}

.icon-box {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 12px;
    color: var(--teal-dark);
    background: #e8f2f3;
    font-weight: 850;
}

.check-list,
.plain-list {
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin: 9px 0;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: 900;
}

.notice {
    padding: 20px 22px;
    border: 1px solid #f1c8ae;
    border-left: 5px solid var(--orange);
    border-radius: var(--radius-sm);
    background: #fff8f2;
    color: #59321f;
}

.notice strong {
    color: #402216;
}

.disclosure {
    padding: 18px 20px;
    border: 1px solid #bed5d9;
    border-radius: var(--radius-sm);
    background: #edf7f8;
    color: #214c56;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 72px;
    background:
        radial-gradient(circle at 86% 16%, rgba(230, 107, 47, 0.16) 0 3px, transparent 4px 100%),
        linear-gradient(135deg, #f8f3e9 0%, #f6f8f7 62%, #e8f2f3 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -190px;
    width: 470px;
    height: 470px;
    border: 74px solid rgba(18, 55, 70, 0.07);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(36px, 7vw, 86px);
    align-items: center;
}

.hero-copy {
    max-width: 720px;
}

.hero-copy h1 {
    max-width: 760px;
}

.hero-copy .lead {
    max-width: 680px;
    margin: 22px 0 0;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.hero-points li {
    padding: 7px 12px;
    border: 1px solid rgba(23, 100, 119, 0.22);
    border-radius: 999px;
    color: #274b55;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 650;
}

.quote-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-lg);
    color: #e6eff2;
    background: var(--navy);
    box-shadow: var(--shadow-lg);
}

.quote-card::before {
    content: "";
    position: absolute;
    right: 24px;
    top: 24px;
    width: 38px;
    height: 38px;
    border: 8px solid rgba(230, 107, 47, 0.9);
    border-radius: 50%;
}

.quote-card h2 {
    max-width: 80%;
    color: white;
    font-size: 1.6rem;
}

.quote-card > p {
    margin: 10px 0 22px;
    color: #c7d7dc;
}

.quote-lines {
    display: grid;
    gap: 10px;
    margin: 0;
}

.quote-lines div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.quote-lines dt {
    color: #c9d8dc;
}

.quote-lines dd {
    margin: 0;
    color: white;
    font-weight: 750;
    text-align: right;
}

.quote-card-note {
    margin-top: 20px;
    padding: 13px 15px;
    border-radius: var(--radius-sm);
    color: #ffe2d3;
    background: rgba(230, 107, 47, 0.15);
    font-size: 0.9rem;
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    color: white;
    background: var(--navy);
}

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

.trust-item {
    padding: 24px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.trust-item strong {
    display: block;
    color: white;
}

.trust-item span {
    color: #bed0d5;
    font-size: 0.9rem;
}

/* Interior pages */
.page-hero {
    padding: 70px 0 58px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(120deg, #f8f3e9, #eef5f5 70%),
        white;
}

.page-hero .lead {
    max-width: 760px;
    margin: 18px 0 0;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
}

.fact {
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
}

.fact:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.fact dt {
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fact dd {
    margin: 5px 0 0;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step {
    counter-increment: step;
    position: relative;
    padding: 24px;
    border-top: 4px solid var(--teal);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.step::before {
    content: counter(step);
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 50%;
    color: white;
    background: var(--teal);
    font-weight: 850;
}

.step p {
    color: var(--ink-soft);
}

.service-area-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 34px;
    border-radius: var(--radius-lg);
    color: #e8f0f2;
    background:
        radial-gradient(circle at 92% 25%, rgba(230, 107, 47, 0.3) 0 4px, transparent 5px 100%),
        var(--navy);
}

.service-area-panel h2 {
    color: white;
}

.service-area-panel p {
    max-width: 720px;
    margin: 12px 0 0;
    color: #c4d3d8;
}

.table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
}

.data-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.data-table caption {
    padding: 18px 20px;
    color: var(--ink);
    font-weight: 800;
    text-align: left;
}

.data-table th,
.data-table td {
    padding: 15px 20px;
    border-top: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.data-table th {
    width: 31%;
    color: var(--ink);
    background: #f1f5f5;
}

.data-table td {
    color: var(--ink-soft);
}

.sidewall {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 14px 0;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    color: white;
    background: var(--ink);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 750;
    letter-spacing: 0.04em;
}

/* FAQ */
.faq-stack {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: white;
    box-shadow: 0 4px 14px rgba(21, 37, 45, 0.04);
}

.faq-item summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
    color: var(--ink);
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--teal-dark);
    background: #e8f2f3;
    font-size: 1.15rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px 18px;
    color: var(--ink-soft);
}

/* Contact form */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    gap: 30px;
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 14px;
}

.contact-method {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
}

.contact-method span {
    display: block;
    margin-bottom: 5px;
    color: var(--ink-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-method a {
    font-weight: 750;
    overflow-wrap: anywhere;
}

.contact-form {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.contact-form h2 {
    font-size: 1.7rem;
}

.required-note {
    margin: 8px 0 22px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #b9c7c9;
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: white;
}

.form-group textarea {
    min-height: 145px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
}

.form-help,
.form-status {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.form-status {
    min-height: 1.5em;
    margin: 14px 0 0;
}

/* Legal and errors */
.legal {
    padding: 70px 0 88px;
}

.legal h1 {
    font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.legal h2 {
    margin-top: 36px;
    font-size: 1.5rem;
}

.legal h3 {
    margin-top: 24px;
}

.legal p,
.legal li {
    color: var(--ink-soft);
}

.legal ul {
    padding-left: 22px;
}

.updated {
    display: inline-block;
    margin: 14px 0 26px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--teal-dark);
    background: #e8f2f3;
    font-size: 0.82rem;
    font-weight: 750;
}

.error-page {
    min-height: 65vh;
    display: grid;
    place-items: center;
    padding: 70px 0;
    text-align: center;
}

.error-code {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--orange-dark);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* CTA */
.cta-band {
    padding: 56px 0;
    color: white;
    background: var(--teal-dark);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner h2 {
    color: white;
    font-size: clamp(1.7rem, 4vw, 2.65rem);
}

.cta-inner p {
    max-width: 680px;
    margin: 10px 0 0;
    color: #cde0e4;
}

/* Footer */
.site-footer {
    padding: 58px 0 26px;
    color: #c6d4d8;
    background: #0f2934;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr 1fr;
    gap: 34px;
}

.footer-title {
    margin-bottom: 14px;
    color: white;
    font-size: 0.96rem;
    letter-spacing: 0;
}

.footer-brand p {
    max-width: 330px;
}

.site-footer address {
    font-style: normal;
}

.site-footer a {
    color: #d8e8eb;
}

.site-footer ul {
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin: 7px 0;
}

.site-footer p {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9fb3b9;
    font-size: 0.84rem;
}

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

    .quote-card {
        max-width: 680px;
    }

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

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

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

@media (max-width: 860px) {
    .nav-shell {
        position: relative;
        min-height: 68px;
    }

    .site-nav {
        width: 100%;
        flex-wrap: wrap;
        padding-bottom: 14px;
    }

    .site-nav a {
        min-height: 44px;
    }

    .js .nav-toggle {
        display: inline-flex;
    }

    .js .nav-shell {
        flex-wrap: wrap;
    }

    .js .site-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 68px;
        padding: 12px 20px 18px;
        border-bottom: 1px solid var(--line);
        background: white;
        box-shadow: var(--shadow-sm);
    }

    .js .site-nav.is-open {
        display: grid;
    }

    .js .site-nav a,
    .js .site-nav .nav-cta {
        width: 100%;
        margin: 0;
        justify-content: flex-start;
        border-radius: var(--radius-sm);
    }

    .service-area-panel,
    .cta-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--content));
    }

    .section {
        padding: 64px 0;
    }

    .section-compact {
        padding: 48px 0;
    }

    .hero {
        padding: 64px 0 54px;
    }

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

    .button-row,
    .button-row .button {
        width: 100%;
    }

    .trust-items,
    .card-grid,
    .card-grid.two,
    .steps,
    .fact-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

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

    .fact:nth-child(odd) {
        border-right: 0;
    }

    .quote-card,
    .contact-form,
    .card,
    .service-area-panel {
        padding: 22px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

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

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

@media print {
    .site-header,
    .site-footer,
    .cta-band,
    .button-row,
    .nav-toggle {
        display: none !important;
    }

    body {
        color: black;
        background: white;
    }

    .section,
    .legal {
        padding: 24px 0;
    }
}
