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

:root {
  --wine: #5c1a1a;
  --wine-dark: #3a0e0e;
  --wine-mid: #7a2424;
  --gold: #c8a96e;
  --gold-light: #dfc08a;
  --livid-brown: #8c6c72;
  --azure-black: #1f2937;
  --cream: #f5f0e8;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --bg-light: #ffffff;
  --bg-section: #f9f7f4;
  --bg-cards: #faf8f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tiktok Sans", sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

/* ========== SECTION GENERIC ========== */
section {
  padding: 90px 0;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
