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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --blush: #F5E6E0;
    --blush-light: #FAF3F0;
    --blush-mid: #EDE0DA;
    --cream: #FDF9F7;
    --charcoal: #1A1416;
    --text: #2C1E22;
    --text-light: #6B555B;
    --text-muted: #9A8086;
    --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;
    --ease: 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);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.line-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--burgundy), transparent);
    z-index: 1000;
}

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

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 2px;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(253, 249, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.4s var(--ease);
}

.header.scrolled {
    box-shadow: 0 1px 24px rgba(123, 45, 59, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--charcoal);
}

.logo-mark {
    width: 28px;
    height: 28px;
    background: var(--burgundy);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--blush);
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s var(--ease);
}

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

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

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

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

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease);
}

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

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

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
    background: none;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--blush-light);
}

.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--burgundy);
    border: 1px solid var(--line-strong);
}

.btn--ghost:hover {
    border-color: var(--burgundy);
    background: rgba(123, 45, 59, 0.04);
}

.btn--sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.75rem;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 0.875rem;
}

/* ─── HERO ─── */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-line {
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: var(--line);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

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

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-right {
    position: relative;
}

.hero-img-wrap {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 520/640;
    background: var(--blush-mid);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.hero-img-wrap:hover img {
    transform: scale(1.02);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: -60px;
    bottom: 40px;
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.float-card {
    background: rgba(253, 249, 247, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 1rem 0.875rem;
    text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.float-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.08);
}

.float-card--1 { transform: translateY(-12px); }
.float-card--1:hover { transform: translateY(calc(-12px - 2px)); }
.float-card--2 { transform: translateY(8px); }
.float-card--2:hover { transform: translateY(calc(8px - 2px)); }
.float-card--3 { transform: translateY(28px); }
.float-card--3:hover { transform: translateY(calc(28px - 2px)); }

.float-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--burgundy);
    margin-bottom: 0.25rem;
}

.float-label {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── SECTION COMMON ─── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-title--light {
    color: var(--charcoal);
}

/* ─── SERVICES ─── */
.services {
    padding: 6rem 0;
}

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

.service-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.3s var(--ease);
}

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

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

.service-num {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    transition: color 0.3s var(--ease);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ─── ABOUT ─── */
.about {
    padding: 6rem 0;
    background: var(--blush-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-img-col {
    position: relative;
}

.about-img-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.about-img-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--burgundy);
    border-radius: 4px;
    opacity: 0.15;
    z-index: -1;
}

.about-text-col {
    padding-top: 1rem;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.about-body + .about-body {
    margin-top: 1.25rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--burgundy);
    letter-spacing: 0.04em;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--line-strong);
}

/* ─── GALLERY ─── */
.gallery {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    background: var(--blush-mid);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

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

.gallery-item--1 { grid-row: span 2; }
.gallery-item--1 img { height: 100%; min-height: 400px; }
.gallery-item--2 img { min-height: 300px; }
.gallery-item--3 img { min-height: 300px; }
.gallery-item--4 img { height: 100%; min-height: 400px; }

/* ─── CTA ─── */
.cta {
    padding: 6rem 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 45, 59, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cta .section-eyebrow {
    color: var(--blush);
    opacity: 0.7;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    color: var(--blush-light);
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    text-align: left;
}

.cta-detail svg {
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 3px;
}

.cta-detail-label {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.cta-detail-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--blush);
    line-height: 1.6;
    text-decoration: none;
}

.cta-detail-value:hover {
    color: var(--blush-light);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-actions .btn--ghost {
    border-color: rgba(245, 230, 224, 0.25);
    color: var(--blush);
}

.cta-actions .btn--ghost:hover {
    border-color: var(--blush);
    background: rgba(245, 230, 224, 0.06);
    color: var(--blush-light);
}

/* ─── FOOTER ─── */
.footer {
    padding: 3rem 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(245, 230, 224, 0.08);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-brand .logo-mark {
    width: 22px;
    height: 22px;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--blush);
}

.footer-tagline {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
    display: none;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease);
    letter-spacing: 0.04em;
}

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

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 230, 224, 0.06);
}

/* ─── MOBILE NAV ─── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(253, 249, 247, 0.98);
    backdrop-filter: blur(20px);
    z-index: 800;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-overlay.active {
    display: flex;
}

.nav-overlay .nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--charcoal);
}

.nav-overlay .nav-link::after {
    display: none;
}

.nav-overlay .btn--primary {
    margin-top: 1rem;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 2.5rem;
    }
    .floating-cards {
        left: -30px;
    }
    .about-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-right {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    .floating-cards {
        position: relative;
        left: 0;
        top: 0;
        bottom: 0;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    .float-card {
        transform: none !important;
    }
    .float-card:hover {
        transform: translateY(-2px) !important;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-layout {
        grid-template-columns: 1fr;
    }
    .about-img-col {
        max-width: 400px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--1,
    .gallery-item--4 {
        grid-row: span 1;
    }
    .gallery-item--1 img,
    .gallery-item--4 img {
        min-height: 250px;
    }
    .cta-details {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-tagline {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    .hero-headline {
        font-size: 2rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .about-stat-divider {
        width: 40px;
        height: 1px;
    }
}
