:root {
  --ink: #1b1124;
  --muted: #5c5165;
  --muted-strong: #37283f;
  --plum: #4b1768;
  --primary: #4b1768;
  --primary-hover: #321045;
  --accent: #6f2a8e;
  --accent-soft: #f4ecf8;
  --highlight: #efe2f5;
  --highlight-on-dark: #ead2f6;
  --paper: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f1fa;
  --surface-alt: #f0e4f7;
  --nav-bg: #ffffff;
  --line: #ded0e6;
  --shadow: rgba(75, 23, 104, .14);
  --hero-fallback: linear-gradient(135deg, #ffffff, #f5edf9);
  --hero-overlay: linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .9) 44%, rgba(255, 255, 255, .58) 100%);
  --contact-overlay: linear-gradient(90deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .86));
  --footer-bg: #250b35;
  --footer-text: #ffffff;
  --footer-muted: #eadff0;
  --stats-bg: #4b1768;
  --focus: #005fcc;
}

[data-theme="dark"] {
  --ink: #fbf7ff;
  --muted: #d9c9e4;
  --muted-strong: #efe6f7;
  --plum: #efd9ff;
  --primary: #efd9ff;
  --primary-hover: #ffffff;
  --accent: #dca9ff;
  --accent-soft: #2c1839;
  --highlight: #372244;
  --highlight-on-dark: #f4e6ff;
  --paper: #120817;
  --surface: #1e1027;
  --surface-soft: #281633;
  --surface-alt: #321d40;
  --nav-bg: #1b0e24;
  --line: #654575;
  --shadow: rgba(0, 0, 0, .42);
  --hero-fallback: linear-gradient(135deg, #120817, #2a1535);
  --hero-overlay: linear-gradient(90deg, rgba(18, 8, 23, .96) 0%, rgba(18, 8, 23, .9) 48%, rgba(18, 8, 23, .66) 100%);
  --contact-overlay: linear-gradient(90deg, rgba(18, 8, 23, .96), rgba(18, 8, 23, .84));
  --footer-bg: #0c0510;
  --footer-text: #ffffff;
  --footer-muted: #d9c9e4;
  --stats-bg: #2a0f3c;
  --focus: #8cc8ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

a {
  color: var(--plum);
}

a:hover,
a:focus {
  color: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--grid-gap, 24px) / -2);
  margin-left: calc(var(--grid-gap, 24px) / -2);
}

.row > * {
  width: 100%;
  padding-right: calc(var(--grid-gap, 24px) / 2);
  padding-left: calc(var(--grid-gap, 24px) / 2);
}

.g-3 {
  --grid-gap: 16px;
  row-gap: 16px;
}

.g-4 {
  --grid-gap: 32px;
  row-gap: 32px;
}

.g-5 {
  --grid-gap: 64px;
  row-gap: 64px;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.text-center {
  text-align: center;
}

.gap-1 {
  gap: 4px;
}

.gap-3 {
  gap: 16px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 16px;
}

.ms-auto {
  margin-left: auto;
}

.w-100 {
  width: 100%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.bg-white {
  background-color: var(--surface);
}

.topbar {
  background: var(--footer-bg);
  color: #fff;
  padding: 12px 0;
  font-size: 15px;
}

[data-theme="dark"] .topbar {
  background: #0c0510;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.theme-toggle {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus {
  border-color: var(--highlight-on-dark);
  background: rgba(255, 255, 255, .18);
}

.theme-toggle-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--highlight-on-dark);
  box-shadow: inset -4px -3px 0 rgba(59, 22, 72, .9);
}

[data-theme="dark"] .theme-toggle-icon {
  background: var(--highlight-on-dark);
  box-shadow: 0 0 0 4px rgba(239, 217, 255, .18);
}

.brand {
  color: var(--plum) !important;
  letter-spacing: 0;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  padding: 20px 0;
  box-shadow: 0 4px 16px var(--shadow);
}

.navbar .container,
.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-brand {
  text-decoration: none;
}

.fw-bold {
  font-weight: 800;
}

.navbar-toggler {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  background: var(--surface);
}

.navbar-toggler-icon {
  width: 24px;
  height: 18px;
  display: block;
  background:
    linear-gradient(var(--plum), var(--plum)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--plum), var(--plum)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--plum), var(--plum)) 0 100% / 100% 2px no-repeat;
}

.collapse {
  display: flex;
}

.navbar-nav {
  gap: 30px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.nav-link {
  color: var(--muted-strong);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent);
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 118px 0 96px;
  background:
    var(--hero-overlay),
    var(--hero-fallback);
}

.hero.has-approved-media {
  background:
    var(--hero-overlay),
    var(--approved-bg) center / cover;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
#about h2,
#contact h2 {
  color: var(--plum);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(54px, 7vw, 92px);
}

.lead {
  max-width: 680px;
  margin: 32px 0 40px;
  color: var(--muted-strong);
  font-size: 23px;
  line-height: 1.7;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-main {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
}

.btn-main:hover,
.btn-main:focus {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

[data-theme="dark"] .btn-main {
  color: #211827;
}

[data-theme="dark"] .btn-main:hover,
[data-theme="dark"] .btn-main:focus {
  color: #171019;
}

.btn-outline-dark {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

[data-theme="dark"] .btn-outline-dark:hover,
[data-theme="dark"] .btn-outline-dark:focus {
  color: #171019;
}

.hero-media {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  border: 10px solid var(--surface);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(31, 28, 31, 0) 30%, rgba(31, 28, 31, .36) 100%),
    linear-gradient(135deg, #5f257a, #2a0f3c);
  box-shadow: 0 24px 70px var(--shadow);
}

.hero-media.has-approved-media {
  background:
    linear-gradient(180deg, rgba(31, 28, 31, 0) 30%, rgba(31, 28, 31, .36) 100%),
    var(--approved-bg) center / cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -35%;
  width: 32%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  animation: fabric-shine 5.4s ease-in-out infinite;
}

.section-pad {
  padding: 112px 0;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head h2,
#about h2,
#contact h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.section-copy {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.85;
}

.feature {
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-left: 5px solid var(--primary);
  background: var(--surface-soft);
  color: var(--muted-strong);
  font-weight: 800;
}

.feature::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.feature:hover::after {
  transform: scaleX(1);
}

.product-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 34px;
  color: #fff;
  background: #2a0f3c center / cover;
  box-shadow: 0 16px 42px rgba(31, 28, 31, .13);
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
  will-change: transform;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 28, 31, .04) 0%, rgba(31, 28, 31, .78) 100%);
  transition: background .35s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(239, 217, 255, .28), transparent 34%);
  opacity: 0;
  transition: opacity .35s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 60px rgba(31, 28, 31, .2);
  filter: saturate(1.08);
}

.product-card:hover::before {
  background: linear-gradient(180deg, rgba(31, 28, 31, .02) 0%, rgba(31, 28, 31, .7) 100%);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card h3,
.product-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.product-card h3 {
  font-size: 31px;
  font-weight: 800;
}

.product-card p {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.65;
}

.product-kurtis {
  background-image: linear-gradient(135deg, #61217c, #2a0f3c);
}

.product-coords {
  background-image: linear-gradient(135deg, #55206f, #2a0f3c);
}

.product-tops {
  background-image: linear-gradient(135deg, #4a1d62, #2a0f3c);
}

.product-office {
  background-image: linear-gradient(135deg, #6f2a8e, #2a0f3c);
}

.product-night {
  background-image: linear-gradient(135deg, #3f1854, #2a0f3c);
}

.product-dresses {
  background-image: linear-gradient(135deg, #5c2278, #2a0f3c);
}

.product-card.has-approved-media {
  background-image: var(--approved-bg);
}

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

.step {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--plum);
  font-weight: 800;
  box-shadow: 0 10px 28px var(--shadow);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.step span {
  color: var(--accent);
  font-size: 15px;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 63, 98, .4);
  box-shadow: 0 18px 38px rgba(31, 28, 31, .11);
}

.stats {
  position: relative;
  overflow: hidden;
  background: var(--stats-bg);
  color: #fff;
  padding: 82px 0;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, .08) 48%, transparent 56%),
    radial-gradient(circle at 82% 20%, rgba(212, 175, 55, .22), transparent 28%);
  animation: stats-sweep 7s ease-in-out infinite;
}

.stats .container {
  position: relative;
}

.stats h3 {
  margin-bottom: 8px;
  color: var(--highlight-on-dark);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 800;
}

.stats p {
  margin: 0;
}

.contact-section {
  background:
    var(--contact-overlay),
    var(--hero-fallback);
}

.contact-section.has-approved-media {
  background:
    var(--contact-overlay),
    var(--approved-bg) center / cover;
}

.contact-panel {
  padding: 32px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 54px var(--shadow);
}

.contact-panel h3 {
  margin-bottom: 18px;
  color: var(--plum);
  font-weight: 800;
}

.contact-panel p {
  margin-bottom: 12px;
  color: var(--muted-strong);
}

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 42px 0;
  text-align: center;
}

.footer h2 {
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 800;
}

.footer p {
  margin: 0;
  color: var(--footer-muted);
}

.footer-disclosure {
  max-width: 820px;
  margin: 14px auto 0 !important;
  color: var(--footer-muted) !important;
  font-size: 13px;
  line-height: 1.6;
}

.footer-cookie-btn {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 6px;
  padding: 9px 14px;
  background: transparent;
  color: #fff;
  font-weight: 700;
}

.footer-cookie-btn:hover,
.footer-cookie-btn:focus {
  border-color: var(--gold);
  color: var(--gold);
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, .18), transparent 30%),
    rgba(31, 28, 31, .62);
  backdrop-filter: blur(6px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-panel {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(212, 175, 55, .42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--surface), var(--paper));
  box-shadow: 0 24px 80px rgba(31, 28, 31, .28);
}

.cookie-copy h2 {
  margin-bottom: 10px;
  color: var(--plum);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
}

.cookie-copy p,
.cookie-compliance {
  color: var(--muted);
  line-height: 1.6;
}

.cookie-compliance {
  margin-top: 12px;
  padding: 12px;
  border-left: 4px solid var(--gold);
  background: var(--surface-soft);
  color: var(--muted-strong);
  font-size: 13px;
}

.cookie-options {
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted-strong);
}

.cookie-option input {
  margin-top: 4px;
  accent-color: var(--plum);
}

.cookie-option-locked {
  background: var(--surface-alt);
}

.cookie-actions .btn-outline-dark {
  border-color: var(--primary);
  color: var(--primary);
}

.cookie-actions .btn-outline-dark:hover,
.cookie-actions .btn-outline-dark:focus {
  border-color: var(--plum);
  background: var(--plum);
  color: #fff;
}

.cookie-actions .btn-main {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(74, 35, 90, .22);
}

[data-theme="dark"] .cookie-actions .btn-main {
  color: #171019;
}

.cookie-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@keyframes fabric-shine {
  0%,
  35% {
    left: -35%;
  }

  70%,
  100% {
    left: 120%;
  }
}

@keyframes stats-sweep {
  0%,
  100% {
    transform: translateX(-8%);
  }

  50% {
    transform: translateX(8%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
}

@media (max-width: 991.98px) {
  .navbar .container {
    flex-wrap: wrap;
  }

  .navbar-toggler {
    display: inline-flex;
  }

  .collapse {
    width: 100%;
    display: none;
  }

  .collapse.show {
    display: block;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 16px;
  }

  .hero {
    min-height: auto;
    padding: 62px 0;
  }

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

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

  .cookie-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    font-size: 12px;
  }

  .hero {
    padding: 46px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-media {
    min-height: 300px;
    border-width: 6px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .product-card {
    min-height: 290px;
  }

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

  .contact-panel {
    padding: 24px;
  }

  .cookie-consent {
    align-items: center;
    overflow: auto;
    padding: 12px;
  }

  .cookie-panel {
    padding: 18px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}
