/* Base and Variables */
:root {
    --bg-color: #fbfaf8;
    --text-primary: #1a1a1a;
    --text-secondary: #5c5c5c;
    --border-color: #e0ddd5;
    
    --accent: #8c7b64; /* Muted Beige/Gold */
    --accent-dark: #6b5c49;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-color);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, .logo, .footer-logo {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

i {
    font-style: italic;
    color: var(--accent);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(251, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

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

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-link:hover { color: var(--accent); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent);
}

.btn-outline {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 0;
    background: linear-gradient(to bottom, #f3efe6 0%, #fbfaf8 100%);
}

.hero-content { max-width: 800px; }

.hero-kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.hero-title {
    font-size: clamp(4rem, 10vw, 7rem);
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 1.5rem auto 0;
}

/* Collections Grid */
.collections {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.collection-card {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #ededed;
    margin-bottom: 2rem;
    transition: var(--transition);
}

/* Soft elegant colors for placeholders to emulate fashion photography */
.img-1 { background-color: #e5dfd3; }
.img-2 { background-color: #d1d4d0; }
.img-3 { background-color: #e2d1c3; }
.img-4 { background-color: #d8c3b9; }
.img-5 { background-color: #c0c5c1; }
.img-6 { background-color: #bfa89e; }

.collection-card:hover .image-placeholder {
    transform: scale(0.98);
    opacity: 0.9;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.card-content p { font-size: 0.95rem; }

/* Heritage Section */
.heritage {
    padding: 8rem 5%;
    background-color: #1a1a1a;
    color: #fbfaf8;
    text-align: center;
}

.heritage .section-title::after { background: var(--accent); }
.heritage p { color: #d0d0d0; }

.heritage-container {
    max-width: 800px;
    margin: 0 auto;
}

.heritage-text {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    line-height: 2;
    font-style: italic;
}

/* Waitlist */
.waitlist {
    padding: 8rem 5%;
    text-align: center;
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-container p { margin-bottom: 3rem; }

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-minimal {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.3s ease;
    text-align: center;
}

.input-minimal::placeholder {
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.input-minimal:focus { border-bottom-color: var(--text-primary); }

/* Loader */
.loader {
    width: 18px;
    height: 18px;
    border: 1px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
}

.hidden { display: none !important; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.success-msg {
    color: var(--accent);
    margin-top: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Footer */
.footer {
    padding: 5rem 5% 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.footer-links, .socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, .socials a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover, .socials a:hover { color: var(--text-primary); }

.copyright {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

/* Animations Reveals */
.reveal {
    opacity: 0;
    transform: translateY(20px); /* Softer translation */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3.5rem; }
    .heritage-text { font-size: 1.1rem; }
    .footer-content { flex-direction: column; text-align: center; }
}
