:root {
  --ink: #111014;
  --black-plum: #1b1021;
  --deep-plum: #3a1f47;
  --plum: #5e3b70;
  --lilac: #b79acb;
  --soft-lilac: #dccde8;
  --mist: #f4eef8;
  --veil: #fbf8fd;
  --silver: #c6becb;
  --line: #dfd1e8;
  --white: #ffffff;
  --muted: #6f6377;
  --shadow: 0 28px 80px rgba(58, 31, 71, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--veil);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.drawer-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  padding: 0 44px;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, border 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(251, 248, 253, 0.94);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand,
.footer div {
  display: inline-flex;
  align-items: center;
}

.brand {
  position: relative;
  min-width: 150px;
  height: 66px;
  text-transform: uppercase;
}

.brand-logo {
  position: absolute;
  left: 0;
  width: 122px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.2s ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.scrolled .brand-logo-light,
.site-header.menu-open .brand-logo-light {
  opacity: 0;
}

.site-header.scrolled .brand-logo-dark,
.site-header.menu-open .brand-logo-dark {
  opacity: 1;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a,
.header-action {
  position: relative;
  padding: 8px 0;
}

.nav a::after,
.header-action::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.header-action:hover::after {
  transform: scaleX(1);
}

.header-action {
  justify-self: end;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
}

.hero img,
.hero-overlay,
.hero-copy {
  grid-area: 1 / 1;
}

.hero img {
  width: 100%;
  height: 100%;
  min-height: 94vh;
  object-fit: cover;
  object-position: 31% 42%;
}

.hero-overlay {
  background:
    radial-gradient(circle at 64% 48%, rgba(220, 205, 232, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(17, 16, 20, 0.08), rgba(27, 16, 33, 0.52) 45%, rgba(17, 16, 20, 0.88));
}

.hero-copy {
  align-self: center;
  justify-self: end;
  max-width: 760px;
  padding: 118px 7vw 84px 24px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--soft-lilac);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--plum);
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 670px;
  margin-bottom: 25px;
  font-size: clamp(54px, 6.4vw, 100px);
}

h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 62px);
}

h3 {
  margin-bottom: 13px;
  font-size: 25px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #f1e9f6;
  font-size: 21px;
  line-height: 1.48;
}

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

.button,
.product-card button,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--deep-plum);
  background: transparent;
  color: var(--deep-plum);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.button:hover,
.product-card button:hover,
.filter:hover {
  transform: translateY(-1px);
}

.button.primary,
.filter.active {
  border-color: var(--deep-plum);
  background: var(--deep-plum);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.signature-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.signature-bar span {
  min-height: 70px;
  padding: 26px 20px;
  border-right: 1px solid var(--line);
  color: var(--deep-plum);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.manifesto {
  padding: 92px 10vw;
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 154, 203, 0.28), transparent 30%),
    var(--veil);
}

.manifesto h2 {
  max-width: 1040px;
}

.manifesto p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.48;
}

.collection,
.trends,
.pillars,
.products,
.store {
  padding: 98px 7vw;
}

.collection {
  display: grid;
  grid-template-columns: minmax(290px, 0.76fr) minmax(340px, 1fr);
  gap: 7vw;
  align-items: center;
  background: var(--mist);
}

.collection-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.5;
}

.collection-image {
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.collection-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 28%;
}

.trends {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  gap: 6vw;
  align-items: start;
  background:
    radial-gradient(circle at 86% 18%, rgba(183, 154, 203, 0.22), transparent 34%),
    var(--veil);
}

.trend-head p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.5;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.trend-grid article {
  min-height: 220px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.trend-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.trend-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 780px;
  background: var(--black-plum);
  color: var(--white);
}

.editorial-panel {
  min-height: 390px;
}

.editorial-panel.image {
  grid-row: span 2;
}

.editorial-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-panel.story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
  background:
    radial-gradient(circle at 80% 22%, rgba(183, 154, 203, 0.24), transparent 32%),
    linear-gradient(135deg, var(--black-plum), var(--deep-plum));
}

.editorial-panel.story p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 26px;
  color: #e8ddec;
  font-size: 21px;
  line-height: 1.5;
}

.editorial-panel.mark {
  padding: 36px;
  background: #24152d;
}

.editorial-panel.mark img {
  border: 1px solid rgba(220, 205, 232, 0.35);
  object-position: 50% 22%;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1fr);
  gap: 6vw;
  align-items: center;
  padding: 104px 7vw;
  background:
    radial-gradient(circle at 12% 24%, rgba(183, 154, 203, 0.24), transparent 32%),
    var(--mist);
}

.founder-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.5;
}

.founder-gallery {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 18px;
  align-items: end;
}

.founder-gallery img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.founder-gallery img:first-child {
  aspect-ratio: 4 / 5;
  object-position: 50% 24%;
}

.founder-gallery img:last-child {
  aspect-ratio: 4 / 5.5;
  object-position: 50% 30%;
  margin-top: 86px;
}

.pillars {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(360px, 1fr);
  gap: 7vw;
  align-items: start;
  background: var(--veil);
}

.pillar-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.pillar-list article {
  min-height: 256px;
  padding: 30px;
  background: var(--white);
}

.pillar-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.pillar-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.products {
  background:
    linear-gradient(180deg, var(--mist), var(--veil));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.filter {
  min-height: 38px;
  padding: 0 16px;
  border-color: var(--line);
  background: var(--white);
  font-size: 11px;
}

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

.product-card {
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(223, 209, 232, 0.7) inset;
}

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

.product-card p,
.product-card small,
.product-card strong {
  display: block;
  margin: 0;
  padding: 0 18px;
}

.product-card p {
  margin-top: 18px;
  color: var(--ink);
  font-size: 17px;
}

.product-card small {
  min-height: 66px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.product-card strong {
  margin-top: 12px;
  color: var(--deep-plum);
  font-size: 18px;
}

.product-card button {
  width: calc(100% - 36px);
  margin: 18px;
  border-color: var(--line);
  background: var(--veil);
}

.product-image {
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid var(--line);
}

.tone-plum {
  background: linear-gradient(135deg, #3a1f47, #9b7caf 46%, #f4eef8 46%, #f4eef8 58%, #111014 58%);
}

.tone-lavender {
  background: linear-gradient(135deg, #dccde8, #fbf8fd 48%, #b79acb 48%, #b79acb 58%, #3a1f47 58%);
}

.tone-black {
  background: linear-gradient(135deg, #111014, #2b2031 46%, #dccde8 46%, #dccde8 58%, #fbf8fd 58%);
}

.tone-silver {
  background: linear-gradient(135deg, #c6becb, #eee9f1 46%, #5e3b70 46%, #5e3b70 58%, #111014 58%);
}

.store {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.72fr);
  gap: 8vw;
  align-items: center;
  background: var(--veil);
}

.store-card {
  padding: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.store-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 19px;
}

.store-card strong {
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 24px;
}

.service-drawer {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  width: min(440px, calc(100vw - 28px));
  padding: 38px;
  background: var(--veil);
  box-shadow: var(--shadow);
  transform: translateX(calc(100% + 32px));
  transition: transform 0.28s ease;
}

body.drawer-open .service-drawer {
  transform: translateX(0);
}

.service-drawer h2 {
  margin-bottom: 18px;
  font-size: 38px;
}

.service-drawer p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.service-drawer .drawer-phone {
  margin: 18px 0 18px;
  color: var(--black-plum);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
}

.drawer-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 30px;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 7vw;
  background: linear-gradient(135deg, var(--ink), var(--black-plum), var(--deep-plum));
  color: var(--white);
}

.footer img {
  width: 118px;
  height: auto;
}

.footer p {
  max-width: 520px;
  margin: 0;
  color: #ded1e6;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 0 22px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 12px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .nav,
  .header-action {
    display: none;
  }

  .site-header.menu-open .nav,
  .site-header.menu-open .header-action {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.menu-open .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
    gap: 13px;
  }

  .site-header.menu-open .header-action {
    justify-self: start;
    margin-bottom: 20px;
  }

  .hero-copy {
    padding: 112px 24px 72px;
  }

  .hero-overlay {
    background: rgba(17, 16, 20, 0.62);
  }

  .signature-bar,
  .collection,
  .trends,
  .editorial,
  .founder-section,
  .pillars,
  .section-head,
  .product-grid,
  .store {
    grid-template-columns: 1fr;
  }

  .signature-bar span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .manifesto,
  .collection,
  .trends,
  .pillars,
  .products,
  .store {
    padding: 72px 24px;
  }

  .editorial-panel.image {
    grid-row: auto;
  }

  .editorial-panel.story {
    padding: 72px 24px;
  }

  .editorial-panel.mark {
    padding: 24px;
  }

  .founder-gallery {
    grid-template-columns: 1fr;
  }

  .founder-gallery img:last-child {
    margin-top: 0;
  }

  .trend-grid,
  .pillar-list,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-content: flex-start;
  }

  .footer {
    display: grid;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand-name {
    display: none;
  }

  h1 {
    font-size: 43px;
  }

  .hero-actions,
  .filters {
    display: grid;
  }

  .button,
  .filter {
    width: 100%;
  }
}
