/*
 * CormackCoreWeb 2.0 - Custom Stylesheet
 * Author: Charlie - Cormack Advertising
 * Add your custom styles here
 */

/* =============================================
   Scroll Animations
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hidden state — applied before element enters viewport */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
}

/* Visible state — triggered by IntersectionObserver */
[data-animate].is-visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* Override for elements that rely on transform for layout positioning */
.accommodation__siteplan[data-animate] {
    opacity: 0;
}
.accommodation__siteplan[data-animate].is-visible {
    animation: fadeInOnly 0.6s ease forwards;
}
.hero__scroll[data-animate] {
    opacity: 0;
    transform: translateX(-50%);
}
.hero__scroll[data-animate].is-visible {
    animation: fadeInOnly 0.6s ease forwards;
}
@keyframes fadeInOnly {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
    }
    [data-animate].is-visible {
        animation: none;
    }
}

/* =============================================
   Global Font - Inter
   ============================================= */

/* Set Inter as the default font for the entire site */
body,
html {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Inter Font Weight Utilities */
.inter-thin {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.inter-extralight {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.inter-light {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.inter-regular {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.inter-medium {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.inter-semibold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.inter-bold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.inter-extrabold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.inter-black {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

/* =============================================
   Site Header / Navigation
   ============================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #313C48;
    transition: background 0.3s ease;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    transition: padding 0.3s ease;
}

/* Logo — show full by default, hide sygnet */
.site-header__logo-full,
.site-header__logo-sygnet {
    transition: opacity 0.3s ease, height 0.3s ease;
}

.site-header__logo-full {
    height: 40px;
    width: auto;
    display: block;
}

.site-header__logo-sygnet {
    height: 18px;
    width: auto;
    display: none;
}

/* Shrink state — after 200px scroll */
.site-header--shrink {
    background: rgba(49, 60, 72, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.site-header--shrink .site-header__inner {
    padding: 10px 40px;
}

.site-header--shrink .site-header__logo-full {
    display: none;
}

.site-header--shrink .site-header__logo-sygnet {
    display: block;
}

.site-header__nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.site-header__nav ul li a {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    transition: opacity 0.3s ease, padding 0.3s ease, font-size 0.3s ease;
}

.site-header__nav ul li a:hover {
    opacity: 0.75;
}

/* Contact button — add class "menu-item-contact" to the menu item in WP Admin */
.site-header__nav ul li.menu-item-contact a {
    border: 1px solid #FF3B58;
    padding: 10px 24px;
    transition: opacity 0.3s ease, padding 0.3s ease, background 0.3s ease, font-size 0.3s ease;
}

.site-header__nav ul li.menu-item-contact a:hover {
    background: #FF3B58;
    opacity: 1;
}

/* Shrink state — nav links */
.site-header--shrink .site-header__nav ul li a {
    font-size: 12px;
    padding: 8px 14px;
}

.site-header--shrink .site-header__nav ul li.menu-item-contact a {
    padding: 8px 18px;
}

/* Hamburger button — hidden on desktop */
.site-header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
}

.site-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger animated to X when open */
.nav-open .site-header__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .site-header__hamburger span:nth-child(2) {
    opacity: 0;
}

.nav-open .site-header__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   Hero Section
   ============================================= */

.hero {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 96vh;
    min-height: 700px;
    background-image: url('../images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero__overlay-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(49, 60, 72, 0.7);
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140.66deg, #FF3B58 -7.58%, rgba(255, 59, 88, 0) 45.92%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero__title {
    color: #ffffff;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    max-width: 800px;
    margin: 0 auto;
}

.hero__address {
    display: block;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 30px;
}

.hero__subtitle {
    color: #ffffff;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 40px;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-top: 40px;
}

.hero__scroll {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero__scroll-text {
    color: #ffffff;
    opacity: 0.5;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 5.6px;
    text-transform: uppercase;
    text-align: center;
}

.hero__scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FF3B58;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__scroll-btn:hover {
    transform: translateY(4px);
    box-shadow: 0 6px 20px rgba(255, 59, 88, 0.4);
}

.hero__scroll-btn img {
    width: 24px;
    height: auto;
}

/* =============================================
   Hero Responsive
   ============================================= */

@media (max-width: 1024px) {
    .hero__title {
        font-size: 32px;
        letter-spacing: 2.4px;
    }

    .hero__subtitle {
        font-size: 18px;
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {
    .site-header__inner {
        padding: 15px 20px;
    }

    .site-header--shrink .site-header__inner {
        padding: 10px 20px;
    }

    .site-header__logo-full {
        height: 32px;
    }

    .site-header__logo-sygnet {
        height: 26px;
    }

    /* Show hamburger, hide nav */
    .site-header__hamburger {
        display: flex;
    }

    .site-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #313C48;
        padding: 100px 30px 40px;
        transition: right 0.35s ease;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-open .site-header__nav {
        right: 0;
    }

    .site-header__nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .site-header__nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-header__nav ul li a {
        display: block;
        font-size: 14px;
        padding: 16px 0;
        letter-spacing: 2px;
    }

    .site-header__nav ul li.menu-item-contact a {
        border: none;
        padding: 16px 0;
        color: #FF3B58;
    }

    .site-header__nav ul li.menu-item-contact a:hover {
        background: none;
        opacity: 0.75;
    }

    .hero {
        min-height: 600px;
    }

    .hero__title {
        font-size: clamp(22px, 5vw, 26px);
        letter-spacing: 2px;
        max-width: 500px;
    }

    .hero__subtitle {
        font-size: clamp(14px, 3vw, 16px);
        letter-spacing: 4px;
        line-height: 1.6;
    }

    .hero__scroll-btn {
        width: 50px;
        height: 50px;
    }

    .hero__scroll-btn img {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .site-header__inner {
        padding: 12px 16px;
    }

    .site-header--shrink .site-header__inner {
        padding: 8px 16px;
    }

    .site-header__logo-full {
        height: 28px;
    }

    .site-header__logo-sygnet {
        height: 19px;
    }

    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 30px;
        letter-spacing: 1.5px;
    }

    .hero__address {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-top: 20px;
    }

    .hero__subtitle {
        font-size: 18px;
        letter-spacing: 3px;
        margin-top: 24px;
    }

    .hero__scroll-text {
        font-size: 13px;
        letter-spacing: 4px;
    }
}

/* =============================================
   Intro Section
   ============================================= */

.intro {
    position: relative;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background-color: #313C48;
    padding: 100px 40px;
    color: #ffffff;
}

.intro__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro__left {
    flex: 1;
}

.intro__label {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 5.6px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 30px;
}

.intro__headline {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: #ffffff;
}

.intro__right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
}

.intro__text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 170%;
    letter-spacing: 0.8px;
    color: #ffffff;
    opacity: 0.85;
}

/* Intro Responsive */
@media (max-width: 1024px) {
    .intro {
        padding: 80px 30px;
    }

    .intro__headline {
        font-size: 32px;
        letter-spacing: 2.4px;
    }

    .intro__inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .intro {
        padding: 60px 20px;
    }

    .intro__inner {
        flex-direction: column;
        gap: 30px;
    }

    .intro__headline {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .intro__right {
        padding-top: 0;
    }

    .intro__text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .intro {
        padding: 40px 16px;
    }

    .intro__headline {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .intro__label {
        font-size: 13px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .intro__text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* =============================================
   Shortcuts Section
   ============================================= */

.shortcuts {
    background: #313C48;
    border-bottom: 1px solid #FF3B58;
}

.shortcuts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.shortcuts__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid #313C48;
    transition: opacity 0.3s ease;
}

.shortcuts__item:hover {
    opacity: 0.85;
}

.shortcuts__img {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.shortcuts__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.shortcuts__item:hover .shortcuts__img img {
    transform: scale(1.05);
}

.shortcuts__label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
}

/* Red vertical dividers between labels — height of text only */
.shortcuts__item + .shortcuts__item .shortcuts__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background: #FF3B58;
}

/* Shortcuts Responsive */
@media (max-width: 1024px) {
    .shortcuts__label {
        font-size: 22px;
        padding: 20px 10px;
    }
}

@media (max-width: 768px) {
    .shortcuts__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shortcuts__label {
        font-size: 20px;
        padding: 18px 10px;
    }

    /* Hide divider for row starts */
    .shortcuts__item:nth-child(3) .shortcuts__label::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .shortcuts__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shortcuts__label {
        font-size: 18px;
        padding: 16px 10px;
    }
}

/* =============================================
   Closer Look Section
   ============================================= */

.closer-look {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background-color: #313C48;
    padding: 100px 40px;
    color: #ffffff;
}

.closer-look__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.closer-look__left {
    flex: 1;
}

.closer-look__left .intro__text {
    margin-top: 30px;
}

.closer-look__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Closer Look Responsive */
@media (max-width: 1024px) {
    .closer-look {
        padding: 80px 30px;
    }

    .closer-look__inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .closer-look {
        padding: 60px 20px;
    }

    .closer-look__inner {
        flex-direction: column;
        gap: 30px;
    }

    .closer-look__right {
        text-align: left;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .closer-look {
        padding: 40px 16px;
    }
}

/* =============================================
   Aerial Section
   ============================================= */

.aerial {
    background: #313C48;
}

.aerial__media {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.aerial__video {
    width: 100%;
    height: auto;
    display: block;
}

.aerial__fallback {
    width: 100%;
    height: auto;
    display: block;
}

.aerial__fallback--hidden {
    display: none;
}

/* =============================================
   Accommodation Section
   ============================================= */

.accommodation {
    position: relative;
    background-color: #1f0009;
    padding: 80px 40px;
    color: #ffffff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.accommodation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/accommodation/bg.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.1;
    pointer-events: none;
}

.accommodation__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 160px);
}

/* Two-column layout — data left, siteplan right */
.accommodation__bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.accommodation__data {
    width: 30%;
    flex-shrink: 0;
}

.accommodation__data .intro__headline {
    margin-bottom: 30px;
}

/* Siteplan — right column */
.accommodation__siteplan {
    width: 100%;
    pointer-events: none;
}

.accommodation__siteplan img {
    width: 100%;
    height: auto;
    display: block;
}

/* Accommodation Table */
.accommodation__table {
    margin-bottom: 40px;
}

.accommodation__table table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #ffffff;
}

.accommodation__table thead th {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 16px;
    border-bottom: 1px solid #FF3B58;
    opacity: 0.7;
}

.accommodation__table tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid #FF3B58;
}

.accommodation__table tbody tr:nth-child(odd) {
    background: #FF3B581A;
}

.accommodation__table tfoot td {
    padding: 12px 16px;
    font-weight: 600;
    border-top: 1px solid #FF3B58;
}

/* Column alignment */
.accommodation__table th:first-child,
.accommodation__table td:first-child {
    text-align: left;
}

.accommodation__table th:nth-child(2),
.accommodation__table td:nth-child(2) {
    text-align: center;
}

.accommodation__table th:last-child,
.accommodation__table td:last-child {
    text-align: right;
}

/* Accommodation Description */
.accommodation__data .intro__text {
    margin-bottom: 16px;
}

.accommodation__data .intro__text:last-of-type {
    margin-bottom: 0;
}

/* Download Brochure Button — inside left column */
.accommodation__action {
    margin-top: 30px;
}

.accommodation__btn {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FF3B58;
    text-decoration: none;
    border: 1px solid #FF3B58;
    border-radius: 100px;
    padding: 16px 36px;
    transition: background 0.3s ease, color 0.3s ease;
}

.accommodation__btn:hover {
    background: #FF3B58;
}

/* Accommodation Responsive */
@media (max-width: 1024px) {
    .accommodation {
        padding: 60px 30px;
    }

    .accommodation__data {
        width: 35%;
    }
}

@media (max-width: 768px) {
    .accommodation {
        padding: 60px 20px;
        min-height: auto;
    }

    .accommodation::before {
        background-attachment: scroll;
    }

    .accommodation__inner {
        min-height: auto;
    }

    .accommodation__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .accommodation__data {
        width: 100%;
    }

    .accommodation__siteplan {
        width: 100%;
    }

    .accommodation__table table {
        font-size: 13px;
    }

    .accommodation__action {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .accommodation {
        padding: 40px 16px;
    }

    .accommodation__table table {
        font-size: 12px;
    }

    .accommodation__table thead th {
        font-size: 11px;
        padding: 10px 12px;
    }

    .accommodation__table tbody td {
        padding: 8px 12px;
    }

    .accommodation__btn {
        font-size: 12px;
        padding: 14px 28px;
        letter-spacing: 2px;
    }
}

/* =============================================
   Specs Section
   ============================================= */

.specs {
    position: relative;
    background-color: #1f0009;
    background-image: url('../images/specs/specs-bg.jpg');
    background-size: cover;
    background-position: center center;
    padding: 80px 40px;
    color: #ffffff;
}

.specs__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(79, 15, 29, 0.9);
    pointer-events: none;
}

.specs__inner {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left column — 8 icons in 3-col grid */
.specs__left {
    flex: 1;
    padding-right: 60px;
}

/* Right column — label, headline, 3 icons */
.specs__right {
    flex: 1;
    padding-left: 60px;
    border-left: 1px solid #FF3B58;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specs__right .intro__label {
    margin-bottom: 20px;
}

.specs__right .intro__headline {
    margin-bottom: auto;
    padding-bottom: 80px;
}

/* Icon grids */
.specs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.specs__grid--right {
    grid-template-columns: repeat(3, 1fr);
}

/* Individual spec item */
.specs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.specs__item img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.specs__title {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #ffffff;
}

/* Specs Responsive */
@media (max-width: 1024px) {
    .specs {
        padding: 60px 30px;
    }

    .specs__left {
        padding-right: 40px;
    }

    .specs__right {
        padding-left: 40px;
    }

    .specs__grid {
        gap: 30px 20px;
    }

    .specs__item img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .specs {
        padding: 60px 20px;
    }

    .specs__inner {
        flex-direction: column;
        gap: 50px;
    }

    .specs__left {
        padding-right: 0;
    }

    .specs__right {
        padding-left: 0;
        padding-top: 50px;
        border-left: none;
        border-top: 1px solid #FF3B58;
    }

    .specs__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 480px) {
    .specs {
        padding: 40px 16px;
    }

    .specs__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .specs__right .intro__headline {
        padding-bottom: 40px;
    }

    .specs__title {
        font-size: 13px;
    }
}

/* =============================================
   Gallery Section
   ============================================= */

.gallery {
    background: #D7E9FF;
    padding: 40px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery__item {
    display: block;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 15 / 10;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery {
        padding: 30px 20px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 20px 16px;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* =============================================
   Lightbox
   ============================================= */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox--active {
    display: flex;
}

.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

.lightbox__close:hover {
    opacity: 0.7;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 50px;
    cursor: pointer;
    padding: 10px 20px;
    line-height: 1;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 0.7;
}

/* =============================================
   ESG Section
   ============================================= */

.esg {
    position: relative;
    background-color: #313C48;
    background-image: url('../images/esg/esg-bg.jpg');
    background-size: cover;
    background-position: center center;
    padding: 80px 40px;
    color: #ffffff;
    overflow: hidden;
}

.esg__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(49, 60, 72, 0.9);
    pointer-events: none;
}

.esg__inner {
    position: relative;
    z-index: 1;
    max-width: 1800px;
    margin: 0 auto;
}

/* Header area — centered */
.esg__header {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.esg__header .intro__label {
    margin-bottom: 20px;
}

.esg__header .intro__headline {
    margin-bottom: 30px;
}

.esg__separator {
    width: 60px;
    height: 1px;
    background: #FF3B58;
    margin: 0 auto 30px;
}

.esg__header .intro__text {
    margin-bottom: 16px;
}

.esg__header .intro__text:last-of-type {
    margin-bottom: 0;
}

/* Bubbles — dice-5 layout in 3 columns:
   Row 1: bubble 1 (col1), bubble 2 (col3)
   Row 2: bubble 3 (col2, center)
   Row 3: bubble 4 (col1), bubble 5 (col3)
   Uses clamp() for fluid sizing.
   Edge bubbles pushed toward edges so text extends into adjacent cells. */
.esg__bubbles {
    display: grid;
    padding-top:50px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: clamp(20px, 2.5vw, 40px) 0;
    margin: 0 auto;
}

.esg__bubble--1 {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.esg__bubble--2 {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
}

.esg__bubble--3 {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
}

.esg__bubble--4 {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
}

.esg__bubble--5 {
    grid-column: 3;
    grid-row: 3;
    justify-self: start;
}

/* Individual bubble — positioned container for circle + text */
.esg__bubble {
    position: relative;
    width: clamp(140px, 15vw, 270px);
    height: clamp(140px, 15vw, 270px);
    overflow: visible;
}

/* Circle container — holds image + icon */
.esg__bubble-circle {
    position: relative;
    width: clamp(140px, 15vw, 270px);
    height: clamp(140px, 15vw, 270px);
    transition: transform 0.6s ease;
}

.esg__bubble:hover .esg__bubble-circle {
    transform: scale(1.1);
}

.esg__bubble-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.esg__bubble-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.15);
    transition: transform 0.8s ease;
}

.esg__bubble:hover .esg__bubble-img img {
    transform: scale(1);
}

/* Icon on circle edge — base styles */
.esg__bubble-icon {
    position: absolute;
    width: clamp(36px, 3.5vw, 60px);
    height: clamp(36px, 3.5vw, 60px);
    background: #3D608F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.esg__bubble-icon img {
    width: clamp(36px, 3.5vw, 60px);
    height: clamp(45px, 4.2vw, 75px);
    object-fit: contain;
}

/* Clock positions on circle edge */
.esg__bubble-icon--clock-1 {
    top: 8%;
    right: 2%;
}

.esg__bubble-icon--clock-5 {
    bottom: 8%;
    right: 2%;
}

.esg__bubble-icon--clock-7 {
    bottom: 8%;
    left: 2%;
}

.esg__bubble-icon--clock-9 {
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
}

.esg__bubble-icon--clock-10 {
    top: 12%;
    left: 1%;
}

/* Text block — absolutely positioned, left-aligned, overflow allowed across cells */
.esg__bubble-text {
    position: absolute;
    width: clamp(140px, 14vw, 230px);
    text-align: left;
    z-index: 2;
}

/* Text position: right-top — text to the right, aligned to top */
.esg__bubble--right-top .esg__bubble-text {
    left: 100%;
    top: 0;
    margin-left: clamp(12px, 1.5vw, 24px);
}

/* Text position: left-top — text to the left, aligned to top */
.esg__bubble--left-top .esg__bubble-text {
    right: 100%;
    top: 0;
    margin-right: clamp(12px, 1.5vw, 24px);
}

/* Text position: right-bottom — text to the right, aligned to bottom */
.esg__bubble--right-bottom .esg__bubble-text {
    left: 100%;
    bottom: 0;
    margin-left: clamp(12px, 1.5vw, 24px);
}

/* Text position: left-bottom — text to the left, aligned to bottom */
.esg__bubble--left-bottom .esg__bubble-text {
    right: 100%;
    bottom: 0;
    margin-right: clamp(12px, 1.5vw, 24px);
}

.esg__bubble-title {
    font-family: "Inter", sans-serif;
    font-size: clamp(12px, 0.9vw, 15px);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 10px;
}

.esg__bubble-sep {
    width: 40px;
    height: 1px;
    background: #FF3B58;
    margin-bottom: 10px;
}

.esg__bubble-desc {
    font-family: "Inter", sans-serif;
    font-size: clamp(11px, 0.75vw, 13px);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ESG Responsive — tablet & mobile: stack vertically, image left + text right */
@media (max-width: 1024px) {
    .esg {
        padding: 60px 20px;
    }

    .esg__header {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .esg__bubbles {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .esg__bubble {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        max-width: 500px;
        height: auto;
        gap: 20px;
    }

    .esg__bubble-circle {
        flex-shrink: 0;
        width: 130px;
        height: 130px;
    }

    .esg__bubble-icon {
        width: 40px;
        height: 40px;
    }

    .esg__bubble-icon img {
        width: 40px;
        height: 50px;
    }

    .esg__bubble-icon[class*="clock-"] {
        top: 8%;
        right: 2%;
        bottom: auto;
        left: auto;
        transform: none;
    }

    .esg__bubble-text,
    .esg__bubble--right-top .esg__bubble-text,
    .esg__bubble--left-top .esg__bubble-text,
    .esg__bubble--right-bottom .esg__bubble-text,
    .esg__bubble--left-bottom .esg__bubble-text {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 0;
        width: auto;
        flex: 1;
    }

    .esg__bubble-title {
        font-size: 14px;
    }

    .esg__bubble-desc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .esg {
        padding: 40px 16px;
    }

    .esg__header {
        margin-bottom: 40px;
    }

    .esg__bubble {
        gap: 14px;
    }

    .esg__bubble-circle {
        width: 100px;
        height: 100px;
    }

    .esg__bubble-icon {
        width: 32px;
        height: 32px;
    }

    .esg__bubble-icon img {
        width: 32px;
        height: 40px;
    }

    .esg__bubble-title {
        font-size: 13px;
    }

    .esg__bubble-desc {
        font-size: 11px;
    }
}

/* =============================================
   Demographics Section
   ============================================= */

.demographics {
    background: #313C48;
    padding: 80px 40px;
    color: #ffffff;
}

.demographics__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.demographics__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.demographics__header .intro__label {
    margin-bottom: 20px;
}

.demographics__header .intro__headline {
    margin-bottom: 30px;
}

.demographics__separator {
    width: 60px;
    height: 1px;
    background: #FF3B58;
    margin: 0 auto;
}

/* 4-column grid */
.demographics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.demographics__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Circle image — same hover as ESG bubbles */
.demographics__circle {
    position: relative;
    width: clamp(180px, 18vw, 300px);
    height: clamp(180px, 18vw, 300px);
    margin-bottom: 30px;
    transition: transform 0.6s ease;
}

.demographics__item:hover .demographics__circle {
    transform: scale(1.1);
}

.demographics__img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.demographics__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.15);
    transition: transform 0.8s ease;
}

.demographics__item:hover .demographics__img img {
    transform: scale(1);
}

/* Stat area */
.demographics__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demographics__number {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 12px;
}

.demographics__sep {
    width: 40px;
    height: 2px;
    background: #FF3B58;
    margin-bottom: 16px;
}

.demographics__desc {
    font-family: "Inter", sans-serif;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 280px;
}

/* Demographics Responsive */
@media (max-width: 1024px) {
    .demographics__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }
}

@media (max-width: 600px) {
    .demographics {
        padding: 40px 16px;
    }

    .demographics__header {
        margin-bottom: 40px;
    }

    .demographics__header .intro__headline {
        font-size: 22px;
    }

    .demographics__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .demographics__circle {
        width: 140px;
        height: 140px;
    }
}

/* =============================================
   Location Section
   ============================================= */

.location {
    position: relative;
    background: #313C48;
    color: #ffffff;
    overflow: hidden;
}

.location::before,
.location::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 30%;
    pointer-events: none;
    z-index: 2;
}

.location::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.location::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.location__inner {
    display: flex;
    min-height: 600px;
}

/* Left column — text + tabs */
.location__left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 60px;
}

.location__content {
    max-width: 520px;
}

.location__content .intro__label {
    margin-bottom: 20px;
}

.location__content .intro__headline {
    margin-bottom: 30px;
}

.location__content .intro__text {
    margin-bottom: 16px;
}

.location__content .intro__text:last-of-type {
    margin-bottom: 0;
}

/* Address */
.location__address {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF3B58;
    margin-top: 24px;
}

/* Tabs — bottom of left column */
.location__tabs {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 50px;
}

.location__tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 24px;
    transition: color 0.3s ease;
}

.location__tab:first-child {
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.location__tab:last-child {
    padding-right: 0;
}

.location__tab--active {
    color: #FF3B58;
}

.location__tab:hover {
    color: #FF3B58;
}

/* Right column — panels (stacked via grid so both contribute to height) */
.location__right {
    flex: 1;
    display: grid;
    min-height: 100%;
}

.location__panel {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location__panel--active {
    visibility: visible;
    opacity: 1;
}

/* Map placeholder */
.location__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: #2a3440;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

/* Drive Times table */
.location__drive {
    padding: 60px 50px;
    min-height: 100%;
    background: #2a3440;
    display: flex;
    flex-direction: column;
}

.location__drive-title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.location__drive-sep {
    width: 40px;
    height: 2px;
    background: #FF3B58;
    margin-bottom: 30px;
}

.location__drive-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #ffffff;
}

.location__drive-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #FF3B58;
}

.location__drive-table tbody tr:nth-child(odd) {
    background: #FF3B581A;
}

.location__drive-dest {
    font-weight: 400;
    color: #ffffff;
}

.location__drive-time {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.location__drive-miles {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

/* Location Responsive */
@media (max-width: 1024px) {
    .location__left {
        flex: 0 0 40%;
        padding: 60px 40px;
    }

    .location__drive {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .location__inner {
        flex-direction: column;
        min-height: auto;
    }

    .location__left {
        flex: none;
        padding: 60px 20px 40px;
    }

    .location__content {
        max-width: 100%;
    }

    .location__tabs {
        margin-top: 30px;
    }

    .location__right {
        min-height: 400px;
    }

    .location__map-placeholder {
        min-height: 400px;
    }

    .location__drive {
        padding: 40px 20px;
    }

    .location__drive-table {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .location__left {
        padding: 40px 16px 30px;
    }

    .location__tab {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 0 16px;
    }

    .location__drive-table {
        font-size: 12px;
    }
}

/* Brochure Banner Styles */
.brochure-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.brochure-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brochure-banner-label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 10px;
}

.brochure-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brochure-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brochure-link svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brochure-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .brochure-banner-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .brochure-links {
        justify-content: center;
    }

    .brochure-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* =============================================
   Footer
   ============================================= */

.site-footer {
    position: relative;
    background: #2a3440;
    color: #ffffff;
    padding: 80px 60px;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
    pointer-events: none;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    gap: 60px;
    align-items: start;
}

/* Agent columns (DTRE + Harris Lamb) */
.site-footer__logo {
    height: 22px;
    width: auto;
    display: block;
    margin-bottom: 30px;
}

.site-footer__person {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.site-footer__person:last-child {
    margin-bottom: 0;
}

.site-footer__name {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 4px;
}

.site-footer__link {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.site-footer__link:hover {
    color: #ffffff;
}

/* Navigation column */
.site-footer__col--nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.site-footer__sep {
    width: 100%;
    height: 1px;
    background: #FF3B58;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.site-footer__nav-link {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.site-footer__nav-link:hover {
    color: #FF3B58;
}

/* Action column (brochure + credit) */
.site-footer__col--action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 100%;
}

.site-footer__btn {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FF3B58;
    text-decoration: none;
    border: 1px solid #FF3B58;
    border-radius: 100px;
    padding: 16px 36px;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.site-footer__btn:hover {
    background: #FF3B58;
    color: #ffffff;
}

.site-footer__address {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.site-footer__credit {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
    margin-top: auto;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .site-footer {
        padding: 60px 40px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 50px 40px;
    }

    .site-footer__col--action {
        min-height: auto;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 20px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-footer__col--nav {
        order: -1;
    }

    .site-footer__nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 20px;
        padding: 16px 0;
    }

    .site-footer__nav-link {
        font-size: 9px;
    }

    .site-footer__col--action {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 16px;
    }

    .site-footer__inner {
        gap: 30px;
    }

    .site-footer__logo {
        margin-bottom: 20px;
    }

    .site-footer__name {
        font-size: 13px;
    }

    .site-footer__link {
        font-size: 12px;
    }

    .site-footer__btn {
        font-size: 11px;
        padding: 14px 28px;
        letter-spacing: 2px;
    }

    .site-footer__credit {
        font-size: 11px;
    }
}
