/* ==========================================================================
   Reset & Base Typography
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--color-body);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ---- Headings ---- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
  color: var(--color-dark);
  text-transform: uppercase;
}

h1 { font-size: var(--fs-hero-title); }
h2 { font-size: var(--fs-section-title); }
h3 { font-size: var(--fs-card-title); }

p {
  margin-bottom: 1em;
}

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

/* ---- Section Tag (small label above headings) ---- */

.section-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--fs-section-tag);
  font-weight: var(--fw-regular);
  color: var(--color-dark);
  margin-bottom: 12px;
  gap: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 3px;
  flex-shrink: 0;
}

/* ---- Section Title ---- */

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-title span,
.section-title .gold {
  color: var(--color-gold);
}

/* ---- Container ---- */

.container {
  width: 100%;
  max-width: var(--container-content);
  margin: 0 auto;
  padding: 0 15px;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 15px;
}

/* ---- Section Wrapper ---- */

.section {
  padding: var(--section-py) 0;
  position: relative;
}

/* ---- Utility ---- */

.text-gold   { color: var(--color-gold); }
.text-white  { color: var(--color-white); }
.text-muted  { color: var(--color-muted); }
.text-center { text-align: center; }
.text-upper  { text-transform: uppercase; }

.bg-dark     { background-color: var(--color-dark); }
.bg-gold     { background-color: var(--color-gold); }
.bg-cream    { background-color: var(--color-gold-light); }
.bg-white    { background-color: var(--color-white); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
