:root {
  --bg-deep: #07060f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --text: #f4f0ff;
  --text-muted: rgba(244, 240, 255, 0.65);
  --accent: #e843a0;
  --accent-soft: #ff6ec7;
  --accent-glow: rgba(232, 67, 160, 0.35);
  --purple: #5b4b9a;
  --purple-deep: #302b63;
  --border: rgba(255, 255, 255, 0.1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.stars {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 80px 120px, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 160px 60px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 240px 180px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 320px 40px, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 400px 140px, rgba(255, 255, 255, 0.25), transparent);
  background-size: 420px 220px;
  pointer-events: none;
  z-index: 0;
  animation: drift 120s linear infinite;
}

@keyframes drift {
  to { background-position: 420px 220px; }
}

.glow {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.glow--left {
  top: -10%;
  left: -15%;
  background: var(--purple-deep);
}

.glow--right {
  bottom: -10%;
  right: -15%;
  background: var(--accent);
  opacity: 0.15;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(7, 6, 15, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav--scrolled {
  background: rgba(7, 6, 15, 0.92);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}

.nav__cta:hover {
  border-color: var(--accent);
  background: rgba(232, 67, 160, 0.1);
}

.nav__menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__menu[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__menu[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

main {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #b83280);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: var(--bg-card);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: calc(var(--nav-height) + 3rem) clamp(1.5rem, 5vw, 4rem) 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__visual {
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 12%;
  border: 1px solid rgba(232, 67, 160, 0.25);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hero__eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  animation: fadeUp 0.8s ease both;
}

.hero__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--text), var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  margin: 0 0 2.5rem;
  max-width: 520px;
  font-size: 1.15rem;
  color: var(--text-muted);
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat__value {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-soft);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy h2,
.collection__header h2,
.values h2,
.cta h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.philosophy p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.philosophy__visual {
  position: relative;
}

.philosophy__visual img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.philosophy__caption {
  position: absolute;
  bottom: -1rem;
  right: 0;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  background: rgba(7, 6, 15, 0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.collection {
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}

.collection__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.collection__header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(232, 67, 160, 0.25);
}

.product-card--featured {
  border-color: rgba(232, 67, 160, 0.3);
  box-shadow: 0 0 40px rgba(232, 67, 160, 0.08);
}

.product-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #12101f;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(7, 6, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.product-card__body p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-card__price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-soft);
}

.lookbook {
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}

.lookbook__header {
  text-align: center;
  margin-bottom: 3rem;
}

.lookbook__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.lookbook__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.lookbook__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.lookbook__item--wide {
  grid-row: span 2;
}

.lookbook__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

.lookbook__item--wide img {
  min-height: 100%;
  aspect-ratio: 3 / 4;
}

.lookbook__item figcaption {
  padding: 0.9rem 1.1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.values {
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}

.value-card:hover {
  border-color: rgba(232, 67, 160, 0.25);
}

.value-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--accent-soft);
}

.value-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.value-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.quote {
  padding: 5rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.quote blockquote {
  margin: 0;
  max-width: 640px;
  margin-inline: auto;
}

.quote p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--text-muted);
}

.quote cite {
  font-size: 0.9rem;
  font-style: normal;
  color: var(--accent-soft);
}

.cta {
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
}

.cta__inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.cta__inner p {
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.cta__form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cta__form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s;
}

.cta__form input::placeholder {
  color: rgba(244, 240, 255, 0.35);
}

.cta__form input:focus {
  border-color: var(--accent);
}

.cta__status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--accent-soft);
  min-height: 1.25rem;
}

.cta__note {
  margin: 0 !important;
  font-size: 0.8rem !important;
}

.footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

.footer__logo {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer__brand p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  align-self: start;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__copy {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(244, 240, 255, 0.4);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .philosophy {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lookbook__grid {
    grid-template-columns: 1fr;
  }

  .lookbook__item--wide {
    grid-row: span 1;
  }

  .collection__grid,
  .values__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .product-card--featured {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__menu {
    display: flex;
  }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 1.5rem;
    gap: 1.25rem;
    background: rgba(7, 6, 15, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .cta__form {
    flex-direction: column;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
  }
}