/* ========================================
   Rinde and Associates — Custom Styles
   Color Palette: Plum (#6B3F6B) + Amber (#C9953E)
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --plum-dark: #4A2D4A;
    --plum: #6B3F6B;
    --plum-light: #8B5F8B;
    --plum-pale: #F3ECF3;
    --plum-ghost: #F9F5F9;
    --amber: #C9953E;
    --amber-light: #D4A84B;
    --amber-pale: #FDF6E3;
    --amber-ghost: #FEFCF5;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #FDFCFA;
    --gray-50: #F8F7F6;
    --gray-100: #F0EFED;
    --gray-200: #E2E0DC;
    --gray-300: #C8C5BF;
    --gray-400: #9E9A93;
    --gray-500: #6E6A63;
    --gray-600: #4A4640;
    --gray-700: #2E2B26;
    --gray-800: #1A1815;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    --shadow-sm: 0 1px 3px rgba(107, 63, 107, 0.06);
    --shadow-md: 0 4px 20px rgba(107, 63, 107, 0.08);
    --shadow-lg: 0 8px 40px rgba(107, 63, 107, 0.12);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-700);
    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 {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-3xl);
    }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--plum-dark);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--plum);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-logo:hover .logo-mark {
    background: var(--plum);
    color: var(--white);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--plum-dark);
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--plum);
}

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

.nav-link--cta {
    color: var(--plum);
    font-weight: 500;
}

.nav-link--cta::after {
    background: var(--plum);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--plum-dark);
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1.5px;
    background: var(--plum-dark);
    transition: transform var(--transition-base);
}

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

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(253, 252, 250, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--plum-dark);
    transition: color var(--transition-fast);
    opacity: 0;
    transform: translateY(10px);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-nav-link:hover {
    color: var(--amber);
}

.mobile-nav-link--cta {
    margin-top: var(--space-md);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum) !important;
    border: 1px solid var(--plum);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum);
    color: var(--white);
    border: 1.5px solid var(--plum);
}

.btn--primary:hover {
    background: var(--plum-dark);
    border-color: var(--plum-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--plum);
    border: 1.5px solid var(--plum);
}

.btn--outline:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-1px);
}

.btn--full {
    width: 100%;
}

.btn--small {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 72px;
    background: var(--cream);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(107, 63, 107, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 149, 62, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

@media (min-width: 900px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-4xl);
    }
}

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

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--amber);
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--plum-dark);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--plum);
}

.hero-subheadline {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-accent-line {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-left: 2px solid var(--amber);
    border-bottom: 2px solid var(--amber);
    border-radius: 0 0 0 var(--radius-lg);
    z-index: -1;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-400);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-300), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* --- Section Headers --- */
.section-header {
    margin-bottom: var(--space-4xl);
}

.section-header--centered {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--plum-dark);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.01em;
}

.section-divider {
    width: 48px;
    height: 1.5px;
    background: var(--amber);
}

.section-divider--centered {
    margin: 0 auto var(--space-xl);
}

/* --- Services Section --- */
.services {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
    }
}

.service-card {
    padding: var(--space-2xl);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--plum);
    margin-bottom: var(--space-xl);
}

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

.service-title {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--plum-dark);
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-features li {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding-left: var(--space-lg);
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 1px;
    background: var(--amber);
}

/* --- About Section --- */
.about {
    padding: var(--space-5xl) 0;
    background: var(--cream);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 900px) {
    .about-container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: var(--space-4xl);
    }
}

.about-image-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-200);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--plum);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.stat-divider {
    width: 1px;
    background: var(--gray-200);
    align-self: stretch;
}

.about-content-col {
    max-width: 520px;
}

.about-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--space-xl);
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
}

.about-values {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.value-line {
    width: 24px;
    height: 1px;
    background: var(--amber);
    flex-shrink: 0;
}

.value-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* --- Approach Section --- */
.approach {
    padding: var(--space-5xl) 0;
    background: var(--plum-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 149, 62, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 95, 139, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.approach .section-eyebrow {
    color: var(--amber-light);
}

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

.approach .section-divider--centered {
    background: var(--amber-light);
}

.approach-intro {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
}

.approach-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    margin-top: var(--space-4xl);
}

@media (min-width: 768px) {
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
}

@media (min-width: 1024px) {
    .approach-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.approach-step {
    padding: var(--space-2xl);
    position: relative;
}

@media (min-width: 1024px) {
    .approach-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: var(--space-2xl);
        right: 0;
        width: 1px;
        height: calc(100% - var(--space-2xl));
        background: rgba(255, 255, 255, 0.1);
    }
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--amber);
    line-height: 1;
    margin-bottom: var(--space-lg);
    opacity: 0.8;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.step-description {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
}

/* --- Testimonial Section --- */
.testimonial-section {
    padding: var(--space-5xl) 0;
    background: var(--plum-pale);
    text-align: center;
}

.testimonial-quote-mark {
    width: 48px;
    height: 48px;
    color: var(--amber);
    opacity: 0.5;
    margin: 0 auto var(--space-xl);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--plum-dark);
    max-width: 720px;
    margin: 0 auto var(--space-xl);
}

.testimonial-attribution {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
}

/* --- Contact Section --- */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

@media (min-width: 900px) {
    .contact-container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: var(--space-4xl);
    }
}

.contact-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--space-lg);
}

.contact-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--gray-700);
}

.contact-detail-value a {
    color: var(--plum);
    transition: color var(--transition-fast);
}

.contact-detail-value a:hover {
    color: var(--amber);
}

.contact-hours {
    display: flex;
    gap: var(--space-lg);
    align-items: baseline;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-200);
}

.hours-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.hours-value {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* --- Contact Form --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-700);
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: var(--gray-300);
}

.form-input:focus {
    border-color: var(--plum-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 63, 107, 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 12 12'%3E%3Cpath d='M6 8L1 3h10L6 8z' fill='%239E9A93'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: none;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--plum-pale);
    border-radius: var(--radius-sm);
    color: var(--plum-dark);
    font-size: 0.9375rem;
    margin-top: var(--space-md);
}

.form-success svg {
    width: 20px;
    height: 20px;
    color: var(--plum);
    flex-shrink: 0;
}

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

/* --- Map Section --- */
.map-section {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.85);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 45, 74, 0.7) 0%, rgba(107, 63, 107, 0.5) 100%);
    display: flex;
    align-items: center;
}

.map-overlay .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.map-info {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
}

.map-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.map-address {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Footer --- */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--gray-800);
    color: var(--white);
}

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

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

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

.footer-brand .nav-logo {
    margin-bottom: var(--space-lg);
}

.footer-brand .logo-mark {
    border-color: var(--amber);
    color: var(--amber);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
}

.footer-link-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link-heading {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.footer-link-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding-top: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-address {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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