:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8df;
  --dark: #1c1c1a;
  --dark-muted: #3a3a38;
  --text: #2a2a28;
  --text-light: #6b6b69;
  --accent: #3d4a2c;
  --accent-light: #5c6e42;
  --warm: #c96442;
  --border: #d8d2c8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* Trust Bar */
.trust-bar {
  padding: 32px 0 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.trust-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 400;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 0 40px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo-item {
  padding: 8px 24px;
  color: #b0a99e;
}
.logo-item svg { display: block; width: auto; height: 28px; }

/* Hero */
.hero {
  padding: 80px 0 0;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  padding: 0 60px;
}
.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.proof-label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  padding-top: 4px;
}
.hero-right {
  padding-top: 20px;
  border-left: 1px solid var(--border);
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-stat-block {}
.stat-big {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.stat-unit {
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent);
}
.stat-caption {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 8px;
  max-width: 200px;
}
.hero-video-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 400;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-bottom-rule {
  height: 1px;
  background: var(--border);
  margin-top: 60px;
}

/* Positioning */
.positioning {
  background: var(--dark);
  color: #f5f0e8;
  padding: 100px 60px;
}
.positioning-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 48px;
  align-items: start;
}
.positioning-deco { padding-top: 8px; }
.positioning-text {}
.positioning-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 36px;
  line-height: 1.3;
}
.positioning-body {
  font-size: 1rem;
  color: #b8b3ab;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 680px;
}

/* Services */
.services {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 64px;
  max-width: 560px;
}
.services-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.services-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-card {
  padding: 48px 40px 48px 0;
  border-left: 1px solid var(--border);
  padding-left: 40px;
}
.service-card:first-child {
  border-left: none;
  padding-left: 0;
}
.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--border);
  margin-bottom: 24px;
  line-height: 1;
}
.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.service-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-specs li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}
.service-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: var(--accent);
}

/* Process */
.process {
  background: var(--bg-alt);
  padding: 100px 60px;
}
.process-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.process-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  max-width: 500px;
}
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}
.step { padding-right: 40px; }
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.step-rule {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-bottom: 20px;
}
.step-body h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}
.step-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 48px;
}
.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #b8b3ab;
  padding: 48px 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #f5f0e8;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: #7a7570;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-contact {
  color: #b8b3ab;
  text-decoration: none;
}
.footer-contact:hover { color: #f5f0e8; }
.footer-divider { color: #4a4745; }
.footer-location { color: #7a7570; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
  .hero-right { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; display: flex; flex-direction: row; align-items: flex-start; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; margin-top: 32px; }
  .service-card:first-child { border-top: none; margin-top: 0; padding-top: 0; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .positioning-inner { grid-template-columns: 1fr; gap: 24px; }
  .positioning-deco { display: none; }
  .trust-logos { gap: 0; }
  .logo-item { padding: 8px 16px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 600px) {
  .hero, .services, .process, .closing { padding-left: 24px; padding-right: 24px; }
  .positioning { padding-left: 32px; padding-right: 32px; }
  .site-footer { padding: 40px 32px; }
  .hero-right { flex-direction: column; gap: 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .stat-big { font-size: 3.5rem; }
  .closing { padding-top: 80px; padding-bottom: 80px; }
}