:root {
    --sand: #F5F1E8;
    --sage: #8B9B7E;
    --deep-sage: #5C6E52;
    --earth: #D4A574;
    --deep-earth: #B88A5A;
    --charcoal: #2C2C2C;
    --soft-white: #FEFDFB;
    --accent: #9C7854;
}

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

body {
    font-family: 'Crimson Pro', serif;
    background: var(--sand);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

nav .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-sage);
    letter-spacing: 0.5px;
}

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

nav a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sand) 0%, var(--soft-white) 100%);
    position: relative;
    padding: 0 5%;
    margin-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 155, 126, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--deep-sage);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-text h1 strong {
    font-weight: 600;
    display: block;
    color: var(--deep-earth);
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--sage);
    color: var(--soft-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(139, 155, 126, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button:hover {
    background: var(--deep-sage);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 155, 126, 0.4);
}

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.visual-card {
    background: var(--soft-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--earth);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

.visual-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-sage);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.visual-card ul {
    list-style: none;
}

.visual-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 155, 126, 0.2);
    color: var(--charcoal);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.visual-card li:last-child {
    border-bottom: none;
}

.visual-card li::before {
    content: '✦';
    color: var(--sage);
    margin-right: 1rem;
    font-size: 0.8rem;
}

/* Services Section */
.services {
    padding: 8rem 5%;
    background: var(--soft-white);
}

.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--deep-sage);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background: linear-gradient(135deg, var(--sand) 0%, rgba(245, 241, 232, 0.5) 100%);
    padding: 3rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 155, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--earth));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-sage);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--charcoal);
    opacity: 0.9;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--sand) 0%, var(--soft-white) 50%, var(--sand) 100%);
}

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

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--deep-sage);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

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

.stat-box {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--sage);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--charcoal);
    font-size: 1rem;
    opacity: 0.8;
}

.about-visual {
    background: var(--soft-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-visual h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-sage);
    margin-bottom: 2rem;
    font-weight: 500;
}

.info-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 155, 126, 0.2);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 0.3rem;
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    color: var(--charcoal);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    background: var(--soft-white);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--sand);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--deep-sage);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.contact p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--soft-white);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-sage);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(139, 155, 126, 0.2);
    border-radius: 8px;
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--soft-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(139, 155, 126, 0.1);
}

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

.submit-button {
    width: 100%;
    padding: 1.2rem 2.5rem;
    background: var(--sage);
    color: var(--soft-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Crimson Pro', serif;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(139, 155, 126, 0.3);
}

.submit-button:hover {
    background: var(--deep-sage);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 155, 126, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
}

.contact-info-alt {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.info-alt-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--charcoal);
    font-size: 1.05rem;
    padding: 1rem 2rem;
    background: var(--soft-white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-alt-item .icon {
    font-size: 1.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(139, 155, 126, 0.15);
    color: var(--deep-sage);
    border: 1px solid var(--sage);
}

.form-message.error {
    background: rgba(220, 100, 100, 0.15);
    color: #8B0000;
    border: 1px solid rgba(220, 100, 100, 0.3);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--sand);
    padding: 3rem 5%;
    text-align: center;
}

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

.footer-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    nav ul {
        gap: 1.5rem;
    }

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

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 1rem 5%;
    }

    nav .container {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

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

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 1.2rem;
        width: 100%;
    }

    nav li {
        flex: 0 0 auto;
    }

    nav a {
        font-size: 0.95rem;
    }

    .hero {
        margin-top: 140px;
        min-height: calc(100vh - 140px);
    }

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

    .contact-content {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}
