:root {
    --primary-color: #ffffff;
    --secondary-color: #bfa181;
    /* Gold/Champagne accent */
    --accent-color: #3b82f6;
    /* Blue for interactions */
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar Restructuring */
.nav-container-top {
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: flex-start;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    pointer-events: none;
}

.hero-contact-btn {
    position: absolute;
    top: 1.5rem;
    right: clamp(1.5rem, 5vw, 4rem);
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 100px;
    color: #000000;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--transition);
    pointer-events: all;
}

.hero-contact-btn:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.hero-contact-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s var(--transition);
}

.hero-contact-btn:hover i {
    transform: translateX(3px);
}

.nav-pill-main {
    pointer-events: all;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 900;
    font-size: 0.75rem;
}

.widget-divider-v {
    width: 1px;
    height: 20px;
    background: var(--glass-border);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.lang-selector {
    padding: 0.4rem 0.8rem;
    background: transparent;
    font-size: 0.8rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section Positioning */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: #000;
    display: flex;
    flex-direction: column;
}

/* Hero Image & Masking */
.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    /* Ensure scaling doesn't overflow */
}

.fidel-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.3) translateY(-8%);
    /* Moved even higher and scaled up more */
    filter: brightness(0.9) contrast(1.1);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            #000 0%,
            rgba(0, 0, 0, 0.8) 20%,
            transparent 60%);
    z-index: 2;
}

.container-full {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
    padding-bottom: clamp(2rem, 8vh, 5rem);
    padding-left: clamp(1rem, 5vw, 4rem);
}

.hero-bottom-left {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-bottom: 2.5rem;
}

.badge-accent {
    width: 2px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 10px;
}

.floating-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.floating-badge small {
    color: var(--text-muted);
    opacity: 0.7;
    margin-left: 0.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: white;
}

.hero p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 400px;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
}

/* Buttons and CTAs */
.btn {
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Sub-page Styles - Redesigned Asym */
.asym-header {
    padding: 12rem 0 6rem;
    background: linear-gradient(to bottom, #111, #000);
}

.header-accent {
    color: #ff5e3a; /* Subtle orange/red from reference */
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: block;
    text-transform: uppercase;
}

.asym-title-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: flex-end;
}

.asym-title h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    color: white;
    margin: 0;
}

.asym-title h1 span {
    color: #71717a; /* Muted color from reference */
}

.header-side-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
}

.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.gallery-item {
    border-radius: 40px;
    overflow: hidden;
    height: 600px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-section {
    padding: 10rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
}

.story-left h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.story-left .arrow-icon {
    font-size: 3rem;
    transform: rotate(45deg);
    color: #71717a;
}

.story-right p {
    font-size: 1.25rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.story-right p:last-child {
    color: var(--text-muted);
}

.about-page {
    background:
        radial-gradient(circle at top right, rgba(0, 0, 0, 0.05), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f4f4f2 100%);
    color: #111111;
}

.about-main {
    padding-bottom: 4rem;
}

.about-hero {
    position: relative;
    padding: 11rem 0 5rem;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(1.5rem, 3vw, 3.5rem);
    align-items: start;
}

.about-hero-copy {
    max-width: 640px;
    position: relative;
    z-index: 3;
    padding-right: clamp(1rem, 2vw, 2rem);
}

.about-hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 0.96;
    margin-bottom: 1.5rem;
    color: #111111;
}

.about-hero-lead {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: #4b5563;
    max-width: 52ch;
}

.about-hero-actions {
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-hero-media {
    display: flex;
    justify-content: flex-end;
    position: relative;
    min-width: 0;
}

.about-photo-card {
    position: relative;
    width: min(100%, 760px);
    min-height: 620px;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
}

.about-photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.96) 16%,
        rgba(255, 255, 255, 0.78) 28%,
        rgba(255, 255, 255, 0.28) 40%,
        rgba(0, 0, 0, 0.22) 54%,
        rgba(0, 0, 0, 0.58) 70%,
        rgba(0, 0, 0, 0.78) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-featured-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.about-featured-image-figure {
    inset: -24% -8% -2% 4%;
    width: 104%;
    height: 126%;
    object-position: 58% 12%;
    transform: scale(1.08);
    transform-origin: center center;
    filter: grayscale(1) contrast(1.12) brightness(0.82);
    z-index: 0;
}

.about-intro-section {
    padding: 1rem 0 4rem;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
}

.about-intro-card,
.about-value-card,
.about-cta-card,
.about-highlight-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.about-intro-card {
    border-radius: 28px;
    padding: clamp(1.6rem, 3vw, 2.5rem);
}

.about-intro-card h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.about-intro-card p {
    color: #4b5563;
    font-size: 1.02rem;
}

.about-intro-card p + p {
    margin-top: 1rem;
}

.about-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: #111111;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-values-grid {
    display: grid;
    gap: 1rem;
}

.about-value-card {
    border-radius: 24px;
    padding: 1.5rem;
}

.about-value-card i {
    color: #111111;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #111111;
}

.about-value-card p {
    color: #52525b;
}

.story-section {
    padding: 4rem 0;
}

.story-grid {
    align-items: start;
    gap: clamp(2rem, 7vw, 6rem);
}

.story-left h2 {
    font-size: clamp(2.2rem, 4vw, 4.25rem);
    line-height: 1;
    display: block;
    margin-bottom: 0;
    color: #111111;
}

.story-right p {
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    color: #27272a;
}

.story-right p:last-child {
    color: #52525b;
}

.about-highlight-card {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 24px;
}

.about-highlight-card p {
    margin: 0;
    color: #111111;
    font-size: 1.05rem;
}

.about-cta-section {
    padding: 2rem 0 1rem;
}

.about-cta-card {
    border-radius: 32px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.about-cta-card h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
    max-width: 18ch;
    color: #111111;
}

.about-page .header-accent {
    color: #111111;
}

.about-page .hero-contact-btn {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.about-page .hero-contact-btn:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-page .btn-primary {
    background: #111111;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.about-page .btn-primary:hover {
    background: #000000;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.about-page .btn-secondary {
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.14);
}

.about-page .btn-secondary:hover {
    background: #f5f5f5;
    border-color: rgba(17, 17, 17, 0.24);
}

.about-page .footer {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    color: #52525b;
}

/* Sections */
.section {
    padding: 10rem 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-pill-main {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-radius: 20px;
        margin-top: 1rem;
        border: 1px solid var(--glass-border);
        gap: 1.5rem;
        text-align: center;
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-image-container {
        width: 100%;
        opacity: 1; /* Restored opacity */
    }

    .fidel-hero-img {
        transform: scale(1.1) translateY(12%); /* Lowered further */
        object-position: center 20%;
    }

    .hero-mask {
        /* Subtle vertical gradient + horizontal left-fade */
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.2) 0%,
            transparent 40%,
            rgba(0,0,0,0.8) 100%),
            linear-gradient(to right,
            #000 0%,
            transparent 100%);
    }
}


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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all 0.3s var(--transition);
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.about-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-muted);
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 32px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 4.5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.95fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-mark {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-mark h3 {
    color: var(--text-main);
    font-size: 1.2rem;
}

.footer-mark p,
.footer-copy {
    color: var(--text-muted);
}

.footer-copy {
    max-width: 40ch;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-column h4 {
    color: var(--text-main);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.footer-column a,
.footer-column span {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: var(--text-main);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
@media (max-width: 1024px) {
    .asym-title-grid,
    .gallery-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-item {
        height: 400px;
    }

    .story-left h2 {
        font-size: 3rem;
    }

    .about-hero {
        padding-top: 9rem;
    }

    .about-hero-grid,
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-photo-card {
        width: min(100%, 560px);
        min-height: 520px;
        margin: 0 auto;
    }

    .about-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

.fade-in {
    animation: fadeInUp 0.8s var(--transition) forwards;
}

.hero-actions .btn:nth-child(2) {
    animation-delay: 0.2s;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.3;
    }

    .hero-overlay {
        background: radial-gradient(circle at center, transparent, var(--bg-dark));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

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

    .nav-pill-main {
        padding: 0.7rem 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-block-mobile {
        width: 100%;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .about-hero {
        padding: 7.5rem 0 3rem;
    }

    .about-featured-image {
        inset: 0;
    }

    .about-intro-section,
    .story-section {
        padding: 2rem 0 3rem;
    }

    .about-intro-card,
    .about-value-card,
    .about-highlight-card,
    .about-cta-card {
        border-radius: 22px;
    }

    .story-left h2,
    .about-cta-card h2 {
        max-width: 100%;
    }

    .about-photo-card {
        min-height: 420px;
    }

    .about-photo-card::after {
        background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.2) 18%,
            transparent 35%,
            transparent 80%,
            rgba(255, 255, 255, 0.6) 100%);
    }

    .about-featured-image-figure {
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 60% 65%;
        transform: none;
    }

    .footer {
        padding-top: 3rem;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}
