:root {
    --cream: #fffbeb;
    --pink: #f472b6;
    --mint: #6ee7b7;
    --text: #431407;
    --muted: #92400e;
    --white: #ffffff;
    --border-pink: rgba(244, 114, 182, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--cream);
    color: var(--text);
    font-family: 'Quicksand', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* ── Layout ──────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Nav ─────────────────────────────────────────── */
.site-nav {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    font-style: italic;
}

.logo span { color: var(--pink); }

.btn {
    background: var(--pink);
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

.btn:hover { transform: translateY(-2px); background: var(--text); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    color: var(--text);
}

.hero-lead {
    color: var(--muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 30px auto 0;
    font-weight: 500;
    line-height: 1.6;
}

/* ── Marketplace grid ───────────────────────────── */
.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0 120px;
}

.stall-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-pink);
    transition: transform 0.3s, border-color 0.3s;
}

.stall-card:hover { transform: translateY(-10px); border-color: var(--pink); }

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stall-card h3 {
    font-size: 1.2rem;
    margin: 0 0 12px;
    color: var(--text);
    font-weight: 700;
}

.stall-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Acquisition page ────────────────────────────── */
.acq-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: var(--cream);
}

.prospectus {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.nav-back {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.nav-back:hover { color: var(--pink); }

.acq-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(67, 20, 7, 0.05);
    border: 1px solid var(--border-pink);
}

.brand-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text);
}

.brand-logo span { color: var(--pink); }

.acq-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    margin: 0 0 40px;
    color: var(--text);
    font-weight: 700;
    line-height: 1.1;
}

.details { margin-bottom: 40px; }

.row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #fef2f2;
    font-size: 0.9rem;
}

.row:last-child { border-bottom: none; }

.d-label { color: var(--muted); font-weight: 500; }
.d-val { font-weight: 700; color: var(--text); }

.buy-btn {
    display: block;
    background: var(--text);
    color: #fff;
    padding: 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
}

.buy-btn:hover { background: var(--pink); transform: scale(1.05); }

.footer-note {
    margin-top: 30px;
    font-size: 0.75rem;
    color: var(--muted);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 800px) {
    .marketplace-grid { grid-template-columns: 1fr; }
    .acq-card { padding: 40px 24px; }
}

@media (max-width: 600px) {
    .btn { padding: 8px 16px; font-size: 0.78rem; }
}
