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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #8b7355;
    --color-bg: transparent;
    --color-bg-alt: rgba(255,255,255,0.3);
    --color-text: #333;
    --color-text-light: #666;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background: linear-gradient(to bottom, #c9b8a8 0%, #e8d4c4 30%, #f5ebe3 100%);
    background-attachment: fixed;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(201, 184, 168, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5vw;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-secondary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 5vw 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-primary);
}

.hero-quote cite {
    display: block;
    margin-top: 0.8rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--color-secondary);
}

.hero-about p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--color-secondary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}


/* About Section */
.about {
    background: var(--color-bg-alt);
    padding: 8rem 5vw;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-shape {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #a08060 100%);
    border-radius: 50% 50% 50% 0;
    opacity: 0.6;
}

.about-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.about-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--color-secondary);
}

.link-more {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.link-more:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Offerings Section */
.offerings {
    padding: 8rem 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.offerings h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-primary);
}

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

.offering-card {
    background: var(--color-bg-alt);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
}

.offering-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-secondary);
}

.offering-icon svg {
    width: 100%;
    height: 100%;
}

.offering-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.offering-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: var(--color-bg-alt);
    padding: 8rem 5vw;
}

.contact h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

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

.contact-form .btn {
    width: 100%;
    text-align: center;
}

/* Footer */
footer {
    background: var(--color-primary);
    color: white;
    padding: 4rem 5vw 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-email {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }

    .hero-image img {
        max-width: 300px;
    }

    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-shape {
        margin: 0 auto;
        max-width: 200px;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .about-content blockquote {
        font-size: 1.4rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
