:root {
    --nav-offset: 80px;
}

#hero,
#about,
#films,
#packages,
#testimonials,
#vendors,
#contact {
    scroll-margin-top: var(--nav-offset);
}

.container-narrow {
    max-width: 1160px;
}

.section-heading-spaced {
    margin-bottom: 64px;
}

.section-heading-large {
    margin-bottom: 80px;
}

.section-heading-centered {
    text-align: center;
}

.section-copy-centered {
    margin-left: auto;
    margin-right: auto;
}

.section-copy-preline {
    white-space: pre-line;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: linear-gradient(to top, rgba(10, 9, 14, 0.84), rgba(10, 9, 14, 0.35), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 72px;
}

.hero-text {
    max-width: 860px;
}

.hero-label,
.film-card-meta,
.package-price,
.testimonial-author span,
.contact-meta-label,
.footer-note,
.center-link a {
    font-family: 'Inter', sans-serif;
}

.hero-label {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--warm-beige);
}

.hero-title,
.film-card-title,
.package-card h3,
.shared-block-card h3,
.vendor-category-title,
.testimonial-card blockquote {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.hero-title {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: normal;
    white-space: pre-line;
}

.hero-copy {
    margin-top: 24px;
    max-width: 540px;
    font-size: 16px;
    line-height: 24px;
    color: var(--warm-beige);
    text-wrap: balance;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-media img,
.about-media video,
.about-media-fallback {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--elevated-bg);
}

.film-grid,
.testimonial-grid,
.vendor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
}

.package-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.film-card-link {
    display: block;
}

.film-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--elevated-bg);
}

.film-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
}

.film-card-body {
    margin-top: 20px;
}

.film-card-title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.45px;
}

.film-card-meta {
    margin-top: 8px;
    color: var(--cool-gray);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.package-card,
.testimonial-card,
.vendor-card,
.shared-block-card,
.contact-card {
    border: 1px solid var(--border-soft);
    background: rgba(19, 18, 24, 0.35);
    padding: 24px;
    border-radius: 4px;
    max-width: 540px;
}

.package-card {
    flex: 0 0 100%;
}

.contact-card {
    border-radius: 4px;
    background: rgba(19, 18, 24, 0.6);
    max-width: none;
}

.shared-block-short-wrap {
    margin-top: 40px;
}

.shared-block-short-card {
    max-width: none;
}

@media (max-width: 767px) {
    .shared-block-short-card {
        max-width: 540px;
    }
}

.package-card h3,
.shared-block-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 28px;
    letter-spacing: 0.45px;
}

.package-price {
    color: var(--cool-gray);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.package-copy,
.vendor-copy,
.shared-block-copy,
.vendor-phone,
.contact-meta-value {
    font-family: 'Inter', sans-serif;
}

.package-copy,
.vendor-copy,
.shared-block-copy {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 22.75px;
}

.package-copy-spaced {
    margin-bottom: 24px;
}

.package-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.package-list li {
    display: flex;
    gap: 12px;
    color: var(--warm-beige);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22.75px;
}

.package-list li::before,
.shared-block-list li::before {
    content: '+';
    color: var(--cool-gray);
    flex: 0 0 auto;
}

.shared-block-grid {
    margin-top: 40px;
    display: grid;
    gap: 32px;
}

.shared-block-copy-preline {
    white-space: pre-line;
}

.shared-block-cta {
    margin-top: 24px;
}

.center-link {
    margin-top: 72px;
    display: flex;
    justify-content: center;
}

.center-link a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-beige);
}

.center-link a span {
    border-bottom: 1px solid rgba(246, 245, 241, 0.3);
    padding-bottom: 4px;
}

.center-link a i {
    width: 1px;
    height: 48px;
    display: block;
    background: linear-gradient(to bottom, rgba(246, 245, 241, 0.5), transparent);
}

.testimonial-card blockquote {
    margin: 0;
    color: rgba(246, 245, 241, 0.9);
    font-size: 16px;
    line-height: 24px;
    font-style: italic;
    letter-spacing: 0.01em;
}

.testimonial-author {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-softer);
}

.testimonial-author strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--warm-beige);
}

.testimonial-author span {
    margin-top: 4px;
    display: block;
    color: var(--cool-gray);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vendor-category + .vendor-category {
    margin-top: 56px;
}

.vendor-category-title {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-soft);
    line-height: 28px;
    letter-spacing: 0.45px;
}

.vendor-logo-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.vendor-logo {
    display: inline-block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 6px;
    padding: 8px;
}

.vendor-logo-bg-white .vendor-logo {
    background: #fff;
}

.vendor-logo-bg-black .vendor-logo {
    background: #1a1a1a;
}

.vendor-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--cool-gray);
    margin-bottom: 4px;
    text-align: center;
}

.vendor-name a:hover {
    color: var(--cream);
}

.vendor-location {
    text-align: center;
    font-size: 13px;
    color: rgba(110, 115, 129, 0.7);
    margin-bottom: 4px;
}

.vendor-phone {
    text-align: center;
    font-size: 13px;
    color: rgba(110, 115, 129, 0.7);
    margin-bottom: 16px;
}

.vendor-card .vendor-copy {
    text-align: center;
}

.vendor-socials {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-softer);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.vendor-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 4px;
    color: rgba(110, 115, 129, 0.5);
    transition: color 0.2s ease;
}

.vendor-social-link:hover {
    color: var(--cool-gray);
}

.vendor-social-link svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.contact-wrap-spaced {
    margin-bottom: 96px;
}

.contact-meta {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-meta-label {
    margin-bottom: 4px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cool-gray);
}

.contact-meta-value {
    font-size: 14px;
    line-height: 22.75px;
    color: var(--warm-beige);
}

.contact-email-cta {
    display: block;
    width: 100%;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 16px 24px;
    border: 0;
    border-radius: 4px;
    background: var(--cream);
    color: var(--dark-bg);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.contact-form-toggle {
    cursor: pointer;
}

.contact-email-cta:hover {
    background: var(--warm-beige);
    color: var(--dark-bg);
}

.contact-email-note {
    margin-top: 16px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22.75px;
}

.contact-form-wrap {
    margin-top: 24px;
    max-height: 2600px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.contact-form-wrap.is-collapsed {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 16px 24px;
    border: 0;
    border-radius: 4px;
    background: var(--cream);
    color: var(--dark-bg);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.button-primary:hover {
    background: var(--warm-beige);
    color: var(--dark-bg);
}

.contact-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cool-gray);
}

.contact-form-alert {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 14px 16px;
    font-size: 14px;
}

.contact-form-alert-error {
    border: 1px solid rgba(248, 113, 113, 0.30);
    background: rgba(248, 113, 113, 0.10);
    color: #fecaca;
}

.contact-form-shell {
    display: grid;
    gap: 16px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 4px;
    background: rgba(19, 18, 24, 0.6);
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: var(--warm-beige);
}

.contact-form-textarea {
    resize: vertical;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: rgba(246, 245, 241, 0.42);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: rgba(246, 245, 241, 0.28);
}

.contact-form-error {
    margin-top: 8px;
    font-size: 14px;
    color: var(--error-text);
}

.contact-form-submit-wrap {
    padding-top: 8px;
}

.contact-form-submit {
    width: 100%;
}

.footer-section {
    padding-top: 0;
    padding-bottom: 64px;
}

.footer-bar {
    border-top: 1px solid var(--border-soft);
    padding-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
}

.footer-col-left,
.footer-col-center,
.footer-col-right {
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    line-height: 16px;
    color: var(--cool-gray);
}

.footer-brand-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--warm-beige);
    transition: color 0.25s ease;
}

.footer-brand-link:hover {
    color: var(--cream);
}

.footer-socials {
    justify-content: center;
}

.footer-socials a {
    color: var(--text-faint);
}

.footer-socials a:hover {
    color: var(--warm-beige);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

.footer-note {
    font-size: 12px;
    color: var(--cool-gray);
}

.footer-recaptcha {
    margin-top: 24px;
    text-align: center;
    font-size: 11px;
    color: var(--cool-gray);
}

.footer-recaptcha a {
    color: var(--warm-beige);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .film-grid,
    .vendor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .package-card {
        flex: 0 0 calc(50% - 16px);
    }

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

    .contact-card {
        padding: 32px;
    }

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

    .footer-col-left {
        text-align: left;
    }

    .footer-col-center {
        text-align: center;
    }

    .footer-col-right {
        text-align: right;
    }

    .footer-socials {
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .two-col,
    .contact-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 64px;
    }

    .film-grid,
    .testimonial-grid,
    .vendor-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .package-card {
        flex: 0 0 calc(33.333% - 22px);
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 40px;
        line-height: 42px;
    }
}