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

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5E1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F2D0D4;
    --blush-light: #FBF0F1;
    --blush-muted: #E8C4C8;
    --cream: #FDF8F8;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #3D3D3D;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --line: rgba(123, 45, 59, 0.12);
    --line-strong: rgba(123, 45, 59, 0.25);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 200;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 16px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 28px;
    height: 28px;
    background: var(--burgundy);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.logo-mark::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border: 1.5px solid var(--blush);
    border-radius: 50%;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--burgundy);
    letter-spacing: 0.01em;
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}
.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width var(--transition);
}
.nav-menu a:hover {
    color: var(--burgundy);
}
.nav-menu a:hover::after {
    width: 100%;
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--text-dark);
    position: relative;
    transition: background var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--text-dark);
    left: 0;
    transition: transform var(--transition);
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}
.btn--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn--outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}
.btn--outline:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-1px);
}
.btn--light {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}
.btn--light:hover {
    background: var(--blush-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn--sm {
    padding: 8px 20px;
    font-size: 0.75rem;
}
.btn--lg {
    padding: 16px 36px;
    font-size: 0.875rem;
}
.btn--full {
    width: 100%;
    justify-content: center;
}
.btn-icon {
    width: 16px;
    height: 16px;
}

/* Eyebrow */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

/* Section Title */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.section-sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.8;
}
.line {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--burgundy);
    margin-bottom: 20px;
}

/* Hero */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 60px 0;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 24px;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero-sub {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-mid);
    font-weight: 400;
}
.trust-icon {
    width: 16px;
    height: 16px;
    color: var(--burgundy);
    flex-shrink: 0;
}
.trust-divider {
    width: 1px;
    height: 16px;
    background: var(--line-strong);
}

/* Hero Image */
.hero-image {
    position: relative;
}
.hero-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 600/750;
}
.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--blush-muted);
    border-radius: 50%;
    z-index: -1;
}

/* Intro */
.intro {
    padding: 120px 0;
    border-top: 1px solid var(--line);
}
.intro-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
}
.intro-label .line {
    margin-bottom: 0;
}
.intro-text {
    max-width: 560px;
}
.intro-text .section-title {
    margin-bottom: 28px;
}
.intro-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--white);
}
.section-header {
    text-align: center;
    margin-bottom: 72px;
}
.section-header .line {
    margin: 0 auto 20px;
}
.section-header .eyebrow {
    margin-bottom: 16px;
}
.section-header .section-sub {
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card {
    padding: 40px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--blush-muted);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--burgundy);
}
.service-icon svg {
    width: 100%;
    height: 100%;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}
.gallery .section-header {
    margin-bottom: 56px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 5/4;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* CTA Banner */
.cta-banner {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(242, 208, 212, 0.15);
    border-radius: 50%;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(242, 208, 212, 0.1);
    border-radius: 50%;
}
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-eyebrow {
    color: var(--blush);
    margin-bottom: 20px;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}
.cta-text {
    font-size: 1.0625rem;
    color: var(--blush);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 40px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .line {
    margin-bottom: 20px;
}
.contact-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-item {
    display: flex;
    gap: 20px;
}
.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-item strong {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.contact-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}
.contact-item a {
    color: var(--burgundy);
    transition: color var(--transition);
}
.contact-item a:hover {
    color: var(--burgundy-dark);
}

/* Form */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--line);
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 32px;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 20px;
    text-align: center;
}
.form-success svg {
    width: 48px;
    height: 48px;
    color: var(--burgundy);
}
.form-success p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* Footer */
.site-footer {
    padding: 64px 0 40px;
    background: var(--text-dark);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text {
    color: var(--white);
}
.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-top: 12px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--blush);
}
.footer-address {
    text-align: right;
}
.footer-address p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}
.footer-copy {
    margin-top: 8px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3) !important;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        gap: 56px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 110;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 24px;
        border-left: 1px solid var(--line);
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-menu a {
        font-size: 0.9375rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px 0;
        text-align: center;
    }
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .intro {
        padding: 80px 0;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .intro-label {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .intro-label .line {
        margin-bottom: 0;
    }

    .services {
        padding: 80px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery {
        padding: 80px 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cta-banner {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .contact-form-wrap {
        padding: 32px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-address {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .hero-headline {
        font-size: 1.75rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
