/*
Theme Name: PRYVAT V3 - São Paulo Premium
Author: Senior Dev
Description: Burgundy wine luxury escort directory for São Paulo's elite neighborhoods. Deep Red + Champagne color scheme. International executive appeal.
Version: 3.5 - São Paulo Burgundy Edition
*/

/* ========================================================================
   BURGUNDY WINE + CHAMPAGNE - SOPHISTICATED LUXURY PALETTE
   ======================================================================== */
:root {
    /* Primary Colors - Deep Burgundy Sophistication */
    --primary-black: #2a0f0d;
    --primary-text: #FFFDE1;
    --secondary-text: #d4b896;
    --light-text: #b89876;
    
    /* Burgundy & Red Accents */
    --gold-primary: #8C1007;
    --gold-light: #a62820;
    --gold-dark: #3E0703;
    --gold-shadow: rgba(140, 16, 7, 0.25);
    
    --platinum: #FFFDE1;
    --platinum-light: #ffffee;
    --ocean-blue: #8C1007;
    
    /* Burgundy Dark Background Palette */
    --bg-body: #2a0f0d;
    --bg-card: #3E0703;
    --bg-hover: #4a1209;
    --bg-footer: #1a0503;
    
    /* Header & Footer - Deep Burgundy */
    --header-bg: #3E0703;
    --header-accent: #8C1007;
    --header-text: #FFFDE1;
    
    /* Shadows - Rich Depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.8);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.9);
    
    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --border-dark: #5a1a10;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Design Polish Colors - São Paulo Burgundy Theme */
    --navy-primary: #3E0703;
    --navy-secondary: #2a0f0d;
    --near-black: #1a0503;
}

/* ========================================================================
   HEADER - BURGUNDY WINE THEME WITH CALLGIRLSP TEXT LOGO
   ======================================================================== */
.site-header {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--header-accent) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(140, 16, 7, 0.4);
    border-bottom: 2px solid var(--header-accent);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Container - Text Only */
.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: block;
    text-decoration: none;
    transition: var(--transition-fast);
}

.site-logo a:hover {
    transform: scale(1.02);
}

/* CALLGIRLSP Text - Gradient Shades */
.site-logo .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFFDE1 0%, #FFD700 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Text Glow Effect */
.site-logo .logo-text::after {
    content: 'CALLGIRLSP';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, rgba(255, 253, 225, 0.3) 0%, rgba(255, 215, 0, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(10px);
    z-index: -1;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.main-menu li a {
    color: var(--header-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--header-text);
    transition: width 0.3s ease;
}

.main-menu li a:hover {
    color: #FFD700;
}

.main-menu li a:hover::after {
    width: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

/* Mobile burger - hidden on desktop */
.sb-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--header-text);
    color: var(--header-text);
    font-size: 1.25rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.sb-toggle:hover {
    background: var(--header-accent);
    border-color: #FFD700;
    color: #FFD700;
}

/* ========================================================================
   RESET & GLOBAL - BURGUNDY LUXURY FOUNDATION
   ======================================================================== */
* { 
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
}

body { 
    background: var(--bg-body);
    color: var(--primary-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale - Modern Executive */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--platinum);
    margin-bottom: 0.75em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.2em; }

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition-smooth);
}

a:hover { 
    color: var(--gold-primary);
}

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

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

/* ========================================================================
   HEADER - ESPRESSO + ROSE GOLD GRADIENT
   ======================================================================== */
.site-header { 
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--near-black) 50%, var(--navy-primary) 100%);
    background-size: 200% 200%;
    animation: subtleShift 10s ease infinite;
    border-bottom: 2px solid var(--platinum);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.15);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Subtle gradient animation */
@keyframes subtleShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.site-header .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.site-logo a { 
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--platinum);
    border: 2px solid var(--platinum);
    padding: 8px 24px;
    transition: var(--transition-smooth);
}

.site-logo a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.3);
}

/* Navigation - Premium Touch */
.main-navigation ul { 
    display: flex; 
    list-style: none; 
}

.main-navigation li { 
    margin-left: 40px; 
}

.main-navigation a { 
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--platinum);
    position: relative;
    padding-bottom: 4px;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--gold-primary);
}

/* ========================================================================
   FILTER BAR - ELEGANT INTERACTION
   ======================================================================== */
.filter-bar { 
    text-align: center; 
    padding: 60px 0 50px;
    background: linear-gradient(180deg, var(--bg-body) 0%, rgba(28, 20, 16, 0) 100%);
}

.filter-select { 
    padding: 16px 28px;
    padding-right: 50px;
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-md);
    min-width: 340px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-text);
    background: var(--bg-card);
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b76e79' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
}

.filter-select:hover {
    border-color: var(--platinum);
    box-shadow: var(--shadow-md);
}

.filter-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px var(--gold-shadow);
}

/* Loading State */
.loading-icon {
    display: none;
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: var(--gold-primary);
}

/* ========================================================================
   GRID SYSTEM - REFINED LAYOUT
   ======================================================================== */
.site-main.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    padding: 0 20px;
}

.grid-sizer, .gutter-sizer { 
    display: none; 
}

.grid-item {
    width: auto;
    margin-bottom: 0;
}

/* ========================================================================
   CARDS - WARM LUXURY DESIGN
   ======================================================================== */
.post-item { 
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-dark);
    position: relative;
}

.post-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--platinum));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

.post-item:hover::before {
    opacity: 1;
}

/* Card Thumbnail */
.post-thumb { 
    overflow: hidden;
    position: relative;
    background: var(--near-black);
}

.post-thumb a {
    display: block;
    position: relative;
}

.post-thumb img { 
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-item:hover .post-thumb img {
    transform: scale(1.05);
}

/* Card Content - Premium Spacing */
.post-item > *:not(.post-thumb) {
    padding-left: 28px;
    padding-right: 28px;
}

.post-title { 
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin: 24px 0 12px 0;
    line-height: 1.4;
    color: var(--platinum);
}

.post-title a {
    background: linear-gradient(to right, var(--gold-primary), var(--gold-primary)) no-repeat;
    background-size: 0 2px;
    background-position: left bottom;
    transition: background-size 0.3s ease;
}

.post-title a:hover {
    background-size: 100% 2px;
}

.cats { 
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

/* Contact Buttons - Refined */
.contact-buttons { 
    display: flex;
    gap: 12px;
    padding: 0 28px 28px 28px;
    justify-content: center;
}

.contact-btn {
    flex: 1;
    padding: 14px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-btn {
    background: var(--ocean-blue);
    color: white;
}

.whatsapp-btn:hover {
    background: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sms-btn {
    background: var(--bg-hover);
    color: var(--platinum);
    border: 1px solid var(--border-dark);
}

.sms-btn:hover {
    background: var(--navy-primary);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

/* ========================================================================
   FOOTER - BURGUNDY WINE THEME
   ======================================================================== */
.bottom-widgets {
    background: var(--bg-card);
    border-top: 1px solid var(--border-dark);
}

.site-footer {
    background: linear-gradient(135deg, var(--header-bg) 0%, #1a0503 100%);
    color: var(--header-text);
    border-top: 3px solid var(--header-accent);
    box-shadow: 0 -4px 20px rgba(140, 16, 7, 0.3);
    padding: 40px 0;
    margin-top: 100px;
}

.footer-widgets {
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-widget h3 {
    color: var(--header-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-primary);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: var(--secondary-text);
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-widget a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid var(--border-dark);
}

.copyright {
    color: var(--header-text);
}

.copyright p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--header-text);
}

.copyright span {
    background: linear-gradient(90deg, #FFFDE1 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.tagline {
    color: var(--secondary-text);
    font-style: italic;
    font-size: 0.85rem;
}

/* ========================================================================
   RESPONSIVE - MOBILE OPTIMIZATION
   ======================================================================== */
@media (max-width: 1024px) {
    .site-main.grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .main-navigation li {
        margin-left: 0;
    }
    
    .site-main.grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .filter-select {
        min-width: 100%;
        width: 100%;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
    }
}

/* ========================================================================
   RESPONSIVE IMAGES - CRITICAL
   ======================================================================== */
article img,
.post img,
.post-content img,
.entry-content img,
.post-thumb img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================================================
   404 PAGE - SEO GATEWAY (DARK LUXURY)
   ======================================================================== */
.error-404-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.error-404-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--near-black) 0%, var(--navy-primary) 100%);
    border-radius: 16px;
    margin-bottom: 60px;
    border: 2px solid var(--border-dark);
}

.error-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--platinum) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 20px;
}

.error-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.search-form-404 {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 12px;
}

.search-input-404 {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid var(--border-dark);
    background: var(--bg-card);
    color: var(--primary-text);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.search-input-404::placeholder {
    color: var(--secondary-text);
}

.search-input-404:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.search-submit-404 {
    padding: 18px 36px;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-submit-404:hover {
    background: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.error-404-locations,
.error-404-posts,
.error-404-newsletter,
.error-404-links {
    margin-bottom: 60px;
}

.error-404-locations h2,
.error-404-posts h2,
.error-404-links h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: var(--platinum);
    text-align: center;
    margin-bottom: 40px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.location-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border-dark);
    border-radius: 12px;
    text-decoration: none;
    color: var(--platinum);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--gold-primary);
    background: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.location-card i {
    color: var(--gold-primary);
    margin-right: 12px;
    font-size: 18px;
}

.location-card .count {
    font-size: 14px;
    color: var(--secondary-text);
    font-weight: 400;
}

.posts-grid-404 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.post-card-404 {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-dark);
}

.post-card-404:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

.post-thumbnail-404 {
    display: block;
    overflow: hidden;
}

.post-thumbnail-404 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card-404:hover .post-thumbnail-404 img {
    transform: scale(1.1);
}

.post-content-404 {
    padding: 20px;
    text-align: center;
}

.post-content-404 h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.post-content-404 h3 a {
    color: var(--platinum);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content-404 h3 a:hover {
    color: var(--gold-primary);
}

.view-profile-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--ocean-blue);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    background: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--near-black) 0%, var(--navy-primary) 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--gold-primary);
}

.newsletter-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: var(--platinum);
    margin-bottom: 15px;
}

.newsletter-box p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--secondary-text);
    margin-bottom: 30px;
}

.newsletter-form-404 {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-input-404 {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-dark);
    background: var(--bg-card);
    color: var(--primary-text);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.newsletter-input-404::placeholder {
    color: var(--secondary-text);
}

.newsletter-input-404:focus {
    outline: none;
    background: var(--bg-hover);
    border-color: var(--gold-primary);
}

.newsletter-btn-404 {
    padding: 16px 32px;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn-404:hover {
    background: var(--gold-primary);
    transform: translateY(-2px);
}

.error-404-cta {
    text-align: center;
    padding: 40px 20px;
}

.back-home-btn {
    display: inline-block;
    padding: 18px 48px;
    background: var(--ocean-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 119, 190, 0.3);
}

.back-home-btn:hover {
    background: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.back-home-btn i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 32px;
    }
    
    .error-description {
        font-size: 16px;
    }
    
    .search-form-404,
    .newsletter-form-404 {
        flex-direction: column;
    }
    
    .search-submit-404,
    .newsletter-btn-404 {
        width: 100%;
    }
    
    .locations-grid,
    .posts-grid-404 {
        grid-template-columns: 1fr;
    }
    
    .error-404-hero {
        padding: 40px 20px;
    }
    
    .newsletter-box {
        padding: 30px 20px;
    }
}

/* ========================================================================
   HEADER & FOOTER GRADIENT UPDATES - ROSE GOLD + BLACK
   Add this to your style.css or create a new file
   ======================================================================== */

/* ========================================================================
   HEADER - ROSE GOLD + BLACK GRADIENT
   ======================================================================== */
.site-header { 
    background: linear-gradient(135deg, #1c1410 0%, #2a211b 25%, #b76e79 50%, #2a211b 75%, #1c1410 100%);
    background-size: 400% 400%;
    animation: roseGoldFlow 15s ease infinite;
    border-bottom: 2px solid #b76e79;
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.3);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Rose gold gradient animation - smooth flowing */
@keyframes roseGoldFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Logo - Enhanced for gradient background */
.site-logo a { 
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f4f1ed;
    border: 2px solid #d4c5b9;
    padding: 8px 24px;
    transition: var(--transition-smooth);
    background: rgba(28, 20, 16, 0.6);
    backdrop-filter: blur(10px);
}

.site-logo a:hover {
    border-color: #b76e79;
    color: #b76e79;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.5);
    background: rgba(28, 20, 16, 0.8);
}

/* Navigation - Enhanced contrast on gradient */
.main-navigation a { 
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f4f1ed;
    position: relative;
    padding-bottom: 4px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #b76e79;
    box-shadow: 0 0 8px rgba(183, 110, 121, 0.6);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation a:hover {
    color: #d4a5ab;
}

/* ========================================================================
   BURGER MENU - HIDE ON DESKTOP, SHOW ON MOBILE
   ======================================================================== */

/* Desktop: Hide burger button completely */
.sb-toggle {
    display: none;
    background: transparent;
    border: 2px solid #d4c5b9;
    color: #f4f1ed;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.sb-toggle:hover {
    border-color: #b76e79;
    color: #b76e79;
    background: rgba(183, 110, 121, 0.1);
}

/* Mobile: Show burger button */
@media (max-width: 768px) {
    .sb-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #1c1410 0%, #2a211b 100%);
        padding: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
        border-bottom: 2px solid #b76e79;
        z-index: 999;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-navigation li {
        margin: 0 0 15px 0;
        width: 100%;
        border-bottom: 1px solid #3a2f28;
        padding-bottom: 15px;
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        font-size: 16px;
        display: block;
        padding: 10px 0;
    }
}

/* ========================================================================
   FOOTER - ROSE GOLD + BLACK GRADIENT
   ======================================================================== */
.site-footer {
    background: linear-gradient(135deg, #0f0c0a 0%, #1c1410 25%, #b76e79 50%, #1c1410 75%, #0f0c0a 100%);
    background-size: 400% 400%;
    animation: roseGoldFlow 15s ease infinite;
    border-top: 2px solid #b76e79;
    box-shadow: 0 -4px 20px rgba(183, 110, 121, 0.3);
    padding: 80px 0 40px;
    margin-top: 100px;
}

/* Footer widgets - Enhanced text contrast */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-widget h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #f4f1ed;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #b76e79;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: #d4c5b9;
    font-size: 15px;
    transition: var(--transition-fast);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-widget a:hover {
    color: #d4a5ab;
    padding-left: 5px;
}

/* Footer bottom - Enhanced contrast */
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #3a2f28;
    color: #9d8b7c;
    font-size: 14px;
}

/* Mobile footer */
@media (max-width: 1024px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .site-footer {
        padding: 60px 0 30px;
    }
}

/* ========================================================================
   ENHANCED CONTRAST FOR ROSE GOLD THEME
   ======================================================================== */

/* Ensure all text has good contrast on gradients */
.site-header *,
.site-footer * {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Remove text shadow from icons */
.site-header i,
.site-footer i {
    text-shadow: none;
}

/* ========================================================================
   HERO SECTION - CENTERED & SEO OPTIMIZED
   Simple, clean, professional - no effects needed
   ======================================================================== */

.hero-section {
    text-align: center;
    margin: 60px auto 50px auto;
    padding: 0 20px;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Title - H1 for SEO */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #f4f1ed;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

/* Hero Description - SEO Content */
.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 400;
    color: #d4c5b9;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero-section {
        margin: 40px auto 30px auto;
        padding: 0 15px;
    }
    
    .hero-title {
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section {
        margin: 50px auto 40px auto;
    }
}

/* ========================================================================
   ENHANCED CARDS - PROFESSIONAL DESIGN
   Rose Gold Accents + Clean Layout
   ======================================================================== */

/* ========================================================================
   CARDS - ENHANCED STRUCTURE
   ======================================================================== */
.post-item { 
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-dark);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b76e79, #d4a5ab);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #b76e79;
}

.post-item:hover::before {
    opacity: 1;
}

/* Card Thumbnail - Enhanced */
.post-thumb { 
    overflow: hidden;
    position: relative;
    background: var(--near-black);
    height: 400px;
}

.post-thumb a {
    display: block;
    position: relative;
    height: 100%;
}

.post-thumb img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-item:hover .post-thumb img {
    transform: scale(1.08);
}

/* Card Content Area - Better Spacing */
.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Post Title - Enhanced */
.post-title { 
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 16px 0;
    line-height: 1.4;
    color: #f4f1ed;
}

.post-title a {
    color: #f4f1ed;
    background: linear-gradient(to right, #b76e79, #b76e79) no-repeat;
    background-size: 0 2px;
    background-position: left bottom;
    transition: background-size 0.3s ease;
}

.post-title a:hover {
    background-size: 100% 2px;
    color: #d4a5ab;
}

/* Post Excerpt - Better Readability */
.post-excerpt {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: #9d8b7c;
    margin-bottom: 20px;
    flex: 1;
}

/* ========================================================================
   CONTACT BUTTONS - PROFESSIONAL DESIGN
   ======================================================================== */
.contact-buttons { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.whatsapp-btn,
.sms-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    text-decoration: none;
}

.whatsapp-btn i,
.sms-btn i {
    font-size: 16px;
}

/* WhatsApp Button - Green to Rose Gold on Hover */
.whatsapp-btn {
    background: #25D366;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #b76e79;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.4);
}

/* SMS Button - Bronze */
.sms-btn {
    background: #8b6f47;
    color: white;
    box-shadow: 0 2px 8px rgba(139, 111, 71, 0.3);
}

.sms-btn:hover {
    background: #b76e79;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.4);
}

/* ========================================================================
   VIEW PROFILE LINK - ELEGANT
   ======================================================================== */
.view-profile {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #3a2f28;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #d4c5b9;
    transition: var(--transition-fast);
}

.profile-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.profile-link:hover {
    color: #b76e79;
}

.profile-link:hover i {
    transform: translateX(4px);
}

/* ========================================================================
   RESPONSIVE - MOBILE OPTIMIZATION
   ======================================================================== */
@media (max-width: 768px) {
    .post-thumb {
        height: 300px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 18px;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .whatsapp-btn,
    .sms-btn {
        padding: 16px 20px;
        font-size: 14px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .post-thumb {
        height: 350px;
    }
}

/* ========================================================================
   GRID ADJUSTMENTS FOR ENHANCED CARDS
   ======================================================================== */
.site-main.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .site-main.grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-main.grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
}

/* ========================================================================
   FOOTER WIDGETS - ENHANCED DESIGN
   Three Columns with Rose Gold Accents
   ======================================================================== */

/* Footer Widgets Container */
.bottom-widgets {
    background: var(--bg-card);
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-dark);
}

/* Three-Column Grid */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Individual Footer Widget */
.footer-widget {
    /* Each column */
}

/* Widget Titles - Rose Gold Accent */
.footer-widget .widget-title,
.footer-widget h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #f4f1ed;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #b76e79;
    position: relative;
}

.footer-widget .widget-title::after,
.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4a5ab;
}

/* Widget Content - Lists */
.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 12px;
    padding-left: 0;
}

.footer-widget a {
    color: #d4c5b9;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-widget a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #b76e79;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-widget a:hover {
    color: #b76e79;
    padding-left: 20px;
}

.footer-widget a:hover::before {
    opacity: 1;
}

/* Widget - Text Content */
.footer-widget p {
    color: #9d8b7c;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Widget - Form Elements (if any) */
.footer-widget input[type="text"],
.footer-widget input[type="email"],
.footer-widget textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-hover);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    color: #f4f1ed;
    font-size: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-widget input:focus,
.footer-widget textarea:focus {
    outline: none;
    border-color: #b76e79;
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.footer-widget button,
.footer-widget input[type="submit"] {
    background: #b76e79;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-widget button:hover,
.footer-widget input[type="submit"]:hover {
    background: #9d5a64;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.3);
}

/* ========================================================================
   FOOTER BOTTOM BAR - ENHANCED
   ======================================================================== */

/* Footer Bottom Container - Matches the gradient from HEADER-FOOTER-GRADIENT.css */
.site-footer {
    /* Gradient already defined in HEADER-FOOTER-GRADIENT.css */
    /* This section adds additional styling */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    max-width: 1280px;
    margin: 0 auto;
}

.copyright {
    text-align: left;
}

.copyright p {
    color: #9d8b7c;
    font-size: 13px;
    margin: 4px 0;
    line-height: 1.6;
}

.copyright .tagline {
    color: #d4c5b9;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Menu (if exists) */
.footer-menu {
    text-align: right;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #9d8b7c;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b76e79;
}

/* ========================================================================
   PAGINATION - PROFESSIONAL DESIGN
   ======================================================================== */

.pagination {
    display: flex;
    justify-content: center;
    margin: 60px 0 80px 0;
    padding: 0 20px;
}

/* WordPress Default Pagination */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: #d4c5b9;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-numbers:hover {
    background: var(--bg-hover);
    border-color: #b76e79;
    color: #b76e79;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.2);
}

/* Current Page */
.page-numbers.current {
    background: linear-gradient(135deg, #b76e79, #d4a5ab);
    border-color: #b76e79;
    color: white;
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.3);
}

/* Prev/Next Links */
.page-numbers.prev,
.page-numbers.next {
    padding: 0 20px;
    font-weight: 700;
}

.page-numbers.prev::before {
    content: '← ';
}

.page-numbers.next::after {
    content: ' →';
}

/* Dots (...) */
.page-numbers.dots {
    border: none;
    background: transparent;
    color: #9d8b7c;
    cursor: default;
}

.page-numbers.dots:hover {
    background: transparent;
    border: none;
    color: #9d8b7c;
    transform: none;
    box-shadow: none;
}

/* ========================================================================
   RESPONSIVE - FOOTER & PAGINATION
   ======================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 30px;
    }
    
    .footer-widget:last-child {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .copyright {
        text-align: center;
    }
    
    .footer-menu {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bottom-widgets {
        padding: 40px 0 30px;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .footer-widget:last-child {
        grid-column: span 1;
    }
    
    .footer-bottom {
        padding: 20px;
    }
    
    .copyright p {
        font-size: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Pagination Mobile */
    .pagination {
        margin: 40px 0 60px 0;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 13px;
    }
    
    .page-numbers.prev,
    .page-numbers.next {
        padding: 0 16px;
    }
}

/* ========================================================================
   SPECIAL WIDGET TYPES - ENHANCED STYLING
   ======================================================================== */

/* Tags Cloud Widget */
.footer-widget .tagcloud a,
.footer-widget .wp-tag-cloud a {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    background: var(--bg-hover);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    color: #9d8b7c;
    font-size: 12px !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-widget .tagcloud a:hover,
.footer-widget .wp-tag-cloud a:hover {
    background: #b76e79;
    border-color: #b76e79;
    color: white;
    transform: translateY(-2px);
}

/* Categories Widget */
.footer-widget .cat-item {
    margin-bottom: 10px;
}

.footer-widget .cat-item a {
    padding-left: 15px;
}

/* Recent Posts Widget */
.footer-widget .recentcomments {
    margin-bottom: 12px;
}

/* Search Widget in Footer */
.footer-widget .search-form {
    display: flex;
    gap: 8px;
}

.footer-widget .search-field {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-hover);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    color: #f4f1ed;
    font-size: 13px;
}

.footer-widget .search-submit {
    padding: 10px 20px;
    background: #b76e79;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-widget .search-submit:hover {
    background: #9d5a64;
}

/* ========================================================================
   WIDGETS - ENHANCED STYLING (Rounded Thumbnails + Clean Layout)
   ======================================================================== */

/* Widget List - Clean Reset */
.pryvat-widget-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Widget Post Item - Flex Layout */
.widget-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dark);
}

.widget-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Widget Thumbnail - Rounded & Fixed Size */
.widget-thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--border-dark);
    transition: all 0.3s ease;
}

.widget-thumb:hover {
    border-color: #b76e79;
    transform: scale(1.05);
}

.widget-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.widget-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Widget Details - Text Content */
.widget-details {
    flex: 1;
    min-width: 0; /* Allows text truncation if needed */
}

.widget-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #d4c5b9;
    line-height: 1.4;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.widget-title:hover {
    color: #b76e79;
}

.widget-meta {
    display: block;
    font-size: 11px;
    color: #9d8b7c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-meta i {
    margin-right: 4px;
    color: #b76e79;
}

/* No Posts Message */
.widget-no-posts {
    color: #9d8b7c;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

/* ========================================================================
   SINGLE POST PAGE - ENHANCED LAYOUT
   ======================================================================== */

/* Single Profile Container */
.site-main.single-profile {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Single Article */
.single-article {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* Single Header - Profile Title */
.single-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #b76e79;
}

.single-post-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #f4f1ed;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Contact Buttons Section - Single Page */
.single-contact-section {
    margin-bottom: 40px;
}

.contact-buttons-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.whatsapp-btn-single,
.sms-btn-single {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.whatsapp-btn-single i,
.sms-btn-single i {
    font-size: 18px;
}

.whatsapp-btn-single {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-single:hover {
    background: #b76e79;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(183, 110, 121, 0.4);
}

.sms-btn-single {
    background: #8b6f47;
    color: white;
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

.sms-btn-single:hover {
    background: #b76e79;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(183, 110, 121, 0.4);
}

/* Entry Content - CENTERED IMAGES + Better Typography */
.entry-content.single-content {
    margin-bottom: 40px;
}

/* Center ALL images in single post content */
.single-content img {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* WordPress alignment classes override */
.single-content .aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

.single-content .alignleft,
.single-content .alignright {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

/* Gallery images */
.single-content .gallery-item img {
    margin: 10px auto;
}

/* Better paragraph spacing in single posts */
.single-content p {
    color: #d4c5b9;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.single-content h2,
.single-content h3,
.single-content h4 {
    color: #f4f1ed;
    margin-top: 30px;
    margin-bottom: 16px;
}

/* Lists in single content */
.single-content ul,
.single-content ol {
    color: #d4c5b9;
    margin-bottom: 20px;
    padding-left: 30px;
}

.single-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Tags Section - Single Page */
.single-tags {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tag-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b76e79;
}

.single-tags a {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-hover);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    color: #9d8b7c;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-tags a:hover {
    background: #b76e79;
    border-color: #b76e79;
    color: white;
    transform: translateY(-2px);
}

/* ========================================================================
   RESPONSIVE - SINGLE POST & WIDGETS
   ======================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .single-article {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-main.single-profile {
        padding: 20px 10px;
    }
    
    .single-article {
        padding: 24px 20px;
    }
    
    .single-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .contact-buttons-single {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .whatsapp-btn-single,
    .sms-btn-single {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .single-content {
        font-size: 15px;
    }
    
    .single-content img {
        margin-top: 16px;
        margin-bottom: 16px;
    }
    
    /* Widget thumbnails on mobile */
    .widget-thumb {
        width: 45px;
        height: 45px;
    }
    
    .widget-title {
        font-size: 12px;
    }
    
    .widget-meta {
        font-size: 10px;
    }
}

/* ========================================================================
   SIDEBAR WIDGETS - BELOW ADS SECTION
   ======================================================================== */

/* If widgets appear in sidebar or below ads */
.widget {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-sm);
}

.widget .widget-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #f4f1ed;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #b76e79;
}

/* Fix widget spacing */
.widget ul {
    margin-bottom: 0;
}

.widget ul li {
    margin-bottom: 0;
}

/* Widget links general styling */
.widget a {
    color: #d4c5b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #b76e79;
}

/* ========================================================================
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Page Article */
.page-article {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #b76e79;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #f4f1ed;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Page Content - CENTERED IMAGES */
.page-content {
    color: #d4c5b9;
    font-size: 16px;
    line-height: 1.8;
}

/* Center ALL images in page content */
.page-content img {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* WordPress alignment classes override */
.page-content .aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

.page-content .alignleft,
.page-content .alignright {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

/* Gallery images */
.page-content .gallery-item img {
    margin: 10px auto;
}

/* Page Content Typography */
.page-content p {
    color: #d4c5b9;
    margin-bottom: 20px;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    color: #f4f1ed;
    margin-top: 30px;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.page-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 2px solid #b76e79;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-content h4 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

/* Lists in page content */
.page-content ul,
.page-content ol {
    color: #d4c5b9;
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Links in page content */
.page-content a {
    color: #b76e79;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: #d4a5ab;
}

/* Blockquotes */
.page-content blockquote {
    border-left: 4px solid #b76e79;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #9d8b7c;
}

/* ========================================================================
   BUTTON HOVER TEXT FIX - WHATSAPP & SMS
   Make text WHITE on hover (visible on rose gold background)
   ======================================================================== */

/* HOMEPAGE CARDS - Button Hover Fix */
.whatsapp-btn:hover,
.sms-btn:hover {
    background: #b76e79;
    color: white !important;  /* Force white text on rose gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.4);
}

.whatsapp-btn:hover span,
.sms-btn:hover span,
.whatsapp-btn:hover i,
.sms-btn:hover i {
    color: white !important;  /* Ensure icons and text are white */
}

/* SINGLE POST PAGE - Button Hover Fix */
.whatsapp-btn-single:hover,
.sms-btn-single:hover {
    background: #b76e79;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(183, 110, 121, 0.4);
}

.whatsapp-btn-single:hover span,
.sms-btn-single:hover span,
.whatsapp-btn-single:hover i,
.sms-btn-single:hover i {
    color: white !important;
}

/* OLD BUTTON CLASSES (if still used) - Fix them too */
.whats-app-button:hover,
.sms-button-send:hover {
    background: #b76e79;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.4);
}

.whats-app-button:hover i,
.sms-button-send:hover i {
    color: white !important;
}

/* Ensure default button state has good contrast too */
.whatsapp-btn,
.whatsapp-btn-single,
.whats-app-button {
    color: white;  /* White text on green */
}

.sms-btn,
.sms-btn-single,
.sms-button-send {
    color: white;  /* White text on bronze */
}

.whatsapp-btn span,
.whatsapp-btn-single span,
.whats-app-button span,
.sms-btn span,
.sms-btn-single span,
.sms-button-send span {
    color: white;  /* Ensure span text is white */
}

.whatsapp-btn i,
.whatsapp-btn-single i,
.whats-app-button i,
.sms-btn i,
.sms-btn-single i,
.sms-button-send i {
    color: white;  /* Ensure icons are white */
}

/* ========================================================================
   RESPONSIVE - PAGES
   ======================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .page-article {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-main.single-page {
        padding: 20px 10px;
    }
    
    .page-article {
        padding: 24px 20px;
    }
    
    .page-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .page-content {
        font-size: 15px;
    }
    
    .page-content img {
        margin-top: 16px;
        margin-bottom: 16px;
    }
    
    .page-content h2 {
        margin-top: 24px;
    }
}

/* ========================================================================
   SINGLE POST IMAGES - COMPLETE RESPONSIVE FIX
   Add this to your style.css
   ======================================================================== */

/* Force ALL images in single posts to be responsive and centered */
.single-post-images img,
.single-content img,
.entry-content img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Specific class for responsive images */
.responsive-image {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Override ANY inline styles on images */
.single-content img[style],
.entry-content img[style] {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
}

/* WordPress alignment classes override */
.single-content .aligncenter,
.entry-content .aligncenter {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.single-content .alignleft,
.single-content .alignright,
.entry-content .alignleft,
.entry-content .alignright {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    max-width: 100% !important;
}

/* Gallery images */
.single-content .gallery-item img,
.entry-content .gallery-item img {
    margin: 10px auto !important;
    max-width: 100% !important;
    height: auto !important;
}

/* WordPress figure elements */
.single-content figure,
.entry-content figure {
    margin: 20px auto !important;
    max-width: 100% !important;
}

.single-content figure img,
.entry-content figure img {
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .single-post-images img,
    .single-content img,
    .entry-content img {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}

/* Prevent images from breaking layout */
.single-article {
    overflow-x: hidden;
}

.single-content,
.entry-content {
    overflow-x: hidden;
}

/* ========================================================================
   RELATED POSTS - SIMPLE & CLEAN
   Works with existing HTML structure
   ======================================================================== */

/* Container */
.related-posts {
    margin-top: 80px;
    padding: 50px 40px;
    background: #2a211b;
    border-radius: 12px;
    border: 1px solid #3a2f28;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Section Title */
.related-posts .section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #f4f1ed;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

/* Rose gold underline on title */
.related-posts .section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b76e79 0%, #d4a5ab 100%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(183, 110, 121, 0.5);
}

/* Grid */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.related-item {
    background: #1c1410;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #3a2f28;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.3);
    border-color: #b76e79;
}

.related-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Image */
.related-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.related-item:hover img {
    transform: scale(1.05);
}

/* Title */
.related-item .related-title {
    display: block;
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f4f1ed;
    text-align: center;
    transition: color 0.3s ease;
}

.related-item:hover .related-title {
    color: #d4a5ab;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .related-posts {
        padding: 40px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-posts {
        margin-top: 60px;
        padding: 30px 20px;
    }
    
    .related-posts .section-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .related-item .related-title {
        font-size: 0.95rem;
    }
}

/* ========================================================================
   MOBILE RESPONSIVE - BURGUNDY TEXT LOGO
   ======================================================================== */
@media (max-width: 768px) {
    .site-header .container {
        padding: 12px 20px;
    }
    
    /* Text logo smaller on mobile */
    .site-logo .logo-text {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    /* Hide desktop navigation */
    .main-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, var(--header-bg) 0%, var(--header-accent) 100%);
        z-index: 999;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }
    
    .main-navigation.toggled {
        display: block !important;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .main-menu li {
        border-bottom: 1px solid rgba(255, 253, 225, 0.1);
    }
    
    .main-menu li a {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
    }
    
    /* Show burger on mobile */
    .sb-toggle {
        display: block;
    }
    
    /* Lock body scroll when menu open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Footer responsive */
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================================================
   PRYVAT ONYX V3 - LUXURY HEADER SYSTEM
   Focus: Glassmorphism, Premium Typography, Mobile Fullscreen Overlay
   ======================================================================== */

/* 1. LAYOUT & GLASSMORPHISM */
.site-header-luxury {
    background: rgba(26, 5, 3, 0.92); /* Deep Burgundy Base */
    backdrop-filter: blur(15px);     /* Modern "Glass" effect */
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 184, 150, 0.1); /* Subtle Gold Border */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 2. THE BRANDING (LOGO) */
.onyx-logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 6px;
    color: #FFFDE1; /* Champagne Gold */
    text-transform: uppercase;
}

.logo-accent {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    color: #8C1007; /* Deep Blood Red */
    font-size: 1.3rem;
    margin-top: -5px;
}

.logo-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: #d4b896;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 5px;
    opacity: 0.7;
}

/* 3. NAVIGATION (DESKTOP) */
.onyx-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.onyx-nav-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #FFFDE1;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.onyx-nav-menu li a:hover {
    color: #d4b896;
}

.onyx-nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4b896;
    transition: width 0.3s ease;
}

.onyx-nav-menu li a:hover::after {
    width: 100%;
}

/* 4. CONCIERGE CTA */
.onyx-header-actions {
    display: flex;
    align-items: center;
}

.concierge-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(212, 184, 150, 0.05);
    border: 1px solid rgba(212, 184, 150, 0.2);
    border-radius: 50px; /* Pill shape */
    color: #FFFDE1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.concierge-link:hover {
    background: rgba(110, 10, 4, 0.1);
    border-color: #8C1007;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.concierge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* 5. MOBILE OVERLAY MENU */
.onyx-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a0503;
    z-index: 9999;
    display: none; /* Controlled by JS */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-nav-links ul {
    list-style: none;
}

.mobile-nav-links li a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #FFFDE1;
    display: block;
    margin-bottom: 20px;
}

/* 6. RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
    .onyx-navigation { display: none; } /* Hide desktop nav */
    .header-container { padding: 0 20px; }
    .logo-main { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .concierge-text { display: none; } /* Show only icon on small phones */
    .concierge-link { padding: 12px; }
}

/* ========================================================================
   ONYX V3 HERO - EDITORIAL DESIGN
   ======================================================================== */
.onyx-v3-hero {
    padding: 120px 0 80px;
    background: #1a0503; /* Matches Burgundy Palette */
    overflow: hidden;
}

.hero-text-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* Prestige Badge */
.onyx-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: #8C1007;
}

.badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d4b896;
}

/* Title Overhaul */
.hero-main-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    line-height: 0.9;
}

.title-serif {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #FFFDE1;
    margin-left: -20px; /* Editorial "Overlap" look */
}

.title-sans {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 4rem);
    color: #8C1007;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-top: -10px;
}

/* Lead Text */
.hero-editorial-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #FFFDE1;
    margin-bottom: 20px;
}

.hero-editorial-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #9d8b7c;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Premium Button */
.onyx-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #8C1007;
    padding: 20px 40px;
    border-radius: 4px;
    text-decoration: none;
    color: #FFFDE1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 253, 225, 0.1);
}

.onyx-btn-primary:hover {
    background: #FFFDE1;
    color: #1a0503;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.discretion-note {
    display: block;
    margin-top: 20px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #5a1a10;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .onyx-v3-hero { padding: 80px 0 60px; }
    .title-serif { font-size: 3.5rem; margin-left: 0; }
    .title-sans { font-size: 2rem; }
}

/* ========================================================================
   ONYX V3 - SECTION HEADING (SEO ANCHOR)
   ======================================================================== */
.section-heading {
    text-align: center;
    max-width: 900px;
    margin: 80px auto 60px; /* Generous spacing for "air" */
    padding: 0 20px;
    position: relative;
}

/* Subtle Divider Line */
.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #8C1007; /* Burgundy */
    margin: 30px auto 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #FFFDE1; /* Champagne */
    margin-bottom: 15px;
    text-transform: none; /* Serifs look better in Sentence case */
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #9d8b7c; /* Muted Bronze */
    letter-spacing: 1px;
}

.section-subtitle strong {
    color: #d4b896; /* Highlighted Neighborhoods */
    font-weight: 600;
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .section-heading {
        margin: 50px auto 40px;
    }
}