:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE1;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --accent: #D4632A;
  --accent-dark: #B54E1F;
  --green: #2D5A3D;
  --green-light: #3D7A52;
  --border: #E0D8CE;
  --white: #FFFFFF;
}

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

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

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

/* Nav */
.nav {
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo-link {
  display: inline-block;
  text-decoration: none;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

/* Hero logo */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  background: linear-gradient(160deg, #F5EDE0 0%, #FAF7F2 60%, #F0EBE1 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,99,42,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2.25rem;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(212,99,42,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.hero-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,99,42,0.4);
}
.hero-cta:active {
  transform: translateY(0);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.badge-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
}

/* Section labels */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

/* Services */
.services {
  padding: 5rem 2rem;
  background: var(--bg);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: box-shadow 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 1.2rem;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* Difference */
.difference {
  padding: 5rem 2rem;
  background: var(--green);
  color: var(--white);
}
.difference-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.difference .section-label {
  color: rgba(255,255,255,0.6);
}
.difference .section-title {
  color: var(--white);
}
.difference-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.difference-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.stat {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* How */
.how {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}
.step {
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212,99,42,0.12);
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 5rem 2rem 6rem;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 2.5rem 2rem;
  background: var(--fg);
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
}

/* Services CTA */
.services-inner {
  text-align: center;
}
.services-cta {
  margin-top: 2.5rem;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .difference-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .services, .difference, .how { padding: 3.5rem 1.5rem; }
  .closing { padding: 3.5rem 1.5rem 4rem; }
}