@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;500&display=swap');

:root {
  --black: #1A1A18;
  --red: #D00000;
  --red-dark: #A00000;
  --grey: #888;
  --cream: #F5F2EE;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--black);
  height: 64px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img { height: 36px; display: block; }

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--red); }

/* Hero */
.hero {
  background: var(--cream);
  padding: 140px 20px 60px;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.label {
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--grey);
  font-weight: 300;
  margin-bottom: 24px;
}

/* CTA Button */
.cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(208,0,0,0.25);
}

.cta:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 16px rgba(208,0,0,0.35);
}

/* Sections */
.section {
  padding: 48px 20px;
}

.section.alt { background: var(--white); }

.cta-section {
  background: var(--black);
  text-align: center;
}

.cta-section .h2 { color: var(--cream); }

.container {
  max-width: 900px;
  margin: 0 auto;
}

.container.narrow { max-width: 680px; }

/* Typography */
.h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}

.h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 8px;
}

.p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(26,26,24,0.8);
  margin-bottom: 12px;
}

.center { text-align: center; }

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

.three-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

.sidebar {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  border-left: 3px solid var(--red);
}

.card {
  background: var(--cream);
  border-radius: 8px;
  padding: 24px;
}

.list {
  list-style: none;
  padding: 0;
}

.list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

.list li:last-child { border-bottom: none; }

/* FAQ */
.faq {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq summary {
  padding: 16px 20px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  color: var(--black);
}

.faq summary::marker { display: none; }

.faq summary::after {
  content: '+';
  float: right;
  color: var(--red);
  font-weight: 400;
}

.faq[open] summary::after { content: '−'; }

.faq p {
  padding: 0 20px 16px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(26,26,24,0.75);
}

/* Blog */
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  border-left: 3px solid var(--red);
}

.blog-card .date {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 6px;
}

/* Footer */
.footer {
  background: var(--black);
  padding: 40px 20px;
  text-align: center;
}

.footer p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-bottom: 12px;
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer a:hover { color: #fff; }

/* Desktop */
@media (min-width: 768px) {
  .nav { height: 72px; }
  .nav-logo img { height: 40px; }
  .nav-links { gap: 28px; }
  .nav-links a { font-size: 14px; }
  
  .hero { padding: 160px 20px 80px; }
  .section { padding: 64px 20px; }
  
  .two-col { grid-template-columns: 3fr 2fr; }
  .three-col { grid-template-columns: repeat(3, 1fr); }
  .blog-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
}
