/* ===========================================
   BASE — Reset, Fonts, Body, Utilities
   =========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cinzel+Decorative:wght@400;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  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;
}

ul, ol {
  list-style: none;
}

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

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

textarea {
  resize: vertical;
}

/* ——— Selection ——— */
::selection {
  background: var(--color-accent-gold-mid);
  color: var(--color-bg-dark);
}

/* ——— Typography Scale (8px grid) ——— */
.text-display {
  font-family: var(--font-display);
  font-weight: 400;
}

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

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

/* ——— Utilities ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ——— Metallic Gold Text ——— */
.gold-text,
.section-label,
.card-link:hover,
.nav-links a:hover,
.nav-links a:focus-visible,
.mobile-nav-link:hover,
.form-success-text {
  background: var(--gold-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 6s ease-in-out infinite;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-3);
}

/* ——— Container ——— */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }
}
