.hero-section {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: center;
}

/* Background Shapes for Parallax */
.hero-shape {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}

.shape-ring-clay {
  top: 14%;
  right: 8%;
  width: clamp(150px, 22vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(178, 106, 82, 0.55);
}

.shape-circle-clay {
  top: 30%;
  right: 15%;
  width: clamp(60px, 9vw, 120px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--clay);
  opacity: 0.9;
}

.shape-triangle-sage {
  bottom: 16%;
  right: 26%;
  width: 0;
  height: 0;
  border-left: clamp(34px, 4.5vw, 58px) solid transparent;
  border-right: clamp(34px, 4.5vw, 58px) solid transparent;
  border-bottom: clamp(58px, 7.5vw, 100px) solid var(--sage);
  opacity: 0.85;
}

.shape-square-taupe {
  bottom: 28%;
  right: 9%;
  width: clamp(44px, 6vw, 78px);
  aspect-ratio: 1;
  background: var(--taupe);
  transform: rotate(14deg);
}

.shape-ring-border {
  top: 20%;
  right: 34%;
  width: clamp(50px, 6.5vw, 86px);
  aspect-ratio: 1;
  border: 1.5px solid rgba(52, 48, 42, 0.28);
  border-top-color: transparent;
  border-radius: 50%;
  animation: kt-spin 11s linear infinite;
}

/* Content styling */
.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.hero-tag-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(26px, 4vh, 44px);
}

.hero-tag-dot {
  width: 9px;
  height: 9px;
  background: var(--clay);
  display: block;
}

.hero-tag-text {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.4vw, 13.5px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title {
  margin: 0;
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.015em;
  font-size: clamp(2.5rem, 8.8vw, 7rem);
}

.hero-title span {
  display: block;
}

.hero-title-ink {
  color: var(--ink);
}

.hero-title-clay {
  color: var(--clay);
}

.hero-desc {
  max-width: 600px;
  margin: clamp(28px, 4vh, 42px) 0 0;
  font-size: clamp(1.02rem, 2.1vw, 1.28rem);
  line-height: 1.55;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: clamp(30px, 4vh, 44px);
}

.btn-hero-primary {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  padding: 14px 24px;
  transition: background 0.2s ease;
}

.btn-hero-primary:hover {
  background: var(--clay);
}

.btn-hero-secondary {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(52, 48, 42, 0.35);
  text-decoration: none;
  padding: 13px 24px;
  transition: border-color 0.2s ease;
}

.btn-hero-secondary:hover {
  border-color: var(--ink);
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
