/* ── TOKENS ── */
:root {
  --ivory:    #f7f3eb;
  --cream:    #eee7da;
  --paper:    #fffdf8;
  --charcoal: #262522;
  --muted:    #777269;
  --gold:     #b69a67;
  --gold2:    #d8c39a;
  --brown:    #75634e;
  --line:     rgba(38, 37, 34, 0.12);
  --shadow:   0 20px 55px rgba(49, 42, 31, 0.10);
  --radius:   22px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }
button, input { font: inherit; }
button { cursor: pointer; background: none; border: none; }

/* ── UTILITIES ── */
.container { width: min(1180px, 92%); margin: auto; }
.serif     { font-family: "Playfair Display", serif; }
.eyebrow   { text-transform: uppercase; letter-spacing: .25em; font-size: 11px; color: var(--gold2); font-weight: 700; margin-bottom: 14px; }
.section   { padding: 88px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.section-head h2 { font-family: "Playfair Display", serif; font-size: clamp(32px, 4vw, 44px); line-height: 1.08; margin: 8px 0; }
.section-head p  { color: var(--muted); max-width: 480px; font-size: 15px; line-height: 1.7; }

/* ── BUTTONS ── */
.btn { border: 1.5px solid var(--gold); padding: 13px 24px; border-radius: 999px; display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 13px; transition: .3s; letter-spacing: .01em; }
.btn.primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn.primary:hover { background: #a3875a; border-color: #a3875a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(182,154,103,.35); }
.btn.light   { color: #fff; border-color: rgba(255,255,255,.5); }
.btn.light:hover  { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn.dark    { color: var(--charcoal); border-color: var(--charcoal); }
.btn.dark:hover   { background: var(--charcoal); color: #fff; transform: translateY(-2px); }

/* ── TOAST ── */
.toast { position: fixed; left: 50%; bottom: 32px; transform: translate(-50%, 20px); background: var(--charcoal); color: #fff; padding: 13px 22px; border-radius: 99px; font-size: 13px; font-weight: 500; opacity: 0; pointer-events: none; transition: .3s; z-index: 60; white-space: nowrap; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ── CART BAR ── */
.cartbar { position: fixed; right: 24px; bottom: 24px; z-index: 40; background: var(--charcoal); color: #fff; padding: 14px 20px; border-radius: 999px; box-shadow: var(--shadow); font-size: 13px; font-weight: 600; display: none; align-items: center; gap: 10px; cursor: pointer; transition: .3s; }
.cartbar.show { display: flex; animation: slideUp .3s ease; }
.cartbar:hover { background: var(--brown); }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}
