* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0a0a0a;
  color: #f5f1e8;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

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

a {
  color: #d4af37;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(800px, 92%);
}

.section {
  padding: 80px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #d4af37;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

p {
  margin-top: 0;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.85)),
    radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 35%),
    linear-gradient(135deg, #111 0%, #0a0a0a 55%, #16110a 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 92%);
}

.eyebrow {
  color: #f0d98b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 28px;
  color: #f2ede2;
}

.hero-button {
  display: inline-block;
  padding: 14px 24px;
  border: 1px solid #d4af37;
  border-radius: 999px;
  color: #0a0a0a;
  background: #d4af37;
  font-weight: bold;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-button:hover {
  text-decoration: none;
  opacity: 0.92;
  transform: translateY(-2px);
}

.intro-section,
.storytelling-section,
.connection-section {
  background: #0d0d0d;
}

.featured-section {
  background: #111;
}

.quotes-section {
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.card {
  background: #171717;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #1f1f1f;
}

.card-content {
  padding: 22px 20px 24px;
}

.style {
  margin-top: 14px;
  color: #f0d98b;
  font-style: italic;
  font-size: 0.96rem;
}

blockquote {
  margin: 0 0 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #d4af37;
  border-radius: 10px;
}

blockquote p {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

cite {
  color: #f0d98b;
  font-style: normal;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  background: #080808;
}

.footer-content {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 220px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
