:root {
  --ink: #1e1b4b;
  --muted: #64748b;
  --pink: #ec4899;
  --purple: #8b5cf6;
  --sky: #38bdf8;
  --cream: #fff7ed;
  --white: #ffffff;
  --radius: 1rem;
  --shadow: 0 14px 40px rgba(30, 27, 75, 0.1);
  --section-y: clamp(2.75rem, 5vw, 4rem);
  --border-soft: rgba(139, 92, 246, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:active {
    transform: none;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  left: 0.75rem;
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: "Fredoka", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--purple);
}

.container {
  width: min(1040px, 92vw);
  margin: 0 auto;
}

.container-narrow {
  width: min(640px, 92vw);
}

/* Top bar */
.top-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 600;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.5rem 0;
}

.top-bar-call a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.top-bar-call a:hover {
  text-decoration: underline;
}

.btn-top {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
}

.btn-top:hover {
  filter: brightness(1.06);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  order: 1;
}

.brand-logo {
  display: block;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(30, 27, 75, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.brand-name {
  font-family: "Fredoka", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(0.98rem, 2.2vw, 1.15rem);
  color: var(--ink);
}

.brand-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-toggle {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  order: 3;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 2px solid var(--border-soft);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-burger span::before {
  top: -6px;
}

.nav-burger span::after {
  top: 6px;
}

.primary-nav {
  order: 4;
  width: 100%;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.nav-list a {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink);
}

.nav-list a:hover {
  color: var(--purple);
}

.nav-list-external a {
  color: var(--purple);
}

.header-cta-row {
  order: 2;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .brand {
    flex: 1;
    min-width: 0;
  }

  .nav-burger {
    display: flex;
  }

  .primary-nav {
    display: none;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid var(--border-soft);
  }

  .nav-toggle:checked ~ .primary-nav {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 961px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .primary-nav {
    order: 2;
    flex: 1;
    display: flex !important;
    justify-content: center;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }

  .header-cta-row {
    order: 3;
  }

  .nav-burger {
    display: none !important;
  }
}

.brand:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
  border-radius: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}

.btn:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border-soft);
}

.btn-secondary:hover {
  border-color: var(--purple);
}

/* Hero */
.hero {
  text-align: center;
  padding: var(--section-y) 0;
  background: linear-gradient(165deg, #fdf4ff 0%, #eff6ff 42%, #fff7ed 100%);
  border-bottom: 1px solid var(--border-soft);
}

.hero-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  margin: 0 0 0.5rem;
}

.hero-kicker {
  font-family: "Fredoka", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple);
  margin: 0 0 1.1rem;
}

.hero-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Page sections — consistent rhythm */
.page-section {
  padding: var(--section-y) 0;
}

.page-section--tint {
  background: linear-gradient(180deg, rgba(253, 244, 255, 0.45) 0%, rgba(239, 246, 255, 0.35) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.section-deck {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* About + process */
.about-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

.about-main p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.about-main p:last-child {
  margin-bottom: 0;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.process-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.process-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  font-family: "Fredoka", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

.process-title {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.process-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-cell {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  background: var(--cream);
  aspect-ratio: 1;
}

.gallery-cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Events */
.events-cols {
  display: grid;
  gap: 2rem 3rem;
  grid-template-columns: 1fr 1fr;
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 520px) {
  .events-cols {
    grid-template-columns: 1fr;
  }
}

.events-sub {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.events-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.events-list li {
  padding: 0.35rem 0;
  padding-left: 1rem;
  border-left: 3px solid rgba(139, 92, 246, 0.35);
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.96rem;
}

/* Cards (party rentals) */
.cards {
  display: grid;
  gap: 1.25rem;
}

.cards-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .cards-two {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.card-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.card-title {
  font-family: "Fredoka", system-ui, sans-serif;
  font-size: 1.15rem;
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  font-size: 0.96rem;
}

.card .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.card-party {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(145deg, #fff 0%, #f0f9ff 100%);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 20px rgba(30, 27, 75, 0.06);
}

.faq-q {
  font-family: "Fredoka", system-ui, sans-serif;
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.faq-a {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* Form */
.form-success-banner {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  text-align: center;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.88rem;
}

.req {
  color: var(--pink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(100, 116, 139, 0.35);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 1px;
  border-color: var(--purple);
}

.contact-form textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 0.15rem;
  border: none;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  padding: 2.25rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-heading {
  font-family: "Fredoka", system-ui, sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 0.65rem;
}

.footer-col p {
  margin: 0 0 0.45rem;
  line-height: 1.5;
}

.footer-col a {
  color: #e9d5ff;
  font-weight: 700;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-col .btn {
  margin-top: 0.35rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-bottom {
  padding: 1.1rem 0 1.5rem;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom a {
  color: #e9d5ff;
  font-weight: 700;
}
