@font-face {
    font-family: "Brown Sugar";
    src: url("font/Brown-Sugar-Regular.woff2") format("woff2"),
         url("font/Brown-Sugar-Regular.ttf") format("truetype"),
         url("font/Brown-Sugar-Regular.otf") format("opentype");
}

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

body {
    background: #f2f2f2;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Poppins, sans-serif;
}

/* =========================================
   Luxury Editorial Preloader
   ========================================= */
.luxury-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fafafa;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loader-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-style: italic;
    letter-spacing: 4px;
    color: #111;
    opacity: 0;
    animation: textBreathe 1.5s ease-in-out infinite alternate;
}

.loader-progress-wrap {
    width: 100px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.loader-progress {
    width: 100%;
    height: 100%;
    background: #111;
    transform: translateX(-100%);
    animation: lineSweep 1.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes textBreathe {
    0% { opacity: 0.2; transform: translateY(3px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes lineSweep {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.luxury-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* =========================================
   Desktop Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 40px;
    right: 60px;
    z-index: 9999;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
}

.navbar a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .35s ease;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 1px;
    background: #ffffff;
    transition: .4s ease;
}

.navbar a:hover {
    color: #d8d8d8;
}

.navbar a:hover::after {
    width: 100%;
}

/* =========================================
   Hamburger Button Base
   ========================================= */
.hamburger {
    display: none; 
    cursor: pointer;
    flex-direction: column;
    gap: 8px;
    z-index: 10000; 
}

.hamburger .bar {
    display: block;
    width: 32px;
    height: 1.5px;
    background-color: #ffffff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger .bar:nth-child(2) {
    width: 22px;
    align-self: flex-end;
}

/* =========================================
   Mobile Media Query & Floating Cylinder Menu
   ========================================= */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
        position: fixed; 
        top: 30px;
        right: 30px;
        z-index: 10000; 
    }

    .hamburger.active .bar {
        background-color: #ffffff; 
    }

    .navbar ul {
        position: fixed;
        top: 80px;
        right: -100%; 
        width: 200px; 
        height: auto; 
        padding: 40px 0;
        border-radius: 40px; 
        background: rgba(255, 255, 255, 0.215); 
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        box-shadow: -10px 15px 40px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255,255,255,0.6);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px; 
        margin: 0;
        transition: right 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 9998; 
    }

    .navbar ul.active {
        right: 20px;
    }

    .navbar a {
        font-family: "Cormorant Garamond", serif; 
        font-size: 22px; 
        letter-spacing: 2px;
        text-transform: capitalize;
        font-weight: 600;
        color: #111; 
    }

    .navbar a::after {
        display: none; 
    }

    .navbar ul li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .navbar ul.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar ul.active li:nth-child(1) { transition-delay: 0.2s; }
    .navbar ul.active li:nth-child(2) { transition-delay: 0.3s; }
    .navbar ul.active li:nth-child(3) { transition-delay: 0.4s; }
    .navbar ul.active li:nth-child(4) { transition-delay: 0.5s; }
    .navbar ul.active li:nth-child(5) { transition-delay: 0.6s; }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(4.75px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        width: 32px; 
        transform: translateY(-4.75px) rotate(-45deg);
    }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    width: 100%;
    max-width: 1500px;
    height: clamp(420px, 55vw, 700px);
    display: flex;
    position: relative;
    overflow: hidden;
    background: #000;
    transition: filter .35s ease, opacity .35s ease, transform .35s ease;
    will-change: filter, opacity, transform;
}

.left {
    width: 65%;
    overflow: hidden;
    position: relative;
}

.left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(100%);
    transform: scale(1.15);
    will-change: transform, filter;
}

.right {
    width: 35%;
    background: repeating-linear-gradient(
        to right,
        rgb(90,90,90) 0px,
        rgb(90,90,90) 3px,
        rgb(99,99,99) 3px,
        rgb(99,99,99) 8px
    );
    background-size: 250px 100%;
}

.content {
    position: absolute;
    left: 34%;
    bottom: 8%;
    z-index: 10;
    overflow: hidden;
}

.content h1 {
    font-family: "Brown Sugar";
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: #fff;
    opacity: 1;
}

.content p {
    color: #ddd;
    margin-top: 12px;
    letter-spacing: 2px;
}

/* =========================================
   ULTRA-PREMIUM ABOUT SECTION (Split Layout)
   ========================================= */
.about-premium {
    position: relative;
    width: 100%;
    background: #f4f1ea;
    padding: 200px 8%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.about-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Brown Sugar", serif;
    font-size: 30vw;
    color: rgba(201, 201, 201, 0.411);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* The Grid Layout */
.about-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px; /* Wider for the split layout */
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 Split */
    gap: 80px;
    align-items: start; /* Required for sticky to work */
}

/* Sticky Left Column */
.about-left {
    position: sticky;
    top: 150px; /* Locks 150px from the top of the screen */
    padding-right: 40px;
}

.about-subtitle {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #888;
    margin-bottom: 30px;
}

.about-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px; /* Massive size */
    font-weight: 300;
    color: #111;
    line-height: 1.1;
    margin-bottom: 40px;
}

.about-title em {
    color: #555;
    font-style: italic;
}

.about-line-horizontal {
    width: 80px;
    height: 1px;
    background-color: #111;
}

/* Scrolling Right Column */
.about-right {
    padding-top: 20px; /* Aligns visually with the title */
    display: flex;
    flex-direction: column;
    gap: 40px; /* Wide spacing between paragraphs */
}

/* The Editorial Drop Cap */
.drop-cap {
    float: left;
    font-family: "Cormorant Garamond", serif;
    font-size: 90px;
    line-height: 60px;
    padding-top: 8px;
    padding-right: 15px;
    color: #111;
    font-style: italic;
}

.about-paragraph {
    font-size: 19px;
    color: #444;
    line-height: 1.9;
    font-weight: 300;
}

.about-paragraph .word {
    overflow: hidden;
    padding-bottom: 4px; 
}

/* Responsive Rules for Tablet/Mobile */
@media screen and (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr; /* Stacks vertically on smaller screens */
        gap: 60px;
    }
    
    .about-left {
        position: relative;
        top: 0;
        padding-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-title { font-size: 52px; }
}

@media screen and (max-width: 768px) {
    .about-premium { padding: 120px 6%; }
    .about-title { font-size: 42px; }
    .about-paragraph { font-size: 16px; text-align: justify; }
    .drop-cap { font-size: 70px; line-height: 50px; }
}

/* =========================================
   Footer Setup
   ========================================= */
.footer {
    padding: 120px 8% 70px;
    background: #f8f9fa;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: ambientPulse 8s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% { transform: translateX(-50%) scale(0.8); opacity: 0.5; }
    100% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

.footer h2 {
    font-size: 60px; 
    font-weight: 400; 
    margin-bottom: 30px; 
    font-family: "Cormorant Garamond", serif; 
    color: #111; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.footer h2:hover {
    transform: translateY(-3px);
    color: #000;
}

.footer p {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.9;
    transition: color 0.3s ease;
}

.mail {
    position: relative;
    display: inline-block;
    font-size: 28px;
    text-decoration: none;
    color: #111;
    margin-bottom: 60px;
    font-weight: 500;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

.mail::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mail:hover {
    transform: translateY(-2px);
    color: #000;
}

.mail:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.socials {
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.socials a {
    position: relative;
    color: #555; 
    text-decoration: none; 
    font-size: 13px; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    padding: 5px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.socials a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #111;
    transition: width 0.3s ease, left 0.3s ease;
}

.socials a:hover {
    color: #111;
    transform: translateY(-3px);
}

.socials a:hover::after {
    width: 100%;
    left: 0;
}

.copyright {
    color: #888;
    font-size: 14px;
    line-height: 2;
    transition: color 0.3s ease;
}

.copyright:hover {
    color: #444;
}

/* =======================================================
   RESPONSIVE DESIGN (Tablets, Mobile, and Small Screens)
======================================================== */
@media (max-width: 1024px) {
    .content { left: 20%; } 
    .footer h2 { font-size: 45px; }
    .mail { font-size: 24px; }
}

@media (max-width: 768px) {
    .navbar {
        top: 20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .navbar ul { gap: 20px; }
    .navbar a { font-size: 13px; }

    .hero { height: 60vh; }
    .left { width: 100%; height: 100%; }
    .right { display: none; }

    .content {
        left: 5%;
        bottom: 15%;
        width: 90%;
    }
    .content h1 { font-size: 50px; } 

    /* Premium About Responsive Fixes */
    .about-premium { padding: 100px 6%; }
    .about-watermark { font-size: 35vw; }
    .about-title { font-size: 42px; }
    .about-paragraph { font-size: 16px; text-align: justify; }

    .footer { padding: 90px 6% 60px; }
    .footer h2 { font-size: 46px; margin-bottom: 25px; }
    .footer p { font-size: 15px; line-height: 1.7; margin-bottom: 35px; }
    .mail { font-size: 22px; margin-bottom: 45px; }
    .socials { gap: 25px; margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .navbar a { font-size: 11px; }
    .content h1 { font-size: 33px; }
    .content p { font-size: 12px; margin-top: 5px; }
    
    .footer { padding: 60px 5% 40px; }
    .footer h2 { font-size: 36px; }
    .mail { font-size: 18px; word-break: break-word; margin-bottom: 35px; }
    .socials { flex-direction: column; gap: 20px; }
    .socials a { font-size: 12px; }
}

@media (hover: none) {
    .mail:hover::after,
    .socials a:hover::after {
        transform: scaleX(0);
        width: 0;
    }
    .footer h2:hover,
    .mail:hover,
    .socials a:hover {
        transform: none; 
    }
}