@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

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

:root {
    --container-space: 120px;

    --red: #AA292E;
    --red-dark: #7E1E22;
    --red-light: #C23035;
    --red-glow: rgba(170,41,46,0.18);
    --grey-dark: #141416;
    --grey-mid: #252528;
    --grey-card: #2E2E32;
    --grey-light: #8E8E93;
    --white: #FFFFFF;
    --silver: #C4C4C6;
    --off-white: #F5F5F5;
    --neutral-off-white: #e7e7e7;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--off-white);
    color: var(--grey-dark);
    font-family: 'Barlow', sans-serif;
    margin-top: 20px;
    overflow-x: hidden;
}

/* ─ NAV ── */
nav {
    align-items: center;
    background: rgba(20,20,22,0.96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(170,40,45,0.2);
    display: flex;
    justify-content: space-between;
    padding: 15px 120px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
.nav-logo {
    align-items: center;
    display: flex;
    text-decoration: none;
}
.nav-logo img {
    filter: brightness(1.1);
    height: 45px;
    mix-blend-mode: screen;
    padding-bottom: 7px;
    padding-top: 5px;
    transition: filter 0.3s;
    width: auto;
}
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}
.nav-links a {
    color: var(--silver);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; 
    letter-spacing: 2px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
}
.nav-links a::after {
    background: var(--red);
    bottom: -5px;
    content: ''; 
    height: 2px; 
    left: 0;
    position: absolute;
    transition: width 0.3s;
    width: 0;
}
.nav-links a:hover {
    color: var(--white);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a.active {
    color: var(--white);
}
.nav-links a.active::after {
    width: 100%;
}
.nav-cta {
    background: var(--red);
    border: none;
    clip-path: polygon(
        8px 0%,
        100% 0%,
        calc(100% - 8px) 100%,
        0% 100%
    );
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 9px 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
    background: var(--red-light);
    transform: translateY(-1px);
}

/* ── SECTION BASE ── */
section {
    padding: 80px var(--container-space);
}
.section-tag {
    align-items: center;
    color: var(--red);
    display: flex;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    gap: 12px;
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.section-tag::before {
    background: var(--red);
    content: '';
    height: 2px;
    width: 26px;
}
.section-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: 2px;
    line-height: 1;
}
.section-h2 span {
    color: var(--red);
}

/* ── HERO ── */
#home-hero {
    align-items: center;
    background: var(--off-white);
    display: flex;
    gap: 50px;
    height: 100vh;
    justify-content: space-between;
    min-height: 720px;
    overflow: hidden;
    padding-bottom: 45px;
    position: relative;
}
.hero-slider {
    inset: 0;
    position: absolute;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition:
    opacity 1.2s ease,
    transform 7s ease;
    transform: scale(1);
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1.05);
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    align-items: center;
    animation: fadeUp 0.8s ease 0.3s forwards;
    color: var(--red-light);
    display: inline-flex;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    gap: 10px;
    letter-spacing: 4px;
    margin-bottom: 22px;
    opacity: 0;
    text-transform: uppercase;
}
.hero-eyebrow::before {
    background: var(--red);
    content: '';
    display: block;
    height: 2px;
    width: 32px;
}
.hero-h1 {
    animation: fadeUp 0.8s ease 0.5s forwards;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.8rem, 7.5vw, 7.2rem);
    line-height: 0.88;
    letter-spacing: 2px;
    opacity: 0;
}
.hero-h1 .red {
    color: var(--red);
    display: block;
}
.hero-sub {
    animation: fadeUp 0.8s ease 0.7s forwards;
    color: var(--grey-dark);
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.72;
    margin-top: 28px;
    max-width: 525px;
    opacity: 0;
}
.hero-actions {
    animation: fadeUp 0.8s ease 0.7s forwards;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
    opacity: 0;
}
.hero-stats {
    animation: fadeUp 0.8s ease 1.1s forwards;
    display: flex;
    flex-wrap: wrap;
    gap: 52px;
    margin-top: 60px;
    opacity: 0;
}
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.7rem;
    letter-spacing: 2px;
    line-height: 1;
}
.stat-num em {
    color: var(--red);
    font-style: normal;
}
.stat-label {
    color: var(--grey-light);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-top: 3px;
    text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn {
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 2px;
    padding: 13px 34px;
    text-decoration: none;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--red);
    border: none;
    color: var(--white);
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--grey-mid);
    color: var(--grey-mid);
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ── TICKER ── */
.home-ticker {
    background: var(--red);
    overflow: hidden;
    padding: 11px 0;
    white-space: nowrap;
}
.ticker-inner {
    animation: ticker 35s linear infinite;
    display: flex;
    gap: 60px;
}
.ticker-item {
    align-items: center;
    color: rgba(255,255,255,0.9);
    display: inline-flex;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    gap: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.ticker-item::after {
    color: rgba(255,255,255,0.4);
    content: '◆';
    font-size: 0.5rem;
}
@keyframes ticker {
    from {
        transform: translateX(0);
    } to {
        transform: translateX(-50%);
    }
}

/* ── BRANCHES ── */
#home-branch {
    min-height: 750px;
    position: relative;
    align-items: center;
    display: grid;
    gap: 60px;
    grid-template-columns: 280px 1fr;
    padding: 120px var(--container-space);
    overflow: hidden;
}
#home-branch::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/map.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .15;
    z-index: 0;
}
.ns-left {
    padding-top: 173px;
}
.ns-left h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    line-height: 1;
}
.ns-left h1 span {
    color: var(--red);
}
.ns-left p {
    color: var(--grey-light);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 8px;
}
.honeycomb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 25px auto 55px;
    max-width: 1200px;
    padding: 0;
    padding-bottom: 35px;
    padding-right: 22px;
}
.honeycomb-cell {
    flex: 0 0 calc(15% - 5px);
    height: 100px;
    isolation: isolate;
    margin: 70px 10px 0;
    max-width: calc(15% - 5px);
    overflow: visible;
    position: relative;
}
.honeycomb-cell::before,
.honeycomb-cell::after {
    clip-path: polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75% ,
        0% 25%
    );
    display: block;
    height: 200%;
    left: 0;
    position: absolute;
    top: -50%;
    width: 100%;
}
.honeycomb-cell::before {
    background: white;
    content: '';
    transform: scale(1);
    z-index: 0;
}
.honeycomb-cell::after {
    background:  rgba(10, 10, 10, 0.05);
    content: '';
    transition: 0.35s ease;
    z-index: 2;
}
.honeycomb-cell:hover::after {
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.35) 25%,
        transparent 50%
    );
}
.honeycomb-cell_img {
    clip-path: polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%,
        0% 25%
    );
    filter: grayscale(0%);
    height: 200%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: -50%;
    transition: 0.5s ease;
    width: 100%;
    z-index: 1;
}
.honeycomb-cell:hover .honeycomb-cell_img {
    filter: grayscale(100%) brightness(0.55);
    transform: scale(1.03);
}
.honeycomb-overlay {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    inset: 0;
    justify-content: center;
    position: absolute;
    transition: 0.5s ease;
    z-index: 3;
}
.branch-logo {
    filter:
    drop-shadow(0 0 10px rgba(0,0,0,0.35)),
    contrast(1.1),
    saturate(1);
    height: 55px;
    opacity: 1;
    transform: translateY(2px);
    transition: 0.5s ease;
}
.honeycomb-cell:hover .branch-logo {
    opacity: 0;
    transform: scale(1);
}
.branch-link{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.honeycomb-cell_info {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
    font-weight: 500;
    inset: 0;
    justify-content: center;
    line-height: 1.35;
    opacity: 0;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(25px);
    transition: 0.35s ease;
    z-index: 3;
}
.honeycomb-cell:hover .honeycomb-cell_info {
    opacity: 1;
    transform: translateY(5px);
}
.honeycomb-cell_info h4 {
    color: #fff;
    font-size: .9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.branch-location {
    align-items: center;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 25px;
    color: #fff;
    display: flex;
    font-size: .70rem;
    gap: 5px;
    justify-content: center;
    padding: 5px 10px;
    white-space: nowrap;
}
.honeycomb-cell:nth-child(12n + 7),
.honeycomb-cell:nth-child(12n + 8),
.honeycomb-cell:nth-child(12n + 9),
.honeycomb-cell:nth-child(12n + 10),
.honeycomb-cell:nth-child(12n + 11),
.honeycomb-cell:nth-child(12n + 12) {
    transform: translateX(56%);
}

/* ── ABOUT SNIPPET ── */
#home-about {
    padding: 7px var(--container-space) 150px;
    align-items: center;
    background: var(--off-white);
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
}
.about-visual {
    height: 420px;
    position: relative;
}
.av-box {
    border: 1px solid rgba(170,41,46,0.35);
    clip-path: polygon(
        0 0,
        calc(100% - 36px) 0,
        100% 36px,
        100% 100%,
        36px 100%,
        0 calc(100% - 36px)
    );
    position: absolute;
}
.av-box-1 {
    inset: 0; background:
    linear-gradient(135deg, rgba(170,41,46,0.12), transparent);
}
.av-box-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
    brightness(1.25)
    contrast(1.25);
}
.av-box-2 {
    border-color: var(--red-light);
    border-width: 3px;
    bottom: -20px;
    left: 15px;
    right: -15px;
    top: 15px;
}
.av-inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    inset: 44px;
    justify-content: center;
    position: absolute;
}
.av-big {
    color: rgba(255, 255, 255, 0.74);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    letter-spacing: -2px;
    line-height: 1;
    text-align: center;
}
.av-badge {
    background: var(--red);
    clip-path: polygon(
        7px 0%,
        100% 0%,
        calc(100% - 7px) 100%,
        0% 100%
    );
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    padding: 7px 18px;
    text-transform: uppercase;
}
.av-year {
    color: rgba(255, 255, 255, 0.74);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 4px;
}
.about-text p {
    color: var(--grey-mid);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 14px;
}
.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin-top: 18px;
}
.check-list li {
    align-items: center;
    display: flex;
    font-size: 0.93rem;
    gap: 12px;
}
.check-list li::before {
    background: var(--red);
    content: '';
    display: block;
    flex-shrink: 0;
    height: 2px;
    width: 16px;
}

/* ── GOLDEN GROUP ── */
#golden-group{
    background: linear-gradient(
        90deg,
        #16171b,
        #1f2025,
        #16171b
    );
    padding: 90px var(--container-space);
    position: relative;
}
#golden-group::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(194,157,72,.8),
        transparent
    );
}
.golden-content{
    display:grid;
    grid-template-columns: 275px 1fr;
    gap:50px;
    align-items:center;
    max-width:900px;
    margin:auto;
}
.golden-logo{
    width:250px;
    height:auto;
}
.golden-text p{
    margin:20px 0 30px;
    color:#bdbdbd;
    line-height:1.9;
    max-width:650px;
}
#golden-group .section-tag{
    color:#c29d48;
}
#golden-group .section-tag::before{
    background:#c29d48;
}
#golden-group .section-h2{
    color:white;
}
#golden-group .section-h2 span{
    color:#c29d48;
}

/* ── PRODUCT PREVIEW ── */
#home-products {
    padding: 120px var(--container-space);
    background: var(--neutral-off-white);
}
.hp-header {
    align-items: flex-end;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.swiper {
    margin-top: 35px;
    padding: 10px 0;
}
.swiper-slide {
    height: auto;
}
.product-card {
    background: #e5e5e5;
    cursor: pointer;
    display: grid;
    height: 420px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: transform .3s, background .3s;
}
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.3) 45%,
        transparent 100%
    );
    z-index: 1;
}
.product-card img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22,1,.35,1);
    width: 100%;
}
.product-card h3 {
    bottom: 30px;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    left: 35px;
    letter-spacing: 1px;
    position: absolute;
    text-transform: uppercase;
    transition:
    transform .35s ease,
    color .35s ease;
    z-index: 2;
}
.product-card:hover img {
    transform: scale(1.05);
}
.product-card:hover h3 {
    transform: translateY(-5px);
    color: var(--red);
}
.product-card:hover {
    background: white;
}
.swiper-button-prev,
.swiper-button-next {
    color: var(--off-white);
    transition: .3s ease;
}
.swiper-button-prev{
    left: 25px;
}
.swiper-button-next{
    right: 25px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 35px;
    font-weight: 900;
}
.swiper-button-next:hover {
    color: var(--red);
}

/* ── WHY US ── */
#home-why-us {
    padding: 120px var(--container-space);
    background: var(--off-white);
}
.why-grid {
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
}
.why-card {
    background: var(--grey-mid);
    padding: 36px 26px;
    position: relative;
}
.why-card::before {
    background: var(--red);
    content: '';
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    transition: height 0.4s;
    width: 3px;
}
.why-card:hover::before {
    height: 100%;
}
.why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--red-dark);
    line-height: 1;
    margin-bottom: 12px;
}
.why-card h4 {
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.why-card p {
    color: var(--grey-light);
    font-size: 0.83rem;
    line-height: 1.65;
}

/* ── FOOTER ── */
footer {
    background: #0A0A0C;
    border-top: 5px solid rgba(170,41,46,0.18);
    padding: 55px var(--container-space) 25px;
}
.footer-top {
    border-bottom: 1px solid var(--grey-light);
    display: grid;
    gap: 48px;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    padding-bottom: 44px;
}
.footer-logo-img {
    display: block;
    filter: brightness(1.1);
    height: 55px;
    mix-blend-mode: screen;
    opacity: 0.85;
    width: auto;
}
.footer-tagline {
    color: var(--silver);
    font-size: .8rem;
    font-weight: 750;
    line-height: 1.5;
    margin-top: 25px;
    max-width: 200px;
    opacity: 0.85;
}
.footer-address {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    margin-top: 5px;
}
.footer-address i {
    color: var(--red-dark);
    margin-top: 3px;
}
.footer-address p {
    color: var(--grey-light);
    font-size: 0.85rem;
    line-height: 1.72;
    margin: 0;
    max-width: 290px;
}
.footer-col h5 {
    color: var(--red);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.footer-col ul {
    display: flex;
    gap: 10px;
    flex-direction: column;
    list-style: none;
}
.footer-col ul li {
    align-items: flex-start;
    color: var(--grey-light);
    display: flex;
    font-size: 0.82rem;
    gap: 10px;
    line-height: 1.4;
}
.footer-col ul li a {
    color: var(--grey-light);
    font-size: 0.84rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--white);
}
.footer-col ul li i {
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
}
.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    align-items: center;
    background: var(--grey-mid);
    border-radius: 25%;
    color: var(--silver);
    display: flex;
    font-size: 1.5rem;
    height: 50px;
    justify-content: center;
    text-decoration: none;
    transition:
        background 0.5s ease,
        color 0.3s ease,
        transform 0.25s cubic-bezier(.22, 1, .35, 1);
    width: 50px;
    text-decoration: none;
}
.footer-socials a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-5px);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

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

/* ── HAMBURGER MENU ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 200;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--silver);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown list */
.mobile-menu {
    background: rgba(14,14,16,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(170,40,45,0.2);
    display: flex;
    flex-direction: column;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    position: absolute;
    right: 0;
    top: 100%;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    z-index: 150;
}
.mobile-menu.open {
    max-height: 420px;
    opacity: 1;
    padding: 6px 20px 16px;
}
.mobile-menu a {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--silver);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 14px 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--red);
}
.mobile-menu .mobile-cta {
    background: var(--red);
    border: none;
    border-bottom: none;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-top: 12px;
    padding: 13px 24px;
    text-align: center;
    text-decoration: none;
}

/* ── RESPONSIVE ── */

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
    :root {
        --container-space: 48px;
    }
    nav {
        padding: 12px 48px;
    }
    #home-hero {
        padding: 80px 48px 45px;
    }
    #home-branch {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 48px;
        min-height: unset;
    }
    .ns-left {
        padding-top: 0;
        text-align: center;
    }
    .ns-left .btn {
        margin: 0 auto;
    }
    .honeycomb-cell {
        flex: 0 0 calc(22% - 5px);
        max-width: calc(22% - 5px);
    }
    .honeycomb-cell:nth-child(12n + 7),
    .honeycomb-cell:nth-child(12n + 8),
    .honeycomb-cell:nth-child(12n + 9),
    .honeycomb-cell:nth-child(12n + 10),
    .honeycomb-cell:nth-child(12n + 11),
    .honeycomb-cell:nth-child(12n + 12) {
        transform: translateX(50%);
    }
    #home-about {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 48px 100px;
    }
    #home-products {
        padding: 80px 48px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #home-why-us {
        padding: 80px 48px;
    }
    footer {
        padding: 55px 48px 25px;
    }
    .golden-content {
        grid-template-columns: 200px 1fr;
        gap: 36px;
    }
    .golden-logo {
        width: 180px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-logo-img {
        height: 44px;
    }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {
    :root {
        --container-space: 20px;
    }

    /* Nav */
    nav {
        padding: 12px 20px;
    }
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }

    /* Hero */
    #home-hero {
        height: 100svh;
        min-height: 580px;
        padding: 0 20px 40px;
        align-items: flex-end;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding-bottom: 20px;
    }
    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }
    .hero-h1 {
        font-size: clamp(3rem, 13vw, 5rem);
        line-height: 0.9;
    }
    .hero-sub {
        font-size: 0.88rem;
        margin-top: 16px;
        line-height: 1.6;
        max-width: 100%;
    }
    .hero-actions {
        margin-top: 24px;
        gap: 10px;
    }
    .hero-stats {
        gap: 24px;
        margin-top: 32px;
    }
    .stat-num {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    /* Section base */
    section {
        padding: 60px 20px;
    }

    /* Branches — ganti honeycomb jadi grid card biasa di mobile */
    #home-branch {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 20px;
        min-height: unset;
    }
    .ns-left {
        padding-top: 0;
        text-align: center;
    }
    .ns-left h1 {
        font-size: 2.4rem;
    }
    .honeycomb {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin: 0;
        padding: 0;
        max-width: 100%;
    }
    .honeycomb-cell {
        flex: unset;
        max-width: 100%;
        height: 90px;
        margin: 0;
        clip-path: none;
        border-radius: 8px;
        overflow: hidden;
        background: var(--grey-mid);
    }
    /* Reset hexagon pseudo-elements di mobile */
    .honeycomb-cell::before,
    .honeycomb-cell::after {
        clip-path: none;
        border-radius: 8px;
        height: 100%;
        top: 0;
    }
    .honeycomb-cell_img {
        clip-path: none;
        border-radius: 8px;
        height: 100%;
        top: 0;
        filter: none;
    }
    /* Hapus overlay abu-abu tipis di belakang logo — nutupin foto background */
    .honeycomb-cell::after {
        display: none;
    }
    /* Nonaktifkan efek hover (tap) di mobile — logo & foto tetap konsisten */
    .honeycomb-cell:hover .honeycomb-cell_img {
        filter: grayscale(40%) brightness(0.6);
        transform: none;
    }
    .honeycomb-cell:hover .branch-logo {
        opacity: 1;
        transform: translateY(2px);
    }
    /* Offset baris kedua hexagon — nonaktifkan di mobile */
    .honeycomb-cell:nth-child(12n + 7),
    .honeycomb-cell:nth-child(12n + 8),
    .honeycomb-cell:nth-child(12n + 9),
    .honeycomb-cell:nth-child(12n + 10),
    .honeycomb-cell:nth-child(12n + 11),
    .honeycomb-cell:nth-child(12n + 12) {
        transform: none;
    }
    /* Mobile: tampilkan logo cabang aja, sembunyikan nama & lokasi */
    .honeycomb-cell_info {
        display: none;
    }
    .branch-logo {
        opacity: 1;
        height: 34px;
        position: relative;
    }

    /* About */
    #home-about {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 20px 80px;
    }
    .about-visual {
        height: 260px;
        order: -1;
    }
    .av-big {
        font-size: 2.8rem;
    }
    .about-text {
        text-align: left;
    }
    .about-text div[style*="display:flex"] {
        flex-direction: column;
    }

    /* Golden Group */
    #golden-group {
        padding: 60px 20px;
    }
    .golden-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .golden-logo {
        margin: 0 auto;
        width: 160px;
    }
    #golden-group .section-tag {
        justify-content: center;
    }

    /* Products */
    #home-products {
        padding: 60px 20px;
    }
    .hp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .product-card {
        height: 320px;
    }
    .product-card h3 {
        font-size: 1.4rem;
        left: 20px;
        bottom: 20px;
    }

    /* Why us */
    #home-why-us {
        padding: 60px 20px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2px;
        margin-top: 32px;
    }

    /* Footer */
    footer {
        padding: 44px 20px 0;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-logo-img {
        height: 38px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding: 20px 0;
    }
    .footer-socials a {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

/* ── SMALL MOBILE (≤ 400px) ── */
@media (max-width: 400px) {
    .hero-h1 {
        font-size: clamp(2.6rem, 14vw, 3.5rem);
    }
    .hero-sub {
        font-size: 0.82rem;
    }
    .honeycomb {
        grid-template-columns: repeat(2, 1fr);
    }
    .btn {
        padding: 11px 24px;
        font-size: 0.8rem;
    }
}