:root {
  --ink: #351426;
  --muted: #765669;
  --rose: #d9003c;
  --rose-dark: #8a174d;
  --cream: #fff8f5;
  --panel: rgba(255, 255, 255, 0.82);
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0 43%, rgba(255, 245, 249, 0.84) 43% 100%),
    url("WhatsApp Image 2026-06-19 at 22.30.53.jpeg") center / cover;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
}

.hero {
  width: min(100%, 980px);
  min-height: min(720px, calc(100vh - 48px));
  display: grid;
  align-content: center;
  gap: clamp(44px, 7vw, 84px);
}

.brand {
  width: min(100%, 520px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.content {
  width: min(100%, 640px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.intro {
  margin: 28px 0 36px;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  line-height: 1.55;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(18, 140, 126, 0.33);
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.45);
  outline-offset: 4px;
}

.whatsapp-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  flex: 0 0 auto;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 246, 249, 0.9)),
      url("WhatsApp Image 2026-06-19 at 22.30.53.jpeg") center / cover;
  }

  .page {
    place-items: stretch;
    padding: 22px;
  }

  .hero {
    min-height: calc(100vh - 44px);
    gap: 36px;
  }

  h1 {
    max-width: 10ch;
  }

  .whatsapp-button {
    width: 100%;
    padding: 0 18px;
  }
}
