/* ============================================
   La Belle Maison Decor — Custom Styles
   Palette: Burgundy (#7B2D3B) + Blush (#F5E6E8)
   Fonts: Cormorant Garamond + Montserrat
   ============================================ */

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

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #2C2C2C;
    background-color: #FDFBF9;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: #1A1A1A;
}

.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    color: #1A1A1A;
}

/* --- Page Loader --- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #7B2D3B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #F5E6E8;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    display: block;
}

.loader-bar {
    width: 160px;
    height: 2px;
    background: rgba(245, 230, 232, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-fill {
    width: 0%;
    height: 100%;
    background: #F5E6E8;
    border-radius: 2px;
    animation: loaderFill 1.2s ease forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 249, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    border-bottom-color: rgba(123, 45, 59, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: #7B2D3B;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7B2D3B;
    border-radius: 4px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: 0.02em;
}

.logo-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7B2D3B;
}

/* --- Navigation --- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4A4A4A;
    padding: 8px 16px;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
    color: #7B2D3B;
    background: rgba(123, 45, 59, 0.06);
}

.nav-cta {
    background: #7B2D3B;
    color: #F5E6E8 !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: #5E2230;
    color: #F5E6E8 !important;
    background: #5E2230;
}

/* --- Mobile Toggle --- */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #1A1A1A;
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #1A1A1A;
    transition: transform 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* --- Mobile Menu --- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #FDFBF9;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2C2C2C;
    padding: 12px 0;
    border-bottom: 1px solid rgba(123, 45, 59, 0.1);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover {
    color: #7B2D3B;
    padding-left: 8px;
}

.mobile-nav-cta {
    border-bottom: none;
    margin-top: 16px;
    background: #7B2D3B;
    color: #F5E6E8;
    text-align: center;
    padding: 14px 24px;
    border-radius: 4px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #7B2D3B;
    color: #F5E6E8;
    border-color: #7B2D3B;
}

.btn-primary:hover {
    background: #5E2230;
    border-color: #5E2230;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.25);
}

.btn-outline {
    background: transparent;
    color: #1A1A1A;
    border-color: #1A1A1A;
}

.btn-outline:hover {
    background: #1A1A1A;
    color: #F5E6E8;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FDFBF9 0%, #F5E6E8 50%, #FDFBF9 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, #7B2D3B 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.hero-headline em {
    font-style: italic;
    color: #7B2D3B;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5A5A5A;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #7B2D3B;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7A7A7A;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(123, 45, 59, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
    padding-left: 60px;
}

.hero-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-img-primary {
    width: 100%;
    aspect-ratio: 600/780;
}

.hero-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 65%;
    aspect-ratio: 400/500;
    border: 6px solid #FDFBF9;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-accent {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 120px;
    height: 120px;
    border: 3px solid #7B2D3B;
    border-radius: 4px;
    opacity: 0.15;
    z-index: -1;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #7A7A7A;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #7B2D3B, transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- About --- */
.about {
    padding: 120px 0;
    background: #FDFBF9;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 640/800;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    background: #F5E6E8;
    border-radius: 8px;
    z-index: -1;
}

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

.about-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: #5A5A5A;
    margin-bottom: 16px;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(123, 45, 59, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2D3B;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.about-feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9rem;
    color: #6A6A6A;
    margin-bottom: 0;
    line-height: 1.7;
}

/* --- Services --- */
.services {
    padding: 120px 0;
    background: #1A1A1A;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 1px 1px, #F5E6E8 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.services-header .section-eyebrow {
    color: #F5E6E8;
    opacity: 0.7;
}

.services-header .section-title {
    color: #F5E6E8;
}

.services-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(245, 230, 232, 0.6);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #7B2D3B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(123, 45, 59, 0.3);
    transform: translateY(-4px);
}

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

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(123, 45, 59, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    color: #F5E6E8;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #F5E6E8;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(245, 230, 232, 0.55);
    margin-bottom: 24px;
}

.service-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7B2D3B;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 10px;
}

/* --- Gallery --- */
.gallery {
    padding: 120px 0;
    background: #FDFBF9;
}

.gallery-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.gallery-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6A6A6A;
}

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

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

.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.05);
}

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

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

.gallery-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F5E6E8;
}

.gallery-item-large {
    grid-column: span 7;
    aspect-ratio: 800/600;
}

.gallery-item:not(.gallery-item-large):not(.gallery-item-wide) {
    aspect-ratio: 500/400;
}

.gallery-item-wide {
    grid-column: span 12;
    aspect-ratio: 1200/500;
}

/* --- Testimonials --- */
.testimonials {
    padding: 120px 0;
    background: #F5E6E8;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #7B2D3B, #C4787F, #7B2D3B);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.testimonial-card {
    background: #FDFBF9;
    border-radius: 8px;
    padding: 40px 32px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: 0.8;
    color: #7B2D3B;
    opacity: 0.15;
    position: absolute;
    top: 16px;
    left: 24px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #4A4A4A;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-initials {
    width: 44px;
    height: 44px;
    background: #7B2D3B;
    color: #F5E6E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A1A1A;
}

.author-location {
    font-size: 0.75rem;
    color: #8A8A8A;
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: #1A1A1A;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, #F5E6E8 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

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

.contact-info .section-title {
    color: #F5E6E8;
}

.contact-info > p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(245, 230, 232, 0.55);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(123, 45, 59, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4787F;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 230, 232, 0.4);
    margin-bottom: 4px;
}

.detail-value {
    display: block;
    font-size: 0.95rem;
    color: #F5E6E8;
    line-height: 1.7;
}

.detail-value a {
    color: #F5E6E8;
    transition: color 0.2s ease;
}

.detail-value a:hover {
    color: #C4787F;
}

/* Contact Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 48px 40px;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #F5E6E8;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: rgba(245, 230, 232, 0.5);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 230, 232, 0.5);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #F5E6E8;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(245, 230, 232, 0.3);
}

.form-input:focus {
    border-color: #7B2D3B;
    background: rgba(123, 45, 59, 0.08);
}

.form-select {
    appearance: none;
    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='%23F5E6E8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: #2C2C2C;
    color: #F5E6E8;
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(123, 45, 59, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4787F;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #F5E6E8;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9rem;
    color: rgba(245, 230, 232, 0.5);
}

/* --- Footer --- */
.site-footer {
    background: #111111;
    padding: 80px 0 0;
}

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

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(245, 230, 232, 0.4);
    line-height: 1.75;
    margin-top: 20px;
    max-width: 280px;
}

.logo-footer .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
}

.logo-footer .logo-name {
    font-size: 1.1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #F5E6E8;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: rgba(245, 230, 232, 0.4);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: #C4787F;
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(245, 230, 232, 0.4);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(245, 230, 232, 0.4);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #C4787F;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(245, 230, 232, 0.25);
}

.footer-bottom a {
    color: rgba(245, 230, 232, 0.25);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #C4787F;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #7B2D3B;
    color: #F5E6E8;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #5E2230;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.4);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-image-stack {
        padding-left: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 48px;
    }

    .contact-grid {
        gap: 48px;
    }

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

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

    .mobile-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero-content {
        max-width: 100%;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-stack {
        padding-left: 0;
    }

    .hero-img-secondary {
        display: none;
    }

    .hero-img-primary {
        aspect-ratio: 4/3;
    }

    .hero-scroll {
        display: none;
    }

    .about {
        padding: 80px 0;
    }

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

    .about-image {
        max-width: 480px;
    }

    .about-image-accent {
        display: none;
    }

    .services {
        padding: 80px 0;
    }

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

    .gallery {
        padding: 80px 0;
    }

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

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .gallery-item:not(.gallery-item-large):not(.gallery-item-wide) {
        aspect-ratio: 4/3;
    }

    .gallery-overlay {
        opacity: 1;
    }

    .testimonials {
        padding: 80px 0;
    }

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

    .contact {
        padding: 80px 0;
    }

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

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

    .site-footer {
        padding: 60px 0 0;
    }

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

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

@media (max-width: 480px) {
    .header-inner {
        height: 68px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .logo-name {
        font-size: 1.05rem;
    }

    .logo-tag {
        font-size: 0.6rem;
    }

    .hero {
        padding: 88px 0 48px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 28px 24px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }
}
