:root {
    --white: #ffffff;
    --light-grey: #f8f9fa;
    --mid-grey: #e9ecef;
    --dark-grey: #343a40;
    --text-color: #1a1a1a;
    --accent-grey: #6c757d;
    --gold: #c5a059; /* Subtle accent for that "pristine" feel */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-color);
}

.italic {
    font-style: italic;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container-fluid {
    width: 100%;
    padding: 8rem 0;
}

/* Header & Nav */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--mid-grey);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-color);
}

.nav-links a {
    margin-left: 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-grey);
    font-weight: 400;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    transition: background-image 1.5s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    color: var(--accent-grey);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--dark-grey);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-button {
    padding: 1.25rem 3rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.cta-button.primary {
    background-color: var(--text-color);
    color: var(--white);
}

.cta-button.secondary {
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--accent-grey);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-grey), transparent);
}

/* Common Section Title */
.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.section-title.left {
    text-align: left;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--mid-grey);
    margin: 1.5rem auto 0;
}

.section-title.left::after {
    margin: 1.5rem 0 0;
}

/* About Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--dark-grey);
    max-width: 500px;
}

.stats {
    display: flex;
    gap: 4rem;
    margin-top: 5rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-grey);
}

/* Services */
.services {
    background-color: var(--light-grey);
}

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

.service-card {
    background: var(--white);
    padding: 4rem 3rem;
    transition: 0.5s;
    border: 1px solid transparent;
    text-align: left;
}

.service-card:hover {
    border-color: var(--mid-grey);
}

.card-icon {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--mid-grey);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--accent-grey);
}

/* Rolling Gallery Modernized */
.gallery {
    padding: 8rem 0;
}

.gallery-randomizer-meta {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 0.8rem;
    color: var(--accent-grey);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rolling-container {
    overflow: hidden;
    position: relative;
}

.rolling-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.rolling-track:hover {
    animation-play-state: paused;
}

.rolling-item {
    width: 450px;
    height: 550px;
    flex-shrink: 0;
}

.rolling-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rolling-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

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

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--dark-grey);
    font-style: italic;
}

.client {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-grey);
}

/* Contact Form */
.contact-form {
    background-color: var(--light-grey);
    padding: 6rem;
}

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

input, select, textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--mid-grey);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--text-color);
}

.contact-details {
    padding: 6rem;
}

.contact-info .info-item {
    margin-bottom: 4rem;
}

.contact-info .info-item span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-grey);
    margin-bottom: 1rem;
}

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

.social-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
}

.social-links a:hover {
    border-color: var(--text-color);
}

/* Footer */
footer {
    padding: 6rem 0;
    border-top: 1px solid var(--mid-grey);
}

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

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

.footer-top a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-2, .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image img {
        height: 400px;
    }

    .contact-form, .contact-details {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }

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

    .rolling-item {
        width: 300px;
        height: 400px;
    }
}
