/* ==========================================================
   LITHE V1
   PART 1
========================================================== */

/* ---------------- RESET ---------------- */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

:root{

--black:#050505;
--black-soft:#0A0A0A;
--gold:#C7A84A;
--gold-light:#E4C873;
--white:#F5F5F5;
--text:#B9B9B9;

}

body{

background:var(--black);

color:var(--white);

font-family:"Poppins",sans-serif;

overflow-x:hidden;

line-height:1.7;

}

/* ==========================================================
BACKGROUND
========================================================== */

body::before{

content:"";

position:fixed;

inset:0;

pointer-events:none;

background:

radial-gradient(circle at top,

rgba(199,168,74,.08),

transparent 45%),

radial-gradient(circle at bottom,

rgba(255,255,255,.015),

transparent 65%);

z-index:-2;

}

body::after{

content:"";

position:fixed;

inset:0;

pointer-events:none;

opacity:.03;

background-image:

radial-gradient(circle,#ffffff 1px,transparent 1px);

background-size:30px 30px;

z-index:-1;

}

/* ==========================================================
TYPOGRAPHY
========================================================== */

h1,
h2,
h3{

font-family:"Cormorant Garamond",serif;

font-weight:600;

letter-spacing:1px;

}

p{

color:var(--text);

}

/* ==========================================================
INTRO
========================================================== */

#intro{

position:fixed;

inset:0;

background:#050505;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

animation:introFade 5s forwards;

}

.intro-content{

text-align:center;

}

.intro-content h1{

font-size:130px;

letter-spacing:24px;

color:var(--gold);

opacity:0;

animation:logoReveal 2s forwards;

}

.intro-content p{

margin-top:20px;

letter-spacing:8px;

text-transform:uppercase;

font-size:13px;

opacity:0;

animation:lineReveal 2s .8s forwards;

}

#website{

opacity:0;

animation:websiteReveal 1.5s 4.6s forwards;

}

/* ==========================================================
HEADER
========================================================== */

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:500;

background:rgba(5,5,5,.55);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.05);

}

.navbar{

height:90px;

width:90%;

max-width:1450px;

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

font-size:42px;

font-family:"Cormorant Garamond",serif;

letter-spacing:14px;

color:var(--gold);

cursor:pointer;

transition:.4s;

}

.logo:hover{

letter-spacing:19px;

text-shadow:

0 0 20px rgba(199,168,74,.35);

}

.nav-links{

display:flex;

gap:55px;

list-style:none;

}

.nav-links a{

position:relative;

text-decoration:none;

color:white;

font-size:14px;

letter-spacing:3px;

text-transform:uppercase;

transition:.35s;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-9px;

width:0;

height:1px;

background:var(--gold);

transition:.35s;

}

.nav-links a:hover{

color:var(--gold);

}

.nav-links a:hover::after{

width:100%;

}

/* ==========================================================
HAMBURGER (mobile only)
========================================================== */

.hamburger{

display:none;

flex-direction:column;

justify-content:center;

gap:6px;

width:32px;

height:32px;

background:none;

border:none;

cursor:pointer;

padding:0;

z-index:600;

}

.hamburger span{

display:block;

width:100%;

height:1.5px;

background:var(--gold);

transition:.35s ease;

}

.hamburger.open span:nth-child(1){

transform:translateY(7.5px) rotate(45deg);

}

.hamburger.open span:nth-child(2){

opacity:0;

}

.hamburger.open span:nth-child(3){

transform:translateY(-7.5px) rotate(-45deg);

}

/* ==========================================================
MOBILE NAV OVERLAY
========================================================== */

.mobile-nav{

position:fixed;

inset:0;

background:rgba(5,5,5,.98);

backdrop-filter:blur(20px);

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

gap:38px;

opacity:0;

pointer-events:none;

transition:opacity .4s ease;

z-index:400;

}

.mobile-nav.active{

opacity:1;

pointer-events:all;

}

.mobile-nav a{

color:white;

font-family:"Cormorant Garamond",serif;

font-size:26px;

letter-spacing:3px;

text-transform:uppercase;

text-decoration:none;

transition:.3s ease;

}

.mobile-nav a:hover{

color:var(--gold);

}

/* ==========================================================
ANIMATIONS
========================================================== */

@keyframes logoReveal{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes lineReveal{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes introFade{

0%,80%{

opacity:1;

visibility:visible;

}

100%{

opacity:0;

visibility:hidden;

}

}

@keyframes websiteReveal{

from{

opacity:0;

}

to{

opacity:1;

}

}/* ==========================================================
HERO
========================================================== */

.hero{

position:relative;

min-height:100vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

padding:170px 8% 120px;

overflow:hidden;

}
.hero-glow{

position:absolute;

left:50%;

top:42%;

transform:translate(-50%,-50%);

width:950px;

height:950px;

border-radius:50%;

background:

radial-gradient(circle,

rgba(199,168,74,.12),

transparent 72%);

filter:blur(90px);

animation:heroGlow 10s ease-in-out infinite;

z-index:0;

}

.hero-content{

position:relative;

z-index:2;

width:100%;

max-width:1150px;

text-align:center;

}

.eyebrow{

letter-spacing:8px;

text-transform:uppercase;

font-size:13px;

color:var(--gold);

margin-bottom:30px;

}

.hero h1{

font-size:110px;

line-height:.88;

margin-bottom:25px;

color:white;

text-shadow:

0 18px 35px rgba(0,0,0,.45);

}

.hero-subtitle{

font-size:24px;

color:white;

opacity:.92;

margin-bottom:75px;

}

.hero-upload{

    width:720px;

    max-width:100%;

    margin:auto;

    padding:65px 55px;

    background:rgba(255,255,255,.02);

    border:1px solid rgba(199,168,74,.18);

    backdrop-filter:blur(18px);

    transform-style:preserve-3d;

    will-change:transform;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .35s ease,
        background .35s ease;

}

.hero-upload:hover{

    border-color:rgba(199,168,74,.42);

    box-shadow:

        0 35px 70px rgba(0,0,0,.45),

        0 0 30px rgba(199,168,74,.08);

}

.upload-orb{

font-size:52px;

color:var(--gold);

margin-bottom:18px;

}

.hero-upload h2{

font-size:46px;

margin-bottom:12px;

}

.hero-upload p{

margin-bottom:30px;

font-size:17px;

}

.upload-button{

padding:18px 48px;

border:1px solid var(--gold);

background:transparent;

color:white;

font-size:14px;

letter-spacing:4px;

text-transform:uppercase;

cursor:pointer;

transition:.4s;

}

.upload-button:hover{

background:var(--gold);

color:#111;

transform:translateY(-4px);

box-shadow:

0 0 28px rgba(199,168,74,.35);

}

.file-types{

margin-top:24px;

font-size:12px;

letter-spacing:5px;

text-transform:uppercase;

color:#8d8d8d;

}

.hero-divider{

width:90px;

height:1px;

margin:70px auto 35px;

background:linear-gradient(

90deg,

transparent,

rgba(199,168,74,.55),

transparent

);

}

.hero-tagline{

font-size:22px;

max-width:760px;

margin:auto;

color:var(--text);

line-height:2;

}

.scroll-hint{

margin-top:95px;

letter-spacing:8px;

text-transform:uppercase;

font-size:13px;

color:#8a8a8a;

}

@keyframes heroGlow{

0%{

transform:translate(-50%,-50%) scale(1);

}

50%{

transform:translate(-50%,-52%) scale(1.08);

}

100%{

transform:translate(-50%,-50%) scale(1);

}

}/* ==========================================================
SECTION HEADERS
========================================================== */

.section-header{

text-align:center;

margin-bottom:90px;

}

.section-header p{

color:var(--gold);

font-size:13px;

letter-spacing:8px;

text-transform:uppercase;

margin-bottom:18px;

}

.section-header h2{

font-size:72px;

line-height:.95;

}

/* ==========================================================
THE CRAFT
========================================================== */

.craft{

padding:180px 8%;

background:#080808;

}

.craft-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

max-width:1350px;

margin:auto;

}

.craft-card{

padding:55px 40px;

background:rgba(255,255,255,.02);

border:1px solid rgba(255,255,255,.05);

transition:.45s;

}

.craft-card:hover{

transform:translateY(-10px);

border-color:rgba(199,168,74,.35);

box-shadow:

0 25px 60px rgba(0,0,0,.35);

}

.number{

font-family:"Cormorant Garamond",serif;

font-size:58px;

color:var(--gold);

margin-bottom:22px;

}

.craft-card h3{

font-size:34px;

margin-bottom:15px;

}

/* ==========================================================
PHILOSOPHY
========================================================== */

.philosophy{

padding:180px 10%;

}

.philosophy-text{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.philosophy-text p{

    color:var(--text);

    font-size:22px;

    line-height:2;

    margin-top:40px;

}.philosophy-text h2{

    margin-bottom:40px;

    line-height:1.15;

}.philosophy-eyebrow{
    color:var(--gold);
    font-size:13px;
    letter-spacing:8px;
    text-transform:uppercase;
    margin-bottom:20px;
}

/* ==========================================================
LIVE PREVIEW
========================================================== */

.preview{

padding:180px 8%;

background:#070707;

}

.preview-flow{

display:flex;

justify-content:center;

align-items:center;

gap:40px;

flex-wrap:wrap;

}

.preview-item{

width:240px;

height:240px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

background:rgba(255,255,255,.02);

border:1px solid rgba(255,255,255,.05);

transition:.4s;

}

.preview-item:hover{

transform:translateY(-10px);

border-color:rgba(199,168,74,.35);

}

.preview-icon{

font-size:58px;

margin-bottom:20px;

}

.preview-item h3{

font-size:30px;

text-align:center;

}

.flow-arrow{

font-size:40px;

color:var(--gold);

}

/* ==========================================================
MEMBERSHIP
========================================================== */

.membership{

padding:180px 8%;

display:flex;

justify-content:center;

}

.membership-box{

max-width:900px;

padding:90px 70px;

text-align:center;

background:rgba(255,255,255,.025);

border:1px solid rgba(199,168,74,.18);

backdrop-filter:blur(18px);

box-shadow:

0 35px 70px rgba(0,0,0,.4);

}.membership-box:hover{

border-color:rgba(199,168,74,.4);

}

.membership-box p:first-child{

letter-spacing:8px;

text-transform:uppercase;

color:var(--gold);

margin-bottom:18px;

font-size:13px;

}

.membership-box h2{

font-size:74px;

margin-bottom:28px;

}

.membership-box p{

font-size:20px;

margin-bottom:40px;

}

/* ==========================================================
FOOTER
========================================================== */

footer{

width:100%;

padding:120px 8%;

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

text-align:center;

border-top:1px solid rgba(255,255,255,.05);

}

.footer-logo{

font-family:"Cormorant Garamond",serif;

font-size:56px;

letter-spacing:18px;

color:var(--gold);

margin-bottom:20px;

transition:.4s;

}

.footer-logo:hover{

letter-spacing:24px;

}

footer p{

margin:8px 0;

}/* ==========================================================
FINAL POLISH
========================================================== */

/* ---------- Elegant spacing ---------- */

section{

position:relative;

}

section:not(:last-of-type){

margin-bottom:40px;

}

section::after{

content:"";

display:block;

width:120px;

height:1px;

margin:120px auto 0;

background:linear-gradient(
90deg,
transparent,
rgba(199,168,74,.45),
transparent);

}

.membership::after,
footer::after{

display:none;

}

/* ---------- Luxury shadows ---------- */

.hero-upload,
.membership-box,
.craft-card,
.preview-item{

box-shadow:
0 20px 60px rgba(0,0,0,.35);

}

/* ---------- Hover refinement ---------- */

.hero-upload,
.craft-card,
.preview-item,
.membership-box{

transition:

transform .45s ease,

box-shadow .45s ease,

border-color .45s ease,

background .45s ease;

}.membership-box{

transition:

transform .45s ease,

box-shadow .45s ease,

border-color .45s ease,

background 0s;

}

.hero-upload:hover,
.craft-card:hover,
.preview-item:hover{

transform:translateY(-10px);

}

/* ---------- Premium scrollbar ---------- */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#050505;

}

::-webkit-scrollbar-thumb{

background:rgba(199,168,74,.35);

border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--gold);

}

/* ---------- Text selection ---------- */

::selection{

background:var(--gold);

color:#111;

}

/* ---------- Responsive ---------- */

@media(max-width:1100px){

.hero h1{

font-size:78px;

}

.section-header h2{

font-size:54px;

}

.membership-box h2{

font-size:54px;

}

.craft-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.logo{

font-size:30px;

letter-spacing:8px;

}

.intro-content h1{

    font-size:52px;

    letter-spacing:8px;

}

.intro-content p{

    font-size:11px;

    letter-spacing:4px;

    padding:0 20px;

    text-align:center;

}

.footer-logo{

    font-size:34px;

    letter-spacing:8px;

}

.nav-links{

display:none;

}

.hamburger{

display:flex;

}

.hero{

padding:150px 25px 100px;

}

.eyebrow{

font-size:10px;

letter-spacing:3px;

padding:0 15px;

word-break:break-word;

}

.hero h1{

font-size:52px;

}

.hero-subtitle{

font-size:18px;

padding:0 15px;

}

.hero-upload{

padding:45px 28px;

}

.hero-upload h2{

font-size:34px;

}

.hero-tagline{

font-size:18px;

padding:0 10px;

}

.preview-flow{

flex-direction:column;

}

.flow-arrow{

transform:rotate(90deg);

}

.section-header p{

font-size:10px;

letter-spacing:3px;

padding:0 15px;

word-break:break-word;

}

.section-header h2{

font-size:30px;

line-height:1.25;

padding:0 10px;

}

.philosophy-eyebrow{

font-size:10px;

letter-spacing:3px;

}

.membership-box{

padding:60px 30px;

}

}
/* ==========================================
CONTACT STRIP
========================================== */

.contact-strip{

max-width:1400px;

margin:140px auto 140px;

padding:0 80px;

display:flex;

flex-direction:column;

align-items:flex-start;

gap:26px;

}/* ==========================================
CONTACT HEADER
========================================== */

.contact-header{

width:100%;

text-align:center;

margin-bottom:70px;

}

.contact-header p{

color:var(--gold);

font-size:13px;

letter-spacing:8px;

text-transform:uppercase;

margin-bottom:18px;

}

.contact-header h2{

font-family:"Cormorant Garamond",serif;

font-size:68px;

font-weight:500;

line-height:1;

color:var(--white);

}

.contact-item{

display:flex;

flex-direction:column;

gap:8px;

}

.contact-item span{

font-size:12px;

letter-spacing:4px;

text-transform:uppercase;

color:var(--gold);

}

.contact-item a{

font-size:15px;

color:var(--white);

text-decoration:none;

transition:.35s ease;

}

.contact-item a:hover{

color:var(--gold);

letter-spacing:1px;

}

@media(max-width:768px){

.contact-header{

margin-bottom:50px;

}

.contact-header p{

letter-spacing:6px;

}

.contact-header h2{

font-size:46px;

}

.contact-strip{

margin:100px auto 70px;

padding:0 30px;

}

.contact-item{

width:100%;

}

.contact-item a{

font-size:14px;

word-break:break-word;

}

}