:root {
  --bg: #FAF7F2;
  --bg-warm: #F3ECE0;
  --fg: #1A1614;
  --fg-muted: #6B5E52;
  --accent: #C4956A;
  --accent-dark: #A07850;
  --accent-light: #E8D5C0;
  --cream: #FFF8F0;
  --charcoal: #2C2420;
  --rose: #D4A0A0;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  color: var(--fg-muted);
}

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

.hero-accent {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 55%;
  height: 130%;
  background: radial-gradient(ellipse at center, var(--accent-light) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 48px;
  background: var(--charcoal);
  color: var(--cream);
}

.problem-inner {
  max-width: 960px;
  margin: 0 auto;
}

.problem-label,
.services-label,
.verticals-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 56px;
  color: var(--cream);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.problem-card {
  padding: 32px 24px;
  border-top: 2px solid var(--accent-dark);
}

.problem-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.problem-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #BFB5A8;
}

.problem-kicker {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--accent-light);
  font-style: italic;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 48px;
  background: var(--bg);
}

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

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 64px;
  color: var(--charcoal);
}

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

.service-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--accent-light);
}

.service-item:first-child {
  border-top: 1px solid var(--accent-light);
}

.service-icon {
  font-size: 20px;
  color: var(--accent);
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--accent-light);
  border-radius: 50%;
  margin-top: 2px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

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

/* ===== VERTICALS ===== */
.verticals {
  padding: 120px 48px;
  background: var(--bg-warm);
}

.verticals-inner {
  max-width: 960px;
  margin: 0 auto;
}

.verticals h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 48px;
  color: var(--charcoal);
}

.verticals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.vertical-pill {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--accent-light);
  padding: 12px 28px;
  border-radius: 40px;
  transition: all 0.25s ease;
}

.vertical-pill:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.verticals-note {
  font-size: 18px;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 540px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 48px;
  background: var(--charcoal);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #BFB5A8;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 48px;
  background: var(--charcoal);
  border-top: 1px solid rgba(196, 149, 106, 0.2);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.footer-detail {
  font-size: 14px;
  color: #8A7D70;
}

.footer-location {
  margin-left: auto;
  font-size: 14px;
  color: #8A7D70;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: 85vh;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-accent {
    width: 80%;
    right: -20%;
    top: -10%;
    opacity: 0.3;
  }

  .problem,
  .services,
  .verticals,
  .closing {
    padding: 80px 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-card {
    padding: 24px 0;
  }

  .service-item {
    flex-direction: column;
    gap: 12px;
    padding: 28px 0;
  }

  .closing {
    padding: 100px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-location {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }

  .vertical-pill {
    font-size: 13px;
    padding: 10px 20px;
  }
}