* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Brand colors */
:root {
    --primary: #7a4a2e;
    --light: #f6efe9;
    --dark: #2c2c2c;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
}


.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
.header {
    background: var(--light);
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.address {
    margin-left: 440px; /* aligns address under logo */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.logo {
    font-size: 70px;
    color: var(--primary);
    margin: 0;
}

.address {
    font-size: 20px;
    color: var(--dark);
    margin-top: 5px;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    background-color: var(--primary);
    padding: 10px 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    font-size: 15px;
}

.nav a:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(122, 74, 46, 0.2);
}

.nav a:active {
    transform: translateY(0);
}

/* Hero */
.hero {
    background: url("images/hero.jpg") center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 32px;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* Sections */
section {
    padding: 60px 0;
}

.services h2,
.about h2,
.contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.service-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-content > ul {
    list-style: none;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
    grid-auto-rows: minmax(min-content, max-content);
}

.service-content .group {
    padding: 12px;
    line-height: 1.5;
}

.service-content .group:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.service-content .group:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}
.service-content .group:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / span 2;
}

    .hero h2 {
        font-size: 26px;
    }


/* Service accordion - polished */
.service-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-btn {
    width: 100%;
    background: linear-gradient(135deg, #7a4a2e, #a56a43);
    color: white;
    padding: 18px 20px;
    font-size: 20px;
    border: none;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.service-btn::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.service-btn.active::after {
    content: "–";
}

.service-content {
    max-height: 0;
    overflow: hidden;
    background: var(--light);
    transition: max-height 0.4s ease;
}

.service-content > ul {
    list-style: none;
    padding: 17px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    align-items: start;
}
.service-item.tailored .service-content > ul {
    grid-template-columns: 1fr 1fr; /* keep two columns for tailored service */
    gap: 20px 15px; /* row-gap column-gap — reduced column gap */
    padding: 20px; /* consistent padding */
    align-items: start;
    display: grid;
    list-style: none;
}

/* Ensure inner lists inside each group render as normal single-column lists */
.service-content .group > ul {
    display: block;
    list-style: square inside;
    padding-left: 20px;
    margin: 0 0 12px 0;
}

.service-content .group {
    padding: 6px 0;
}

.service-content .group > strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    list-style: none;
}

        .gallery h2 {
            text-align: center;
            margin-bottom: 20px;
        }
    
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            align-items: stretch;
        }
    
        .gallery img {
            width: 100%;
            height: 220px; /* adjust this value to change image height */
            border-radius: 12px;
            object-fit: cover; /* preserves aspect ratio while filling the box */
            display: block;
        }
.service-content .group:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.service-content .group:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}
.service-content .group:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

@media (max-width: 900px) {
    .service-content > ul {
        gap: 12px 24px;
    }
}

@media (max-width: 600px) {
    .service-content > ul {
        grid-template-columns: 1fr;
    }
    .service-content .group:nth-child(3) {
        grid-row: auto;
    }
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
    width: 100%;
}

.gallery img {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    object-fit: cover;
}

/* WhatsApp button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 14px 16px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.seo-text {
    font-size: 14px;
    color: #555;
}

/* Contact actions */
.contact-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 600px) {
    .contact-actions {
        flex-direction: column;
    }
}

/* Center contact text */
.contact p {
    text-align: center;
}

/* About section text */
.about p {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    padding: 0 12px;
}

@media (min-width: 600px) {
    .service-content > ul {
        grid-template-columns: 1fr;
    }
    .service-content .group:nth-child(3) {
        grid-row: auto;
    }
}
.contact-actions a {
    --size: 72px;
    width: var(--size);
    height: var(--size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 180ms ease, box-shadow 180ms ease;
    position: relative;
}

/* Instagram */
.instagram-btn {
    background: radial-gradient(circle at 30% 110%,
            #feda75 0%,
            #fa7e1e 25%,
            #d62976 55%,
            #962fbf 75%,
            #4f5bd5 100%);
}

/* WhatsApp */
.whatsapp-inline {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
}

/* Hover magic */
.contact-actions a:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

/* Icon sizing */
.contact-actions svg {
    width: 85px;
    height: 50px;
}

@media (max-width: 600px) {
    .contact-actions a {
        --size: 200px;
    }
    .contact-actions svg {
        width: 85px;
        height: 50px;
    }
}

/* Accessibility helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Click-to-call link */
.call-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.footer {
    background: #333;
    text-align: center;
    padding: 20px 0;
    color: white;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .header .container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .logo-section {
        flex: 0 1 auto;
        min-width: 0;
    }

    .logo {
        font-size: 45px;
    }

    .address {
        margin-left: auto;
        font-size: 14px;
        margin-top: 0;
    }

    .nav {
        gap: 8px;
        order: 3;
        width: 100%;
        margin-top: 10px;
        justify-content: flex-start;
    }

    .nav a {
        padding: 8px 14px;
        font-size: 13px;
    }
}