:root {
  --bg: #f8f5f0;
  --bg-warm: #f0ebe3;
  --fg: #1a1714;
  --fg-muted: #6b5f53;
  --accent: #c4956a;
  --accent-light: #dbb896;
  --accent-dark: #a07448;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 149, 106, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(196, 149, 106, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(160, 116, 72, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero-pre {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero h1 .umlaut {
  position: relative;
}

.hero h1 .umlaut::after {
  content: '\0308';
  position: absolute;
  left: 0;
  top: -0.08em;
  color: var(--accent);
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.hero-line {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 32px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── PHILOSOPHY ─── */
.philosophy {
  background: var(--bg-warm);
  padding: 120px 24px;
}

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

.philosophy-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 28px;
}

.philosophy h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--fg);
}

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

.philosophy em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-dark);
}

/* ─── PILLARS ─── */
.pillars {
  padding: 120px 24px;
}

.pillars-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar {
  padding: 32px 0;
  border-top: 1px solid var(--accent-light);
}

.pillar-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.pillar h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 14px;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

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

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

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

.closing-sub {
  font-size: 1rem;
  color: rgba(248, 245, 240, 0.65);
  line-height: 1.85;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--fg);
  border-top: 1px solid rgba(248, 245, 240, 0.08);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--bg);
}

.footer-details {
  font-size: 0.85rem;
  color: rgba(248, 245, 240, 0.45);
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-dot {
  opacity: 0.4;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .pillars-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pillar {
    padding: 28px 0;
  }

  .philosophy,
  .pillars,
  .closing {
    padding: 80px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 90vh;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 4.5rem;
  }
}
