/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
}

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

:root {
    --color-wood-dark: #2a1f15;
    --color-wood-medium: #4a3426;
    --color-wood-light: #6b5238;
    --color-accent: #8b6f4a;
    --color-accent-hover: #a0825f;
    --color-cream: #f8f6f2;
    --color-text: #1f1a14;
    --color-text-light: #4a4035;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.7;
    background-color: #fff;
}

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

/* Hero Section */
.hero {
    background-image: url('media/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-cream);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 31, 21, 0.65);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 2.5rem;
}

.hero-logo {
    display: flex;
    justify-content: center;
}

.hero-logo .logo-image {
    height: 170px;
    width: auto;
    display: block;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-height: 44px;
}

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

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-cream);
    color: var(--color-cream);
}

.btn-secondary:hover {
    background: var(--color-cream);
    border-color: var(--color-cream);
    color: var(--color-wood-dark);
    transform: translateY(-2px);
}

/* Brands Banner */
.brands-banner {
    background: #fff;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brands-content {
    text-align: center;
}

.brands-intro {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    filter: grayscale(100%);
}

.brand-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: grayscale(0%);
}

.brand-logo img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-wood-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* About Section */
.about {
    background: var(--color-cream);
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    background: #fff;
}

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

.service-card {
    background: var(--color-cream);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-wood-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Experience Section */
.experience {
    background: var(--color-wood-dark);
    color: var(--color-cream);
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.experience-content h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.experience-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.9;
}

.experience-content p:last-child {
    margin-bottom: 0;
}

/* Gallery Section */
.gallery {
    background: #fff;
}

.gallery .container {
    max-width: 1600px;
}

.gallery-masonry {
    column-count: 4;
    column-gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    break-inside: avoid;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-cream);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

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

/* Contact Section */
.contact {
    background: var(--color-cream);
}

.contact-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-heading h2 {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-wood-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: background 0.3s, transform 0.3s;
}

.contact-item:hover .contact-icon-wrapper {
    background: var(--color-accent-hover);
    transform: scale(1.1);
}

.contact-item-content {
    flex: 1;
}

.contact-item h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-wood-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.contact-item p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-item p:last-child {
    margin-bottom: 0;
}

.contact-item a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--color-wood-dark);
    color: var(--color-cream);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 3.5rem 0;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-logo {
        margin-bottom: 2rem;
    }

    .hero-logo .logo-image {
        height: 120px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 100%;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    /* Experience Section */
    .experience-content h2 {
        font-size: 2.2rem;
    }

    .experience-content p {
        font-size: 1rem;
    }

    /* Gallery Section */
    .gallery-masonry {
        column-count: 2;
        column-gap: 1rem;
    }

    .gallery-item {
        margin-bottom: 1rem;
    }

    /* Brands Banner */
    .brands-banner {
        display: none;
    }

    .brand-logos {
        gap: 1.5rem;
    }

    .brand-logo {
        height: 45px;
    }

    .brand-logo img {
        max-height: 45px;
        max-width: 110px;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-heading h2 {
        font-size: 3rem;
        text-align: center;
    }

    .contact-details {
        gap: 2rem;
    }

    .contact-item h3 {
        font-size: 1.3rem;
    }

    .contact-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    section {
        padding: 2.5rem 0;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero-logo {
        margin-bottom: 1.5rem;
    }

    .hero-logo .logo-image {
        height: 140px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.875rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

    .section-intro {
        font-size: 0.95rem;
    }

    /* About Section */
    .about-content {
        gap: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    /* Services Section */
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }

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

    /* Experience Section */
    .experience-content h2 {
        font-size: 1.875rem;
    }

    .experience-content p {
        font-size: 0.95rem;
    }

    /* Gallery Section */
    .gallery-masonry {
        column-count: 1;
        column-gap: 0.875rem;
    }

    .gallery-item {
        margin-bottom: 0.875rem;
    }

    /* Brands Banner */
    .brands-banner {
        display: none;
    }

    .brand-logos {
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .brand-logo {
        height: 40px;
    }

    .brand-logo img {
        max-height: 40px;
        max-width: 100px;
    }

    /* Contact Section */
    .contact-content {
        gap: 2rem;
    }

    .contact-heading h2 {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .contact-details {
        gap: 1.75rem;
    }

    .contact-item {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-masonry {
        column-count: 3;
    }
}