:root {
  --pink: #e6007e;
  --black: #111111;
  --white: #ffffff;
  --border: #e8e8e8;
  --footer-bg: #2e0024;
  --header-h: 72px;
  --font: "Nunito", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
}

button,
a {
  font-family: inherit;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
  color: #1a0a2e;
  min-width: 0;
}

.logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  font-size: clamp(0.85rem, 2.4vw, 1.05rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* ——— Desktop nav ——— */
.nav-desktop {
  display: none;
  flex: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0;
  border: 0;
  background: none;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--pink);
}

.nav-link.has-badge {
  padding-top: 0.9rem;
}

.badge-new {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  letter-spacing: 0.01em;
}

.badge-inline {
  position: static;
  transform: none;
  margin-left: 0.45rem;
  font-size: 0.75rem;
}

.chevron {
  flex-shrink: 0;
  opacity: 0.85;
}

/* ——— Auth buttons ——— */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-outline {
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--black);
}

.btn-outline:hover {
  background: #f5f5f5;
}

.btn-solid {
  color: var(--white);
  background: var(--black);
  border: 1.5px solid var(--black);
}

.btn-solid:hover {
  background: #333;
  border-color: #333;
}

/* ——— Mobile menu toggle ——— */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— Mobile drawer ——— */
.mobile-drawer {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
}

.mobile-drawer[hidden] {
  display: none;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.mobile-drawer__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 100%;
  background: var(--white);
  overflow-y: auto;
  animation: slideIn 0.22s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-8px);
    opacity: 0.6;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: none;
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-link:hover {
  color: var(--pink);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.5rem 2rem;
  margin-top: auto;
}

.mobile-actions .btn {
  width: 100%;
  padding: 0.75rem 1.15rem;
  font-size: 1rem;
}

.page-main {
  min-height: 50vh;
}

/* ——— Hero ——— */
.hero {
  background: var(--white);
  padding: 3.5rem 1.25rem 4rem;
}

.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  margin: 0;
  color: #2b0a3d;
  font-size: clamp(1.85rem, 5.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-text {
  margin: 1.35rem 0 0;
  max-width: 640px;
  color: #1a1a1a;
  font-size: clamp(0.95rem, 2.2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.55;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  background: var(--pink);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-cta:hover {
  background: #c4006b;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 2rem 5.5rem;
  }

  .hero-text {
    margin-top: 1.5rem;
  }

  .btn-cta {
    margin-top: 2rem;
    padding: 0.95rem 2rem;
    font-size: 1.1rem;
  }
}

/* ——— Feature hero (photo band) ——— */
.feature-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: min(78vh, 820px);
  overflow: hidden;
  color: #fff;
}

.feature-hero__media {
  position: absolute;
  inset: 0;
}

.feature-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.feature-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 3rem 1.25rem 3.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 55%, transparent 100%);
}

.feature-hero__label {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.3;
}

.feature-hero__title {
  margin: 0.55rem 0 0;
  font-size: clamp(1.65rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.feature-hero .btn-cta {
  margin-top: 1.35rem;
}

@media (min-width: 768px) {
  .feature-hero {
    min-height: min(85vh, 900px);
  }

  .feature-hero__content {
    padding: 4rem 2rem 4.25rem;
  }

  .feature-hero__title {
    margin-top: 0.65rem;
  }

  .feature-hero .btn-cta {
    margin-top: 1.6rem;
  }
}

@media (max-width: 639px) {
  .feature-hero {
    min-height: 70vh;
  }

  .feature-hero__media img {
    object-position: 62% center;
  }
}

/* ——— Split feature cards ——— */
.split-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #f3f3f3;
}

.split-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
}

.split-card__media {
  position: absolute;
  inset: 0;
}

.split-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-card:first-child .split-card__media img {
  object-position: center 20%;
}

.split-card:last-child .split-card__media img {
  object-position: center 45%;
}

.split-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 28rem;
  padding: 2rem 1.35rem 2.15rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
}

.split-card__label {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.split-card__title {
  margin: 0.45rem 0 0;
  font-size: clamp(1.45rem, 4.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.split-card .btn-cta {
  margin-top: 1.15rem;
}

@media (min-width: 768px) {
  .split-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding: 0.65rem;
  }

  .split-card {
    min-height: min(62vh, 640px);
  }

  .split-card__content {
    padding: 2.75rem 2.25rem 2.85rem;
    max-width: 32rem;
  }

  .split-card__title {
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  }

  .split-card .btn-cta {
    margin-top: 1.35rem;
  }
}

/* ——— Stats + product cards ——— */
.products {
  background: #fff;
  padding: 3.5rem 1.25rem 4rem;
}

.products-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style: none;
  margin: 0 0 2.75rem;
  padding: 0;
  text-align: center;
}

.stats__value {
  margin: 0;
  color: #1a0a2e;
  font-size: clamp(1.85rem, 5vw, 2.55rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.stats__label {
  margin: 0.45rem 0 0;
  color: #1a1a1a;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.4;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.product-card__media {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1;
  background: #1a0a2e;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__title {
  margin: 1.15rem 0 0;
  color: #1a0a2e;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-card__text {
  margin: 0.55rem 0 0;
  max-width: 22rem;
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.45;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  color: var(--pink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.product-card__link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .products {
    padding: 5rem 2rem 5.5rem;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
  }

  .stats__label {
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .product-card__title {
    font-size: 1.45rem;
  }
}

/* ——— Join CTA + portraits ——— */
.join-cta {
  background: #fff;
  padding: 3.5rem 0 0;
  overflow: hidden;
}

.join-cta__content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.join-cta__title {
  margin: 0;
  color: #2b0a3d;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.join-cta__title span {
  color: var(--pink);
}

.join-cta__text {
  margin: 1.1rem auto 0;
  max-width: 34rem;
  color: #333;
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.15s ease;
}

.btn-pill:hover {
  background: #c4006b;
}

.join-cta__portraits {
  margin-top: 2.75rem;
  width: 100%;
  overflow: hidden;
}

.join-cta__track {
  display: flex;
  width: max-content;
  animation: portraits-scroll 45s linear infinite;
}

.join-cta__strip {
  flex-shrink: 0;
  height: clamp(150px, 28vw, 220px);
  aspect-ratio: 4660 / 750;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left center;
}

@keyframes portraits-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .join-cta {
    padding-top: 5rem;
  }

  .join-cta__text {
    margin-top: 1.25rem;
  }

  .btn-pill {
    margin-top: 1.75rem;
    padding: 0.8rem 1.85rem;
    font-size: 1.05rem;
  }

  .join-cta__portraits {
    margin-top: 2.75rem;
  }

  .join-cta__strip {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .join-cta__track {
    animation: none;
  }
}

/* ——— Footer ——— */
.site-footer {
  --footer-bg: #2e0024;
  background: var(--footer-bg);
  color: #f5eef3;
  padding: 3rem 1.25rem 2.5rem;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-app {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
}

.footer-app__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-app__icon {
  flex-shrink: 0;
  line-height: 0;
}

.footer-app__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  background: #fff;
}

.footer-app__title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.footer-app__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.store-badge {
  display: block;
  line-height: 0;
  opacity: 0.95;
  transition: opacity 0.15s ease;
}

.store-badge:hover {
  opacity: 1;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  padding: 2.5rem 0;
}

.footer-col__title {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal {
  margin: 0;
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.55;
}

.footer-copy {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 4rem 2rem 3rem;
  }

  .footer-app {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 3rem;
  }

  .footer-nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
  }
}

body.menu-open {
  overflow: hidden;
}

/* ——— Contact form page ——— */
.header-inner--simple {
  display: flex;
  justify-content: space-between;
}

.header-inner--simple .menu-toggle,
.header-inner--simple .nav-desktop,
.header-inner--simple .header-actions {
  display: none;
}

.header-inner--simple .logo {
  justify-self: start;
}

.header-inner--simple .btn-outline {
  display: inline-flex;
}

.form-page {
  min-height: calc(100vh - var(--header-h));
  background: linear-gradient(180deg, #fff 0%, #faf5f8 100%);
  padding: 2.5rem 1.25rem 4rem;
}

.form-page__inner {
  max-width: 520px;
  margin: 0 auto;
}

.form-page__title {
  margin: 0;
  color: #2b0a3d;
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
}

.form-page__intro {
  margin: 0.75rem 0 0;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  color: #2b0a3d;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 0.5rem;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-success {
  margin: 0.25rem 0 0;
  color: #0a7a3e;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .form-page {
    padding: 3.5rem 2rem 5rem;
  }

  .contact-form {
    margin-top: 2.25rem;
  }
}

/* ——— Desktop ——— */
@media (min-width: 960px) {
  .logo-img {
    height: 46px;
    width: 46px;
  }

  .header-inner {
    padding: 0.75rem 2rem;
  }
}

@media (max-width: 639px) {
  .logo-img {
    height: 34px;
    width: 34px;
  }

  .logo-text {
    font-size: 0.8rem;
    white-space: normal;
    max-width: 9.5rem;
  }
}
