:root {
    --bg: #f4efe7;
    --surface: rgba(255, 255, 255, 0.7);
    --surface-strong: #fffdf8;
    --ink: #10192a;
    --muted: #5f6876;
    --line: rgba(16, 25, 42, 0.12);
    --gold: #b28a4a;
    --gold-dark: #8a6732;
    --navy: #0d1726;
    --shadow: 0 24px 80px rgba(13, 23, 38, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(178, 138, 74, 0.18), transparent 30%),
        linear-gradient(180deg, #f9f6f0 0%, var(--bg) 48%, #ebe3d8 100%);
}

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

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding-bottom: 72px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
}

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

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #f6efe3;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.95rem;
}

.brand-copy strong {
    font-size: 1rem;
}

.brand-copy span {
    color: var(--muted);
}

.topbar-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.topbar-cta,
.button-primary {
    background: var(--navy);
    color: #fff8ef;
    box-shadow: 0 12px 32px rgba(13, 23, 38, 0.18);
}

.topbar-cta:hover,
.button-primary:hover {
    transform: translateY(-1px);
    background: #13213a;
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.5);
    color: var(--ink);
}

.button-secondary:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.85);
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0 56px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero h1,
.section-heading h2,
.final-copy h2,
.window-body h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.hero h1 {
    font-size: clamp(3.4rem, 7vw, 6.6rem);
    max-width: 10.5ch;
}

.hero-text,
.info-card p,
.audience-panel p,
.audience-panel li,
.timeline p,
.final-copy p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.02rem;
}

.hero-text {
    max-width: 630px;
    margin: 24px 0 0;
}

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

.hero-points {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-points li {
    position: relative;
    padding-left: 26px;
    color: var(--ink);
    font-weight: 600;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #d6b071 0%, var(--gold-dark) 100%);
    box-shadow: 0 0 0 6px rgba(178, 138, 74, 0.12);
}

.hero-card {
    position: relative;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 8% 12% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(178, 138, 74, 0.16);
    filter: blur(10px);
}

.case-window {
    position: relative;
    background: linear-gradient(180deg, rgba(13, 23, 38, 0.98), rgba(23, 35, 53, 0.95));
    color: #f8f2e8;
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.window-top {
    display: flex;
    gap: 8px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
}

.window-body {
    padding: 30px;
}

.window-label {
    margin: 0 0 12px;
    color: #c8aa72;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 800;
}

.window-body h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    max-width: 9ch;
}

.metric-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.metric-grid article {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 18px;
}

.metric-grid strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.metric-grid span {
    color: rgba(248, 242, 232, 0.76);
    line-height: 1.65;
    font-size: 0.95rem;
}

.trust-strip {
    margin: 0 0 36px;
    padding: 18px 22px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-weight: 600;
}

.services,
.audience,
.process,
.final-cta {
    margin-top: 52px;
}

.section-heading {
    max-width: 840px;
    margin-bottom: 28px;
}

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

.section-heading h2,
.final-copy h2 {
    font-size: clamp(2.2rem, 4.3vw, 4.2rem);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-card,
.audience-panel,
.lead-form {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.info-card {
    border-radius: var(--radius);
    padding: 28px;
}

.info-card h3,
.audience-panel h3,
.timeline h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.audience-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.audience-panel {
    border-radius: var(--radius);
    padding: 30px;
}

.audience-panel ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.audience-panel.accent {
    background: linear-gradient(180deg, #fffaf0 0%, #f4ead8 100%);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.timeline article {
    padding: 26px;
    border-radius: var(--radius);
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.timeline span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff8ef;
    font-weight: 800;
    margin-bottom: 18px;
}

.final-cta {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: start;
    padding: 34px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(13, 23, 38, 0.06), rgba(255, 255, 255, 0.3));
    border: 1px solid var(--line);
}

.lead-form {
    border-radius: 28px;
    padding: 26px;
}

.lead-form label {
    display: block;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--ink);
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid rgba(16, 25, 42, 0.14);
    border-radius: 18px;
    padding: 15px 16px;
    font: inherit;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: 2px solid rgba(178, 138, 74, 0.28);
    border-color: rgba(178, 138, 74, 0.6);
}

.button-full {
    width: 100%;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.form-status {
    min-height: 24px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.form-status.success {
    color: #215f3f;
}

.form-status.error {
    color: #8f2f2f;
}

@media (max-width: 980px) {
    .hero,
    .audience-layout,
    .final-cta,
    .timeline,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .window-body h2,
    .section-heading h2,
    .final-copy h2 {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 20px, 1180px);
    }

    .topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .topbar-cta {
        width: 100%;
    }

    .hero {
        padding-top: 18px;
    }

    .window-body,
    .info-card,
    .audience-panel,
    .timeline article,
    .lead-form,
    .final-cta {
        padding: 22px;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.3rem);
    }
}
