:root {
  --red: #df0038;
  --deep-red: #a9002c;
  --dark-red: #780020;
  --ink: #24191c;
  --muted: #716368;
  --cream: #fbf7f3;
  --pink: #fff0f3;
  --line: #eadde0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.hero {
  min-height: 540px;
  padding: 16px clamp(24px, 4.5vw, 72px) 30px;
  overflow: hidden;
  background:
    linear-gradient(#fff 0 60px, transparent 60px),
    radial-gradient(circle at 10% 0%, rgba(223, 0, 56, .11), transparent 26%),
    #fff;
}
.hero-top {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--line);
}
.logo { width: 170px; }
.hero-grid {
  max-width: 1380px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: minmax(400px, .9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}
.eyebrow, .section-label {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 0;
  width: max-content;
  max-width: none;
  font-size: clamp(38px, 4.3vw, 60px);
  line-height: .98;
  letter-spacing: -.025em;
}
.hero h1 span { white-space: nowrap; }
.hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-lead {
  margin: 16px 0;
  color: #493b40;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
  font-weight: 600;
}
.hero-actions { display: flex; align-items: center; gap: 20px; }
.button {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(223, 0, 56, .18);
  transition: transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.hero-visual { position: relative; min-height: 390px; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 16px -14px 4px 16px;
  background: var(--red);
  border-radius: 46% 10px 10px;
}
.hero-photo {
  position: absolute;
  inset: 0 0 20px;
  width: 100%;
  height: calc(100% - 20px);
  object-fit: cover;
  object-position: 64% center;
  border-radius: 46% 10px 10px;
  box-shadow: 0 24px 54px rgba(66, 30, 39, .22);
}
.rabbit { pointer-events: none; user-select: none; }
.rabbit-hero {
  position: absolute;
  left: -62px;
  bottom: -5px;
  width: 145px;
  filter: drop-shadow(0 12px 16px rgba(74, 23, 37, .16));
}

.benefits {
  padding: 30px clamp(24px, 4.5vw, 72px) 34px;
  background: var(--cream);
}
.benefits-heading {
  max-width: 1380px;
  margin: 0 auto 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.benefits-heading h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -.042em;
}
.benefits-heading img { width: 125px; margin-bottom: -18px; }
.benefit-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.benefit {
  min-height: 158px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.benefit-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
}
.benefit-icon img {
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
}
.benefit h3 {
  min-height: 54px;
  margin: 12px 0 6px;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.2;
}
.benefit p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.benefit small { margin-top: 7px; color: var(--muted); font-size: 12px; }

.photo-board {
  max-width: 1380px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.photo-board figure {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
}
.photo-board figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-board figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4px;
  color: #fff;
  text-align: center;
  background: rgba(169, 0, 44, .92);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .06em;
}
.section-label.light { color: #ffbecd; }
.contact {
  min-height: 210px;
  margin: 0 clamp(14px, 3vw, 44px) 20px;
  padding: 18px 190px 14px;
  position: relative;
  display: grid;
  place-items: start center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: var(--red);
  border-radius: 9px;
}
.contact-copy { width: 100%; position: relative; z-index: 2; }
.audience-list {
  width: min(900px, 100%);
  margin: 10px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  list-style: none;
}
.audience-list li {
  min-height: 108px;
  padding: 9px 7px;
  display: grid;
  grid-template-rows: 34px minmax(48px, auto);
  justify-items: center;
  align-content: start;
  gap: 6px;
  color: var(--ink);
  background: #fff;
  border-radius: 7px;
}
.audience-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 50%;
}
.audience-icon img {
  width: 19px;
  height: 19px;
  filter: brightness(0) invert(1);
}
.audience-list strong {
  min-height: 48px;
  max-width: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
}
.recommended-support {
  width: min(900px, 100%);
  margin: 12px auto 0;
  padding: 10px 14px;
  color: #fff;
  background: rgba(120, 0, 32, .2);
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.45;
}
.recommended-support p { margin: 0; }
.recommended-support p + p { margin-top: 4px; }
.recommended-support strong { font-size: 14px; }
.rabbit-contact-left {
  position: absolute;
  left: 4%;
  bottom: -16px;
  width: 160px;
}
.contact-information {
  margin: 0 clamp(14px, 3vw, 44px) 20px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 82px .7fr 1.3fr;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}
.rabbit-contact-information {
  width: 85px;
  align-self: end;
  justify-self: center;
}
.contact-information-heading h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -.03em;
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  font-style: normal;
}
.contact-methods > a,
.contact-methods > .contact-method {
  position: relative;
  min-width: 0;
  min-height: 124px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--cream);
  border: 1px solid rgba(223, 0, 56, .28);
  border-radius: 7px;
  box-shadow: 0 3px 10px rgba(64, 22, 31, .07);
}
.contact-methods > a {
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-methods a:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 7px 16px rgba(64, 22, 31, .13);
}
.contact-methods a:focus-visible {
  outline: 3px solid rgba(223, 0, 56, .25);
  outline-offset: 2px;
  border-color: var(--red);
}
.contact-methods .contact-type {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-methods strong {
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-color: rgba(223, 0, 56, .38);
  text-underline-offset: 3px;
}
.contact-methods small {
  color: var(--muted);
  font-size: 12px;
}
.contact-methods .contact-action {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(223, 0, 56, .16);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}
.contact-action b {
  font-size: 16px;
  line-height: 1;
}
.contact-whatsapp-qr {
  justify-content: flex-start;
}
.whatsapp-qr-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.whatsapp-qr-content > div {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-methods .whatsapp-qr {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
}
.contact-methods .contact-whatsapp-qr strong {
  text-decoration: none;
}
.contact-methods .contact-whatsapp-link {
  display: none;
}

footer {
  min-height: 62px;
  padding: 14px clamp(24px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  background: #fff;
}
footer img { width: 125px; }
footer small { margin: 0; color: var(--muted); font-size: 12px; }
footer small { justify-self: end; }

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 480ms ease, transform 480ms ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit:last-child { grid-column: 1 / -1; }
  .photo-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact { padding: 24px 150px 18px; }
  .contact-information { grid-template-columns: 80px 1fr; }
  .contact-methods { grid-column: 1 / -1; }
  .audience-list { grid-template-columns: repeat(3, 1fr); }
  .rabbit-contact-left { left: 0; }
}

@media (max-width: 620px) {
  .hero { padding: 16px 18px 36px; }
  .logo { width: 145px; }
  .hero-grid { margin-top: 32px; gap: 34px; }
  .hero h1 {
    width: max-content;
    font-size: clamp(20px, 6.5vw, 26px);
  }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 340px; }
  .hero-photo { border-radius: 40% 8px 8px; }
  .rabbit-hero { left: -10px; width: 135px; }
  .benefits { padding: 45px 18px; }
  .benefits-heading { align-items: flex-start; }
  .benefits-heading img { width: 125px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit, .benefit:last-child { grid-column: auto; min-height: 170px; }
  .photo-board { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .contact { min-height: 560px; margin: 0 10px 18px; padding: 28px 22px 150px; }
  .audience-list { grid-template-columns: 1fr 1fr; }
  .audience-list li { min-height: 112px; }
  .audience-list li:last-child { grid-column: 1 / -1; }
  .rabbit-contact-left { left: 5px; width: 160px; }
  .contact-information { margin: 0 10px 18px; padding: 18px; grid-template-columns: 64px 1fr; }
  .rabbit-contact-information { width: 64px; }
  .contact-methods { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .contact-methods .contact-whatsapp-qr { display: none; }
  .contact-methods .contact-whatsapp-link { display: flex; }
  footer { grid-template-columns: 1fr; gap: 10px; }
  footer small { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .contact-methods a, .js .reveal { transition: none; }
  .js .reveal { opacity: 1; transform: none; }
}
