/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

/* ===== TOKENS ===== */
:root {
  --bg: #FAFAF8;
  --ink: #0D0D0D;
  --accent: #FF3B2F;
  --muted: #E8E4DF;
  --mid: #9A9490;
  --surface: #FFFFFF;
  --border: rgba(13,13,13,0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ===== HERO ===== */
.hero {
  padding: 100px 80px 80px;
  border-bottom: 1px solid var(--border);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: #5A5550;
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--mid);
}

.hero-meta strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-stat { white-space: nowrap; }

.hero-sep {
  color: var(--muted);
}

.hero-cta {
  margin: 36px 0 0;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,59,47,0.3);
}

.cta-primary:hover {
  background: #e03029;
  transform: translateY(-1px);
}

.cta-primary:active {
  transform: translateY(0);
}

/* Hero Image Stack */
.hero-right { position: relative; }

.hero-image-stack {
  position: relative;
  border-radius: 4px;
  overflow: visible;
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  bottom: -32px;
  left: -32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.overlay-card {
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.overlay-card-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.overlay-card-bar {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* ===== HERO STATS BAR ===== */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 52px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}

.hero-stat-item:first-child {
  padding-left: 0;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.stat-number em {
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
  flex-shrink: 0;
}

/* ===== HERO TESTIMONIAL ===== */
.hero-testimonial {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.65;
  color: #3D3832;
  font-weight: 400;
  margin-bottom: 16px;
}

.quote-mark, .quote-mark-right {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  line-height: 0;
  vertical-align: -0.2em;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.attribution-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.attribution-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.attribution-role {
  font-size: 12px;
  color: var(--mid);
  margin-top: 1px;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 32px;
}

.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-left: 4px solid var(--accent);
  padding-left: 36px;
}

/* ===== SERVICES ===== */
.service {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}

.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.service-inner.reverse {
  direction: rtl;
}

.service-inner.reverse > * {
  direction: ltr;
}

.service-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.service-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #5A5550;
  margin-bottom: 32px;
  font-weight: 300;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  font-weight: 400;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.service-image-wrap {
  position: relative;
}

.service-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.service-image-label {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 2px 0 4px 0;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 80px;
  background: var(--ink);
  color: #fff;
}

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

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 4px;
}

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

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

.footer-bottom {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 48px 80px;
  border-bottom: 1px solid var(--border);
}

.social-proof-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.social-proof-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 32px;
}

.client-badge {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #C4BFB9;
  letter-spacing: -0.01em;
  padding: 4px 0;
  white-space: nowrap;
}

.client-badge--link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #C4BFB9;
  transition: color 0.15s;
}

.client-badge--link:hover { color: var(--ink); }

.client-badge-arrow {
  font-size: 12px;
  color: var(--accent);
}

.social-proof-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 28px;
}

.proof-stat strong {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.proof-stat span {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-stat-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero, .manifesto, .service, .closing, .footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero-inner, .service-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service-inner.reverse { direction: ltr; }
  .hero-img-overlay {
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 640px) {
  .hero, .manifesto, .service, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 72px; padding-bottom: 72px; }
  .hero-inner, .service-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-headline { font-size: 36px; }
  .service-title { font-size: 30px; }
  .closing-headline { font-size: 30px; }
  .manifesto-quote { font-size: 20px; padding-left: 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .service-image-label { display: none; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 16px 0;
  }
  .hero-stat-item {
    padding: 0;
    flex: 1 1 auto;
  }
  .hero-stat-divider { display: none; }
  .hero-testimonial { margin-top: 24px; }
}