:root {
    --cream: #FAF7F2;
    --deep-burgundy: #6B2C2C;
    --soft-gold: #C9A668;
    --sage: #8B9B87;
    --charcoal: #3A3A3A;
    --warm-white: #FFFCF7;
    --soft-shadow: rgba(107, 44, 44, 0.1);
}

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

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--warm-white);
    border-bottom: 1px solid var(--soft-gold);
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 20px var(--soft-shadow);
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--deep-burgundy);
    letter-spacing: 3px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--soft-gold);
}

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

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-gold);
    transition: width 0.3s ease;
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--deep-burgundy);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

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

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 44, 44, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--deep-burgundy);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero .tagline {
    font-size: 1.2rem;
    color: var(--sage);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--deep-burgundy);
    color: var(--warm-white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--deep-burgundy);
}

.cta-button:hover {
    background: transparent;
    color: var(--deep-burgundy);
}

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

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

.section-subtitle {
    text-align: center;
    color: var(--sage);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

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

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

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

.about-image {
    width: 100%;
    height: 400px;
    background: var(--cream);
    border: 10px solid var(--warm-white);
    box-shadow: 0 10px 40px var(--soft-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--sage);
    text-align: center;
    font-style: italic;
}

/* Gallery Section */
#gallery {
    background: var(--cream);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--warm-white);
    border: 8px solid var(--warm-white);
    box-shadow: 0 5px 20px var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--soft-shadow);
}

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

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

/* Instagram Feed */
.instagram-feed {
    margin-top: 4rem;
    text-align: center;
}

.instagram-feed h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-burgundy);
    margin-bottom: 2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-placeholder {
    aspect-ratio: 1;
    background: var(--warm-white);
    border: 4px solid var(--warm-white);
    box-shadow: 0 3px 10px var(--soft-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

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

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

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--cream);
    border-top: 3px solid var(--soft-gold);
    transition: transform 0.3s ease;
}

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

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

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

/* Reviews Section */
#reviews {
    background: var(--cream);
}

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

.review-placeholder {
    background: var(--warm-white);
    padding: 3rem;
    text-align: center;
    border: 2px dashed var(--soft-gold);
}

.review-placeholder h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--deep-burgundy);
    margin-bottom: 1rem;
}

.review-placeholder p {
    color: var(--sage);
    font-style: italic;
}

/* Contact Section */
#contact {
    background: var(--warm-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-burgundy);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-detail strong {
    color: var(--deep-burgundy);
    display: block;
    margin-bottom: 0.3rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--soft-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--deep-burgundy);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--soft-gold);
    color: var(--warm-white);
}

.contact-form {
    background: var(--cream);
    padding: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-burgundy);
    font-weight: 600;
}

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

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--deep-burgundy);
    color: var(--warm-white);
    border: 2px solid var(--deep-burgundy);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: transparent;
    color: var(--deep-burgundy);
}

.map-container {
    max-width: 1200px;
    height: 500px;
    background: var(--cream);
    border: 10px solid var(--warm-white);
    box-shadow: 0 10px 40px var(--soft-shadow);
    margin: 3rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: var(--deep-burgundy);
    color: var(--warm-white);
    padding: 4rem 5% 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--soft-gold);
    margin-bottom: 2rem;
}

.footer-divider {
    width: 200px;
    height: 1px;
    background: var(--soft-gold);
    margin: 2rem auto;
}

.footer-bottom {
    font-size: 0.9rem;
    color: rgba(255, 252, 247, 0.7);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--warm-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        list-style: none;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
