/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  color: #1a1a1a;
  background: #faf8f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); letter-spacing: -0.015em; }
h4 { font-size: 1.125rem; letter-spacing: -0.01em; }
p { margin-bottom: 1.25rem; max-width: 70ch; }
small, .small { font-size: 0.875rem; letter-spacing: 0.01em; }
.caption { font-size: 0.75rem; letter-spacing: 0.02em; color: #6b6b6b; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: #1a2a3a;
  color: #f0ece4;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8c547;
}
.nav-toggle { display: none; background: none; border: none; color: #f0ece4; font-size: 1.5rem; cursor: pointer; padding: 0.25rem; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c8c0b0;
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.nav-links a:hover, .nav-links a.active { color: #e8c547; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a2a3a;
  color: #a09888;
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.footer-brand .site-logo { margin-bottom: 0.75rem; display: inline-block; }
.footer-brand p { font-size: 0.875rem; max-width: 40ch; }
.footer-links h4 { font-family: 'Inter', sans-serif; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: #c8c0b0; margin-bottom: 0.75rem; }
.footer-links a { display: block; font-size: 0.875rem; color: #a09888; padding: 0.25rem 0; transition: color 0.2s; }
.footer-links a:hover { color: #e8c547; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.75rem; text-align: center; letter-spacing: 0.02em; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,42,58,0.85) 0%, rgba(26,42,58,0.3) 50%, rgba(26,42,58,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8c547;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(232,197,71,0.3);
}
.hero h1 { color: #faf8f5; max-width: 14ch; margin-bottom: 1rem; }
.hero p { color: #c8c0b0; font-size: 1.125rem; max-width: 55ch; margin-bottom: 2rem; }
.hero-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #e8c547;
  color: #1a2a3a;
  padding: 0.875rem 2rem;
  transition: background 0.2s;
}
.hero-cta:hover { background: #d4b33a; }

/* ===== SECTION ===== */
.section { padding: 4rem 1.5rem; }
.section-dark { background: #1a2a3a; color: #f0ece4; }
.section-light { background: #f4f0e8; }
.section-header { max-width: 1200px; margin: 0 auto 2.5rem; }
.section-header h2 { color: #1a2a3a; }
.section-dark .section-header h2 { color: #f0ece4; }
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8c547;
  margin-bottom: 0.5rem;
}

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }

/* ===== CARDS ===== */
.card {
  background: #fff;
  border: 1px solid #e8e0d0;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.card-image { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8c547;
  margin-bottom: 0.5rem;
  display: block;
}
.card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.9375rem; color: #5a5a5a; max-width: none; }
.card-link { display: block; color: inherit; }
.card-link:hover h3 { color: #c49a2e; }

/* ===== FEATURED ARTICLE ===== */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8e0d0;
}
.featured-article-image { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.featured-article-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-article-body .card-tag { margin-bottom: 0.75rem; }
.featured-article-body h2 { margin-bottom: 1rem; }
.featured-article-body p { font-size: 1rem; color: #5a5a5a; }
.featured-article-body .read-more {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a2a3a;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.featured-article-body .read-more:hover { color: #c49a2e; }

/* ===== CATEGORY BAR ===== */
.category-bar {
  background: #f4f0e8;
  border-bottom: 1px solid #e8e0d0;
  padding: 0.75rem 0;
  overflow-x: auto;
}
.category-bar-inner {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.category-bar a {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a5a5a;
  white-space: nowrap;
  transition: color 0.2s;
}
.category-bar a:hover { color: #1a2a3a; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: #1a2a3a;
  color: #f0ece4;
  padding: 3rem 1.5rem;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; }
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { color: #a09888; font-size: 1.125rem; max-width: 55ch; }

/* ===== CONTENT PAGE ===== */
.content-page { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.content-page h2 { margin-top: 2.5rem; }
.content-page h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.content-page p, .content-page li { font-size: 1.0625rem; line-height: 1.7; color: #2a2a2a; }
.content-page ul, .content-page ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.content-page li { margin-bottom: 0.5rem; }
.content-page .article-image { margin: 2rem 0; border: 1px solid #e8e0d0; }
.content-page .article-image img { width: 100%; }
.content-page .article-image .caption { padding: 0.75rem 1rem; background: #f4f0e8; }
.content-page .disclaimer {
  background: #f4f0e8;
  border-left: 3px solid #e8c547;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  font-size: 0.875rem;
  color: #5a5a5a;
}

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a5a5a;
  margin-bottom: 0.375rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d8d0c0;
  background: #fff;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1rem;
  color: #1a1a1a;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #1a2a3a; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #1a2a3a;
  color: #f0ece4;
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: #2a3a4a; }
.form-consent { font-size: 0.8125rem; color: #6b6b6b; margin-bottom: 1.25rem; }
.form-consent a { text-decoration: underline; }

/* ===== CONTACT INFO ===== */
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.contact-info-item { padding: 1.5rem; background: #fff; border: 1px solid #e8e0d0; }
.contact-info-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8c547;
  margin-bottom: 0.5rem;
}
.contact-info-item p { font-size: 0.9375rem; color: #2a2a2a; max-width: none; }

/* ===== 404 ===== */
.page-404 { text-align: center; padding: 6rem 1.5rem; }
.page-404 h1 { font-size: clamp(4rem, 10vw, 8rem); color: #e8c547; margin-bottom: 0.5rem; }
.page-404 p { margin: 0 auto 2rem; }
.page-404 .hero-cta { display: inline-block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a2a3a;
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-article-image { aspect-ratio: 16/10; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .hero { min-height: 60vh; }
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
