/*
Theme Name: Will Domico Tattoo
Theme URI: https://willdomico.com
Author: SEO Locale
Author URI: https://seolocale.com
Description: A custom glassmorphism theme for Will Domico Tattoo - featuring bento grids, noise textures, and local SEO optimization. Built for performance and Google dominance.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: willdomico
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, portfolio, one-page
*/

/* ==========================================================================
   CSS VARIABLES - Core Design System
   ========================================================================== */
:root {
    /* Colors */
    --bg-deep: #020202;
    --bg-elevated: #0a0a0a;
    --text-white: #ffffff;
    --text-muted: #a1a1aa;
    --gold-primary: #C5A059;
    --gold-highlight: #e6c785;
    --maroon: #722F37;
    --maroon-light: #8B3A42;
    --maroon-dark: #5C252C;

    /* Glass Effects */
    --glass-bg: rgba(20, 20, 20, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-highlight: 1px solid var(--gold-primary);
    --glass-blur: blur(24px);

    /* Layout */
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 10px;
    --container-width: 1200px;
    --section-gap: 8rem;
    --top-bar-height: 40px;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-nav: 'Bebas Neue', 'Impact', sans-serif;
    --font-size-hero: clamp(3rem, 8vw, 6rem);
    --font-size-h1: clamp(2.5rem, 5vw, 4rem);
    --font-size-h2: clamp(2rem, 4vw, 3rem);
}

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

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

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==========================================================================
   BACKGROUND TEXTURES & EFFECTS
   ========================================================================== */
.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #4a0404;
    top: -10%;
    right: -10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gold-primary);
    bottom: 20%;
    left: -5%;
    opacity: 0.1;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.2;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.gold-accent {
    color: var(--gold-primary);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

strong {
    color: var(--text-white);
    font-weight: 600;
}

/* ==========================================================================
   LAYOUT & CONTAINERS
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section {
    margin-bottom: var(--section-gap);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

/* Section Dividers */
.section-divider {
    position: relative;
    padding-top: 4rem;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-divider--wide::before {
    width: 200px;
}

.section-divider--maroon::before {
    background: linear-gradient(90deg, transparent, var(--maroon), var(--gold-primary), var(--maroon), transparent);
}

/* Section with extra padding */
.section--padded {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background: linear-gradient(90deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    margin-top: -40px;
    overflow: hidden;
}

.top-bar__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar__icon {
    animation: pulse-glow 2s ease-in-out infinite;
}

.top-bar__text {
    color: var(--text-white);
}

.top-bar__cta {
    color: var(--gold-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.top-bar__cta:hover {
    color: var(--gold-highlight);
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Adjust body padding for top bar */
body.has-top-bar {
    padding-top: var(--top-bar-height);
}

body.has-top-bar .site-nav {
}

body.has-top-bar .location-hero,
body.has-top-bar .hero {
    margin-top: calc(var(--top-bar-height) * -1);
    padding-top: calc(var(--top-bar-height) + 8rem);
}

/* ==========================================================================
   MARQUEE / TICKER
   ========================================================================== */
.marquee-section {
    background: var(--bg-elevated);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-item svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.marquee-item--highlight {
    color: var(--gold-primary);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SOCIAL PROOF BADGES - HIGH IMPACT DESIGN
   ========================================================================== */
.proof-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
}

.proof-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 140px;
}

/* Shine sweep on hover */
.proof-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.1), transparent);
    transition: left 0.5s ease;
}

/* Glow effect */
.proof-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.proof-badge:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(197, 160, 89, 0.15);
}

.proof-badge:hover::before {
    left: 100%;
}

.proof-badge:hover::after {
    opacity: 1;
}

.proof-badge__icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(107, 28, 47, 0.15) 100%);
    border-radius: 50%;
    color: var(--gold-primary);
    z-index: 1;
    transition: all 0.4s ease;
}

/* Animated ring around icon */
.proof-badge__icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold-primary);
    border-right-color: var(--gold-primary);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.proof-badge:hover .proof-badge__icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.25) 0%, rgba(107, 28, 47, 0.25) 100%);
}

.proof-badge:hover .proof-badge__icon::before {
    animation: spinRing 2s linear infinite;
    opacity: 1;
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.proof-badge__icon svg {
    width: 22px;
    height: 22px;
}

.proof-badge__text {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.proof-badge__text strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

/* Featured badge - enhanced */
.proof-badge--featured {
    background: linear-gradient(135deg, rgba(107, 28, 47, 0.3) 0%, rgba(20, 20, 20, 0.9) 50%, rgba(197, 160, 89, 0.1) 100%);
    border-color: var(--maroon);
}

.proof-badge--featured .proof-badge__icon {
    background: linear-gradient(135deg, rgba(107, 28, 47, 0.3) 0%, rgba(197, 160, 89, 0.2) 100%);
}

.proof-badge--featured .proof-badge__icon::before {
    border-top-color: var(--maroon-light);
    border-right-color: var(--gold-primary);
}

.proof-badge--featured .proof-badge__text strong {
    background: linear-gradient(135deg, var(--maroon-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   GLASS COMPONENTS
   ========================================================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.glass-card--hover:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION - Centered Logo Split Nav
   ========================================================================== */
.site-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1200px;
    z-index: 1000;
}

.site-nav--centered .nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 0;
    position: relative;
}

/* Nav Menus - Left and Right */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu--left {
    margin-right: auto;
}

.nav-menu--right {
    margin-left: auto;
}

.nav-menu li {
    position: relative;
}

/* Centered Logo - hangs over top and bottom of nav bar */
.nav-logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

/* Target WordPress custom logo specifically */
.nav-logo-center .custom-logo-link {
    display: block;
    line-height: 0;
}

.nav-logo-center .custom-logo-link img,
.nav-logo-center .custom-logo,
.nav-logo-center img {
    height: 150px !important;
    width: auto !important;
    max-width: 300px !important;
    max-height: 150px !important;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo-center:hover .custom-logo-link img,
.nav-logo-center:hover .custom-logo,
.nav-logo-center:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(197, 160, 89, 0.3));
}

.nav-logo-center .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-logo-center .logo-text small {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-white);
}

/* Nav Links */
.nav-link {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-nav);
    font-size: 1.35rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

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

.nav-link.active {
    color: var(--gold-primary);
}

.nav-link.active::after {
    width: 70%;
}

/* Nav CTA Button */
.nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gold-primary);
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold-primary);
    border-radius: 0;
    font-family: var(--font-nav);
    font-size: 1.35rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-cta:hover {
    color: var(--bg-deep);
    text-shadow: none;
}

.nav-cta:hover::before {
    left: 0;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 20;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-top: none;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.nav-mobile__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.nav-mobile__menu li {
    margin: 0.5rem 0;
}

.nav-mobile__menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-nav);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.nav-mobile__menu .nav-cta {
    margin-top: 1rem;
    display: inline-flex;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-logo-center .custom-logo-link img,
    .nav-logo-center .custom-logo,
    .nav-logo-center img {
        height: 150px !important;
        max-height: 150px !important;
        max-width: 300px !important;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.5rem;
    }

    .nav-cta {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 900px) {
    .site-nav {
        top: 0;
        width: 100%;
        left: 0;
        transform: none;
        border-radius: 0;
    }

    .site-nav--centered .nav-container {
        justify-content: space-between;
        padding: 0.5rem 1rem;
        border-radius: 0;
    }

    .nav-menu--left,
    .nav-menu--right {
        display: none;
    }

    .nav-logo-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        padding: 0;
    }

    .nav-logo-center .custom-logo-link img,
    .nav-logo-center .custom-logo,
    .nav-logo-center img {
        height: 90px !important;
        max-height: 90px !important;
        max-width: 180px !important;
    }

    .nav-toggle {
        display: block;
    }

    .nav-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-logo-center .custom-logo-link img,
    .nav-logo-center .custom-logo,
    .nav-logo-center img {
        height: 70px !important;
        max-height: 70px !important;
        max-width: 140px !important;
    }
}

/* Back Link (for sub pages) */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-nav);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--gold-primary);
    gap: 0.75rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(114, 47, 55, 0.2);
    border: 1px solid var(--maroon);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.hero-badge__dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Hero Title - Big Impact */
.hero-title,
.hero h1 {
    font-size: var(--font-size-hero);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title em,
.hero h1 em,
.hero h1 i {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-primary);
}

/* Hero Subtitle */
.hero-subtitle,
.hero-description {
    font-size: 1.25rem;
    max-width: 550px;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero .proof-badges {
    justify-content: flex-start;
    padding: 0;
}

/* Local Landing Page Hero */
.local-hero {
    padding: 12rem 0 6rem 0;
    text-align: center;
}

.local-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.local-hero h1 i {
    font-style: italic;
    color: var(--gold-primary);
}

.local-hero p {
    max-width: 600px;
    margin: 0 auto;
}

/* Homepage Masonry Hero */
.hero--masonry {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-deep);
    overflow: hidden;
    padding-top: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(2, 2, 2, 1) 0%,
        rgba(2, 2, 2, 0.95) 40%,
        rgba(2, 2, 2, 0.6) 70%,
        rgba(2, 2, 2, 0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero--masonry .hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 8rem 0 4rem 0;
    width: 100%;
    max-width: 50%;
}

.hero--masonry .hero-text {
    max-width: 600px;
}

.hero--masonry .hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    background: linear-gradient(135deg, var(--text-white) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero--masonry .hero-title em {
    -webkit-text-fill-color: var(--gold-primary);
}

.hero--masonry .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.hero--masonry .hero-actions {
    justify-content: flex-start;
}

.hero-actions .cta-button,
.hero-actions .btn-secondary {
    margin-top: 0;
}

.hero--masonry .proof-badges {
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem 0 0;
}

.hero--masonry .proof-badge {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Homepage Masonry Grid */
.hero-masonry--home {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    z-index: 0;
    overflow: hidden;
}

/* Responsive Homepage Hero */
@media (max-width: 1024px) {
    .hero--masonry .hero-content {
        max-width: 100%;
    }

    .hero-masonry--home {
        width: 100%;
        opacity: 0.25;
    }

    .hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(2, 2, 2, 0.9) 0%,
            rgba(2, 2, 2, 0.7) 50%,
            rgba(2, 2, 2, 0.95) 100%
        );
    }

    .hero--masonry .hero-content {
        text-align: center;
        padding: 10rem 1rem 4rem;
        justify-content: center;
    }

    .hero--masonry .hero-text {
        max-width: 100%;
    }

    .hero--masonry .hero-actions {
        justify-content: center;
    }

    .hero--masonry .proof-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile hero background - hidden on desktop */
.hero__mobile-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-masonry--home {
        display: none;
    }

    .hero__mobile-bg {
        display: block;
    }

    .hero--masonry .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}

/* ==========================================================================
   BENTO GRID - MODERN INTERACTIVE DESIGN
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-card);
}

/* Shine effect overlay */
.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    z-index: 10;
    pointer-events: none;
}

/* Gradient overlay for depth */
.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.85) 100%
    );
    opacity: 0.5;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.bento-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(197, 160, 89, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bento-item:hover::before {
    left: 150%;
}

.bento-item:hover::after {
    opacity: 1;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.bento-item:hover img {
    filter: grayscale(0%) brightness(1.05) saturate(1.1);
    transform: scale(1.1);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.wide {
    grid-column: span 2;
}

.bento-item.tall {
    grid-row: span 2;
}

/* Floating animation for large items */
@keyframes bentoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.bento-item.large {
    animation: bentoFloat 6s ease-in-out infinite;
}

.bento-item.large:hover {
    animation: none;
}

.overlay-label {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: linear-gradient(135deg, rgba(107, 28, 47, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold-primary);
    z-index: 5;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.bento-item:hover .overlay-label {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bento-item .full-link {
    position: absolute;
    inset: 0;
    z-index: 6;
}

/* ==========================================================================
   SPLIT CONTENT SECTIONS
   ========================================================================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--section-gap);
}

.split-section--reverse {
    direction: rtl;
}

.split-section--reverse > * {
    direction: ltr;
}

.split-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.split-img:hover {
    filter: grayscale(0%);
}

/* ==========================================================================
   MAP SECTION
   ========================================================================== */
.map-container {
    width: 100%;
    height: 400px;
    background: #1a1a1a;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--glass-border);
    position: relative;
    margin-bottom: var(--section-gap);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* ==========================================================================
   AREA TAGS / LOCAL KEYWORDS
   ========================================================================== */
.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    list-style: none;
}

.area-tag {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.area-tag:hover,
.area-tag a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--text-muted);
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */
.cta-button,
.btn-primary {
    display: inline-block;
    background: var(--gold-primary);
    color: #000;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.btn-primary:hover {
    background: var(--text-white);
    color: #000;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-white);
    padding: 1rem 3rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Maroon CTA Button */
.cta-button--maroon,
.btn-maroon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    color: var(--text-white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button--maroon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--maroon-light) 0%, var(--maroon) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button--maroon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.4);
}

.cta-button--maroon:hover::before {
    opacity: 1;
}

.cta-button--maroon span,
.cta-button--maroon svg {
    position: relative;
    z-index: 1;
}

/* XL Button */
.cta-button--xl {
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   LOCATION CARDS
   ========================================================================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

.location-card h3 {
    margin-bottom: 0.5rem;
}

.location-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta {
    margin-bottom: 3rem;
}

.footer-cta h2 {
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
    border-color: var(--gold-primary);
}

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

/* ==========================================================================
   PORTFOLIO SINGLE
   ========================================================================== */
.portfolio-single {
    padding-top: 10rem;
}

.portfolio-hero-img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}

.portfolio-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.portfolio-meta-item {
    text-align: left;
}

.portfolio-meta-label {
    font-size: 0.75rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-section--reverse {
        direction: ltr;
    }

    .split-img {
        height: 300px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 1rem;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(197, 160, 89, 0.15);
        border-radius: var(--radius-md);
        padding: 1.5rem;
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.25rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--gold-primary);
        background: rgba(197, 160, 89, 0.05);
        text-shadow: none;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 5rem;
        --font-size-hero: clamp(2.5rem, 10vw, 4rem);
    }

    .container {
        padding: 0 1rem;
    }

    /* Top Bar Mobile */
    .top-bar {
        height: auto;
        padding: 0.5rem 1rem;
    }

    .top-bar__content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .top-bar__separator {
        display: none;
    }

    /* Marquee Mobile */
    .marquee-section {
        padding: 1rem 0;
    }

    .marquee-item {
        font-size: 0.8rem;
        gap: 0.5rem;
        letter-spacing: 1px;
    }

    .marquee-content {
        gap: 2rem;
    }

    /* Proof Badges Mobile */
    .proof-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        padding: 1.5rem 0;
    }

    .proof-badge {
        padding: 1rem 1.25rem;
        min-width: auto;
        flex: 0 1 auto;
    }

    .proof-badge__icon {
        width: 40px;
        height: 40px;
    }

    .proof-badge__icon::before {
        width: 50px;
        height: 50px;
    }

    .proof-badge__icon svg {
        width: 18px;
        height: 18px;
    }

    .proof-badge__text strong {
        font-size: 1.1rem;
    }

    .proof-badge__text span {
        font-size: 0.65rem;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

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

    .bento-item.large,
    .bento-item.wide {
        grid-column: span 1;
    }

    .hero {
        min-height: auto;
        padding: 10rem 0 4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button--xl {
        padding: 1.25rem 2rem;
        font-size: 0.95rem;
        justify-content: center;
    }

    .local-hero {
        padding: 10rem 0 4rem;
    }

    .site-nav {
        width: 95%;
        padding: 0.6rem 1.5rem;
    }

    .area-list {
        justify-content: center;
    }
}

/* ==========================================================================
   WORDPRESS SPECIFIC
   ========================================================================== */
.wp-block-image img {
    border-radius: var(--radius-md);
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-3 { margin-top: 3rem; }
.mt-section { margin-top: var(--section-gap); }
.mb-section { margin-bottom: var(--section-gap); }

/* ==========================================================================
   FLOATING CTA BUTTON
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-primary);
    color: #000;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-cta:hover {
    background: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(197, 160, 89, 0.4);
}

.floating-cta svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   LOCATION HERO (Advanced)
   ========================================================================== */
.location-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.location-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.location-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.location-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 2, 2, 0.7) 0%,
        rgba(2, 2, 2, 0.5) 50%,
        rgba(2, 2, 2, 0.9) 100%
    );
}

.location-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 0 4rem;
}

.location-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.location-hero__title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.location-hero__city {
    color: var(--gold-primary);
}

.location-hero__city i {
    font-style: italic;
    opacity: 0.7;
}

.location-hero__desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
}

.location-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-button--large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    font-size: 0.9rem;
}

/* Match secondary button height to large CTA */
.btn-secondary--large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    font-size: 0.9rem;
}

.cta-button--large svg {
    transition: transform 0.3s ease;
}

.cta-button--large:hover svg {
    transform: translateX(5px);
}

.location-hero__meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.meta-item svg {
    color: var(--gold-primary);
}

/* Masonry Hero Variant */
.location-hero--masonry {
    background: var(--bg-deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 100vh;
}

.location-hero--masonry .location-hero__overlay {
    background: linear-gradient(
        90deg,
        rgba(2, 2, 2, 1) 0%,
        rgba(2, 2, 2, 0.95) 35%,
        rgba(2, 2, 2, 0.7) 60%,
        rgba(2, 2, 2, 0.3) 100%
    );
    z-index: 1;
}

.location-hero--masonry .location-hero__content {
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem 2rem;
    text-align: left;
}

.location-hero--masonry .location-hero__text {
    max-width: 600px;
}

.location-hero--masonry .location-hero__desc {
    margin: 0 0 2rem;
}

.location-hero--masonry .location-hero__actions {
    justify-content: flex-start;
}

.location-hero--masonry .location-hero__meta {
    justify-content: flex-start;
}

/* Hero Masonry Grid */
.hero-masonry {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    z-index: 0;
    overflow: hidden;
}

.hero-masonry__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-masonry__column--1 {
    animation: masonryScroll1 25s linear infinite;
}

.hero-masonry__column--2 {
    animation: masonryScroll2 30s linear infinite;
    margin-top: -100px;
}

.hero-masonry__column--3 {
    animation: masonryScroll1 22s linear infinite;
    margin-top: -50px;
}

@keyframes masonryScroll1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes masonryScroll2 {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.hero-masonry__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.hero-masonry__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(80%) brightness(0.8);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.hero-masonry__item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Pause animation on hover for better UX */
.hero-masonry:hover .hero-masonry__column {
    animation-play-state: paused;
}

/* Responsive Masonry */
@media (max-width: 1024px) {
    .location-hero--masonry {
        grid-template-columns: 1fr;
    }

    .hero-masonry {
        position: absolute;
        width: 100%;
        opacity: 0.3;
    }

    .location-hero--masonry .location-hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(2, 2, 2, 0.85) 0%,
            rgba(2, 2, 2, 0.7) 50%,
            rgba(2, 2, 2, 0.95) 100%
        );
    }

    .location-hero--masonry .location-hero__content {
        text-align: center;
        padding: 8rem 1rem 4rem;
    }

    .location-hero--masonry .location-hero__text {
        max-width: 100%;
    }

    .location-hero--masonry .location-hero__desc {
        margin: 0 auto 2rem;
    }

    .location-hero--masonry .location-hero__actions {
        justify-content: center;
    }

    .location-hero--masonry .location-hero__meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-masonry {
        display: none;
    }

    .location-hero--masonry .location-hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(2, 2, 2, 0.7) 0%,
            rgba(2, 2, 2, 0.5) 50%,
            rgba(2, 2, 2, 0.9) 100%
        );
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

@keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
    background: rgba(197, 160, 89, 0.05);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding: 3rem 0;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-item__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    color: var(--gold-primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-header--large h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header__desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Accent underline for headers */
.section-header--accent h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--maroon) 0%, var(--gold-primary) 100%);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   CONTENT SPLIT (Advanced)
   ========================================================================== */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-split__text h2 {
    margin-bottom: 1.5rem;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.prose strong {
    color: var(--text-white);
}

/* Expandable Content (Read More) */
.prose--expandable {
    position: relative;
}

.prose--expandable .prose__content {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.prose--expandable.is-expanded .prose__content {
    max-height: 2000px;
}

.prose__fade {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg-deep));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.prose--expandable.is-expanded .prose__fade {
    opacity: 0;
}

.prose--expandable.is-short .prose__fade,
.prose--expandable.is-short .prose__toggle {
    display: none;
}

.prose__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--gold-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.prose__toggle:hover {
    color: var(--gold-highlight);
}

.prose__toggle svg {
    transition: transform 0.3s ease;
}

.prose--expandable.is-expanded .prose__toggle svg {
    transform: rotate(180deg);
}

.prose__toggle .toggle-less {
    display: none;
}

.prose--expandable.is-expanded .prose__toggle .toggle-more {
    display: none;
}

.prose--expandable.is-expanded .prose__toggle .toggle-less {
    display: inline;
}

.content-cta {
    margin-top: 2rem;
}

.content-cta__note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.content-cta__note svg {
    color: var(--gold-primary);
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-stack__item {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-stack__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.image-stack:hover .image-stack__item img {
    filter: grayscale(0%);
}

.image-stack__item--back {
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.image-stack__item--front {
    width: 80%;
    height: 85%;
    bottom: 0;
    right: 0;
    padding: 0;
}

/* ==========================================================================
   PORTFOLIO SHOWCASE
   ========================================================================== */
.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
}

.portfolio-showcase__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--glass-border);
}

.portfolio-showcase__item.featured {
    grid-row: span 2;
}

.portfolio-showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.portfolio-showcase__item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.portfolio-showcase__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-showcase__item:hover .portfolio-showcase__overlay {
    transform: translateY(0);
}

.portfolio-showcase__style {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.portfolio-showcase__overlay h3 {
    font-size: 1rem;
    margin: 0;
}

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.3), rgba(197, 160, 89, 0.3), transparent);
}

.process-step {
    flex: 1 1 200px;
    max-width: 280px;
    text-align: center;
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--bg-deep);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step__content {
    padding: 2rem 1.5rem;
}

.process-step__content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.process-step__content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   PROCESS CARDS (Homepage) - MODERN TIMELINE DESIGN
   ========================================================================== */
.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting line */
.process-cards::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg,
        var(--gold-primary) 0%,
        rgba(197, 160, 89, 0.3) 25%,
        rgba(197, 160, 89, 0.3) 75%,
        var(--gold-primary) 100%
    );
    z-index: 0;
}

.process-card {
    position: relative;
    text-align: center;
    padding: 0 1rem;
    z-index: 1;
}

/* Large step number with animated ring */
.process-card__number {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    background: var(--bg-deep);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Outer ring */
.process-card__number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(197, 160, 89, 0.3);
    transition: all 0.4s ease;
}

/* Gradient fill ring */
.process-card__number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold-primary);
    border-right-color: var(--gold-primary);
    opacity: 0;
    transition: all 0.4s ease;
}

.process-card:hover .process-card__number {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(107, 28, 47, 0.15) 100%);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

.process-card:hover .process-card__number::before {
    border-color: var(--gold-primary);
}

.process-card:hover .process-card__number::after {
    opacity: 1;
    animation: processRing 2s linear infinite;
}

@keyframes processRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.process-card__content {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover gradient overlay */
.process-card__content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05) 0%, transparent 50%, rgba(107, 28, 47, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover .process-card__content {
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(197, 160, 89, 0.1);
}

.process-card:hover .process-card__content::before {
    opacity: 1;
}

.process-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(107, 28, 47, 0.1) 100%);
    border-radius: 50%;
    color: var(--gold-primary);
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.process-card:hover .process-card__icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2) 0%, rgba(107, 28, 47, 0.2) 100%);
}

.process-card__icon svg {
    width: 28px;
    height: 28px;
}

.process-card__content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.process-card:hover .process-card__content h3 {
    color: var(--gold-primary);
}

.process-card__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.process-card__list {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    text-align: left;
}

.process-card__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    padding-left: 0.5rem;
}

.process-card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--maroon-light) 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Stagger animation delays */
.process-card:nth-child(1) { --delay: 0ms; }
.process-card:nth-child(2) { --delay: 100ms; }
.process-card:nth-child(3) { --delay: 200ms; }
.process-card:nth-child(4) { --delay: 300ms; }

/* ==========================================================================
   MAP SECTION (Advanced)
   ========================================================================== */
.map-section {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    align-items: stretch;
}

.map-section__info {
    display: flex;
    flex-direction: column;
}

.map-section__info h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.map-section__detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.map-section__detail svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.map-section__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-section__map .map-container {
    height: 100%;
    min-height: 400px;
    margin-bottom: 0;
}

/* ==========================================================================
   AREA TAGS CLOUD
   ========================================================================== */
.area-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.area-tag--large {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion__item {
    margin-bottom: 1rem;
    padding: 0;
    overflow: hidden;
}

.faq-accordion__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-accordion__trigger:hover {
    color: var(--gold-primary);
}

.faq-accordion__trigger svg {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion__trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion__content p {
    padding: 0 2rem 1.5rem;
    margin: 0;
}

.faq-accordion__item.active .faq-accordion__content {
    max-height: 500px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

.testimonial-card--featured {
    border-color: rgba(197, 160, 89, 0.3);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.25rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.testimonial-card__quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    color: var(--gold-primary);
    font-weight: 600;
}

.testimonial-card__name {
    display: block;
    font-style: normal;
    font-weight: 500;
    color: var(--text-white);
}

.testimonial-card__location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-card__type {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
}

.testimonials-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.trust-badge svg {
    color: var(--gold-primary);
}

.trust-badge strong {
    color: var(--text-white);
}

/* ==========================================================================
   TESTIMONIAL FEATURED
   ========================================================================== */
.testimonial-featured {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.testimonial-featured__quote {
    position: relative;
}

.testimonial-featured__quote svg {
    position: absolute;
    top: -1rem;
    left: -1rem;
    color: var(--gold-primary);
}

.testimonial-featured__quote blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-white);
    margin: 0 0 1.5rem;
}

.testimonial-featured__quote cite {
    font-style: normal;
}

.testimonial-featured__name {
    display: block;
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.testimonial-featured__location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-featured__rating {
    text-align: center;
}

.testimonial-featured__rating .stars {
    display: flex;
    gap: 0.25rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.testimonial-featured__rating span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CREDENTIALS SECTION - MODERN GLASS DESIGN
   ========================================================================== */
.credentials-section {
    position: relative;
    background: linear-gradient(135deg, rgba(107, 28, 47, 0.05) 0%, rgba(197, 160, 89, 0.03) 50%, rgba(107, 28, 47, 0.05) 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 5rem 0;
    overflow: hidden;
}

.credentials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.credential-item {
    position: relative;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.credential-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, transparent 50%, rgba(107, 28, 47, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.credential-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.credential-item:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(197, 160, 89, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.credential-item:hover::after {
    left: 100%;
}

.credential-item__icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(107, 28, 47, 0.15) 100%);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 50%;
    color: var(--gold-primary);
    transition: all 0.4s ease;
    z-index: 1;
}

.credential-item__icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(197, 160, 89, 0.4), rgba(107, 28, 47, 0.4), rgba(197, 160, 89, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.credential-item:hover .credential-item__icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.25) 0%, rgba(107, 28, 47, 0.25) 100%);
}

.credential-item:hover .credential-item__icon::before {
    opacity: 1;
    animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.credential-item__icon svg {
    width: 36px;
    height: 36px;
    transition: all 0.4s ease;
}

.credential-item:hover .credential-item__icon svg {
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.5));
}

.credential-item h3 {
    position: relative;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    z-index: 1;
    transition: color 0.3s ease;
}

.credential-item:hover h3 {
    color: var(--gold-primary);
}

.credential-item p {
    position: relative;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-muted);
    z-index: 1;
}

/* Staggered animation delays for credentials */
.credential-item:nth-child(1) { animation-delay: 0ms; }
.credential-item:nth-child(2) { animation-delay: 100ms; }
.credential-item:nth-child(3) { animation-delay: 200ms; }
.credential-item:nth-child(4) { animation-delay: 300ms; }

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.instagram-section {
    padding: var(--section-gap) 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.instagram-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.instagram-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-item__overlay {
    opacity: 1;
}

.instagram-item__overlay svg {
    color: var(--text-white);
}

.instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.instagram-follow:hover {
    color: var(--gold-primary);
}

.instagram-follow svg {
    color: var(--gold-primary);
}

/* ==========================================================================
   DARK SECTION BACKGROUND
   ========================================================================== */
.bg-dark {
    background: rgba(0, 0, 0, 0.4);
    padding: var(--section-gap) 0;
}

/* ==========================================================================
   BUTTON VARIANTS
   ========================================================================== */
.btn-secondary--light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary--light:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-secondary--light svg {
    transition: transform 0.3s ease;
}

.btn-secondary--light:hover svg {
    transform: translateX(5px);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-up:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   PAGE TEMPLATES - ABOUT, SERVICES, CONTACT
   ========================================================================== */

/* Page Hero */
.page-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, rgba(107, 28, 47, 0.1) 0%, transparent 50%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.page-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero__title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

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

.about-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.about-stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image__main {
    width: 100%;
    border-radius: var(--radius-lg);
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.about-image:hover .about-image__main {
    filter: grayscale(0%);
}

.about-image__accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.philosophy-card {
    text-align: center;
    padding: 2.5rem;
}

.philosophy-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    color: var(--gold-primary);
}

.philosophy-card h3 {
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Specialization Grid */
.specialization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.specialization-item {
    text-align: center;
}

.specialization-item__image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.specialization-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.specialization-item:hover .specialization-item__image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.specialization-item h3 {
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.specialization-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Box */
.cta-box {
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Services Page */
.services-intro {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    margin-bottom: 1rem;
}

.services-intro p {
    color: var(--text-muted);
}

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

.service-card {
    overflow: hidden;
}

.service-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.service-card:hover .service-card__image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.service-card__content {
    padding: 2rem;
}

.service-card__content h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.service-card__content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.service-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.process-step__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    text-align: center;
    padding: 2.5rem;
}

.pricing-card--featured {
    border-color: var(--gold-primary);
    background: rgba(197, 160, 89, 0.05);
}

.pricing-card h3 {
    margin-bottom: 1rem;
}

.pricing-card__price {
    margin-bottom: 1rem;
}

.pricing-card__amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.pricing-card__per {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-notes {
    margin-top: 2rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    padding: 2rem;
}

.faq-item h4 {
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper .glass-card {
    padding: 3rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    padding: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
}

.contact-info__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info__item svg {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info__item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.contact-social__link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.contact-social__link:hover {
    background: var(--gold-primary);
    color: var(--bg-deep);
}

/* Contact Map */
.contact-map {
    position: relative;
    height: 400px;
}

.map-container {
    position: absolute;
    inset: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
    background: linear-gradient(to top, rgba(2, 2, 2, 0.95), transparent);
}

.map-info {
    padding: 1.5rem;
    max-width: 400px;
}

.map-info h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.map-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.map-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-areas li {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Full width CTA button */
.cta-button--full {
    width: 100%;
    justify-content: center;
}

/* Text utilities */
.text-sm {
    font-size: 0.85rem;
}

/* Aftercare Page */
.aftercare-notice {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    border-color: var(--gold-primary);
    background: rgba(197, 160, 89, 0.05);
}

.aftercare-notice__icon {
    flex-shrink: 0;
    color: var(--gold-primary);
}

.aftercare-notice__content h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.aftercare-notice__content p {
    color: var(--text-muted);
    margin: 0;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.timeline__item {
    padding: 2rem;
}

.timeline__period {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.timeline__item h3 {
    margin-bottom: 1rem;
}

.timeline__item p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.timeline__item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline__item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.timeline__item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
}

/* Do's and Don'ts */
.dos-donts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dos-donts-card {
    padding: 2.5rem;
}

.dos-donts-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.dos-donts-card--do h3 {
    color: #4CAF50;
}

.dos-donts-card--do h3 svg {
    color: #4CAF50;
}

.dos-donts-card--dont h3 {
    color: #f44336;
}

.dos-donts-card--dont h3 svg {
    color: #f44336;
}

.dos-donts-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dos-donts-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.dos-donts-card--do ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.dos-donts-card--dont ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: 700;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    padding: 2rem;
    text-align: center;
}

.product-card h3 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Warning Box */
.warning-box {
    padding: 2.5rem;
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.05);
}

.warning-box h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #f44336;
    margin-bottom: 1.5rem;
}

.warning-box h3 svg {
    color: #f44336;
}

.warning-symptoms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.warning-symptoms ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-symptoms ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.warning-symptoms ul li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE - ADVANCED COMPONENTS
   ========================================================================== */
@media (max-width: 1200px) {
    .features-grid,
    .process-timeline::before {
        display: none;
    }

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

    .process-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-cards::before {
        display: none;
    }

    .process-card__number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .process-step {
        flex: 1 1 45%;
        max-width: 48%;
    }

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

    .portfolio-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .portfolio-showcase__item.featured {
        grid-row: span 1;
    }
}

@media (max-width: 900px) {
    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-stack {
        height: 350px;
    }

    .map-section {
        grid-template-columns: 1fr;
    }

    .testimonial-featured {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-featured__rating {
        margin-top: 2rem;
    }

    .testimonial-featured__rating .stars {
        justify-content: center;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }

    .floating-cta span {
        display: none;
    }

    .location-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .location-hero__meta {
        flex-direction: column;
        gap: 1rem;
    }

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

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .credential-item {
        padding: 2rem 1.25rem;
    }

    .process-step,
    .process-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .process-card__number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .process-card__number::before {
        width: 80px;
        height: 80px;
    }

    .process-card h3 {
        font-size: 1.25rem;
    }

    .process-card p {
        font-size: 0.9rem;
    }

    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trust-item__number {
        font-size: 2rem;
    }

    .portfolio-showcase {
        grid-template-columns: 1fr;
    }

    .testimonials-trust {
        gap: 1.5rem;
    }

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

    .scroll-indicator {
        display: none;
    }

    /* Page Templates Responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .philosophy-grid,
    .specialization-grid {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-step::after {
        display: none;
    }

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

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

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

    .contact-form-wrapper .glass-card {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    /* Aftercare Page Responsive */
    .aftercare-notice {
        flex-direction: column;
        text-align: center;
    }

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

    .dos-donts-grid {
        grid-template-columns: 1fr;
    }

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

    .warning-symptoms {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MODERN ENHANCEMENTS
   ========================================================================== */

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-highlight) 50%, var(--text-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient--maroon {
    background: linear-gradient(135deg, var(--maroon-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow Text Effect */
.text-glow {
    text-shadow: 0 0 40px rgba(197, 160, 89, 0.3);
}

/* Card Glow on Hover */
.card-glow:hover {
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.15);
}

/* Smooth Underline Animation */
.link-underline {
    position: relative;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--maroon) 0%, var(--gold-primary) 100%);
    transition: width 0.3s ease;
}

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

/* Number Counter Animation Style */
.counter-number {
    font-variant-numeric: tabular-nums;
}

/* Shimmer Effect for CTAs */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scale Up on Hover */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Border Glow Animation */
.border-glow {
    position: relative;
}

.border-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--maroon), var(--gold-primary), var(--maroon));
    background-size: 200% 200%;
    animation: borderGlow 4s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.border-glow:hover::before {
    opacity: 1;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Smooth Image Reveal */
.img-reveal {
    clip-path: inset(0 100% 0 0);
    animation: imgReveal 1s ease forwards;
}

@keyframes imgReveal {
    to { clip-path: inset(0 0 0 0); }
}

/* Stats Number Emphasis */
.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--gold-highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Micro-interaction for Icons */
.icon-bounce:hover svg {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Focus Ring for Accessibility */
.focus-ring:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 4px;
}

/* Modern Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--bg-elevated) 25%, rgba(255, 255, 255, 0.05) 50%, var(--bg-elevated) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
}

.error-404__content {
    max-width: 600px;
    margin: 0 auto;
}

.error-404__code {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.error-404__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.error-404__message {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.error-404__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-404__links ul {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 1rem;
}

.error-404__links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.error-404__links a:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   SEARCH RESULTS PAGE
   ========================================================================== */
.search-page {
    padding: 8rem 0 4rem;
    min-height: 60vh;
}

.search-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.search-header__query {
    color: var(--gold-primary);
}

.search-header__count {
    color: var(--text-muted);
}

.search-form-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form .form-input {
    flex: 1;
}

.search-form button {
    padding: 1rem 1.5rem;
    background: var(--gold-primary);
    border: none;
    color: var(--bg-deep);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: var(--gold-light);
}

.search-results {
    display: grid;
    gap: 1.5rem;
}

.search-result {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.search-result:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

.search-result__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.search-result__title a {
    color: var(--text-white);
    transition: color 0.3s ease;
}

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

.search-result__meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.search-result__excerpt {
    color: var(--text-muted);
    line-height: 1.6;
}

.search-no-results {
    text-align: center;
    padding: 3rem;
}

.search-no-results p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ==========================================================================
   LEGAL PAGES (Privacy, Terms)
   ========================================================================== */
.legal-page {
    padding: 8rem 0 4rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.legal-content .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--gold-primary);
}

.legal-content h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-muted);
    margin: 1rem 0 1rem 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--gold-primary);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   SKIP LINK (Accessibility)
   ========================================================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--bg-deep);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 2px solid var(--text-white);
    outline-offset: 2px;
}

/* Footer Legal Links */
.footer-legal {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.footer-legal__sep {
    color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   BLOG SECTION (Homepage)
   ========================================================================== */
.blog-section {
    padding: var(--section-gap) 0;
}

.blog-section__cta {
    margin-top: 3rem;
}

/* ==========================================================================
   BLOG GRID & CARDS
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.3);
}

.blog-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__image--placeholder {
    color: var(--text-muted);
}

.blog-card__image--placeholder svg {
    opacity: 0.3;
}

.blog-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.blog-card__category {
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card__date {
    color: var(--text-muted);
}

.blog-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.blog-card__title a {
    color: var(--text-white);
    transition: color 0.3s ease;
}

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

.blog-card__excerpt {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
}

.blog-card__link:hover {
    gap: 0.75rem;
}

/* ==========================================================================
   BLOG ARCHIVE PAGE
   ========================================================================== */
.blog-archive {
    padding: 8rem 0 4rem;
}

.blog-archive__header {
    margin-bottom: 3rem;
}

.blog-archive__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.blog-archive__description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.blog-archive__empty {
    padding: 4rem 0;
}

/* ==========================================================================
   SINGLE BLOG POST
   ========================================================================== */
.blog-post {
    padding: 8rem 0 4rem;
}

.container--narrow {
    max-width: 800px;
}

.blog-post__header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-post__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.blog-post__category {
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post__date {
    color: var(--text-muted);
}

.blog-post__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-post__excerpt {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
}

.blog-post__featured-image {
    margin: 0 0 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-post__featured-image img {
    width: 100%;
    height: auto;
}

/* Blog Post Content */
.blog-post__content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.blog-post__content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-white);
    margin: 2.5rem 0 1rem;
}

.blog-post__content h3 {
    font-size: 1.35rem;
    color: var(--text-white);
    margin: 2rem 0 0.75rem;
}

.blog-post__content h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin: 1.5rem 0 0.5rem;
}

.blog-post__content p {
    margin-bottom: 1.5rem;
}

.blog-post__content a {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-post__content a:hover {
    color: var(--gold-light);
}

.blog-post__content ul,
.blog-post__content ol {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.blog-post__content li {
    margin-bottom: 0.5rem;
}

.blog-post__content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--gold-primary);
    background: var(--bg-elevated);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.blog-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.blog-post__content pre {
    background: var(--bg-elevated);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post__content code {
    font-family: monospace;
    font-size: 0.9em;
    background: var(--bg-elevated);
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

.blog-post__content pre code {
    background: none;
    padding: 0;
}

/* Blog Post Footer */
.blog-post__footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.blog-post__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.blog-post__tags-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-post__tag {
    background: var(--bg-elevated);
    color: var(--text-muted);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.blog-post__tag:hover {
    background: var(--gold-primary);
    color: var(--bg-deep);
}

.blog-post__share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-post__share-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-post__share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.blog-post__share-link:hover {
    background: var(--gold-primary);
    color: var(--bg-deep);
}

/* Blog Post Navigation */
.blog-post__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post__nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.blog-post__nav-link:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

.blog-post__nav-link--next {
    text-align: right;
}

.blog-post__nav-label {
    font-size: 0.8rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post__nav-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.3;
}

/* Related Posts */
.related-posts {
    padding: var(--section-gap) 0;
}

/* ==========================================================================
   BLOG RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-post__nav {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-post__nav-link--next {
        text-align: left;
    }

    .blog-post__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-card__title {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   CONTACT FORM 7 STYLING
   ========================================================================== */
.wpcf7 {
    max-width: 100%;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wpcf7-form label {
    display: block;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.wpcf7-form-control:not([type="submit"]) {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, outline 0.3s ease;
}

.wpcf7-form-control:not([type="submit"]):focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
    border-color: var(--gold-primary);
}

.wpcf7-form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.wpcf7-textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-select {
    cursor: pointer;
    appearance: none;
    background-color: rgba(20, 20, 20, 0.95);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.wpcf7-select option {
    background: #141414;
    color: #fff;
    padding: 0.5rem;
}

.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: var(--gold-primary);
    border: none;
    border-radius: var(--radius-sm);
    color: #000;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem auto 0;
}

.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.wpcf7-submit:active {
    transform: translateY(0);
}

/* Validation States */
.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Response Messages */
.wpcf7-response-output {
    margin: 1.5rem 0 0 !important;
    padding: 1rem 1.5rem !important;
    border-radius: var(--radius-sm) !important;
    text-align: center;
}

.wpcf7-mail-sent-ok,
.wpcf7 form.sent .wpcf7-response-output {
    background: rgba(40, 167, 69, 0.1) !important;
    border: 1px solid rgba(40, 167, 69, 0.3) !important;
    color: #28a745 !important;
}

.wpcf7-validation-errors,
.wpcf7 form.invalid .wpcf7-response-output {
    background: rgba(220, 53, 69, 0.1) !important;
    border: 1px solid rgba(220, 53, 69, 0.3) !important;
    color: #dc3545 !important;
}

/* Spinner */
.wpcf7-spinner {
    margin: 0 0.5rem;
}

/* Two column layout for shorter fields */
@media (min-width: 600px) {
    .wpcf7-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   PORTFOLIO PAGE
   ========================================================================== */
.page-hero--portfolio {
    padding: 10rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-page {
    padding: 4rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

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

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-item__overlay {
    opacity: 1;
}

.portfolio-item__overlay svg {
    color: var(--gold-primary);
}

.portfolio-empty {
    padding: 4rem 0;
}

.portfolio-cta {
    padding: 5rem 0;
}

.portfolio-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.portfolio-cta p {
    margin-bottom: 2rem;
}

/* Portfolio Responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .page-hero--portfolio {
        padding: 8rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}
