:root {
  --theme: #f26076;
  --theme-dark: #cf3f56;
  --theme-light: #ff97a7;
  --ink: #12131a;
  --ink-soft: #4d5164;
  --surface: #ffffff;
  --surface-alt: #fff2f5;
  --line: #ffd2db;
}

html {
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 46%, #ffd3dc 0%, transparent 34%),
    radial-gradient(circle at 22% 56%, #ffe9ef 0%, transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 16%, #fff2f6 38%, #fff2f6 64%, #ffffff 86%, #ffffff 100%);
  line-height: 1.45;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--theme-dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.bg-orb {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.bg-orb-one {
  background: #ff9cae;
  top: 34vh;
  left: -60px;
}

.bg-orb-two {
  background: #ffbfd2;
  top: 52vh;
  right: -120px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  text-decoration: none;
  color: var(--theme);
  line-height: 1;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-word {
  font-family: "Baloo 2", "Trebuchet MS", sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
}

.logo-word span {
  display: inline-block;
  animation: logo-dance 2s ease-in-out infinite;
}

.logo-word span:nth-child(2) {
  animation-delay: 0.08s;
}

.logo-word span:nth-child(3) {
  animation-delay: 0.16s;
}

.logo-word span:nth-child(4) {
  animation-delay: 0.24s;
}

.logo-word span:nth-child(5) {
  animation-delay: 0.32s;
}

.logo-word span:nth-child(6) {
  animation-delay: 0.4s;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
}

main {
  padding-top: 14px;
  padding-bottom: 56px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: center;
  padding: 68px 0 58px;
  animation: fade-in-up 560ms ease-out both;
}

.hero-copy-wrap {
  min-width: 0;
}

.eyebrow {
  color: var(--theme-dark);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin: 0 0 10px;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 9.5vw, 7rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  max-width: 11ch;
}

.hero-pop {
  color: var(--theme);
}

.hero-copy {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--theme) 0%, var(--theme-dark) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 36px rgba(242, 96, 118, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(242, 96, 118, 0.34);
}

.cta-small {
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: none;
}

.cta-ghost {
  background: transparent;
  color: var(--theme-dark);
  border: 1.5px solid var(--line);
  box-shadow: none;
}

.cta-ghost:hover {
  box-shadow: none;
  border-color: var(--theme-light);
}

.hero-note {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-gallery {
  position: relative;
  min-height: 540px;
  padding: 24px 10px;
}

.hero-gallery::before,
.hero-gallery::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  z-index: 0;
}

.hero-gallery::before {
  width: 170px;
  height: 170px;
  background: rgba(242, 96, 118, 0.18);
  top: 28px;
  right: 22px;
}

.hero-gallery::after {
  width: 200px;
  height: 200px;
  background: rgba(255, 189, 203, 0.28);
  bottom: 16px;
  left: 16px;
}

.gallery-card {
  position: absolute;
  z-index: 1;
  width: var(--w, 170px);
  height: var(--h, 170px);
  --tile-radius: 20px;
  border-radius: var(--tile-radius);
  overflow: hidden;
  background: #fff;
  transform: rotate(-2deg);
  transition: transform 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px) rotate(0deg) scale(1.02);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--tile-radius);
  clip-path: inset(0 round var(--tile-radius));
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.gc-1 {
  --w: 200px;
  --h: 146px;
  top: 12px;
  left: 18px;
  transform: rotate(-7deg);
}

.gc-2 {
  --w: 178px;
  --h: 178px;
  top: 12px;
  right: 8px;
  transform: rotate(6deg);
}

.gc-3 {
  --w: 166px;
  --h: 166px;
  top: 136px;
  left: 94px;
  transform: rotate(-3deg);
}

.gc-4 {
  --w: 148px;
  --h: 202px;
  top: 232px;
  left: 8px;
  transform: rotate(5deg);
}

.gc-5 {
  --w: 170px;
  --h: 170px;
  top: 238px;
  right: 6px;
  transform: rotate(-8deg);
}

.gc-6 {
  --w: 160px;
  --h: 160px;
  top: 336px;
  left: 112px;
  transform: rotate(4deg);
}

.steps {
  padding-top: 16px;
  animation: fade-in-up 720ms ease-out both;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, #ffffff 0%, #fff6f8 100%);
}

.step-card h3 {
  margin: 4px 0 8px;
  font-size: 1.2rem;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
}

.step-num {
  font-family: "Bebas Neue", Impact, sans-serif;
  margin: 0;
  color: var(--theme-dark);
  letter-spacing: 0.08em;
  font-size: 1.1rem;
}

.availability {
  margin-top: 44px;
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff0f4 0%, #ffe6ec 100%);
  animation: fade-in-up 820ms ease-out both;
}

.availability p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  margin-top: 18px;
  margin-bottom: 4px;
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-wrap: anywhere;
}

.link-list li + li {
  margin-top: 6px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--theme-dark);
  border-color: var(--theme-light);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-main {
  padding-top: 24px;
  padding-bottom: 56px;
}

.guide-nav-shell {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
  max-width: 820px;
  margin-bottom: 18px;
}

.guide-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-nav-link {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--theme-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff;
}

.guide-nav-link:hover {
  border-color: var(--theme-light);
  transform: translateY(-1px);
}

.legal-shell {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(165deg, #ffffff 0%, #fff6f9 100%);
  padding: clamp(18px, 3.6vw, 36px);
  max-width: 820px;
  scroll-margin-top: 88px;
}

.legal-shell + .legal-shell {
  margin-top: 18px;
}

.legal-eyebrow {
  color: var(--theme-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}

.legal-shell h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 10px;
  max-width: none;
}

.legal-subhead {
  margin: 0 0 22px;
  color: var(--ink-soft);
}

.legal-section + .legal-section {
  margin-top: 22px;
}

.legal-section h2 {
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.legal-section p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}

.legal-section ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-meta {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .text-link {
    display: none;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 38px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-gallery {
    min-height: 520px;
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-card {
    transform: scale(0.9);
  }

  .gc-1 {
    --w: 182px;
    --h: 133px;
    top: 20px;
    left: 4px;
  }

  .gc-2 {
    --w: 158px;
    --h: 158px;
    top: 10px;
    right: 2px;
  }

  .gc-3 {
    --w: 150px;
    --h: 150px;
    top: 122px;
    left: 78px;
  }

  .gc-4 {
    --w: 132px;
    --h: 180px;
    top: 220px;
    left: 0;
  }

  .gc-5 {
    --w: 150px;
    --h: 150px;
    top: 232px;
    right: 2px;
  }

  .gc-6 {
    --w: 140px;
    --h: 140px;
    top: 318px;
    left: 92px;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 14px;
    padding-bottom: 30px;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-dance {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-2px) rotate(-4deg);
  }
  50% {
    transform: translateY(1px) rotate(3deg);
  }
  75% {
    transform: translateY(-1px) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-word span {
    animation: none;
  }
}
