:root {
  --bg: #FAF7F0;
  --bg-warm: #F5EFE0;
  --fg: #1A1614;
  --fg-muted: #6B6460;
  --accent: #C85A1A;
  --accent-light: #E8D5C4;
  --green: #2D6A4F;
  --green-light: #D8F3DC;
  --ink: #2C2420;
  --border: #E0D8CC;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 8vw;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #F5E6D3 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 560px;
}

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-tagline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.hero-tagline span {
  background: var(--bg-warm);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

/* PAPER STACK */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 400px;
}

.paper-stack {
  position: relative;
  width: 280px;
  height: 360px;
}

.paper {
  position: absolute;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.paper-3 {
  width: 260px;
  height: 340px;
  top: 20px;
  left: 20px;
  background: var(--accent-light);
  transform: rotate(-6deg);
}

.paper-2 {
  width: 260px;
  height: 340px;
  top: 10px;
  left: 10px;
  background: #FDF0E8;
  transform: rotate(-3deg);
}

.paper-1 {
  width: 260px;
  height: 340px;
  top: 0;
  left: 0;
  background: #FFFFFF;
  transform: rotate(0deg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.paper-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.line {
  height: 8px;
  background: var(--bg-warm);
  border-radius: 4px;
  width: 100%;
}

.line-short { width: 60%; }
.line-med { width: 80%; }

.paper-check {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

/* SERVICES */
.services {
  background: var(--bg-warm);
  padding: 6rem 8vw;
}

.services-inner { max-width: 1100px; margin: 0 auto; }

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

.services-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3rem;
  max-width: 480px;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}

.service-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 6rem 8vw;
  background: var(--bg);
}

.how-inner { max-width: 800px; margin: 0 auto; }

.how-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  padding-top: 4px;
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

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

.how-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--green-light);
  border-radius: 8px;
  border-left: 3px solid var(--green);
}

.how-note p {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
}

/* CLOSING */
.closing {
  background: var(--ink);
  padding: 6rem 8vw;
  color: white;
}

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

.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  font-style: italic;
  color: white;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.closing-body:last-child { margin-bottom: 0; }

/* FOOTER */
.footer {
  background: #1A1614;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 8vw;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 6vw;
    min-height: auto;
    gap: 2rem;
  }

  .hero-visual { display: none; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .step-num { font-size: 1.5rem; }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .services, .how, .closing {
    padding: 4rem 6vw;
  }

  .footer { padding: 2rem 6vw; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .services-title, .how-title { font-size: 1.5rem; }
}