/*
   =========================================================
   ZOOM PHOTO STUDIO - FOOTER.CSS vFONT-1.0

   Art of Boudoir footer structure adapted for the
   Zoom Photo Studio colour palette.
   =========================================================
*/

/*
   =========================================================
   FOOTER COLOUR SYSTEM
   =========================================================
*/

.site_footer {
    --footer-background: #211d1a;
    --footer-background-soft: #29231f;
    --footer-text: rgba( 253, 251, 248, 0.70 );
    --footer-text-bright: #fdfbf8;
    --footer-bronze: var(--zoom-bronze);
    --footer-bronze-light: #d2b9a4;
    --footer-border: rgba( 210, 185, 164, 0.16 );
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--footer-background);
    color: var(--footer-text);
}

/*
   =========================================================
   MAIN FOOTER
   =========================================================
*/

.footer_main {
    width: 100%;
    background: radial-gradient( circle at 50% 0%, rgba( 170, 130, 100, 0.12 ), transparent 38% ), var(--footer-background);
}

.footer_inner {
    width: min( 100% - 2rem, 96rem );
    margin: 0 auto;
    padding: 3rem 0;
}

/*
   =========================================================
   BRAND
   =========================================================
*/

.footer_brand {
    display: flex;
    width: 100%;
    margin: 0 auto 3rem;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

/*
   =========================================================
   BRAND LINES
   =========================================================
*/

.footer_brand_line {
    display: block;
    height: 1px;
    flex: 1 1 auto;
    background: linear-gradient( 90deg, transparent, var(--footer-bronze) );
}

.footer_brand_line:last-child {
    background: linear-gradient( 90deg, var(--footer-bronze), transparent );
}

/*
   =========================================================
   ZOOM WORDMARK
   =========================================================
*/

.footer_logo {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--footer-text-bright);
    line-height: 1;
    text-decoration: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

.footer_logo:hover, .footer_logo:focus-visible {
    opacity: 0.88;
    transform: scale(1.025);
}

.footer_logo_word {
    padding-left: 0.12em;
    color: var(--footer-text-bright);
    font-family: var(--zoom-serif);
    font-size: clamp( 2.73rem, 5vw, 4.2rem );
    font-weight: 400;
    letter-spacing: 0.12em;
}

.footer_logo_sub {
    margin-top: 0.45rem;
    padding-left: 0.48em;
    color: var(--footer-bronze-light);
    font-family: var(--zoom-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.48em;
}

/*
   =========================================================
   FOOTER COLUMNS
   MOBILE FIRST
   =========================================================
*/

.footer_columns {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

/*
   =========================================================
   MOBILE ACCORDION CARDS
   =========================================================
*/

.footer_column {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: rgba( 255, 255, 255, 0.035 );
    border: 1px solid var(--footer-border);
    border-radius: 0.75rem;
}

.footer_column summary {
    list-style: none;
}

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

/*
   =========================================================
   COLUMN HEADINGS
   =========================================================
*/

.footer_heading {
    display: flex;
    width: 100%;
    min-height: 4rem;
    margin: 0;
    padding: 1rem 1.1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--footer-bronze-light);
    cursor: pointer;
    font-family: var(--zoom-serif);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    line-height: 1.35;
    text-transform: uppercase;
}

/*
   =========================================================
   ACCORDION PLUS / MINUS
   =========================================================
*/

.footer_toggle {
    position: relative;
    display: block;
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.footer_toggle::before, .footer_toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 1px;
    background: var(--footer-bronze);
    transform: translate( -50%, -50% );
    transition: transform 220ms ease;
}

.footer_toggle::after {
    transform: translate( -50%, -50% ) rotate( 90deg );
}

.footer_column[open] .footer_toggle::after {
    transform: translate( -50%, -50% ) rotate( 0deg );
}

/*
   =========================================================
   COLUMN CONTENT
   =========================================================
*/

.footer_column_content {
    padding: 0 1.1rem 1.25rem;
    border-top: 1px solid rgba( 255, 255, 255, 0.06 );
}

/*
   =========================================================
   FOOTER LINK LISTS
   =========================================================
*/

.footer_links {
    margin: 0;
    padding: 1rem 0 0;
    list-style: none;
}

.footer_links li {
    margin: 0 0 0.68rem;
    padding: 0;
}

.footer_links li:last-child {
    margin-bottom: 0;
}

.footer_links a {
    color: var(--footer-text);
    font-family: var(--zoom-sans);
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2rem;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer_links a:hover, .footer_links a:focus-visible {
    color: var(--footer-bronze-light);
    text-decoration: underline;
    text-decoration-color: var(--footer-bronze);
}

/*
   =========================================================
   CONTACT
   =========================================================
*/

.footer_contact_spacer {
    padding-top: 0.9rem;
}

/*
   =========================================================
   COPYRIGHT / LEGAL BAR
   =========================================================
*/

.footer_legal {
    width: 100%;
    padding: 1.5rem 1rem 1.75rem;
    background: var(--zoom-cream);
    color: var(--zoom-charcoal);
    border-top: 1px solid var(--zoom-line);
}

.footer_legal_inner {
    width: min( 100%, 96rem );
    margin: 0 auto;
    text-align: center;
}

.footer_copyright {
    margin: 0 0 1rem;
    color: var(--zoom-charcoal);
    font-family: var(--zoom-serif);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.45;
}

/*
   =========================================================
   LEGAL LINKS
   =========================================================
*/

.footer_legal_navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.7rem;
}

.footer_legal_navigation a {
    color: var(--zoom-charcoal);
    font-family: var(--zoom-sans);
    font-size: 0.86rem;
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15rem;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer_legal_navigation a:hover, .footer_legal_navigation a:focus-visible {
    color: var(--zoom-bronze);
    text-decoration: none;
}

.footer_legal_navigation span {
    color: rgba( 29, 27, 25, 0.45 );
    font-size: 0.83rem;
}

/*
   =========================================================
   STANDARD MOBILE
   =========================================================
*/

@media (min-width: 30rem) {

    .footer_inner {
        width: min( 100% - 3rem, 96rem );
        padding: 3.5rem 0;
}

    .footer_brand {
        gap: 1.75rem;
}

}

/*
   =========================================================
   TABLET
   =========================================================
*/

@media ( min-width: 48rem ) and ( max-width: 67.99rem ) {

    .footer_inner {
        width: min( 100% - 4rem, 96rem );
        padding: 4rem 0;
}

    .footer_brand {
        margin-bottom: 3.5rem;
        gap: 2rem;
}

    .footer_heading {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
}

    .footer_column_content {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
}

}

/*
   =========================================================
   DESKTOP
   =========================================================
*/

@media (min-width: 68rem) {

    .footer_inner {
        width: min( 100% - 6rem, 96rem );
        padding: 4.5rem 0 5rem;
}

    /*
       =====================================================
       DESKTOP BRAND
       =====================================================
    */

    .footer_brand {
        width: 100%;
        margin-bottom: 4rem;
        gap: 2.5rem;
}

    /*
       =====================================================
       FOUR DESKTOP COLUMNS
       =====================================================
    */

    .footer_columns {
        display: grid;
        grid-template-columns: minmax( 0, 0.95fr ) minmax( 0, 1.25fr ) minmax( 0, 1fr ) minmax( 0, 1.15fr );
        gap: 0;
}

    /*
       =====================================================
       REMOVE MOBILE CARD APPEARANCE
       =====================================================
    */

    .footer_column {
        position: relative;
        display: block;
        min-width: 0;
        overflow: visible;
        background: transparent;
        border: 0;
        border-radius: 0;
}

    /*
       =====================================================
       FORCE DETAILS CONTENT OPEN
       =====================================================
    */

    .footer_column > .footer_column_content, .footer_column:not([open]) > .footer_column_content, .footer_column[open] > .footer_column_content {
        display: block !important;
        width: 100%;
        height: auto !important;
        max-height: none !important;
        visibility: visible !important;
        overflow: visible !important;
        opacity: 1 !important;
}

    /*
       =====================================================
       BRONZE VERTICAL DIVIDERS
       =====================================================
    */

    .footer_column:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 0.25rem;
        right: 0;
        bottom: 0.25rem;
        width: 1px;
        background: linear-gradient( 180deg, transparent 0%, rgba( 170, 130, 100, 0.72 ) 7%, rgba( 170, 130, 100, 0.72 ) 93%, transparent 100% );
}

    /*
       =====================================================
       DESKTOP HEADINGS
       =====================================================
    */

    .footer_heading {
        display: flex;
        width: 100%;
        min-height: 0;
        padding: 0 2rem 1.25rem;
        align-items: flex-start;
        justify-content: flex-start;
        cursor: default;
        font-size: 0.82rem;
        pointer-events: none;
}

    .footer_column:first-child .footer_heading {
        padding-left: 0;
}

    .footer_column:last-child .footer_heading {
        padding-right: 0;
}

    .footer_toggle {
        display: none;
}

    /*
       =====================================================
       DESKTOP COLUMN CONTENT
       =====================================================
    */

    .footer_column_content {
        display: block !important;
        padding: 0 2rem;
        border-top: 0;
}

    .footer_column:first-child .footer_column_content {
        padding-left: 0;
}

    .footer_column:last-child .footer_column_content {
        padding-right: 0;
}

    .footer_links {
        display: block;
        padding-top: 0;
}

    .footer_links li {
        display: block;
        margin-bottom: 0.62rem;
}

    .footer_links a {
        display: inline;
        font-size: clamp( 0.84rem, 0.84vw, 0.98rem );
}

    /*
       =====================================================
       DESKTOP LEGAL BAR
       =====================================================
    */

    .footer_legal {
        padding: 1.5rem 3rem;
}

    .footer_copyright {
        font-size: 0.98rem;
}

    .footer_legal_navigation {
        gap: 0.5rem 0.75rem;
}

    .footer_legal_navigation a {
        font-size: 0.84rem;
}

}

/*
   =========================================================
   LARGE DESKTOP
   =========================================================
*/

@media (min-width: 90rem) {

    .footer_inner {
        width: min( 100% - 8rem, 100rem );
}

    .footer_heading {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
        font-size: 0.86rem;
}

    .footer_column_content {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
}

    .footer_links a {
        font-size: 0.96rem;
}

}

/*
   =========================================================
   SMALL MOBILE
   =========================================================
*/

@media (max-width: 29.99rem) {

    .footer_inner {
        width: min( 100% - 1.25rem, 96rem );
        padding: 2.5rem 0;
}

    .footer_brand {
        margin-bottom: 2.25rem;
        gap: 0.9rem;
}

    .footer_logo_word {
        font-size: 2.84rem;
}

    .footer_logo_sub {
        font-size: 0.58rem;
}

    .footer_heading {
        min-height: 3.75rem;
        padding: 0.9rem 1rem;
        font-size: 0.8rem;
}

    .footer_column_content {
        padding-right: 1rem;
        padding-bottom: 1.1rem;
        padding-left: 1rem;
}

    .footer_links a {
        font-size: 0.96rem;
}

    .footer_legal {
        padding: 1.5rem 0.75rem 1.75rem;
}

    .footer_copyright {
        max-width: 18rem;
        margin-right: auto;
        margin-left: auto;
        font-size: 0.92rem;
}

    .footer_legal_navigation {
        gap: 0.65rem 0.55rem;
}

    .footer_legal_navigation a {
        font-size: 0.8rem;
}

    .footer_legal_navigation span {
        color: rgba( 170, 130, 100, 0.85 );
}

}

/*
   =========================================================
   REDUCED MOTION
   =========================================================
*/

@media ( prefers-reduced-motion: reduce ) {

    .footer_logo, .footer_toggle::before, .footer_toggle::after, .footer_links a, .footer_legal_navigation a {
        transition: none;
}

}
