:root {
  --ink: #0b0f14;
  --muted: #55616f;
  --accent: #ff7a18;
  --accent-2: #18a8ff;
  --paper: #f6f3ee;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(11, 15, 20, 0.12);
  --radius: 22px;
}

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

body {
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(120deg, #f6f3ee 0%, #f3f6fb 48%, #fdf0e8 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: -2;
}

.bg-shape {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.35;
  z-index: -3;
}

.bg-shape-1 {
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.9), transparent 70%);
}

.bg-shape-2 {
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(24, 168, 255, 0.75), transparent 70%);
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(246, 243, 238, 0.7);
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 15px;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 15, 20, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-ghost {
  background: rgba(11, 15, 20, 0.08);
  color: var(--ink);
  border-color: transparent;
}

.hero {
  padding: 96px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-row span {
  font-weight: 700;
  font-size: 20px;
}

.trust-row p {
  color: var(--muted);
  font-size: 13px;
}

.hero-image {
  position: relative;
}

.portrait-wrap {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.portrait-wrap img {
  border-radius: 18px;
  object-fit: cover;
  width: 100%;
  height: 420px;
}

.portrait-tag {
  position: absolute;
  bottom: 26px;
  left: 28px;
  background: rgba(11, 15, 20, 0.88);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(11, 15, 20, 0.08);
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
}

.section-head {
  margin-bottom: 42px;
  max-width: 640px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(11, 15, 20, 0.08);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

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

.timeline {
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.timeline-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.checklist li {
  background: rgba(11, 15, 20, 0.06);
  padding: 12px 16px;
  border-radius: 12px;
}

.quote {
  background: var(--ink);
  color: white;
  padding: 36px;
  border-radius: 24px;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: 24px;
}

.quote span {
  display: block;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 18px;
}

.contact {
  padding-bottom: 110px;
}

.contact-card {
  background: var(--ink);
  color: white;
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions .btn {
  width: 100%;
  justify-content: center;
  background: white;
  color: var(--ink);
  border-color: white;
}

.contact-actions .btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-meta {
  font-size: 13px;
  text-align: center;
}

.site-footer {
  padding: 30px 0 60px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .approach-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 70px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .portrait-wrap img {
    height: 320px;
  }

  .contact-card {
    padding: 32px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-image,
  .card,
  .timeline-item,
  .quote {
    animation: rise 0.8s ease both;
  }

  .card:nth-child(2) { animation-delay: 0.05s; }
  .card:nth-child(3) { animation-delay: 0.1s; }
  .card:nth-child(4) { animation-delay: 0.15s; }
  .card:nth-child(5) { animation-delay: 0.2s; }
  .card:nth-child(6) { animation-delay: 0.25s; }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
