/* ============================================================
   base.css — Reset, typography, shared section styles
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1.2;
}

/* ── Skip to content (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 0 0 4px 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Focus-visible — keyboard nav outlines ── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Shared section layout */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.section-header { margin-bottom: 3.5rem; }

/* Shared buttons */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* Responsive base */
@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
}
