:root {
    --ml-ink: #263238;
    --ml-muted: #607080;
    --ml-line: #dfe5ea;
    --ml-line-soft: #edf2f4;
    --ml-bg: #f5f7f9;
    --ml-surface: #ffffff;
    --ml-sidebar: #0c5994;
    --ml-accent: #1f7a5f;
    --ml-accent-dark: #17634d;
    --ml-accent-soft: #e7f3ef;
    --ml-warning: #b7791f;
    --ml-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ml-ink);
    background: var(--ml-bg);
    font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
}
a { color: var(--ml-accent); text-decoration: none; }
a:hover { color: var(--ml-accent-dark); }
main {
    width: 100%;
    overflow-x: hidden;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 4rem;
    padding: 0.75rem clamp(1rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--ml-line);
    box-shadow: var(--ml-shadow);
    backdrop-filter: blur(10px);
}
.brand { color: var(--ml-ink); font-weight: 800; font-size: 1.1rem; }
.nav { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.nav a { color: var(--ml-muted); font-weight: 700; font-size: 0.94rem; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.65rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.3rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
}
.button-primary { color: #fff; background: var(--ml-accent); }
.button-primary:hover { color: #fff; background: var(--ml-accent-dark); }
.button-secondary { color: var(--ml-ink); background: #fff; border-color: var(--ml-line); }
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    min-height: calc(100vh - 4rem);
    padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 5rem);
    background: linear-gradient(180deg, #fff 0%, var(--ml-bg) 100%);
}
.hero h1 { margin: 0; color: var(--ml-ink); font-size: clamp(3rem, 8vw, 6rem); line-height: 0.95; }
.lead { max-width: 44rem; color: var(--ml-muted); font-size: clamp(1.12rem, 2vw, 1.35rem); }
.eyebrow { margin: 0 0 0.6rem; color: var(--ml-accent); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.hero-panel, .feature-card, .price-card, .tool-card, .workflow, .cta {
    background: var(--ml-surface);
    border: 1px solid var(--ml-line);
    border-radius: 0.35rem;
    box-shadow: var(--ml-shadow);
}
.hero-panel { padding: 1rem; }
.panel-bar { display: flex; gap: 0.35rem; padding-bottom: 1rem; border-bottom: 1px solid var(--ml-line-soft); }
.panel-bar span { width: 0.7rem; height: 0.7rem; background: var(--ml-line); border-radius: 50%; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 1rem 0; }
.metric-grid div { padding: 0.8rem; background: var(--ml-accent-soft); border-radius: 0.25rem; }
.metric-grid strong { display: block; font-size: 1.5rem; }
.metric-grid span { color: var(--ml-muted); font-size: 0.82rem; font-weight: 700; }
.work-list { display: grid; gap: 0.6rem; }
.work-list div { display: grid; grid-template-columns: auto 1fr auto; gap: 0.7rem; align-items: center; padding: 0.8rem; border: 1px solid var(--ml-line-soft); border-radius: 0.25rem; }
.work-list span { color: var(--ml-muted); }
.work-list em { color: var(--ml-warning); font-style: normal; font-weight: 800; }
.page-hero,
.section {
    width: min(100%, 76rem);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 6vw, 5rem);
}
.page-hero {
    padding-top: clamp(3rem, 8vw, 6rem);
    padding-bottom: clamp(2rem, 5vw, 4rem);
    background: linear-gradient(180deg, #fff 0%, var(--ml-bg) 100%);
}
.page-hero h1 {
    max-width: 58rem;
    margin: 0;
    font-size: clamp(2.35rem, 6vw, 4.75rem);
    line-height: 0.98;
}
.page-hero .lead,
.page-hero p:not(.eyebrow) {
    max-width: 46rem;
}
.legal {
    min-height: calc(100vh - 10rem);
}
.section-tight {
    padding-top: 0;
}
.section-head { max-width: 48rem; margin-bottom: 1.5rem; }
.section h2, .workflow h2, .cta h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; }
.section-copy {
    max-width: 44rem;
    color: var(--ml-muted);
}
.section-copy code {
    color: var(--ml-ink);
    background: var(--ml-line-soft);
    border: 1px solid var(--ml-line);
    border-radius: 0.25rem;
    padding: 0.1rem 0.3rem;
    font-size: 0.92em;
}
.feature-grid, .pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.feature-card, .price-card { display: flex; flex-direction: column; padding: 1.25rem; }
.feature-card h2, .feature-card h3, .price-card h2, .price-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; line-height: 1.2; }
.feature-card p, .price-card p { color: var(--ml-muted); }
.feature-card p:last-child, .price-card p:last-child { margin-bottom: 0; }
.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.tool-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 15rem;
    padding: 1.25rem;
}
.tool-card h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    line-height: 1.1;
}
.tool-card p:not(.tool-status) {
    color: var(--ml-muted);
}
.tool-card .button {
    align-self: flex-start;
}
.tool-status {
    margin: 0 0 0.75rem;
    color: var(--ml-accent-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}
.calculator-form,
.calculator-results {
    display: grid;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--ml-surface);
    border: 1px solid var(--ml-line);
    border-radius: 0.35rem;
    box-shadow: var(--ml-shadow);
}
.calculator-form label {
    display: grid;
    gap: 0.4rem;
}
.calculator-form label span {
    font-size: 0.9rem;
    font-weight: 800;
}
.calculator-form input,
.calculator-form select,
.calculator-form textarea {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.7rem 0.8rem;
    color: var(--ml-ink);
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: 0.3rem;
    font: inherit;
}
.calculator-form textarea {
    resize: vertical;
}
.calculator-form input:focus,
.calculator-form select:focus,
.calculator-form textarea:focus {
    outline: 3px solid rgba(31, 122, 95, 0.2);
    border-color: var(--ml-accent);
}
.calculator-form em {
    color: #9b2c2c;
    font-style: normal;
    font-weight: 700;
}
.tool-honeypot {
    display: none;
}
.tool-security-captcha {
    padding: 1rem;
    background: var(--ml-bg);
    border: 1px solid var(--ml-line-soft);
    border-radius: 0.3rem;
}
.calculator-results {
    position: sticky;
    top: 5.5rem;
}
.calculator-results h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.1;
}
.calculator-results p:not(.eyebrow) {
    color: var(--ml-muted);
}
.result-row {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    background: var(--ml-bg);
    border: 1px solid var(--ml-line-soft);
    border-radius: 0.3rem;
}
.result-row span {
    color: var(--ml-muted);
    font-weight: 800;
}
.result-row strong {
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.result-highlight {
    background: var(--ml-accent-soft);
    border-color: rgba(31, 122, 95, 0.25);
}
.result-highlight strong {
    color: var(--ml-accent-dark);
}
.checklist-item-fields {
    display: grid;
    gap: 0.75rem;
}
.checklist-item-fields em {
    color: #9b2c2c;
    font-style: normal;
    font-weight: 700;
}
.inspection-cta .qr-code,
.checklist-head .qr-code {
    width: 8.75rem;
    height: 8.75rem;
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: 0.25rem;
}
.generated-checklist {
    padding: clamp(1.25rem, 3vw, 2rem);
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: 0.35rem;
    box-shadow: var(--ml-shadow);
}
.checklist-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.checklist-head h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.05;
}
.checklist-table {
    width: 100%;
    border-collapse: collapse;
}
.checklist-table th,
.checklist-table td {
    padding: 0.8rem;
    border: 1px solid var(--ml-line);
    text-align: left;
    vertical-align: top;
}
.checklist-table th {
    color: var(--ml-muted);
    background: var(--ml-bg);
    font-size: 0.85rem;
    text-transform: uppercase;
}
.checklist-table td:nth-child(2),
.checklist-table td:nth-child(3) {
    width: 5rem;
}
.signature-line {
    display: grid;
    gap: 2.5rem;
    margin-top: 2rem;
}
.signature-line span {
    display: block;
    width: min(100%, 28rem);
    border-bottom: 1px solid var(--ml-ink);
}
.template-subhead {
    margin: 1.75rem 0 0;
}
.maintenance-log-table th {
    width: 14rem;
}
.blank-log-row td {
    height: 2.75rem;
}
.schedule-table td:first-child,
.schedule-table th:first-child {
    width: 5rem;
}
.work-order-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.work-order-summary div {
    padding: 1rem;
    background: var(--ml-bg);
    border: 1px solid var(--ml-line);
    border-radius: 0.3rem;
}
.work-order-summary span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--ml-muted);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}
.work-order-summary strong {
    font-size: clamp(1.25rem, 3vw, 1.7rem);
}
.tool-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    color: #fff;
    background: var(--ml-ink);
    border-radius: 0.35rem;
}
.tool-cta-strip h2 {
    margin: 0;
    font-size: clamp(1.3rem, 3vw, 2rem);
}
.checklist-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}
.checklist-actions form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.gallery-section {
    padding-top: 0;
}
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.screenshot-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 0;
}
.screenshot-frame {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: 0.35rem;
    box-shadow: var(--ml-shadow);
    cursor: zoom-in;
}
.screenshot-frame:focus-visible {
    outline: 3px solid var(--ml-accent);
    outline-offset: 3px;
}
.screenshot-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.screenshot-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    color: var(--ml-muted);
    background:
        linear-gradient(var(--ml-line-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--ml-line-soft) 1px, transparent 1px),
        #fff;
    background-size: 1.25rem 1.25rem;
    text-align: center;
}
.screenshot-placeholder span {
    max-width: 100%;
    padding: 0.45rem 0.65rem;
    overflow-wrap: anywhere;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--ml-line);
    border-radius: 0.25rem;
    font-weight: 800;
}
.screenshot-card figcaption {
    display: grid;
    gap: 0.25rem;
}
.screenshot-card strong {
    font-size: 1.05rem;
    line-height: 1.2;
}
.screenshot-card span {
    color: var(--ml-muted);
}
.scroll-gallery-section {
    padding-top: 0;
}
.scroll-gallery {
    display: grid;
    grid-auto-columns: minmax(18rem, 28rem);
    grid-auto-flow: column;
    gap: 1rem;
    margin-inline: calc(clamp(1rem, 6vw, 5rem) * -1);
    padding: 0 clamp(1rem, 6vw, 5rem) 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--ml-accent) var(--ml-line-soft);
}
.scroll-gallery-card {
    scroll-snap-align: start;
}
.scroll-gallery-card .screenshot-frame {
    aspect-ratio: 16 / 9;
}
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(10, 22, 32, 0.86);
}
.gallery-lightbox[hidden] {
    display: none;
}
.gallery-lightbox-inner {
    display: grid;
    place-items: center;
    width: min(100%, 78rem);
    max-height: 88vh;
}
.gallery-lightbox img {
    max-width: 100%;
    max-height: 88vh;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.35rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.35);
}
.gallery-lightbox img {
    display: block;
    object-fit: contain;
    background: #fff;
}
.gallery-lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 101;
    display: inline-grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.3rem;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
}
.gallery-lightbox-close:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}
.workflow {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: 2rem;
    margin: 0 clamp(1rem, 6vw, 5rem);
    padding: clamp(1.5rem, 4vw, 3rem);
}
.workflow p { color: var(--ml-muted); }
.steps { display: grid; gap: 0.75rem; margin: 0; padding-left: 1.25rem; }
.steps li { padding: 0.75rem; background: var(--ml-bg); border: 1px solid var(--ml-line-soft); border-radius: 0.25rem; font-weight: 800; }
.price { margin: 1rem 0; color: var(--ml-muted); }
.price span { color: var(--ml-ink); font-size: 2rem; font-weight: 900; }
.price-card ul { margin-bottom: 1.25rem; }
.price-card .button { margin-top: auto; width: 100%; }
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}
.contact-summary h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
}
.contact-summary p:not(.eyebrow) {
    color: var(--ml-muted);
}
.contact-form {
    display: grid;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--ml-surface);
    border: 1px solid var(--ml-line);
    border-radius: 0.35rem;
    box-shadow: var(--ml-shadow);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.contact-form label {
    display: grid;
    gap: 0.4rem;
}
.contact-form label span {
    font-size: 0.9rem;
    font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.7rem 0.8rem;
    color: var(--ml-ink);
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: 0.3rem;
    font: inherit;
}
.contact-form textarea {
    min-height: 10rem;
    resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(31, 122, 95, 0.2);
    border-color: var(--ml-accent);
}
.contact-form [aria-invalid="true"] {
    background: #fffafa;
    border-color: #d88a8a;
}
.contact-form [aria-invalid="true"]:focus {
    outline-color: rgba(155, 44, 44, 0.18);
    border-color: #b94a4a;
}
.contact-form em {
    color: #9b2c2c;
    font-style: normal;
    font-weight: 700;
}
.form-alert {
    padding: 0.85rem 1rem;
    border-radius: 0.3rem;
    font-weight: 800;
}
.form-alert-success {
    color: var(--ml-accent-dark);
    background: var(--ml-accent-soft);
    border: 1px solid rgba(31, 122, 95, 0.25);
}
.form-alert-warning {
    color: #8a5a12;
    background: #fffbeb;
    border: 1px solid #f6d98b;
}
.form-alert-error {
    color: #9b2c2c;
    background: #fff5f5;
    border: 1px solid #fed7d7;
}
.contact-status-section {
    padding-top: 0;
    padding-bottom: 1rem;
}
.form-hp {
    position: absolute;
    left: -9999px;
}
.blog-feature,
.blog-sidebar,
.blog-card,
.article-shell {
    background: var(--ml-surface);
    border: 1px solid var(--ml-line);
    border-radius: 0.35rem;
    box-shadow: var(--ml-shadow);
}
.blog-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
}
.blog-feature h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.08;
}
.blog-feature p,
.blog-card p,
.article-body p,
.article-body li {
    color: var(--ml-muted);
}
.blog-meta {
    margin: 0 0 0.5rem;
    color: var(--ml-muted);
    font-size: 0.9rem;
    font-weight: 800;
}
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.blog-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.65rem;
    color: var(--ml-accent-dark);
    background: var(--ml-accent-soft);
    border: 1px solid rgba(31, 122, 95, 0.18);
    border-radius: 0.25rem;
    font-size: 0.88rem;
    font-weight: 800;
}
.blog-tags.stacked {
    align-items: flex-start;
    flex-direction: column;
}
.blog-layout {
    display: grid;
    grid-template-columns: minmax(13rem, 0.32fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}
.blog-sidebar,
.blog-card {
    padding: 1.25rem;
}
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.blog-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    line-height: 1.2;
}
.article-shell {
    width: auto;
    max-width: 54rem;
    margin: clamp(2rem, 5vw, 4rem) max(clamp(1rem, 5vw, 4rem), calc((100% - 54rem) / 2));
    padding: clamp(1.5rem, 4vw, 3rem);
}
.article-header {
    max-width: 46rem;
    margin: 0 auto;
    padding-inline: clamp(1rem, 3vw, 2rem);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--ml-line);
}
.article-header h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
}
.article-body {
    max-width: 46rem;
    margin: 0 auto;
    padding-inline: clamp(1rem, 3vw, 2rem);
    padding-top: 1.5rem;
}
.article-body h2 {
    margin: 2rem 0 0.75rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.1;
}
.article-body p,
.article-body li {
    font-size: 1.05rem;
}
ul { padding-left: 1.15rem; }
li { margin-bottom: 0.45rem; }
.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 clamp(1rem, 6vw, 5rem) clamp(3rem, 6vw, 5rem);
    padding: clamp(1.5rem, 4vw, 3rem);
}
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem clamp(1rem, 6vw, 5rem);
    color: var(--ml-muted);
    border-top: 1px solid var(--ml-line);
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
@media (max-width: 860px) {
    .site-header { align-items: stretch; flex-direction: column; }
    .nav { width: 100%; margin-left: 0; overflow-x: auto; padding-bottom: 0.25rem; }
    .site-header .button { width: 100%; }
    .hero, .workflow, .cta, .contact-layout, .form-grid, .blog-layout, .calculator-layout { grid-template-columns: 1fr; }
    .feature-grid, .pricing-grid, .screenshot-grid, .blog-card-grid, .tool-grid { grid-template-columns: 1fr; }
    .blog-feature { align-items: flex-start; flex-direction: column; }
    .calculator-results { position: static; }
    .checklist-head { flex-direction: column; }
    .work-order-summary { grid-template-columns: 1fr; }
    .tool-cta-strip { align-items: flex-start; flex-direction: column; }
    .cta { align-items: flex-start; flex-direction: column; }
    .site-footer { flex-direction: column; }
}
@media (max-width: 560px) {
    .hero {
        min-height: auto;
    }
    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.5rem, 16vw, 3.4rem);
    }
    .metric-grid {
        grid-template-columns: 1fr;
    }
    .work-list div {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    .button {
        width: 100%;
        white-space: normal;
    }
    .hero-actions {
        width: 100%;
    }
    .hero-actions .button {
        flex: 1 1 100%;
    }
    .site-footer {
        align-items: flex-start;
    }
    .article-shell {
        width: calc(100% - 2rem);
    }
}
@media print {
    .site-header,
    .site-footer,
    .page-hero,
    .calculator-layout,
    .checklist-actions {
        display: none;
    }
    body {
        background: #fff;
    }
    .section {
        width: 100%;
        padding: 0;
    }
    .generated-checklist {
        border: 0;
        box-shadow: none;
    }
}
