/* 
 * Winning All Around - Echoes of Eden V6
 * Art-Directed Polish / Visual Manifesto Direction
 */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --waa-blue: #1c54a5;
    --waa-orange: #ef7037;
    --waa-white: #ffffff;
    --waa-navy: #0d1321;
    --waa-gray-light: #f1f5f9;
    --waa-gray-medium: #cbd5e1;
    
    --container-max: 1240px;
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Foundation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--waa-navy);
    background: var(--waa-white);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Subtle Film Grain Texture */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 1000;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
    font-family: 'Archivo', sans-serif;
    letter-spacing: -0.05em;
    line-height: 0.95;
    text-transform: none;
}

/* Editorial Frame & Abstract Photo Treatments */
.editorial-frame {
    position: relative;
    border-radius: 4px; /* More fashion-forward subtle roundness */
    border: 1px solid rgba(0,0,0,0.05);
    background-color: var(--waa-gray-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}

/* Custom Abstract Art Treatments */
.abstract-01 { background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); position: relative; }
.abstract-01::before { content: ""; position: absolute; top: 10%; right: 10%; width: 40%; height: 40%; background: rgba(28, 84, 165, 0.05); border-radius: 50%; filter: blur(40px); }

.abstract-02 { background: linear-gradient(45deg, #f1f5f9 0%, #e2e8f0 100%); }
.abstract-03 { background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%); }

/* System Labels */
.label-sys {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--waa-navy);
    opacity: 0.4;
    z-index: 5;
}

.label-corner-blue {
    position: absolute;
    bottom: 0; right: 0;
    width: 40px; height: 1px;
    background: var(--waa-blue);
}

/* 1. Header */
header {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 500;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    font-weight: 900; 
    font-size: 1.1rem; 
    font-family: 'Archivo', sans-serif; 
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--waa-blue);
    text-decoration: none;
    border-bottom: 2px solid var(--waa-orange);
    padding-bottom: 2px;
}
.header-tag { font-size: 0.75rem; font-weight: 800; opacity: 0.5; letter-spacing: 0.05em; }

/* 2. Hero Section - True Full-Bleed Atmosphere */
.hero {
    padding: 2rem 0 5rem;
    position: relative;
    width: 100%;
    background: transparent;
    overflow: hidden;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Localized Photographic Grain (Full-Bleed) */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='pn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23pn)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 1;
}

/* Intentional full-width transition fade */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(13, 19, 33, 0.08));
    z-index: 1;
    pointer-events: none;
}

/* Ambient Light Wash (Full Browser Width) */
.hero-light-wash {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(220px); /* Enhanced blur */
    opacity: 0.12;
    animation: slowHaze 60s ease-in-out infinite alternate;
}

.glow-orange { width: 90vw; height: 90vw; background: var(--waa-orange); top: -30vw; left: -20vw; }
.glow-blue { width: 80vw; height: 80vw; background: var(--waa-blue); top: 10%; right: -20vw; animation-duration: 80s; animation-delay: -10s; }

@keyframes slowHaze {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(4vw, 2vw) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .glow-blob { animation: none; transform: none; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 0.95fr 1.05fr; gap: 4rem; }
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--waa-orange);
    margin-bottom: 1rem;
    display: block;
}

.hero h1 { font-size: clamp(3rem, 10vw, 5.8rem); color: var(--waa-blue); margin-bottom: 1.5rem; }
.hero-p { font-size: 1.15rem; color: #475569; max-width: 460px; margin-bottom: 3rem; font-weight: 400; }

/* Layered Composition (High Contrast) */
.hero-composition {
    position: relative;
    width: 100%;
    aspect-ratio: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blue image-specific focal glow */
.hero-composition::after {
    content: "";
    position: absolute;
    width: 110%; height: 110%;
    background: radial-gradient(circle, rgba(28, 84, 165, 0.1) 0%, transparent 75%);
    filter: blur(80px);
    z-index: 0;
}

.frame-main {
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #fff;
    overflow: hidden; 
    box-shadow: 0 50px 140px rgba(0, 0, 0, 0.3), 0 0 60px rgba(28, 84, 165, 0.1); 
    border: 1px solid rgba(255,255,255,0.1);
}

.frame-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Adjusted for common fashion portraits */
    display: block;
}

/* Redundant card removed for V7 */
.frame-detail {
    display: none;
}

.tag-ea {
    position: absolute;
    top: 2rem; right: 2rem;
    background: var(--waa-orange);
    color: #fff;
    padding: 0.3rem 0.6rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    z-index: 10;
    text-transform: uppercase;
}

/* 3. Integrated Form Card (Primary Action) */
.form-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08), 0 10px 25px rgba(0, 0, 0, 0.02);
    position: relative;
    margin-top: 1rem;
}

/* Orange square rule detail */
.form-card::before {
    content: "";
    position: absolute;
    top: 3rem; left: 1.5rem;
    width: 3px; height: 36px;
    background: var(--waa-orange);
}

.form-card h2 { font-size: 1.8rem; margin-bottom: 0.25rem; padding-left: 0.5rem; letter-spacing: -0.02em; }
.form-helper { font-size: 0.9rem; font-weight: 500; color: #64748b; margin-bottom: 2.5rem; padding-left: 0.5rem; }

.f-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .f-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

.f-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

input, select {
    width: 100%;
    padding: 1.15rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-premium);
}

input:focus { border-color: var(--waa-blue); box-shadow: 0 0 0 4px rgba(28, 84, 165, 0.05); outline: none; }

.checkbox-wrap { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.5rem; padding: 0.5rem; cursor: pointer; }
.checkbox-wrap input { width: 1.2rem; height: 1.2rem; margin-top: 0.15rem; cursor: pointer; }
.checkbox-wrap label { font-size: 0.85rem; opacity: 0.8; font-weight: 500; cursor: pointer; line-height: 1.4; }

.btn-cta {
    display: block; width: 100%; border: none;
    background: var(--waa-blue); color: #fff;
    padding: 1.4rem; font-family: 'Archivo', sans-serif;
    font-weight: 800; font-size: 1.1rem; border-radius: 6px;
    cursor: pointer; margin-top: 2rem;
    box-shadow: 0 4px 14px rgba(28, 84, 165, 0.15);
    transition: var(--transition-premium);
}

.btn-cta:hover { background: #113875; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(28, 84, 165, 0.25); }

.f-optional label { opacity: 0.3 !important; }
.f-optional input { opacity: 0.7; }

/* 4. Manifesto Section (Navy) */
.statement {
    padding: 8rem 0;
    background: var(--waa-navy);
    color: var(--waa-white);
    position: relative;
}

.statement::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(28, 84, 165, 0.1) 0%, transparent 50%);
}

.statement-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; position: relative; z-index: 5; }
@media (min-width: 1024px) { .statement-grid { grid-template-columns: 0.8fr 1.2fr; gap: 8rem; } }

.statement h2 { font-size: 4.5rem; max-width: 400px; }
.statement-body { font-size: 1.6rem; font-weight: 300; line-height: 1.5; opacity: 0.9; }

.manifesto-side { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; display: flex; gap: 3rem; }
.manifesto-label { font-family: 'Archivo', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; opacity: 0.5; text-transform: uppercase; }

/* 5. Instagram Social Section (Secondary Focus) */
.social-cta {
    padding: 6rem 0 8rem;
    text-align: center;
    background: #fff;
}

.social-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--waa-navy);
}

.social-p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Success State (Integrated) */
#success-message { display: none; text-align: center; padding: 4rem 2.5rem; }
#success-message h2 { font-size: 3.5rem; color: var(--waa-blue); margin-bottom: 1rem; }
#success-message p { font-size: 1.1rem; color: #64748b; margin-bottom: 3rem; }

/* 7. Footer */
footer { padding: 4rem 0 5rem; border-top: 1px solid #f1f5f9; text-align: center; }
.footer-logo { display: inline-block; margin-bottom: 1.5rem; }

.btn-insta {
    display: inline-flex; align-items: center; border: 1.5px solid #e2e8f0;
    padding: 0.8rem 2rem; border-radius: 8px; color: var(--waa-blue);
    font-weight: 700; font-size: 0.9rem; text-decoration: none;
    transition: var(--transition-premium);
}

.btn-insta:hover { border-color: var(--waa-blue); background: rgba(28, 84, 165, 0.03); }

.footer-accent { font-size: 0.65rem; opacity: 0.3; margin-top: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* Mobile Adaptations (QR Capture Optimized) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    header {
        padding: 1.1rem 0;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .logo {
        font-size: 0.95rem;
        line-height: 1.1;
        letter-spacing: 0.16em;
        max-width: 145px;
    }

    .header-tag {
        font-size: 0.62rem;
        line-height: 1.25;
        letter-spacing: 0.12em;
        text-align: right;
        max-width: 110px;
    }

    .hero {
        padding: 1.4rem 0 3.75rem;
    }

    .hero-grid {
        gap: 2.75rem;
    }

    .hero-eyebrow {
        margin-bottom: 0.75rem;
        font-size: 0.62rem;
        line-height: 1.2;
        letter-spacing: 0.18em;
    }

    .hero h1 {
        font-size: 2.95rem;
        line-height: 0.92;
        letter-spacing: -0.07em;
        margin-bottom: 1rem;
    }

    .hero-p {
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 1.5rem;
        color: #64748b;
    }

    .form-card {
        padding: 1.75rem 1.25rem 1.5rem;
        margin-top: 0.75rem;
        border-radius: 12px;
        box-shadow: 0 18px 50px rgba(0,0,0,0.08);
    }

    .form-card::before {
        display: none;
    }

    .form-card h2 {
        font-size: 1.55rem;
        line-height: 1;
        margin-bottom: 0.35rem;
        padding-left: 0;
        letter-spacing: -0.04em;
    }

    .form-helper {
        margin-bottom: 1.6rem;
        padding-left: 0;
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .f-grid {
        gap: 1rem;
    }

    .f-grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .f-group label {
        font-size: 0.62rem;
        letter-spacing: 0.11em;
        margin-bottom: 0.45rem;
    }

    input,
    select {
        height: 3.35rem;
        padding: 0.95rem;
        font-size: 0.95rem;
        border-radius: 7px;
    }

    .checkbox-wrap {
        gap: 0.75rem;
        margin-top: 1.25rem;
        padding: 0.25rem 0;
    }

    .checkbox-wrap input {
        width: 1rem;
        height: 1rem;
        min-width: 1rem;
        margin-top: 0.2rem;
    }

    .checkbox-wrap label {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .btn-cta {
        margin-top: 1.5rem;
        padding: 1.15rem;
        font-size: 0.95rem;
        border-radius: 7px;
    }

    .hero-composition {
        margin-top: 0.75rem;
        aspect-ratio: 1.05;
        max-height: 330px;
    }

    .frame-main {
        border-radius: 6px;
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
    }

    .frame-main img {
        object-position: center 22%;
    }

    .tag-ea {
        top: 1.25rem;
        right: 1.25rem;
        font-size: 0.5rem;
        padding: 0.28rem 0.55rem;
    }

    .statement {
        padding: 4.5rem 0 4rem;
    }

    .statement-grid {
        gap: 2.5rem;
    }

    .statement h2 {
        font-size: 2.7rem;
        line-height: 0.95;
        margin-bottom: 0;
        max-width: 310px;
    }

    .statement-body {
        font-size: 1rem;
        line-height: 1.55;
    }

    .manifesto-side {
        margin-top: 2.5rem;
        padding-top: 1.75rem;
        gap: 1.75rem;
        justify-content: space-between;
    }

    .manifesto-label {
        font-size: 0.55rem;
        line-height: 1.35;
        letter-spacing: 0.18em;
    }

    .social-cta {
        padding: 3.75rem 0 4rem;
    }

    .social-cta h3 {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .social-p {
        font-size: 0.95rem;
        line-height: 1.45;
        margin-bottom: 2rem;
    }

    .btn-insta {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.25rem;
    }

    footer {
        padding: 3.25rem 0 4rem;
    }

    .footer-logo {
        font-size: 0.95rem;
    }

    .footer-accent {
        font-size: 0.55rem;
        letter-spacing: 0.12em;
    }
}

/* FINAL MOBILE FIXES */
@media (max-width: 768px) {
    .form-card::before {
        display: none !important;
    }

    .form-card h2 {
        padding-left: 0 !important;
    }

    .form-helper {
        padding-left: 0 !important;
    }

    .header-tag {
        white-space: nowrap !important;
        max-width: none !important;
        font-size: 0.58rem !important;
    }

    .hero-composition {
        margin-top: 0.25rem !important;
    }
}

/* FINAL TINY POLISH */
@media (max-width: 768px) {
    .hero {
        padding-top: 1.75rem !important;
    }

    .btn-cta {
        border-radius: 9px !important;
        box-shadow: 0 10px 24px rgba(28, 84, 165, 0.22) !important;
    }
}

/* KEEP TOP LOGO ON ONE LINE */
@media (max-width: 768px) {
    .logo {
        white-space: nowrap !important;
        max-width: none !important;
        font-size: 0.82rem !important;
        letter-spacing: 0.13em !important;
    }
}

/* FORCE HEADER LOGO ONE LINE */
@media (max-width: 768px) {
    header .logo {
        display: inline-block !important;
        white-space: nowrap !important;
        width: auto !important;
        min-width: max-content !important;
        max-width: none !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.08em !important;
        line-height: 1 !important;
    }

    header .header-inner {
        gap: 0.65rem !important;
    }

    header .header-tag {
        font-size: 0.52rem !important;
        letter-spacing: 0.08em !important;
        white-space: nowrap !important;
        flex-shrink: 1 !important;
    }
}

/* FORCE MOBILE HEADER INTO ONE ROW */
@media (max-width: 768px) {
    header {
        padding: 0.85rem 0 !important;
    }

    header .header-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 0.75rem !important;
    }

    header .logo {
        display: block !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        max-width: none !important;
        font-size: 0.68rem !important;
        letter-spacing: 0.08em !important;
        line-height: 1 !important;
    }

    header .header-tag {
        display: block !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        font-size: 0.5rem !important;
        letter-spacing: 0.08em !important;
        line-height: 1 !important;
        text-align: right !important;
    }
}

/* FORM COLOR + DARK SECTION TIGHTENING */
@media (max-width: 768px) {
    .form-card {
        background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%) !important;
        border: 1px solid rgba(28, 84, 165, 0.14) !important;
        border-top: 4px solid var(--waa-orange) !important;
        box-shadow: 0 20px 55px rgba(28, 84, 165, 0.10) !important;
    }

    .form-card h2 {
        color: var(--waa-navy) !important;
    }

    .form-helper {
        color: #52647a !important;
    }

    input,
    select {
        background: #ffffff !important;
        border-color: rgba(28, 84, 165, 0.16) !important;
    }

    input:focus {
        border-color: var(--waa-blue) !important;
        box-shadow: 0 0 0 4px rgba(28, 84, 165, 0.08) !important;
    }

    .btn-cta {
        background: linear-gradient(135deg, #1c54a5 0%, #123e82 100%) !important;
        box-shadow: 0 12px 26px rgba(28, 84, 165, 0.26) !important;
    }

    .statement {
        padding: 3.25rem 0 3rem !important;
    }

    .statement-grid {
        gap: 1.75rem !important;
    }

    .statement h2 {
        margin-bottom: 0 !important;
    }

    .statement-body {
        margin-bottom: 0 !important;
    }

    .manifesto-side {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
    }
}

/* EVEN FORM LABEL + INPUT SPACING */
@media (max-width: 768px) {
    .f-grid,
    .f-grid-2 {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.15rem !important;
    }

    .f-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .f-group label {
        margin-bottom: 0 !important;
        line-height: 1 !important;
    }

    .f-group input {
        margin-top: 0 !important;
    }
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.85rem;
    color: inherit;
    opacity: 0.75;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.site-footer {
    border-top: 1px solid rgba(244, 241, 232, 0.14);
    padding: 64px 0 52px;
    background: #0f0f0d;
    text-align: center;
}

.site-footer .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.site-footer .footer-logo {
    color: #f4f1e8;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(22px, 5vw, 46px);
    flex-wrap: wrap;
}

.site-footer .footer-links a {
    color: #b8b1a3;
    font-size: clamp(1rem, 3vw, 1.45rem);
    font-weight: 600;
    text-decoration: none;
}

.site-footer .footer-links a:hover {
    color: #f4f1e8;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 48px 0 42px;
    }

    .site-footer .footer-inner {
        gap: 20px;
    }

    .site-footer .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .site-footer .footer-links a {
        font-size: 1rem;
    }
}

.site-footer {
    border-top: 1px solid rgba(244, 241, 232, 0.14);
    padding: 64px 0 52px;
    background: #0f0f0d;
    text-align: center;
}

.site-footer .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.site-footer .footer-logo {
    color: #f4f1e8;
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}

/* Removes the orange underline from older footer/logo styling */
.site-footer .footer-logo::after,
.site-footer .logo::after {
    content: none !important;
    display: none !important;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(22px, 5vw, 46px);
    flex-wrap: wrap;
}

.site-footer .footer-links a {
    color: #b8b1a3;
    font-size: clamp(1rem, 3vw, 1.45rem);
    font-weight: 600;
    text-decoration: none;
}

.site-footer .footer-links a:hover {
    color: #f4f1e8;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 54px 0 48px;
    }

    .site-footer .footer-inner {
        gap: 26px;
    }

    .site-footer .footer-links {
        flex-direction: column;
        gap: 18px;
    }

    .site-footer .footer-links a {
        font-size: 1.15rem;
    }
}

.site-footer {
    background: #081426 !important;
    border-top: 1px solid rgba(244, 241, 232, 0.14);
}

.site-footer .footer-links a {
    color: #c4c9d4;
}

.site-footer .footer-links a:hover {
    color: #f4f1e8;
}

.site-footer .footer-logo {
    color: #f4f1e8;
}