:root {
  --plum: #35203d;
  --plum-dark: #24152a;
  --peach: #f4b49c;
  --coral: #e87867;
  --yellow: #f6d66d;
  --cream: #fff8ed;
  --soft-cream: #f9eee2;
  --pink: #f2c5c4;
  --lavender: #ddd0e9;
  --charcoal: #272228;
  --text: #453c43;
  --muted: #766c73;
  --white: #ffffff;
  --border: #e4d7d0;
  --shadow: 0 18px 50px rgba(53, 32, 61, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

/* HEADER */

.site-header {
  background: rgba(255, 248, 237, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  font-family: "Fredoka", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.logo b {
  color: var(--coral);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: var(--plum);
  display: grid;
  place-items: center;
  transform: rotate(-8deg);
  font-size: 18px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 25px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  transition: .25s;
  position: relative;
}

.main-nav a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--coral);
  position: absolute;
  left: 0;
  bottom: -7px;
  transition: .25s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--coral);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-button {
  background: var(--plum);
  color: white;
  padding: 11px 19px;
  font-size: 13px;
  font-weight: 800;
  transition: .25s;
}

.nav-button:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

/* HERO */

.hero {
  min-height: 670px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(246,214,109,.55), transparent 23%),
    radial-gradient(circle at 15% 90%, rgba(244,180,156,.45), transparent 25%),
    var(--soft-cream);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.4px;
  color: var(--coral);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.04;
  color: var(--plum);
  max-width: 650px;
  letter-spacing: -1.5px;
}

.hero h1 span,
h2 span {
  color: var(--coral);
}

.hero-content > p {
  margin-top: 24px;
  font-size: 17px;
  color: var(--muted);
  max-width: 570px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  padding: 14px 23px;
  font-size: 13px;
  font-weight: 900;
  transition: .25s;
}

.btn-primary {
  background: var(--plum);
  color: white;
}

.btn-primary:hover {
  background: var(--coral);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--plum);
  color: var(--plum);
}

.btn-outline:hover {
  background: var(--plum);
  color: white;
}

.hero-note {
  margin-top: 25px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.hero-note span {
  color: var(--coral);
  margin-right: 7px;
}

.hero-art {
  min-height: 480px;
  position: relative;
  display: grid;
  place-items: center;
}

.main-toy {
  width: 275px;
  height: 310px;
  background: var(--plum);
  position: relative;
  transform: rotate(5deg);
  box-shadow: 24px 25px 0 var(--yellow);
  border: 7px solid var(--white);
}

.toy-star {
  position: absolute;
  right: 25px;
  top: 22px;
  color: var(--yellow);
  font-size: 35px;
}

.toy-face {
  position: absolute;
  top: 115px;
  left: 75px;
  display: flex;
  gap: 65px;
  color: white;
  font-size: 30px;
}

.toy-smile {
  color: var(--peach);
  font-size: 58px;
  position: absolute;
  left: 103px;
  top: 137px;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-card span {
  font-size: 35px;
}

.floating-card small {
  font-weight: 900;
  font-size: 10px;
  color: var(--plum);
  letter-spacing: 1px;
}

.card-yellow {
  top: 48px;
  right: 35px;
  transform: rotate(8deg);
}

.card-coral {
  bottom: 48px;
  left: 20px;
  transform: rotate(-7deg);
}

.circle-text {
  position: absolute;
  right: 4px;
  bottom: 40px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 16px;
  transform: rotate(-12deg);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .5;
}

.shape-one {
  width: 180px;
  height: 180px;
  border: 30px solid var(--peach);
  left: -90px;
  top: 120px;
}

.shape-two {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  right: 15%;
  top: 8%;
}

/* INTRO */

.intro-strip {
  background: var(--plum);
  color: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-grid > div {
  padding: 38px 35px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.intro-grid > div:last-child {
  border-right: 0;
}

.number {
  font-family: "Fredoka", sans-serif;
  color: var(--yellow);
  font-size: 13px;
}

.intro-grid h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 20px;
  margin-top: 4px;
}

.intro-grid p {
  color: #d8ccd9;
  font-size: 13px;
  margin-top: 4px;
}

/* COMMON SECTIONS */

.section {
  padding: 100px 0;
}

h2 {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(38px, 5vw, 57px);
  line-height: 1.1;
  color: var(--plum);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.section-heading > p {
  max-width: 400px;
  color: var(--muted);
}

/* ABOUT */

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 85px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 410px;
  background: var(--lavender);
  display: grid;
  place-items: center;
}

.about-box {
  width: 250px;
  height: 290px;
  background: var(--plum);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-5deg);
  box-shadow: 18px 20px 0 var(--coral);
}

.big-symbol {
  color: var(--yellow);
  font-size: 44px;
}

.about-box strong {
  font-family: "Fredoka", sans-serif;
  font-size: 43px;
  margin-top: 5px;
}

.about-box > span:last-child {
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 1.5;
}

.about-tag {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: var(--yellow);
  color: var(--plum);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 9px 13px;
}

.about-content > p {
  color: var(--muted);
  margin-top: 20px;
  max-width: 630px;
}

.text-link {
  display: inline-block;
  color: var(--plum);
  font-weight: 900;
  margin-top: 25px;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 4px;
}

.text-link span {
  margin-left: 8px;
}

/* COLLECTIONS */

.collections-section {
  background: #f6eadf;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collection-card {
  min-height: 260px;
  padding: 27px;
  position: relative;
  transition: .3s;
  border: 1px solid rgba(53,32,61,.08);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-purple {
  background: var(--lavender);
}

.card-peach {
  background: var(--peach);
}

.card-yellow {
  background: var(--yellow);
}

.card-coral {
  background: var(--coral);
  color: white;
}

.card-cream {
  background: var(--cream);
}

.card-pink {
  background: var(--pink);
}

.card-number {
  font-size: 11px;
  font-weight: 900;
  opacity: .55;
}

.category-icon {
  font-size: 40px;
  margin: 15px 0 5px;
}

.collection-card h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 24px;
  color: var(--plum);
}

.card-coral h3 {
  color: white;
}

.collection-card p {
  font-size: 13px;
  margin-top: 7px;
  max-width: 270px;
  opacity: .8;
}

.card-arrow {
  position: absolute;
  right: 25px;
  bottom: 20px;
  font-size: 22px;
}

/* WHY US */

.why-section {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.why-intro p {
  color: var(--muted);
  margin-top: 22px;
}

.features {
  border-top: 1px solid var(--border);
}

.feature {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--border);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--plum);
  font-size: 22px;
}

.feature h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 22px;
  color: var(--plum);
}

.feature p {
  font-size: 13px;
  color: var(--muted);
}

/* BANNER */

.play-banner {
  background: var(--plum);
  color: white;
  overflow: hidden;
  position: relative;
}

.banner-content {
  min-height: 290px;
  display: grid;
  grid-template-columns: 120px 1fr 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-symbol {
  font-size: 65px;
  color: var(--yellow);
}

.section-label.light {
  color: var(--peach);
}

.play-banner h2 {
  color: white;
}

.play-banner h2 span {
  color: var(--yellow);
}

.play-banner p {
  margin-top: 10px;
  color: #d9cddc;
}

.banner-star {
  font-size: 70px;
  color: var(--coral);
  transform: rotate(15deg);
  text-align: center;
}

.banner-dots {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 45px dotted rgba(255,255,255,.07);
  border-radius: 50%;
  right: -80px;
  top: -70px;
}

/* ENQUIRY */

.enquiry-section {
  background: var(--soft-cream);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 75px;
  align-items: start;
}

.enquiry-info > p {
  color: var(--muted);
  margin-top: 20px;
}

.contact-details {
  margin-top: 35px;
}

.detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 23px;
}

.detail-item > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--plum);
  font-weight: 900;
}

.detail-item small {
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--coral);
}

.detail-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}

/* FORMS */

.form-box,
.contact-form-box {
  background: white;
  padding: 38px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--coral);
}

.form-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.form-top span {
  color: var(--coral);
}

.form-top p {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--plum);
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--plum);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fffdf9;
  color: var(--charcoal);
  padding: 13px 14px;
  outline: none;
  font-size: 14px;
  border-radius: 2px;
  transition: .2s;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,120,103,.12);
}

.form-submit {
  width: 100%;
  border: 0;
  background: var(--plum);
  color: white;
  padding: 15px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: .25s;
}

.form-submit:hover {
  background: var(--coral);
}

.form-submit span {
  margin-left: 8px;
}

/* CONTACT PAGE */

.contact-hero {
  min-height: 370px;
  background:
    radial-gradient(circle at 80% 30%, rgba(246,214,109,.8), transparent 22%),
    var(--lavender);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(48px, 6vw, 70px);
  color: var(--plum);
  line-height: 1.05;
}

.contact-hero h1 span {
  color: var(--coral);
}

.contact-hero p {
  max-width: 580px;
  margin-top: 18px;
  color: var(--muted);
}

.contact-decoration {
  position: absolute;
  font-size: 120px;
  color: var(--coral);
  opacity: .25;
}

.decoration-a {
  right: 13%;
  top: 45px;
  transform: rotate(15deg);
}

.decoration-b {
  right: 5%;
  bottom: 15px;
  color: var(--yellow);
}

/* CONTACT MAIN */

.contact-main {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 65px;
}

.contact-card {
  background: var(--plum);
  color: white;
  padding: 42px;
}

.contact-card h2 {
  color: white;
}

.contact-card h2 span {
  color: var(--yellow);
}

.address-box {
  margin-top: 35px;
  padding: 25px;
  background: rgba(255,255,255,.07);
  display: flex;
  gap: 18px;
}

.address-icon {
  color: var(--yellow);
  font-size: 28px;
}

.address-box h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 20px;
}

.address-box p {
  margin-top: 6px;
  color: #d9cedc;
  font-size: 13px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 22px;
}

.contact-line > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--plum);
}

.contact-line small {
  display: block;
  font-size: 9px;
  color: var(--peach);
  letter-spacing: 1.5px;
  font-weight: 900;
}

.contact-line a,
.contact-line strong {
  display: block;
  color: white;
  font-size: 13px;
  margin-top: 2px;
}

.contact-note {
  margin-top: 35px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 25px;
}

.contact-note strong {
  color: var(--yellow);
}

.contact-note p {
  color: #d9cedc;
  font-size: 13px;
  margin-top: 5px;
}

.contact-form-box h2 {
  font-size: 37px;
  margin-bottom: 30px;
}

/* LEGAL */

.legal-hero {
  padding: 90px 0;
  background: var(--lavender);
}

.legal-hero h1 {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(45px, 6vw, 65px);
  line-height: 1.05;
  color: var(--plum);
}

.legal-hero h1 span {
  color: var(--coral);
}

.legal-hero p {
  margin-top: 12px;
  color: var(--muted);
}

.legal-section {
  padding: 80px 0;
  background: var(--cream);
}

.legal-content {
  max-width: 880px;
}

.updated {
  background: var(--soft-cream);
  display: inline-block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 35px;
  color: var(--plum);
}

.legal-content h2 {
  font-size: 29px;
  margin-top: 38px;
  margin-bottom: 10px;
}

.legal-content p {
  color: var(--muted);
  font-size: 14px;
}

.legal-contact {
  margin-top: 15px;
  background: var(--plum);
  color: white;
  padding: 25px;
}

.legal-contact strong {
  color: var(--yellow);
  font-family: "Fredoka", sans-serif;
  font-size: 22px;
}

.legal-contact p {
  color: #ddd1df;
  margin-top: 8px;
}

.legal-contact a {
  color: var(--peach);
}

/* FOOTER */

.site-footer {
  background: var(--plum-dark);
  color: white;
  padding-top: 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-logo {
  font-family: "Fredoka", sans-serif;
  font-size: 25px;
  font-weight: 600;
}

.footer-logo span {
  color: var(--yellow);
}

.footer-brand > p {
  color: #bdb0c0;
  font-size: 13px;
  margin-top: 15px;
  max-width: 300px;
}

.footer-gst {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 10px;
  background: rgba(255,255,255,.07);
  font-size: 10px;
  color: var(--peach);
  letter-spacing: 1px;
}

.footer-column h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 18px;
  margin-bottom: 17px;
}

.footer-column a {
  display: block;
  color: #c6bac8;
  font-size: 12px;
  margin-bottom: 9px;
  transition: .2s;
}

.footer-column a:hover {
  color: var(--yellow);
}

.footer-contact p {
  color: #c6bac8;
  font-size: 12px;
  margin-bottom: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #958899;
  font-size: 11px;
}

/* RESPONSIVE */

@media (max-width: 950px) {

  .nav-wrap {
    gap: 15px;
  }

  .main-nav {
    gap: 15px;
  }

  .nav-button {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .enquiry-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-art {
    min-height: 400px;
  }

  .about-visual {
    max-width: 600px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {

  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .main-nav {
    display: none;
  }

  .logo {
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 90px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .hero-art {
    min-height: 360px;
  }

  .main-toy {
    width: 220px;
    height: 250px;
  }

  .toy-face {
    top: 95px;
    left: 57px;
    gap: 48px;
  }

  .toy-smile {
    left: 82px;
    top: 120px;
  }

  .floating-card {
    padding: 9px 12px;
  }

  .floating-card span {
    font-size: 26px;
  }

  .card-yellow {
    right: 0;
  }

  .circle-text {
    width: 90px;
    height: 90px;
    font-size: 13px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 25px 10px;
  }

  .intro-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .about-grid {
    gap: 45px;
  }

  .about-visual {
    min-height: 350px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 235px;
  }

  .why-grid {
    gap: 45px;
  }

  .banner-content {
    grid-template-columns: 1fr;
    padding: 50px 0;
    gap: 20px;
  }

  .banner-star {
    display: none;
  }

  .banner-symbol {
    font-size: 40px;
  }

  .form-box,
  .contact-form-box,
  .contact-card {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-hero {
    min-height: 330px;
    padding: 60px 0;
  }

  .contact-hero h1 {
    font-size: 48px;
  }

  .legal-hero {
    padding: 65px 0;
  }

  .legal-section {
    padding: 55px 0;
  }

  .legal-content h2 {
    font-size: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}