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

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F4E8E8;
    --blush-light: #FAF3F3;
    --blush-mid: #F0DDD D;
    --cream: #FDFBF9;
    --white: #FFFFFF;
    --text-dark: #1A1416;
    --text-mid: #4A3F42;
    --text-light: #8A7878;
    --text-muted: #B8A8A8;
    --line: #E8DCDC;
    --line-light: #F0E6E6;
    --shadow-sm: 0 1px 3px rgba(123, 45, 59, 0.04);
    --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.06);
    --shadow-lg: 0 12px 40px rgba(123, 45, 59, 0.08);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.page-wrapper {
    min-height: 100vh;
}

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

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

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled .nav-inner {
    padding: 16px 24px;
    background: rgba(253, 251, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-light);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    z-index: 1001;
}

.nav-logo-icon {
    color: var(--burgundy);
    transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(90deg);
}

.nav-logo-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
}

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

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text-dark);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(244, 232, 232, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(123, 45, 59, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--cream) 0%, var(--blush-light) 50%, var(--cream) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: 
        linear-gradient(var(--burgundy) 1px, transparent 1px),
        linear-gradient(90deg, var(--burgundy) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-label-line {
    width: 32px;
    height: 1px;
    background: var(--text-muted);
}

.hero-headline {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.hero-headline-line {
    display: block;
}

.hero-headline-line:first-child {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.hero-headline-line:nth-child(2) {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.hero-headline-line:nth-child(3) {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--burgundy);
}

.hero-headline em {
    font-style: italic;
    font-weight: 300;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(123, 45, 59, 0.2);
}

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

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

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

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-divider {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, transparent, var(--line), transparent);
    margin: 48px auto;
    position: relative;
    z-index: 1;
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--line);
}

/* ── SECTIONS ── */
.section {
    padding: 120px 0;
}

.section-header {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-header-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
    position: relative;
    padding-left: 24px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background: var(--burgundy);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title-light {
    color: var(--white);
}

.section-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    transition: all 0.5s var(--ease-out);
    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.5s var(--ease-out);
}

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

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--burgundy);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

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

/* ── ABOUT ── */
.section-dark {
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(var(--white) 1px, transparent 1px),
        linear-gradient(90deg, var(--white) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(92, 31, 43, 0.3) 100%);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    z-index: -1;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 20px;
}

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

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-value-line {
    width: 24px;
    height: 1px;
    background: var(--burgundy-light);
    flex-shrink: 0;
    margin-top: 8px;
}

.about-value-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* ── COMMUNITY ── */
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.community-card {
    padding: 40px 32px;
    border: 1px solid var(--line);
    border-radius: 2px;
    transition: all 0.5s var(--ease-out);
    position: relative;
}

.community-card:hover {
    border-color: var(--burgundy);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.community-card-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.community-card:hover .community-card-number {
    color: var(--burgundy);
}

.community-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.community-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
}

.community-divider {
    display: flex;
    align-items: center;
    gap: 24px;
}

.community-divider-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.community-divider-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-mid);
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
}

/* ── CTA / CONTACT ── */
.section-cta {
    background: var(--blush-light);
}

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

.cta-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 40px;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cta-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.cta-contact-item:hover {
    padding-left: 8px;
}

.cta-contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--burgundy);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-contact-item:hover .cta-contact-icon {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

.cta-contact-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.cta-contact-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.5;
}

.cta-contact-static .cta-contact-value {
    font-weight: 300;
    color: var(--text-mid);
}

/* ── FORM ── */
.cta-form-wrapper {
    position: relative;
}

.cta-form-bg {
    position: absolute;
    inset: -1px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.cta-form {
    position: relative;
    padding: 40px;
    background: var(--white);
    border-radius: 4px;
}

.cta-form-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 28px;
}

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

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

.form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input:focus {
    border-bottom-color: var(--burgundy);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-select {
    cursor: pointer;
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--blush-light);
    border: 1px solid var(--line);
    border-radius: 4px;
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--burgundy);
    font-weight: 400;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    flex-shrink: 0;
    color: var(--burgundy);
}

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

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

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--burgundy-light);
}

.footer-logo span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

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

.footer-col a,
.footer-col span {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

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

.footer-emergency {
    color: var(--burgundy-light) !important;
    font-weight: 400 !important;
}

.footer-emergency:hover {
    color: var(--white) !important;
}

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

.footer-disclaimer {
    max-width: 400px;
    text-align: right;
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-layout {
        gap: 48px;
    }

    .cta-layout {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(253, 251, 249, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease-out);
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-divider {
        height: 40px;
        margin: 32px auto;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-num {
        font-size: 1.2rem;
    }

    .section {
        padding: 80px 0;
    }

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

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

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

    .community-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .community-divider {
        flex-direction: column;
        gap: 16px;
    }

    .community-divider-line {
        width: 48px;
        height: 1px;
    }

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

    .cta-form {
        padding: 28px;
    }

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

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

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

    .footer-disclaimer {
        text-align: center;
        max-width: 100%;
    }
}

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

    .hero-headline-line {
        font-size: 2rem !important;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 32px;
        height: 1px;
    }

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

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