:root {
  --bg: #faf7f5;
  --bg-warm: #f5ede8;
  --bg-dark: #2c2422;
  --fg: #2c2422;
  --fg-muted: #7a6b63;
  --accent: #c47d5a;
  --accent-light: #e8b89a;
  --accent-subtle: rgba(196,125,90,0.08);
  --white: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

*, *::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: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
}

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

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.hero-inner {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

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

.hero-accent {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 45vw;
  height: 45vw;
  max-width: 550px;
  max-height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 40%, var(--accent-light) 0%, transparent 70%);
  opacity: 0.35;
  z-index: 1;
}

/* ─── PROMISE ─── */
.promise {
  padding: var(--space-2xl) var(--space-md);
  background: var(--white);
}

.promise-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.promise-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.promise-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.promise-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stat {
  padding: var(--space-md);
  border-left: 3px solid var(--accent);
  background: var(--accent-subtle);
  border-radius: 0 12px 12px 0;
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── SERVICES ─── */
.services {
  padding: var(--space-2xl) var(--space-md);
}

.services-header {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-xs);
}

.services-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border-radius: 16px;
  border: 1px solid rgba(44,36,34,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,36,34,0.08);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

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

/* ─── HOW ─── */
.how {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-dark);
  color: var(--bg);
}

.how h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-xl);
  color: var(--bg);
}

.how .serif-accent {
  color: var(--accent-light);
}

.how-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.step {
  text-align: center;
}

.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  color: var(--bg);
}

.step p {
  font-size: 0.9rem;
  color: rgba(250,247,245,0.65);
  line-height: 1.7;
}

/* ─── CLOSING ─── */
.closing {
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

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

.closing h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: var(--space-md);
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.9;
}

/* ─── FOOTER ─── */
.footer {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(44,36,34,0.08);
}

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

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

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

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-accent {
    width: 70vw;
    height: 70vw;
    right: -20%;
    top: 5%;
    opacity: 0.2;
  }

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

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

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

  .footer-inner {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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