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

html {
    background: #050505;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: #050505;
}

@font-face {
    font-family: 'Fragor';
    src: url('FragorDemoVersionRegular-eZDpO.ttf') format('truetype');
}

@font-face {
    font-family: 'Ciento';
    src: url('Ciento Regular.otf') format('truetype');
}

.intro-screen{
    position: fixed;
    /* border: 1px solid; */
    justify-self: center;
    /* margin-top: 100px; */
    z-index: 99999;
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    background-color: #000;
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
    top: 0;
    left: 0;
}

.intro-screen.exiting {
  opacity: 0;
  transform: translateY(-100%) scale(0.95);
  /* display: none; */
  pointer-events: none;
}
.intro-logo{
    display: flex;
    font-size: 150px;
    font-family: 'Fragor';
    gap: 20px;
    color: #bd8e37;
    /* justify-content: center; */
    margin: 0;
     filter: brightness(0.3);
     transition: 1s;
}
.intro-screen p{
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    color: floralwhite;
    margin-top: -40px;
    letter-spacing: 3px;
    opacity: 0;
    transition: 0.9s;

    margin: 0 0 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.7);
    line-height: 1;

        -webkit-background-clip: unset;
    -webkit-text-fill-color: #C0C0C0;
    background-clip: unset;
    background: none;
    color: #c2bbb3;
}

.intro-logo h1{
  opacity: 0;
  animation: revealLetter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.intro-logo h1:nth-child(1) { animation-delay: 0.2s; }
.intro-logo h1:nth-child(2) { animation-delay: 0.35s; }
.intro-logo h1:nth-child(3) { animation-delay: 0.5s; }
.intro-logo h1:nth-child(4) { animation-delay: 0.65s; }

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

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("grain.png");
    opacity: 0.15;
    z-index: 9000;

}

/* HERO */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1260px;
    width: min(90vw, 1260px);
    padding: 0 clamp(24px, 4vw, 64px);
    gap: 48px;
    background-color: rgba(10, 10, 10, 0.733);
    /* border: 1px solid rgba(201, 169, 110, 0.06); */
    border-top: 0;
    border-radius: 0px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(12px);
    position: fixed;
    z-index: 10000;
    animation: headerFadeIn 0.8s ease-out 2.8s forwards;
    opacity: 0;
}

.header h1 {
    font-family: 'Fragor';
    color: #bd8e37;
    letter-spacing: 0.18em;
    font-weight: 900;
    font-size: 40px;
    line-height: 1;
    animation: logoFadeIn 0.8s ease-out 2.8s forwards;
    opacity: 0;
}

.header nav {
    display: flex;
    /* margin-top: 30px; */
    justify-content: flex-end;
    gap: clamp(20px, 3vw, 36px);
}

.header nav a {
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    color: floralwhite;
    font-size: 15px;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease;
    animation: navLinkFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.header nav a:nth-child(1) { animation-delay: 2.95s; }
.header nav a:nth-child(2) { animation-delay: 3.1s; }
.header nav a:nth-child(3) { animation-delay: 3.25s; }
.header nav a:nth-child(4) { animation-delay: 3.4s; }
.header .header-nav.active {
    color: #D4AF37;
}

.header .header-nav.active::after {
    width: 100%;
}

.header nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.header nav a:hover {
    color: #D4AF37;
} 

.header nav a:hover::after {
    width: 100%;
}

.hero {
    background: radial-gradient(circle at 78% 34%, rgba(201, 169, 110, 0.13), transparent 28%);
        /* linear-gradient(105deg, #070707 0%, #0b0b0b 46%, #121111 100%); */
    /* min-height: 80vh; */
    position: relative;
    overflow: hidden;
    color: white;
    z-index: auto;
    height: 100vh;
    background-color: #000;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(34px, 5vw, 88px);
    width: min(90vw, 1280px);
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto;
    padding-top: -100px;
    padding-bottom: clamp(42px, 7vh, 82px);
}

.hero-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    min-height: 0;
    isolation: isolate;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 13%,
            black 87%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 13%,
            black 87%,
            transparent 100%);
}

.hero-img-wrapper::after {
    content: "";
    display: none;
}

.hero-content img {
    width: min(44vw, 560px);
    height: min(74vh, 660px);
    height: 760px;
    margin-top: clamp(16px, 5vh, 48px);
    /* mix-blend-mode: inherit; */
    /* filter: drop-shadow(25px 25px 10px #b89b728a); */
    object-fit: contain;
    object-position: center top;
    opacity: 0.94;
    filter: contrast(1.04) saturate(0.9);
    -webkit-mask-image: linear-gradient(to bottom,
            black 0%,
            black 58%,
            rgba(0, 0, 0, 0.72) 69%,
            transparent 88%);
    mask-image: linear-gradient(to bottom,
            black 0%,
            black 58%,
            rgba(0, 0, 0, 0.72) 69%,
            transparent 88%);
    animation: intro 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 2.8s;
}

@keyframes intro {
    from {
        opacity: 0;
        transform: translate(60px, 80px);
    }

    to {
        opacity: 0.94;
        transform: translate(0, 0);
    }
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes navLinkFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sec6ImgIntro {
    from {
        opacity: 0;
        transform: translate(-50px, 60px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes sec6FadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-text {
    display: flex;
    flex-direction: column;
    width: 800px;
    gap: 30px;
    z-index: 999;
    margin-top: -100px;
}

.hero-text h1 {
    font-size: 46px;
    font-family: 'Fragor';
    color: #A8A29E;
    line-height: 0.95;
}

.hero-text h2 {
    font-size: 86px;
    font-family: 'Fragor';
    line-height: 0.93;
    /* color: #C9A96E; */
    /* background: linear-gradient(135deg,
            #c9a43f 0%,
            #F5E27A 40%,
            #c49925 60%,
            #a87847 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    color: #bd8e37;
    /* #ecd8c0 */
}

.hero-text .accent {
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #C0C0C0;
    background-clip: unset;
    background: none;
    color: #c2bbb3;
    /* #C0C0C0 */
    /* #fadeb1 */
}

.hero-eyebrow {
    margin: 0 0 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.7);
    line-height: 1;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18px, 2.4vw, 35px);
    margin-top: 4px;
}

/* .buttons button {
    padding: 10px 20px;
    font-family: 'Ciento';
    font-size: 16px;
    color: floralwhite;
    background-color: #a6785c;
    background-color: #b89b72;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
} */
.buttons button {
    background: transparent;
    border: 1px solid #C9A96E;
    color: #C9A96E;
    padding: 14px 32px;
    border-radius: 0;
    /* sharp corners for luxury */
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    /* wide spacing for a premium feel */
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* .btn-ghost:hover {
  background: #C9A96E;
  color: #0D0D0D;
} */

/* Optional: subtle glow on hover */
.buttons button:hover {
    background: #C9A96E;
    color: #0D0D0D;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.2);
}

.marquee-strip {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 18px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    margin: 30px;
    /* breathing room between sections */
    margin-left: 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marquee 26s linear infinite;
}

.marquee-track span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.5);
    white-space: nowrap;
}

.marquee-track .dot {
    color: rgba(201, 169, 110, 0.3);
    font-size: 8px;
    letter-spacing: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-20%);
    }

    100% {
        transform: translateX(-40%);
    }
}

/* .buttons button:hover {
    background-color: #a6785c;
    background-color: #b89b72;
}   */

@media (max-width: 1180px) {
    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
        gap: 42px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text h2 {
        font-size: 70px;
    }
}

@media (max-width: 880px) {
    .header {
        left: 0;
        right: 0;
        transform: none;
        max-width: none;
        width: auto;
        height: 62px;
        padding: 0 22px;
        gap: 24px;
        overflow: hidden;
    }

    .header h1 {
        font-size: 32px;
        letter-spacing: 0.16em;
    }

    .header nav {
        gap: 16px;
    }

    .header nav a {
        font-size: 12px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 26px;
        width: min(88vw, 620px);
        padding-top: 88px;
        padding-bottom: 56px;
    }

    .hero-text {
        position: relative;
        z-index: 2;
        max-width: 560px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text h2 {
        font-size: 58px;
    }

    .hero-img-wrapper {
        position: absolute;
        inset: 18% -22% 0 30%;
        z-index: 0;
        opacity: 0.52;
    }

    .hero-img-wrapper::after {
        height: 48%;
    }

    .hero-content img {
        width: min(92vw, 520px);
        height: 62vh;
        margin-top: 0;
    }
}

@media (max-width: 520px) {
    .intro-logo{
        font-size: 50px;

    }
    .intro-screen p{
        font-size: 13px;
        letter-spacing: 1px;
        margin-top: 0;
    }
    .header {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        height: 76px;
        padding: 8px 16px 9px;
        gap: 5px;
    }

    .header h1 {
        flex: 0 0 auto;
        font-size: 25px;
        letter-spacing: 0.12em;
    }

    .header nav {
        flex: 0 0 auto;
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
        gap: 16px;
    }

    .header nav a {
        font-size: 10px;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .hero-content {
        width: 100%;
        padding-top: 108px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero-text h1 {
        font-size: 29px;
    }

    .hero-text h2 {
        max-width: 7.4em;
        font-size: 40px;
    }

    .buttons {
        gap: 12px;
    }

    .buttons button {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .hero-img-wrapper {
        inset: 34% -56% 0 42%;
        opacity: 0.42;
    }

}

@media (max-width: 380px) {
    .header h1 {
        font-size: 23px;
    }

    .header nav {
        gap: 7px;
    }

    .header nav a {
        font-size: 9px;
    }

    .hero-text h2 {
        font-size: 37px;
    }
}

/* SECTION 2 */
.sec-2 {
    position: relative;
    isolation: isolate;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: clamp(96px, 10vw, 150px) clamp(22px, 6vw, 80px);
    background:
        radial-gradient(circle at 18% 24%, rgba(201, 169, 110, 0.08), transparent 27%),
        radial-gradient(circle at 78% 74%, rgba(168, 120, 92, 0.1), transparent 32%),
        linear-gradient(180deg, #020202 0%, #080706 45%, #000 100%);
    color: floralwhite;
    overflow: hidden;
}

.sec-2::before {
    content: "";
    position: absolute;
    inset: 7% clamp(18px, 5vw, 70px);
    border-top: 1px solid rgba(201, 169, 110, 0.12);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    pointer-events: none;
    z-index: 0;
}

.sec-2::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 34%, transparent 68%, rgba(0, 0, 0, 0.62)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 35%, rgba(0, 0, 0, 0.64));
    pointer-events: none;
    z-index: 0;
}

.bg-text {
    position: absolute;
    top: 35%;
    left: 55%;
    transform: translate(-50%, -50%);
    color: rgba(201, 169, 110, 0.08);
    text-align: center;
    font-size: clamp(120px, 18vw, 260px);
    line-height: 1;
    font-family: 'Fragor';
    letter-spacing: 0.3em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.sec-2 .content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 330px) minmax(0, 860px);
    align-items: center;
    gap: clamp(38px, 5.6vw, 86px);
    width: min(1180px, 100%);
    z-index: 1;
    margin-top: 0;
}

.sec-2 .content .text {
    position: relative;
    width: 100%;
    min-height: 430px;
    padding: clamp(30px, 4vw, 46px);
    background:
        linear-gradient(145deg, rgba(9, 9, 9, 0.94), rgba(16, 13, 10, 0.78)),
        linear-gradient(180deg, rgba(201, 169, 110, 0.08), transparent 36%);
    border: 1px solid rgba(201, 169, 110, 0.14);
    border-radius: 0;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    overflow: hidden;
}

.sec-2 .content .text::before {
    content: "";
    width: 44px;
    height: 1px;
    background: rgba(201, 169, 110, 0.55);
}

.sec-2 .content .text::after {
    content: "";
    position: absolute;
    right: -28%;
    bottom: -18%;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    transform: rotate(18deg);
    pointer-events: none;
}

.sec-2 .content .text h1 {
    width: auto;
    max-width: 7.4ch;
    font-family: "Cormorant Garamond", serif;
    /* color: #c9a96e; */
    color: #bd8e37;
    font-size: 60px;
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: 0.01em;
    margin-left: -10px;
}

.sec-2 .content .text h4 {
    color: rgba(248, 231, 196, 0.64);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-left: -9px;
}

.sec-2 .content .text p {
    width: auto;
    max-width: 27ch;
    font-family: "Inter", sans-serif;
    color: rgba(255, 250, 240, 0.76);
    font-size: 14px;
    line-height: 1.8;
    margin-left: -8px;
}

.content .collections {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: clamp(14px, 1.8vw, 24px);
    min-height: 560px;
}

.content .collections::before {
    content: "";
    position: absolute;
    inset: 9% -4% 13% 8%;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transform: translateY(18px);
    pointer-events: none;
    z-index: -1;
}

.collection-card {
    position: relative;
    height: clamp(390px, 42vw, 540px);
    overflow: hidden;
    background: #050505;
    border: 1px solid rgba(201, 169, 110, 0.16);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.58);
}

.collection-card:nth-child(1) {
    height: clamp(370px, 38vw, 500px);
    transform: translateY(44px);
}

.collection-card:nth-child(2) {
    height: clamp(440px, 47vw, 590px);
    transform: translateY(-18px);
}

.collection-card:nth-child(3) {
    height: clamp(350px, 36vw, 470px);
    transform: translateY(76px);
}

.collection-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 32%, rgba(0, 0, 0, 0.62)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 46%, rgba(0, 0, 0, 0.2));
    z-index: 1;
    pointer-events: none;
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 248, 232, 0.08);
    z-index: 2;
    pointer-events: none;
}

.collection-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    opacity: 0.86;
    filter: grayscale(1) contrast(1.18) brightness(0.78) saturate(0.82);
    transform: scale(1.015);
    transition: transform 0.8s ease, filter 0.8s ease, opacity 0.8s ease;
}

.collection-card .card-label {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 90;
    /* sits above the ::before (z:1) and ::after (z:2) overlays */
    font-size: 13px;
    /* or whatever size fits your design */
    /* font-family: 'Montserrat', sans-serif; */
    background-color: #020202ea;
    padding: 8px 14px;
    width: 100%;
    height: 60px;
}

.collection-card .card-label h4 {
    font-family: 'Montserrat';
    font-weight: 400;
    color: #c9a96e;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.collection-card .card-label p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(255, 250, 240, 0.76);
    font-size: 12px;
    /* line-height: 1.6; */
    margin-top: 6px;
    letter-spacing: 1px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

.collection-card:nth-child(1) img {
    object-position: 50% 38%;
}

.collection-card:nth-child(2) img {
    object-position: 50% 22%;
}

.collection-card:nth-child(3) img {
    object-position: 54% 32%;
}

.collection-card:hover img {
    opacity: 0.96;
    filter: grayscale(1) contrast(1.24) brightness(0.86) saturate(0.9);
    transform: scale(1.055);
}

@media (max-width: 1050px) {
    .sec-2 {
        min-height: auto;
    }

    .content {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .content .text {
        max-width: 560px;
        min-height: auto;
    }

    .content .collections {
        min-height: 500px;
    }
}

@media (max-width: 720px) {
    .sec-2 {
        padding: 86px 20px 104px;
    }

    .sec-2::before {
        inset: 40px 20px;
    }

    .bg-text {
        font-size: 112px;
        letter-spacing: 0.08em;
    }

    .content {
        gap: 36px;
    }

    .content .text {
        padding: 28px 24px;
    }

    .content .text h1 {
        max-width: 8.5ch;
        font-size: 48px;
    }

    .content .text p {
        max-width: 32ch;
    }

    .content .collections {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
    }

    .content .collections::before {
        display: none;
    }

    .collection-card,
    .collection-card:nth-child(1),
    .collection-card:nth-child(2),
    .collection-card:nth-child(3) {
        height: min(118vw, 520px);
        transform: none;
    }
}

/* SECTION 3 */
.sec-3 {
    display: flex;
    position: relative;
    min-height: 82vh;
    padding: clamp(96px, 13vh, 150px) clamp(28px, 6vw, 84px);
    align-items: center;
    overflow: hidden;
    background: #050505;
}

.sec-3 img {
    filter: brightness(0.5) grayscale(100%);
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sec-3::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.22) 100%),
        radial-gradient(circle at 18% 45%, rgba(201, 169, 110, 0.16), transparent 32%);
}

.sec-3 .content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 30px);
    width: min(100%, 680px);
    margin-left: 0;
}

.sec-3 .content::before {
    content: "";
    width: 100px;
    height: 1px;
    background: rgba(199, 157, 81, 0.55);
}

.sec-3 .content h1 {
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.95;
    color: #bd8e37;
    font-family: 'Fragor';
    word-spacing: 2px;
    /* max-width: 720px; */
    /* width: min(100%, 200.4ch); */
    width: 900px;
}

.sec-3 .content h4 {
    color: rgba(201, 169, 110, 0.7);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 400;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    line-height: 1.4;
}

.sec-3 .content p {
    width: min(100%, 560px);
    font-family: 'Inter', sans-serif;
    color: rgba(255, 250, 240, 0.78);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.85;
}

/* SECTION 4 */
.sec-4 {
    /* background: #0A0A0A; */
    background-color: #000;
    color: #F5F0E8;
    padding: 120px clamp(22px, 6vw, 80px);
}

.featured-products-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.products-eyebrow {
    margin: 0 0 22px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.4em;
    line-height: 1.4;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.68);
}

.products-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 48px;
}

.products-heading-row h2 {
    margin: 0;
    font-family: 'Fragor';
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0;
    color: #F5F0E8;
}

.products-heading-row a {
    flex: 0 0 auto;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    color: #D4AF37;
    transition: color 0.4s ease;
}

.products-heading-row a:hover {
    color: rgba(212, 175, 55, 0.72);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 28px);
}

.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 14px 14px 18px;
    background: #111111;
    border-radius: 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s ease;
}

.product-card:hover {
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.product-media {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 3 / 4;
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    filter: brightness(1);
    transition: filter 0.4s ease;
}

.product-media::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    z-index: 2;
}

.product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 38%, rgba(0, 0, 0, 0.42)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 48%, rgba(0, 0, 0, 0.22));
    pointer-events: none;
    z-index: 1;
}

.product-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    filter: grayscale(1) contrast(1.18) brightness(0.74) saturate(0.78);
    transform: scale(1.01);
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.product-media-jacket img {
    object-position: 50% 64%;
}

.product-media-shirt img {
    object-position: 50% 42%;
}

.product-media-hoodie img {
    object-position: 50% 50%;
}

.product-media-pants img {
    object-position: 50% 50%;
}

.product-card:hover .product-media {
    filter: brightness(1.1);
}

.product-card:hover .product-media img {
    opacity: 0.98;
    filter: grayscale(1) contrast(1.22) brightness(0.82) saturate(0.82);
    transform: scale(1.04);
}

.product-card h3 {
    margin: 0 0 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1.5;
    text-transform: uppercase;
    color: #F5F0E8;
}

.product-card p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 1000;
    line-height: 1.4;
    color: #bd8e37;
}

@media (max-width: 980px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .sec-4 {
        padding: 92px 20px;
    }

    .products-heading-row {
        display: block;
        margin-bottom: 34px;
    }

    .products-heading-row h2 {
        margin-bottom: 20px;
        font-size: 42px;
    }

    .products-heading-row a {
        display: inline-block;
        margin-bottom: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION 6 */
.sec-6 {
    background-color: #000;
    height: 90vh;
}

.sec-6 .content {
    display: flex;
    gap: 10px;
    justify-items: center;
    justify-content: center;
}

.sec-6 .content .text {
    color: white;
    display: flex;
    flex-direction: column;
    margin-top: 160px;
    gap: 20px;
}

.sec-6 .content .text::before {
    content: "";
    width: 100px;
    height: 1px;
    background: rgba(199, 157, 81, 0.55);
}

.sec-6 .content .text h4 {
    color: rgba(248, 231, 196, 0.64);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    line-height: 1.4;
    opacity: 0;
    animation: sec6FadeUp 0.8s ease-out forwards paused;
}

.sec-6 .content .text h1 {
    width: 600px;
    font-size: 65px;
    font-family: 'Fragor';
    color: #bd8e37;
    line-height: .9;
    opacity: 0;
    animation: sec6FadeUp 0.8s ease-out 0.15s forwards paused;
}

.sec-6 .content .text p {
    width: 400px;
    font-size: 17px;
    font-family: "Inter";
    color: rgba(255, 250, 240, 0.76);
    opacity: 0;
    animation: sec6FadeUp 0.8s ease-out 0.3s forwards paused;
}

.sec-6 .content img {
    -webkit-mask-image: linear-gradient(to bottom,
            black 0%,
            black 58%,
            rgba(0, 0, 0, 0.72) 69%,
            transparent 88%);
    mask-image: linear-gradient(to bottom,
            black 0%,
            black 58%,
            rgba(0, 0, 0, 0.72) 69%,
            transparent 88%);
    /* height: 800px; */
    animation: sec6ImgIntro 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s forwards paused;
    opacity: 0;
}
.sec-6 .content .text a {
    flex: 0 0 auto;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.22em;
    line-height: 1;
    text-decoration: underline;
    text-transform: uppercase;
    color: #bd8e37;
    transition: color 0.4s ease;
    opacity: 0;
    animation: sec6FadeUp 0.8s ease-out 0.6s forwards paused;
}

.sec-6 .content .text a:hover {
    color: rgba(212, 175, 55, 0.72);
}

/* SECTION 7 - TESTIMONIALS */
.sec-7 {
    /* background: #080808; */
    padding: 120px clamp(22px, 6vw, 80px);
    color: #F5F0E8;
    background-color: #000;
}

.testimonials-container {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* max-width: 600px; */
}

.testimonials-eyebrow {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.5);
    line-height: 1;
}

.testimonials-header h2 {
    margin: 0;
    font-family: 'Fragor';
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 400;
    line-height: 0.92;
    color: #F5F0E8;
    width: 100%;
}

.testimonials-divider {
    width: 40px;
    height: 1px;
    background: #D4AF37;
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
}

.testimonials-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    align-items: center;
    /* margin-left: 600px; */
}

.testimonial-card {
    flex: 0 0 auto;
    width: 360px;
    padding: 48px;
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.quotation-mark {
    margin: 0;
    font-family: 'Fragor';
    font-size: 64px;
    color: rgba(212, 175, 55, 0.3);
    line-height: 1;
}

.quote-text {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.85);
    max-width: 400px;
}

.quote-divider {
    width: 40px;
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
}

.reviewer-name {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #bd8b2d;
}

.reviewer-location {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(245, 240, 232, 0.4);
}

.testimonials-arrow {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 20px;
    transition: all 0.3s ease;
}

.testimonials-arrow:hover {
    background: rgba(212, 175, 55, 0.1);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.testimonial-dot {
    width: 6px;
    height: 6px;
    background: rgba(212, 175, 55, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 20px;
    background: #bd8e37;
    border-radius: 3px;
}

/* FOOTER */
footer {
    background: #050505;
}

/* Features Strip */
.footer-features-strip {
    /* background: #0D0D0D; */
    background-color: #000;
    padding: 48px clamp(22px, 6vw, 80px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-features-container {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(40px, 8vw, 80px);
    place-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bd8e37;
    font-size: 24px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-label {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #F5F0E8;
    line-height: 1;
}

.feature-description {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.4);
    line-height: 1.4;
}

/* Main Footer Body */
.footer-body {
    background: #0A0A0A;
    padding: 80px clamp(22px, 6vw, 80px);
}

.footer-container {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(48px, 6vw, 80px);
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand-logo {
    margin: 0;
    font-family: 'Fragor';
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.18em;
    /* background: linear-gradient(135deg, #D4AF37 0%, #F5E6C3 50%, #C49A1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    line-height: 1;
    color: #bd8e37;
}

.footer-brand-tagline {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.4);
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(245, 240, 232, 0.4);
    font-size: 18px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    color: #D4AF37;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-column-heading {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.6);
    line-height: 1;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #D4AF37;
}

/* Copyright Bar */
.footer-copyright {
    background: #080808;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding: 24px clamp(22px, 6vw, 80px);
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(245, 240, 232, 0.25);
    text-transform: uppercase;
    line-height: 1;
}

/* Responsive Footer */
@media (max-width: 1050px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(40px, 5vw, 60px);
    }
}

@media (max-width: 720px) {
    .footer-features-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
    }

    .feature-icon {
        flex: 0 0 auto;
        width: 32px;
        height: 32px;
        font-size: 32px;
    }

    .feature-text {
        flex: 1;
        gap: 2px;
    }

    .footer-body {
        padding: 60px clamp(20px, 5vw, 40px);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        gap: 20px;
    }

    .footer-column {
        gap: 20px;
    }

    .footer-column-heading {
        font-size: 9px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-copyright {
        padding: 20px clamp(20px, 5vw, 40px);
    }

    .footer-copyright p {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

}

@media (max-width: 520px) {
    .sec-3 .content h1{
        max-width: 200px;
    }  
}

@media (max-width: 480px) {
    .collection-card:nth-child(1) img {
    object-position: 40% 6%;
}
    .sec-3 .content h1{
        max-width: 380px;
    }
    .footer-features-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-body {
        padding: 48px 16px;
    }

    .footer-container {
        gap: 32px;
    }

    .footer-brand-logo {
        font-size: 24px;
    }

    .footer-brand-tagline {
        font-size: 12px;
    }

    .footer-social-icons {
        justify-content: center;
        gap: 12px;
    }

    .footer-column-heading {
        font-size: 8px;
        letter-spacing: 0.3em;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 11px;
    }

    .footer-copyright {
        padding: 16px;
    }

    .footer-copyright p {
        font-size: 9px;
        letter-spacing: 0.1em;
    }
}

/* PRODUCT ADD BUTTON */
.product-add-button {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #bd8e37;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 10;
    color: #0A0A0A;
    font-size: 18px;
}

.product-card:hover .product-add-button {
    opacity: 1;
    transform: translateY(0);
}

/* DEMO MODAL */
.demo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.demo-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.demo-modal {
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 56px 48px;
    max-width: 480px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.demo-overlay.active .demo-modal {
    transform: translateY(0);
}

.demo-eyebrow {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.6);
    line-height: 1;
}

.demo-headline {
    margin: 0;
    font-family: 'Fragor';
    font-size: 36px;
    font-weight: 400;
    color: #F5F0E8;
    line-height: 1.3;
}

.demo-body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.6);
}

.demo-divider {
    width: 40px;
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
}

.demo-credit {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.35);
}

.demo-credit span {
    color: #bd8e37;
}

.demo-close-button {
    align-self: flex-start;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #bd8e37;
    padding: 12px 28px;
    border-radius: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.demo-close-button:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* ANIMATION CLASSES */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.fade-in,
.fade-up,
.fade-left,
.fade-right,
.img-intro {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.img-intro {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-up {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(-40px);
}

.fade-right {
    transform: translateX(40px);
}

.fade-in.is-visible,
.fade-up.is-visible,
.fade-left.is-visible,
.fade-right.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* MOBILE MENU */
.mobile-menu-button {
    display: none;
    background: none;
    border: 0;
    color: #F5F0E8;
    font-size: 30px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-menu-button:hover {
    color: #D4AF37;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    min-height: 68px;
    padding: 0;
    background: rgba(10, 10, 10, 0.88);
    box-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}

.mobile-menu.active {
    display: flex;
    bottom: 0;
    background: rgba(5, 5, 5, 0.96);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 68px;
    padding: 0 22px;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;
}

.mobile-menu-logo {
    font-family: 'Fragor';
    color: #bd8e37;
    letter-spacing: 0.18em;
    font-weight: 900;
    font-size: 28px;
    line-height: 1;
    margin: 0;
}

.mobile-menu-close {
    display: none;
    background: none;
    border: none;
    color: #F5F0E8;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #D4AF37;
}

.mobile-menu.active .mobile-menu-button {
    display: none;
}

.mobile-menu.active .mobile-menu-close {
    display: block;
}

.mobile-menu-nav {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
    gap: 28px;
    text-align: center;
    padding: 72px 24px 48px;
}

.mobile-menu.active .mobile-menu-nav {
    display: flex;
}

.mobile-menu-nav a {
    font-family: 'Fragor';
    font-size: clamp(30px, 9vw, 54px);
    color: #bd8e37;
    text-decoration: none;
    line-height: 1;
    transition: color 0.3s ease;
}

.mobile-menu-nav a:hover {
    color: #D4AF37;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .sec-2 .content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .content .collections {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(40px, 5vw, 60px);
    }
}

@media (max-width: 768px) {
    .header{
        display: none;
    }
    .header-nav {
        display: none;
    }
    .hero-text {
    width: 100%;
    max-width: 800px;
}
    .mobile-menu{
        display: flex;
    }

    .mobile-menu-button {
        display: block;
    }

    .sec-2 {
        padding: 60px clamp(20px, 5vw, 40px);
    }

    .sec-2::before {
        inset: 40px 20px;
    }

    .bg-text {
        font-size: 80px;
    }

    .content .collections {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .collection-card,
    .collection-card:nth-child(1),
    .collection-card:nth-child(2),
    .collection-card:nth-child(3) {
        height: 400px;
        transform: none;
    }

    .sec-4 {
        padding: 60px clamp(20px, 5vw, 40px);
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .product-card {
        padding: 10px 10px 14px;
    }

    .product-media {
        margin-bottom: 16px;
    }

    .product-card h3 {
        font-size: 11px;
    }

    .product-card p {
        font-size: 16px;
    }

    .sec-6 {
        height: auto;
        padding: 60px 20px;
    }

    .sec-6 .content {
        flex-direction: column;
        gap: 40px;
    }

    .sec-6 .content .text {
        margin-top: 0;
    }

    .sec-6 .content .text h1 {
        width: 100%;
        font-size: 48px;
    }

    .sec-6 .content .text p {
        width: 100%;
    }

    .sec-7 {
        padding: 60px clamp(20px, 5vw, 40px);
    }

    .testimonials-track {
        transform: none !important;
        margin-left: 0;
        justify-content: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 360px;
        opacity: 0;
        transform: scale(0.85);
        position: absolute;
        pointer-events: none;
    }

    .testimonial-card.active {
        position: relative;
        opacity: 1;
        transform: scale(1);
        pointer-events: all;
    }

    .testimonials-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .footer-features-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
    }

    .feature-icon {
        flex: 0 0 auto;
        width: 32px;
        height: 32px;
        font-size: 32px;
    }

    .footer-body {
        padding: 60px clamp(20px, 5vw, 40px);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-copyright {
        padding: 20px clamp(20px, 5vw, 40px);
    }

    .footer-copyright p {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

    .hero-text h2 {
        font-size: clamp(36px, 8vw, 80px);
    }

    .buttons {
        flex-direction: column;
        gap: 16px;
    }

    .buttons button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header {
        height: 64px;
        padding: 0 16px;
        gap: 16px;
    }
    .hero-text {
    width: 100%;
    max-width: 800px;
    /* font-size: 30rem; */
}

    .header h1 {
        font-size: 28px;
    }

    .sec-2 {
        padding: 60px 16px;
    }

    .sec-2::before {
        inset: 40px 16px;
    }

    .bg-text {
        font-size: 64px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .sec-6 .content .text h1 {
        font-size: 42px;
    }

    .footer-features-container {
        gap: 16px;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 28px;
    }

    .footer-brand-logo {
        font-size: 24px;
    }

    .mobile-menu-logo {
        font-size: 24px;
    }

    .mobile-menu-nav a {
        font-size: 24px;
    }

    .mobile-menu {
        gap: 24px;
    }
}




/* Fix 2: sec-3 paragraph hardcoded 500px */
.sec-3 .content p {
    width: 100%;
    max-width: 560px;
}

/* Fix 3: sec-6 heading hardcoded 600px */
.sec-6 .content .text h1 {
    width: 100%;
    max-width: 600px;
}

/* Fix 4: sec-6 paragraph hardcoded 400px */
.sec-6 .content .text p {
    width: 100%;
    max-width: 400px;
}

/* Fix 5: MAIN TESTIMONIALS BUG — remove the 600px left margin */
.testimonials-track {
    margin-left: 0;
}

/* Fix 6: sec-3 headline line-height too tight on mobile */
.sec-3 .content h1 {
    line-height: 0.95;
}

/* Fix 7: sec-3 mobile */
@media (max-width: 768px) {
    .sec-3 {
        min-height: auto;
        padding: 96px 22px 92px;
        background-color: #000;
    }

    .sec-3 img {
        display: block;
        filter: brightness(0.34) grayscale(100%);
        object-position: 58% center;
    }

    .sec-3 .content {
        margin-left: 0;
        gap: 20px;
    }

    .sec-3 .content h1 {
        font-size: clamp(38px, 11vw, 56px);
        line-height: 0.98;
    }

    .sec-3 .content h4 {
        font-size: 12px;
        letter-spacing: 0.24em;
    }

    .sec-3 .content p {
        width: 100%;
        max-width: 34rem;
        font-size: 15px;
        line-height: 1.75;
    }
}

/* Fix 8: sec-6 image on mobile */
@media (max-width: 768px) {
    .sec-6 .content img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        object-position: top center;
    }
}

/* Fix 9: testimonials on mobile — only show active card */
@media (max-width: 768px) {
    .testimonials-carousel {
        overflow: hidden;
    }

    .testimonials-track {
        transform: none !important;
        position: relative;
        min-height: 340px;
    }

    .testimonial-card {
        position: absolute;
        top: 0;
        /* left: 50%; */
        /* transform: translateX(-50%) scale(0.9);   */
        opacity: 0;
        pointer-events: none;
        width: calc(100vw - 120px);
        max-width: 360px;
        padding: 42px;
        transition: all 0.5s ease;
        /* width: 360px; */
    }

    .testimonial-card.active {
        position: relative;
        left: auto;
        transform: translateX(0) scale(1);
        opacity: 1;
        pointer-events: all;
    }
}

/* Fix 10: marquee margin on mobile */
/* @media (max-width: 768px) {
    .marquee-strip {
        margin: 16px 0;
    }
} */

/* Fix 11: hide bg-text on very small screens to avoid overflow */
@media (max-width: 480px) {
    .bg-text {
        display: none;
    }
}
