:root {
  --bg: #faf8f4;
  --fg: #1a1a1a;
  --accent: #c0503c;
  --accent-light: #f2e6e3;
  --muted: #6b6259;
  --card-bg: #ffffff;
  --card-border: #e8e2da;
  --section-alt: #f3f0ea;
  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  padding: 100px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero h1 .accent {
  color: var(--accent);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

.hero-flourish {
  position: absolute;
  top: 60px;
  right: -20px;
  display: flex;
  gap: 8px;
  opacity: 0.12;
  transform: rotate(6deg);
}

.letter-block {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 6px;
}

/* Philosophy */
.philosophy {
  background: var(--section-alt);
  padding: 80px 24px;
}

.philosophy-inner {
  max-width: 680px;
  margin: 0 auto;
}

.philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.25;
}

.philosophy-text {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.philosophy-text:last-child {
  margin-bottom: 0;
}

/* Features */
.features {
  padding: 80px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Closing */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.closing-text {
  color: #a8a29e;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Footer */
.site-footer {
  padding: 32px 24px;
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.footer-divider {
  color: var(--card-border);
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 20px 50px;
  }

  .hero-flourish {
    display: none;
  }

  .philosophy,
  .features,
  .closing {
    padding: 60px 20px;
  }
}