.hero {
  position: relative;
  padding: 70px 0 100px;
  overflow: hidden;
}
.hero-deco-1 {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(232,169,60,0.25), transparent 60%);
  pointer-events: none;
}
.hero-deco-2 {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(139,26,31,0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-h1 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.hero-h1 em {
  font-style: italic;
  color: var(--maroon);
  font-weight: 500;
}
.hero-script {
  font-family: "Caveat", cursive;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: -4px;
  margin-left: -4px;
  line-height: 1;
}
.hero-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.stat-num {
  font-family: "Fraunces", serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--maroon);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.hero-art .photo-a {
  position: absolute;
  inset: 0 14% 18% 0;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(27,20,17,0.35);
}
.hero-art .photo-a img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .photo-b {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 24px 40px -20px rgba(27,20,17,0.4);
}
.hero-art .photo-b img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .badge {
  position: absolute;
  top: 18%;
  left: -6%;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 16px 30px -12px rgba(139,26,31,0.5);
  border: 2px dashed rgba(232,169,60,0.6);
  outline: 8px solid var(--cream);
}
.badge-num {
  font-family: "Fraunces", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.badge-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-art .note {
  position: absolute;
  bottom: 14%;
  left: -2%;
  background: var(--paper);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 16px 28px -16px rgba(27,20,17,0.35);
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--rule);
  max-width: 220px;
}
.note-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 10px;
  box-shadow: 0 0 0 4px rgba(232,169,60,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,169,60,0.25); }
  50% { box-shadow: 0 0 0 7px rgba(232,169,60,0.1); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  /* width:100% needed — without it, auto margins absorb the column and .hero-art (whose children are all position:absolute) collapses to 0 */
  .hero-art { width: 100%; max-width: 480px; margin: 0 auto; }
}
