/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2C;
    --burgundy-light: #9A3D4E;
    --blush: #F5E6E0;
    --blush-light: #FBF5F2;
    --blush-dark: #E8D0C8;
    --cream: #FDF8F5;
    --cream-dark: #F5EDE8;
    --charcoal: #2C2424;
    --charcoal-light: #4A3F3F;
    --text: #3D3030;
    --text-light: #6B5A5A;
    --text-muted: #9A8888;
    --white: #FFFFFF;
    --gold: #C49A6C;
    --gold-light: #D4B08A;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(123, 45, 59, 0.06), 0 1px 2px rgba(123, 45, 59, 0.04);
    --shadow-md: 0 4px 16px rgba(123, 45, 59, 0.08), 0 2px 4px rgba(123, 45, 59, 0.04);
    --shadow-lg: 0 12px 40px rgba(123, 45, 59, 0.12), 0 4px 12px rgba(123, 45, 59, 0.06);
    --shadow-xl: 0 24px 60px rgba(123, 45, 59, 0.15), 0 8px 20px rgba(123, 45, 59, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s 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);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

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

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--burgundy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 500;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 16px;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo--footer {
    margin-bottom: 16px;
}
.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    color: var(--blush);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-name {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}
.logo-qual {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ===== NAV ===== */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.nav-toggle:hover {
    background: var(--blush);
}
.hamburger {
    display: block;
    width: 22px;
    height: 14px;
    position: relative;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { top: 12px; }
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 6px;
}
.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 6px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.01em;
}
.nav-link:hover {
    color: var(--burgundy);
    background: var(--blush);
}
.nav-link--cta {
    margin-left: 8px;
    background: var(--burgundy);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
}
.nav-link--cta:hover {
    background: var(--burgundy-dark);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(123, 45, 59, 0.88) 0%,
        rgba(92, 31, 44, 0.82) 40%,
        rgba(44, 36, 36, 0.75) 100%
    );
    z-index: -1;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
    width: 100%;
}
.hero-content {
    max-width: 600px;
}
.hero-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: var(--white);
}
.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blush);
    background: rgba(245, 230, 224, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(245, 230, 224, 0.2);
}
.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}
.hero-sub {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--burgundy);
}
.btn--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}
.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost-light:hover {
    background: var(--white);
    color: var(--burgundy);
    transform: translateY(-2px);
}
.btn--full {
    width: 100%;
    justify-content: center;
}
.btn--lg {
    padding: 16px 32px;
    font-size: 15px;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.stat-icon {
    width: 52px;
    height: 52px;
    background: var(--blush);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ===== HERO SCROLL ===== */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    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(8px); }
}

/* ===== SECTION BASE ===== */
.section {
    padding: 100px 0;
}
.section-header {
    max-width: 680px;
    margin: 0 auto 64px;
}
.text-center {
    text-align: center;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
}
.text-center .section-tag {
    padding-left: 0;
}
.text-center .section-tag::before {
    display: none;
}
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.section-sub {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.services--alt {
    background: var(--blush-light);
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
}
.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: var(--burgundy);
    border-radius: var(--radius-xl);
    opacity: 0.08;
    z-index: -1;
}
.about-content {
    max-width: 520px;
}
.about-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.about-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--blush-light);
    border-radius: var(--radius-md);
    transition: background var(--transition);
}
.value-item:hover {
    background: var(--blush);
}
.value-icon {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.value-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(123, 45, 59, 0.08);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--blush);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background var(--transition);
}
.service-card:hover .service-icon {
    background: var(--burgundy);
}
.service-card:hover .service-icon svg {
    stroke: var(--white);
}
.service-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--burgundy);
    transition: gap var(--transition);
}
.service-link:hover {
    gap: 10px;
}

/* ===== APPROACH ===== */
.approach-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.approach-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.approach-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}
.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.step-number {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--burgundy);
    opacity: 0.25;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}
.step-body h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.step-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.approach-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 7/9;
}
.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.approach-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    background: linear-gradient(to top, rgba(44, 36, 36, 0.9) 0%, transparent 100%);
    color: var(--white);
}
.approach-image-overlay blockquote {
    border: none;
    padding: 0;
    margin: 0;
}
.approach-image-overlay p {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--blush);
}
.approach-image-overlay footer {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.04em;
}

/* ===== COMMUNITY ===== */
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.community-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}
.community-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.community-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.community-card:hover img {
    transform: scale(1.05);
}
.community-card-body {
    padding: 28px;
}
.community-card-body h3 {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.community-card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 45, 59, 0.92) 0%, rgba(92, 31, 44, 0.88) 100%);
    z-index: -1;
}
.cta-content {
    text-align: center;
    max-width: 700px;
    color: var(--white);
}
.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--blush);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.contact-detail address,
.contact-detail a {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}
.contact-detail a:hover {
    color: var(--burgundy);
}
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    max-width: 520px;
}
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid var(--blush-dark);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    outline: 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);
    background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group 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='%239A8888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* ===== FORM SUCCESS ===== */
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success .success-icon {
    width: 72px;
    height: 72px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-success h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.form-success p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.contact-form.hidden {
    display: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 48px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    max-width: 300px;
}
.footer h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--blush);
}
.footer-contact address {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 12px;
}
.footer-contact p {
    font-size: 14px;
    line-height: 1.75;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--blush);
}
.footer-legal {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-legal p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
.footer-disclaimer {
    font-size: 12px !important;
    max-width: 600px;
    text-align: right;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 100;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--burgundy-dark);
    transform: translateY(-4px);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    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-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .stat-card {
        flex: 1;
        min-width: 200px;
    }
    .about-container,
    .approach-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-wrap {
        max-width: 500px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .community-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(123, 45, 59, 0.08);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link {
        width: 100%;
        padding: 14px 16px;
    }
    .nav-link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero-card {
        padding: 32px 24px;
    }
    .hero-stats {
        flex-direction: column;
    }
    .stat-card {
        min-width: auto;
    }
    .hero-scroll {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .community-grid {
        grid-template-columns: 1fr;
    }
    .community-card:last-child {
        max-width: none;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 28px 24px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    .footer-disclaimer {
        text-align: center;
    }
    .section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    .hero-card {
        padding: 24px 20px;
    }
    .hero-headline {
        font-size: 24px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
