/* ESTORINA HOMES - Premium Styles v2 */

:root {
    --cream-50: #FDFBF7;
    --cream-100: #FAF7F2;
    --cream-200: #F5F0E8;
    --cream-300: #EDE6D9;
    --cream-400: #E0D5C4;
    --gold-300: #E8D5A3;
    --gold-400: #D4AF37;
    --gold-500: #C9A962;
    --gold-600: #B8941F;
    --gold-700: #9A7B1A;
    --charcoal-700: #3D3425;
    --charcoal-800: #2C2416;
    --charcoal-900: #1A1610;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 9999px;
    --card-border: 1.5px solid rgba(201, 169, 98, 0.45);
    --card-shadow: 0 8px 32px rgba(44, 36, 22, 0.08);
}

/* Global curved feel */
body {
    background: #EBE4D8;
}

/* Site logo */
.site-logo-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-logo-link:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.site-logo {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.site-logo--footer {
    height: 64px;
    max-width: 220px;
    filter: brightness(1.05);
}

.site-logo--brand {
    height: 80px;
    max-width: 280px;
    margin: 0 auto;
}

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(201, 169, 98, 0.35);
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .site-logo {
        height: 36px;
        max-width: 130px;
    }

    .site-logo--footer {
        height: 42px;
        max-width: 145px;
    }

    .site-logo--brand {
        height: 56px;
        max-width: 200px;
    }

    .brand-logo-wrap {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .site-logo {
        height: 32px;
        max-width: 115px;
    }

    .site-logo--footer {
        height: 38px;
        max-width: 130px;
    }

    .site-logo--brand {
        height: 48px;
        max-width: 170px;
    }
}

main {
    overflow-x: hidden;
}

/* Section system — alternating visible blocks */
.section-block {
    position: relative;
    padding: 5rem 0;
    background: var(--cream-100);
}

.section-block-alt {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #E8DFD0 0%, #F0E9DC 50%, #E5DACC 100%);
}

.section-block-dark {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 50%, #2A2318 100%);
    color: var(--cream-100);
}

.section-block-warm {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, var(--cream-200) 40%, var(--cream-100) 100%);
}

.section-curve-top {
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
    margin-top: -2rem;
    padding-top: 6rem;
}

.section-curve-bottom {
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
}

.section-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-divider-wave {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-400), var(--gold-500), transparent);
    margin: 0 auto 3rem;
    max-width: 200px;
    border-radius: var(--radius-pill);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 252, 247, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--card-border);
    border-radius: var(--radius-md);
}

.glass-dark {
    background: rgba(44, 36, 22, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(201, 169, 98, 0.35);
    border-radius: var(--radius-md);
}

.glass-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--card-border);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(201, 169, 98, 0.65);
    box-shadow: 0 16px 48px rgba(44, 36, 22, 0.12);
    transform: translateY(-4px);
}

.glass-card-dark {
    background: rgba(26, 22, 16, 0.85);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    color: var(--cream-100);
}

.glass-nav {
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1.5px solid rgba(201, 169, 98, 0.2);
    transition: all 0.4s ease;
}

.glass-nav.scrolled {
    background: rgba(250, 247, 242, 0.98);
    box-shadow: 0 4px 30px rgba(44, 36, 22, 0.1);
}

/* Breadcrumbs */
.breadcrumb-bar {
    background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
    padding: 0.875rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
}

.breadcrumb-nav a {
    color: rgba(232, 213, 163, 0.85);
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--gold-400);
}

.breadcrumb-nav .breadcrumb-sep {
    color: rgba(201, 169, 98, 0.5);
    margin: 0 0.35rem;
}

.breadcrumb-nav .breadcrumb-current {
    color: var(--gold-300);
    font-weight: 500;
}

/* Navigation */
.nav-link {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal-700);
    transition: all 0.3s ease;
    position: relative;
    border-radius: var(--radius-sm);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: var(--radius-pill);
}

.nav-link:hover,
.nav-link.nav-active {
    color: var(--gold-600);
}

.nav-link:hover::after,
.nav-link.nav-active::after {
    width: 60%;
}

.mobile-nav-link {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal-700);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(201, 169, 98, 0.15);
    color: var(--gold-600);
}

.footer-link {
    font-size: 0.875rem;
    color: rgba(250, 247, 242, 0.7);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-400);
    padding-left: 0.5rem;
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-900);
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.btn-gold:hover::before { opacity: 1; }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-100);
    background: transparent;
    border: 1.5px solid rgba(250, 247, 242, 0.5);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    background: rgba(250, 247, 242, 0.12);
    border-color: var(--gold-400);
    color: var(--gold-400);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-800);
    background: rgba(255, 255, 255, 0.5);
    border: 1.5px solid rgba(201, 169, 98, 0.45);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-outline-dark:hover {
    border-color: var(--gold-500);
    color: var(--gold-700);
    background: rgba(201, 169, 98, 0.1);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active img { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 22, 16, 0.75) 0%,
        rgba(44, 36, 22, 0.45) 50%,
        rgba(26, 22, 16, 0.7) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding-bottom: 5rem;
}

/* Slider controls — bottom bar (sample-inspired) */
.slider-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem 1.75rem;
    background: linear-gradient(to top, rgba(26, 22, 16, 0.85) 0%, rgba(26, 22, 16, 0.4) 70%, transparent 100%);
}

.slider-nav {
    display: flex;
    gap: 0.625rem;
    align-items: center;
}

.slider-dot {
    width: 2.5rem;
    height: 4px;
    background: rgba(250, 247, 242, 0.25);
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: var(--radius-pill);
}

.slider-dot.active {
    background: var(--gold-400);
    width: 3.5rem;
}

.slider-arrow {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 22, 16, 0.6);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    color: var(--gold-300);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: rgba(201, 169, 98, 0.35);
    border-color: var(--gold-400);
    color: var(--cream-50);
    transform: scale(1.05);
}

/* Section typography */
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 1rem;
    padding: 0.35rem 0.875rem;
    background: rgba(201, 169, 98, 0.12);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: var(--radius-pill);
}

.section-block-dark .section-label {
    color: var(--gold-300);
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal-800);
}

.section-block-dark .section-title {
    color: var(--cream-50);
}

.section-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold-700);
    line-height: 1.4;
}

.gold-divider {
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    margin: 1.5rem 0;
    border-radius: var(--radius-pill);
}

.gold-divider-center {
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    margin: 1.5rem auto;
    border-radius: var(--radius-pill);
}

/* Stats band — distinct dark redesign */
.stats-band {
    position: relative;
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--charcoal-900) 0%, #2A2318 40%, var(--charcoal-800) 100%);
    border-top: 3px solid var(--gold-500);
    border-bottom: 3px solid var(--gold-500);
    margin-top: -1.5rem;
    z-index: 5;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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='%23C9A962' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(26, 22, 16, 0.6);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-color: var(--gold-400);
    background: rgba(44, 36, 22, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.stat-card-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold-400);
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold-400);
    line-height: 1;
}

.stat-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232, 213, 163, 0.85);
    margin-top: 0.75rem;
}

/* Property Cards */
.property-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.property-card .property-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.property-card .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-image img { transform: scale(1.08); }

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(201, 169, 98, 0.95);
    color: var(--charcoal-900);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 60%, #3A3228 100%);
    overflow: hidden;
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-400), var(--gold-500), transparent);
}

.page-hero .section-label {
    color: var(--gold-300);
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.page-hero .section-title {
    color: var(--cream-50);
}

.page-hero p {
    color: rgba(232, 213, 163, 0.8);
}

.page-hero .gold-divider {
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 50%, var(--charcoal-900) 100%);
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 2rem 1.5rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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='%23C9A962' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Forms */
.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--charcoal-800);
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(201, 169, 98, 0.35);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    background: #fff;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.form-input::placeholder { color: rgba(61, 52, 37, 0.4); }

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-700);
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Quote Block */
.quote-block {
    position: relative;
    padding: 2.5rem;
    border-left: 4px solid var(--gold-500);
    background: rgba(201, 169, 98, 0.08);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    border: 1.5px solid rgba(201, 169, 98, 0.25);
    border-left: 4px solid var(--gold-500);
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5rem;
    color: rgba(201, 169, 98, 0.2);
    line-height: 1;
}

/* Service Icon */
.service-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.18), rgba(212, 175, 55, 0.1));
    border: 1.5px solid rgba(201, 169, 98, 0.4);
    border-radius: var(--radius-md);
    color: var(--gold-600);
    margin-bottom: 1.5rem;
}

/* Flash Messages */
.flash-message {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid;
}

.flash-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #166534;
}

.flash-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #991b1b;
}

/* Filter Tabs */
.filter-tab {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal-700);
    background: rgba(255, 255, 255, 0.6);
    border: 1.5px solid rgba(201, 169, 98, 0.35);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.filter-tab:hover,
.filter-tab.active {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--charcoal-900);
    border-color: transparent;
}

/* Content card with image rounded */
.content-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--card-border);
    box-shadow: var(--card-shadow);
}

.content-img-wrap img {
    width: 100%;
    display: block;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-200); border-radius: 4px; }
::-webkit-scrollbar-thumb { background: var(--gold-500); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-600); }

/* Responsive */
@media (max-width: 768px) {
    .glass-nav .max-w-7xl {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .hero-slider {
        min-height: 520px;
        max-height: 720px;
        border-bottom-left-radius: var(--radius-lg);
        border-bottom-right-radius: var(--radius-lg);
    }

    .hero-content {
        padding-bottom: 6.5rem;
        align-items: flex-start;
        padding-top: 6rem;
    }

    .slider-controls-bar {
        padding: 1rem 1rem 1.25rem;
        gap: 0.75rem;
    }

    .slider-arrow {
        width: 2.25rem;
        height: 2.25rem;
    }

    .slider-dot { width: 1.75rem; }
    .slider-dot.active { width: 2.5rem; }

    .stat-number { font-size: 2.25rem; }

    .section-block,
    .section-block-alt,
    .section-block-warm {
        padding: 3.5rem 0;
    }

    .cta-section {
        margin: 1rem;
        border-radius: var(--radius-lg);
    }
}

.img-placeholder {
    background: linear-gradient(135deg, var(--cream-300) 0%, var(--cream-400) 50%, var(--gold-400) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-700);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    border-radius: var(--radius-md);
}
