.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 6.25rem 0;
}

.section-compact {
    padding: 3.5rem 0 4.25rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-left {
    text-align: left;
}

.section-label {
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.content-breadcrumbs {
    margin-bottom: 0.9rem;
}

.content-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.content-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text3);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.content-breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: rgba(201, 168, 76, 0.7);
}

.content-breadcrumbs a {
    color: inherit;
    transition: color var(--transition);
}

.content-breadcrumbs a:hover,
.content-breadcrumbs [aria-current="page"] {
    color: var(--gold);
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin: 0 0 1rem;
}

.section-sub,
.story-desc,
.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text2);
    letter-spacing: 0.045em;
    line-height: 1.8;
    max-width: 35rem;
}

.section-header .section-sub {
    margin: 0 auto;
}

.section-header-left .section-sub {
    margin: 0;
}

.divider {
    width: 3.75rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.divider-left {
    margin: 0 0 1.75rem;
}

.divider-lg {
    width: 7.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.gold {
    color: var(--gold);
}

.ornament {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.15rem;
}

.ornament-line {
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament-line-right {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-gem {
    width: 0.8rem;
    height: 0.8rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.toast-stack {
    position: fixed;
    top: 1.15rem;
    right: 1.15rem;
    z-index: 1400;
    display: grid;
    gap: 0.8rem;
    width: min(26rem, calc(100vw - 2rem));
    pointer-events: none;
}

.app-toast {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 1rem 1rem 1rem 1.1rem;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 92%, rgba(255, 255, 255, 0.04));
    box-shadow: 0 16px 34px rgba(10, 8, 6, 0.18);
    backdrop-filter: blur(18px);
    pointer-events: auto;
    animation: toast-in 0.3s ease;
}

.app-toast-success {
    border-color: rgba(72, 160, 94, 0.34);
}

.app-toast-error {
    border-color: rgba(180, 72, 72, 0.38);
}

.app-toast-copy {
    display: grid;
    gap: 0.22rem;
}

.app-toast-title {
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.app-toast-message {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.94rem;
}

.app-toast-close {
    border: none;
    background: transparent;
    color: var(--text3);
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition), transform var(--transition);
}

.app-toast-close:hover {
    color: var(--gold);
    transform: scale(1.05);
}

.app-toast.is-leaving {
    animation: toast-out 0.24s ease forwards;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(-0.5rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-0.4rem);
    }
}

.validation-summary,
.field-validation {
    color: #b94b4b;
    font-size: 0.92rem;
}

@media (max-width: 720px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section-compact {
        padding: 2.75rem 0 3.5rem;
    }

    .toast-stack {
        top: 0.9rem;
        right: 0.9rem;
        width: calc(100vw - 1.8rem);
    }
}
