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

/* ===== DESIGN TOKENS ===== */
:root {
  /* Earth Tones */
  --forest-deep: #1a3a2a;
  --forest-mid: #2d5a3d;
  --forest-light: #4a7c5c;
  --soil-dark: #3e2723;
  --soil-mid: #5d4037;
  --soil-light: #6d4c41;
  --parchment: #f5f0e8;
  --parchment-warm: #ede4d3;
  --cream: #faf8f4;

  /* Haudenosaunee Purple & White */
  --wampum-purple: #4a2d6b;
  --wampum-purple-deep: #3a1d5b;
  --wampum-purple-light: #6b4d8a;
  --wampum-white: #f0ece4;

  /* Text */
  --text-primary: #2c2c2c;
  --text-secondary: #4a4a4a;
  --text-light: #f5f0e8;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1100px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== SECTION 1: HERO BANNER ===== */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(26, 58, 42, 0.65) 0%,
      rgba(74, 45, 107, 0.65) 100%);
  z-index: 1;
}

.hero__text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

.hero__title {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.hero__subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  letter-spacing: 1px;
}

/* ===== SECTION SHARED ===== */
section {
  padding: var(--section-padding);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--wampum-purple);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--forest-deep);
  line-height: 1.15;
  margin-bottom: 36px;
}

.body-copy {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 24px;
}

.secondary-copy {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-top: 12px;
}

/* ===== PULL QUOTE ===== */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--wampum-purple);
  border-left: 5px solid var(--wampum-purple);
  padding: 28px 0 28px 36px;
  margin: 48px 0;
  position: relative;
  background: linear-gradient(90deg,
      rgba(74, 45, 107, 0.06) 0%,
      transparent 100%);
}

.pull-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--wampum-purple-light);
  opacity: 0.25;
  position: absolute;
  top: -10px;
  left: 10px;
  line-height: 1;
}

/* ===== SECTION 2: GIFT ECONOMY (Two-column) ===== */
.gift-economy {
  background-color: var(--cream);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col__image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 40px;
}

/* ===== SECTION 3: FOREVER TREATY ===== */
.forever-treaty {
  background-color: var(--parchment);
}

.treaty-image-wrapper {
  max-width: 800px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.treaty-image-wrapper img {
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.treaty-text {
  max-width: 820px;
  margin: 0 auto;
}

/* ===== SECTION 4: SYNTHESIS ===== */
.synthesis {
  background-color: var(--cream);
}

.synthesis__banner {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0;
  margin-bottom: 0;
}

.synthesis__text-block {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 70px;
}

/* ===== SECTION 5: WORKS CITED ===== */
.works-cited {
  background-color: var(--forest-deep);
  padding: 60px 0;
}

.works-cited .section-label {
  color: var(--wampum-purple-light);
  opacity: 0.8;
}

.works-cited .section-heading {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.citation {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 36px;
  text-indent: -36px;
}

.footer-line {
  margin-top: 48px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
}

/* ===== DECORATIVE DIVIDER ===== */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-mid), var(--wampum-purple));
  border: none;
  margin: 0 0 40px 0;
  border-radius: 2px;
}

.divider--center {
  margin: 0 auto 40px auto;
}

/* ===== INTRO SECTION ===== */
.intro {
  background-color: var(--parchment);
  padding: 80px 0;
}

.intro-block {
  max-width: 820px;
  margin: 0 auto;
}

.text-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.text-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: rgba(74, 45, 107, 0.06);
  border-left: 3px solid var(--wampum-purple);
  padding: 12px 20px;
  border-radius: 0 6px 6px 0;
}

.text-tag strong {
  color: var(--forest-deep);
}

/* ===== ESSENTIAL UNDERSTANDING TAG ===== */
.eu-tag {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--parchment);
  border-radius: 8px;
  border: 1px solid rgba(74, 45, 107, 0.12);
}

.eu-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wampum-purple);
}

.eu-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-top: 10px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  html {
    font-size: 16px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col__image {
    position: static;
  }

  .pull-quote {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 24px;
  }

  section {
    padding: 64px 0;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .section-heading {
    font-size: 1.7rem;
  }

  .pull-quote {
    font-size: 1.15rem;
    padding: 20px 0 20px 24px;
    margin: 32px 0;
  }
}