@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@800;900&display=swap');

/* ==========================================
   Blindly Luxury Brand Design System
   Aesthetic: Apple, Aesop, Vogue Editorial
   Warm Ivory, Soft White, Matte Black, Champagne Gold
   ========================================== */

:root {
    /* Color Palette — Warm Editorial Light Theme System */
    --void-black: #FAF6F2;      /* surface/base screen background */
    --onyx: #F4ECE6;            /* surface/chrome tab bar & section background */
    --card-black: #FFFFFF;      /* surface/card default white card background */
    --soft-white: #1A1016;      /* text/primary — HIGH CONTRAST DARK CHARCOAL BLACK */
    --ash-grey: #4A454E;        /* text/meta hints, body & descriptions */
    
    --champagne-gold: #B8243A;  /* accent primary deep crimson rose for light backgrounds */
    --champagne-gold-dark: #8E2740; /* accent secondary */
    --champagne-gold-glow: rgba(225, 114, 127, 0.25); /* border/accent glow */
    
    --border-subtle: rgba(0, 0, 0, 0.08);   /* border/hairline */
    --border-active: rgba(225, 114, 127, 0.4);
    
    /* Typography */
    --font-logo: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Button Theme — Gradient Warm Rose-Peach to Deep Crimson */
    --btn-accent: #F7C7B4;      /* accent/100 Warm Rose-Peach */
    --btn-text: #2A1016;        /* High-contrast dark plum text */
    --btn-glow: rgba(225, 114, 127, 0.4);
    
    /* Spacing & Sizes */
    --section-padding: clamp(120px, 15vw, 240px);
    --radius-card: 12px;
    --radius-btn: 4px;
}

/* ==========================================
   Base Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
}

body {
    background-color: var(--void-black);
    color: var(--ash-grey);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* Rhythmic Section Background Alternation */
section:nth-of-type(odd) {
    background-color: var(--void-black);
}
section:nth-of-type(even) {
    background-color: var(--onyx);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* Subtle gold light glow behind sections */
.glowing-bg {
    position: relative;
}
.glowing-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--champagne-gold-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* ==========================================
   Typography Hierarchy
   ========================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--soft-white);
    line-height: 1.25;
}

p {
    color: var(--ash-grey);
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 300;
    line-height: 1.8;
}

.editorial-quote {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(32px, 5.5vw, 64px);
    line-height: 1.2;
    color: var(--soft-white);
}

.editorial-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--champagne-gold);
    font-weight: 500;
    display: block;
    margin-bottom: 24px;
}

.accent-gold {
    color: var(--champagne-gold);
    font-style: italic;
    font-family: var(--font-display);
}

/* ==========================================
   Navigation (Minimalist Luxury)
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
    background: rgba(250, 246, 242, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: var(--border-subtle);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(20px, 3vw, 28px) 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
}

.nav-links a {
    color: #1A1016;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s, transform 0.3s;
    text-shadow: none;
}

.nav-links a:hover {
    color: #B8243A;
    transform: translateY(-1px);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-logo);
    font-size: clamp(20px, 2.5vw, 24px);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #F7C7B4 0%, #EFA9A5 35%, #E1727F 70%, #B8243A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-transform: lowercase;
    text-decoration: none;
}

.logo::before {
    display: none;
}

.nav-logo-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    filter: none;
    box-shadow: none;
}

/* Mobile navigation hamburger toggling */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.mobile-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #1A1016;
    margin-bottom: 5px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav-toggle span:last-child {
    margin-bottom: 0;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* Mobile Nav Overlay Panel */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 246, 242, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 105;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: clamp(24px, 6vw, 36px);
    color: var(--soft-white);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mobile-nav-links a:hover {
    color: var(--champagne-gold);
}

/* ==========================================
   Buttons
   ========================================== */
.btn-gold {
    background: linear-gradient(135deg, #F7C7B4 0%, #EFA9A5 40%, #E1727F 75%, #B8243A 100%);
    color: var(--btn-text);
    padding: 14px 36px;
    border-radius: var(--radius-btn);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    box-shadow: 0 4px 20px rgba(225, 114, 127, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #EFA9A5 0%, #E1727F 40%, #B8243A 80%, #8E2740 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 28px rgba(184, 36, 58, 0.5);
    transform: translateY(-2px);
}

.btn-gold:active,
.btn-gold:focus {
    background: linear-gradient(135deg, #E1727F 0%, #B8243A 50%, #8E2740 100%);
    color: #FFFFFF;
    box-shadow: 0 2px 14px rgba(142, 39, 64, 0.6);
    transform: translateY(0);
}

.btn-gold-outline {
    background: transparent;
    color: #1A1016;
    padding: 14px 36px;
    border-radius: var(--radius-btn);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid #1A1016;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold-outline:hover {
    border-color: #B8243A;
    color: #FFFFFF;
    background: linear-gradient(135deg, #EFA9A5 0%, #E1727F 40%, #B8243A 80%, #8E2740 100%);
}

.btn-gold-outline:active,
.btn-gold-outline:focus {
    border-color: #8E2740;
    color: #FFFFFF;
    background: linear-gradient(135deg, #E1727F 0%, #B8243A 50%, #8E2740 100%);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    padding: 140px 24px 80px;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(250, 246, 242, 0.85) 0%, rgba(250, 246, 242, 0.45) 55%, transparent 100%),
        url('blindly_luxury_hero.jpg');
    background-size: cover;
    background-position: center;
    filter: none;
    -webkit-filter: none;
    transform: none;
    z-index: 1;
}

.download-hero::before,
.no-hero-bg::before {
    display: none !important;
    content: none !important;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 580px;
    text-align: left;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.05;
    margin-bottom: 0;
    font-weight: 400;
    color: #1A1016;
    text-shadow: none;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background-color: #1A1016;
    margin: 32px 0;
}

.hero-description {
    font-size: 15px;
    color: #4A454E;
    margin-bottom: 48px;
    max-width: 480px;
    font-weight: 500;
    line-height: 1.7;
    text-shadow: none;
}

.hero-visual {
    display: none; /* Hidden since background handles the image */
}

/* ==========================================
   Philosophy Section
   ========================================== */
.philosophy-section {
    padding: var(--section-padding) 24px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-title {
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 300;
}

.philosophy-body {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--ash-grey);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ==========================================
   Principles Sections
   ========================================== */
.principles-grid-section {
    padding: var(--section-padding) 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.principles-header {
    text-align: center;
    margin-bottom: 80px;
}

.principles-row-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-card {
    background: var(--card-black);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.4s, border-color 0.4s;
}

.principle-card:hover {
    border-color: var(--champagne-gold);
    transform: translateY(-4px);
}

.principle-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--champagne-gold);
    font-weight: 500;
}

.principle-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--soft-white);
    font-weight: 500;
}

.principle-card-desc {
    font-size: 13px;
    color: var(--ash-grey);
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 968px) {
    .principles-row-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .principles-row-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Product Spotlight
   ========================================== */
.product-section {
    padding: var(--section-padding) 24px;
    text-align: center;
}

.product-title {
    font-size: clamp(36px, 4.5vw, 56px);
    margin-bottom: 60px;
}

/* Minimalist CSS Phone Mockup shell (Apple style) */
.phone-showcase-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.phone-shell-luxury {
    width: 300px;
    height: 610px;
    border-radius: 44px;
    background: #0d0d0d;
    border: 8px solid #222222;
    box-shadow: 0 40px 90px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-shell-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 25px;
    background: #222222;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 10;
}

.phone-screen-luxury {
    flex-grow: 1;
    background: #0d0d0d;
    padding: 40px 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.luxury-app-header {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 12px;
}

.luxury-app-logo {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--soft-white);
    font-weight: 600;
}

.luxury-app-radar {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 30px 0;
}

.luxury-radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 178, 143, 0.05);
}

.lux-ring-1 { width: 40%; height: 40%; }
.lux-ring-2 { width: 85%; height: 85%; }

.luxury-radar-center {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--champagne-gold);
    box-shadow: 0 0 10px var(--champagne-gold);
}

.luxury-radar-node {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--soft-white);
    box-shadow: 0 0 8px var(--soft-white);
    opacity: 0.35;
}

.lux-node-1 { top: 25%; left: 30%; }
.lux-node-2 { top: 70%; left: 65%; }

.luxury-app-footer {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.luxury-avatar-blur {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    filter: blur(3px);
}

.luxury-meta-line {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    width: 50%;
}

/* Floating animation */
.float-luxury {
    animation: floatingLux 8s ease-in-out infinite;
}

@keyframes floatingLux {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================
   The Reveal (Signature Moment)
   ========================================== */
.reveal-section {
    padding: var(--section-padding) 24px;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reveal-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.reveal-title {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 20px;
}

.reveal-desc {
    font-size: clamp(15px, 1.8vw, 17px);
    color: var(--ash-grey);
    margin: 0 auto 60px;
    max-width: 500px;
}

/* Simulation circles container */
.reveal-simulation-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(40px, 8vw, 120px);
    margin-bottom: 60px;
    position: relative;
}

/* Line connecting circles */
.reveal-connecting-line {
    position: absolute;
    width: 30%;
    height: 1px;
    background: var(--border-subtle);
    z-index: 1;
    transition: background 0.6s;
}

.reveal-connecting-line.active {
    background: var(--champagne-gold);
}

.reveal-node-circle {
    width: clamp(140px, 20vw, 220px);
    height: clamp(140px, 20vw, 220px);
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: var(--card-black);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: border-color 0.6s, box-shadow 0.6s;
}

.reveal-node-circle.active {
    border-color: var(--champagne-gold);
    box-shadow: 0 10px 40px var(--champagne-gold-glow);
}

.reveal-silhouette-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(70px);
    -webkit-filter: blur(70px);
    transition: filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-avatar-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--soft-white);
    background: rgba(16, 16, 18, 0.85);
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 3;
}

.reveal-status-indicator {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--champagne-gold);
    margin-bottom: 24px;
    font-weight: 500;
}

/* ==========================================
   Closing Section
   ========================================== */
.closing-section {
    padding: var(--section-padding) 24px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.closing-title {
    font-size: clamp(38px, 5.5vw, 76px);
    line-height: 1.1;
    margin-bottom: 48px;
}

/* ==========================================
   Minimal Footer
   ========================================== */
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 60px 24px;
    background: var(--onyx);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--ash-grey);
    line-height: 1.6;
}

.footer-logo {
    font-family: var(--font-logo);
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 900;
    text-transform: lowercase;
    background: linear-gradient(135deg, #F7C7B4 0%, #EFA9A5 35%, #E1727F 70%, #B8243A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--soft-white);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--ash-grey);
    font-weight: 300;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--champagne-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--ash-grey);
}

/* ==========================================
   Accessibility & Motion Preferences
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    .float-luxury {
        animation: none !important;
    }
    .hero-image {
        transition: none !important;
        transform: scale(1) !important;
    }
}

button:focus-visible,
a:focus-visible {
    outline: 1.5px solid var(--champagne-gold);
    outline-offset: 4px;
}

/* ==========================================
   Principle Showcase Sections
   ========================================== */
.principle-section {
    padding: var(--section-padding) 24px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: center;
    align-items: center;
}

.principle-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 8vw, 120px);
    max-width: 1100px;
    width: 100%;
    align-items: center;
}

.principle-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--card-black);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    height: 380px;
    width: 100%;
    transition: border-color 0.4s, box-shadow 0.4s;
    overflow: hidden;
}

.principle-visual:hover {
    border-color: var(--champagne-gold);
    box-shadow: 0 10px 40px var(--champagne-gold-glow);
}

.principle-text-block {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.principle-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 8px;
}

.principle-desc {
    font-size: 15px;
    color: var(--ash-grey);
    line-height: 1.8;
}

.principle-reverse .principle-container .principle-visual {
    order: 2;
}

/* Luxury Glyph Visuals */
.luxury-glyph-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(181, 154, 108, 0.15);
    position: relative;
    background: radial-gradient(circle, rgba(181, 154, 108, 0.05) 0%, transparent 70%);
}

.luxury-glyph-container::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid rgba(181, 154, 108, 0.05);
}

.principle-visual-letter {
    font-family: var(--font-display);
    font-size: clamp(80px, 10vw, 120px);
    color: var(--champagne-gold);
    font-style: italic;
    opacity: 0.85;
    text-shadow: 0 0 30px var(--champagne-gold-glow);
    user-select: none;
}

/* Safety Grid & Luxury Lists */
.safety-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.luxury-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    text-align: left;
}

.luxury-list-item {
    position: relative;
    padding-left: 24px;
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--ash-grey);
    line-height: 1.6;
    font-weight: 300;
}

.luxury-list-item::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--champagne-gold);
    font-size: 20px;
    line-height: 1;
    top: -2px;
}

.luxury-list-item strong {
    color: var(--soft-white);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

/* ==========================================
   Responsive Adaptations
   ========================================== */
@media (max-width: 968px) {
    :root {
        --section-padding: 100px;
    }
    .nav-links {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-description {
        margin: 0 auto 36px;
    }
    .cta-group {
        justify-content: center;
    }
    .hero-image-wrapper {
        height: 450px;
    }
    .principle-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .principle-visual {
        order: -1;
        height: 350px;
    }
    .principle-text-block {
        padding-left: 0;
    }
    .safety-grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================
   Contact Form Styles
   ========================================== */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto 120px;
    padding: 0 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1A1016;
    font-weight: 600;
}

.form-control {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #1A1016;
    padding: 16px 20px;
    font-size: 15px;
    font-family: var(--font-sans);
    border-radius: var(--radius-btn);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--champagne-gold);
    box-shadow: 0 0 10px var(--champagne-gold-glow);
}

.form-control::placeholder {
    color: #777777;
}

/* ==========================================
   Interactive Hero Indicators & Badges
   ========================================== */
.scroll-explore {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ash-grey);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
    z-index: 5;
}

.scroll-explore::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 24px;
    background: var(--ash-grey);
}

.laurel-wreath-badge {
    display: none !important;
}

.laurel-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.laurel-text span {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: var(--ash-grey);
    text-transform: uppercase;
}

.laurel-text strong {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--champagne-gold);
    text-transform: uppercase;
    font-weight: 500;
}

/* Custom rounded pill button variation */
.btn-gold-pill {
    background: linear-gradient(135deg, #F7C7B4 0%, #EFA9A5 40%, #E1727F 75%, #B8243A 100%);
    color: var(--btn-text);
    padding: 16px 40px;
    border-radius: 30px; /* Pill! */
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    box-shadow: 0 4px 20px rgba(225, 114, 127, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold-pill:hover {
    background: linear-gradient(135deg, #EFA9A5 0%, #E1727F 40%, #B8243A 80%, #8E2740 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 28px rgba(184, 36, 58, 0.5);
    transform: translateY(-2px);
}

.btn-gold-pill:active,
.btn-gold-pill:focus {
    background: linear-gradient(135deg, #E1727F 0%, #B8243A 50%, #8E2740 100%);
    color: #FFFFFF;
    box-shadow: 0 2px 14px rgba(142, 39, 64, 0.6);
    transform: translateY(0);
}

.navbar .btn-gold {
    border-radius: 30px;
    padding: 12px 28px;
}

/* Mobile responsive full page background adaptations */
@media (max-width: 768px) {
    .navbar {
        background: rgba(250, 246, 242, 0.96) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    }

    .hero-section {
        text-align: center;
        padding-top: 140px;
    }

    .hero-section::before {
        background-position: 72% center !important;
        background-image: 
            linear-gradient(to bottom, rgba(250, 246, 242, 0.92) 0%, rgba(250, 246, 242, 0.5) 45%, transparent 100%),
            url('blindly_luxury_hero.jpg') !important;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    .hero-divider {
        margin: 24px auto;
    }
    .scroll-explore, .laurel-wreath-badge {
        display: none;
    }
}

/* ==========================================
   2x2 Product Experience Grid
   ========================================== */
.experience-grid-section {
    padding: var(--section-padding) 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.experience-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .experience-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Responsive title sizing for mobile */
    .hero-title {
        font-size: clamp(32px, 8vw, 56px) !important;
    }
    
    /* Hide the navbar download button on mobile to save space */
    .navbar .btn-gold {
        display: none !important;
    }
}

/* Mobile adjustments for simulators and page sections */
@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    .footer-col {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    /* Prevent circles simulator overflow on smaller mobile screens */
    .reveal-simulation-panel {
        gap: 16px !important;
    }
    .reveal-node-circle {
        width: 115px !important;
        height: 115px !important;
    }
    .reveal-connecting-line {
        width: 20% !important;
    }
    .reveal-avatar-label {
        font-size: 8px !important;
        padding: 2px 8px !important;
    }
    
    /* Stack CTA buttons vertically on mobile */
    .cta-group {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        align-items: center !important;
    }
    .cta-group a {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

