/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FDF6EE;
  --cream-dark: #F5EBD9;
  --charcoal: #1A1A1A;
  --charcoal-light: #2E2E2E;
  --terracotta: #E85D2A;
  --terracotta-dark: #C44D20;
  --sand: #C8A87C;
  --text: #2C2C2C;
  --text-muted: #6B6B6B;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ─── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--charcoal); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.03) 39px,
      rgba(255,255,255,0.03) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.03) 39px,
      rgba(255,255,255,0.03) 40px
    );
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,93,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: 0 48px;
  flex-shrink: 0;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.05;
  margin-bottom: 28px;
  font-style: italic;
}

.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,42,0.18);
  border: 1px solid rgba(232,93,42,0.4);
  color: #FFB799;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-visual {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 200px);
  grid-template-rows: repeat(3, auto);
  gap: 12px;
  padding: 0 48px;
  align-content: start;
}

.content-card {
  background: #252525;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}

.content-card:hover { border-color: rgba(232,93,42,0.35); }

.content-card--accent {
  background: rgba(232,93,42,0.12);
  border-color: rgba(232,93,42,0.3);
  grid-column: span 2;
  justify-content: center;
}

.card-icon { color: var(--sand); flex-shrink: 0; }
.card-icon svg { display: block; }

.card-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ─── Services ───────────────────────────────────────────── */
.services { background: var(--cream); padding: 100px 0; }

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

.services-header { margin-bottom: 60px; }

.services-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--charcoal);
  border-radius: 20px;
  overflow: hidden;
}

.service-item {
  background: var(--charcoal-light);
  padding: 40px 36px;
  transition: background 0.2s;
}

.service-item:hover { background: #252525; }

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,93,42,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.service-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ─── Pricing ────────────────────────────────────────────── */
.pricing { background: var(--cream-dark); padding: 100px 0; }

.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

.pricing-header { text-align: center; margin-bottom: 56px; }

.pricing-header h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 16px; }

.pricing-sub { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.65; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
}

.pricing-card--featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pricing-card--featured .plan-name { color: #fff; }

.plan-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 28px;
}

.pricing-card--featured .plan-price { color: #fff; }

.price-period { font-size: 16px; font-weight: 400; opacity: 0.5; }

.plan-features { list-style: none; }

.plan-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  padding-left: 20px;
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

.pricing-card--featured .plan-features li { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.06); }

.plan-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 12px 20px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: all 0.2s;
}
.plan-cta:hover { border-color: var(--terracotta); color: var(--terracotta); }

.pricing-card--featured .plan-cta {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.pricing-card--featured .plan-cta--primary,
.pricing-card--featured .plan-cta:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}
.pricing-card--featured .plan-cta:hover { opacity: 0.9; }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Proof (Verticals) ───────────────────────────────────── */
.proof { background: var(--cream); padding: 100px 0; }

.proof-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

.proof-header { margin-bottom: 60px; }

.proof-header h2 { font-size: clamp(28px, 3.5vw, 44px); max-width: 500px; }

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

.vertical-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.vertical-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.vertical-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  flex-shrink: 0;
}

.vertical-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vertical-content p { font-size: 15px; color: var(--text-muted); max-width: 580px; line-height: 1.65; }

.proof-quote {
  margin-top: 60px;
  padding: 40px 48px;
  background: var(--charcoal);
  border-radius: 20px;
  position: relative;
}

.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ─── Closing ────────────────────────────────────────────── */
.closing { background: var(--charcoal); padding: 120px 0; }

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 32px;
}

.closing p {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  max-width: 640px;
  margin: 0 auto 72px;
  line-height: 1.7;
}

.closing-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }

.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--cream); border-top: 1px solid rgba(0,0,0,0.06); padding: 48px 0; }

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

.footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; font-style: italic; color: var(--charcoal); margin-bottom: 8px; }

.footer-brand p { font-size: 14px; color: var(--text-muted); }

.footer-tagline { font-size: 13px; color: var(--text-muted); font-style: italic; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; padding: 72px 0 60px; }
  .hero-inner { padding: 0 32px; max-width: 100%; }
  .hero-visual { grid-template-columns: repeat(2, 1fr); padding: 40px 32px 0; }
  .content-card--accent { grid-column: span 1; justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card--featured { order: -1; }
  .closing-stat-row { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .services-inner, .pricing-inner, .proof-inner, .closing-inner { padding: 0 24px; }
  .hero-visual { grid-template-columns: 1fr; }
  .content-card--accent { grid-column: span 1; }
  .proof-quote { padding: 28px 28px; }
}