:root {
  --pink: #f63b8d;
  --pink-dark: #d91c6f;
  --purple: #7642df;
  --purple-dark: #25145d;
  --white: #ffffff;
  --ink: #221654;
  --shell: 1320px;
  --shadow-lg: 0 24px 60px rgba(100, 62, 176, 0.16);
  --shadow-md: 0 12px 30px rgba(100, 62, 176, 0.12);
  --shadow-sm: 0 8px 18px rgba(100, 62, 176, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 20%, rgba(122, 217, 230, 0.10), transparent 14%),
    radial-gradient(circle at 90% 10%, rgba(246, 59, 141, 0.08), transparent 18%),
    linear-gradient(180deg, #fffafc 0%, #fffdf8 52%, #fbf7ff 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.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;
}

.shell {
  width: min(var(--shell), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 252, 0.92);
  border-bottom: 1px solid rgba(118, 66, 223, 0.08);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mascot {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 10px 16px rgba(118, 66, 223, 0.10));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.brand-bella { color: var(--pink); }
.brand-lab { color: var(--purple); }
.brand-heart {
  position: absolute;
  color: var(--pink);
  font-size: 0.45em;
  line-height: 1;
}
.brand-heart-one { right: -12px; top: 2px; }
.brand-heart-two { right: -4px; bottom: -1px; }
.brand-subtitle {
  font-family: "Baloo 2", cursive;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--pink-dark);
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 900;
  color: var(--purple-dark);
  font-size: 0.98rem;
}
.main-nav a {
  transition: transform 180ms ease, color 180ms ease;
}
.main-nav a:hover {
  color: var(--pink);
  transform: translateY(-1px);
}
.soon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
}
.soon-link span {
  font-size: 0.75rem;
  padding: 8px 11px;
  border-radius: 999px;
  border: 2px dashed rgba(246, 59, 141, 0.55);
  background: rgba(255,255,255,0.78);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  background: var(--purple);
  border-radius: 999px;
}

.site-main-shell {
  padding: 24px 0 0;
}

.hero-image-wrap {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.hero-image {
  width: 100%;
  height: auto;
}

.feature-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.feature-image-card {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
  background: #fff;
}
.feature-image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-image-card img {
  width: 100%;
  height: auto;
}

.content-row {
  padding: 28px 0 42px;
}

.latest {
  width: 100%;
}


.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.section-heading h2,
.party-panel h2,
.footer-contact h2 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  line-height: 1;
}
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--purple-dark);
}
.section-heading h2 span { color: var(--pink); }
.section-heading a {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ad9e6, #36c0d0);
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gallery-card {
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
}
.gallery-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}
.gallery-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px;
  text-align: center;
  font-weight: 900;
  color: var(--purple-dark);
}
.gallery-caption span { color: var(--pink); }

.idea-visual {
  height: 145px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.22), transparent 14%),
    linear-gradient(135deg, #25145d, #7040de 50%, #f63b8d);
}
.idea-visual span { font-size: 2rem; }
.idea-visual strong { font-size: 1.1rem; }
.idea-visual small { line-height: 1.2; opacity: 0.94; }

.site-footer {
  background: linear-gradient(180deg, #efe1ff 0%, #ddccff 100%);
  border-radius: 48% 48% 0 0 / 20% 20% 0 0;
}
.footer-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 0 30px;
}
.footer-note,
.footer-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-note > span,
.footer-contact > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  font-size: 1.55rem;
  box-shadow: var(--shadow-sm);
}
.footer-note p,
.footer-contact p {
  margin: 0;
  font-weight: 800;
  color: var(--purple-dark);
}
.footer-note p span { color: var(--pink); }
.footer-contact h2 {
  font-size: 1.55rem;
  color: var(--purple-dark);
  margin-bottom: 4px;
}

@media (max-width: 1180px) {
  .feature-image-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 930px) {
  .header-shell { align-items: flex-start; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 92px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open { display: flex; }
  .brand-title { font-size: 2.2rem; }
  .brand-subtitle { font-size: 0.95rem; }
}

@media (max-width: 760px) {
  .shell { width: min(var(--shell), calc(100% - 24px)); }
  .feature-image-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-shell { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand { gap: 10px; }
  .brand-mascot { width: 60px; height: 60px; }
  .brand-title { font-size: 1.8rem; }
  .brand-subtitle { font-size: 0.83rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card img, .idea-visual { height: 200px; }
}
