/* ==========================================================================
   GLOBAL STYLESHEET - SCHRÖDER'S JOINERY
   ========================================================================== */

/* //Reset// */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* //Root Variables// */
:root {
    --gold: #D4AF37;
    --gold-lt: #F0D668;
    --gold-dk: #9a7218;
    --navy: #04091C;
    --navy-mid: #081026;
    --tile-bg: rgba(4, 10, 30, 0.88);
    --cyan: #3DCFBF;
    --white: #ffffff;
    --dim: rgba(255, 255, 255, 0.52);
    --hex-w: 186px;
    --hex-h: 214px;
}

/* //Body// */
body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
}

/* ==========================================================================
   STICKY LOGO BUTTON
   ========================================================================== */
.sticky-logo-btn {
    position: fixed;
    top: 28px;
    right: 36px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.20);
    border-radius: 50%;
    background: rgba(4, 9, 28, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
    text-decoration: none;
    opacity: 0;
    transform: scale(0.82);
    transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.32s ease, box-shadow 0.32s ease;
    pointer-events: none;
}
.sticky-logo-btn.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.sticky-logo-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.12));
}
.sticky-logo-btn:hover {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.44), 0 0 20px rgba(212, 175, 55, 0.12);
}

/* ==========================================================================
   MOBILE TOGGLE + NAV
   ========================================================================== */
.hero-mobile-toggle {
    position: fixed;
    top: 34px;
    left: 24px;
    z-index: 10001;
    width: 36px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--white);
    opacity: 0.84;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}
body.mobile-nav-open {
    overflow: hidden;
}
.hero-mobile-toggle:hover {
    opacity: 1;
    transform: translateY(-1px);
}
.hero-mobile-toggle:focus-visible,
.hero-mobile-link:focus-visible,
.hero-mobile-nav-backdrop:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.74);
    outline-offset: 4px;
}
.hero-mobile-toggle-core {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.hero-mobile-toggle-core::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 1px;
    background: rgba(255, 255, 255, 0.24);
    opacity: 0;
    transform: scaleY(0.35);
    transform-origin: top center;
    transition: opacity 0.24s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-mobile-line {
    position: absolute;
    left: 8px;
    height: 1px;
    background: rgba(255, 255, 255, 0.9);
    transform-origin: left center;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), width 0.34s ease, opacity 0.22s ease;
}
.hero-mobile-line-top { top: 3px; width: 28px; }
.hero-mobile-line-mid { top: 13px; width: 16px; }
.hero-mobile-line-bot { top: 23px; width: 22px; }

.hero-mobile-toggle[aria-expanded="true"] .hero-mobile-toggle-core::before {
    opacity: 1;
    transform: scaleY(1);
}
.hero-mobile-toggle[aria-expanded="true"] .hero-mobile-line-top {
    width: 28px;
    transform: translateY(10px) rotate(38deg);
}
.hero-mobile-toggle[aria-expanded="true"] .hero-mobile-line-mid {
    opacity: 0;
    transform: translateX(-8px);
}
.hero-mobile-toggle[aria-expanded="true"] .hero-mobile-line-bot {
    width: 28px;
    transform: translateY(-10px) rotate(-38deg);
}

.hero-mobile-nav[hidden] {
    display: none !important;
}
.hero-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    display: none;
}
.hero-mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: linear-gradient(90deg, rgba(3, 7, 18, 0.88) 0%, rgba(3, 7, 18, 0.62) 28%, rgba(3, 7, 18, 0.18) 54%, rgba(3, 7, 18, 0) 76%);
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.28s ease;
}
.hero-mobile-nav-panel {
    position: fixed;
    top: 96px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 18px;
    max-width: calc(100vw - 48px);
    transform: translateX(-18px);
    opacity: 0;
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}
.hero-mobile-nav-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.72) 0%, rgba(212, 175, 55, 0.24) 62%, transparent 100%);
}
.hero-mobile-nav.is-open {
    pointer-events: auto;
}
.hero-mobile-nav.is-open .hero-mobile-nav-backdrop {
    opacity: 1;
}
.hero-mobile-nav.is-open .hero-mobile-nav-panel {
    transform: translateX(0);
    opacity: 1;
}
.hero-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.hero-mobile-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.22s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), color 0.32s ease;
}
.hero-mobile-link::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: rgba(212, 175, 55, 0.50);
    flex-shrink: 0;
    transition: width 0.36s ease, background 0.36s ease;
}
.hero-mobile-link span {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    white-space: nowrap;
    transition: color 0.32s ease, letter-spacing 0.36s ease;
}
.hero-mobile-nav.is-open .hero-mobile-link {
    opacity: 1;
    transform: translateX(0);
}
.hero-mobile-nav.is-open .hero-mobile-link:nth-child(1) { transition-delay: 0.03s; }
.hero-mobile-nav.is-open .hero-mobile-link:nth-child(2) { transition-delay: 0.08s; }
.hero-mobile-nav.is-open .hero-mobile-link:nth-child(3) { transition-delay: 0.13s; }
.hero-mobile-nav.is-open .hero-mobile-link:nth-child(4) { transition-delay: 0.18s; }
.hero-mobile-nav.is-open .hero-mobile-link:nth-child(5) { transition-delay: 0.23s; }
.hero-mobile-nav.is-open .hero-mobile-link:nth-child(6) { transition-delay: 0.28s; }

.hero-mobile-link:hover::before,
.hero-mobile-link:focus-visible::before {
    width: 30px;
    background: #D4AF37;
}
.hero-mobile-link:hover span,
.hero-mobile-link:focus-visible span {
    color: rgba(212, 175, 55, 0.95);
    letter-spacing: 0.38em;
}

/* ==========================================================================
   VERTICAL NAVIGATION RAIL (DESKTOP)
   ========================================================================== */
.hero-nav {
    position: absolute;
    left: 46px;
    top: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.h-nav-item {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    animation: navSlideIn 0.8s cubic-bezier(0.34, 1.28, 0.64, 1) both;
}
.h-nav-item::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: rgba(212, 175, 55, 0.50);
    flex-shrink: 0;
    transition: width 0.36s ease, background 0.36s ease;
}
.h-nav-item:hover::before {
    width: 30px;
    background: #D4AF37;
}
.h-nav-item span {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    transition: color 0.32s ease, letter-spacing 0.36s ease;
    white-space: nowrap;
}
.h-nav-item:hover span {
    color: rgba(212, 175, 55, 0.95);
    letter-spacing: 0.38em;
}
@keyframes navSlideIn {
    from { opacity: 0; transform: translateX(-28px); }
    to { opacity: 1; transform: translateX(0); }
}
.h-nav-item:nth-child(1) { top: 110px; animation-delay: 0.55s; }
.h-nav-item:nth-child(2) { top: 162px; animation-delay: 0.68s; }
.h-nav-item:nth-child(3) { top: 214px; animation-delay: 0.81s; }
.h-nav-item:nth-child(4) { top: 266px; animation-delay: 0.94s; }
.h-nav-item:nth-child(5) { top: 318px; animation-delay: 1.07s; }

/* ==========================================================================
   SOCIAL MEDIA RAIL
   ========================================================================== */
.hero-social-rail {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
    transform: translateY(-50%);
    animation: socialRailEntry 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}
@keyframes socialRailEntry {
    from { opacity: 0; transform: translate(18px, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
}
.hero-social-tab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    width: 24px;
    color: #ffffff;
    text-decoration: none;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
    background: linear-gradient(180deg, rgba(116, 122, 130, 0.78), rgba(90, 96, 104, 0.88));
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
    opacity: 0.76;
    filter: saturate(0.48) brightness(0.84);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, box-shadow 0.34s ease, filter 0.34s ease;
    overflow: visible;
}
.hero-social-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--social-hover);
    opacity: 0;
    transition: opacity 0.34s ease;
    z-index: 0;
}
.hero-social-tab::after {
    content: '';
    position: absolute;
    inset: 1px 0 1px 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 54%);
    pointer-events: none;
    opacity: 0.2;
    z-index: 1;
}
.hero-social-tab:hover,
.hero-social-tab:focus-visible {
    transform: translateX(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    opacity: 1;
    filter: saturate(1) brightness(1.03);
}
.hero-social-tab:hover::before,
.hero-social-tab:focus-visible::before {
    opacity: 1;
}
.hero-social-tab:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.82);
    outline-offset: 4px;
}
.hero-social-tab svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    position: relative;
    z-index: 2;
}
.hero-social-tab.is-facebook { --social-hover: #1877F2; }
.hero-social-tab.is-facebook svg { width: 12px; height: 12px; }

.hero-social-tab.is-instagram { --social-hover: linear-gradient(135deg, #F58529 0%, #FEDA77 20%, #DD2A7B 52%, #8134AF 76%, #515BD4 100%); }
.hero-social-tab.is-instagram svg { width: 11px; height: 11px; }

.hero-social-tab.is-linkedin { --social-hover: #0A66C2; }
.hero-social-tab.is-linkedin svg { width: 10.5px; height: 10.5px; }

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.svc-btt {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 9000;
    width: 44px;
    height: 44px;
    background: rgba(4, 9, 28, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.36s ease, transform 0.36s ease, background 0.28s ease, border-color 0.28s ease;
    backdrop-filter: blur(8px);
}
.svc-btt.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.svc-btt:hover {
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.50);
}
.svc-btt svg {
    width: 16px;
    height: 16px;
    stroke: rgba(212, 175, 55, 0.65);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.28s ease;
}
.svc-btt:hover svg {
    stroke: rgba(212, 175, 55, 0.95);
}

/* ==========================================================================
   CURSOR Glow Ambient Effect
   ========================================================================== */
.cursor-glow {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 72%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    opacity: 0;
}
@media (hover: hover) {
    .cursor-glow { opacity: 1; }
}

/* ==========================================================================
   SITE FOOTER (COMMON)
   ========================================================================== */
.site-footer {
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: linear-gradient(180deg, #08152A 0%, #040B1E 58%, #020614 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    color: var(--white);
    isolation: isolate;
}
.footer-rail {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    width: 1px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.18), transparent);
    opacity: 0.45;
}
.footer-shell {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 42px 70px 18px;
}
.footer-topline {
    width: 0;
    height: 1px;
    margin-bottom: 26px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.18) 8%, rgba(240, 214, 104, 0.76) 36%, rgba(61, 207, 191, 0.20) 72%, transparent 100%);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
    transition: width 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-footer.vis .footer-topline {
    width: 100%;
}
.footer-main {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(520px, 1.28fr);
    gap: clamp(26px, 4.5vw, 70px);
    align-items: stretch;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}
.footer-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.018);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}
.footer-mark img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.16));
}
.footer-brand h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 4.8vw, 5.6rem);
    line-height: 0.84;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0;
    max-width: 420px;
    background: linear-gradient(150deg, #fff 0%, #F0D668 44%, #9B741B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-brand-copy {
    max-width: 380px;
    margin: 25px 0 0 0; /* lowered down under the big logo wrapper */
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.50);
}
.footer-coordinate {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin-top: 15px; /* lowered down under the description */
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.35s ease, transform 0.35s ease;
}
.footer-coordinate::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.82), rgba(61, 207, 191, 0.20));
}
.footer-coordinate:hover {
    color: var(--gold-lt);
    transform: translateX(4px);
}
.footer-brand > a:first-of-type {
    position: relative;
    display: block;
    width: 100%;
    height: 130px; /* fixed space in document flow so size changes don't shift footer layout */
    margin: 0 auto;
}
.footer-secondary-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px; /* independent and size-increasable! */
    height: auto;
    max-width: none;
    opacity: 0.95;
    filter: brightness(1.08) drop-shadow(0 0 15px rgba(212, 175, 55, 0.22));
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
    pointer-events: none; /* allows wrapper link to handle mouse events */
}
.footer-brand > a:first-of-type:hover .footer-secondary-mark {
    opacity: 1;
    filter: brightness(1.18) drop-shadow(0 0 25px rgba(212, 175, 55, 0.55));
    transform: translate(-50%, -50%) translateY(-4px) scale(1.04);
}
.footer-ledger {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.88fr) minmax(330px, 1.12fr);
    gap: 20px;
    align-items: stretch;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(255, 255, 255, 0.012);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.footer-ledger::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, var(--gold-lt), transparent);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.24);
    transition: height 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}
.site-footer.vis .footer-ledger::after {
    height: 100%;
}
.footer-location-card, .footer-team {
    position: relative;
    z-index: 1;
}
.footer-location-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 212px;
    margin: 14px 0 14px 14px;
    padding: 22px 24px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.055), rgba(255, 255, 255, 0.014));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.footer-team {
    padding: 22px 28px 22px 0;
}
.footer-kicker {
    display: block;
    margin-bottom: 13px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold);
}
.footer-address {
    margin: 0 0 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.03;
    color: rgba(255, 255, 255, 0.86);
}
.footer-address span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.74em;
}
.footer-map-link, .footer-phone, .footer-person a {
    color: inherit;
    text-decoration: none;
}
.footer-map-link, .footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    transition: color 0.35s ease, transform 0.35s ease;
}
.footer-phone {
    margin-top: 10px;
    color: rgba(240, 214, 104, 0.78);
}
.footer-map-link::before, .footer-phone::before {
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid rgba(212, 175, 55, 0.48);
    border-radius: 50%;
}
.footer-map-link:hover, .footer-phone:hover {
    color: var(--gold-lt);
    transform: translateX(4px);
}
.footer-team-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}
.footer-team-title h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.65rem, 2.35vw, 2.55rem);
    font-weight: 500;
    line-height: 0.94;
    color: rgba(255, 255, 255, 0.88);
}
.footer-team-title span {
    padding-top: 5px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
    white-space: nowrap;
}
.footer-people {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}
.footer-person {
    position: relative;
    display: grid;
    grid-template-columns: minmax(112px, 0.72fr) minmax(190px, 1fr);
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}
.footer-person::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-lt), rgba(61, 207, 191, 0.18), transparent);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-person:hover::before {
    width: 100%;
}
.footer-person-name {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
}
.footer-person-name small {
    font-size: 7.5px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.70);
}
.footer-person a {
    justify-self: end;
    align-self: center;
    font-size: 0.76rem;
    font-weight: 300;
    letter-spacing: 0.045em;
    color: rgba(255, 255, 255, 0.54);
    transition: color 0.35s ease, letter-spacing 0.35s ease;
}
.footer-person a:hover {
    color: var(--gold-lt);
    letter-spacing: 0.08em;
}
.footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    margin-top: 26px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.footer-credit {
    justify-self: center;
    color: rgba(255, 255, 255, 0.36);
    white-space: nowrap;
}
.footer-credit a {
    display: inline-block;
    color: #E4AE56;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    transform-origin: center;
}
.footer-credit a:hover {
    color: #F0D668;
    transform: scale(1.06);
    text-shadow: 0 0 14px rgba(240, 214, 104, 0.20);
}
.footer-mini-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px;
}
.footer-mini-nav a {
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-mini-nav a:hover {
    color: var(--gold-lt);
}
.footer-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1), transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--fdelay, 0s);
}
.site-footer.vis .footer-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (GLOBAL PORTIONS)
   ========================================================================== */
@media (max-width: 1100px) {
    .footer-shell { padding: 38px 44px 18px; }
    .footer-main, .footer-ledger { grid-template-columns: 1fr; }
    .footer-brand { justify-content: flex-start; }
    .footer-location-card { min-height: auto; margin: 14px 14px 0; }
    .footer-team { padding: 20px 28px 24px; }
    .footer-rail { left: auto; right: 44px; }
}

@media (max-width: 700px) {
    .footer-shell { padding: 34px 22px 18px; }
    .footer-topline { margin-bottom: 24px; }
    .footer-main { gap: 28px; }
    .footer-ledger { gap: 0; box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20); }
    .footer-location-card { margin: 12px; padding: 20px; }
    .footer-team { padding: 20px; }
    .footer-team-title { flex-direction: column; gap: 8px; }
    .footer-person { grid-template-columns: 1fr; gap: 8px; }
    .footer-person a { justify-self: start; overflow-wrap: anywhere; }
    .footer-bottom { grid-template-columns: 1fr; justify-items: start; gap: 12px; }
    .footer-credit, .footer-mini-nav { justify-self: start; }
    .footer-mini-nav { flex-wrap: wrap; gap: 14px; }
    .hero-mobile-toggle { display: inline-flex; }
    .hero-mobile-nav { display: block; }
}

@media (prefers-reduced-motion: reduce) {
    .footer-reveal,
    .footer-topline,
    .footer-ledger::after {
        transition: none !important;
    }
    .footer-reveal,
    .site-footer .footer-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    .site-footer .footer-topline,
    .site-footer.vis .footer-topline {
        width: 100% !important;
    }
    .site-footer .footer-ledger::after,
    .site-footer.vis .footer-ledger::after {
        height: 100% !important;
    }
}
