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

/* ===== PALETTE ===== */
:root {
    --chocolate: #473427;
    --chocolate-light: #5a4a3f;
    --cream: #FFFEF2;
    --cream-dark: #F5F3E8;
    --soft-gray: #6B6B6A;
    --muted: #9A9A98;
    --charcoal: #333333;
    --dark: #1a1714;
    --white: #FEFEFE;
}

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 1.5rem;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.15;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 2.5rem;
    transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
    background: rgba(255, 254, 242, 0.97);
    padding: 1rem 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(71, 52, 39, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    flex: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    transition: color 0.4s ease;
}

.nav.scrolled .nav-logo {
    color: var(--chocolate);
}

.nav-monogram {
    width: 32px;
    height: auto;
}

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--cream);
    transition: opacity 0.3s ease, color 0.4s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--cream);
    transition: background 0.4s ease;
}

.nav.scrolled .nav-toggle span {
    background: var(--charcoal);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--chocolate);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 23, 20, 0.25) 0%,
        rgba(26, 23, 20, 0.5) 50%,
        rgba(26, 23, 20, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--cream);
    padding: 0 2rem;
    max-width: 700px;
    animation: fadeIn 1.5s ease-out;
}

.hero-monogram svg {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.3s forwards;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.5s forwards;
}

.hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 254, 242, 0.85);
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.7s forwards;
}

.hero-divider {
    width: 50px;
    height: 1px;
    background: rgba(255, 254, 242, 0.4);
    margin: 2rem auto;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.9s forwards;
}

.hero-launch {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.1s forwards;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
    padding: 10rem 2.5rem;
}

.philosophy-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 2.8rem;
    color: var(--chocolate);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.philosophy-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}

.philosophy-image {
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===== TICKER ===== */
.ticker {
    background: var(--chocolate);
    padding: 1rem 0;
    overflow: hidden;
}

.ticker-track {
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: ticker 50s linear infinite;
}

.ticker-item {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
}

.ticker-dot {
    color: var(--cream);
    opacity: 0.25;
    font-size: 1.2rem;
}

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

/* ===== COLLECTION ===== */
.collection {
    padding: 8rem 2.5rem;
    background: var(--white);
}

.collection-header {
    text-align: center;
    margin-bottom: 5rem;
}

.collection-header h2 {
    font-size: 2.8rem;
    color: var(--chocolate);
}

.collection-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--soft-gray);
    max-width: 600px;
    margin: 1.25rem auto 0;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.collection-card-image {
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 4/5;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.03);
}

.collection-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--chocolate);
    margin-bottom: 0.75rem;
}

.collection-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--soft-gray);
    max-width: 300px;
    margin: 0 auto;
}

/* ===== PROMISE ===== */
.promise {
    padding: 8rem 2.5rem;
    background: var(--cream-dark);
}

.promise-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.promise-item {
    flex: 1;
    text-align: center;
}

.promise-item h3 {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--chocolate);
    margin-bottom: 1rem;
}

.promise-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--soft-gray);
}

.promise-divider {
    width: 1px;
    height: 80px;
    background: var(--muted);
    opacity: 0.3;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* ===== FULL-BLEED ===== */
.fullbleed {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.fullbleed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fullbleed-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 23, 20, 0.45);
    padding: 2rem;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--cream);
    text-align: center;
    line-height: 1.5;
    max-width: 550px;
}

/* ===== NOTIFY ===== */
.notify {
    padding: 10rem 2.5rem;
    background: var(--cream);
}

.notify-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.notify h2 {
    font-size: 2.5rem;
    color: var(--chocolate);
    margin-bottom: 1.5rem;
}

.notify > .notify-inner > p:first-of-type {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--soft-gray);
    margin-bottom: 2rem;
}

.notify-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 1.5rem;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid var(--muted);
    border-right: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s ease;
}

.notify-form input::placeholder {
    color: var(--muted);
}

.notify-form input:focus {
    border-color: var(--chocolate);
}

.notify-form button {
    padding: 1rem 2rem;
    background: var(--chocolate);
    color: var(--cream);
    border: 1px solid var(--chocolate);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.notify-form button:hover {
    background: var(--chocolate-light);
}

.notify-note {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--cream);
    padding: 5rem 2.5rem 3rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 3rem;
}

.footer-monogram {
    width: 50px;
    height: auto;
    margin-bottom: 0.5rem;
}

.footer-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-tagline {
    color: var(--muted);
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(254, 254, 242, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .philosophy-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .philosophy-image img {
        height: 400px;
    }
    .promise-inner {
        flex-direction: column;
        gap: 3rem;
    }
    .promise-divider {
        width: 50px;
        height: 1px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    
    .hero h1 { font-size: 2.4rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-monogram svg { width: 90px; }
    
    .philosophy { padding: 6rem 1.5rem; }
    .philosophy-text h2 { font-size: 2rem; }
    
    .collection { padding: 6rem 1.5rem; }
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 400px;
    }
    .collection-header { margin-bottom: 3rem; }
    .collection-header h2 { font-size: 2rem; }
    
    .fullbleed { height: 50vh; }
    .quote { font-size: 1.3rem; }
    
    .notify { padding: 6rem 1.5rem; }
    .notify h2 { font-size: 2rem; }
    .notify-form { flex-direction: column; }
    .notify-form input {
        border-right: 1px solid var(--muted);
        border-bottom: none;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
