:root {
  --pink-bubblegum: #ffd3e8;
  --pink-strong: #ff8fc0;
  --pink-deep: #ff5fa2;
  --blue-powder: #bfe6f2;
  --blue-powder-deep: #8fd0e8;
  --eggshell: #fbf7f1;
  --white: #ffffff;
  --text-dark: #5a4452;
  --text-soft: #8a7480;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 10px 30px rgba(255, 143, 192, 0.18);
  --font-body: 'Quicksand', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--eggshell);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Age Gate ---------- */
body.age-gate-locked { overflow: hidden; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(160deg, var(--pink-bubblegum), var(--blue-powder));
}

.age-gate[hidden] { display: none; }

.age-gate-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(90, 68, 82, 0.25);
}

.age-gate-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--pink-deep);
  margin: 0 0 20px;
}

.age-gate-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 14px;
  color: var(--text-dark);
}

.age-gate-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0 0 28px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-gate-actions .btn { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 143, 192, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--pink-deep);
}

.logo-dot { color: var(--blue-powder-deep); }

.site-nav {
  display: flex;
  gap: 32px;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 4px;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--pink-strong);
  transition: width 0.25s ease;
}

.site-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--pink-deep);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-strong), var(--pink-deep));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255, 95, 162, 0.28); }

.btn-outline {
  background: var(--white);
  border-color: var(--blue-powder-deep);
  color: var(--text-dark);
}

.btn-outline:hover { background: var(--blue-powder); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
  text-align: center;
  background: linear-gradient(180deg, var(--pink-bubblegum) 0%, var(--eggshell) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-photo { display: flex; justify-content: center; margin-bottom: 28px; }

.hero-photo-ring {
  padding: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-strong), var(--blue-powder-deep));
}

.hero-photo-placeholder {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-strong);
}

.hero-photo-placeholder svg { width: 72px; height: 72px; }
.hero-photo-placeholder img { width: 160px; height: 160px; border-radius: 50%; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 12px;
  color: var(--text-dark);
}

.hero-title span { color: var(--pink-deep); font-style: italic; }

.hero-tagline {
  max-width: 520px;
  margin: 0 auto 34px;
  color: var(--text-soft);
  font-size: 1.1rem;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
  z-index: 1;
}

.hero-blob-1 {
  width: 220px; height: 220px;
  background: var(--blue-powder);
  top: -60px; left: -60px;
}

.hero-blob-2 {
  width: 260px; height: 260px;
  background: var(--pink-strong);
  opacity: 0.35;
  bottom: -100px; right: -80px;
}

/* ---------- Section shared ---------- */
section { padding: 90px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  text-align: center;
  margin: 0 0 12px;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  margin: 0 0 48px;
}

/* ---------- About ---------- */
.about { background: var(--white); }

.about-inner { max-width: 720px; }

.about-text {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 48px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--pink-bubblegum);
  border-radius: var(--radius-md);
  padding: 24px 36px;
  text-align: center;
  min-width: 140px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--pink-deep);
  font-weight: 600;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--blue-powder); }

.gallery-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px calc(50% - 130px) 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 260px;
  aspect-ratio: 1 / 1;
  scroll-snap-align: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--white), var(--pink-bubblegum));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-weight: 600;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-soon {
  position: relative;
  background: linear-gradient(135deg, var(--pink-bubblegum), var(--blue-powder));
}

.gallery-item-soon .gallery-soon-bg {
  position: absolute;
  inset: 0;
  width: 62%;
  height: 62%;
  margin: auto;
  object-fit: contain;
  opacity: 0.4;
}

.gallery-item-soon .gallery-soon-text {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--text-dark);
  padding: 0 24px;
}

.gallery-item:hover { transform: scale(1.03); }

.carousel-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--pink-bubblegum);
  color: var(--pink-deep);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-arrow:hover { background: var(--pink-bubblegum); transform: translateY(-1px); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-bubblegum);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: var(--pink-deep);
  width: 22px;
  border-radius: 4px;
}

/* ---------- Links ---------- */
.links { background: var(--eggshell); }

.link-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 460px;
  margin: 0 auto;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 2px solid var(--pink-bubblegum);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.link-btn:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: var(--pink-strong);
  box-shadow: var(--shadow-soft);
}

.link-btn-accent {
  background: var(--blue-powder);
  border-color: var(--blue-powder-deep);
}

.link-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--pink-deep);
}

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

/* ---------- Contact ---------- */
.contact { background: var(--white); }

.contact-inner { max-width: 560px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-row label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-row input,
.form-row textarea {
  border: 2px solid var(--pink-bubblegum);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--eggshell);
  color: var(--text-dark);
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue-powder-deep);
}

.contact-form .btn { align-self: center; margin-top: 8px; }

.form-note {
  text-align: center;
  font-weight: 600;
  color: var(--pink-deep);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pink-bubblegum);
  padding: 32px 0;
  text-align: center;
}

.footer-inner p { margin: 8px 0 0; color: var(--text-soft); font-size: 0.9rem; }

.back-to-top { font-weight: 700; color: var(--pink-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .gallery-item { flex-basis: 220px; }
  .gallery-carousel { padding-left: calc(50% - 110px); padding-right: calc(50% - 110px); }
  .carousel-arrow { width: 40px; height: 40px; font-size: 1.4rem; }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--eggshell);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(255, 143, 192, 0.15);
  }

  .site-nav.open { max-height: 300px; }

  .site-nav a { width: 100%; text-align: center; padding: 16px; }

  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .gallery-item { flex-basis: 74vw; }
  .gallery-carousel { padding-left: calc(50% - 37vw); padding-right: calc(50% - 37vw); }
  .gallery-carousel-wrap { gap: 6px; }
  section { padding: 64px 0; }
  .hero { padding: 70px 0 90px; }
}
