:root {
  --bg: #faf6f0;
  --bg-warm: #f3ece2;
  --bg-deep: #2c2420;
  --fg: #2c2420;
  --fg-muted: #7a6e63;
  --fg-light: #b5a898;
  --accent: #c8874d;
  --accent-soft: #e8c9a4;
  --accent-glow: rgba(200, 135, 77, 0.15);
  --cream: #f9f3ea;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 135, 77, 0.12) 0%, transparent 70%);
  bottom: 10%;
  left: -8%;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 40%;
  right: 20%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-tag {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: var(--space-md);
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.8;
}

.hero-accent {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: var(--space-lg) auto 0;
}

.accent-bar {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: var(--bg-warm);
  padding: var(--space-2xl) var(--space-md);
}

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

.philosophy-label,
.offerings-label,
.system-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: start;
}

.philosophy-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.philosophy-text p {
  color: var(--fg-muted);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.philosophy-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
}

.visual-card {
  background: var(--bg);
  border: 1px solid var(--accent-soft);
  border-radius: 12px;
  padding: var(--space-sm) 1.5rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 400;
}

.visual-icon {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== OFFERINGS ===== */
.offerings {
  padding: var(--space-2xl) var(--space-md);
}

.offerings-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.offerings-header {
  margin-bottom: var(--space-xl);
}

.offerings-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.3;
}

.offerings-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.offering-card {
  background: var(--bg-warm);
  border-radius: 16px;
  padding: var(--space-md) 1.5rem;
  position: relative;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.offering-card:hover {
  border-color: var(--accent-soft);
}

.card-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.offering-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.offering-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.card-tags span {
  background: var(--bg);
  color: var(--fg-muted);
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ===== SYSTEM ===== */
.system {
  background: var(--bg-deep);
  color: var(--cream);
  padding: var(--space-2xl) var(--space-md);
}

.system-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.system .system-label {
  color: var(--accent);
}

.system-text {
  margin-bottom: var(--space-xl);
}

.system-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--cream);
}

.system-text p {
  color: var(--fg-light);
  max-width: 600px;
  font-size: 1.05rem;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.system-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.system-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.system-item strong {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--cream);
  font-size: 0.95rem;
}

.system-item p {
  color: var(--fg-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

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

.closing-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto var(--space-lg);
  border-radius: 1px;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-warm);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: var(--space-md);
}

.footer-divider {
  width: 30px;
  height: 1px;
  background: var(--accent-soft);
  margin: 0 auto var(--space-sm);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .offerings-cards {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .system-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: var(--space-lg) var(--space-sm);
    min-height: 80vh;
  }

  .shape-1 {
    width: 350px;
    height: 350px;
  }

  .shape-2 {
    width: 250px;
    height: 250px;
  }

  .philosophy,
  .offerings,
  .system,
  .closing {
    padding: var(--space-xl) var(--space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

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