:root {
  --bg: #f4f2ed;
  --bg-alt: #ebe9e3;
  --ink: #0a0a0a;
  --ink-soft: #1f1f1f;
  --muted: #5e5e5e;
  --muted-soft: #8b8b8b;
  --rule: rgba(10, 10, 10, 0.10);
  --rule-soft: rgba(10, 10, 10, 0.06);
  --red: #d92027;
  --red-deep: #b51820;
  --container: 1180px;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--red);
  color: #fff;
}

/* ---------- HEADER ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 242, 237, 0.88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.wordmark-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  display: inline-block;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav a:hover::after {
  transform: scaleX(1);
}

/* ---------- HERO ---------- */

.hero {
  padding: 140px 0 130px;
}

.hero-inner {
  max-width: 980px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  display: inline-block;
}

.display {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 36px;
}

.display .accent {
  color: var(--red);
  font-style: italic;
  font-weight: 800;
}

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.cta:active {
  transform: translateY(1px);
}

.cta-primary {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
}

.cta-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.cta-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.cta-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ---------- SECTIONS ---------- */

.section {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-label .bar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section-label-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-label-light .bar-red {
  background: var(--red);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 80px;
  align-items: start;
}

.col-label {
  position: sticky;
  top: 110px;
}

h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 32px;
}

.col-body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 60ch;
}

.col-body p:last-child {
  margin-bottom: 0;
}

.section-head {
  margin-bottom: 80px;
  max-width: 760px;
}

.section-head .section-label {
  margin-bottom: 28px;
}

/* ---------- SERVICES ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}

.service {
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}

.service .num {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted-soft);
  margin-bottom: 24px;
}

.service .num::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--red);
  margin-left: 4px;
  align-self: center;
  transform: translateY(-2px);
}

.service h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}

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

/* ---------- CONTACT ---------- */

.contact {
  background: var(--ink);
  color: var(--bg);
  border-top: none;
}

.contact-inner {
  max-width: 980px;
  padding: 0 32px;
}

.contact .section-label {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-headline {
  color: #fff;
  margin-bottom: 32px;
}

.contact-headline .accent {
  color: var(--red);
  font-style: italic;
}

.contact-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 60ch;
  margin-bottom: 44px;
}

.contact-email {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.contact-email a {
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, letter-spacing 0.3s ease;
}

.contact-email a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ---------- FOOTER ---------- */

.site-footer {
  padding: 56px 0 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-meta {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal {
  text-align: right;
}

.footer-legal p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-legal a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ---------- REVEAL ON SCROLL ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .header-inner { padding: 14px 24px; }
  .nav { gap: 18px; }
  .nav a { font-size: 12px; }
  .container { padding: 0 24px; }
  .contact-inner { padding: 0 24px; }
  .hero { padding: 90px 0 80px; }
  .section { padding: 80px 0; }
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .col-label { position: static; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .section-head { margin-bottom: 56px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }
}

@media (max-width: 520px) {
  .nav { gap: 14px; }
  .nav a { font-size: 11px; }
  .wordmark { font-size: 16px; }
  .hero { padding: 60px 0 56px; }
  .section { padding: 64px 0; }
  .hero-actions { width: 100%; }
  .cta { flex: 1; justify-content: center; }
}
