:root {
  --pink: #ef86b5;
  --pink-dark: #dc5f99;
  --pink-soft: #fde7f1;
  --blue: #57c1dc;
  --blue-dark: #2f9fbe;
  --blue-soft: #e7f8fc;
  --yellow: #ffd75e;
  --ink: #3f3a44;
  --muted: #746d78;
  --paper: #fffdfb;
  --white: #ffffff;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(239, 134, 181, .18), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(87, 193, 220, .18), transparent 28rem),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.page::before {
  width: 18rem;
  height: 18rem;
  left: -8rem;
  bottom: 5rem;
  background: var(--blue-soft);
}

.page::after {
  width: 22rem;
  height: 22rem;
  right: -10rem;
  bottom: -8rem;
  background: var(--pink-soft);
}

header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 172px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(239, 134, 181, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 30px rgba(66, 56, 72, .07);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px var(--pink-soft);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding: 40px 0 32px;
}

.copy {
  max-width: 650px;
  padding: 20px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(46px, 7.2vw, 92px);
  line-height: .93;
  letter-spacing: -.055em;
  font-weight: 900;
}

h1 .pink { color: var(--pink); }
h1 .blue { color: var(--blue); }

.lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.lead strong { color: var(--ink); }

.contact-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 30px;
  padding: 14px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(87, 193, 220, .2);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 50px rgba(66, 56, 72, .08);
  backdrop-filter: blur(8px);
}

.contact-copy {
  padding-left: 6px;
  min-width: 190px;
}

.contact-copy small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 13px;
}

.contact-copy strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: white;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(220, 95, 153, .24);
  transition: transform .18s ease, box-shadow .18s ease;
}

.phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(220, 95, 153, .3);
}

.phone svg { width: 19px; height: 19px; fill: currentColor; }

.visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.blob {
  position: absolute;
  width: min(520px, 95%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 48% 52% 58% 42% / 44% 46% 54% 56%;
  background: linear-gradient(145deg, #fff 0%, #fff9fc 42%, #f4fbfd 100%);
  box-shadow: 0 30px 80px rgba(64, 53, 71, .11);
  transform: rotate(-4deg);
}

.blob::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 2;
  border: 2px dashed rgba(239, 134, 181, .55);
  border-radius: inherit;
  pointer-events: none;
}

.blob img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.sticker {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0 16px 38px rgba(63, 58, 68, .10);
  font-weight: 900;
}

.sticker-heart {
  width: 74px;
  height: 74px;
  top: 55px;
  right: 16px;
  color: var(--pink);
  font-size: 34px;
  transform: rotate(9deg);
}

.sticker-step {
  width: 88px;
  height: 88px;
  bottom: 52px;
  left: 4px;
  color: var(--blue-dark);
  font-size: 15px;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-8deg);
}

.sticker-step span { font-size: 24px; }

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #8b838e;
  font-size: 13px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.instagram-link {
  color: inherit;
  font-weight: 700;
  text-decoration-color: rgba(220, 95, 153, .55);
  text-underline-offset: 3px;
  transition: color .18s ease;
}

.instagram-link:hover { color: var(--pink-dark); }

.instagram-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 2px;
}

.tiny-hearts {
  letter-spacing: 4px;
  color: var(--pink);
  font-size: 17px;
}

@media (max-width: 900px) {
  header { padding-top: 18px; }
  .status { display: none; }

  main {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 36px;
  }

  .copy {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  .eyebrow { justify-content: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .contact-card { margin-left: auto; margin-right: auto; justify-content: center; }

  .visual {
    min-height: 500px;
    margin-top: -10px;
  }

  .sticker-heart { right: 7%; }
  .sticker-step { left: 7%; }
}

@media (max-width: 560px) {
  header,
  main,
  footer { width: min(100% - 28px, 1180px); }

  .brand img { width: 145px; }
  main { padding-top: 24px; }
  h1 { font-size: clamp(44px, 15vw, 66px); }
  .lead { font-size: 18px; }

  .contact-card {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px;
  }

  .contact-copy { padding: 0; }
  .phone { justify-content: center; width: 100%; }

  .visual {
    min-height: 390px;
    margin-top: -4px;
  }

  .blob { width: 96%; }
  .blob::before { inset: 14px; }
  .sticker { display: none; }

  footer {
    flex-direction: column;
    text-align: center;
    padding-top: 10px;
  }
}
