:root {
  /* Colors */
  --primary-gold: #d4af37;
  --gold-light: #f4e4bc;
  --gold-dark: #b8941f;
  --navy-dark: #1a2b44;
  --navy-darker: #14223a;
  --navy-deepest: #0f1a2e;
  --text-primary: #d4af37;
  --text-secondary: #f4e4bc;
  --text-muted: #c4b078;
  --white: #ffffff;
  --black: #000000;
  --bg-primary: #0a1628;
  --bg-secondary: #0f1e36;
  --bg-tertiary: #1a2942;
  --text-light: #b8c5d6;
  --text-white: #ffffff;
  --text-gray: #e2e8f0;
  --border-dark: #2a3f5f;
  --bg-dark: #1a202c;
  --bg-gray: #2d3748;
  --bg-gray-light: #4a5568;
  --focus-yellow: #f6e05e;
  --border-color: rgba(212, 175, 55, 0.3);
  --border-color-light: rgba(212, 175, 55, 0.2);
  --hover-bg: rgba(212, 175, 55, 0.15);
  --card-bg: rgba(212, 175, 55, 0.08);
  --card-bg-alt: rgba(212, 175, 55, 0.12);
  --card-bg-light: rgba(212, 175, 55, 0.05);
  --buy-green: #22c55e;
  --buy-green-dark: #16a34a;
  --buy-green-shadow: rgba(34, 197, 94, 0.35);
  --overlay-dark: rgba(0, 0, 0, 0.8);
  --overlay-navy: rgba(15, 26, 46, 0.95);
  --overlay-navy-light: rgba(15, 26, 46, 0.8);
  --overlay-navy-lighter: rgba(15, 26, 46, 0.98);
  --overlay-contact: rgba(20, 34, 58, 0.3);
  --shadow-gold: rgba(212, 175, 55, 0.2);
  --shadow-gold-light: rgba(212, 175, 55, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.3);
  --shadow-darker: rgba(0, 0, 0, 0.35);
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-longer: all 0.6s ease-in-out;
  
  /* Typography */
  --header-font-family: "Oswald", serif;
  --text-font-family: "Montserrat", serif;
  
  /* Font Sizes */
  --font-xs: 0.6em;
  --font-sm: 0.8rem;
  --font-sm-plus: 0.875rem;
  --font-base: 0.9rem;
  --font-base-plus: 0.95rem;
  --font-md: 1rem;
  --font-lg: 1.1rem;
  --font-lg-plus: 1.125rem;
  --font-xl: 1.2rem;
  --font-xl-plus: 1.25rem;
  --font-2xl: 1.3rem;
  --font-2xl-plus: 1.4rem;
  --font-3xl: 1.5rem;
  --font-3xl-plus: 1.75rem;
  --font-4xl: 1.8rem;
  --font-5xl: 2rem;
  --font-6xl: 2.2rem;
  --font-7xl: 2.5rem;
  --font-8xl: 3rem;
  --font-9xl: 3.5rem;
  
  /* Spacing */
  --spacing-xs: 10px;
  --spacing-sm: 15px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 40px;
}

/* Prevent media from causing horizontal overflow */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--bg-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2 {
  font-family: var(--header-font-family);
  font-weight: 600;
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}
a:focus {
  color: var(--gold-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 30px;
  border: 2px solid var(--primary-gold);
  border-radius: 6px;
  background: transparent;
  color: var(--primary-gold);
  cursor: pointer;
  font-size: var(--font-base);
  font-family: inherit;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2rem;
}

.btn:hover,
.btn:focus {
  background: var(--primary-gold);
  color: var(--bg-primary);
  transform: translateX(5px);
  outline: none;
}

.section {
  padding: 60px 20px;
}

.section-alt {
  background: var(--card-bg);
}

/* Background gradient utility - use with data-bg-from and data-bg-to attributes */
.bg-gradient {
  background: linear-gradient(135deg, var(--gradient-from, var(--bg-primary)) 0%, var(--gradient-to, var(--bg-secondary)) 100%);
}
.bg-gradient-2 {
  --gradient-from: var(--bg-secondary);
  --gradient-to: var(--bg-tertiary);
}
.bg-gradient-3 {
  --gradient-from: var(--bg-secondary);
  --gradient-to: var(--bg-primary);
}
.bg-gradient-4 {
  --gradient-from: var(--bg-tertiary);
  --gradient-to: var(--bg-secondary);
}
.bg-gradient-5 {
  --gradient-from: var(--bg-primary);
  --gradient-to: var(--bg-tertiary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 4px var(--shadow-dark);
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-size: var(--font-xl-plus);
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}

.section-text {
  font-size: var(--font-lg);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-text--small {
  font-size: var(--font-base);
  margin-bottom: 0;
}

.section-text.muted {
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--navy-deepest);
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 0;
  text-align: center;
  margin-top: 4rem;
}

.copyright {
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-025 {
  gap: 0.25rem;
}
.gap-05 {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-4 {
  gap: 4rem;
}

.m-0 {
  margin: 0;
}
.mb-05 {
  margin-bottom: 0.5rem;
}
.mb-075 {
  margin-bottom: 0.75rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-15 {
  margin-bottom: 1.5rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-6 {
  margin-bottom: 6rem;
}
.mt-0 {
  margin-top: 0;
}
.mt-025 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 2rem;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--primary-gold);
}

.text-2xl {
  font-size: var(--font-2xl);
}
.text-3xl {
  font-size: var(--font-3xl);
}
.italic {
  font-style: italic;
}

.list-unstyled {
  list-style: none;
}

.w-100 {
  width: 100%;
}
.max-w-40 {
  max-width: 40%;
}
.max-w-50 {
  max-width: 50%;
}
.max-w-450 {
  max-width: 450px;
}

.max-w-900 {
  max-width: 900px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.row-divider {
  border-bottom: 1px solid var(--border-color);
}

.price {
  font-size: var(--font-2xl);
  color: var(--primary-gold);
}
.price-md {
  font-size: var(--font-3xl-plus);
  color: var(--primary-gold);
}
.price-lg {
  font-size: var(--font-5xl);
  color: var(--primary-gold);
}

.text-muted {
  color: var(--text-muted);
}
.text-secondary {
  color: var(--text-secondary);
}
.text-sm {
  font-size: var(--font-sm-plus);
}
.text-md {
  font-size: var(--font-md);
}
.text-lg {
  font-size: var(--font-lg-plus);
}


.justify-center {
  justify-content: center;
}

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


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
