* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --text: #171717;
  --muted: #6a6a6a;
  --border: #e9e2d7;
  --accent: #193f32;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 700;
}

/* =============================
   HEADER
   ============================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

/* =============================
   HERO
   ============================= */
.hero {
  padding: 88px 0 48px;
}

.hero-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 48px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.98;
  max-width: 12ch;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

/* =============================
   SECTION HEADING
   ============================= */
.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  max-width: 760px;
}

/* =============================
   ARTICLES GRID
   3 columns max
   More cards continue below automatically
   ============================= */
.articles-section {
  padding: 28px 0 72px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  background: transparent;
}

.article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.article-thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ddd4c7, #e7e1d7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.article-link:hover .article-thumb {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
}

.article-body h3 {
  font-size: 1.16rem;
  line-height: 1.32;
  margin-bottom: 10px;
}

.article-body p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* =============================
   NEWSLETTER
   ============================= */
.newsletter-section {
  padding: 0 0 80px;
}

.newsletter-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.newsletter-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.newsletter-box p {
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
}

.newsletter-form button {
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

/* =============================
   FOOTER
   ============================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0 42px;
}

.footer-inner {
  text-align: center;
  color: var(--muted);
}

/* =============================
   REVEAL ANIMATION
   ============================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 980px) {
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav.open {
    display: flex;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner,
  .newsletter-box {
    padding: 26px;
  }
}
.article-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-tag {
  font-size: 0.75rem;
  color: #6b705c;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b705c;
  transition: color 0.3s ease;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.article-card:hover .read-more {
  color: #565b49;
}

.article-card:hover .arrow {
  transform: translateX(4px);
}
.previous-stories-section {
  padding: 70px 0 40px;
}

.previous-stories-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 24px;
}

.previous-stories-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollPreviousStories 40s linear infinite;
}

.previous-stories-marquee:hover .previous-stories-track {
  animation-play-state: paused;
}

.previous-story-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 340px;
  min-width: 340px;
  background: #ffffff;
  border-radius: 18px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.previous-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.previous-story-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

.previous-story-content h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #111827;
}

@keyframes scrollPreviousStories {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .previous-story-card {
    width: 280px;
    min-width: 280px;
  }

  .previous-story-card img {
    width: 78px;
    height: 78px;
  }

  .previous-story-content h3 {
    font-size: 0.88rem;
  }
}
.clap-container {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.clap-btn {
  font-size: 1.6rem;
  padding: 12px 18px;
  border-radius: 50px;
  border: none;
  background: #111;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clap-btn:hover {
  transform: scale(1.1);
  background: #2563eb;
}

.clap-info {
  font-size: 1rem;
  color: #444;
}
.quote-section {
  padding: 30px 0 10px;
}

.small-quote {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.quote-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 8px;
}

.small-quote blockquote {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #0f172a;
  font-weight: 600;
}

.quote-author {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #64748b;
}

.quote-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.quote-link:hover {
  text-decoration: underline;
}