:root {
    --commercial-ink: #16130d;
    --commercial-muted: #6d6558;
    --commercial-soft: #f6f1e8;
    --commercial-paper: #fffaf0;
    --commercial-line: rgba(22, 19, 13, 0.14);
    --commercial-brass: #b8872f;
    --commercial-green: #2f6d54;
    --commercial-red: #9d3e2d;
    --commercial-shadow: 0 24px 80px rgba(22, 19, 13, 0.14);
}

body.commercial {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(246, 241, 232, 0.96)),
        radial-gradient(circle at 20% 10%, rgba(184, 135, 47, 0.10), transparent 32%),
        #f6f1e8;
    color: var(--commercial-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.commercial-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.commercial-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.commercial-brand {
    color: var(--commercial-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.commercial-nav__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.commercial-nav__links a,
.commercial-footer a {
    color: var(--commercial-muted);
    text-decoration: none;
    font-size: 0.92rem;
}

.commercial-nav__links a:hover,
.commercial-footer a:hover {
    color: var(--commercial-ink);
}

.commercial-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid var(--commercial-line);
    border-radius: 999px;
    color: var(--commercial-muted);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.commercial-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    gap: 44px;
    align-items: stretch;
    padding: 56px 0 72px;
}

.commercial-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.commercial-hero h1 {
    max-width: 760px;
    margin: 22px 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 8vw, 6.8rem);
    line-height: 0.9;
    letter-spacing: 0;
}

.commercial-lede {
    max-width: 670px;
    margin: 0 0 28px;
    color: var(--commercial-muted);
    font-size: clamp(1.02rem, 1.6vw, 1.28rem);
    line-height: 1.65;
}

.commercial-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.commercial-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--commercial-ink);
    border-radius: 6px;
    background: var(--commercial-ink);
    color: #fffaf0;
    font: inherit;
    font-weight: 760;
    text-decoration: none;
    cursor: pointer;
}

.commercial-button:hover {
    transform: translateY(-1px);
}

.commercial-button:disabled {
    cursor: not-allowed;
    opacity: 0.56;
    transform: none;
}

.commercial-button--secondary {
    background: transparent;
    color: var(--commercial-ink);
}

.commercial-button--quiet {
    border-color: var(--commercial-line);
    background: rgba(255, 255, 255, 0.48);
    color: var(--commercial-ink);
}

.commercial-card {
    border: 1px solid var(--commercial-line);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.84);
    box-shadow: var(--commercial-shadow);
}

.commercial-offer-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 26px;
}

.commercial-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 24px 0 6px;
}

.commercial-price strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    line-height: 1;
}

.commercial-price span {
    color: var(--commercial-muted);
    font-weight: 700;
}

.commercial-offer-card h2,
.commercial-section h2,
.commercial-form-card h1,
.commercial-status h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.commercial-offer-card p {
    color: var(--commercial-muted);
    line-height: 1.55;
}

.commercial-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 24px 0;
    list-style: none;
}

.commercial-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    color: var(--commercial-muted);
    line-height: 1.45;
}

.commercial-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--commercial-brass);
}

.commercial-note {
    margin: 16px 0 0;
    color: var(--commercial-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.commercial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0 64px;
}

.commercial-mini-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--commercial-line);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.58);
}

.commercial-mini-card span {
    color: var(--commercial-brass);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.commercial-mini-card h3 {
    margin: 10px 0 8px;
    font-size: 1.08rem;
}

.commercial-mini-card p {
    margin: 0;
    color: var(--commercial-muted);
    line-height: 1.55;
}

.commercial-section {
    padding: 46px 0;
    border-top: 1px solid var(--commercial-line);
}

.commercial-section__head {
    display: grid;
    grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 24px;
}

.commercial-section__head p,
.commercial-legal p,
.commercial-legal li {
    color: var(--commercial-muted);
    line-height: 1.68;
}

.commercial-form-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 32px;
    align-items: start;
    padding: 44px 0 70px;
}

.commercial-form-card {
    padding: 28px;
}

.commercial-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.commercial-field {
    display: grid;
    gap: 7px;
}

.commercial-field span {
    color: var(--commercial-ink);
    font-size: 0.84rem;
    font-weight: 760;
}

.commercial-field input,
.commercial-field textarea,
.commercial-field select {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--commercial-line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--commercial-ink);
    font: inherit;
    line-height: 1.4;
    padding: 12px 13px;
}

.commercial-field textarea {
    min-height: 96px;
    resize: vertical;
}

.commercial-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.commercial-check {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--commercial-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.commercial-check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.commercial-form-status {
    min-height: 24px;
    color: var(--commercial-muted);
    line-height: 1.5;
}

.commercial-form-status[data-state="error"] {
    color: var(--commercial-red);
}

.commercial-form-status[data-state="success"] {
    color: var(--commercial-green);
}

.commercial-status {
    display: grid;
    gap: 18px;
    max-width: 760px;
    margin: 76px auto;
    padding: 34px;
    text-align: left;
}

.commercial-status p {
    margin: 0;
    color: var(--commercial-muted);
    line-height: 1.65;
}

.commercial-legal {
    max-width: 880px;
    padding: 46px 0 72px;
}

.commercial-legal h1 {
    margin: 20px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    line-height: 0.95;
}

.commercial-legal h2 {
    margin: 34px 0 10px;
    font-size: 1.1rem;
}

.commercial-legal ul {
    padding-left: 20px;
}

.commercial-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 38px;
    border-top: 1px solid var(--commercial-line);
    color: var(--commercial-muted);
}

.commercial-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
}

.commercial-order-form {
    display: grid;
    gap: 12px;
    max-width: 520px;
    margin-top: 28px;
}

.commercial-order-form .commercial-field {
    position: relative;
}

.commercial-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--commercial-paper);
    border: 1px solid var(--commercial-line);
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: var(--commercial-shadow);
    max-height: 260px;
    overflow-y: auto;
}

.commercial-suggestions__item {
    padding: 10px 13px;
    color: var(--commercial-ink);
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.4;
}

.commercial-suggestions__item:hover {
    background: rgba(184, 135, 47, 0.10);
}

.commercial-teaser {
    margin-bottom: 24px;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid rgba(47, 109, 84, 0.25);
    background: rgba(47, 109, 84, 0.08);
    max-width: 520px;
}

.teaser-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.teaser-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--commercial-green);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.teaser-message {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.5;
    color: var(--commercial-ink);
}

.teaser-message strong {
    color: var(--commercial-green);
}

.hidden {
    display: none !important;
}

@media (max-width: 900px) {
    .commercial-hero,
    .commercial-form-wrap,
    .commercial-section__head {
        grid-template-columns: 1fr;
    }

    .commercial-grid {
        grid-template-columns: 1fr;
    }

    .commercial-form-grid {
        grid-template-columns: 1fr;
    }

    .commercial-nav,
    .commercial-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .commercial-footer__links,
    .commercial-nav__links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .commercial-shell {
        width: min(1180px, calc(100% - 22px));
    }

    .commercial-hero {
        padding-top: 28px;
    }

    .commercial-offer-card,
    .commercial-form-card,
    .commercial-status {
        padding: 20px;
    }

    .commercial-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .commercial-button {
        width: 100%;
    }
}

/* ─────────────────────────────────────────────────────────────
   Order page — editorial layer on top of the commercial base.
   Scoped to .order-page / order-* classes so the shared
   commercial-* classes used by the other pages stay untouched.
   ───────────────────────────────────────────────────────────── */

/* Editorial kicker — replaces the generic pill on this page */
.order-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--commercial-brass);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.order-kicker--muted {
    color: var(--commercial-muted);
}

/* Hero — page-scale headline rather than billboard-scale */
.order-page .order-hero {
    align-items: center;
    padding: 40px 0 60px;
}

.order-page .order-hero__title {
    max-width: 16ch;
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5.2vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.order-hero__lede {
    margin-bottom: 26px;
}

.order-hero__note {
    max-width: 520px;
}

/* Deliverable card — reads like a receipt, not a pricing tier */
.order-page .order-receipt {
    padding: 30px 28px;
    background: var(--commercial-paper);
}

.order-receipt__price {
    flex-wrap: wrap;
    margin: 18px 0 4px;
}

.order-receipt__price strong {
    white-space: nowrap;
}

.order-receipt__list {
    margin: 22px 0 24px;
}

.order-receipt__assure {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-top: 20px;
    border-top: 1px solid var(--commercial-line);
}

.order-receipt__assure span {
    position: relative;
    padding-left: 24px;
    color: var(--commercial-ink);
    font-size: 0.9rem;
    font-weight: 650;
}

.order-receipt__assure span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -7px;
    border: 2px solid var(--commercial-brass);
    border-radius: 50%;
}

/* Map preview — the "see what you're buying" screen + video slot */
.order-preview {
    padding: 18px 0 8px;
}

.order-preview__head {
    max-width: 680px;
    margin: 0 0 26px;
}

.order-preview__title {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.order-preview__lede {
    max-width: 620px;
    margin: 0;
    color: var(--commercial-muted);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.6;
}

.order-preview__frame {
    margin: 0;
    border: 1px solid var(--commercial-line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--commercial-paper);
    box-shadow: var(--commercial-shadow);
}

/* Ready for the real clip — fills the frame when dropped in */
.order-preview__video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #14110a;
}

/* Placeholder map-screen shown until the video exists */
.order-preview__placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 44%, rgba(184, 135, 47, 0.18), transparent 62%),
        #14110a;
}

.order-preview__grid {
    position: absolute;
    inset: -12%;
    background-image:
        linear-gradient(rgba(214, 196, 168, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214, 196, 168, 0.10) 1px, transparent 1px);
    background-size: 46px 46px;
    transform: perspective(720px) rotateX(34deg) scale(1.45);
    transform-origin: center 72%;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 34%, transparent 78%);
            mask-image: radial-gradient(ellipse at 50% 50%, #000 34%, transparent 78%);
}

.order-preview__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 5px 11px;
    border: 1px solid rgba(214, 196, 168, 0.32);
    border-radius: 999px;
    color: rgba(246, 241, 232, 0.82);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.order-preview__play {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1.5px solid var(--commercial-brass);
    border-radius: 50%;
}

.order-preview__play-glyph {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid var(--commercial-brass);
}

.order-preview__caption {
    padding: 14px 20px 16px;
    color: var(--commercial-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Process — editorial numbered steps (replaces the 01/02/03 cards) */
.order-process {
    margin-top: 56px;
    padding: 54px 0 8px;
    border-top: 1px solid var(--commercial-line);
}

.order-process__intro {
    margin-bottom: 26px;
}

.order-process__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.order-process__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--commercial-line);
}

.order-process__step {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 24px;
    align-items: start;
    padding: 26px 0;
    border-bottom: 1px solid var(--commercial-line);
}

.order-process__num {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    line-height: 1;
    color: var(--commercial-brass);
}

.order-process__step h3 {
    margin: 4px 0 8px;
    font-size: 1.18rem;
}

.order-process__step p {
    max-width: 60ch;
    margin: 0;
    color: var(--commercial-muted);
    line-height: 1.6;
}

.order-process__signals {
    max-width: 720px;
    margin: 30px 0 0;
    color: var(--commercial-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.order-process__signals strong {
    color: var(--commercial-ink);
    font-weight: 700;
}

@media (max-width: 900px) {
    .order-process__step {
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }

    .order-process__num {
        font-size: 2.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .order-preview__grid {
        transform: none;
    }
}
