/* =========================================================
   REGISTER PAGE
========================================================= */

.register-page {
    background: #f1ede5;
    color: #18252b;
    overflow-x: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.register-page .site-header {
    background: #f1ede5;
    border-bottom: 1px solid rgba(24, 37, 43, 0.08);
}

.register-page .nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.register-page .brand {
    color: #18252b;
    text-decoration: none;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
}

.nav-back {
    color: #68655f;
    text-decoration: none;

    font-size: 0.75rem;

    transition: color 0.2s ease;
}

.nav-back:hover {
    color: #927044;
}


/* =========================================================
   HERO
========================================================= */

.register-hero {
    padding: 90px 0 80px;
}

.back-link {
    display: inline-flex;

    margin-bottom: 60px;

    color: #716c63;
    text-decoration: none;

    font-size: 0.77rem;

    transition: color 0.2s ease;
}

.back-link:hover {
    color: #927044;
}

.register-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        350px;

    gap: 70px;

    align-items: end;
}

.hero-kicker {
    color: #927044;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.register-intro h1 {
    margin: 18px 0 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(4.5rem, 8vw, 8rem);
    font-weight: 400;

    line-height: 0.84;

    letter-spacing: -0.06em;
}

.register-intro h1 span {
    color: #927044;
}

.register-intro > p {
    margin: 0 0 8px;

    color: #6c6962;

    font-size: 0.94rem;
    line-height: 1.85;
}


/* =========================================================
   OPTIONS
========================================================= */

.register-options-section {
    padding-bottom: 100px;
}

.registration-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


/* =========================================================
   REGISTRATION CARD
========================================================= */

.registration-card {
    position: relative;

    min-height: 480px;

    padding: 42px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    border-radius: 22px;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(30, 30, 25, 0.12);
}

.individual-card {
    background: #ffffff;
}

.group-card {
    background: #142b39;
    color: #ffffff;
}


/* =========================================================
   CARD TOP
========================================================= */

.card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.card-number {
    color: #927044;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.card-arrow {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(24, 37, 43, 0.12);
    border-radius: 50%;

    color: #927044;

    font-size: 1.15rem;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.group-card .card-arrow {
    border-color: rgba(255, 255, 255, 0.18);
    color: #d0ac70;
}

.registration-card:hover .card-arrow {
    background: #927044;
    color: #ffffff;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.card-content {
    max-width: 560px;
}

.card-kicker {
    display: block;

    margin-bottom: 12px;

    color: #927044;

    font-size: 0.67rem;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.card-content h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.045em;
}

.card-content p {
    max-width: 450px;

    margin: 24px 0 0;

    color: #77736c;

    font-size: 0.87rem;
    line-height: 1.75;
}

.group-card .card-content p {
    color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   CARD FOOTER
========================================================= */

.card-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 22px;

    border-top: 1px solid rgba(24, 37, 43, 0.1);

    color: #343a3b;

    font-size: 0.74rem;
    font-weight: 600;
}

.group-card .card-footer {
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.footer-arrow {
    color: #927044;

    font-size: 1.1rem;

    transition: transform 0.2s ease;
}

.registration-card:hover .footer-arrow {
    transform: translateX(5px);
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.register-note {
    padding: 70px 0;

    background: #e4ddd1;
}

.note-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.note-label {
    color: #927044;

    font-size: 0.67rem;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.note-inner p {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    color: #27343a;

    font-size: 1.8rem;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 30px 0;

    background: #142b39;

    color: rgba(255, 255, 255, 0.5);
}

.site-footer p {
    margin: 0;

    font-size: 0.68rem;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .register-intro {
        grid-template-columns:
            minmax(0, 1fr)
            270px;

        gap: 40px;
    }

    .registration-card {
        min-height: 440px;
        padding: 32px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .register-hero {
        padding: 65px 0 55px;
    }

    .back-link {
        margin-bottom: 40px;
    }

    .register-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .register-intro h1 {
        font-size: 4.3rem;
    }

    .registration-grid {
        grid-template-columns: 1fr;
    }

    .registration-card {
        min-height: 400px;
        padding: 28px;
        border-radius: 17px;
    }

    .card-content h2 {
        font-size: 3.5rem;
    }

    .register-options-section {
        padding-bottom: 70px;
    }

    .register-note {
        padding: 50px 0;
    }

    .note-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .note-inner p {
        font-size: 1.5rem;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .register-intro h1 {
        font-size: 3.7rem;
    }

    .registration-card {
        min-height: 370px;
        padding: 23px;
    }

    .card-content h2 {
        font-size: 3rem;
    }
}