/*
Theme Name: AP Jain & Associates
Theme URI: https://www.apjainca.in
Author: CA Abhishek Jain
Author URI: https://www.apjainca.in
Description: Professional CA firm website for A P Jain & Associates, Mumbai. Navy Blue & Gold premium theme with hero slider, services, team and contact sections.
Version: 1.0.0
License: Private
Text Domain: apjainca
*/

/* =============================================
   GOOGLE FONTS
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* =============================================
   CSS VARIABLES
============================================= */
:root {
    --navy:       #0B1F4B;
    --navy2:      #162960;
    --gold:       #C9A84C;
    --gold2:      #E8C96A;
    --gold-light: #F5E6B8;
    --green:      #2E8B57;
    --green2:     #3AAF6F;
    --wa:         #25D366;
    --white:      #ffffff;
    --light:      #F7F5EF;
    --text:       #2C2C2A;
    --muted:      #6B6860;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.sec-label {
    font-size: 10.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
}
.sec-label::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}
.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.2;
}
.text-center { text-align: center; }
.text-center .sec-label { justify-content: center; }

/* =============================================
   BUTTONS
============================================= */
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    transition: background .2s;
}
.btn-gold:hover { background: var(--gold2); color: var(--navy); }

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 11px 26px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,.45);
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    margin-left: 10px;
    transition: all .2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    transition: background .2s;
    white-space: nowrap;
}
.btn-navy:hover { background: var(--navy2); color: var(--white); }

/* =============================================
   TOP BAR
============================================= */
.topbar {
    background: var(--navy);
    padding: 6px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar span, .topbar a {
    color: #bbbbbb;
    font-size: 11.5px;
    letter-spacing: .3px;
}
.topbar a { color: var(--gold2); }
.topbar a:hover { color: var(--white); }
.topbar .topbar-right { color: #bbbbbb; font-size: 11.5px; }

/* =============================================
   NAVIGATION
============================================= */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--gold-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(11,31,75,.08);
}
.nav-container {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}
.site-logo {
    display: flex;
    align-items: center;
    padding: 12px 0;
    gap: 0;
}
.site-logo img {
    height: 52px;
    width: auto;
}
.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 50px;
    height: 50px;
}
.logo-text-block .firm-name {
    font-family: 'Lato', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
    line-height: 1.1;
    display: block;
}
.logo-text-block .firm-sub {
    font-size: 9.5px;
    letter-spacing: 2.8px;
    color: var(--muted);
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}

/* Main Nav Menu */
.main-nav ul {
    display: flex;
    gap: 0;
    align-items: center;
}
.main-nav ul li a {
    padding: 22px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--navy);
    display: block;
    border-bottom: 3px solid transparent;
    transition: all .2s;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a,
.main-nav ul li.current_page_item a {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all .3s;
    display: block;
}

/* =============================================
   HERO SLIDER
============================================= */
.hero-slider {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: var(--navy);
}
.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .7s ease;
}
.slide.active { opacity: 1; }

.slide-overlay {
    position: absolute;
    inset: 0;
}
.slide-overlay.s1 { background: linear-gradient(105deg, rgba(11,31,75,.98) 45%, rgba(11,31,75,.55) 100%); }
.slide-overlay.s2 { background: linear-gradient(105deg, rgba(6,18,46,.98) 45%, rgba(22,41,96,.55) 100%); }
.slide-overlay.s3 { background: linear-gradient(105deg, rgba(4,14,40,.98) 45%, rgba(46,139,87,.22) 100%); }

.slide-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.4);
}
.slide-deco {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .05;
    font-family: 'Playfair Display', serif;
    font-size: 220px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 620px;
}
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.13);
    border: 1px solid rgba(201,168,76,.38);
    color: var(--gold2);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 18px;
}
.slide-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold2);
    border-radius: 50%;
}
.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 14px;
}
.slide-content h1 em {
    color: var(--gold2);
    font-style: normal;
}
.slide-content p {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.82;
    margin-bottom: 26px;
    font-weight: 300;
    max-width: 480px;
}
.slider-arrows .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.22);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.slider-arrows .arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slider-arrows .arrow-prev { left: 16px; }
.slider-arrows .arrow-next { right: 16px; }
.slider-dots {
    position: absolute;
    bottom: 22px;
    left: 80px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.slider-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.32);
    cursor: pointer;
    transition: all .3s;
    border: none;
}
.slider-dots .dot.active {
    background: var(--gold);
    width: 26px;
    border-radius: 4px;
}

/* =============================================
   SECTIONS — SHARED
============================================= */
section { padding: 70px 40px; }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================
   ABOUT SECTION (HOME)
============================================= */
.about-home {
    background: var(--light);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-visual {
    background: var(--navy);
    border-radius: 6px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-deco-text {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 700;
    color: rgba(201,168,76,.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    pointer-events: none;
}
.about-visual-inner { text-align: center; z-index: 2; position: relative; }
.about-visual-inner .years {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    font-weight: 700;
    color: var(--gold2);
    line-height: 1;
}
.about-visual-inner .divider {
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin: 10px auto;
}
.about-visual-inner .years-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
}
.about-text p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.85;
    margin-bottom: 14px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}
.stat-box {
    background: var(--white);
    border: 1px solid var(--gold-light);
    border-radius: 4px;
    padding: 16px;
    text-align: center;
}
.stat-box .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
}
.stat-box .stat-label { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* =============================================
   SERVICES SECTION
============================================= */
.services-section { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 38px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.service-card {
    border: 1px solid var(--gold-light);
    border-radius: 6px;
    padding: 28px 24px;
    transition: all .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}
.service-card:hover { box-shadow: 0 8px 30px rgba(11,31,75,.1); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
}
.service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* =============================================
   CTA STRIP
============================================= */
.cta-strip {
    background: var(--gold);
    padding: 26px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cta-strip-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--navy);
    font-weight: 700;
}
.cta-strip-text p { color: var(--navy); font-size: 13px; opacity: .72; margin-top: 3px; }

/* =============================================
   TEAM SECTION
============================================= */
.team-section { background: var(--light); }
.team-featured {
    background: var(--navy);
    border-radius: 8px;
    padding: 34px;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 26px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.team-featured-avatar {
    width: 92px;
    height: 92px;
    background: rgba(201,168,76,.12);
    border: 2px solid rgba(201,168,76,.36);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.team-featured-avatar span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold2);
}
.team-featured-role {
    font-size: 10px;
    letter-spacing: 2.5px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}
.team-featured h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 6px;
}
.team-featured p { color: rgba(255,255,255,.62); font-size: 13.5px; line-height: 1.7; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}
.team-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--gold-light);
    transition: all .3s;
}
.team-card:hover { box-shadow: 0 8px 28px rgba(11,31,75,.1); transform: translateY(-3px); }
.team-avatar-wrap {
    height: 170px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.team-avatar-wrap.navy2 { background: #1a3070; }
.team-avatar-wrap.navy3 { background: #142858; }
.team-avatar-wrap.navy4 { background: #0f1f50; }
.team-avatar-wrap.navy5 { background: #162960; }
.team-avatar-wrap.navy6 { background: #0d2050; }
.team-initials {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--gold2);
    opacity: .9;
}
.team-stripe {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green2), var(--gold));
}
.team-info { padding: 18px 20px; }
.team-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 3px;
}
.team-role {
    font-size: 10.5px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}
.team-info p { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.6; }

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section {
    background: var(--navy);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-section .sec-label { color: var(--gold); }
.contact-section .sec-title { color: var(--white); }
.contact-info-text { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.26);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-detail-label {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}
.contact-detail-value {
    color: rgba(255,255,255,.78);
    font-size: 13.5px;
    margin-top: 2px;
    line-height: 1.5;
}
.contact-detail-value a { color: rgba(255,255,255,.78); }
.contact-detail-value a:hover { color: var(--gold2); }

.wa-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--wa);
    color: white;
    padding: 13px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 700;
    width: 100%;
    margin-top: 26px;
    transition: opacity .2s;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    justify-content: center;
}
.wa-contact-btn:hover { opacity: .9; color: white; }
.wa-contact-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
}
.contact-form-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 22px;
}
.form-row { margin-bottom: 15px; }
.form-row label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #dddddd;
    border-radius: 4px;
    font-size: 13.5px;
    font-family: 'Lato', sans-serif;
    color: var(--text);
    transition: border .2s;
    outline: none;
    background: var(--white);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--gold); }
.form-row textarea { height: 90px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit-btn {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 13px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s;
    margin-top: 4px;
    font-family: 'Lato', sans-serif;
}
.submit-btn:hover { background: var(--navy2); }

/* =============================================
   FOOTER
============================================= */
.site-footer {
    background: #06122E;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.site-footer p { color: rgba(255,255,255,.42); font-size: 12px; }
.site-footer .footer-brand { color: var(--gold); font-size: 12px; }

/* =============================================
   WHATSAPP FLOATING BUTTON
============================================= */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.wa-float-btn {
    width: 58px;
    height: 58px;
    background: var(--wa);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,.5);
    transition: transform .2s;
    position: relative;
}
.wa-float-btn:hover { transform: scale(1.1); }
.wa-float-btn svg { width: 30px; height: 30px; }
.wa-tooltip {
    background: var(--navy);
    color: white;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
    box-shadow: 0 3px 12px rgba(11,31,75,.3);
    font-family: 'Lato', sans-serif;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
.wa-pulse {
    position: absolute;
    top: 1px; right: 1px;
    width: 14px; height: 14px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid white;
}

/* =============================================
   PAGE TEMPLATES
============================================= */
.page-hero {
    background: var(--navy);
    padding: 60px 40px;
    text-align: center;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
}
.page-hero .breadcrumb {
    color: rgba(255,255,255,.55);
    font-size: 13px;
    margin-top: 8px;
}
.page-hero .breadcrumb a { color: var(--gold2); }

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.value-box {
    background: var(--white);
    border: 1px solid var(--gold-light);
    border-radius: 6px;
    padding: 22px;
    text-align: center;
}
.value-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
}
.value-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .services-grid,
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-content { padding: 0 40px; }
    .slide-content h1 { font-size: 34px; }
    section { padding: 50px 24px; }
    .topbar { padding: 6px 20px; }
    .nav-container { padding: 0 20px; }
    .cta-strip { flex-direction: column; text-align: center; padding: 24px 20px; }
}

@media (max-width: 768px) {
    .topbar .topbar-right { display: none; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        border-top: 1px solid var(--gold-light);
        box-shadow: 0 4px 12px rgba(11,31,75,.1);
        z-index: 999;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; }
    .main-nav ul li a {
        padding: 14px 24px;
        border-bottom: 1px solid var(--gold-light);
        border-left: 3px solid transparent;
    }
    .main-nav ul li a:hover,
    .main-nav ul li.current-menu-item a {
        border-bottom-color: var(--gold-light);
        border-left-color: var(--gold);
        border-bottom: 1px solid var(--gold-light);
    }
    .nav-toggle { display: flex; }
    .services-grid,
    .team-grid { grid-template-columns: 1fr; }
    .hero-slider { height: 420px; }
    .slide-content h1 { font-size: 28px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .team-featured { flex-direction: column; text-align: center; }
    .site-footer { flex-direction: column; text-align: center; }
}
