:root {
    --navy: #0B2B50;
    --navy-2: #123A64;
    --coral: #F0523D;
    --blue: #2C7EBB;
    --green: #65A954;
    --pink: #EE7180;
    --cream: #FBF7EE;
    --gold: #F7B941;
    --light-blue: #DFF0FA;
    --light-green: #E7F2D9;
    --light-pink: #FBE1E5;
    --text: #10213c;
    --muted: #5e6980;
    --line: rgba(11, 43, 80, .13);
    --shadow: 0 16px 36px rgba(11, 43, 80, .13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 112px;
    padding: 20px clamp(18px, 5vw, 64px);
    background: rgba(251, 247, 238, .96);
    box-shadow: 0 4px 20px rgba(11, 43, 80, .06);
    backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand img {
    display: block;
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.brand span,
.footer-brand span {
    display: grid;
    gap: 0;
}

.brand strong,
.footer-brand strong {
    display: block;
    color: var(--navy);
    font-size: 35px;
    font-weight: 900;
    line-height: .86;
    letter-spacing: 0;
}

.brand strong span,
.footer-brand strong span {
    display: inline;
    color: var(--coral);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 3vw, 44px);
    width: 100%;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
}

.main-nav a {
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    height: 3px;
    border-radius: 99px;
    background: transparent;
}

.main-nav a.is-active,
.main-nav a:hover {
    color: var(--coral);
}

.main-nav a.is-active::after,
.main-nav a:hover::after {
    background: var(--coral);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 14px 24px;
    border: 0;
    border-radius: 8px;
    background: var(--coral);
    color: #fff;
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 0 #c93d2c;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.nav-cta:hover,
.button:hover {
    transform: translateY(-1px);
    background: #e34b37;
    box-shadow: 0 9px 0 #bd3728;
}

.nav-cta img {
    width: 28px;
    height: 28px;
}

.button-outline {
    background: rgba(11, 43, 80, .24);
    border: 2px solid rgba(255, 255, 255, .86);
    box-shadow: none;
}

.button-outline:hover {
    background: rgba(11, 43, 80, .38);
    box-shadow: none;
}

.button-large {
    min-width: min(320px, 100%);
    font-size: 20px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 8px;
    background: var(--navy);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 5px auto;
    border-radius: 99px;
    background: #fff;
}

.hero {
    position: relative;
    min-height: 548px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 24, 48, .98) 0%, rgba(5, 24, 48, .88) 34%, rgba(5, 24, 48, .28) 70%, rgba(5, 24, 48, .05) 100%),
        var(--hero-image) center / cover no-repeat;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 7% 14%, var(--gold) 0 9px, transparent 10px),
        radial-gradient(circle at 93% 13%, var(--gold) 0 9px, transparent 10px),
        radial-gradient(circle at 91% 22%, rgba(255,255,255,.42) 0 5px, transparent 6px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(660px, 100%);
    padding: clamp(64px, 9vw, 110px) clamp(22px, 6vw, 72px);
}

.hero h1 {
    margin: 0;
    max-width: 720px;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .24);
}

.hero p {
    max-width: 560px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .94);
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.35;
}

.breadcrumb {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .9);
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
}

.hero-popcorn {
    position: absolute;
    right: -12px;
    bottom: -2px;
    z-index: 2;
    width: min(130px, 18vw);
}

.hero-compact {
    min-height: 420px;
}

.hero-compact .hero-content {
    padding-top: clamp(46px, 7vw, 82px);
    padding-bottom: clamp(46px, 7vw, 82px);
}

.section {
    width: min(1190px, calc(100% - 42px));
    margin: 0 auto;
    padding: 46px 0;
}

.section-overlap {
    position: relative;
    z-index: 4;
    margin-top: -86px;
    padding-top: 0;
}

.section-heading {
    margin: 0 auto 28px;
    text-align: center;
}

.section-heading-left {
    text-align: left;
}

.section-heading h2,
.wide-cta h2,
.text-block h2,
.form-card h2,
.success-panel h2,
.order-summary h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: 0;
}

.section-heading p,
.wide-cta p,
.text-block p,
.form-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 18px;
}

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

.club-card,
.price-card,
.side-panel,
.form-card,
.contact-panel,
.success-panel {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
}

.club-card {
    display: flex;
    min-height: 452px;
    flex-direction: column;
    align-items: center;
    padding: 32px 28px 28px;
    text-align: center;
}

.club-art {
    display: grid;
    width: 172px;
    height: 142px;
    place-items: center;
    margin-bottom: 8px;
    border-radius: 999px;
    background: var(--soft);
}

.club-art img {
    width: 126px;
    height: 126px;
    object-fit: contain;
}

.club-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 43px);
    line-height: 1;
}

.price-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 16px 0 14px;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.club-card p {
    margin: 0 0 22px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.38;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: min(270px, 100%);
    min-height: 58px;
    margin-top: auto;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
}

.check-list {
    display: grid;
    gap: 9px;
    margin: 0 0 24px;
    padding: 0;
    color: var(--text);
    text-align: left;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 800;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
}

.benefit-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: min(1130px, calc(100% - 42px));
    margin: 18px auto 0;
    padding: 24px 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
}

.benefit-strip div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0 18px;
    align-items: center;
    min-height: 86px;
    padding: 0 22px;
    border-right: 1px solid var(--line);
}

.benefit-strip div:last-child {
    border-right: 0;
}

.benefit-strip img {
    grid-row: span 2;
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.benefit-strip strong {
    color: var(--navy);
    font-size: 21px;
    line-height: 1.1;
}

.benefit-strip span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.25;
}

.section-blue {
    width: min(1190px, calc(100% - 42px));
    margin-top: 34px;
    padding: 36px;
    border-radius: 20px;
    background: linear-gradient(180deg, #eef8fe, #dff0fa);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.info-item {
    min-height: 196px;
    padding: 24px;
    border-right: 1px solid rgba(11, 43, 80, .12);
}

.info-item img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.info-item h3 {
    margin: 14px 0 8px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.1;
}

.info-item p {
    margin: 0;
    color: var(--text);
}

.wide-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1130px, calc(100% - 42px));
    margin: 46px auto;
    padding: 30px 40px;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(5, 24, 48, .98), rgba(5, 24, 48, .88)),
        url('/assets/Hadsten_FilmKlub_Webassets/03_decorations/filmstrip_corner.png') right bottom / 180px auto no-repeat;
    color: #fff;
}

.wide-cta h2,
.wide-cta p {
    color: #fff;
}

.process-grid,
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.process-card {
    position: relative;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 156px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 24px rgba(11, 43, 80, .08);
}

.process-card img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.process-card h3 {
    margin: 0 0 6px;
    color: var(--navy);
    font-size: 22px;
}

.process-card p {
    margin: 0;
    color: var(--muted);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-weight: 900;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.film-list {
    display: grid;
    gap: 16px;
}

.film-row {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 22px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(11, 43, 80, .08);
}

.film-row img {
    width: 112px;
    height: 112px;
    object-fit: contain;
}

.film-row span {
    color: var(--coral);
    font-weight: 900;
}

.film-row h3 {
    margin: 4px 0 6px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.1;
}

.film-row p {
    margin: 0;
    color: var(--muted);
}

.side-panel {
    position: sticky;
    top: 132px;
    padding: 28px;
    text-align: center;
}

.side-panel > img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 999px;
    background: var(--soft);
}

.side-panel h2 {
    margin: 0;
    color: var(--navy);
    font-size: 34px;
}

.price-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 34px;
    text-align: center;
}

.price-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 999px;
    background: var(--soft);
}

.price-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: 34px;
}

.price-card strong {
    color: var(--accent);
    font-size: 42px;
    line-height: 1;
}

.price-card span {
    color: var(--muted);
    font-weight: 800;
}

.price-card a {
    margin-top: 12px;
    color: var(--navy);
    font-weight: 900;
}

.text-block,
.contact-panel {
    padding: 32px;
}

.text-block {
    border-radius: 18px;
    background: rgba(255, 255, 255, .84);
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.contact-method img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.contact-method strong,
.contact-method span {
    display: block;
}

.contact-method strong {
    color: var(--navy);
    font-size: 20px;
}

.contact-method span {
    color: var(--muted);
}

.form-card {
    display: grid;
    gap: 16px;
    padding: 32px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(11, 43, 80, .24);
    border-radius: 8px;
    padding: 12px 14px;
    background: #fff;
    color: var(--text);
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    outline: 3px solid rgba(44, 126, 187, .18);
}

.form-errors,
.flash,
.success-panel {
    width: min(900px, 100%);
    margin: 0 auto 22px;
    padding: 18px 22px;
    border-radius: 12px;
}

.form-errors {
    border: 1px solid rgba(240, 82, 61, .35);
    background: #fff1ef;
    color: #872817;
}

.form-errors ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.flash-success {
    border: 1px solid rgba(101, 169, 84, .36);
    background: #eff8ec;
    color: #245e22;
}

.success-panel {
    text-align: center;
}

.membership-form {
    display: grid;
    gap: 28px;
}

.membership-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.membership-card {
    position: relative;
    min-height: 330px;
    padding: 28px;
    border: 2px solid transparent;
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 28px rgba(11, 43, 80, .1);
    cursor: pointer;
}

.membership-card.is-selected,
.membership-card:has(input:checked) {
    border-color: var(--accent);
}

.membership-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-dot {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 26px;
    height: 26px;
    border: 2px solid rgba(11, 43, 80, .28);
    border-radius: 999px;
    background: #fff;
}

.membership-card input:checked + .radio-dot {
    border: 7px solid var(--accent);
}

.membership-card img {
    display: block;
    width: 132px;
    height: 132px;
    object-fit: contain;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: var(--soft);
}

.membership-card strong {
    display: block;
    color: var(--navy);
    font-size: 34px;
    line-height: 1;
    text-align: center;
}

.membership-card small {
    display: block;
    color: var(--text);
    font-size: 16px;
    line-height: 1.35;
    text-align: center;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

.order-summary {
    position: sticky;
    top: 132px;
    padding: 30px;
    border: 1px solid rgba(44, 126, 187, .18);
    border-radius: 20px;
    background: linear-gradient(180deg, #eef8fe, #dff0fa);
}

.order-summary h2 {
    font-size: 28px;
}

.summary-club {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}

.summary-club img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    border-radius: 999px;
    background: #fff;
}

.summary-club span,
.summary-club strong {
    display: block;
}

.summary-club span {
    color: var(--muted);
}

.summary-club strong {
    color: var(--navy);
    font-size: 22px;
}

.order-summary dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.order-summary dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(11, 43, 80, .16);
}

.order-summary dt,
.order-summary dd {
    margin: 0;
}

.order-summary dd,
.total {
    font-weight: 900;
}

.total {
    color: var(--navy);
    font-size: 20px;
}

.summary-benefits {
    display: grid;
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.summary-benefits li {
    position: relative;
    padding-left: 28px;
    font-weight: 800;
}

.summary-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
}

.form-actions {
    display: flex;
    justify-content: center;
}

.site-footer {
    margin-top: 56px;
    background:
        linear-gradient(90deg, rgba(5, 24, 48, .98), rgba(5, 24, 48, .94)),
        url('/assets/Hadsten_FilmKlub_Webassets/03_decorations/filmstrip_corner.png') right bottom / 220px auto no-repeat;
    color: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.1fr repeat(3, auto);
    gap: 34px;
    align-items: center;
    width: min(1190px, calc(100% - 42px));
    min-height: 140px;
    margin: 0 auto;
}

.footer-brand img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.site-footer a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
}

.site-footer a:not(.footer-brand) {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, .28);
}

.site-footer img {
    width: 38px;
    height: 38px;
}

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

.footer-brand {
    gap: 8px;
}

.footer-brand strong {
    color: #fff;
    font-size: 31px;
}

@media (max-width: 980px) {
    .site-header {
        min-height: 90px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% - 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 16px;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .club-grid,
    .benefit-strip,
    .info-grid,
    .process-grid,
    .price-grid,
    .membership-options,
    .checkout-grid,
    .two-column,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .benefit-strip div,
    .site-footer a:not(.footer-brand) {
        border-right: 0;
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 18px 0 0;
    }

    .side-panel,
    .order-summary {
        position: static;
    }

    .wide-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 16px;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .brand strong {
        font-size: 18px;
    }

    .hero {
        min-height: 500px;
        background:
            linear-gradient(180deg, rgba(5, 24, 48, .96) 0%, rgba(5, 24, 48, .78) 66%, rgba(5, 24, 48, .36) 100%),
            var(--hero-image) center / cover no-repeat;
    }

    .hero-content {
        padding: 48px 20px;
    }

    .hero-actions,
    .button,
    .nav-cta {
        width: 100%;
    }

    .section,
    .section-blue,
    .benefit-strip,
    .wide-cta,
    .footer-inner {
        width: min(100% - 28px, 1190px);
    }

    .section-blue,
    .form-card,
    .contact-panel,
    .text-block,
    .order-summary,
    .wide-cta {
        padding: 22px;
    }

    .section-overlap {
        margin-top: -48px;
    }

    .club-card {
        min-height: auto;
    }

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

    .film-row img {
        width: 78px;
        height: 78px;
    }

    .footer-inner {
        padding: 30px 0;
    }
}
