:root {
    --bg-color: #FAF8F5; /* Off-white/beige background */
    --text-dark: #333333;
    --text-light: #666666;
    --testimonial-bg: #7C7367; /* Brownish grey */
    --border-color: #E2DFD9;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-dark);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--text-dark);
}

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

/* Hero Section */
.hero {
    padding: 3rem 4rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero-image-container:hover .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-primary {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    padding-bottom: 4px;
    transition: border-color 0.3s ease, color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    border-color: white;
}

/* Intro Section */
.intro {
    padding: 6rem 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.intro h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.description {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    padding: 0 4rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.portfolio-item {
    text-align: center;
}

.image-wrapper {
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 3/4;
    border-radius: 2px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-item:hover .image-wrapper img {
    transform: scale(1.05);
}

.portfolio-item h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.portfolio-item p {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--testimonial-bg);
    color: white;
    padding: 7rem 4rem;
    text-align: center;
}

.testimonials h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    letter-spacing: 2px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 3rem;
}

.carousel-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 32px;
    height: 32px;
}

.quote-container {
    flex: 1;
}

.quote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    font-weight: 300;
}

.author {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Footer CTA */
.footer-cta {
    padding: 8rem 4rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-image {
    width: 25%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
}

.footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.footer-image:hover img {
    transform: scale(1.05);
}

.footer-image.left {
    transform: translateY(2rem);
}

.footer-image.right {
    transform: translateY(-2rem);
}

.footer-text {
    flex: 1;
    text-align: center;
    padding: 0 2rem;
}

.footer-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 1.5rem 0 2.5rem;
}

.btn-underline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-underline:hover {
    color: var(--text-light);
    border-color: var(--text-light);
}

/* Responsive */
@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .hero {
        padding: 1.5rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-image {
        width: 80%;
        transform: none !important;
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .carousel {
        flex-direction: column;
        gap: 2rem;
    }
}
