/* ================================
   Variables & Base
   ================================ */
:root {
    --navy:     #1a2e44;
    --navy-mid: #243d5c;
    --accent:   #48328a;
    --accent-hover: #c94f1c;
    --wa-green: #25D366;
    --wa-hover:  #1aab53;
    --off-white: #f7f5f1;
    --text-dark: #1a2e44;
    --text-mid:  #4a5568;
    --text-light: #718096;
    --card-radius: 14px;
    --font-display: 'Sora', 'Helvetica Neue', sans-serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

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

body {
    font-family: var(--font-body);
    margin: 0;
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 68px;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 64px 24px;
    text-align: center;
}


/* ================================
   Navbar
   ================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    height: 64px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.2px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 4px;
    margin-right: auto;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.nav-phone {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-phone:hover {
    color: white;
}

.nav-wa-btn {
    background: var(--wa-green);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-wa-btn:hover {
    background: var(--wa-hover);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}


/* ================================
   Typography helpers
   ================================ */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin: 0 0 10px;
}

.section-eyebrow.light {
    color: rgba(255,255,255,0.6);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 40px;
    line-height: 1.2;
}

.section-heading.light {
    color: #fff;
}


/* ================================
   Hero
   ================================ */
.hero {
    background: linear-gradient(
                    to bottom,
                    rgba(20, 35, 55, 0.22) 0%,
                    rgba(20, 35, 55, 0.40) 100%
                ),
                url('images/kitchen2.jpg') center / cover no-repeat;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 24px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.65);
    margin: 0 0 16px;
}

.hero-content {
    width: 90%;
    max-width: 800px;
}

.main-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 9vw, 5.2rem);
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1.05;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    word-wrap: break-word;
}

.sub-title {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    margin: 0 0 36px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-wa {
    background: var(--wa-green);
    color: white;
}

.btn-wa:hover {
    background: var(--wa-hover);
}


/* ================================
   Trust bar
   ================================ */
.trust-bar {
    background: var(--navy);
    color: white;
    padding: 0;
}

.trust-bar-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0 4px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}

.trust-icon {
    font-size: 1.1rem;
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}


/* ================================
   Services
   ================================ */
#services {
    background: var(--off-white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 760px;
    margin: 0 auto;
}

.card {
    border-radius: var(--card-radius);
    overflow: hidden;
    width: 100%;
    box-shadow: 0 2px 12px rgba(26,46,68,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(26,46,68,0.14);
}

.card-image-wrap {
    position: relative;
    display: block;
}

.card-image-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 16px;
    background: linear-gradient(to top, rgba(20,35,55,0.88) 0%, transparent 100%);
    color: white;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}


/* ================================
   Brands
   ================================ */
#brands {
    background: var(--navy-mid);
    padding: 10px 0 60px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.brand-item {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 14px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.brand-item:hover {
    background: rgba(255,255,255,0.24);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}


/* ================================
   About
   ================================ */
#about {
    background: white;
}

.about-text {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.about-card {
    background: var(--off-white);
    border-radius: var(--card-radius);
    padding: 28px 24px;
    border: 1px solid rgba(26,46,68,0.07);
}

.about-card-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.6;
}


/* ================================
   Contact band
   ================================ */
.contact-band {
    background: var(--navy);
    padding: 64px 24px;
}

.contact-band-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-band-text {
    text-align: left;
}

.contact-band-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    margin: 8px 0 12px;
    line-height: 1.2;
}

.contact-sub {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.contact-band-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}


/* ================================
   CTA section
   ================================ */
#cta {
    background: var(--off-white);
    padding: 80px 24px 24px 24px;
    text-align: center;
    border-top: 1px solid rgba(26,46,68,0.08);
}

.cta-inner {
    max-width: 580px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.2;
}

.cta-inner p {
    color: var(--text-mid);
    font-size: 1.05rem;
    margin: 0 0 32px;
}


.logo img {
    width: 180px;
    opacity: 0.85;
    margin-top: 30px;
	 }



/* ================================
   Footer
   ================================ */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 24px;
    font-size: 0.875rem;
}


/* ================================
   Responsive
   ================================ */
@media (max-width: 650px) {
    .hero {
        min-height: 55vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        justify-content: center;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }

    .trust-item {
        padding: 12px 24px;
    }

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

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

    /* Navbar mobile */
    .nav-contact {
        display: none;
	
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 12px 16px 20px;
        gap: 4px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 10px 12px;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    /* About grid */
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Contact band */
    .contact-band-text {
        text-align: center;
    }

    .contact-band-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .contact-band-actions .btn {
        width: 80%;
    }
}
