* {
    box-sizing: border-box;
}

:root {
    --ink: #1c211c;
    --muted: #6b6657;
    --paper: #f5efe2;
    --paper-deep: #e9dcc6;
    --moss: #4c6f55;
    --sage: #c5d0b4;
    --clay: #ad6849;
    --cream: #fff9ed;
    --line: rgba(60, 49, 32, 0.18);
    --shadow: 0 22px 60px rgba(49, 39, 24, 0.13);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(197, 208, 180, 0.62), transparent 34rem),
        linear-gradient(115deg, var(--paper), #fbf5e9 48%, #efe2cf);
    line-height: 1.55;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(28, 33, 28, 0.035) 1px, transparent 1px);
    background-size: 100% 34px;
    opacity: 0.45;
}

body,
button,
input,
select,
textarea {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1,
h2,
h3,
.brand {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

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

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    width: min(1180px, calc(100% - 36px));
    margin: 18px auto 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 249, 237, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(44, 34, 19, 0.08);
}

.site-header.compact {
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.02rem;
    font-weight: 700;
    text-decoration: none;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--cream);
    background: var(--moss);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
}

.brand-mark.large {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.top-nav {
    display: flex;
    gap: 6px;
    align-items: center;
}

.top-nav a {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    text-decoration: none;
}

.top-nav a:hover {
    color: var(--ink);
    background: rgba(76, 111, 85, 0.1);
}

main {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: 26px;
    min-height: 690px;
    padding: 88px 0 58px;
    align-items: stretch;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 600px;
    padding: 44px;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255, 249, 237, 0.75), rgba(233, 220, 198, 0.74)),
        radial-gradient(circle at 74% 20%, rgba(173, 104, 73, 0.25), transparent 28rem);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--clay);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 780px;
    margin: 0 0 22px;
    font-size: clamp(3.1rem, 7vw, 7.25rem);
}

.hero-lede {
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.button-primary,
.button-secondary,
.request-form button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary,
.request-form button {
    color: var(--cream);
    background: var(--ink);
    box-shadow: 0 12px 26px rgba(28, 33, 28, 0.18);
}

.button-secondary {
    color: var(--ink);
    background: rgba(255, 249, 237, 0.55);
    border-color: var(--line);
}

.button-primary:hover,
.button-secondary:hover,
.request-form button:hover {
    transform: translateY(-2px);
}

.hero-note {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border-radius: 38px;
    color: var(--cream);
    background: linear-gradient(160deg, var(--moss), #253d2d);
    box-shadow: var(--shadow);
}

.hero-note strong {
    margin-top: auto;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    line-height: 1.1;
}

.hero-note p {
    color: rgba(255, 249, 237, 0.82);
}

.note-label {
    color: var(--sage);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 56px;
    padding: 56px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.intro-panel h2,
.section-heading h2,
.delivery-copy h2,
.process h2,
.request-intro h2,
.legal-wrap h1,
.thanks-card h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
}

.intro-panel > p {
    align-self: end;
    color: var(--muted);
    font-size: 1.15rem;
}

.guide-stack {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-auto-rows: minmax(245px, auto);
    gap: 18px;
    padding: 58px 0;
}

.guide-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 249, 237, 0.68);
}

.guide-card::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(197, 208, 180, 0.45);
}

.guide-large {
    grid-row: span 2;
    min-height: 520px;
    color: var(--cream);
    background: linear-gradient(155deg, #253d2d, var(--moss));
}

.guide-large p,
.guide-large li {
    color: rgba(255, 249, 237, 0.82);
}

.ribbon-card {
    background: var(--paper-deep);
}

.guide-price {
    display: inline-flex;
    margin-bottom: 46px;
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 900;
    background: rgba(173, 104, 73, 0.14);
}

.guide-large .guide-price {
    color: var(--ink);
    background: var(--sage);
}

.guide-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    font-size: clamp(1.65rem, 2.6vw, 3rem);
}

.guide-card p,
.guide-card ul {
    position: relative;
    z-index: 1;
    color: var(--muted);
}

.guide-card ul {
    padding-left: 20px;
}

.benefit-section,
.process,
.faq-section,
.request-section,
.delivery-band {
    margin: 38px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
    margin-bottom: 24px;
}

.section-heading.narrow {
    max-width: 650px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.benefit-item {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 249, 237, 0.58);
    border: 1px solid var(--line);
}

.benefit-item span {
    display: block;
    margin-bottom: 44px;
    color: var(--clay);
    font-weight: 900;
}

.benefit-item h3 {
    margin: 0 0 10px;
    font-size: 1.55rem;
}

.benefit-item p,
.delivery-copy p,
.process-list span,
.faq-list p,
.request-intro p,
.legal-lede,
.legal-wrap p,
.thanks-card p {
    color: var(--muted);
}

.delivery-band {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 18px;
    padding: 32px;
    border-radius: 34px;
    background: var(--ink);
    color: var(--cream);
}

.delivery-copy p {
    color: rgba(255, 249, 237, 0.78);
}

.delivery-list {
    display: grid;
    gap: 12px;
    align-content: center;
}

.delivery-list p {
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 249, 237, 0.18);
    border-radius: 18px;
    background: rgba(255, 249, 237, 0.06);
}

.process {
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: 36px;
    background: rgba(245, 239, 226, 0.62);
}

.process-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
    counter-reset: step;
}

.process-list li {
    counter-increment: step;
    display: grid;
    grid-template-columns: 70px 0.65fr 1fr;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.process-list li::before {
    content: counter(step, decimal-leading-zero);
    color: var(--clay);
    font-weight: 900;
}

.faq-list {
    display: grid;
    gap: 10px;
}

details {
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 249, 237, 0.62);
}

summary {
    cursor: pointer;
    font-weight: 900;
    font-size: 1.05rem;
}

details p {
    margin: 14px 0 0;
}

.request-section {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    gap: 20px;
    align-items: start;
    padding: 40px;
    border-radius: 38px;
    background: var(--paper-deep);
}

.request-form {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 28px;
    background: var(--cream);
    border: 1px solid var(--line);
}

.request-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 15px;
    color: var(--ink);
    background: #fffdf7;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--moss);
    box-shadow: 0 0 0 4px rgba(76, 111, 85, 0.12);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    width: min(1180px, calc(100% - 36px));
    margin: 70px auto 20px;
    padding: 30px;
    border-radius: 30px;
    color: var(--cream);
    background: #1f261f;
}

.site-footer p {
    color: rgba(255, 249, 237, 0.76);
}

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

.footer-links a,
.legal-footer a {
    color: var(--sage);
    text-decoration: none;
}

.disclaimer {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 249, 237, 0.16);
    font-size: 0.9rem;
}

.legal-page {
    background: linear-gradient(135deg, #f7f0e4, #e9dcc6);
}

.legal-wrap {
    max-width: 920px;
    margin: 74px auto 0;
    padding: 46px;
    border-radius: 38px;
    background: rgba(255, 249, 237, 0.72);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.legal-wrap section {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.legal-wrap h2 {
    margin: 0 0 10px;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.02em;
}

.terms-layout {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 40px;
    max-width: 1120px;
}

.terms-title {
    position: sticky;
    top: 110px;
    align-self: start;
}

.legal-note {
    color: var(--cream);
    border-radius: 22px;
    background: var(--moss);
    padding: 22px !important;
}

.legal-note p {
    margin: 0;
    color: rgba(255, 249, 237, 0.86);
}

.legal-footer {
    grid-template-columns: none;
    justify-content: space-between;
}

.thanks-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.thanks-card {
    width: min(720px, 100%);
    padding: clamp(32px, 7vw, 70px);
    border: 1px solid var(--line);
    border-radius: 42px;
    background: rgba(255, 249, 237, 0.82);
    box-shadow: var(--shadow);
    text-align: center;
}

.thanks-details {
    display: grid;
    gap: 4px;
    margin: 28px 0;
    padding: 20px;
    border-radius: 22px;
    background: var(--paper-deep);
    color: var(--muted);
}

.thanks-details strong {
    color: var(--ink);
}

.disclaimer.boxed {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 24px;
    color: var(--muted);
    background: #fffdf7;
}

@media (max-width: 880px) {
    .site-header,
    .hero-actions,
    .top-nav {
        align-items: stretch;
    }

    .site-header {
        border-radius: 24px;
        flex-direction: column;
    }

    .top-nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero-shell,
    .intro-panel,
    .guide-stack,
    .benefit-grid,
    .delivery-band,
    .request-section,
    .terms-layout {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        min-height: auto;
        padding-top: 34px;
    }

    .hero-copy {
        min-height: 520px;
        padding: 28px;
    }

    .guide-large {
        min-height: auto;
    }

    .process,
    .request-section,
    .legal-wrap {
        padding: 26px;
    }

    .process-list li {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .terms-title {
        position: static;
    }
}

@media (max-width: 560px) {
    main,
    .site-header,
    .site-footer {
        width: min(100% - 24px, 1180px);
    }

    .top-nav {
        display: none;
    }

    .hero-copy h1 {
        font-size: 3.05rem;
    }

    .hero-actions a,
    .request-form button {
        width: 100%;
    }
}
