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

img, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* CSS Custom Properties */
:root {
  --hero-bg: #0d1117;
  --primary: #1e3a5f;
  --accent: #c0392b;
  --gold: #b8860b;
  --bg: #f5f5f0;
  --bg-alt: #ffffff;
  --text: #1a1a1a;
  --text-on-dark: rgba(255,255,255,0.85);
  --text-muted: #6b7280;
  --text-muted-dark: rgba(255,255,255,0.45);
  --border: #e8e8e0;
  --border-dark: rgba(255,255,255,0.08);
}

/* Base typography */
html {
  font-size: 16px;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
}

p {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section base */
section {
  padding: 80px 0;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--primary);
  margin-bottom: 40px;
}

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

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: -20px 0 40px;
  line-height: 1.7;
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 32px;
}
