@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --pink-50: #fff5fa;
  --pink-100: #ffe4f0;
  --pink-200: #ffc8df;
  --pink-300: #ff9bc4;
  --pink-400: #ff73ad;
  --pink-500: #ff4f9b;
  --pink-600: #ea367f;
  --pink-700: #bd225f;
  --ink: #3d1830;
  --muted: #77566b;
  --white: #ffffff;
  --green: #21c063;
  --shadow: 0 24px 70px rgba(197, 52, 121, 0.14);
  --soft-shadow: 0 14px 38px rgba(197, 52, 121, 0.11);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 183, 215, 0.55), transparent 30%),
    radial-gradient(circle at 92% 22%, rgba(255, 213, 233, 0.8), transparent 28%),
    linear-gradient(180deg, #fff8fc 0%, #fff 44%, #fff4fa 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(rgba(255, 99, 164, 0.2) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.bg-decoration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,148,195,.35));
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 0 24px rgba(255,255,255,.7);
  animation: float 9s ease-in-out infinite;
}

.bubble-1 { width: 110px; height: 110px; left: -30px; top: 18%; }
.bubble-2 { width: 76px; height: 76px; right: 3%; top: 43%; animation-delay: -3s; }
.bubble-3 { width: 150px; height: 150px; left: 8%; bottom: 4%; animation-delay: -6s; }

.sparkle {
  position: absolute;
  color: var(--pink-400);
  opacity: .55;
  animation: twinkle 3.4s ease-in-out infinite;
}

.sparkle-1 { top: 11%; right: 12%; font-size: 42px; }
.sparkle-2 { top: 52%; left: 4%; font-size: 34px; animation-delay: -1.2s; }
.sparkle-3 { bottom: 11%; right: 8%; font-size: 50px; animation-delay: -2.1s; }

.page-shell {
  width: min(100% - 32px, 850px);
  margin: 0 auto;
  padding: 42px 0 34px;
}

.card,
.section-block,
.notice-card {
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(255,255,255,.95), rgba(255,235,245,.92));
}

.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(255, 123, 177, .13);
}

.hero-image-wrap {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  padding: 7px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fff, #ffc7df 45%, #ff6eac);
  box-shadow: 0 20px 50px rgba(185, 43, 110, .22);
  transform: rotate(-1.3deg);
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

.verified-badge {
  position: absolute;
  right: -8px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  border: 6px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--pink-400), var(--pink-600));
  box-shadow: 0 10px 28px rgba(223, 49, 126, .35);
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 7px;
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .19em;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--pink-300);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(44px, 9vw, 70px);
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--ink);
}

.hero-copy {
  max-width: 620px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 18px;
  border: 0;
  border-radius: 18px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  box-shadow: 0 14px 28px rgba(224, 54, 130, .28);
}

.btn-soft {
  color: var(--pink-700);
  background: rgba(255, 255, 255, .85);
  box-shadow: inset 0 0 0 1px var(--pink-200), 0 12px 26px rgba(201, 55, 124, .1);
}

.section-block {
  margin-top: 22px;
  padding: 25px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.78);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
}

.section-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--pink-700);
  font-size: 22px;
  font-weight: 900;
  border: 1px solid rgba(255, 120, 177, .25);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, var(--pink-100));
  box-shadow: 0 8px 22px rgba(204, 58, 127, .12);
}

.section-kicker {
  margin-bottom: 2px;
  color: var(--pink-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: "Baloo 2", cursive;
  font-size: 26px;
  line-height: 1.1;
}

.link-grid,
.contact-grid {
  display: grid;
  gap: 12px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 128, 181, .18);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.9);
  box-shadow: var(--soft-shadow);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: var(--pink-300);
  box-shadow: 0 18px 38px rgba(196, 48, 116, .14);
}

.icon-box {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  border-radius: 17px;
  box-shadow: inset 0 -6px 14px rgba(0,0,0,.08);
}

.whatsapp { background: linear-gradient(145deg, #43dd80, #20b95c); }
.rental { background: linear-gradient(145deg, #ff89bd, #ef478f); }
.testi { background: linear-gradient(145deg, #ffc95f, #ff9c38); }
.tiktok { background: linear-gradient(145deg, #292333, #09070b); font-size: 24px; }
.instagram { background: linear-gradient(145deg, #7e4de8, #e94498 52%, #ffb33e); font-size: 25px; }

.link-content {
  min-width: 0;
  flex: 1;
}

.link-content strong,
.link-content small {
  display: block;
}

.link-content strong {
  margin-bottom: 3px;
  font-size: 16px;
}

.link-content small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--pink-600);
  font-size: 28px;
  border-radius: 12px;
  background: var(--pink-50);
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  padding: 18px;
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #fff5fa);
  box-shadow: var(--soft-shadow);
}

.contact-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(33,192,99,.13);
}

.phone-number {
  display: inline-block;
  margin-bottom: 15px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(22px, 4vw, 29px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-actions button,
.contact-actions a {
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 9px 10px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: transform .2s ease, filter .2s ease;
}

.contact-actions button:hover,
.contact-actions a:hover {
  transform: translateY(-2px);
  filter: brightness(.98);
}

.contact-actions button {
  color: var(--pink-700);
  background: var(--pink-100);
}

.contact-actions a {
  color: #fff;
  background: linear-gradient(135deg, #35cf72, #1eae58);
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notice-card {
  display: flex;
  gap: 15px;
  margin-top: 22px;
  padding: 22px;
  border-color: rgba(255, 173, 77, .35);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,245,223,.95));
}

.notice-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #9a5600;
  font-size: 22px;
  font-weight: 900;
  border-radius: 15px;
  background: #ffe0a7;
}

.notice-card h2 {
  margin-bottom: 4px;
  font-family: "Baloo 2", cursive;
  font-size: 22px;
}

.notice-card p {
  margin-bottom: 0;
  color: #765a3d;
  line-height: 1.6;
}

footer {
  padding: 32px 18px 10px;
  text-align: center;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 2px;
  color: var(--ink);
  font-family: "Baloo 2", cursive;
  font-size: 25px;
  font-weight: 800;
}

.footer-brand span {
  color: var(--pink-500);
}

footer p {
  margin-bottom: 6px;
  color: var(--pink-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

footer small {
  font-size: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  padding: 13px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(61, 24, 48, .93);
  box-shadow: 0 14px 30px rgba(59, 20, 44, .24);
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

@keyframes twinkle {
  0%, 100% { transform: scale(.9) rotate(-4deg); opacity: .3; }
  50% { transform: scale(1.14) rotate(6deg); opacity: .75; }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 20px, 850px);
    padding-top: 14px;
  }

  .hero,
  .section-block,
  .notice-card {
    border-radius: 25px;
  }

  .hero {
    padding: 16px 14px 22px;
  }

  .hero-image-wrap {
    width: min(100%, 325px);
    margin-bottom: 19px;
    border-radius: 25px;
  }

  .hero-image {
    border-radius: 19px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy {
    padding: 0 5px;
    font-size: 14px;
  }

  .hero-actions,
  .contact-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .section-block {
    margin-top: 14px;
    padding: 18px 14px;
  }

  .section-heading {
    margin-left: 3px;
  }

  .link-card {
    min-height: 82px;
    padding: 12px;
  }

  .link-content small {
    font-size: 12px;
  }

  .notice-card {
    margin-top: 14px;
    padding: 18px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
