/* =============================================================
   JT Designs — Hero Section
   ============================================================= */

.hero {
  padding: 180px 0 120px;
}

/* Two-column layout: headline left, sub-copy right */
.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

@media (max-width: 900px) {
  .hero-top {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 56px;
  }
  .hero { padding: 136px 0 72px; }
}

/* Small label + dot above headline */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-eyebrow .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oxblood);
  flex-shrink: 0;
}

/* Main headline — variable size, tight leading */
h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 8.5vw, 118px);
  line-height: 0.93;
  letter-spacing: -0.04em;
  color: var(--ink);
}

/* Italic oxblood emphasis within headline */
h1 em {
  font-style: italic;
  color: var(--oxblood);
}

/* Right column: aligns to bottom of headline */
.hero-sub { align-self: end; }

.hero-sub p {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 32px;
}

/* Stat row: One contact · Bay Area · etc. */
.hero-stats {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.hero-stat {
  padding: 0 32px;
  border-right: 1px solid var(--line);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; }

.hero-stat .stat-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: block;
}

.hero-stat .stat-label {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; }
  .hero-stat {
    padding: 16px 0;
    width: 50%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}
