/* ===================================
   EXTRAORDINARY ABOUT PAGE STYLES
   Mind-Blowing Animations & Unique Design
   Matching the Spectacular Contact Page
   ================================== */

/* Particles Background for About Page */
.about-particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.about-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #c9a96e, #d4b878);
    border-radius: 50%;
    opacity: 0;
    animation: aboutParticleFloat 18s infinite ease-in-out;
}

.about-particle-1 { 
    left: 5%; 
    animation-delay: 0s; 
    animation-duration: 15s;
}
.about-particle-2 { 
    left: 15%; 
    animation-delay: 3s; 
    animation-duration: 17s;
}
.about-particle-3 { 
    left: 25%; 
    animation-delay: 6s; 
    animation-duration: 14s;
}
.about-particle-4 { 
    left: 65%; 
    animation-delay: 9s; 
    animation-duration: 16s;
}
.about-particle-5 { 
    left: 75%; 
    animation-delay: 12s; 
    animation-duration: 18s;
}
.about-particle-6 { 
    left: 85%; 
    animation-delay: 15s; 
    animation-duration: 13s;
}

@keyframes aboutParticleFloat {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
        transform: translateY(-5vh) rotate(180deg);
    }
    85% {
        opacity: 0.4;
    }
}

/* ===================================
   LUXURY HERO SECTION
   Ultra-Premium Design Experience
   ================================== */

/* Navigation colors handled by adaptive system in main.js */

/* Luxury Hero Section */
.luxury-about-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Geometric Background Animation */
.geometric-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-geometry {
    position: absolute;
    border: 1px solid rgba(201, 169, 110, 0.2);
    background: linear-gradient(45deg, rgba(201, 169, 110, 0.05), rgba(212, 184, 120, 0.02));
    backdrop-filter: blur(2px);
    animation: geometryFloat 25s infinite ease-in-out;
}

.geo-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    border-radius: 50%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.geo-2 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 15%;
    transform: rotate(45deg);
    animation-delay: 5s;
    animation-duration: 25s;
}

.geo-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 12%;
    border-radius: 30%;
    animation-delay: 10s;
    animation-duration: 18s;
}

.geo-4 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 8%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 15s;
    animation-duration: 22s;
}

.geo-5 {
    width: 40px;
    height: 40px;
    top: 45%;
    left: 25%;
    border-radius: 50%;
    animation-delay: 20s;
    animation-duration: 16s;
}

.geo-6 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    right: 25%;
    transform: rotate(30deg);
    animation-delay: 12s;
    animation-duration: 28s;
}

@keyframes geometryFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-20px) rotate(120deg) scale(1.1);
        opacity: 0.6;
    }
    66% {
        transform: translateY(10px) rotate(240deg) scale(0.9);
        opacity: 0.4;
    }
}

/* Luxury Grid Overlay */
.luxury-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(201, 169, 110, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 110, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    pointer-events: none;
    animation: gridShift 40s linear infinite;
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Hero Container */
.luxury-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Brand Mark */
.brand-mark {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: brandFadeIn 2s ease-out;
}

.brand-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(201, 169, 110, 0.3));
    transition: all 0.3s ease;
}

.brand-mark:hover .hero-logo-svg {
    filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.5));
    transform: scale(1.05);
}

/* Luxury Content */
.luxury-content {
    max-width: 900px;
}

/* Luxury Badge */
.luxury-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    animation: badgeFadeIn 2s ease-out 0.3s both;
}

.badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-line {
    width: 1px;
    height: 20px;
    background: rgba(201, 169, 110, 0.4);
}

/* Luxury Headline */
.luxury-headline {
    font-family: 'Maginia', serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.headline-word {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: wordReveal 1s ease-out forwards;
}

.word-1 { animation-delay: 0.8s; }
.word-2 { 
    animation-delay: 1.1s; 
    color: #c9a96e;
    font-style: italic;
}
.word-3 { animation-delay: 1.4s; }

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Luxury Description */
.luxury-description {
    position: relative;
    margin-bottom: 5rem;
    animation: descriptionFadeIn 2s ease-out 1.8s both;
}

.description-line {
    width: 100px;
    height: 1px;
    background: #c9a96e;
    margin: 0 auto 2rem;
}

.description-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.description-accent {
    font-family: 'Maginia', 'maginiaregular', 'Playfair Display', 'Georgia', serif;
    font-size: 1rem;
    font-style: italic;
    color: #c9a96e;
    opacity: 0.9;
}

/* Luxury Stats */
.luxury-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    animation: statsFadeIn 2s ease-out 2.2s both;
}

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

.stat-number {
    font-family: 'Maginia', 'maginiaregular', 'Playfair Display', 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #c9a96e;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 169, 110, 0.3);
}

/* Global Presence */
.global-presence {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: globalFadeIn 2s ease-out 2.5s both;
}

.presence-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.presence-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

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

/* Signature Element */
.signature-element {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: signatureFadeIn 2s ease-out 2.6s both;
}

.signature-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.signature-dot {
    width: 4px;
    height: 4px;
    background: #c9a96e;
    border-radius: 50%;
}

/* Animations */
@keyframes brandFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

/* Morphing Background for About */
.about-morphing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.about-morph-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(201, 169, 110, 0.08), rgba(212, 184, 120, 0.04));
    animation: aboutMorphing 25s infinite ease-in-out;
    filter: blur(50px);
}

.about-shape-1 {
    width: 400px;
    height: 400px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.about-shape-2 {
    width: 350px;
    height: 350px;
    top: 60%;
    right: 5%;
    animation-delay: 8s;
}

.about-shape-3 {
    width: 250px;
    height: 250px;
    bottom: 30%;
    left: 25%;
    animation-delay: 16s;
}

@keyframes aboutMorphing {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    33% {
        transform: translate(60px, -40px) scale(1.3) rotate(120deg);
        opacity: 0.7;
    }
    66% {
        transform: translate(-40px, 50px) scale(0.7) rotate(240deg);
        opacity: 0.5;
    }
}

/* Floating Design Elements for About */
.about-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    pointer-events: none;
}

.about-float-element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #c9a96e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a96e;
    font-size: 1.6rem;
    opacity: 0;
    animation: aboutFloatIn 2.5s ease-out forwards;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.2);
}

.about-element-1 {
    top: 25%;
    left: 12%;
    animation-delay: 3s;
    animation-duration: 12s;
    animation-name: aboutFloatElement1;
    animation-iteration-count: infinite;
}

.about-element-2 {
    top: 35%;
    right: 18%;
    animation-delay: 4s;
    animation-duration: 14s;
    animation-name: aboutFloatElement2;
    animation-iteration-count: infinite;
}

.about-element-3 {
    bottom: 30%;
    left: 18%;
    animation-delay: 5s;
    animation-duration: 10s;
    animation-name: aboutFloatElement3;
    animation-iteration-count: infinite;
}

.about-element-4 {
    bottom: 40%;
    right: 12%;
    animation-delay: 6s;
    animation-duration: 13s;
    animation-name: aboutFloatElement4;
    animation-iteration-count: infinite;
}

@keyframes aboutFloatIn {
    to { opacity: 0.8; }
}

@keyframes aboutFloatElement1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(25px, -20px) rotate(180deg) scale(1.1); }
}

@keyframes aboutFloatElement2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-20px, 25px) rotate(-180deg) scale(0.9); }
}

@keyframes aboutFloatElement3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(30px, 15px) rotate(270deg) scale(1.05); }
}

@keyframes aboutFloatElement4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-25px, -30px) rotate(-270deg) scale(0.95); }
}

.hero-background-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 12vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    z-index: 5;
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 8vw;
}

.hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.about-hero.animate .hero-letter {
    opacity: 1;
    transform: translateY(0);
}

.hero-letter[data-letter="1"] { transition-delay: 0.1s; }
.hero-letter[data-letter="2"] { transition-delay: 0.2s; }
.hero-letter[data-letter="3"] { transition-delay: 0.3s; }
.hero-letter[data-letter="4"] { transition-delay: 0.4s; }
.hero-letter[data-letter="5"] { transition-delay: 0.5s; }

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    height: 120vh;
}

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

.hero-headline {
    font-family: 'maginiaregular', serif;
    font-size: 4rem;
    font-weight: normal;
    line-height: 1.1;
    color: white;
    margin: 0 0 3rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 10;
    position: relative;
}

.hero-description {
    max-width: 600px;
}

.hero-description p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
    position: relative;
}

/* Our Story Section */
.our-story {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Animated Grid Background */
.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="aboutGrid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(201,169,110,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23aboutGrid)"/></svg>');
    opacity: 0.6;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-content {
    position: relative;
}

.story-headline {
    font-family: 'maginiaregular', serif;
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 2rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.story-paragraphs p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin: 0 0 1.5rem 0;
}

.story-paragraphs p:last-child {
    margin-bottom: 0;
}

.story-image {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
    display: inline-block;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(201, 169, 110, 0.1), transparent, rgba(212, 184, 120, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

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

.booth-image {
    width: 100%;
    height: auto;
    object-fit: none;
    object-position: center;
    filter: grayscale(1);
    transition: all 0.8s ease;
    display: block;
    background: transparent;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.5s ease;
}

.image-container:hover .booth-image {
    filter: grayscale(0.2);
    transform: scale(1.08);
}

.image-container:hover .image-overlay {
    background: rgba(0, 0, 0, 0.03);
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 100px rgba(201, 169, 110, 0.25);
    border-color: rgba(201, 169, 110, 0.3);
}

/* Philosophy Section */
.philosophy-section {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.philosophy-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    letter-spacing: 0.4em;
    white-space: nowrap;
    width: 90vw;
    max-width: 1800px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.philosophy-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.philosophy-section.animate .philosophy-letter {
    opacity: 1;
    transform: translateY(0);
}

/* Gold accent for middle letter (I in DESIGN) */
.philosophy-letter[data-letter="4"] {
    color: rgba(201, 169, 110, 0.15) !important;
    font-style: italic;
    transform: translateY(50px) scale(1.1);
}

.philosophy-section.animate .philosophy-letter[data-letter="4"] {
    transform: translateY(0) scale(1.1);
}

.philosophy-letter[data-letter="1"] { transition-delay: 0.1s; }
.philosophy-letter[data-letter="2"] { transition-delay: 0.2s; }
.philosophy-letter[data-letter="3"] { transition-delay: 0.3s; }
.philosophy-letter[data-letter="4"] { transition-delay: 0.4s; }
.philosophy-letter[data-letter="5"] { transition-delay: 0.5s; }
.philosophy-letter[data-letter="6"] { transition-delay: 0.6s; }

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.philosophy-header {
    margin-bottom: 4rem;
}

.philosophy-headline {
    font-family: 'maginiaregular', serif;
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.philosophy-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.principle-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.principle-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(201, 169, 110, 0.08), transparent);
    animation: principleRotate 12s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

@keyframes principleRotate {
    to { transform: rotate(360deg); }
}

.principle-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 25px 60px rgba(201, 169, 110, 0.15);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: #c9a96e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.principle-icon i {
    font-size: 1.8rem;
    color: #1a1a1a;
}

.principle-item:hover .principle-icon {
    background: #d4b878;
    transform: scale(1.1);
}

.principle-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.principle-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* About Team Section */
.about-team-section {
    background: #f8f8f8;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.team-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.015);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    letter-spacing: 0.6em;
    white-space: nowrap;
    width: 90vw;
    max-width: 1800px;
    text-align: center;
}

.team-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

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

.team-headline {
    font-family: 'maginiaregular', serif;
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.team-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-photo {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3/4;
    cursor: pointer;
}

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

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.08);
    filter: grayscale(0.3);
}

.team-member:hover .member-overlay {
    transform: translateY(0);
}

.member-name {
    font-family: 'maginiaregular', serif;
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0 0 0.5rem 0;
    color: white;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.member-title {
    color: #c9a96e;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

/* About CTA Section */
.about-cta-section {
    background: #1a1a1a;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-family: 'maginiaregular', serif;
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.1;
    color: white;
    margin: 0 0 1.5rem 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 3rem 0;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: #1a1a1a;
}

/* Responsive Design for Luxury Hero */
@media (max-width: 1024px) {
    .luxury-hero-container {
        padding: 0 2rem;
    }
    
    .luxury-headline {
        font-size: 4rem;
    }
    
    .brand-mark {
        gap: 1.5rem;
    }
    
    .hero-logo-svg {
        width: 50px;
        height: 50px;
    }
    
    .luxury-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .image-container {
        max-width: 450px;
    }
    
    .philosophy-principles {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .luxury-hero-container {
        padding: 0 1.5rem;
    }
    
    .luxury-headline {
        font-size: 3rem;
        gap: 0.3rem;
    }
    
    .brand-mark {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-logo-svg {
        width: 45px;
        height: 45px;
    }
    
    .global-presence {
        flex-direction: column;
        gap: 1rem;
    }
    
    .presence-line {
        width: 40px;
    }
    
    .presence-text {
        font-size: 0.8rem;
        text-align: center;
        white-space: normal;
    }
    
    .brand-line {
        width: 40px;
    }
    
    .luxury-badge {
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .luxury-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .floating-geometry {
        display: none;
    }
    
    .hero-content,
    .philosophy-content,
    .team-content,
    .story-container {
        padding: 0 2rem;
    }
    
    .hero-headline,
    .story-headline,
    .philosophy-headline,
    .team-headline,
    .cta-headline {
        font-size: 2rem;
    }
    
    .hero-background-text {
        font-size: 8rem;
    }
    
    .philosophy-background-text {
        font-size: 10rem;
        letter-spacing: 0.2em;
    }
    
    .team-background-text {
        font-size: 12rem;
        letter-spacing: 0.4em;
    }
    
    .image-container {
        max-width: 400px;
    }
    
    .story-image {
        height: auto;
    }
    
    .philosophy-principles {
        gap: 2rem;
    }
    
    .principle-icon {
        width: 60px;
        height: 60px;
    }
    
    .principle-icon i {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .luxury-hero-container {
        padding: 0 1rem;
    }
    
    .luxury-headline {
        font-size: 2.2rem;
    }
    
    .brand-mark {
        margin-bottom: 1.5rem;
    }
    
    .hero-logo-svg {
        width: 35px;
        height: 35px;
    }
    
    .brand-line {
        width: 30px;
    }
    
    .luxury-badge {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .badge-line {
        width: 30px;
        height: 1px;
    }
    
    .description-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .signature-element {
        bottom: 2rem;
    }
    
    .our-story,
    .philosophy-section,
    .about-team-section,
    .about-cta-section {
        padding: 5rem 0;
    }
    
    .hero-content,
    .philosophy-content,
    .team-content,
    .story-container,
    .cta-content {
        padding: 0 1rem;
    }
    
    .hero-headline,
    .story-headline,
    .philosophy-headline,
    .team-headline,
    .cta-headline {
        font-size: 1.8rem;
    }
    
    .hero-background-text {
        font-size: 6rem;
    }
    
    .philosophy-background-text {
        font-size: 7rem;
        letter-spacing: 0.1em;
    }
    
    .team-background-text {
        font-size: 8rem;
        letter-spacing: 0.2em;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .image-container {
        max-width: 300px;
    }
    
    .story-image {
        height: auto;
    }
    
    .story-container {
        gap: 3rem;
    }
    
    .team-header {
        margin-bottom: 3rem;
    }
}
