* {
    box-sizing: border-box;
}

:root {
    --ink: #241423;
    --ink-soft: #5f4b5d;
    --night: #1b0f1f;
    --night-2: #30183a;
    --acid: #d7f36f;
    --acid-dark: #9ab936;
    --porcelain: #fff7ee;
    --mist: #f8eadc;
    --rose: #efb7a3;
    --copper: #b7684f;
    --line: rgba(36, 20, 35, 0.16);
    --line-dark: rgba(255, 247, 238, 0.18);
    --shadow: 0 28px 90px rgba(48, 24, 58, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 0%, rgba(215, 243, 111, 0.22), transparent 35%),
        linear-gradient(135deg, #fff7ee 0%, #f8eadc 46%, #eec7b9 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-shell {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--night);
    color: var(--acid);
    font-weight: 800;
    letter-spacing: -0.04em;
    font-family: Arial, Helvetica, sans-serif;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
}

.brand small {
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: Arial, Helvetica, sans-serif;
}

.nav-links a {
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.nav-links a:hover {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.32);
    color: var(--ink);
}

.hero-ribbon {
    padding: 18px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 380px;
    gap: 36px;
    align-items: stretch;
}

.hero-copy {
    padding: clamp(36px, 7vw, 82px);
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(27, 15, 31, 0.96), rgba(48, 24, 58, 0.94)),
        radial-gradient(circle at 80% 20%, rgba(215, 243, 111, 0.25), transparent 34%);
    color: var(--porcelain);
    box-shadow: var(--shadow);
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -110px;
    bottom: -120px;
    border-radius: 50%;
    border: 60px solid rgba(215, 243, 111, 0.18);
}

.eyebrow,
.section-kicker,
.panel-label,
.guide-code {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.73rem;
    font-weight: 800;
}

.eyebrow,
.section-kicker {
    color: var(--copper);
}

.hero-copy .eyebrow {
    color: var(--acid);
}

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

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.88;
    letter-spacing: -0.08em;
    max-width: 820px;
    margin-bottom: 28px;
}

h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.hero-lead {
    max-width: 680px;
    font-size: 1.22rem;
    color: rgba(255, 247, 238, 0.78);
}

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

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

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

.button.primary {
    color: var(--night);
    background: var(--acid);
}

.button.primary:hover {
    background: #e4ff8a;
}

.button.ghost {
    color: var(--porcelain);
    border-color: var(--line-dark);
}

.button.ghost:hover {
    background: rgba(255, 247, 238, 0.08);
}

.button.full {
    width: 100%;
}

.hero-panel {
    border-radius: 42px;
    padding: 34px;
    background: rgba(255, 247, 238, 0.72);
    border: 1px solid rgba(36, 20, 35, 0.14);
    box-shadow: 0 20px 50px rgba(48, 24, 58, 0.1);
    align-self: end;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.panel-label {
    color: var(--copper);
    margin-bottom: auto;
}

address {
    font-style: normal;
}

address span,
.address-stack span,
.address-stack a,
.contact-stack a,
.footer-contact a {
    display: block;
}

.hero-panel h2 {
    font-size: 2.5rem;
}

.contact-stack {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
}

.editorial-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 28px;
    align-items: end;
    padding: 36px 0 70px;
}

.strip-large {
    border-left: 8px solid var(--night);
    padding-left: 30px;
}

.strip-large p {
    font-size: clamp(1.45rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 0;
}

.strip-note {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 247, 238, 0.64);
}

.strip-note strong,
.strip-note span {
    display: block;
}

.guide-section {
    padding: 70px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.offset-heading {
    margin-left: clamp(0px, 12vw, 140px);
}

.guide-ledger {
    display: grid;
    gap: 18px;
}

.guide-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: end;
    padding: 28px;
    border-top: 1px solid var(--line);
    background: rgba(255, 247, 238, 0.46);
}

.featured-guide {
    border-radius: 34px;
    border: 1px solid var(--line);
    background: var(--night);
    color: var(--porcelain);
    padding: 38px;
}

.featured-guide p {
    color: rgba(255, 247, 238, 0.74);
}

.guide-code {
    color: var(--copper);
    display: inline-block;
    margin-bottom: 12px;
}

.featured-guide .guide-code {
    color: var(--acid);
}

.price {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 4vw, 4.8rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    color: var(--copper);
    white-space: nowrap;
}

.featured-guide .price {
    color: var(--acid);
}

.split-band {
    margin: 60px 0;
    background: var(--rose);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.split-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.2fr;
    gap: 50px;
    padding: 78px 0;
}

.benefit-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(36, 20, 35, 0.18);
    border: 1px solid rgba(36, 20, 35, 0.18);
}

.benefit-mosaic div {
    padding: 28px;
    background: #ffe9de;
}

.benefit-mosaic strong {
    display: block;
    margin-bottom: 12px;
    font-family: Arial, Helvetica, sans-serif;
}

.benefit-mosaic p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.process-section {
    padding: 72px 0;
}

.process-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
}

.process-timeline li {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.process-timeline span {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--acid-dark);
    font-weight: 900;
    font-size: 1.2rem;
}

.process-timeline p {
    max-width: 690px;
    margin-bottom: 0;
    color: var(--ink-soft);
}

.faq-request-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) 440px;
    gap: 36px;
    padding: 70px 0 96px;
}

.faq-block {
    align-self: start;
}

details {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

summary {
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
}

details p {
    margin: 14px 0 0;
    color: var(--ink-soft);
    max-width: 700px;
}

.request-card {
    border-radius: 34px;
    background: #fffaf4;
    border: 1px solid var(--line);
    padding: 32px;
    box-shadow: var(--shadow);
}

form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(36, 20, 35, 0.22);
    border-radius: 18px;
    padding: 14px 15px;
    background: #fffdf8;
    color: var(--ink);
}

textarea {
    resize: vertical;
}

.site-footer {
    background: var(--night);
    color: var(--porcelain);
    padding: 44px 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 30px;
    align-items: start;
}

.footer-contact,
.footer-links {
    display: grid;
    gap: 8px;
    color: rgba(255, 247, 238, 0.78);
}

.disclaimer {
    margin-top: 28px;
    color: rgba(255, 247, 238, 0.62);
    font-size: 0.9rem;
    font-family: Arial, Helvetica, sans-serif;
}

.legal-page {
    background:
        radial-gradient(circle at 90% 5%, rgba(215, 243, 111, 0.28), transparent 30%),
        linear-gradient(135deg, #2d1835 0%, #fff7ee 0%, #f5d4c3 100%);
}

.legal-wrap {
    padding: 46px 0 90px;
}

.legal-card {
    background: rgba(255, 250, 244, 0.88);
    border: 1px solid var(--line);
    border-radius: 42px;
    padding: clamp(30px, 6vw, 70px);
    box-shadow: var(--shadow);
}

.legal-card h1 {
    color: var(--ink);
    font-size: clamp(2.7rem, 6vw, 5.5rem);
}

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

.legal-card section:first-of-type {
    margin-top: 34px;
}

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

.legal-card .disclaimer {
    color: var(--ink-soft);
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.address-stack {
    display: grid;
    gap: 4px;
    color: var(--ink-soft);
}

.address-stack strong {
    color: var(--ink);
}

.split-legal {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 0 48px;
}

.split-legal > div,
.split-legal > .disclaimer {
    grid-column: 1 / -1;
}

.thank-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(215, 243, 111, 0.35), transparent 28%),
        linear-gradient(135deg, var(--night) 0%, #4a2143 52%, #d58972 100%);
    color: var(--porcelain);
    display: grid;
    place-items: center;
    padding: 28px;
}

.thanks-shell {
    width: min(760px, 100%);
}

.thanks-card {
    border: 1px solid var(--line-dark);
    border-radius: 44px;
    padding: clamp(30px, 7vw, 72px);
    background: rgba(27, 15, 31, 0.72);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.28);
}

.thanks-card h1 {
    font-size: clamp(3rem, 7vw, 6rem);
}

.thanks-card p {
    color: rgba(255, 247, 238, 0.78);
}

.thanks-address {
    margin: 26px 0;
    padding: 22px;
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    color: rgba(255, 247, 238, 0.82);
}

.thanks-address strong {
    color: var(--porcelain);
}

.thanks-card .disclaimer {
    color: rgba(255, 247, 238, 0.64);
}

@media (max-width: 900px) {
    .nav-wrap,
    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-grid,
    .editorial-strip,
    .split-grid,
    .faq-request-grid,
    .split-legal {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: auto;
    }

    .offset-heading {
        margin-left: 0;
    }

    .footer-grid {
        display: flex;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(100% - 24px, 1160px);
    }

    .hero-copy,
    .hero-panel,
    .request-card,
    .legal-card,
    .thanks-card {
        border-radius: 28px;
    }

    .guide-item {
        grid-template-columns: 1fr;
    }

    .benefit-mosaic {
        grid-template-columns: 1fr;
    }

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

    h1 {
        font-size: clamp(2.65rem, 18vw, 4rem);
    }

    .nav-links {
        width: 100%;
    }
}
