:root {
  --sage: #6B7B6E;
  --gold: #D4A574;
  --bg: #F8F5F0;
  --text: #2A2A2A;
  --text-light: #5A5A5A;
  --card-bg: #FFFFFF;
  --border: #E8E4DC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
}

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: rgba(248, 245, 240, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--sage);
}

/* Hero - Centered Minimalist */
.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
}

.hero p {
  font-size: 21px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 48px;
}

/* Buttons */
.pill-button {
  display: inline-block;
  background: var(--sage);
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
}

.pill-button:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.outline-button {
  background: transparent;
  border: 2px solid var(--sage);
  color: var(--sage);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.outline-button:hover {
  background: var(--sage);
  color: white;
}

/* Content Container */
.content-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* Intro */
.intro {
  font-size: 18.5px;
  color: var(--text-light);
  margin-bottom: 80px;
}

.intro p {
  margin-bottom: 28px;
}

/* Section Title */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text);
}

/* Article Grid - Asymmetric feel */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}

.article-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(107, 123, 110, 0.12);
  border-color: var(--sage);
}

.article-card .tag {
  display: inline-block;
  background: #F0EBE3;
  color: var(--sage);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  font-weight: 600;
}

.article-card h3 {
  font-size: 21px;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--text);
}

.article-card .excerpt {
  color: var(--text-light);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  gap: 12px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(42, 42, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg);
  max-width: 680px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  max-height: 85vh;
  overflow-y: auto;
}

.modal-header {
  padding: 32px 40px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-header h2 {
  font-size: 26px;
  max-width: 85%;
}

.close-btn {
  font-size: 36px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 40px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-light);
}

/* Form */
.form {
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14.5px;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer */
footer {
  background: #2A2A2A;
  color: #CFCFCF;
  padding: 70px 24px 40px;
  margin-top: 100px;
}

.footer-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  margin-bottom: 12px;
  font-size: 14.5px;
}

.legal {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #444;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.legal a {
  color: #999;
}

.legal a:hover {
  color: #D4A574;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero h1 {
    font-size: 42px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
}