/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F5D5D0;
    --blush-light: #FAEAEA;
    --blush-cream: #FDF5F3;
    --cream: #FFFAF8;
    --text-dark: #1A0A0E;
    --text-mid: #4A2030;
    --text-light: #7A5060;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(123,45,59,0.08);
    --shadow-md: 0 8px 30px rgba(123,45,59,0.12);
    --shadow-lg: 0 20px 60px rgba(123,45,59,0.15);
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.1; }

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

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

.accent-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--burgundy);
}

/* ── Marquee Strip ────────────────────────────────── */
.marquee-strip {
    background: var(--burgundy);
    color: var(--blush);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.marquee-inner {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 0;
}
.marquee-inner span { padding: 0 32px; flex-shrink: 0; }
.marquee-inner .dot { opacity: 0.5; font-size: 0.5rem; align-self: center; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Header ───────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253,250,248,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123,45,59,0.08);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--burgundy);
}
.logo-mark {
    font-size: 1.2rem;
    opacity: 0.8;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: width 0.3s ease;
}
.main-nav a:hover { color: var(--burgundy); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--burgundy-dark); transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    background: var(--cream);
    padding: 60px 0 80px;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    background: var(--blush-light);
    border: 1px solid var(--blush);
    padding: 8px 16px;
    border-radius: 100px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(123,45,59,0.3);
}
.btn-primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123,45,59,0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}
.btn-ghost:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: 18px 36px; font-size: 1rem; }

/* Hero Image */
.hero-image { position: relative; }
.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}
.hero-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--blush);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}
.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -24px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.float-card-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
}
.float-card-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
    line-height: 1.4;
}

/* ── Section Shared ───────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    line-height: 1.1;
}

/* ── Services ─────────────────────────────────────── */
.services {
    padding: 100px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--cream);
    border: 1px solid rgba(123,45,59,0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--blush);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--burgundy);
}
.service-icon svg { width: 28px; height: 28px; }
.service-name {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.service-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images {
    position: relative;
    min-height: 600px;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 7/8; }
.about-img-side {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--cream);
    z-index: 3;
}
.about-img-side img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-block {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--blush);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}

.about-content { max-width: 520px; }
.about-lead {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}
.about-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    gap: 24px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid rgba(123,45,59,0.1);
    border-bottom: 1px solid rgba(123,45,59,0.1);
}
.stat { flex: 1; text-align: center; }
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    background: rgba(123,45,59,0.15);
    align-self: stretch;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
    padding: 100px 0;
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:nth-child(1) img { aspect-ratio: 4/5; }
.gallery-item:nth-child(2) img { aspect-ratio: 6/5; }
.gallery-item:nth-child(3) img { aspect-ratio: 6/5; }
.gallery-item:nth-child(4) img { aspect-ratio: 4/5; }
.gallery-item:nth-child(5) img { aspect-ratio: 6/5; }
.gallery-item:nth-child(6) img { aspect-ratio: 4/5; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(123,45,59,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ── Testimonials ─────────────────────────────────── */
.testimonials {
    padding: 100px 0;
    background: var(--burgundy);
    color: var(--white);
}
.testimonials .section-eyebrow { color: var(--blush); }
.testimonials .section-title { color: var(--white); }
.testimonials .accent-italic { color: var(--blush); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}
.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--blush-light);
    margin-bottom: 24px;
}
.testimonial-author {
    font-size: 0.875rem;
    color: rgba(245,213,208,0.6);
    font-weight: 500;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-intro {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}
.contact-details { margin-bottom: 36px; }
.contact-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(123,45,59,0.08);
}
.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-item-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 4px;
}
.contact-item dd {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.7;
}
.contact-item a {
    color: var(--burgundy);
    font-weight: 600;
    transition: color 0.2s;
}
.contact-item a:hover { color: var(--burgundy-dark); }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(123,45,59,0.06);
}
.form-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.optional {
    text-transform: none;
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.75rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(123,45,59,0.15);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.6; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 56px;
    height: 56px;
    color: var(--burgundy);
    margin: 0 auto 16px;
}
.form-success p {
    font-size: 1.0625rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
    background: var(--text-dark);
    color: var(--blush);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.5rem;
}
.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(245,213,208,0.6);
    line-height: 1.6;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.9375rem;
    color: rgba(245,213,208,0.7);
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9375rem;
    color: rgba(245,213,208,0.7);
    line-height: 1.7;
}
.footer-contact a {
    color: var(--blush);
    font-weight: 600;
    transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(245,213,208,0.4);
}

/* ── Scroll Reveal (progressive enhancement) ─────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
        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; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { gap: 32px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100dvh;
        background: var(--cream);
        box-shadow: var(--shadow-lg);
        padding: 80px 32px 32px;
        transition: right 0.35s ease;
        z-index: 99;
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 8px; }
    .main-nav a { padding: 12px 0; font-size: 1rem; }
    .nav-cta { text-align: center; }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(26,10,14,0.4);
        z-index: 98;
    }
    .nav-overlay.active { display: block; }

    .hero { padding: 40px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-float-card { left: -12px; bottom: -12px; padding: 16px 20px; }
    .float-card-number { font-size: 1.6rem; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { min-height: 400px; }
    .about-img-side { right: -16px; bottom: -24px; }

    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrap { padding: 32px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-badges { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(5) { aspect-ratio: 4/5; }
    .about-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 100%; height: 1px; }
}
