:root {
  --lavender: #C9B6E4;
  --purple: #A892D6;
  --peach: #F3A7A0;
  --gold-peach: #F6D3A2;
  --bg: #F7F5FB;
  --ink: #352747;
  --muted: #6f627d;
  --white: #ffffff;
  --line: rgba(53, 39, 71, 0.14);
  --shadow: 0 22px 70px rgba(53, 39, 71, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  width: 100%;
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 154px;
  min-width: 132px;
}

.main-nav {
  color: #4c3b61;
  font-size: 1rem;
  font-weight: 700;
}

.main-nav a,
.nav-drop-toggle {
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-drop-toggle:hover,
.nav-drop-toggle:focus-visible {
  border-color: var(--peach);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-toggle {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-drop-toggle .material-icons,
.menu-icon {
  font-size: 18px;
  line-height: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  display: none;
  min-width: 230px;
  border: 0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.dropdown-menu a {
  display: block;
  border: 0;
  border-radius: 18px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(201, 182, 228, 0.22);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  display: block;
}

.button,
.header-cta {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button::after,
.header-cta::after {
  content: "chevron_right";
  font-family: "Material Icons";
  font-size: 18px;
  line-height: 1;
}

.party-button::after {
  content: none;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 600,
    "GRAD" 0,
    "opsz" 24;
}

.party-button .material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
}

.primary,
.header-cta {
  color: var(--white);
  background: linear-gradient(90deg, #8f73c7 0%, #F3A7A0 100%);
  box-shadow: 0 12px 28px rgba(168, 146, 214, 0.34);
}

.secondary {
  color: #51366b;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(53, 39, 71, 0.12);
}

.card-button {
  width: fit-content;
  border: 1px solid #C9B6E4;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(249, 242, 245, 0.9) 0%, rgba(240, 222, 239, 0.7) 48%, rgba(246, 211, 162, 0.28) 100%),
    linear-gradient(135deg, rgba(182, 154, 197, 0.62), rgba(240, 222, 239, 0.44));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(249, 242, 245, 0.7) 0%, rgba(240, 222, 239, 0.5) 42%, rgba(246, 211, 162, 0.1) 100%),
    url("../img/hero-bg.png");
  background-position: left bottom;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(145deg, rgba(182, 154, 197, 0.16), rgba(240, 222, 239, 0.2) 48%, rgba(246, 211, 162, 0.16));
  pointer-events: none;
}

.hero-content,
.hero-overlay,
.hero-wave,
.sparkle {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero-overlay {
  position: absolute;
  inset: -140px 0 0;
  z-index: 2;
  background: url("../img/hero-overlay.png") top center / 100% auto no-repeat;
  mix-blend-mode: normal;
  pointer-events: none;
}

.hero-content {
  width: min(46vw, 760px);
  max-width: 760px;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 1;
  width: 100%;
  height: clamp(200px, 40vw, 700px);
  color: var(--bg);
  opacity: 0.5;
  pointer-events: none;
}

.hero-wave path {
  fill: currentColor;
}

.hero-wave-front {
  bottom: 0px;
  height: clamp(100px, 20vw, 500px);
  z-index: 3;
  opacity: 1;
}

.eyebrow {
  color: #8064b4;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  word-break: normal;
}

h1 {
  max-width: 730px;
  font-size: clamp(2.5rem, 8vw, 5.9rem);
}

.hero h1 {
  max-width: 10.8ch;
  font-size: clamp(3.6rem, 5.1vw, 5.15rem);
}

h2 {
  max-width: 840px;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.22rem, 3vw, 2rem);
}

h4 {
  font-size: 1rem;
}

.hero-content > p:not(.eyebrow) {
  max-width: 690px;
  color: #574469;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.sparkle {
  position: absolute;
  color: #b18bd1;
  font-size: clamp(1.5rem, 4vw, 3.6rem);
  text-shadow: 0 8px 22px rgba(53, 39, 71, 0.18);
}

.sparkle-one {
  top: 22%;
  left: 46%;
}

.sparkle-two {
  right: 9%;
  top: 19%;
  color: var(--gold-peach);
}

.sparkle-three {
  left: 7%;
  bottom: 12%;
  color: var(--peach);
}

.section-heading {
  width: 100%;
  max-width: none;
  text-align: left;
}

.section-subtitle {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 500;
}

.section-heading > div {
  max-width: 900px;
}

.services {
  background: var(--white);
}

.service-feature {
  width: 100%;
  max-width: none;
  overflow: hidden;
}

.service-feature p:not(.eyebrow) {
  color: var(--muted);
}

.service-copy {
  height: 100%;
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(53, 39, 71, 0.09), 0 6px 14px rgba(168, 146, 214, 0.1);
  position: relative;
  z-index: 1;
}

.service-media {
  min-height: clamp(440px, 38vw, 560px);
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 2;
  transform: translateX(clamp(-80px, -3vw, -36px));
  overflow: visible;
}

.service-media-image {
  width: clamp(560px, 52vw, 650px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
}

.service-card,
.addon-card,
.price-card,
.contact-form,
.contact-details {
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(53, 39, 71, 0.09), 0 6px 14px rgba(168, 146, 214, 0.1);
}

.service-grid > [class*="col"]:nth-child(1) .service-card {
  background: rgba(201, 182, 228, 0.5);
}

.service-grid > [class*="col"]:nth-child(2) .service-card {
  background: rgba(243, 167, 160, 0.5);
}

.service-grid > [class*="col"]:nth-child(3) .service-card {
  background: rgba(246, 211, 142, 0.5);
}

.service-card p,
.service-card .card-mark {
  color: rgba(53, 39, 71, 0.78);
}

.service-card .check-list li::before {
  color: #A892D6;
}

.service-card .check-list.white-icons li::before {
  color: #ffffff;
}

.service-card .card-button {
  border-color: rgba(168, 146, 214, 0.46);
  background: rgba(255, 255, 255, 0.9);
}

.service-card,
.addon-card,
.price-card {
  min-height: 100%;
}

.addon-card p {
  color: var(--muted);
}

.price-card p {
  color: var(--muted);
}

.price-card .package-price {
  color: var(--ink);
}

.price-card h3 {
  font-size: clamp(1.22rem, 1.7vw, 1.65rem);
}

.card-mark,
.package-label {
  width: fit-content;
  border-radius: 0;
  color: #8064b4;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-label {
  border-radius: 999px;
  color: #51366b;
  background: var(--lavender);
  text-transform: none;
}

.pricing-grid > [class*="col"]:nth-child(1) .package-label {
  background: #F7F5FB;
}

.pricing-grid > [class*="col"]:nth-child(2) .package-label {
  background: rgba(201, 182, 228, 0.7);
}

.pricing-grid > [class*="col"]:nth-child(3) .package-label {
  background: rgba(243, 167, 160, 0.55);
}

.pricing-grid > [class*="col"]:nth-child(4) .package-label {
  background: rgba(246, 211, 162, 0.75);
}

.price-card-badges {
  width: 100%;
}

.package-price {
  color: var(--purple);
  font-size: clamp(3rem, 4.3vw, 4rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.package-price span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 24px;
}

.check-list li::before {
  content: "celebration";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  color: #A892D6;
  background: transparent;
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  font-variation-settings:
    "FILL" 0,
    "wght" 700,
    "GRAD" 0,
    "opsz" 24;
  line-height: 1;
  text-align: center;
}

.templates {
  background: var(--bg);
}

.template-filter {
  width: 100%;
  color: #352747;
  font-size: 1rem;
  font-weight: 700;
}

.template-filter a:first-child,
.template-filter .is-active {
  color: #c6923f;
}

.template-filter span {
  color: rgba(53, 39, 71, 0.46);
}

.template-card {
  display: block;
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(53, 39, 71, 0.08), 0 6px 12px rgba(168, 146, 214, 0.1);
}

.template-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.template-card:hover img {
  transform: scale(1.04);
}

.template-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  border-radius: 999px;
  color: #352747;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(53, 39, 71, 0.12);
}

.addons {
  background: var(--white);
}

.addon-card {
  background: linear-gradient(180deg, #ffffff, rgba(201, 182, 228, 0.18));
}

.pricing {
  background: var(--bg);
}

.mobile-pricing-image {
  display: none;
}

.price-card {
  position: relative;
}

.price-card .button {
  background-color: var(--purple);
  color: var(--white);
}

.featured {
  background: linear-gradient(180deg, rgba(201, 182, 228, 0.32), rgba(255, 255, 255, 0.96) 42%, rgba(246, 211, 162, 0.28));
  border-color: rgba(168, 146, 214, 0.62);
}

.popular {
  border-radius: 999px;
  color: #ffffff;
  background: var(--purple);
  font-size: 0.8rem;
  font-weight: 900;
}

.mascot-section {
  background: var(--bg);
  position: relative;
  min-height: clamp(330px, 28vw, 440px);
}

.mascot-copy {
  max-width: 820px;
}

.mascot-copy p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.12rem;
}

.mascot-section img {
  width: clamp(430px, 36vw, 660px);
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  z-index: 1;
  pointer-events: none;
}

.contact {
  background: var(--white);
}

.contact-layout {
  width: 100%;
  max-width: none;
}

.contact-details {
  align-self: flex-start;
}

.contact-details h3,
.faq-panel h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

label {
  color: #51366b;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(168, 146, 214, 0.52);
  border-radius: 18px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  color: #8064b4;
  font-weight: 800;
}

.contact-details p {
  color: var(--muted);
}

.faq-panel {
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(53, 39, 71, 0.09), 0 6px 14px rgba(168, 146, 214, 0.1);
}

details {
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

summary {
  cursor: pointer;
  color: #51366b;
  font-weight: 900;
}

.site-footer {
  color: #4c3b61;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 160px;
}

@media (max-width: 1320px) {
  .hero-content {
    width: 44vw;
    max-width: 560px;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(3.35rem, 5vw, 4.25rem);
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 470px;
    font-size: 1.12rem;
  }

  .hero-overlay {
    inset: -132px 0 0;
    background-position: bottom -50px center;
    background-size: 100% auto;
  }
}

@media (max-width: 1080px) {
  .service-media {
    display: none;
  }

  .menu-toggle {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    color: #51366b;
    background: #ffffff;
    font-weight: 900;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    border: 0;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .main-nav a {
    border: 0;
    border-radius: 18px;
  }

  .nav-drop-toggle {
    width: 100%;
    border: 0;
    border-radius: 18px;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background-position: center right 18%;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 136px;
  }

  .menu-toggle {
    width: 44px;
    font-size: 0;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    width: auto;
  }

  .header-actions .button {
    min-width: 0;
  }

  .header-login {
    min-height: 38px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .header-login::after {
    font-size: 16px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(249, 242, 245, 0.86) 0%, rgba(240, 222, 239, 0.68) 58%, rgba(246, 211, 162, 0.24) 100%),
      url("../img/hero-bg.png");
    background-position: 64% center;
    background-size: auto 100%;
  }

  .hero-overlay {
    display: none;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .mascot-section {
    min-height: auto;
    overflow: hidden;
  }

  .service-media {
    display: none;
  }

  .mobile-pricing-image {
    display: block;
  }

  .mobile-pricing-image img {
    width: min(100%, 420px);
    max-width: 100%;
  }

  .mascot-section img {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 420px);
    max-width: 100%;
    transform: none;
    pointer-events: auto;
  }

  .price-card .button {
    width: 100%;
  }

  .template-card,
  .template-card img {
    min-height: 220px;
  }

  .popular {
    position: static;
    width: fit-content;
  }
}
