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

:root {
    --burgundy: #781F37;
    --burgundy-deep: #5C1A2B;
    --burgundy-light: #9A2D47;
    --blush: #F4E1D2;
    --blush-light: #FBF5F0;
    --blush-mid: #F9EDE4;
    --cream: #FDF9F6;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --text-muted: #A0A0A0;
    --border: #E8DDD6;
    --border-light: #F0E8E2;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Cursor */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--burgundy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--burgundy);
    letter-spacing: -0.02em;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width var(--transition);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-dark);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1.5px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition);
    background: none;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn--primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(120, 31, 55, 0.25);
}

.btn--outline {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn--outline:hover {
    background: var(--burgundy);
    color: var(--white);
}

.btn--ghost {
    border-color: var(--text-muted);
    color: var(--text-mid);
}

.btn--ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-xl);
}

.hero-content {
    padding-right: var(--space-md);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--burgundy);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 300;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: var(--space-md);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: saturate(0.85) brightness(1.02);
}

.hero-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--burgundy);
    opacity: 0.2;
    z-index: -1;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* Section shared */
.line {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--burgundy);
    margin-bottom: var(--space-sm);
}

.label-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: var(--space-sm);
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-md);
}

.section-title em {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 300;
}

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

/* About */
.about {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.about-container {
    padding-left: 0;
    padding-right: 0;
}

.about-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-left: var(--space-md);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-text {
    padding: var(--space-md);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: var(--space-sm);
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.stat {
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: saturate(0.85) brightness(1.02);
}

/* Services */
.services {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.services-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.services-header .line {
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--cream);
    padding: var(--space-lg) var(--space-md);
    transition: background var(--transition);
    position: relative;
}

.service-card:hover {
    background: var(--white);
}

.service-card:hover .service-link {
    color: var(--burgundy);
}

.service-number {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: var(--space-sm);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-weight: 300;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.service-link .arrow {
    transition: transform var(--transition-fast);
    display: inline-block;
}

.service-card:hover .arrow {
    transform: translateX(4px);
}

/* Approach */
.approach {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.approach-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.approach-image {
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    filter: saturate(0.85) brightness(1.02);
}

.approach-content {
    padding: var(--space-md);
}

.approach-content .line {
    margin-bottom: var(--space-sm);
}

.approach-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.approach-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.approach-feature {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    transition: border-color var(--transition), background var(--transition);
}

.approach-feature:hover .feature-icon {
    border-color: var(--burgundy);
    background: var(--blush);
}

.approach-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.approach-feature p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Visit */
.visit {
    padding: var(--space-2xl) 0;
    background: var(--blush-light);
}

.visit-content {
    max-width: 900px;
    margin: 0 auto;
}

.visit-content > .line {
    margin-bottom: var(--space-sm);
}

.visit-content > .label-text {
    margin-bottom: var(--space-sm);
}

.visit-content > .section-title {
    margin-bottom: var(--space-lg);
}

.visit-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.visit-step {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.visit-step:hover {
    border-color: var(--burgundy);
    box-shadow: 0 4px 20px rgba(120, 31, 55, 0.06);
}

.step-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--burgundy);
    line-height: 1;
    padding-top: 0.15rem;
}

.visit-step h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.visit-step p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Contact */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-left {
    padding-right: var(--space-md);
}

.contact-left .line {
    margin-bottom: var(--space-sm);
}

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-item a {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--burgundy);
}

.contact-right {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: var(--space-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    padding: 0.875rem 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    outline: none;
    transition: border-color var(--transition-fast);
    resize: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-sm);
    background: var(--blush-light);
    border: 1px solid var(--border);
    color: var(--burgundy);
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: var(--space-sm);
}

.form-success.show {
    display: flex;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .logo-mark {
    border-color: rgba(255,255,255,0.3);
    color: var(--blush);
}

.footer-name {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin-left: 52px;
    max-width: 320px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--blush);
}

.footer-info {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    font-weight: 300;
}

.footer-info a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

.footer-info a:hover {
    color: var(--blush);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image-wrapper img {
        height: 50vh;
    }

    .hero-accent {
        display: none;
    }

    .about-grid,
    .approach-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-image,
    .approach-image {
        height: 400px;
    }

    .about-image img,
    .approach-image img {
        height: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        transition: right var(--transition);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

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

    .visit-steps {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .contact-right {
        padding: var(--space-md);
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-tagline {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .hero-headline {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }
}
