:root {
    --black: #0a0a0a;
    --white: #f5f3ef;
    --muted: rgba(245, 243, 239, 0.6);
    --surface: #111111;
    --line: #1e1e1e;
    --grey: #8a8a8a;
    --accent: #dcc8a8;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: 'EB Garamond', serif;
    font-size: 19px;
    line-height: 1.7;
}

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

a:hover {
    color: inherit;
}

p {
    color: var(--muted);
    margin-bottom: 1.2rem;
}

h1,
h2,
h3 {
    margin: 0 0 1.4rem;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.4rem, 8vw, 8rem);
    line-height: 0.95;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
}

h3 {
    font-size: 1.7rem;
    line-height: 1.15;
}

em,
i,
.fst-italic,
.text-accent {
    color: var(--accent);
    font-style: italic;
}

img {
    max-width: 100%;
}

.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px clamp(24px, 5vw, 70px);
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6), transparent);
}

.site-logo,
.site-menu a,
.label,
.tagline,
.btn-light-custom,
.btn-outline-light-custom,
.btn-dark-custom,
.timeline-date,
.form-label {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10px;
}

.site-logo {
    opacity: 0.95;
}

.site-menu {
    display: flex;
    gap: 32px;
}

.site-menu a {
    opacity: 0.7;
    transition: opacity 180ms ease;
}

.site-menu a:hover,
.site-menu a.active {
    opacity: 1;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 6px 0;
    background: var(--white);
}

.container {
    position: relative;
    z-index: 2;
}

.hero,
.statement-photo {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--black);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-page {
    min-height: 70vh;
}

.hero-home .hero-content {
    padding-top: 140px;
    padding-bottom: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 90px;
}

.hero-content.align-end {
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(10, 10, 10, 0.48);
}

.hero-overlay.strong {
    background: rgba(10, 10, 10, 0.62);
}

.hero-overlay.soft {
    background: rgba(10, 10, 10, 0.22);
}

.bg-seated {
    background-image: url('../img/brigitte-seated.jpg');
    background-position: center top;
}

.bg-white-blazer {
    background-image: url('../img/brigitte-white.jpg');
    background-position: center top;
}

.bg-portrait {
    background-image: url('../img/brigitte-portrait.jpg');
    background-position: center top;
}

.hero.bg-seated,
.hero.bg-white-blazer,
.hero.bg-portrait,
.statement-photo.bg-seated,
.statement-photo.bg-white-blazer,
.statement-photo.bg-portrait {
    background-image: none;
    filter: none;
}

.hero::before,
.statement-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.hero.bg-seated::before {
    background-image: url('../img/brigitte-seated.jpg');
    background-position: center top;
    filter: grayscale(1) brightness(0.38) contrast(1.1);
}

.hero.bg-white-blazer::before,
.statement-photo.bg-white-blazer::before {
    background-image: url('../img/brigitte-white.jpg');
    background-position: center top;
    filter: grayscale(1) brightness(0.85);
}

.hero.bg-portrait::before,
.statement-photo.bg-portrait::before {
    background-image: url('../img/brigitte-portrait.jpg');
    background-position: center top;
    filter: grayscale(1) brightness(0.38);
}

.statement-photo.bg-seated::before {
    background-image: url('../img/brigitte-seated.jpg');
    background-position: center top;
    filter: grayscale(1) brightness(0.38) contrast(1.1);
}

.portrait.bg-seated,
.portrait.bg-white-blazer,
.portrait.bg-portrait {
    filter: grayscale(1);
}

.label {
    margin-bottom: 18px;
    color: var(--grey);
}

.lead-text {
    max-width: 620px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-outline-light-custom,
.btn-light-custom,
.btn-dark-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 15px 22px;
    border: 1px solid var(--white);
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-outline-light-custom {
    color: var(--white);
    background: transparent;
}

.btn-outline-light-custom:hover {
    color: var(--black);
    background: var(--white);
}

.btn-light-custom {
    color: var(--black);
    background: var(--white);
}

.btn-light-custom:hover {
    color: var(--white);
    background: transparent;
}

.btn-dark-custom {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.btn-dark-custom:hover {
    color: var(--black);
    background: transparent;
}

.statement-photo {
    min-height: 95vh;
    text-align: center;
}

.section-content {
    padding: 120px 0;
}

.quote-section,
.cta-section,
.episodes-section,
.pricing-section,
.timeline-section,
.split-section {
    padding: 115px 0;
}

.quote-section,
.cta-section,
.episodes-section,
.timeline-section {
    background: var(--surface);
}

.quote-section .narrow,
.cta-section .narrow {
    max-width: 760px;
}

.tagline {
    margin-top: 25px;
    color: var(--grey);
}

.split-section {
    background: var(--black);
}

.portrait {
    min-height: 620px;
    background-color: var(--surface);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
}

.text-link:hover {
    opacity: 1;
}

.anchor-line {
    padding: 58px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 4.6rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.05;
    opacity: 0.85;
}

.anchor-line.large {
    padding: 90px 0;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    margin-top: 35px;
    background: var(--line);
}

.episode-card {
    min-height: 270px;
    padding: 28px;
    background: var(--black);
}

.episode-number {
    margin-bottom: 38px;
    color: var(--grey);
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    line-height: 1;
}

.episode-card p {
    font-size: 15px;
}

.price-card {
    height: 100%;
    padding: 42px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.price-card.featured {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

.price-card.featured h1,
.price-card.featured h2,
.price-card.featured h3,
.price-card.featured p,
.price-card.featured .label,
.price-card.featured .form-label {
    color: var(--black);
}

.price-card.featured em,
.price-card.featured i,
.price-card.featured .fst-italic,
.price-card.featured .text-accent {
    color: var(--black);
}

.price-card ul {
    padding-left: 18px;
    color: var(--muted);
}

.price-card.featured ul {
    color: rgba(10, 10, 10, 0.72);
}

.payment-form .form-control {
    min-height: 48px;
    border-color: rgba(10, 10, 10, 0.25);
    border-radius: 0;
    background: transparent;
}

.payment-form .form-control:focus {
    border-color: var(--black);
    box-shadow: none;
}

.timeline-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
    padding: 42px 0;
    border-top: 1px solid var(--line);
}

.timeline-row:last-child {
    border-bottom: 1px solid var(--line);
}

.timeline-date {
    color: var(--grey);
}

.status-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 36px 0;
    color: var(--grey);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 991px) {
    .site-menu {
        position: fixed;
        inset: 78px 20px auto 20px;
        display: none;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.96);
        border: 1px solid var(--line);
        padding: 24px;
    }

    .site-menu.is-open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .episode-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .portrait {
        min-height: 480px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 3.4rem;
    }

    .button-row {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .price-card {
        padding: 30px;
    }

    .site-footer .container {
        flex-direction: column;
    }
}
