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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2C;
    --blush: #F2D0CC;
    --blush-light: #FDF0EE;
    --cream: #FDF8F7;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-900: #2D2D2D;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #C4C4C4;
    --gray-100: #F0EBEA;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-900);
    background: var(--cream);
    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;
}

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

/* ── Typography ─────────────────────────────────── */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--black);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    border-radius: 2px;
}

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

.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.25);
}

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

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

.btn-full {
    width: 100%;
}

/* ── Navigation ─────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease);
}

.nav.scrolled {
    background: rgba(253, 248, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    transition: color 0.4s var(--ease);
}

.nav.scrolled .nav-logo {
    color: var(--burgundy);
}

.nav-logo-icon {
    color: currentColor;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s var(--ease);
    position: relative;
}

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

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

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

.nav.scrolled .nav-links a {
    color: var(--gray-700);
}

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

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 8px 20px !important;
    border-radius: 2px;
    transition: all 0.3s var(--ease) !important;
}

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

.nav.scrolled .nav-cta {
    border-color: var(--burgundy) !important;
    color: var(--burgundy) !important;
}

.nav.scrolled .nav-cta:hover {
    background: var(--burgundy) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 4px;
    transition: color 0.4s var(--ease);
}

.nav.scrolled .nav-toggle {
    color: var(--burgundy);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--burgundy-deep) 0%,
        var(--burgundy) 30%,
        #A84458 55%,
        var(--blush) 80%,
        var(--blush-light) 100%
    );
    z-index: 0;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(92, 31, 44, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(242, 208, 204, 0.4) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--white);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-accent {
    font-style: italic;
    font-weight: 300;
    color: var(--blush);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-actions .btn-ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.hero-actions .btn-ghost:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

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

.hero-actions .btn-primary:hover {
    background: var(--blush-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-divider {
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 24px;
}

.hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

.hero-phone {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s var(--ease);
}

.hero-phone:hover {
    color: var(--white);
}

.hero-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ──────────────────────────────────────── */
.about {
    padding: 140px 0;
}

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

.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--blush);
    z-index: -1;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

.about-content .section-eyebrow {
    text-align: left;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--black);
    margin-bottom: 28px;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.about-feature svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

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

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

.service-card {
    padding: 40px 28px;
    border: 1px solid var(--gray-100);
    border-radius: 2px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(123, 45, 59, 0.08);
    transform: translateY(-4px);
}

.service-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 20px;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--burgundy);
    transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.75;
}

/* ── Gallery ────────────────────────────────────── */
.gallery {
    padding: 120px 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

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

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(4) img { height: 100%; }

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92, 31, 44, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    font-style: italic;
}

/* ── Process ────────────────────────────────────── */
.process {
    padding: 120px 0;
    background: var(--white);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 32px;
    position: relative;
}

.process-step-content {
    padding-bottom: 56px;
}

.process-step:last-child .process-step-content {
    padding-bottom: 0;
}

.process-step-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.75;
    max-width: 480px;
}

/* ── CTA / Contact ──────────────────────────────── */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 50%, #A84458 100%);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.cta-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--white);
}

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

.cta-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 4px;
}

.cta-detail span,
.cta-detail a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s var(--ease);
}

.cta-detail a:hover {
    color: var(--white);
}

/* ── Form ───────────────────────────────────────── */
.cta-form-wrap {
    background: var(--white);
    border-radius: 4px;
    padding: 48px;
}

.cta-form h3 {
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--black);
    background: var(--cream);
    border: 1px solid var(--gray-100);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s var(--ease);
    appearance: none;
}

.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(--gray-300);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 16px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-success svg {
    color: var(--burgundy);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 24px;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
    padding: 80px 0 0;
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease);
}

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

.footer-links span {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s var(--ease);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ── Scroll Animations ──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ── Mobile Menu ────────────────────────────────── */
.nav-links.open {
    display: flex;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.5s var(--ease-out);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links a {
        color: var(--gray-900) !important;
        font-size: 0.9rem;
    }

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

    .nav-cta {
        border-color: var(--burgundy) !important;
        color: var(--burgundy) !important;
    }

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

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .about-image-wrap {
        order: -1;
    }

    .about-image-wrap img {
        height: 350px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-row: span 1;
    }

    .gallery-item img {
        height: 250px;
    }

    .process-step {
        grid-template-columns: 40px 1fr;
        gap: 20px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-form-wrap {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero {
        min-height: 100svh;
    }

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

/* ── Mobile overlay ─────────────────────────────── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

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