*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#ffffff;
color:#222222;
line-height:1.8;
}

.container{
width:90%;
max-width:1280px;
margin:auto;
}

/* HEADER */

.site-header{
background:#ffffff;
border-bottom:1px solid #ececec;
position:sticky;
top:0;
z-index:1000;
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:28px 0;
}

.logo{
font-family:'Playfair Display',serif;
font-size:2rem;
font-weight:700;
color:#B08D57;
text-decoration:none;
}

.nav-links{
display:flex;
gap:40px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#222;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:#B08D57;
}

/* HERO */

.hero{
padding:90px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr;
gap:40px;
}

.hero-image img{
width:100%;
height:520px;
object-fit:cover;
border-radius:18px;
display:block;
object-position:center top;
}
.hero-image::after{
    display:none;
}
.hero-image img{
    filter:contrast(1.03) brightness(0.98);
}

.eyebrow{
color:#B08D57;
font-size:.85rem;
letter-spacing:4px;
text-transform:uppercase;
font-weight:600;
margin-bottom:20px;
}

.hero-content{
max-width:800px;
margin:auto;
text-align:center;
}

.hero-content h1{
font-family:'Playfair Display',serif;
font-size:4.5rem;
line-height:1.1;
margin-bottom:25px;
font-weight:600;
}

.hero-text{
font-size:1.15rem;
max-width:750px;
margin:auto;
color:#555;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    margin-top:30px;
}

.hero-buttons .btn-primary{
    width:auto;
    min-width:260px;
}

/* BUTTONS */

.btn-primary{
background:#B08D57;
color:white;
padding:14px 30px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-2px);
}

.btn-secondary{
border:1px solid #B08D57;
color:#B08D57;
padding:14px 30px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

/* ABOUT */

.about-section{
padding:110px 0;
}

.section-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:start;
}

.section-label{
color:#B08D57;
letter-spacing:4px;
font-size:.85rem;
font-weight:600;
margin-bottom:18px;
}

.about-section h2{
font-family:'Playfair Display',serif;
font-size:3.5rem;
line-height:1.1;
}

.about-section p{
color:#555;
margin-bottom:20px;
font-size:1.05rem;
}

/* BRANDS */

.brands-section{
padding:100px 0;
background:#faf9f6;
}

.section-heading{
text-align:center;
margin-bottom:60px;
}

.section-heading h2{
font-family:'Playfair Display',serif;
font-size:3rem;
}

.brand-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.brand-card{
background:white;
padding:35px;
border:1px solid #ece5da;
border-radius:14px;
text-align:center;
transition:.3s;
}

.brand-card h3{
font-family:'Playfair Display',serif;
font-size:1.7rem;
margin-bottom:8px;
color:#222;
}

.brand-card p{
color:#777;
font-size:.95rem;
}

.brand-card:hover{
transform:translateY(-5px);
box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.brand-card:hover{
transform:translateY(-5px);
border-color:#B08D57;
}

/* FEATURES */

.features-section{
padding:110px 0;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.feature-card{
background:#ffffff;
border:1px solid #ece5da;
padding:45px;
border-radius:16px;
transition:.3s;
}

.feature-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.feature-card h3{
font-family:'Playfair Display',serif;
font-size:1.8rem;
margin-bottom:16px;
color:#222222;
}

.feature-card p{
color:#666666;
font-size:1rem;
line-height:1.8;
}

/* CTA */

.cta-section{
padding:120px 0;
text-align:center;
background:#faf9f6;
}

.cta-section h2{
font-family:'Playfair Display',serif;
font-size:3.5rem;
margin-bottom:30px;
}

/* FOOTER */

.site-footer{
background:white;
border-top:1px solid #ececec;
padding:45px 0;
}

.footer-grid{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
}

.site-footer h3{
font-family:'Playfair Display',serif;
margin-bottom:10px;
color:#B08D57;
}

.site-footer p{
color:#666;
max-width:450px;
}

.footer-right{
display:flex;
gap:25px;
font-size:.95rem;
color:#666;
}

/* MOBILE */

@media(max-width:900px){

.hero-content h1{
font-size:3rem;
}

.section-grid{
grid-template-columns:1fr;
gap:40px;
}

.brand-grid{
grid-template-columns:repeat(2,1fr);
}

.feature-grid{
grid-template-columns:1fr;
}

.footer-grid{
flex-direction:column;
text-align:center;
}

@media(max-width:768px){

.header-container{
    flex-direction:column;
    gap:20px;
}

.nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
}

.logo{
    font-size:1.9rem;
}

.theme-toggle{
    margin-left:12px;
}

}

}

}

@media(max-width:600px){

.brand-grid{
grid-template-columns:1fr;
}

.hero-image img{
height:380px;
}

.hero-content h1{
font-size:2.4rem;
}

}
.stats-row{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:60px;
}

.stat-card{
background:#faf9f6;
border:1px solid #ece5da;
border-radius:14px;
padding:30px;
text-align:center;
}

.stat-card h3{
font-family:'Playfair Display',serif;
font-size:2.5rem;
color:#B08D57;
margin-bottom:10px;
}

.stat-card p{
color:#666;
font-size:.95rem;
}
.cta-text{
max-width:700px;
margin:0 auto 30px;
color:#666666;
font-size:1.05rem;
}
.theme-toggle{
    background:none;
    border:none;
    cursor:pointer;
    font-size:20px;
    margin-left:20px;
}

body.dark-mode{
    background:#121212;
    color:#f2f2f2;
}

body.dark-mode .site-header,
body.dark-mode .hero,
body.dark-mode .about-section,
body.dark-mode .brands-section,
body.dark-mode .features-section,
body.dark-mode .cta-section,
body.dark-mode .site-footer{
    background:#181818;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode .logo{
    color:#f5f5f5;
}

body.dark-mode p,
body.dark-mode a{
    color:#d0d0d0;
}

body.dark-mode .brand-card,
body.dark-mode .feature-card,
body.dark-mode .stat-card{
    background:#202020;
    border:1px solid #303030;
}

body.dark-mode .btn-secondary{
    color:#B08D57;
    border-color:#B08D57;
}
/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root{

--bg:#f8f6f2;
--card:#f4f1ec;
--text:#1f1f1f;
--muted:#6f6f6f;
--gold:#b9935a;
--border:#e4ddd2;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.6;
}

/* =========================
   NAVBAR
========================= */

.navbar{

display:flex;
justify-content:space-between;
align-items:center;

padding:32px 7%;

border-bottom:1px solid var(--border);
background:white;

position:sticky;
top:0;
z-index:100;
}

.logo a{

font-family:'Cormorant Garamond',serif;
font-size:3rem;
font-weight:700;

text-decoration:none;
color:var(--gold);

}

nav ul{

display:flex;
gap:40px;

list-style:none;
}

nav a{

text-decoration:none;
color:var(--text);

font-weight:500;
}

nav a.active{
color:var(--gold);
}

#themeToggle{

border:none;
background:none;
font-size:1.4rem;
cursor:pointer;

}

/* ==========================
   MATCH PAGE
========================== */

.match-intro{
    padding:90px 20px 50px;
    text-align:center;
}

.match-intro .container{
    max-width:850px;
    margin:0 auto;
}

.section-label{
    color:#B08D57;
    letter-spacing:3px;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:15px;
}

.match-intro h1{
    font-family:'Cormorant Garamond',serif;
    font-size:4rem;
    line-height:1.1;
    margin-bottom:20px;
}

.intro-text{
    color:#666;
    font-size:1.1rem;
    line-height:1.8;
}

/* ==========================
   FORM + IMAGE
========================== */

.match-layout{
    padding:20px 20px 90px;
}

.match-grid{
    max-width:1300px;
    margin:70 auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:150px;
    align-items:start;
}

.match-form-card{
    background:#ede6db;
    border:1px solid #d8cdbd;
    border-radius:24px;
    padding:40px;
}

.match-form-card h2{
    font-family:'Cormorant Garamond',serif;
    font-size:2.3rem;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:500;
}

.form-group select{
    width:100%;
    padding:16px;
    border:1px solid #d7d0c6;
    border-radius:12px;
    background:#fff;
    font-size:1rem;
}

.match-image img{
    width:130%;
    height:590px;
    object-fit:cover;
    border-radius:24px;
    display:block;
    margin-top:80px;
}

.btn-primary{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    background:#B08D57;
    color:white;
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-primary:hover{
    opacity:.9;
}

/* ==========================
   RESULTS
========================== */

.results-section{
    padding:0 20px 100px;
}

#results{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));
    gap:30px;
    margin-top:40px;
}

.watch-card{
    background:#fff;
    border:1px solid #ece6dc;
    border-radius:24px;
    overflow:hidden;
    transition:.3s;
    max-width:420px;
    width:100%;
}

.watch-card:hover{
    transform:translateY(-4px);
}

.watch-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.watch-info{
    padding:24px;
}

.watch-info h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    margin-bottom:10px;
}

.watch-brand{
    color:#B08D57;
    font-weight:600;
    margin-bottom:10px;
}

.watch-price{
    font-weight:700;
    margin-bottom:12px;
}

.watch-description{
    color:#666;
    line-height:1.7;
    margin-bottom:18px;
}

.add-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#B08D57;
    color:white;
    cursor:pointer;
    font-weight:600;
}

/* ==========================
   DARK MODE
========================== */

.dark-mode{
    background:#121212;
    color:#f1f1f1;
}

.dark-mode .match-form-card,
.dark-mode .watch-card{
    background:#1c1c1c;
    border-color:#333;
}

.dark-mode .form-group select{
    background:#262626;
    color:white;
    border-color:#3a3a3a;
}

.dark-mode .intro-text,
.dark-mode .watch-description{
    color:#bdbdbd;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.match-grid{
    grid-template-columns:1fr;
}

.match-image img{
    height:500px;
}

.match-intro h1{
    font-size:3rem;
}

}

@media(max-width:768px){

.match-form-card{
    padding:28px;
}

.match-intro h1{
    font-size:2.4rem;
}

.match-form-card h2{
    font-size:2rem;
}

}

.match-message{
    grid-column:1/-1;
    padding:20px;
    border-radius:14px;
    background:#faf8f5;
    border:1px solid #ece6dc;
    margin-bottom:20px;
    text-align:center;
}

.match-message h3{
    margin-bottom:8px;
}

.match-message.success{
    background:#f7f4ee;
}

.results-disclaimer{
    grid-column:1/-1;
    margin-top:30px;
    padding:18px 22px;
    background:#faf8f5;
    border:1px solid #ece6dc;
    border-radius:12px;
    font-size:14px;
    line-height:1.7;
    color:#777;
    text-align:center;
}
.dark-mode .match-message{
    background:#1c1c1c;
    border:1px solid #333;
}

.dark-mode .match-message h3{
    color:#ffffff;
}

.dark-mode .match-message p{
    color:#d0d0d0;
}
.dark-mode .results-disclaimer{
    background:#1c1c1c;
    border:1px solid #333;
    color:#bdbdbd;
}

/* ==========================
   COLLECTION PAGE
========================== */

#collectionResults{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:40px;
}

.collection-empty{
    text-align:center;
    padding:80px 30px;
    border:1px solid #ece6dc;
    border-radius:24px;
    background:#faf8f5;
}

.collection-empty h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2.5rem;
    margin-bottom:15px;
}

.collection-empty p{
    color:#777;
    max-width:500px;
    margin:0 auto 25px;
    line-height:1.8;
}

.collection-btn{
    display:inline-block;
    padding:14px 24px;
    background:#B08D57;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.remove-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#222;
    color:white;
    cursor:pointer;
    font-weight:600;
    margin-top:12px;
}

.clear-collection-wrap{
    grid-column:1/-1;
    text-align:center;
    margin-top:20px;
}

.clear-collection-btn{
    padding:14px 24px;
    border:none;
    border-radius:10px;
    background:#B08D57;
    color:white;
    cursor:pointer;
    font-weight:600;
}

.dark-mode .collection-empty{
    background:#1c1c1c;
    border-color:#333;
}

.dark-mode .collection-empty p{
    color:#bdbdbd;
}

.dark-mode .remove-btn{
    background:#333;
}

.dark-mode .clear-collection-btn{
    background:#B08D57;
}
.personality-section{
    padding:40px 20px 80px;
}

.personality-card{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:40px;
    align-items:center;

    padding:50px;
    border-radius:24px;

    background:#faf8f5;
    border:1px solid #ece6dc;
}

.personality-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    line-height:1.1;
    margin:0;
}

.personality-card p{
    font-size:1.15rem;
    line-height:1.9;
    margin:0;
}

@media(max-width:768px){

    .personality-card{
        grid-template-columns:1fr;
        text-align:center;
        padding:30px;
    }

    .personality-card h3{
        font-size:2.2rem;
    }

}
.dark-mode .personality-card{
    background:#1c1c1c;
    border:1px solid #333;
}

.dark-mode .personality-card h3{
    color:#ffffff;
}

.dark-mode .personality-card p{
    color:#d6d6d6;
}