/* AlternaBiz Luxury Theme */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Core Navy / Blue Palette */
    --primary-blue:      #007AFF;
    --primary-dark-blue: #0051D5;
    --accent-blue:       #5AC8FA;
    --light-blue:        #E3F2FD;
    --luxury-navy:       #0A1128;
    --deep-navy:         #060D1E;
    --midnight-blue:     #1C2541;
    --slate-blue:        #3A506B;
    --ocean-blue:        #0066CC;

    /* Luxury Gold Accent */
    --gold:              #C9A84C;
    --gold-light:        #E8C97A;
    --gold-pale:         rgba(201, 168, 76, 0.12);
    --gold-border:       rgba(201, 168, 76, 0.35);

    /* Neutrals */
    --silver:            #C0C0C0;
    --pearl-white:       #FEFEFE;
    --warm-gray:         #4A4A4A;
    --soft-cream:        #FAF8F4;
    --off-white:         #F7F6F2;

    /* Legacy aliases */
    --primary-gold: var(--primary-blue);
    --champagne:    var(--light-blue);
    --gray-200:     #E5E7EB;

    /* Gradients */
    --gradient-blue:    linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
    --gradient-blue-dark: linear-gradient(135deg, #0051D5 0%, #007AFF 100%);
    --gradient-navy:    linear-gradient(160deg, #060D1E 0%, #0A1128 50%, #1C2541 100%);
    --gradient-luxury:  linear-gradient(160deg, #060D1E 0%, #0A1128 60%, #1C2541 100%);
    --gradient-gold:    linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(6,13,30,0.08) 0%, rgba(6,13,30,0.28) 50%, rgba(6,13,30,0.55) 100%);
    --glass-gradient:   linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
    --glass-blue:       linear-gradient(135deg, rgba(0,122,255,0.15) 0%, rgba(90,200,250,0.10) 100%);
    --liquid-glass:     linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 100%);

    /* Typography */
    --font-display:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-primary:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif:    'Cormorant Garamond', Georgia, serif;
    --font-secondary:'Inter', -apple-system, sans-serif;
    --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-logo:     'Cormorant Garamond', Georgia, serif;

    /* Shadows */
    --shadow-sm:     0 2px 10px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md:     0 4px 24px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg:     0 12px 48px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.08);
    --shadow-xl:     0 24px 72px rgba(0,0,0,0.18), 0 8px 28px rgba(0,0,0,0.12);
    --shadow-blue:   0 8px 32px rgba(0,122,255,0.28), 0 4px 14px rgba(0,122,255,0.16);
    --shadow-gold:   0 8px 32px rgba(201,168,76,0.22), 0 2px 8px rgba(201,168,76,0.14);
    --shadow-glass:  0 8px 32px rgba(0,0,0,0.09), inset 0 1px 0 rgba(255,255,255,0.18);
    --shadow-card:   0 2px 0 rgba(201,168,76,0.25), 0 16px 48px rgba(0,0,0,0.10);

    /* Glass */
    --glass-bg:      rgba(255,255,255,0.09);
    --glass-border:  rgba(255,255,255,0.18);
    --backdrop-blur: blur(20px) saturate(180%);
    --backdrop-blur-strong: blur(40px) saturate(200%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 7rem;

    /* Animation */
    --transition-smooth: all 0.32s cubic-bezier(0.4,0,0.2,1);
    --transition-bounce: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
    --ease-luxury: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--off-white);
    color: var(--luxury-navy);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Subtle noise texture over body */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.18;
    color: var(--luxury-navy);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem);   letter-spacing: -0.025em; }
h2 { font-size: clamp(2.1rem, 4vw,  3.8rem);   letter-spacing: -0.015em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.4rem);  }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.7rem);  }

.subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 400;
    font-style: italic;
    color: var(--slate-blue);
    letter-spacing: 0.02em;
}

p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--warm-gray);
}

/* Gold decorative rule used across sections */
.gold-rule {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.gold-rule::before,
.gold-rule::after {
    content: '';
    flex: 0 0 40px;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.7;
}
.gold-rule-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 6px rgba(201,168,76,0.5);
}

/* ── Navigation ─────────────────────────────── */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6,13,30,0.55);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid rgba(201,168,76,0.18);
    transition: var(--transition-smooth);
    box-shadow: 0 1px 0 rgba(201,168,76,0.08), 0 4px 24px rgba(0,0,0,0.25);
}

.luxury-nav.scrolled {
    background: rgba(6,13,30,0.88);
    backdrop-filter: var(--backdrop-blur-strong);
    -webkit-backdrop-filter: var(--backdrop-blur-strong);
    box-shadow: 0 1px 0 rgba(201,168,76,0.15), 0 8px 32px rgba(0,0,0,0.35);
}

.luxury-nav:not(.over-hero) {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 2px 0 rgba(201,168,76,0.12), 0 4px 24px rgba(0,0,0,0.06);
}

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

.logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.logo:has(.site-logo-img),
.logo.logo-has-image {
    background: transparent;
    -webkit-text-fill-color: unset;
    font-size: inherit;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.site-logo-img,
.logo img[data-site-logo] {
    height: 60px;
    width: auto;
    max-width: min(320px, 52vw);
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.22));
}

.logo:has(.site-logo-img):hover,
.logo.logo-has-image:hover {
    transform: scale(1.03);
    box-shadow: none;
}

.luxury-nav.over-hero .logo.logo-has-image,
.luxury-nav.over-hero .logo:has(.site-logo-img) {
    background: transparent;
    box-shadow: none;
}

.logo:not(:has(.site-logo-img)):not(.logo-has-image):hover {
    background: var(--gradient-blue-dark);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.8rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--luxury-navy);
    text-decoration: none;
    position: relative;
    transition: color 0.28s ease;
}

/* Thin gold underline */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: width 0.32s var(--ease-luxury);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Over dark hero: white links */
.luxury-nav.over-hero .nav-links a {
    color: rgba(255,255,255,0.88);
}

.luxury-nav.over-hero .nav-links a:hover,
.luxury-nav.over-hero .nav-links a.active {
    color: var(--gold-light);
}

/* Luxury Hero Section */
.luxury-hero {
    position: relative;
    height: 92vh; /* 15% larger than 80vh */
    min-height: 690px; /* 15% larger than 600px */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--gradient-navy);
    padding-top: 5rem; /* space between menu bar and hero content */
    box-sizing: border-box;
}

.hero-bg-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background,
.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    opacity: 1;
    filter: brightness(1.14) saturate(1.08) contrast(1.04);
}

.hero-bg-slide {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
    filter: brightness(1.14) saturate(1.08) contrast(1.04);
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    z-index: 1;
    pointer-events: none;
}

.hero-carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-carousel-dots .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}

.hero-carousel-dots .hero-dot:hover {
    background: rgba(255,255,255,0.4);
}

.hero-carousel-dots .hero-dot.active {
    background: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.9);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    background: var(--glass-blue);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.hero-badge:hover {
    background: var(--liquid-glass);
    transform: scale(1.05);
}

.hero-title {
    color: var(--pearl-white);
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 6vw, 5.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: var(--light-blue);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* ── Buttons ─────────────────────────────────── */
.btn-luxury {
    display: inline-block;
    padding: 1rem 2.8rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.36s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

/* Primary — Gold */
.btn-luxury.btn-primary {
    background: var(--gradient-gold);
    color: var(--luxury-navy);
    box-shadow: var(--shadow-gold);
    border: none;
}

.btn-luxury.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.btn-luxury.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201,168,76,0.45), 0 4px 14px rgba(201,168,76,0.28);
}

.btn-luxury.btn-primary:hover::after { opacity: 1; }

/* Secondary — outlined ghost */
.btn-luxury.btn-secondary {
    background: transparent;
    color: var(--pearl-white);
    border: 1px solid rgba(255,255,255,0.6);
}

.btn-luxury.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-3px);
}

/* Gold-outline (for light backgrounds) */
.btn-luxury.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-luxury.btn-outline-gold:hover {
    background: var(--gold-pale);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* ── Sections ────────────────────────────────── */
.luxury-section {
    padding: var(--spacing-xl) 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Full-bleed wrapper for sections needing a background */
.section-bg-cream  { background: var(--soft-cream); }
.section-bg-white  { background: #fff; }
.section-bg-navy   { background: var(--gradient-luxury); }

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

/* Eyebrow label above section titles */
.section-tag {
    display: inline-block;
    padding: 0.3rem 1.1rem;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    border: 1px solid var(--gold-border);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--luxury-navy);
}

.section-description {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--slate-blue);
    line-height: 1.8;
}

/* ── Cards ───────────────────────────────────── */
.luxury-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.14);
    box-shadow: var(--shadow-card);
    transition: transform 0.38s var(--ease-luxury), box-shadow 0.38s var(--ease-luxury);
    position: relative;
}

/* Gold top edge that grows on hover */
.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-luxury);
    z-index: 2;
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 3px 0 rgba(201,168,76,0.45), 0 28px 60px rgba(0,0,0,0.13);
}

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

.card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.luxury-card:hover .card-image {
    transform: scale(1.04);
}

.card-content {
    padding: 2.2rem 2.5rem 2.5rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
    color: var(--luxury-navy);
    letter-spacing: -0.01em;
}

.card-description {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    line-height: 1.82;
    font-size: 1.02rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--glass-gradient);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-lg), var(--shadow-blue);
    background: var(--liquid-glass);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-blue);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.4);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--luxury-navy);
}

/* Process Timeline */
.timeline {
    position: relative;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-blue);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pearl-white);
    box-shadow: var(--shadow-blue);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.5);
}

/* ── Stats ───────────────────────────────────── */
.stats-section {
    background: var(--gradient-luxury);
    padding: var(--spacing-xl) 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 15% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 85% 50%, rgba(0,122,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem;
}

.stat-item {
    padding: 2.5rem 2rem;
    position: relative;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.6rem;
    transition: transform 0.32s var(--ease-luxury);
    line-height: 1;
}

.stat-item:hover .stat-number {
    transform: scale(1.08);
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ── Testimonials ────────────────────────────── */
.testimonial-card {
    background: #fff;
    padding: 3rem 3.2rem;
    border-radius: 3px;
    border: 1px solid rgba(201,168,76,0.18);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
    position: relative;
    margin-top: 2rem;
    transition: transform 0.36s var(--ease-luxury), box-shadow 0.36s var(--ease-luxury);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 3px 0 rgba(201,168,76,0.4), 0 24px 56px rgba(0,0,0,0.10);
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 5.5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 1.5rem;
    left: 2.2rem;
    transition: opacity 0.3s ease;
    user-select: none;
}

.testimonial-card:hover .quote-icon { opacity: 0.25; }

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-style: italic;
    color: var(--slate-blue);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold-border);
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
}

.testimonial-card:hover .author-image {
    transform: scale(1.08);
    border-color: var(--gold);
}

.author-name {
    font-weight: 700;
    color: var(--luxury-navy);
}

.author-title {
    color: var(--slate-blue);
    font-size: 0.95rem;
}

/* ── CTA Section ─────────────────────────────── */
.luxury-cta {
    background: var(--gradient-luxury);
    padding: var(--spacing-xl) 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Gold corner accents */
.luxury-cta::before,
.luxury-cta::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.luxury-cta::before { top: -60px;  left: -60px;  }
.luxury-cta::after  { bottom: -60px; right: -60px; }

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(201,168,76,0.025) 50px, rgba(201,168,76,0.025) 52px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: var(--light-blue);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* ── Footer ──────────────────────────────────── */
.luxury-footer {
    background: var(--deep-navy);
    color: rgba(255,255,255,0.55);
    padding: var(--spacing-lg) 3rem 2rem;
    border-top: 1px solid rgba(201,168,76,0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.6rem;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Gold dot before footer headings */
.footer-section h4::before {
    content: '— ';
    color: var(--gold);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.28s ease, transform 0.28s ease;
}

.footer-section a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Glass Morphism Icon Containers */
.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--glass-gradient);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.icon-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--liquid-glass);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.icon-container:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-blue), var(--shadow-glass);
    border-color: var(--primary-blue);
}

.icon-container:hover::before {
    opacity: 1;
}

.icon-container i,
.icon-container svg {
    position: relative;
    z-index: 1;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.icon-container:hover i,
.icon-container:hover svg {
    color: var(--accent-blue);
    transform: scale(1.1);
}

/* Enhanced Section Styling with Glass Morphism */
.luxury-section {
    position: relative;
    z-index: 1;
}

.luxury-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-gradient);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* Smooth Hover Animations for All Interactive Elements */
a, button, .btn-luxury, .luxury-card, .feature-item, .testimonial-card {
    transition: var(--transition-smooth);
}

a:hover, button:hover {
    transform: translateY(-2px);
}

/* Enhanced Depth with Multiple Shadow Layers */
.luxury-card,
.feature-item,
.testimonial-card {
    position: relative;
}

.luxury-card::after,
.feature-item::after,
.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-blue);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.luxury-card:hover::after,
.feature-item:hover::after,
.testimonial-card:hover::after {
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-number {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .luxury-section {
        padding: var(--spacing-lg) 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .luxury-hero {
        height: 69vh; /* 15% larger than 60vh */
        min-height: 460px; /* 15% larger than 400px */
        padding-top: 4.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    /* Improve form inputs on mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    /* Better button spacing on mobile */
    .btn-luxury {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Stack grid layouts on mobile */
    section > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--luxury-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-blue);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark-blue);
}

/* ============================================
   ENHANCEMENTS: Accessibility & UX
   ============================================ */

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10001;
    padding: 0.75rem 1.25rem;
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--gradient-gold);
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 2px;
    background: var(--luxury-navy);
    color: var(--gold);
    border: 1px solid var(--gold-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--gold);
    color: var(--luxury-navy);
    box-shadow: var(--shadow-gold);
}

/* ── Trust / Partners Strip ──────────────────── */
.trust-strip {
    background: var(--luxury-navy);
    padding: 2.8rem 3rem;
    border-top: 1px solid rgba(201,168,76,0.18);
    border-bottom: 1px solid rgba(201,168,76,0.18);
}

.trust-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trust-strip-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
    opacity: 0.8;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 4rem;
}

.trust-logo {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.28s ease, transform 0.28s ease;
    white-space: nowrap;
}

.trust-logo:hover {
    color: var(--gold-light);
    transform: scale(1.06);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 17, 40, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 122, 255, 0.25);
    padding: 1.25rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    color: var(--light-blue);
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-sans);
}

.cookie-btn-accept {
    background: var(--gradient-blue);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--light-blue);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn-decline:hover {
    border-color: var(--primary-blue);
    color: white;
}

/* Mobile sticky CTA */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 0.75rem 1rem;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 122, 255, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-cta-bar.visible {
    transform: translateY(0);
}

.mobile-cta-bar .btn-luxury {
    width: 100%;
    padding: 0.9rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/* Mobile menu toggle (moved from JS inline styles) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.luxury-nav.over-hero .mobile-menu-toggle span {
    background: var(--pearl-white);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 1rem 1.25rem;
    }

    .site-logo-img,
    .logo img[data-site-logo] {
        height: 46px;
        max-width: min(220px, 58vw);
    }

    .logo.logo-has-image,
    .logo:has(.site-logo-img) {
        padding: 0.35rem 0.65rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--luxury-navy);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        color: var(--pearl-white);
    }

    .mobile-cta-bar {
        display: block;
    }

    .back-to-top {
        bottom: 5.5rem;
        right: 1.25rem;
        width: 46px;
        height: 46px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .trust-logos {
        gap: 1.5rem 2rem;
    }

    .trust-logo {
        font-size: 0.95rem;
    }
}

/* Mobile nav override for luxury color */
@media (max-width: 768px) {
    .nav-links {
        background: var(--deep-navy);
        border-left: 1px solid rgba(201,168,76,0.15);
    }
    .nav-links a { color: rgba(255,255,255,0.82); }
    .nav-links a:hover,
    .nav-links a.active { color: var(--gold-light); }
}

/* ── Scroll-Reveal ───────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
}

.reveal.reveal-left  { transform: translateX(-32px); }
.reveal.reveal-right { transform: translateX(32px); }
.reveal.reveal-scale { transform: scale(0.95); }

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Stagger siblings */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.37s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.45s; }

/* ── Section Dividers (gold rule) ────────────── */
.section-divider {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
}

.section-divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── Feature Items (luxury) ──────────────────── */
.feature-item {
    text-align: center;
    padding: 2.8rem 2.2rem;
    background: #fff;
    border-radius: 3px;
    border: 1px solid rgba(201,168,76,0.12);
    border-top: 3px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: transform 0.36s var(--ease-luxury), box-shadow 0.36s var(--ease-luxury), border-top-color 0.36s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 3px 0 rgba(201,168,76,0.45), 0 20px 48px rgba(0,0,0,0.09);
    border-top-color: var(--gold);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    background: var(--gradient-gold);
    transform: scale(1.08) rotate(4deg);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    color: var(--luxury-navy);
    font-weight: 600;
}

/* ── Process Timeline (luxury) ───────────────── */
.timeline::before {
    background: var(--gradient-gold);
    width: 1px;
    opacity: 0.5;
}

.timeline-number {
    background: var(--luxury-navy);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    box-shadow: var(--shadow-gold);
}

.timeline-item:hover .timeline-number {
    background: var(--gold);
    color: var(--luxury-navy);
    transform: translateX(-50%) scale(1.12);
}

.timeline-content {
    background: #fff;
    border-left: 3px solid rgba(201,168,76,0.3);
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    padding: 2.5rem;
}

.timeline-item:hover .timeline-content {
    border-left-color: var(--gold);
    box-shadow: var(--shadow-md);
}

/* ── Contact Form ────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    border: 1px solid rgba(201,168,76,0.25);
    border-bottom: 2px solid rgba(201,168,76,0.4);
    border-radius: 2px;
    background: #fff;
    transition: border-color 0.28s ease, box-shadow 0.28s ease;
    font-family: var(--font-primary);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

/* ── Cookie Banner (luxury) ──────────────────── */
.cookie-banner {
    border-top: 1px solid rgba(201,168,76,0.2);
    background: rgba(6,13,30,0.97);
}

.cookie-btn-accept {
    background: var(--gradient-gold);
    color: var(--luxury-navy);
    font-weight: 700;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ── Inquiry / Start a conversation ──────────── */
.inquiry-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.4fr);
    gap: 3.5rem;
    margin-top: 3.5rem;
    align-items: start;
}

.inquiry-aside-panel {
    padding: 2.25rem 2rem;
    background: linear-gradient(165deg, var(--deep-navy) 0%, var(--luxury-navy) 55%, var(--midnight-blue) 100%);
    border-top: 3px solid var(--gold);
    color: rgba(255, 255, 255, 0.92);
}

.inquiry-aside-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    margin: 0 0 1.35rem;
    color: #fff;
}

.inquiry-contact-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.02rem;
    margin-bottom: 0.85rem;
    transition: color 0.25s ease;
}

.inquiry-contact-link:hover {
    color: var(--gold-light);
}

.inquiry-address {
    margin-top: 1.75rem;
    font-style: normal;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
}

.inquiry-aside-note {
    margin-top: 0.35rem;
    color: var(--slate-blue);
    font-size: 0.95rem;
    line-height: 1.65;
    min-height: 3.2em;
    transition: opacity 0.3s ease;
}

.inquiry-magnet {
    margin-top: 1.5rem;
}

.inquiry-magnet-label {
    margin: 0 0 0.35rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.inquiry-form-intro {
    margin: 0 0 1.5rem;
    color: var(--slate-blue);
    font-size: 0.95rem;
    line-height: 1.6;
}

.inquiry-magnet-offer {
    grid-column: 1 / -1;
    margin: 0 0 1rem;
    padding: 0.75rem 0.85rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(201, 168, 76, 0.28);
    color: var(--luxury-navy);
    font-size: 0.88rem;
    line-height: 1.5;
    font-weight: 500;
}

.inquiry-option--wide {
    grid-column: 1 / -1;
}

.inquiry-field--full {
    grid-column: 1 / -1;
}

.inquiry-privacy {
    margin: 1rem 0 0;
    color: var(--slate-blue);
    font-size: 0.82rem;
    line-height: 1.55;
}

.inquiry-form-wrap {
    background: #fff;
    padding: 2.75rem 2.5rem;
    border: 1px solid rgba(201, 168, 76, 0.16);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.inquiry-field {
    margin-bottom: 1.35rem;
}

.inquiry-field label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 600;
    color: var(--luxury-navy);
    font-size: 0.92rem;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--luxury-navy);
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.inquiry-option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.inquiry-option {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.inquiry-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.inquiry-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 3.1rem;
    padding: 0.7rem 0.85rem;
    border: 1.5px solid rgba(201, 168, 76, 0.28);
    background: var(--soft-cream);
    color: var(--luxury-navy);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.inquiry-option:hover span {
    border-color: var(--gold);
    transform: translateY(-1px);
}

.inquiry-option input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.inquiry-option input:checked + span {
    background: var(--luxury-navy);
    border-color: var(--luxury-navy);
    color: #fff;
}

.inquiry-option-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
    margin-bottom: 0.35rem;
    padding: 1rem 1rem 0.15rem;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.08), transparent);
    border-left: 2px solid var(--gold);
    animation: inquiryPanelIn 0.35s ease;
}

.inquiry-option-panel[hidden] {
    display: none;
}

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

.inquiry-submit {
    width: 100%;
    margin-top: 0.5rem;
}

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

    .inquiry-option-grid,
    .inquiry-option-panel {
        grid-template-columns: 1fr;
    }

    .inquiry-form-wrap {
        padding: 2rem 1.5rem;
    }
}

/* ── Mobile CTA Bar ──────────────────────────── */
.mobile-cta-bar {
    border-top: 1px solid rgba(201,168,76,0.18);
}

/* ── Reduced Motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .luxury-card,
    .testimonial-card,
    .feature-item {
        opacity: 1 !important;
        transform: none !important;
    }
}
