/* ============ Google Fonts ============ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

/* ============ Base ============ */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============ Typography ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}

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

.subtitle {
  font-family: var(--font-sub);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
}

/* ============ Links & Buttons ============ */
a {
  color: var(--gold);
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--gold-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--cream);
}

/* ============ Navigation ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.nav__logo span {
  color: var(--gold);
}
.nav__logo:hover {
  color: var(--cream);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--cream-dim);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--duration) var(--ease);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--gold) !important;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--duration) var(--ease);
}

/* ============ Section Utilities ============ */
.section {
  padding: var(--space-4xl) 0;
}

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

.section__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-family: var(--font-sub);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: var(--space-2xl);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__more {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============ Cards ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============ Footer ============ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}
.footer__brand-name span {
  color: var(--gold);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--text-dim);
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--text-dim);
}
.footer__social a:hover {
  color: var(--gold);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}
.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-dim);
}
.footer__links a:hover {
  color: var(--cream);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .nav__hamburger {
    display: flex;
  }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem var(--space-xl) var(--space-xl);
    background: var(--surface);
    border-left: 1px solid var(--border);
    transition: right var(--duration) var(--ease);
    gap: var(--space-lg);
  }
  .nav__links.open {
    right: 0;
  }
  .nav__links a {
    font-size: var(--text-base);
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 var(--space-md);
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: var(--text-2xl); }
}

/* ============ Gold Divider ============ */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-md) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============ Body offset for fixed nav ============ */
body {
  padding-top: 72px;
}
