@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lora:wght@400;600&display=swap');

:root {
    --primary-color: #5D4037; /* Deep Brown */
    --secondary-color: #8D6E63; /* Medium Brown */
    --accent-color: #FFB300; /* Amber Gold */
    --text-color: #3E2723; /* Darker Brown */
    --light-text-color: #ECEFF1; /* Light Gray */
    --background-light: #F5F5F5; /* Off-white */
    --background-dark: #212121; /* Dark Gray */
    --border-color: #BCAAA4; /* Pale Brown */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;

    --transition-speed: 0.3s;
    --border-radius-lg: 8px;
    --border-radius-sm: 4px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 { font-size: 3.2em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.3em; }

p {
    margin-bottom: 1em;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 25px;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 1.1em;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Header */
.main-header {
    background-color: var(--background-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Adjust logo size */
    margin-right: 10px;
}

.logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6em;
    color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

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

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 2;
}

.hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 3.8em; /* Slightly larger for impact */
}

.hero-content h2 {
    color: var(--secondary-color);
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-image {
    flex-shrink: 0;
    max-width: 500px;
    z-index: 1;
    transform: scale(0.95); /* Subtle scaling */
    transition: transform 0.5s ease;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-section.reveal-active .hero-image {
    transform: scale(1);
}

/* General Section Styling */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section h2 {
    text-align: center;
    margin-bottom: 60px;
}

/* Services Section */
.services-section {
    background-color: var(--background-light);
    color: var(--text-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding-top: 20px;
}

.service-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.service-item i {
    font-size: 3.5em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1em;
    color: #616161;
}

.service-image {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


/* Gallery Section */
.gallery-section {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.gallery-section h2 {
    color: var(--light-text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: var(--light-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8em;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

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

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

/* About Section */
.about-section {
    background-color: var(--background-light);
    padding: 100px 0;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.1em;
    color: #424242;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
}

.process-section h2 {
    color: var(--light-text-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    background-color: var(--text-color);
}

.step-card i {
    font-size: 3em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--light-text-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 0.95em;
    color: var(--border-color);
}

.process-illustration {
    margin-top: 60px;
    text-align: center;
}

.process-illustration img {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background-light);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all var(--transition-speed) ease;
    border-left: 5px solid var(--accent-color);
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #424242;
    font-size: 1.1em;
}

.testimonial-card h4 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--background-dark);
    color: var(--light-text-color);
}

.contact-section h2 {
    color: var(--light-text-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    font-size: 1.1em;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.3em;
    width: 25px; /* Fixed width for icon alignment */
    text-align: center;
}

.contact-info a {
    color: var(--light-text-color);
    transition: color var(--transition-speed) ease;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--light-text-color);
    font-size: 1.8em;
    transition: transform var(--transition-speed) ease, color var(--transition-speed) ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--text-color); /* Darker background for form */
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--border-color); /* Lighter label color */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius-sm);
    background-color: #424242; /* Even darker input background */
    color: var(--light-text-color);
    font-family: var(--font-body);
    font-size: 1em;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .cta-button {
    width: 100%;
    padding: 15px;
    margin-top: 15px;
}

/* Footer */
.main-footer {
    background-color: var(--text-color);
    color: var(--border-color);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Scroll Reveal (JS will add .reveal-active) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    h1 { font-size: 2.8em; }
    h2 { font-size: 2.2em; }
    .hero-content h1 { font-size: 3.2em; }
    .hero-content h2 { font-size: 1.6em; }

    .main-nav ul {
        gap: 18px;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        max-width: 80%;
        margin-top: 40px;
    }

    .about-section .container {
        flex-direction: column-reverse; /* Image above content on smaller screens */
        text-align: center;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-image {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.4em; }
    h2 { font-size: 1.9em; }
    h3 { font-size: 1.5em; }

    .main-header {
        padding: 10px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        margin-bottom: 10px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }

    .main-nav li {
        margin: 5px 0;
    }

    .cta-button {
        width: 100%;
        margin-top: 10px;
        font-size: 1em;
        padding: 10px 20px;
    }

    .hero-content h1 {
        font-size: 2.6em;
    }

    .hero-content h2 {
        font-size: 1.4em;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        margin-bottom: 40px;
    }

    .service-grid, .gallery-grid, .process-steps, .testimonial-slider, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }
    .hero-content h1 { font-size: 2.2em; }
    .hero-content h2 { font-size: 1.2em; }
    .logo span { font-size: 1.4em; }

    .container {
        padding: 0 15px;
    }

    .cta-button {
        font-size: 0.9em;
        padding: 10px 15px;
    }

    .gallery-item .overlay {
        font-size: 1.4em;
    }

    .social-links {
        justify-content: center;
    }
}
I have generated the `style.css` file based on your instructions. It includes Google Fonts, CSS variables, styles for all specified HTML elements, responsiveness, and initial states for scroll-reveal animations.
