

/*HOME*/
:root {
    --burgundy: #720000;
    --dark: #0a0a0a;
    --cream: #fffde4;
    --yellow: #e2cf97;
    --gray: #aaaaaa;
    --gold-gradient: linear-gradient(-90deg, #eecb55, #fff8b5, #c5913e, #eecb55);

    --section-padding: clamp(80px, 12vh, 160px);
    --h1-size: clamp(3rem, 12vw, 6.5rem);
    --h2-size: clamp(2.4rem, 8vw, 4.8rem);
    --h3-size: clamp(1.8rem, 4vw, 2.8rem);

    --h1-size: clamp(2.8rem, 10vw, 5.8rem);
    --h2-size: clamp(2.4rem, 8vw, 4rem);
    --h3-size: clamp(1.5rem, 3vw, 2.2rem);

    --p-size: clamp(1rem, 1.2vw, 1.15rem);

    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);

    --max-width: clamp(1200px, 80vw, 1600px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--burgundy);
    font-family: 'Montserrat', sans-serif;
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.25;
}
p { font-size: var(--p-size); font-weight: 300; opacity: 0.9; }

strong { font-weight: 600; color: var(--dark); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 6%; }
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*display: inline-block;*/
}


/* BUTTONS */
.btn {
    padding: 20px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: 0.5s var(--ease-out-expo);
    position: relative;
    z-index: 2;
    overflow: hidden;

    /*display: inline-block;*/
    /*margin-top: 20px;*/
}

.btn-gold { border: 1px solid var(--yellow); color: var(--yellow); }
.btn-gold:hover { background: var(--yellow); color: var(--burgundy); transform: translateY(-3px); }

.btn-cream { background: var(--cream); color: var(--burgundy); }
.btn-cream:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.btn-burgundy { background: var(--burgundy); color: var(--cream); }
.btn-burgundy:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }






/* --- HEADER --- */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 50px 6%; 
    position: relative;
    z-index: 100;
    animation: fadeIn 1.5s var(--ease-out-expo);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-main {
    height: clamp(120px, 12vw, 160px);
    transition: 0.5s var(--ease-out-expo);
}
.logo-main:hover { transform: scale(1.02); }
.logo-mobile { display: none; height: 85px; }

.nav-links { display: flex; gap: 12px; }
.nav-links a { 
    padding: 10px 12px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.6rem;
    background-color: var(--burgundy);
    color: var(--cream);
    text-transform: uppercase; 
    letter-spacing: 3px;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--burgundy);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { width: 100%; }

.nav-home { 
    position: absolute;
    top: 0;
    width: 100%;
}









/* FIXED BURGER BUTTON */
.burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    position: fixed; 
    top: 50px;
    right: 6%;
    z-index: 2000; 
    padding: 16px;
    background-color: var(--cream);
    border-radius: 50%;
}
.burger div {
    width: 35px;
    height: 3px;
    /*border-radius: 50%;*/
    background-color: var(--burgundy);
    margin: 8px 0;
    transition: all 0.5s var(--ease-out-expo);
}

.burger.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
    background-color: var(--dark);
}
.burger.active .line2 {
    opacity: 0; }
.burger.active .line3 {
    transform: rotate(45deg) translate(-8px, -8px);
    background-color: var(--dark);
}






/* FULL SCREEN MENU */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--burgundy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    z-index: 1500;
}
.mobile-overlay.active { transform: translateY(0); }
.mobile-overlay a {
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s var(--ease-out-expo);
}
.mobile-overlay.active a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}










/* HERO */
.hero-wrapper {
    background-color: var(--cream);
    color: var(--burgundy);
    border-radius: 0 0 80px 80px;
    padding-bottom: var(--section-padding);
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-wimg { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 100px;
    align-items: center; 
}
.hero-img { 
    width: 100%; 
    border-radius: 50px; 
    box-shadow: 0 40px 80px rgba(0,0,0,0.15); 
    transition: transform 1.5s var(--ease-out-expo);
}
.hero-img:hover { transform: scale(1.03); }
.hero-content h1 { 
    font-size: var(--h1-size); 
    font-style: italic; 
    margin-bottom: 30px; 
}
.subtitle { 
    font-weight: 600; 
    margin-bottom: 35px; 
    text-transform: uppercase; 
    font-size: 1rem; 
    letter-spacing: 5px; 
}


/* --- HERO VIDEO SECTION --- */
.hero-video-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: var(--dark);*/
    border-radius: 0 0 80px 80px;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.4) grayscale(0.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.hero-content-video {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: var(--max-width);
    padding: 0 20px;
    margin-top: 15vh;
}

.hero-content-video h1 {
    font-size: var(--h1-size);
    margin-bottom: 20px;
    color: var(--cream);
}
.hero-content-video p {
    /*font-size: 1.2rem;*/
    margin-bottom: 40px;
    color: var(--yellow);
    letter-spacing: 1px;
}

















/* INDEX */


/* --- CONTENT BLOCKS --- */
.section-intro { padding: var(--section-padding) 0; text-align: center; background: var(--burgundy); }
.section-intro h2 { font-size: var(--h2-size); margin-bottom: 40px; }
.section-intro p { max-width: 800px; margin: 0 auto 30px; }

.who-we-are { padding: var(--section-padding) 0; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.who-we-are ul { list-style: none; margin-top: 30px; }
.who-we-are li { margin-bottom: 15px; padding-left: 30px; position: relative; color: var(--yellow); font-weight: 500; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem;}
.who-we-are li::before { content: '—'; position: absolute; left: 0; color: var(--yellow); }

/* --- STAGGER REVEAL GRID --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 80px; }
.process-step { background: rgba(255,255,255,0.03); padding: 50px 40px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); opacity: 0; transform: translateY(20px); transition: 0.8s var(--ease-out-expo); }
.process-step.active { opacity: 1; transform: translateY(0); }
.process-step:hover { background: rgba(255,255,255,0.07); transform: translateY(-10px); border-color: var(--yellow); }
.process-step span { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--yellow); display: block; margin-bottom: 20px; opacity: 0.5; }
.process-step h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--yellow); }

/* --- PHILOSOPHY --- */
.philosophy-section { background: var(--cream); color: var(--burgundy); padding: var(--section-padding) 0; border-radius: 80px;     margin-bottom: 100px; }
.philosophy-section h2 { color: var(--burgundy); margin-bottom: 60px; text-align: center;}
.philosophy-row { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; margin-bottom: 120px; }

/* --- TESTIMONIALS --- */
.testimonials {
    padding: var(--section-padding) 0;
    text-align: center;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: -120px;
    padding-bottom: 200px;
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.testi-card { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--yellow); padding: 30px; }
.testi-card span { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-style: normal; text-transform: uppercase; margin-top: 20px; letter-spacing: 3px; color: var(--cream); opacity: 0.6;}

















/*THE FOUNDER*/


/* EXPERTISE */
.expertise { padding: var(--section-padding) 0; text-align: center; }
.expertise-intro { 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 6px; 
    margin-bottom: 25px; 
    color: var(--yellow);
}
.expertise h2 { font-size: var(--h2-size); margin-bottom: 100px; }

.expertise-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 60px; 
    margin-bottom: 100px; 
}

.expert-card { 
    background: rgba(255, 255, 255, 0.03);
    padding: 80px 50px; 
    border-radius: 40px; 
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.6s var(--ease-out-expo);
}
.expert-card:hover { transform: translateY(-15px); border-color: var(--yellow); background: rgba(255, 255, 255, 0.06); }
.expert-card img { width: 70px; margin-bottom: 40px;}
.expert-card h3 { font-size: var(--h3-size); margin-bottom: 25px; color: var(--yellow); }

/* METHOD CARDS */
.method-card {
    border-radius: 80px;
    padding: clamp(100px, 15vw, 160px) 10%;
    margin: 120px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.method-card.dark { border: 15px solid var(--cream); background: transparent; }
.method-card.light { background-color: var(--cream); color: var(--burgundy); }

.method-tbrgold { position: absolute; left: 5%; top: 10%; height: 80%; opacity: 0.15; pointer-events: none; }
.method-dnagold { position: absolute; right: 0; top: 0; height: 110%; opacity: 0.4; pointer-events: none; z-index: 1; }
.method-tbrred { position: absolute; right: 5%; top: 10%; height: 80%; opacity: 0.15; pointer-events: none; }
.method-dna { position: absolute; left: -5%; top: 0; height: 100%; opacity: 0.15; pointer-events: none; }

.method-card h2 { font-size: var(--h2-size); margin-bottom: 30px; position: relative; z-index: 2; }
.method-card .tagline { text-transform: uppercase; letter-spacing: 6px; font-size: 0.9rem; font-weight: 700; margin-bottom: 50px; position: relative; z-index: 2; }
.method-card p { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

/* QUOTE */
.quote-container { text-align: center; padding: 140px 0; }
.quote-text { font-size: clamp(2.2rem, 6vw, 3.8rem); line-height: 1.1; color: var(--yellow); max-width: 1200px; margin: 0 auto; font-style: italic; }

/* EDITORIAL GRID */
.editorial-section { padding: var(--section-padding) 0; }

.editorial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center; 
    margin-bottom: 150px;
}

.editorial-img { 
    width: 100%; 
    border-radius: 50px; 
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    object-fit: cover;
    transition: 1s var(--ease-out-expo);
}
.editorial-img:hover { transform: scale(1.02); }

.editorial-text { padding: 20px 0; }
.editorial-text h2 { font-size: var(--h3-size); margin-bottom: 45px; }
.editorial-text p { margin-bottom: 50px; max-width: 600px; }







/* SKINREHAB */

.skinrehab { padding: var(--section-padding) 0; text-align: center; }
.coskinrehabntact-intro { 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 6px; 
    margin-bottom: 25px; 
    color: var(--yellow);
}
.skinrehab h2 { font-size: var(--h2-size); margin-bottom: 100px; }

.skinrehab-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 60px; 
    margin-bottom: 100px; 
}

.skinrehab-card { 
    background: rgba(255, 255, 255, 0.03);
    padding: 80px 50px; 
    border-radius: 40px; 
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.6s var(--ease-out-expo);
}
.skinrehab-card:hover { transform: translateY(-15px); border-color: var(--yellow); background: rgba(255, 255, 255, 0.06); }
.skinrehab-card img { width: 70px; margin-bottom: 40px; }
.skinrehab-card h3 { font-size: var(--h3-size); margin-bottom: 25px; color: var(--yellow); }









/* CONTACT */
.contact {
    /*padding: var(--section-padding) 0;*/
    text-align: center;
}
.contact-intro { 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 6px; 
    margin-bottom: 25px; 
    color: var(--burgundy);
}
.contact h2 { font-size: var(--h2-size); margin-bottom: 100px; }

.contact-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 60px; 
    margin-bottom: 100px; 
}

.contact-card { 
    background: rgba(255, 255, 255, 0.03);
    padding: 80px 50px; 
    border-radius: 40px; 
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.6s var(--ease-out-expo);
}
.contact-card:hover { transform: translateY(-15px); border-color: var(--burgundy); background: rgba(255, 255, 255, 0.06); }
.contact-card img { width: 70px; margin-bottom: 40px; }
.contact-card h3 { font-size: var(--h3-size); margin-bottom: 25px; color: var(--burgundy); }
















/* --- ANIMATION CLASSES --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.stagger-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
















/* FOOTER */
footer {
    background-color: var(--dark);
    border-top: 15px solid var(--cream);
    padding: 60px 0 60px;
    border-radius: 120px 120px 0 0;
}
.footer-logo { height: 180px; display: block; margin: 0 auto 80px; }


.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 80px;
}
.footer-links h4 { color: var(--yellow); font-size: 1rem; text-transform: uppercase; letter-spacing: 5px; margin-bottom: 45px; }
.footer-links a { display: block; color: var(--cream); text-decoration: none; margin-bottom: 25px; opacity: 0.6; transition: 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--yellow); padding-left: 5px; }
.socials { display: flex; gap: 35px; margin-top: 40px; }
.socials img { width: 55px; transition: 0.4s var(--ease-out-expo); }
.socials img:hover { transform: translateY(-5px); filter: brightness(1.2); }


footer .copyright {
    text-align: center; font-size: 0.75rem; opacity: 0.2; margin-top: 80px; letter-spacing: 5px; text-transform: uppercase;
}



















/* RESPONSIVE */
@media (max-width: 992px) {

    .hero-wimg, .footer-grid, .editorial-row { grid-template-columns: 1fr; text-align: center; }
    .editorial-row { gap: 60px; }
    .editorial-text p { margin: 0 auto 40px; }
    .nav-links { display: none; }
    .burger { display: block; }
    .logo-main { display: none; }
    .logo-mobile { display: block; }
    .container { padding: 0 8%; }
    .method-card { border-radius: 50px; }
    .socials { justify-content: center; }

    .who-we-are, .philosophy-row, .testi-grid { grid-template-columns: 1fr; text-align: center; }

    .method-tbrgold, .method-dnagold, .method-tbrred, .method-dna { display: none !important; }
}

