/**
 * Menu Styles
 *
 * @package Towerhouse_Studio
 */

/* HEADER FLEX LAYOUT */
.site-header {
    position: sticky;
    top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    column-gap: 40px;
    z-index: 999;
    height: 70px;
    min-height: 70px;
    max-height: 70px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.06);
}

.site-branding {
    flex: 0 1 auto;
    min-width: 120px;
}

.site-branding img {
    width: 220px;
    height: 60px;
}

.header-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* MAIN NAVIGATION */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100%;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    display: block;
    text-decoration: none;
    color: var(--color-1);
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    padding: 0.25rem 0;
}

.primary-menu a:hover,
.primary-menu a:focus {
    text-decoration: none;
    background: none;
    color: var(--color-4);
}

/* Remove underline from all links in menu */
.primary-menu a,
.primary-menu a:visited,
.primary-menu a:active {
    text-decoration: none;
}

/* Submenu */
.primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    z-index: 99999;
}

.primary-menu li:hover > .sub-menu {
    display: block;
}

.primary-menu .sub-menu li {
    margin: 0;
}

.primary-menu .sub-menu a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

/* Hamburger Icon Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}
.menu-toggle .hamburger-bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: var(--color-1, #f58023);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay (optional, for full-screen effect) */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}
.mobile-menu-overlay.active {
    display: block;
}

/* Social Icons Menu */
.social-icons-menu {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.75rem;
}

.social-icons li {
    margin: 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-4);
    transition: color 0.2s;
    width: 28px;
    height: 28px;
}

/* Hide text visually but keep for screen readers */
.social-icons a span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Social Icons */
.social-icons a::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Facebook Icon */
.icon-facebook a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23currentColor' d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-image: none;
}

/* Twitter/X Icon */
.icon-x a::before {
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Instagram Icon */
.icon-instagram a::before {
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* LinkedIn Icon */
.icon-linkedin a::before {
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* YouTube Icon */
.icon-youtube a::before {
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Hover effect */
.social-icons a:hover {
    color: var(--color-1);
}

/* FOOTER STYLES */
.site-footer {
    background-color: var(--color-3);
    color: #fff;
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 0 0 auto;
}

.footer-logo {
    flex: 0 0 auto;
    max-width: 200px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-site-title a {
    color: #fff;
    text-decoration: none;
}

.footer-site-title a:hover {
    color: var(--color-1);
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 0 0;
}

.footer-social-icons .social-icons {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social-icons .social-icons a {
    color: #fff !important;
    width: 40px;
    height: 40px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social-icons .social-icons a:hover {
    color: var(--color-1) !important;
    transform: translateY(-2px);
}

.footer-menu-container {
    flex: 1 1 auto;
    max-width: 600px;
}

.footer-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-menu a:focus {
    color: var(--color-1);
    text-decoration: none;
}

.site-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    position: relative;
}

/* =========================
   Mobile Menu Slider Styles
   ========================= */
.mobile-menu-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    box-shadow: 0 0 16px rgba(0,0,0,0.15);
    z-index: 2001;
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0s 0.3s;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    overflow-y: auto;
}
.mobile-menu-slider.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0s 0.3s;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #333;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    z-index: 2100;
    line-height: 1;
}
.mobile-menu-content {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.mobile-primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-primary-menu a {
    font-size: 1.5rem;
    color: var(--color-1);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
}
.mobile-primary-menu a:hover,
.mobile-primary-menu a:focus {
    color: var(--color-4);
}
.mobile-social-icons-menu {
    display: flex;
    justify-content: flex-start;
}
.mobile-social-icons {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-social-icons a {
    color: var(--color-4);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-social-icons a:hover {
    color: var(--color-1);
}

/* =========================
   Responsive Styles
   ========================= */

/* >= 1200px (Desktop Large) */
@media screen and (min-width: 1200px) {
    /* Add any large desktop-specific styles here */
}

/* <= 1200px (Desktop) */
@media screen and (max-width: 1200px) {
    /* Add any desktop-specific styles here if needed */
}

/* <= 1024px (Tablet Landscape) */
@media screen and (max-width: 1024px) {
    /* Add any tablet landscape-specific styles here if needed */
}

@media screen and (min-width: 901px) {
    .mobile-menu-slider,
    .mobile-menu-overlay {
        display: none !important;
    }
} 

/* <= 900px (Tablet Portrait) */
@media screen and (max-width: 900px) {
    /* Do NOT hide .site-header so the menu-toggle remains visible */
    .main-navigation, .header-right {
        display: none !important;
    }
    .mobile-social-icons-menu {
        display: none !important;
    }
    .menu-toggle {
        display: flex;
    }
    .site-header {
        height: 60px;
        min-height: 60px;
        max-height: 60px;
    }
    .site-header img {
        width: 100%;
        height: auto;
        max-height: 50px;
    }
    .header-center {
        margin: 0.5rem 0;
        justify-content: flex-end;
    }
    .mobile-menu-slider {
        display: flex;
    }
    .mobile-menu-overlay {
        display: block;
    }
}

/* <= 1024px (Tablet Landscape) - Show navigation for tablets */
@media screen and (max-width: 1024px) and (min-width: 901px) {
    .site-header {
        height: 65px;
        min-height: 65px;
        max-height: 65px;
    }
    .site-header img {
        width: 200px;
        height: 55px;
    }
    .primary-menu a {
        font-size: 1.1rem;
    }
    .primary-menu {
        gap: 1.25rem;
    }
    .social-icons a {
        width: 26px;
        height: 26px;
    }
    .social-icons {
        gap: 0.6rem;
    }
}

/* <= 768px (Tablet/Small Desktop) */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .main-navigation {
        position: relative;
    }
    .primary-menu {
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s cubic-bezier(0.4,0,0.2,1);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
    }
    .primary-menu.toggled {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-logo-social {
        order: 1;
        margin: 0 auto;
    }
    .footer-logo {
        max-width: 150px;
        margin: 0 auto;
    }
    .footer-menu-container {
        order: 2;
        max-width: 100%;
    }
    .footer-menu {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }
    .footer-social-icons .social-icons {
        gap: 1rem;
    }
    .footer-social-icons .social-icons a {
        width: 36px;
        height: 36px;
    }
}

/* <= 600px (Mobile Large) */
@media screen and (max-width: 600px) {
    .site-header {
        height: 55px;
        min-height: 55px;
        max-height: 55px;
    }
    .site-header img {
        max-height: 45px;
    }
    .studio-nav {
        min-height: 60px;
        max-height: 15vh;
    }
    .studio-slide .slide-content .slide-cta {
        font-size: clamp(0.9rem, 5vw, 1.5rem);
        padding: 0.6rem 1rem;
    }
}

/* <= 480px (Mobile) */
@media screen and (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 1.5rem;
    }
    .footer-content {
        gap: 1.5rem;
    }
    .footer-social-icons .social-icons {
        gap: 0.8rem;
    }
    .footer-social-icons .social-icons a {
        width: 32px;
        height: 32px;
    }
}