:root {
    --bg: #050505;
    --bg-soft: #111111;
    --panel: rgba(14, 14, 14, 0.86);
    --panel-strong: #121212;
    --gold: #d6b071;
    --gold-soft: #f0d8a3;
    --ivory: #f8f2e8;
    --muted: #b9b0a2;
    --line: rgba(214, 176, 113, 0.18);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    --container: min(1180px, calc(100vw - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Helvetica Neue", Helvetica, sans-serif;
    color: var(--ivory);
    background:
        radial-gradient(circle at top left, rgba(214, 176, 113, 0.18), transparent 24%),
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.1), transparent 18%),
        linear-gradient(180deg, #090909 0%, #050505 45%, #090909 100%);
}

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

img {
    display: block;
    max-width: 100%;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.preview-banner {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(16px);
}

.preview-inner {
    width: var(--container);
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.preview-inner p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.preview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.preview-actions a,
.nav-link,
.button-ghost,
.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.preview-actions a,
.nav-link,
.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--ivory);
}

.button-primary {
    border: 1px solid rgba(214, 176, 113, 0.36);
    background: linear-gradient(135deg, #c89b52 0%, #f0d8a3 100%);
    color: #100b04;
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(214, 176, 113, 0.24);
}

.preview-actions a:hover,
.nav-link:hover,
.button-ghost:hover,
.button-primary:hover {
    transform: translateY(-1px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 5, 5, 0.78);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: var(--container);
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.brand img {
    width: 154px;
}

.nav-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-section {
    padding: 44px 0 24px;
}

.hero-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(8, 8, 8, 0.88);
    box-shadow: var(--shadow);
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.12), transparent 18%),
        radial-gradient(circle at 12% 18%, rgba(214, 176, 113, 0.14), transparent 24%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    padding: 40px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-family: "Allura", cursive;
    font-size: clamp(38px, 5vw, 54px);
    line-height: 0.95;
    color: var(--gold-soft);
    margin-bottom: 12px;
}

.hero-title {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(58px, 10vw, 110px);
    line-height: 0.86;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
}

.hero-copy {
    max-width: 620px;
}

.hero-copy p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

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

.meta-card {
    padding: 18px 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.meta-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 8px;
}

.meta-card strong {
    display: block;
    font-size: 24px;
    line-height: 1.15;
}

.meta-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.poster-panel {
    position: relative;
    justify-self: end;
    width: min(100%, 430px);
}

.poster-frame {
    position: relative;
    border-radius: 30px;
    padding: 18px;
    border: 1px solid rgba(214, 176, 113, 0.22);
    background: linear-gradient(180deg, rgba(214, 176, 113, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.46);
}

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.poster-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.poster-note {
    position: absolute;
    left: -10px;
    right: 42px;
    bottom: 26px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(214, 176, 113, 0.24);
    background: rgba(6, 6, 6, 0.88);
    backdrop-filter: blur(14px);
}

.poster-note strong {
    display: block;
    font-size: 16px;
    color: var(--gold-soft);
    margin-bottom: 6px;
}

.poster-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.detail-section {
    padding: 26px 0 80px;
}

.faq-section {
    padding: 0 0 80px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 24px;
    align-items: start;
}

.info-card,
.cta-card,
.footer-card {
    border-radius: 28px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(10, 10, 10, 0.9);
    box-shadow: var(--shadow);
}

.info-card {
    padding: 28px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-soft);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 0.98;
}

.section-copy {
    margin: 16px 0 0;
    max-width: 62ch;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

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

.fact-card {
    min-height: 100%;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.fact-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.fact-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.venue-card {
    margin-top: 18px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(214, 176, 113, 0.16);
    background: linear-gradient(135deg, rgba(214, 176, 113, 0.08), rgba(255, 255, 255, 0.02));
}

.venue-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
}

.venue-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.venue-place {
    margin-top: 10px !important;
    font-size: 14px;
    line-height: 1.65;
}

.timeline-wrapper {
    margin-top: 18px;
}

.timeline-day {
    margin-top: 22px;
    padding-top: 8px;
    color: var(--gold-soft);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 30px;
    line-height: 1;
}

.timeline-row {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-row-last {
    border-bottom: 0;
    padding-bottom: 0;
}

.timeline-hour {
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.timeline-copy strong {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
}

.timeline-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.sidebar-stack {
    display: grid;
    gap: 18px;
}

.faq-shell {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(10, 10, 10, 0.9);
    box-shadow: var(--shadow);
}

.faq-stack {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.cta-card {
    padding: 26px;
}

.mini-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
}

.cta-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.02;
}

.cta-card p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.success-banner {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(104, 211, 145, 0.22);
    background: rgba(54, 121, 86, 0.18);
    color: #d7ffe4;
    line-height: 1.7;
    font-size: 14px;
}

.form-grid {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.form-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--ivory);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 16px;
    color: var(--ivory);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input:focus {
    border-color: rgba(214, 176, 113, 0.55);
    box-shadow: 0 0 0 4px rgba(214, 176, 113, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.form-input::placeholder {
    color: rgba(248, 242, 232, 0.36);
}

.field-help,
.field-error {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
}

.field-help {
    color: var(--muted);
}

.field-error {
    color: #ffb4b4;
}

.count-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.count-box {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.count-box strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.count-box span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bullet-list,
.footer-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.bullet-list li,
.footer-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    color: var(--muted);
    line-height: 1.7;
}

.bullet-list li::before,
.footer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.quote-card {
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: "";
    position: absolute;
    inset: auto -60px -60px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 176, 113, 0.16), transparent 70%);
}

.quote-script {
    margin: 6px 0 0;
    font-family: "Allura", cursive;
    font-size: 46px;
    line-height: 0.95;
    color: var(--gold-soft);
}

.quote-role {
    margin-top: 4px;
    color: var(--muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
}

.site-footer {
    padding: 0 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 20px;
}

.footer-card {
    padding: 22px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.footer-brand img {
    width: 46px;
    height: 46px;
}

.footer-card h4 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.footer-bottom {
    margin-top: 18px;
    text-align: center;
    color: rgba(248, 242, 232, 0.54);
    font-size: 14px;
}

.fade-up {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.75s ease forwards;
}

.delay-1 {
    animation-delay: 0.08s;
}

.delay-2 {
    animation-delay: 0.16s;
}

.delay-3 {
    animation-delay: 0.24s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .poster-panel {
        justify-self: stretch;
        width: 100%;
    }
}

@media (max-width: 720px) {
    .hero-grid,
    .info-card,
    .cta-card,
    .footer-card,
    .faq-shell {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-grid {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero-meta,
    .fact-grid,
    .form-grid-two,
    .count-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-actions,
    .preview-actions {
        width: 100%;
    }

    .preview-actions a,
    .nav-link,
    .button-ghost,
    .button-primary {
        width: 100%;
    }

    .poster-note {
        position: static;
        margin-top: 14px;
    }
}
