:root {
  --deep-pink: #e91e8f;
  --hot-pink: #f52b95;
  --soft-pink: #fff4fb;
  --banner-pink: #f8c8dd;
  --aqua: #18bed2;
  --dark: #160013;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--dark);
  background: var(--soft-pink);
}

img {
  max-width: 100%;
}

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

.topbar {
  background: var(--soft-pink);
  border-bottom: 1px solid #ffd3ea;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.nav img {
  width: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.nav-links a {
  color: #d90074;
  text-decoration: none;
  font-weight: 700;
}

.nav-links a.active {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  background: #ff5bb3;
  color: white !important;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.brand-strip {
  background: var(--banner-pink);
  padding: 18px 0;
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand-strip img {
  width: 115px;
}

.site-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
}

.section {
  padding: 60px 0;
}

.white-section {
  background: white;
}

.center {
  text-align: center;
}

.script {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  margin: 0 0 28px;
}

.lead {
  font-family: Arial, sans-serif;
  font-size: clamp(18px, 2.3vw, 26px);
  line-height: 1.35;
}

/* CUSTOM PAGE */

.page-hero {
  text-align: center;
  padding: 56px 0;
}

.page-hero.compact {
  padding: 34px 0 48px;
}

.hot-section {
  background: var(--hot-pink);
  color: white;
}

.page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: .95;
}

.custom-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}

.custom-row img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.feature-wide {
  background: var(--aqua);
  color: white;
  text-align: center;
  border-radius: 18px;
  padding: 46px 28px;
  margin: 32px auto;
  max-width: 920px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.hanger-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  align-items: start;
}

.hanger-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  background: white;
}

/* FRESHIES PAGE */

.freshie-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto 42px;
}

.freshie-grid img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.14);
}

.stacked-freshies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 54px;
  align-items: start;
}

.stacked-freshies img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  background: white;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.14);
}

.stacked-freshies img.large {
  grid-column: 1 / -1;
  width: min(520px, 100%);
  height: auto;
  justify-self: center;
  object-fit: contain;
}

.logo-center {
  display: block;
  width: 230px;
  margin: 40px auto 0;
}

/* SCENTS PAGE */

.scent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.scent-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.scent-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* QR / FOOTER */

.qr-wrap {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.qr-wrap img {
  width: 150px;
}

.logo-mini {
  width: 150px;
}

.footer {
  text-align: center;
  padding: 44px 0;
  background: var(--soft-pink);
  font-family: Arial, sans-serif;
}

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

@media (max-width: 900px) {
  .freshie-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stacked-freshies {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .brand-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .custom-row {
    grid-template-columns: 1fr;
  }

  .freshie-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .freshie-grid img {
    height: 140px;
  }

  .stacked-freshies {
    grid-template-columns: 1fr;
  }

  .stacked-freshies img {
    height: auto;
  }

  .hanger-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}