/* ==========================================================================
   LUXE HAIR STUDIO - PREMIUM DESIGN SYSTEM
   A truly luxurious, award-winning aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS VARIABLES - Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-cream: #FAF8F5;
    --color-gold: #C9A962;
    --color-gold-light: #D4B978;
    --color-gold-dark: #B8944D;
    --color-charcoal: #1a1a1a;
    --color-gray-warm: #8a8279;
    --color-gray-light: #e8e4df;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 1.2s cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --header-height: 80px;
    --container-max: 1400px;
}

/* --------------------------------------------------------------------------
   RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY - Luxury Feel
   -------------------------------------------------------------------------- */
.mud-typography-h1,
.mud-typography-h2,
.mud-typography-h3,
.mud-typography-h4,
.mud-typography-h5 {
    font-family: var(--font-display) !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Display Headlines - Extra large for impact */
.headline-display {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-white);
}

.headline-section {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-elegant {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 400;
}

/* Gold accent text */
.text-gold {
    color: var(--color-gold) !important;
}

/* --------------------------------------------------------------------------
   NAVIGATION - Full Screen Overlay
   -------------------------------------------------------------------------- */

/* Transparent header */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-medium);
}

.nav-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-header.scrolled .nav-logo {
    color: var(--color-black);
}

.nav-header.scrolled .hamburger span {
    background: var(--color-black);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-fast);
    z-index: 1002;
}

.nav-logo:hover {
    color: var(--color-gold);
}

/* Hamburger Menu Button */
.hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-white);
    transition: var(--transition-medium);
    left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; width: 70%; }
.hamburger span:nth-child(3) { top: 22px; }

.hamburger:hover span:nth-child(2) {
    width: 100%;
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
    background: var(--color-white);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
    background: var(--color-white);
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    text-align: center;
}

.menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-nav li {
    overflow: hidden;
    margin: 0.5rem 0;
}

.menu-nav a {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    padding: 0.5rem 0;
    transform: translateY(100%);
    opacity: 0;
    transition: color var(--transition-fast);
}

.menu-overlay.active .menu-nav a {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.6s ease,
                color var(--transition-fast);
}

/* Staggered animation delays */
.menu-nav li:nth-child(1) a { transition-delay: 0.1s; }
.menu-nav li:nth-child(2) a { transition-delay: 0.15s; }
.menu-nav li:nth-child(3) a { transition-delay: 0.2s; }
.menu-nav li:nth-child(4) a { transition-delay: 0.25s; }
.menu-nav li:nth-child(5) a { transition-delay: 0.3s; }
.menu-nav li:nth-child(6) a { transition-delay: 0.35s; }
.menu-nav li:nth-child(7) a { transition-delay: 0.4s; }

.menu-nav a:hover {
    color: var(--color-gold);
}

.menu-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-medium);
    margin-top: 0.25rem;
}

.menu-nav a:hover::after {
    width: 100%;
}

/* Menu Footer - Social Links */
.menu-footer {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
    transition-delay: 0.5s;
}

.menu-overlay.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.menu-social a {
    color: var(--color-gray-warm);
    transition: var(--transition-fast);
}

.menu-social a:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   HERO SECTION - Cinematic Full Viewport
   -------------------------------------------------------------------------- */
.hero-cinematic {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-black);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: heroScale 20s ease-out forwards;
}

@keyframes heroScale {
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Gold corner accents */
.hero-accent-tl,
.hero-accent-br {
    position: absolute;
    width: 150px;
    height: 150px;
    pointer-events: none;
    opacity: 0.3;
}

.hero-accent-tl {
    top: 100px;
    left: 40px;
    border-top: 1px solid var(--color-gold);
    border-left: 1px solid var(--color-gold);
}

.hero-accent-br {
    bottom: 100px;
    right: 40px;
    border-bottom: 1px solid var(--color-gold);
    border-right: 1px solid var(--color-gold);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Text reveal animation */
.hero-subtitle {
    overflow: hidden;
}

.hero-subtitle span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.875rem;
    font-weight: 400;
}

.hero-title {
    overflow: hidden;
    margin: 1rem 0 1.5rem;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.7s; }
.hero-title-line:nth-child(2) { animation-delay: 0.85s; }

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.1s;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.3s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.6s;
    z-index: 10;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --------------------------------------------------------------------------
   SECTION LAYOUTS - Asymmetric & Split
   -------------------------------------------------------------------------- */
.section-padding {
    padding: var(--space-xl) 0;
}

.section-padding-large {
    padding: var(--space-2xl) 0;
}

/* Split Section - Image Left, Content Right */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    overflow: hidden;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.split-section:hover .split-image img {
    transform: scale(1.05);
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg);
    background: var(--color-cream);
}

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-section.reverse {
        direction: ltr;
    }

    .split-image {
        height: 50vh;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.section-header .section-label {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: block;
}

.section-header .section-title {
    margin-bottom: 1.5rem;
}

.section-header .section-divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   SERVICES - Bento Grid Layout
   -------------------------------------------------------------------------- */
.services-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.service-card-bento {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

/* Bento grid positions */
.service-card-bento:nth-child(1) { grid-column: span 5; }
.service-card-bento:nth-child(2) { grid-column: span 4; }
.service-card-bento:nth-child(3) { grid-column: span 3; }
.service-card-bento:nth-child(4) { grid-column: span 4; }
.service-card-bento:nth-child(5) { grid-column: span 4; }
.service-card-bento:nth-child(6) { grid-column: span 4; }

@media (max-width: 1200px) {
    .services-bento {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto;
    }
    .service-card-bento:nth-child(1),
    .service-card-bento:nth-child(2),
    .service-card-bento:nth-child(3),
    .service-card-bento:nth-child(4),
    .service-card-bento:nth-child(5),
    .service-card-bento:nth-child(6) { grid-column: span 3; }
}

@media (max-width: 768px) {
    .services-bento {
        grid-template-columns: 1fr;
    }
    .service-card-bento:nth-child(n) { grid-column: span 1; }
}

.service-card-bento .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slower);
}

.service-card-bento:hover .card-bg {
    transform: scale(1.1);
}

.service-card-bento .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    transition: background var(--transition-medium);
}

.service-card-bento:hover .card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.service-card-bento .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.service-card-bento:hover .card-content {
    transform: translateY(0);
}

.service-card-bento .card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card-bento .card-description {
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-medium);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.service-card-bento:hover .card-description {
    opacity: 1;
    transform: translateY(0);
}

.service-card-bento .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-medium);
    text-decoration: none;
}

.service-card-bento:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.service-card-bento .card-link:hover {
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   TESTIMONIALS - Horizontal Carousel Style
   -------------------------------------------------------------------------- */
.testimonials-section {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 40vw;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.testimonial-card-premium {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: var(--color-white);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonial-rating {
    color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   CTA SECTION - Dramatic Full Width
   -------------------------------------------------------------------------- */
.cta-dramatic {
    position: relative;
    padding: var(--space-2xl) 2rem;
    text-align: center;
    overflow: hidden;
}

.cta-dramatic .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-dramatic .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.cta-dramatic .cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-dramatic .cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-dramatic .cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   BUTTONS - Premium Styling
   -------------------------------------------------------------------------- */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-luxury-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-luxury-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-luxury-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-luxury-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-luxury-outline-dark {
    background: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}

.btn-luxury-outline-dark:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Button arrow animation */
.btn-luxury .btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-luxury:hover .btn-arrow {
    transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   FOOTER - Minimal Elegant
   -------------------------------------------------------------------------- */
.footer-premium {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: var(--space-xl) 2rem var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    position: relative;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-fast);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   ABOUT SECTION - Premium Layout
   -------------------------------------------------------------------------- */
.about-intro {
    position: relative;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: var(--space-lg) 0;
    text-align: center;
    border-top: 1px solid var(--color-gray-light);
    border-bottom: 1px solid var(--color-gray-light);
    margin-top: var(--space-lg);
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-warm);
}

/* --------------------------------------------------------------------------
   CARDS - Luxury Styling Override
   -------------------------------------------------------------------------- */
.mud-card.luxury-card {
    border-radius: 0 !important;
    box-shadow: none !important;
    border: 1px solid var(--color-gray-light);
    transition: var(--transition-medium);
}

.mud-card.luxury-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px);
}

/* --------------------------------------------------------------------------
   ANIMATIONS - AOS Enhancements
   -------------------------------------------------------------------------- */
[data-aos="reveal-up"] {
    clip-path: inset(100% 0 0 0);
    transition-property: clip-path;
}

[data-aos="reveal-up"].aos-animate {
    clip-path: inset(0 0 0 0);
}

[data-aos="reveal-left"] {
    clip-path: inset(0 100% 0 0);
    transition-property: clip-path;
}

[data-aos="reveal-left"].aos-animate {
    clip-path: inset(0 0 0 0);
}

/* Fade up with scale */
[data-aos="fade-up-scale"] {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

[data-aos="fade-up-scale"].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --------------------------------------------------------------------------
   FORM STYLING - Premium Inputs
   -------------------------------------------------------------------------- */
.mud-input-control .mud-input-slot {
    border-radius: 0 !important;
}

.mud-input-outlined .mud-input-slot {
    border-color: var(--color-gray-light) !important;
}

.mud-input-outlined:hover .mud-input-slot {
    border-color: var(--color-gold) !important;
}

.mud-input.mud-input-outlined.mud-input-adorned-end:focus-within .mud-input-slot,
.mud-input-outlined:focus-within .mud-input-slot {
    border-color: var(--color-gold) !important;
    border-width: 1px !important;
}

/* --------------------------------------------------------------------------
   UTILITY CLASSES
   -------------------------------------------------------------------------- */
.bg-cream { background-color: var(--color-cream) !important; }
.bg-black { background-color: var(--color-black) !important; }
.bg-white { background-color: var(--color-white) !important; }

.text-white { color: var(--color-white) !important; }
.text-black { color: var(--color-black) !important; }
.text-gold { color: var(--color-gold) !important; }

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hide MudBlazor default appbar when using custom nav */
.mud-appbar.hide-default {
    display: none !important;
}

/* Ensure main content doesn't have top padding when custom nav is used */
.mud-main-content.no-top-padding {
    padding-top: 0 !important;
}

/* --------------------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 6rem;
    }

    .headline-display {
        font-size: 2.5rem;
    }

    .hero-accent-tl,
    .hero-accent-br {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   PREFERS REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-background {
        animation: none;
        transform: scale(1);
    }
}
