:root {
  --bg: #F8F5F0;
  --bg-alt: #EDE8E0;
  --fg: #1A1A1A;
  --fg-muted: #6B6357;
  --accent: #C4965A;
  --accent-dark: #8C6D38;
  --sage: #7A8B6F;
  --cream: #FAF8F4;
  --border: #D8D0C4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ─── NAV ─── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--space-lg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-mark {
  color: var(--accent);
  font-size: 0.75rem;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(196, 150, 90, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(122, 139, 111, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--cream) 0%, var(--bg) 50%, var(--bg-alt) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cpath d='M0 500 L400 400 L400 500 Z' fill='%23C4965A' opacity='0.04'/%3E%3Cpath d='M0 480 L400 380 L400 500 Z' fill='%23C4965A' opacity='0.03'/%3E%3C/svg%3E") no-repeat bottom right;
  background-size: contain;
}

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

.hero-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 1.75rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 10ch;
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 360px;
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.06), 0 1px 4px rgba(26, 26, 26, 0.04);
}

.hero-card-1 { border-left: 3px solid var(--accent); }
.hero-card-2 { border-left: 3px solid var(--sage); transform: translateX(8px); }
.hero-card-3 { border-left: 3px solid var(--fg-muted); transform: translateX(16px); }

.card-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── WHAT IT IS ─── */
.what-it-is {
  padding: var(--space-xl) var(--space-lg);
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.section-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 55ch;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.what-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.what-card {
  background: var(--cream);
  padding: 2rem;
}

.what-card-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 300;
}

.what-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.what-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── FEATURES ─── */
.features {
  padding: var(--space-xl) var(--space-lg);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.feature-item:nth-child(2n) {
  border-right: none;
}

.feature-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--accent);
  padding-top: 0.25rem;
  font-style: italic;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.feature-content p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── PHILOSOPHY ─── */
.philosophy {
  padding: var(--space-xl) var(--space-lg);
  background: var(--fg);
  color: var(--cream);
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
  max-width: 24ch;
  margin-bottom: 1rem;
}

.philosophy-attribution {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(248, 245, 240, 0.4);
  margin-bottom: 3rem;
}

.philosophy-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.philosophy-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(248, 245, 240, 0.7);
}

.philosophy-attrs {
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(248, 245, 240, 0.1);
  padding-top: 2.5rem;
}

.philosophy-attr {}

.attr-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(248, 245, 240, 0.4);
  margin-bottom: 0.4rem;
}

.attr-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

/* ─── CLOSING ─── */
.closing {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--border);
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.closing-vision {
  max-width: 55ch;
  margin: 0 auto;
}

.closing-vision p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
  padding: 2rem var(--space-lg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.footer-logo-mark { color: var(--accent); font-size: 0.65rem; }

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

.footer-meta {
  font-size: 0.7rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .what-cards { grid-template-columns: 1fr; }
  .philosophy-body { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  :root { --space-lg: 2rem; --space-xl: 4rem; }
  .nav { padding: 1rem var(--space-md); }
  .nav-tagline { display: none; }
  .hero { padding: var(--space-lg) var(--space-md); }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-stat-divider { display: none; }
  .what-it-is, .features, .philosophy, .closing { padding: var(--space-lg) var(--space-md); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .philosophy-attrs { flex-direction: column; gap: 1.5rem; }
  .footer { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .section-heading { font-size: 1.75rem; }
  .closing-headline { font-size: 1.8rem; }
}