@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Vollkorn:wght@600;700&display=swap);


/* ── Reset ── */
.bdty-hero *, .bdty-hero *::before, .bdty-hero *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Section shell ── */
.bdty-hero {
  width: 100%;
  background-color: var(--colors--light, #f7f4fd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bdty-hero__inner {
  width: 100%;
  max-width: 85rem;
  padding: 40px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ── Left: copy column ── */
.bdty-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  max-width: 630px;
  flex-shrink: 0;
}

.bdty-hero__eyebrow {
  font-family: var(--font--primary-family, 'DM Sans', system-ui, sans-serif);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--colors--dark, #271d3b);
  font-variation-settings: 'opsz' 14;
}

.bdty-hero__heading {
  font-family: var(--font--secondary-family, 'Vollkorn', Georgia, serif);
  font-weight: 700;
  font-size: clamp(38px, 3.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--colors--dark, #271d3b);
  text-wrap: balance;
}

.bdty-hero__body {
  font-family: var(--font--primary-family, 'DM Sans', system-ui, sans-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--colors--dark, #271d3b);
  font-variation-settings: 'opsz' 14;
  max-width: 600px;
}

/* ── Bullet list ── */
.bdty-hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  list-style: none;
}

.bdty-hero__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bdty-hero__bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--colors--dark, #271d3b);
  flex-shrink: 0;
}

.bdty-hero__bullet-text {
  font-family: var(--font--primary-family, 'DM Sans', system-ui, sans-serif);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--colors--dark, #271d3b);
  font-variation-settings: 'opsz' 14;
}

/* ── Right: illustration ── */
.bdty-hero__image {
  width: 400px;
  height: 460px;
  flex-shrink: 0;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Entrance animations ── */
@keyframes bdtyFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bdty-hero__eyebrow { animation: bdtyFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.05s; }
.bdty-hero__heading { animation: bdtyFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.15s; }
.bdty-hero__body    { animation: bdtyFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.25s; }
.bdty-hero__bullets { animation: bdtyFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.35s; }
.bdty-hero__image   { animation: bdtyFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.20s; }

/* ── Tablet ── */
@media (max-width: 1024px) {
  .bdty-hero__inner {
    padding: 40px 2rem;
    gap: 32px;
  }
  .bdty-hero__copy  { max-width: 500px; }
  .bdty-hero__image { width: 360px; height: 420px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .bdty-hero__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 2rem 40px;
    gap: 40px;
  }
  .bdty-hero__copy    { max-width: 100%; }
  .bdty-hero__heading { font-size: clamp(32px, 7vw, 44px); }
  .bdty-hero__body    { font-size: 17px; }
  .bdty-hero__image   { width: 100%; height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  .bdty-hero__eyebrow,
  .bdty-hero__heading,
  .bdty-hero__body,
  .bdty-hero__bullets,
  .bdty-hero__image {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

