:root {
    --seo-bg: var(--pulse-public-ivory, #FAF8F5);
    --seo-surface: var(--pulse-public-surface, #FFFFFF);
    --seo-text: var(--pulse-public-charcoal, #1A1A18);
    --seo-muted: var(--pulse-public-muted, #6B6560);
    --seo-accent: var(--pulse-public-olive, #4F644F);
    --seo-line: var(--pulse-public-line, rgba(26, 26, 24, 0.1));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--pulse-font-body, 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    background: var(--seo-bg);
    color: var(--seo-text);
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a,
button {
    font: inherit;
}

:focus-visible {
    outline: 2px solid var(--seo-accent);
    outline-offset: 2px;
}

.seo-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    color: #FAF8F5;
}

.seo-header-inner,
.seo-section,
.seo-footer-inner {
    width: min(1120px, calc(100vw - 44px));
    margin: 0 auto;
}

.seo-header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.seo-brand,
.seo-nav {
    display: inline-flex;
    align-items: center;
}

.seo-brand {
    gap: 10px;
    min-height: 44px;
    color: inherit;
    text-decoration: none;
}

.seo-brand img {
    width: auto;
    height: 28px;
    border: 0;
}

.seo-brand span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.seo-nav {
    gap: 18px;
}

.seo-nav a {
    color: inherit;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.seo-hero {
    min-height: min(640px, 76svh);
    display: grid;
    align-items: end;
    padding: 96px 0 64px;
    color: #FAF8F5;
    background:
        linear-gradient(180deg, rgba(26, 26, 24, 0.30) 0%, rgba(26, 26, 24, 0.56) 100%),
        var(--landing-image);
    background-position: center;
    background-size: cover;
}

.seo-hero-content {
    width: min(1120px, calc(100vw - 44px));
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.seo-kicker {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.seo-hero h1,
.seo-section h2,
.seo-card h3 {
    font-family: var(--pulse-font-display-editorial, 'Cormorant Garamond', 'Times New Roman', serif);
    font-weight: 500;
    line-height: 1.06;
}

.seo-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.6rem, 7vw, 5.8rem);
    letter-spacing: 0;
}

.seo-hero p {
    max-width: 64ch;
    margin: 0;
    color: rgba(250, 248, 245, 0.86);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.seo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.seo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(250, 248, 245, 0.76);
    border-radius: 4px;
    color: #FAF8F5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.seo-btn.primary {
    border-color: #FAF8F5;
    background: #FAF8F5;
    color: var(--seo-text);
}

.seo-section {
    padding: 88px 0;
}

.seo-section + .seo-section {
    border-top: 1px solid var(--seo-line);
}

.seo-section h2 {
    max-width: 720px;
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0;
}

.seo-lead {
    max-width: 68ch;
    margin: 0;
    color: var(--seo-muted);
    font-size: 1.06rem;
}

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

.seo-card {
    border: 1px solid var(--seo-line);
    border-radius: 8px;
    background: var(--seo-surface);
    padding: 22px;
}

.seo-card h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
}

.seo-card p,
.seo-card li {
    color: var(--seo-muted);
}

.seo-card p {
    margin: 0;
}

.seo-list {
    margin: 0;
    padding-left: 18px;
}

.seo-list li + li {
    margin-top: 8px;
}

.seo-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}

.seo-image {
    overflow: hidden;
    border-radius: 8px;
    background: #DDD7CF;
    aspect-ratio: 4 / 5;
}

.seo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seo-faq {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.seo-faq details {
    border: 1px solid var(--seo-line);
    border-radius: 8px;
    background: var(--seo-surface);
    padding: 16px 18px;
}

.seo-faq summary {
    cursor: pointer;
    font-weight: 600;
}

.seo-faq p {
    margin: 12px 0 0;
    color: var(--seo-muted);
}

.seo-note {
    margin-top: 24px;
    color: var(--seo-muted);
    font-size: 0.94rem;
}

.seo-footer {
    padding: 40px 0;
    border-top: 1px solid var(--seo-line);
    color: var(--seo-muted);
}

.seo-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.seo-footer a {
    color: var(--seo-accent);
    text-decoration: none;
}

@media (max-width: 860px) {
    .seo-nav {
        display: none;
    }

    .seo-hero {
        min-height: min(620px, 74svh);
        padding-bottom: 48px;
    }

    .seo-grid,
    .seo-split {
        grid-template-columns: 1fr;
    }

    .seo-section {
        padding: 64px 0;
    }
}
