:root {
    --ink: #171717;
    --muted: #62645d;
    --paper: #fbfaf4;
    --panel: #ffffff;
    --line: #dedbd0;
    --accent: #0b6f63;
    --accent-dark: #074f47;
    --gold: #efb938;
    --blue: #19456b;
    --soft-blue: #eaf2f6;
    --soft-gold: #fff5d8;
    --error: #b42318;
    --success: #087443;
    --shadow: 0 18px 54px rgba(32, 30, 22, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p,
dl {
    margin-top: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 244, 0.95);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-weight: 900;
    text-decoration: none;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

nav a,
.language-switch,
.button-link {
    min-height: 38px;
    display: grid;
    place-items: center;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fffdf6;
    text-align: center;
    text-decoration: none;
}

.language-switch {
    width: fit-content;
    border-color: var(--accent);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 850;
}

.hero {
    display: grid;
    gap: 24px;
    padding: 24px 16px 38px;
}

.hero-copy {
    display: grid;
    align-content: start;
    gap: 16px;
}

.eyebrow {
    margin: 0;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 0;
    max-width: 820px;
    font-size: 40px;
    line-height: 0.98;
    letter-spacing: 0;
}

.lede {
    margin-bottom: 0;
    max-width: 690px;
    color: var(--muted);
    font-size: 17px;
}

.hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 480px;
}

.button-link {
    min-height: 50px;
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    font-weight: 900;
}

.button-link.secondary {
    background: #fffdf6;
    color: var(--accent-dark);
}

.hours-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 2px;
}

.hours-strip span,
.hours-strip strong,
.status-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 12px;
    background: #fffaf0;
    font-size: 13px;
    text-align: center;
}

.hours-strip strong,
.status-pill {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.proof-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--blue);
    font-weight: 750;
}

.proof-list li {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-left: 4px solid var(--gold);
    background: var(--soft-gold);
}

.order-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.panel-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.panel-heading h2 {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.1;
}

.status-pill {
    width: fit-content;
    font-weight: 850;
}

.order-form {
    display: grid;
    gap: 15px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

input,
select,
textarea,
button {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 7px;
    font: inherit;
}

input,
select,
textarea {
    min-height: 48px;
    padding: 12px;
    background: #fff;
    color: var(--ink);
    font-size: 16px;
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px;
    padding-right: 34px;
}

input[readonly] {
    background: #f3f1e8;
    color: var(--muted);
    cursor: default;
}

textarea {
    resize: vertical;
}

label small,
.form-note {
    color: var(--muted);
    font-weight: 500;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.file-drop {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px dashed #aaa594;
    border-radius: 8px;
    background: #fffdf6;
    cursor: pointer;
}

.file-drop input {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
}

.file-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 60px;
    border-radius: 6px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 900;
    font-size: 13px;
}

.file-drop strong,
.file-drop small {
    display: block;
}

.privacy-row {
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    font-weight: 650;
}

.privacy-row input {
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 2px;
    padding: 0;
    accent-color: var(--accent);
}

.privacy-row a,
.footer-links a {
    color: var(--accent-dark);
    font-weight: 850;
}

button {
    min-height: 54px;
    border: 0;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

button:hover,
.button-link:hover {
    background: var(--accent-dark);
}

.button-link.secondary:hover {
    background: var(--soft-blue);
}

.form-note {
    margin-bottom: 0;
    font-size: 14px;
}

.form-note.compact {
    margin-top: -6px;
    font-size: 13px;
}

.notice {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    padding: 13px 14px;
    border-radius: 7px;
    font-size: 14px;
}

.notice.success {
    background: #e8f7ee;
    color: var(--success);
}

.notice.error {
    background: #fff0ed;
    color: var(--error);
}

.price-summary {
    display: grid;
    gap: 6px;
    margin-bottom: 0;
}

.price-summary div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding-top: 6px;
    border-top: 1px solid rgba(8, 116, 67, 0.18);
}

.price-summary dt {
    font-weight: 750;
}

.price-summary dd {
    margin: 0;
    font-weight: 900;
}

.price-summary .total {
    font-size: 16px;
}

.price-band,
.steps,
.use-cases,
.faq,
.privacy-band {
    padding: 36px 16px;
}

.section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.section-heading.compact {
    margin-bottom: 16px;
}

.section-heading h2,
.use-cases h2 {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.section-heading p {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
}

.price-band {
    background: #f5f0e4;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.price-grid,
.step-grid,
.use-case-grid,
.faq-grid {
    display: grid;
    gap: 14px;
}

.price-card,
.steps article,
.use-cases article,
details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
}

.price-card h3,
.steps article h3,
details summary {
    color: var(--ink);
    font-weight: 900;
}

.price-card h3 {
    margin-bottom: 12px;
}

.price-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
}

.price-card > p:first-of-type {
    color: var(--blue);
    font-size: 24px;
    font-weight: 900;
}

.delivery-card {
    background: var(--soft-blue);
}

.contact-card {
    background: var(--soft-gold);
}

.steps article span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    font-weight: 900;
}

.steps article p,
details p,
.use-cases article p {
    color: var(--muted);
    margin-bottom: 0;
}

.use-cases {
    display: grid;
    gap: 16px;
}

.use-cases h2 {
    margin-bottom: 0;
}

.use-cases article {
    min-height: 112px;
    display: grid;
    align-items: end;
    background: #fffdf6;
}

.use-case-detail-block {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.use-case-detail-block h3 {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.18;
}

.use-case-detail-grid {
    display: grid;
    gap: 18px;
}

.use-case-detail-grid article {
    display: block;
    align-items: start;
    min-height: 0;
    padding: 20px;
    background: #fff;
}

.use-case-detail-grid h4 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.24;
}

summary {
    cursor: pointer;
}

details p {
    padding-top: 12px;
}

.privacy-band {
    background: var(--blue);
    color: #fff;
}

.privacy-band .eyebrow,
.privacy-band p {
    color: #fff;
}

.privacy-band p {
    max-width: 860px;
    margin-bottom: 0;
}

.legal-page {
    display: grid;
    gap: 0;
}

.legal-hero {
    display: grid;
    gap: 16px;
    padding: 28px 16px 30px;
}

.legal-hero h1 {
    font-size: 38px;
}

.legal-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 520px;
}

.legal-meta {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 800;
}

.legal-document {
    margin: 0 16px 36px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.pdf-frame {
    display: block;
    width: 100%;
    min-height: 580px;
    height: min(92vh, 920px);
    border: 0;
}

.legal-text {
    margin: 0;
    color: var(--ink);
    font: inherit;
    line-height: 1.62;
    white-space: pre-wrap;
}

.site-footer {
    display: grid;
    gap: 8px;
    padding: 24px 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.site-footer p {
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

@media (min-width: 560px) {
    .site-header {
        padding: 16px 24px;
    }

    .hero,
    .price-band,
    .steps,
    .use-cases,
    .faq,
    .privacy-band,
    .legal-hero {
        padding-left: 24px;
        padding-right: 24px;
    }

    .legal-document {
        margin-left: 24px;
        margin-right: 24px;
    }

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

    .hours-strip {
        grid-template-columns: repeat(3, max-content);
    }

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

@media (min-width: 760px) {
    .site-header {
        grid-template-columns: auto minmax(420px, 520px) auto;
        align-items: center;
        padding: 16px clamp(32px, 5vw, 72px);
    }

    nav a {
        border: 0;
        background: transparent;
    }

    .hero {
        padding: 46px clamp(32px, 5vw, 72px) 58px;
    }

    h1 {
        font-size: clamp(52px, 7vw, 82px);
    }

    .lede {
        font-size: 20px;
    }

    .order-panel {
        max-width: 620px;
    }

    .panel-heading {
        grid-template-columns: 1fr auto;
        align-items: start;
    }

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

    .delivery-card,
    .contact-card {
        grid-column: span 1;
    }

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

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

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

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

    .price-band,
    .steps,
    .use-cases,
    .faq,
    .privacy-band,
    .legal-hero {
        padding: 56px clamp(32px, 5vw, 72px);
    }

    .section-heading h2,
    .use-cases h2 {
        font-size: 40px;
    }

    .legal-hero h1 {
        font-size: clamp(48px, 6vw, 72px);
    }

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

    .legal-document {
        margin: 0 clamp(32px, 5vw, 72px) 56px;
        padding: 30px;
    }

    .site-footer {
        grid-template-columns: repeat(3, auto);
        justify-content: space-between;
        gap: 24px;
        padding: 28px clamp(32px, 5vw, 72px);
    }
}

@media (min-width: 1040px) {
    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
        gap: clamp(42px, 6vw, 76px);
        align-items: start;
    }

    .hero-copy {
        padding-top: 32px;
    }
}
