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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --blush: #F5E6E0;
    --blush-light: #FBF7F5;
    --blush-mid: #F0D8D0;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --line: rgba(123, 45, 59, 0.12);
    --line-strong: rgba(123, 45, 59, 0.25);
    --font-body: 'Inter', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 3px rgba(123,45,59,0.06), 0 1px 2px rgba(123,45,59,0.04);
    --shadow-md: 0 4px 20px rgba(123,45,59,0.08), 0 2px 8px rgba(123,45,59,0.04);
    --shadow-lg: 0 12px 40px rgba(123,45,59,0.12), 0 4px 16px rgba(123,45,59,0.06);
    --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: var(--blush-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

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

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(251, 247, 245, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
    display: flex; align-items: center;
    height: 72px; gap: 32px;
}

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.9375rem; letter-spacing: -0.01em;
    color: var(--burgundy);
}

.nav-logo-mark {
    width: 36px; height: 36px;
    background: var(--burgundy); color: var(--white);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 500;
    font-size: 1.125rem;
}

.nav-menu {
    margin-left: auto;
    display: flex; align-items: center; gap: 8px;
    font-size: 0.875rem; font-weight: 400;
}
.nav-menu a {
    padding: 8px 14px; border-radius: 100px;
    color: var(--text-mid); transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover { color: var(--burgundy); background: var(--blush); }

.nav-cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    font-weight: 500 !important;
}
.nav-cta:hover { background: var(--burgundy-deep) !important; }

.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 8px; margin-left: auto;
}
.nav-toggle-line {
    width: 22px; height: 1.5px; background: var(--text-dark);
    transition: var(--transition); transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 28px;
    font-family: var(--font-body); font-size: 0.9375rem; font-weight: 500;
    border-radius: 100px; border: 1.5px solid transparent;
    cursor: pointer; transition: all var(--transition);
    white-space: nowrap;
}
.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(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
    background: transparent; color: var(--text-mid);
    border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--burgundy); color: var(--burgundy); }
.btn-white { background: var(--white); color: var(--burgundy); border-color: var(--white); }
.btn-white:hover { background: var(--blush); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; }

/* ── Section shared ───────────────────────────────── */
.section-eyebrow {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--burgundy);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2; letter-spacing: -0.02em;
    color: var(--text-dark); margin-bottom: 16px;
}
.section-desc {
    font-size: 1.0625rem; color: var(--text-light);
    max-width: 520px; line-height: 1.7;
}
.section-header--centered { text-align: center; }
.section-header--centered .section-desc { margin: 0 auto; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    padding-top: 120px; padding-bottom: 80px;
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    background: linear-gradient(160deg, var(--blush-light) 0%, var(--blush) 50%, var(--blush-mid) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}

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

.hero-title {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.1; letter-spacing: -0.03em;
    color: var(--text-dark); margin-bottom: 24px;
}
.hero-title em {
    font-style: italic; color: var(--burgundy);
}

.hero-desc {
    font-size: 1.0625rem; color: var(--text-mid);
    line-height: 1.75; margin-bottom: 36px; max-width: 480px;
}

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

.hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    min-height: 480px;
}

.hero-card--main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
}
.hero-card--main img { width: 100%; height: 100%; object-fit: cover; }

.hero-card--stat {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.hero-card--stat--1 {
    bottom: 40px; left: -20px;
}
.hero-card--stat--2 {
    top: 40px; right: -16px;
}
.stat-number {
    display: block;
    font-family: var(--font-display); font-weight: 500;
    font-size: 1.75rem; color: var(--burgundy);
    line-height: 1; margin-bottom: 4px;
}
.stat-label {
    font-size: 0.8125rem; color: var(--text-light);
    font-weight: 400;
}

/* ── Services ─────────────────────────────────────── */
.services { padding: 100px 0; background: var(--white); }

.section-header { margin-bottom: 56px; }

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

.service-card {
    padding: 36px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all var(--transition);
    background: var(--blush-light);
}
.service-card:hover {
    border-color: var(--burgundy);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: var(--white);
}

.service-card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--blush);
    display: flex; align-items: center; justify-content: center;
    color: var(--burgundy);
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-card-icon {
    background: var(--burgundy); color: var(--white);
}

.service-card-title {
    font-family: var(--font-body); font-weight: 500;
    font-size: 1.0625rem; letter-spacing: -0.01em;
    color: var(--text-dark); margin-bottom: 10px;
}

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

/* ── About ────────────────────────────────────────── */
.about { padding: 100px 0; background: var(--blush-light); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}

.about-images { position: relative; }

.about-img-main {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-float {
    position: absolute; bottom: -32px; right: -24px;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--blush-light);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.about-content .section-title { margin-bottom: 24px; }

.about-text {
    font-size: 1rem; color: var(--text-mid);
    line-height: 1.8; margin-bottom: 16px;
}

.about-values {
    display: flex; flex-direction: column; gap: 12px;
    margin: 32px 0 40px;
}
.value-item {
    display: flex; align-items: center; gap: 16px;
}
.value-label {
    font-size: 0.9375rem; font-weight: 400;
    color: var(--text-dark); white-space: nowrap;
}
.value-line {
    flex: 1; height: 1px; background: var(--line-strong);
}

/* ── Why Us ───────────────────────────────────────── */
.why-us { padding: 100px 0; background: var(--burgundy); color: var(--white); }
.why-us .section-eyebrow { color: var(--blush-mid); }
.why-us .section-title { color: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-top: 56px;
}

.why-card {
    padding: 36px 24px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.why-card:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
}

.why-number {
    display: block;
    font-family: var(--font-display); font-weight: 500;
    font-size: 2.5rem; color: rgba(255,255,255,0.2);
    line-height: 1; margin-bottom: 20px;
}

.why-card-title {
    font-family: var(--font-body); font-weight: 500;
    font-size: 1.0625rem; letter-spacing: -0.01em;
    margin-bottom: 10px; color: var(--white);
}

.why-card-desc {
    font-size: 0.9375rem; color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery { padding: 100px 0; background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.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.03); }

.gallery-item--wide { grid-column: span 7; }
.gallery-item:not(.gallery-item--wide) { grid-column: span 5; }

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blush) 0%, var(--blush-mid) 100%);
}
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.cta-title {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.02em; color: var(--text-dark);
    margin-bottom: 8px;
}
.cta-desc { font-size: 1rem; color: var(--text-mid); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Contact ──────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--blush-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-details {
    margin-top: 32px;
    font-style: normal;
}

.contact-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: none; }

.contact-row-label {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-light); padding-top: 2px;
}
.contact-row-value {
    font-size: 0.9375rem; color: var(--text-dark);
    line-height: 1.7;
}
.contact-link { transition: color var(--transition); }
.contact-link:hover { color: var(--burgundy); }

.contact-map {
    margin-top: 32px;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}

.contact-form-title {
    font-family: var(--font-display); font-weight: 500;
    font-size: 1.5rem; letter-spacing: -0.02em;
    color: var(--text-dark); margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.8125rem; font-weight: 500;
    color: var(--text-mid); margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body); font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--blush-light);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: 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); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; padding: 40px 20px; text-align: center;
    color: var(--burgundy);
}
.form-success svg { color: var(--burgundy); }
.form-success p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; }

/* ── Footer ───────────────────────────────────────── */
.footer {
    padding: 48px 0;
    background: var(--text-dark);
    color: rgba(255,255,255,0.5);
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.footer-brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 500; font-size: 0.9375rem;
    color: var(--white);
}
.footer-copy { font-size: 0.8125rem; line-height: 1.7; }
.footer-phone {
    font-size: 0.9375rem; font-weight: 500;
    color: var(--blush-mid);
    transition: color var(--transition);
}
.footer-phone:hover { color: var(--white); }

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

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { min-height: 360px; order: -1; }
    .hero-card--stat--1 { left: 16px; bottom: 24px; }
    .hero-card--stat--2 { right: 16px; top: 24px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(251,247,245,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-100%); opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }
    .nav-menu.open {
        transform: translateY(0); opacity: 1;
        pointer-events: all;
    }
    .nav-menu a { padding: 12px 16px; font-size: 1rem; width: 100%; }
    .nav-toggle { display: flex; }
    .nav-cta { text-align: center; }

    .hero { padding-top: 100px; padding-bottom: 60px; min-height: auto; }
    .hero-grid { gap: 40px; }
    .hero-visual { min-height: 280px; }
    .hero-card--stat { padding: 16px 20px; }
    .stat-number { font-size: 1.375rem; }
    .stat-label { font-size: 0.75rem; }

    .services { padding: 72px 0; }
    .services-grid { grid-template-columns: 1fr; }

    .about { padding: 72px 0; }
    .about-img-float { bottom: -20px; right: -12px; }

    .why-us { padding: 72px 0; }
    .why-grid { grid-template-columns: 1fr; }

    .gallery { padding: 72px 0; }
    .gallery-item--wide,
    .gallery-item:not(.gallery-item--wide) { grid-column: span 12; }

    .cta-banner { padding: 60px 0; }
    .cta-inner { flex-direction: column; text-align: center; }

    .contact { padding: 72px 0; }
    .contact-form-wrap { padding: 28px; }
    .contact-row { grid-template-columns: 80px 1fr; gap: 12px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .footer-inner { flex-direction: column; text-align: center; }
}
