:root {
    --bg: #f5f3ef;
    --ink: #1a1a1a;
    --muted: #6b6862;
    --accent: #8a7355;
    --line: #ddd8cf;
    --max: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-weight: 300;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem clamp(1.5rem, 5vw, 4rem);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    background: rgba(245, 243, 239, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10;
}

.brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
}

.site-nav {
    display: flex;
    gap: 2rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--ink); }

/* Hero */
.hero {
    text-align: center;
    padding: clamp(5rem, 14vw, 10rem) clamp(1.5rem, 5vw, 4rem);
    max-width: var(--max);
    margin: 0 auto;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-cta {
    display: inline-block;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--ink);
    padding: 0.85rem 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    transition: background 0.25s ease, color 0.25s ease;
}

.hero-cta:hover { background: var(--ink); color: var(--bg); }

/* Sections */
.section-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 2.8rem);
    text-align: center;
    margin-bottom: 3rem;
}

.collection, .about, .contact {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 5vw, 4rem);
    border-top: 1px solid var(--line);
}

/* Collection */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.piece-image {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #e6e1d8, #d3ccc0);
    margin-bottom: 1.2rem;
}

.piece h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.piece p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* About */
.about p {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
    color: var(--muted);
    font-size: 1.1rem;
}

/* Contact */
.contact { text-align: center; }

.contact p {
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.contact-email {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.15rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}
