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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  margin-bottom: var(--space-2);
}

p:last-child {
  margin-bottom: 0;
}

.font-script {
  font-family: var(--font-script);
  font-weight: 400;
}

.font-names {
  font-family: var(--font-names);
}

/* ─── Section Defaults ──────────────────────────────────────── */
section {
  padding: var(--space-12) var(--space-3);
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ─── Section Headings ──────────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-heading h2 {
  margin-bottom: var(--space-2);
  color: var(--black);
}

.section-heading .divider {
  width: 60px;
  height: 2px;
  background: var(--champagne-dark);
  margin: var(--space-2) auto 0;
}

/* ─── Utility Classes ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; letter-spacing: 0.15em; }
.text-muted { opacity: 0.7; }
.text-xs  { font-size: var(--text-xs); }
.text-sm  { font-size: var(--text-sm); }

.bg-white { background-color: var(--white); }
.bg-beige { background-color: var(--beige); }
.bg-champagne { background-color: var(--champagne); }
.bg-black { background-color: var(--black); color: var(--champagne); }

/* ─── Selection ─────────────────────────────────────────────── */
::selection {
  background-color: var(--champagne);
  color: var(--black);
}
