/* ── RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #1a1a1a;
    color: #f5f0eb;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: #f5f0eb;
    letter-spacing: 0.05em;
}

h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #c9a84c;
    margin-bottom: 1rem;
}

p {
    line-height: 1.8;
    color: #c8c0b8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 1rem;
}

/* ── NAVIGATION ── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(26,26,26,0.95), transparent);
}

.nav-logo {
   .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #c9a84c;
    letter-spacing: 0.15em;
}
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #f5f0eb;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c9a84c;
}

/* ── HERO ── */
.hero {
    height: 100vh;
    background-image: url('photo1-container-units.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #f5f0eb;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: #f5f0eb;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #c9a84c;
    color: #c9a84c;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background: #c9a84c;
    color: #1a1a1a;
}

/* ── ABOUT ── */
.about {
    padding: 8rem 2rem;
    text-align: center;
    background: #1a1a1a;
}

.about p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ── SERVICES ── */
.services {
    padding: 8rem 2rem;
    background: #2d4a3e;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2.5rem;
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: #c9a84c;
}

.service-card p {
    font-size: 0.9rem;
}

/* ── PORTFOLIO ── */
.portfolio {
    padding: 8rem 2rem;
    background: #1a1a1a;
    text-align: center;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.6);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay p {
    color: #f5f0eb;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* ── CONTACT ── */
.contact {
    padding: 8rem 2rem;
    background: #2d4a3e;
    text-align: center;
}

.contact-form {
    max-width: 650px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #f5f0eb;
    padding: 1rem 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c9a84c;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8a8078;
}

/* ── FOOTER ── */
.footer {
    background: #111;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer p {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #6a6060;
}/* ── VALUES STRIP ── */
.values {
    background: #c9a84c;
    padding: 3rem 2rem;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.value-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.value-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1a1a1a;
}

/* ── CONTACT INTRO ── */
.contact-intro {
    max-width: 600px;
    margin: 0 auto 1rem;
    font-size: 0.95rem;
}

/* ── FOOTER UPDATES ── */
..footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #c9a84c;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}/* ── PARTNER SECTION ── */
.partner {
    padding: 8rem 2rem;
    background: #1a1a1a;
    text-align: center;
}

.partner-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    text-align: left;
}

.partner-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 2.5rem;
    transition: border-color 0.3s, transform 0.3s;
}

.partner-card:hover {
    border-color: #c9a84c;
    transform: translateY(-4px);
}

.partner-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #c9a84c;
    opacity: 0.4;
    margin-bottom: 1rem;
    line-height: 1;
}

.partner-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* ── HOW IT WORKS ── */
.howitworks {
    padding: 8rem 2rem;
    background: #2d4a3e;
    text-align: center;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border: 1px solid #c9a84c;
    color: #c9a84c;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.85rem;
    line-height: 1.7;
}

.step-arrow {
    color: #c9a84c;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    opacity: 0.5;
}

/* ── CREDIBILITY STRIP ── */
.credibility {
    background: #111;
    padding: 3rem 2rem;
    text-align: center;
}

.cred-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: #c9a84c;
    line-height: 1.8;
    font-style: italic;
}/* ── PARTNER TEXT BLOCK ── */
.partner-text {
    max-width: 750px;
    margin: 0 auto 4rem;
    text-align: left;
}

.partner-text p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.partner-text .btn-primary {
    margin-top: 1rem;
}
/* ── BRANDS BANNER ── */
.brands {
    background: #111;
    padding: 3rem 0;
    overflow: hidden;
}
/* ── BRANDS BANNER ── */
.brands {
    background: #111;
    padding: 3rem 0;
    overflow: hidden;
}

.brands-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.brands-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.brands-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll-brands 30s linear infinite;
    align-items: center;
}
.brands-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    color: #c9a84c;
    white-space: nowrap;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.brands-track span:hover {
    opacity: 1;
    color: #c9a84c;
}

@keyframes scroll-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}/* ── MOBILE ── */
@media (max-width: 768px) {

    /* Navigation */
    .navbar {
        padding: 0.6rem 1.2rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.55rem;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    /* Hero */
   .hero {
        background-image: url('hero-mobile.jpg');
        background-position: 30% center;
        background-size: cover;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    /* About */
    .about {
        padding: 5rem 1.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    /* Stats strip */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Services */
    .services {
        padding: 5rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .service-card {
        padding: 1rem 1.2rem;
    }

    .service-card:nth-child(n+4) {
        display: none;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Partner */
    .partner {
        padding: 5rem 1.5rem;
    }

    .partner-grid {
        display: none;
    }

    /* Contact */
    .contact {
        padding: 5rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer {
        padding: 2rem 1.5rem;
    }
}