:root {
    --earth-dark: #2c3e3a;
    --earth-medium: #4a635d;
    --sage: #7a9a8f;
    --cream: #f4f1ea;
    --warm-white: #fdfbf7;
    --terracotta: #c97d5d;
    --sand: #d4c4a8;
    --deep-brown: #3d2e29;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--earth-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: var(--cream);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(42, 62, 58, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: rotate(-5deg) scale(1.05);
}

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

nav a {
    color: var(--earth-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--terracotta);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--sage) 0%, var(--earth-medium) 100%);
    padding: 8rem 2rem 9rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(197, 125, 93, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(122, 154, 143, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--terracotta);
    color: var(--warm-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(197, 125, 93, 0.3);
}

.cta-button:hover {
    background: #b36d4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 125, 93, 0.4);
}

/* Quote Section */
.quote-section {
    padding: 5rem 2rem;
    background: var(--warm-white);
}

blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--earth-medium);
    position: relative;
    padding: 2rem 0;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--sand);
    font-family: Georgia, serif;
    line-height: 1;
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    color: var(--sage);
    font-family: 'DM Sans', sans-serif;
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--earth-dark);
    font-weight: 600;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--terracotta);
    margin-top: 1rem;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--sage);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 40px rgba(44, 62, 58, 0.15);
}

/* Services Section */
#services {
    background: var(--warm-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-item {
    background: var(--cream);
    padding: 2.5rem;
    border-left: 4px solid var(--sage);
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    border-left-color: var(--terracotta);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(44, 62, 58, 0.1);
}

.service-item h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--earth-dark);
}

.service-item p {
    color: var(--earth-medium);
    font-size: 1rem;
    line-height: 1.7;
}

/* Process Section */
.section-process {
    background: var(--earth-dark);
    color: var(--cream);
}

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

.section-process h2::after {
    background: var(--terracotta);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    animation: fadeIn 0.6s ease;
    animation-fill-mode: both;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--terracotta);
    color: var(--warm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Crimson Pro', serif;
}

.process-step h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.process-step p {
    color: var(--sage);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
#contact {
    background: var(--cream);
    text-align: center;
}

#contact p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: var(--earth-medium);
}

.contact-info {
    margin: 2rem 0 2.5rem;
}

.contact-info a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Footer */
footer {
    background: var(--deep-brown);
    color: var(--sand);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    nav ul {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 5rem 1.5rem 6rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    header .container {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    blockquote {
        font-size: 1.4rem;
    }
}
