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

:root {
    --burgundy: #722F37;
    --burgundy-deep: #5A252C;
    --blush: #F5E6D3;
    --blush-light: #FDF6F0;
    --cream: #FFFAF7;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --line: rgba(114, 47, 55, 0.12);
    --line-strong: rgba(114, 47, 55, 0.25);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Karla', 'Helvetica Neue', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.header.scrolled {
    background: rgba(255, 250, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-decoration: none;
    color: var(--burgundy);
}
.logo-mark {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}
.logo-wordmark {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
}
.header.scrolled .logo-wordmark {
    color: var(--text-mid);
}

/* ─── NAV ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}
.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--burgundy);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.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);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width 0.3s var(--ease-out);
}
.nav-link:hover {
    color: var(--burgundy);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-cta {
    background: var(--burgundy);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    transition: background 0.3s, transform 0.2s var(--ease-out) !important;
}
.nav-cta::after {
    display: none;
}
.nav-cta:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--burgundy) 0%,
        #8B3A44 25%,
        var(--blush) 60%,
        #FADCD2 80%,
        #FDF0E8 100%
    );
}
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}
.hero-content {
    max-width: 720px;
}
.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero-accent {
    font-style: italic;
    font-weight: 300;
    opacity: 0.9;
}
.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}
.btn-primary {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
}
.btn-primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(114, 47, 55, 0.25);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--burgundy);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--blush);
    border-color: var(--blush);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── SECTION COMMON ─── */
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ─── SERVICES ─── */
.services {
    padding: 120px 24px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}
.service-card {
    background: var(--cream);
    padding: 40px 32px;
    transition: background 0.4s var(--ease-out);
}
.service-card:hover {
    background: var(--blush-light);
}
.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--burgundy);
    transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.service-card:hover .service-icon {
    border-color: var(--burgundy);
    transform: translateY(-2px);
}
.service-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.service-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 24px;
    background: var(--blush-light);
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.about-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--burgundy);
    border-radius: 16px;
    opacity: 0.2;
    z-index: -1;
}
.about-content {
    max-width: 480px;
}
.about-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
}
.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 32px 0 40px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--burgundy);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
}
.stat-divider {
    flex: 1;
    height: 1px;
    background: var(--line-strong);
}

/* ─── GALLERY ─── */
.gallery {
    padding: 120px 24px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
}
.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 5; grid-row: 2 / 3; }

/* ─── CTA ─── */
.cta {
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--burgundy-deep) 0%,
        var(--burgundy) 50%,
        #8B3A44 100%
    );
}
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-eyebrow {
    color: rgba(255, 255, 255, 0.6) !important;
}
.cta-title {
    color: #fff;
}
.cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 24px;
    background: var(--blush-light);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 32px;
}
.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-item svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--burgundy);
}
.contact-item strong {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.contact-item span,
.contact-item a {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.6;
}
.contact-item a:hover {
    color: var(--burgundy);
    text-decoration: underline;
}

/* ─── FORM ─── */
.contact-form-wrapper {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
}
.form-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.78rem;
    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%;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--blush-light);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    -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(114, 47, 55, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A7A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    color: var(--burgundy);
    margin-bottom: 16px;
}
.form-success h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 24px 32px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-brand {
    margin-bottom: 40px;
}
.footer .logo-mark {
    color: #fff;
}
.footer .logo-wordmark {
    color: rgba(255, 255, 255, 0.5);
}
.footer-tagline {
    font-size: 0.9rem;
    max-width: 320px;
    margin-top: 12px;
    line-height: 1.7;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.footer-links a {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.footer-contact a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact a:hover {
    color: #fff;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        max-width: 480px;
    }
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .gallery-item:nth-child(1) { grid-column: 1 / 7; }
    .gallery-item:nth-child(2) { grid-column: 7 / 10; }
    .gallery-item:nth-child(3) { grid-column: 10 / 13; }
    .gallery-item:nth-child(4) { grid-column: 1 / 7; grid-row: auto; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-link {
        font-size: 1rem;
    }
    .nav-cta {
        margin-top: 8px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: 100svh;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }
}
