:root {
  --pink: #f21b8f;
  --hot-pink: #c60878;
  --yellow: #ffd119;
  --orange: #ff7a1a;
  --teal: #00a7b8;
  --red: #e7272e;
  --ink: #24122b;
  --muted: #6f5e73;
  --cream: #fff8e8;
  --white: #ffffff;
  --line: rgba(36, 18, 43, 0.12);
  --shadow: 0 22px 60px rgba(92, 16, 83, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 209, 25, 0.28), transparent 28rem),
    linear-gradient(180deg, #fff7fb 0%, #fffaf0 46%, #ffffff 100%);
}

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

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

.site-header {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.site-header::before {
  background:
    repeating-radial-gradient(circle at 0 0, rgba(242, 27, 143, 0.18) 0 10px, transparent 11px 23px),
    linear-gradient(135deg, rgba(242, 27, 143, 0.16), rgba(255, 209, 25, 0.15));
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.nav,
.hero,
.section,
.intro-band,
.footer {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  width: min(100% - 32px, 1180px);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  z-index: 3;
}

.brand {
  align-items: center;
  display: flex;
  font-family: "Baloo 2", Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  gap: 12px;
}

.brand img {
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(36, 18, 43, 0.18);
  height: 64px;
  object-fit: contain;
  width: 64px;
}

.nav-links {
  align-items: center;
  display: flex;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 8px;
}

.nav-links a {
  border-radius: 8px;
  padding: 11px 14px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.72);
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: none;
  height: 42px;
  padding: 8px;
  width: 46px;
}

.nav-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 3px;
  margin: 5px 3px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: calc(100vh - 100px);
  padding: 22px 0 82px;
}

.eyebrow {
  color: var(--hot-pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", Inter, sans-serif;
  line-height: 0.95;
}

h1 {
  color: var(--pink);
  font-size: clamp(4rem, 11vw, 8.5rem);
  margin-bottom: 18px;
  text-shadow: 4px 4px 0 var(--yellow), 8px 8px 0 rgba(36, 18, 43, 0.08);
}

.hero-text {
  color: #38243e;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  line-height: 1.55;
  max-width: 660px;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  box-shadow: 0 12px 24px rgba(36, 18, 43, 0.16);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--ink);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-facts span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 12px;
}

.hero-media {
  aspect-ratio: 1 / 1;
  min-height: 470px;
  position: relative;
}

.hero-card {
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  position: absolute;
}

.brand-mark {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(36, 18, 43, 0.18);
  height: 132px;
  left: 38%;
  object-fit: contain;
  padding: 8px;
  position: absolute;
  top: -4%;
  width: 132px;
  z-index: 2;
}

.hero-card.main {
  height: 76%;
  right: 4%;
  top: 8%;
  transform: rotate(3deg);
  width: 66%;
}

.hero-card.accent.one {
  height: 48%;
  left: 0;
  top: 0;
  transform: rotate(-8deg);
  width: 42%;
}

.hero-card.accent.two {
  bottom: 3%;
  height: 45%;
  left: 8%;
  transform: rotate(6deg);
  width: 45%;
}

.intro-band {
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -38px;
  overflow: hidden;
  z-index: 2;
}

.intro-band div {
  background: linear-gradient(135deg, rgba(242, 27, 143, 0.2), rgba(0, 167, 184, 0.18));
  padding: 24px;
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  font-family: "Baloo 2", Inter, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.intro-band span {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 6px;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.wholesale h2,
.contact h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  margin-bottom: 12px;
}

.section-heading p,
.wholesale p,
.contact p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.filter {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 10px 14px;
}

.filter.active {
  background: var(--teal);
  color: var(--white);
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(36, 18, 43, 0.08);
  overflow: hidden;
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.product-card div {
  padding: 18px;
}

.product-card span,
.location-card span,
.quote-box span {
  color: var(--hot-pink);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.product-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.wholesale {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 0.9fr;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  background: rgba(255, 209, 25, 0.24);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  font-weight: 700;
  padding: 14px 16px;
}

.wholesale-panel {
  background: linear-gradient(145deg, var(--pink), var(--orange));
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.wholesale-panel img {
  border: 6px solid var(--white);
  border-radius: 8px;
  width: 100%;
}

.quote-box {
  background: var(--white);
  border-radius: 8px;
  margin-top: 16px;
  padding: 20px;
}

.quote-box strong {
  display: block;
  font-family: "Baloo 2", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.quote-box a {
  color: var(--hot-pink);
  display: inline-block;
  font-weight: 900;
  margin-top: 10px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.gallery-strip img {
  aspect-ratio: 1 / 1.12;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.location-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(36, 18, 43, 0.07);
  padding: 28px;
}

.location-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.location-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.seo-local {
  padding-top: 30px;
}

.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(36, 18, 43, 0.07);
  padding: 24px;
}

.faq-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.faq-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.contact {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.8fr 1fr;
}

.contact-form {
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-form label {
  display: grid;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  outline: none;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 28px 0 36px;
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  font-family: "Baloo 2", Inter, sans-serif;
  font-size: 1.5rem;
}

.footer span {
  color: var(--muted);
}

.footer a {
  color: var(--hot-pink);
  font-weight: 900;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(36, 18, 43, 0.14);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 86px;
    width: min(320px, calc(100vw - 32px));
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .wholesale,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 18px;
    padding-bottom: 76px;
  }

  .hero-media {
    min-height: 390px;
  }

  .intro-band,
  .product-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .nav,
  .hero,
  .section,
  .intro-band,
  .footer {
    width: min(100% - 22px, 1180px);
  }

  .brand span {
    display: none;
  }

  .brand img {
    height: 52px;
    width: 52px;
  }

  .hero {
    min-height: auto;
    padding-top: 14px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .hero-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 320px;
  }

  .brand-mark {
    height: 96px;
    left: 34%;
    top: -2%;
    width: 96px;
  }

  .intro-band,
  .product-grid,
  .location-grid,
  .gallery-strip,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-band {
    margin-top: -20px;
  }

  .section {
    padding: 62px 0;
  }

  .product-card {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
  }

  .product-card img {
    aspect-ratio: auto;
    height: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
