:root {
  --bg: #08090d;
  --bg-soft: #0d0f14;
  --surface: #12141b;
  --surface-2: #171a22;

  --white: #f8f8f6;
  --off-white: #eeeeea;

  --text: #f7f7f5;
  --muted: #9499a4;
  --muted-dark: #6e737e;

  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);

  --purple: #8b5cf6;
  --cyan: #22d3ee;

  --max-width: 1240px;

  --radius-small: 14px;
  --radius-medium: 22px;
  --radius-large: 32px;

  --shadow:
    0 30px 90px
    rgba(0, 0, 0, 0.35);
}


/* =========================================
   RESET
========================================= */

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


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  background: var(--bg);

  color: var(--text);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  overflow-x: hidden;
}


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


button,
input {
  font: inherit;
}


button {
  color: inherit;
}


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


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


.shell {
  width:
    min(
      var(--max-width),
      calc(100% - 64px)
    );

  margin-left: auto;
  margin-right: auto;
}


.narrow {
  max-width: 920px;
}


/* =========================================
   ANNOUNCEMENT BAR
========================================= */

.announcement-bar {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 200;

  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 25px;

  padding: 0 24px;

  background: var(--off-white);

  color: #0b0c10;

  font-size: 9px;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.announcement-bar span:nth-child(2) {
  color: #74777d;
}


.announcement-bar a {
  font-weight: 700;
  transition: opacity 0.2s ease;
}


.announcement-bar a:hover {
  opacity: 0.55;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: fixed;

  top: 34px;
  left: 0;
  right: 0;

  z-index: 190;

  background:
    rgba(8, 9, 13, 0.94);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}


.nav-wrap {
  width:
    min(
      var(--max-width),
      calc(100% - 64px)
    );

  min-height: 76px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  gap: 40px;
}


/* =========================================
   LOGO / BRAND
========================================= */

.brand {
  justify-self: start;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  font-size: 15px;

  font-weight: 750;

  letter-spacing: -0.025em;

  white-space: nowrap;
}


.brand-mark {
  width: 35px;
  height: 35px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--cyan)
    );

  color: #ffffff;

  font-size: 10px;

  font-weight: 900;

  letter-spacing: -0.05em;

  box-shadow:
    0 0 30px
    rgba(139, 92, 246, 0.2);
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.desktop-nav {
  height: 76px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 40px;
}


.nav-group {
  position: relative;

  height: 100%;

  display: flex;

  align-items: center;
}


.nav-trigger {
  height: 100%;

  display: flex;

  align-items: center;

  gap: 7px;

  padding: 0;

  border: 0;

  outline: 0;

  background: transparent;

  color: #c8cad1;

  font-size: 13px;

  cursor: pointer;

  transition: color 0.2s ease;
}


.nav-trigger:hover {
  color: #ffffff;
}


.nav-trigger span {
  color: #747985;

  font-size: 10px;

  transition: transform 0.2s ease;
}


.nav-group:hover .nav-trigger span {
  transform: rotate(180deg);
}


.single-nav-link {
  display: flex;

  align-items: center;

  height: 76px;

  color: #c8cad1;

  font-size: 13px;

  transition: color 0.2s ease;
}


.single-nav-link:hover {
  color: #ffffff;
}


/* =========================================
   DROPDOWN NAVIGATION
========================================= */

.nav-dropdown {
  position: absolute;

  top: 68px;
  left: -28px;

  width: 305px;

  padding: 22px;

  border:
    1px solid
    rgba(255, 255, 255, 0.09);

  background:
    rgba(15, 16, 22, 0.985);

  box-shadow:
    0 30px 90px
    rgba(0, 0, 0, 0.48);

  opacity: 0;

  visibility: hidden;

  transform:
    translateY(10px);

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}


.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;

  visibility: visible;

  transform:
    translateY(0);
}


.dropdown-heading {
  margin-bottom: 13px;

  color: #666b76;

  font-size: 9px;

  letter-spacing: 0.20em;

  text-transform: uppercase;
}


.nav-dropdown a {
  min-height: 58px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.065);

  color: #e4e5e9;

  font-size: 13px;

  transition:
    padding-left 0.2s ease,
    color 0.2s ease;
}


.nav-dropdown a:last-child {
  border-bottom: 0;
}


.nav-dropdown a:hover {
  padding-left: 5px;

  color: #ffffff;
}


.nav-dropdown small {
  color: #666c78;

  font-size: 9px;

  white-space: nowrap;
}


/* =========================================
   NAVIGATION TOOLS
========================================= */

.nav-tools {
  justify-self: end;

  display: flex;

  align-items: center;

  gap: 22px;
}


.tool-link {
  color: #aeb2bc;

  font-size: 12px;

  transition: color 0.2s ease;
}


.tool-link:hover {
  color: #ffffff;
}


.cart-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #d5d7dc;

  font-size: 12px;
}


.cart-link span {
  width: 23px;
  height: 23px;

  display: grid;

  place-items: center;

  border:
    1px solid
    var(--line);

  border-radius: 50%;

  color: #d8d9dd;

  font-size: 9px;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-button {
  width: 36px;
  height: 36px;

  display: none;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 6px;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.mobile-menu-button span {
  display: block;

  width: 20px;
  height: 1px;

  background: #ffffff;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}


.mobile-menu {
  display: none;
}


/* =========================================
   HERO
========================================= */

.hero {
  padding:
    205px 0
    125px;
}


.hero .shell {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.72fr);

  gap: 110px;

  align-items: center;
}


.eyebrow {
  display: block;

  margin-bottom: 28px;

  color: #7c818d;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.22em;

  text-transform: uppercase;
}


.hero h1 {
  max-width: 780px;

  margin: 0;

  font-size:
    clamp(
      72px,
      9vw,
      138px
    );

  font-weight: 850;

  line-height: 0.83;

  letter-spacing: -0.075em;
}


.hero h1 span {
  display: block;

  margin-top: 13px;

  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #c9beff 50%,
      #8eefff 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


.hero-copy p {
  max-width: 520px;

  margin: 38px 0 0;

  color: var(--muted);

  font-size: 18px;

  line-height: 1.75;
}


.hero-actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 29px;

  margin-top: 40px;
}


/* =========================================
   BUTTONS
========================================= */

.button {
  min-height: 53px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0 25px;

  border-radius: 999px;

  font-size: 13px;

  font-weight: 700;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}


.button:hover {
  transform:
    translateY(-2px);
}


.button-light {
  background: var(--white);

  color: #08090d;
}


.button-light:hover {
  background: #ddddda;
}


.text-link {
  display: inline-flex;

  align-items: center;

  color: #d1d3d8;

  font-size: 13px;

  transition: color 0.2s ease;
}


.text-link:hover {
  color: #ffffff;
}


/* =========================================
   HERO PRODUCT ART
========================================= */

.hero-art {
  display: flex;

  justify-content: flex-end;
}


.hero-product {
  position: relative;

  width: 100%;
  max-width: 480px;

  aspect-ratio: 4 / 5;

  display: grid;

  place-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(139, 92, 246, 0.20),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #171a22,
      #0b0c11
    );
}


.product-id {
  position: relative;

  z-index: 2;

  font-size:
    clamp(
      110px,
      13vw,
      190px
    );

  font-weight: 900;

  line-height: 1;

  letter-spacing: -0.11em;
}


.product-cross {
  position: absolute;

  z-index: 1;

  font-size: 175px;

  color: var(--cyan);

  opacity: 0.12;
}


.product-caption {
  position: absolute;

  z-index: 3;

  left: 27px;
  right: 27px;
  bottom: 25px;

  display: flex;

  justify-content: space-between;

  gap: 15px;

  color: #9297a3;

  font-size: 9px;

  letter-spacing: 0.16em;
}


/* =========================================
   QUIET WORD STRIP
========================================= */

.quiet-strip {
  border-top:
    1px solid
    var(--line);

  border-bottom:
    1px solid
    var(--line);
}


.quiet-strip .shell {
  min-height: 86px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


.quiet-strip span {
  color: #727782;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.22em;
}


/* =========================================
   SECTIONS
========================================= */

.products-section,
.categories-section {
  padding: 155px 0;
}


.section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 66px;
}


.section-heading h2,
.collection-copy h2,
.message-section h2,
.newsletter h2 {
  margin: 0;

  font-size:
    clamp(
      46px,
      6vw,
      82px
    );

  font-weight: 700;

  line-height: 0.95;

  letter-spacing: -0.055em;
}


/* =========================================
   PRODUCTS
========================================= */

.product-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;
}


.product-card {
  display: block;
}


.product-image {
  position: relative;

  aspect-ratio: 4 / 5;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  transition:
    transform 0.35s ease;
}


.product-card:hover .product-image {
  transform:
    scale(0.985);
}


.visual-one {
  background:
    linear-gradient(
      145deg,
      #e8e6e1,
      #c7c4bd
    );

  color: #0b0c10;
}


.visual-two {
  background:
    linear-gradient(
      145deg,
      #1b1c22,
      #0b0c10
    );
}


.visual-three {
  background:
    linear-gradient(
      145deg,
      #27232e,
      #101118
    );
}


.product-image strong {
  font-size:
    clamp(
      44px,
      5vw,
      78px
    );

  font-weight: 800;

  letter-spacing: -0.06em;
}


.mini-cross {
  position: absolute;

  top: 28px;

  font-size: 34px;
}


.small-label {
  position: absolute;

  top: 28px;
  left: 28px;

  font-size: 9px;

  letter-spacing: 0.18em;

  opacity: 0.55;
}


.product-meta {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 18px 2px;
}


.product-meta h3 {
  margin: 0 0 6px;

  font-size: 15px;

  font-weight: 600;
}


.product-meta span {
  color: #858993;

  font-size: 11px;
}


.product-meta .price {
  color: #dcdde1;

  white-space: nowrap;
}


/* =========================================
   FEATURED COLLECTION
========================================= */

.collection-feature {
  padding:
    70px 0
    155px;
}


.collection-grid {
  display: grid;

  grid-template-columns:
    1.15fr
    0.85fr;

  min-height: 620px;
}


.collection-art {
  position: relative;

  display: grid;

  place-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #141720,
      #090a0e
    );
}


.collection-word {
  position: relative;

  z-index: 2;

  font-size:
    clamp(
      170px,
      20vw,
      320px
    );

  font-weight: 900;

  line-height: 1;

  letter-spacing: -0.12em;
}


.collection-symbol {
  position: absolute;

  z-index: 1;

  font-size: 190px;

  color: var(--purple);

  opacity: 0.14;
}


.collection-copy {
  padding: 75px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: #f2f1ed;

  color: #0b0c10;
}


.collection-copy .eyebrow {
  color: #777b82;
}


.collection-copy p {
  max-width: 460px;

  margin: 30px 0;

  color: #5f6269;

  font-size: 17px;

  line-height: 1.75;
}


.collection-copy .button {
  width: fit-content;

  background: #0b0c10;

  color: #ffffff;
}


.collection-copy .button:hover {
  background: #292b31;
}


/* =========================================
   MESSAGE SECTION
========================================= */

.message-section {
  padding: 185px 0;
}


.message-section h2 {
  max-width: 900px;
}


.message-section h2 span {
  display: block;

  color: #777c88;
}


.message-section p {
  max-width: 610px;

  margin: 39px 0;

  color: #92969f;

  font-size: 18px;

  line-height: 1.8;
}


/* =========================================
   CATEGORY LINKS
========================================= */

.category-grid {
  border-top:
    1px solid
    var(--line);
}


.category-card {
  min-height: 170px;

  display: grid;

  grid-template-columns:
    80px
    1fr
    auto;

  align-items: center;

  gap: 30px;

  border-bottom:
    1px solid
    var(--line);

  transition:
    padding-left 0.25s ease;
}


.category-card:hover {
  padding-left: 12px;
}


.category-card > span {
  color: #666b75;

  font-size: 11px;
}


.category-card small {
  color: #696e79;

  font-size: 9px;

  letter-spacing: 0.18em;
}


.category-card h3 {
  margin: 10px 0 0;

  font-size:
    clamp(
      27px,
      3vw,
      43px
    );

  font-weight: 500;

  line-height: 1;

  letter-spacing: -0.035em;
}


.category-card strong {
  font-size: 30px;

  font-weight: 400;
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter {
  margin-top: 80px;

  padding: 135px 0;

  background: #f1f0ec;

  color: #0a0b0e;
}


.newsletter-inner {
  display: grid;

  grid-template-columns:
    1fr
    0.8fr;

  align-items: end;

  gap: 90px;
}


.newsletter .eyebrow {
  color: #6c7077;
}


.signup-form {
  display: flex;

  align-items: center;

  border-bottom:
    1px solid
    #22242a;
}


.signup-form input {
  flex: 1;

  min-width: 0;

  padding: 20px 0;

  border: 0;

  outline: 0;

  background: transparent;

  color: #0a0b0e;

  font-size: 16px;
}


.signup-form input::placeholder {
  color: #81848a;
}


.signup-form button {
  padding: 15px 10px;

  border: 0;

  background: transparent;

  color: #0a0b0e;

  font-size: 13px;

  font-weight: 700;

  cursor: pointer;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  padding: 85px 0;

  background: #08090d;
}


.footer-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr
    1fr;

  gap: 50px;
}


.footer-brand {
  font-size: 20px;

  font-weight: 750;

  letter-spacing: -0.03em;
}


.site-footer p,
.footer-end {
  color: #727782;

  font-size: 11px;

  line-height: 1.6;
}


.footer-links {
  display: flex;

  flex-direction: column;

  gap: 13px;

  color: #b1b3ba;

  font-size: 12px;
}


.footer-links a:hover {
  color: #ffffff;
}


.footer-end {
  text-align: right;
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(24px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}


.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 900px) {

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


  .announcement-bar span:nth-child(2) {
    display: none;
  }


  .nav-wrap {
    grid-template-columns:
      1fr
      auto;

    width:
      calc(100% - 40px);
  }


  .desktop-nav {
    display: none;
  }


  .desktop-tool {
    display: none;
  }


  .mobile-menu-button {
    display: flex;
  }


  .mobile-menu {
    display: block;

    max-height: 0;

    overflow: hidden;

    background: #0b0c10;

    border-top:
      1px solid
      rgba(255, 255, 255, 0.07);

    transition:
      max-height 0.4s ease;
  }


  .mobile-menu.open {
    max-height: 1000px;
  }


  .mobile-menu-section {
    width:
      calc(100% - 40px);

    margin: 0 auto;

    padding: 27px 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.08);
  }


  .mobile-menu-heading {
    display: block;

    margin-bottom: 13px;

    color: #656b77;

    font-size: 9px;

    letter-spacing: 0.20em;

    text-transform: uppercase;
  }


  .mobile-menu-section a {
    min-height: 50px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #ececef;

    font-size: 16px;
  }


  .mobile-menu-section small {
    color: #666c78;

    font-size: 9px;
  }


  .simple-links a {
    font-size: 14px;
  }


  .hero .shell {
    grid-template-columns: 1fr;

    gap: 75px;
  }


  .hero-art {
    justify-content: flex-start;
  }


  .hero-product {
    max-width: none;
  }


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


  .product-card:last-child {
    grid-column: span 2;
  }


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


  .collection-art {
    min-height: 570px;
  }


  .collection-copy {
    padding: 65px 45px;
  }


  .newsletter-inner {
    grid-template-columns: 1fr;

    gap: 60px;
  }


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


  .footer-end {
    grid-column: 1 / -1;

    text-align: left;
  }

}


/* =========================================
   PHONE
========================================= */

@media (max-width: 600px) {

  .shell {
    width:
      calc(100% - 32px);
  }


  .announcement-bar {
    height: 32px;

    padding:
      0
      16px;

    font-size: 7.5px;

    letter-spacing: 0.11em;
  }


  .site-header {
    top: 32px;
  }


  .nav-wrap {
    width:
      calc(100% - 32px);

    min-height: 68px;
  }


  .brand {
    font-size: 14px;
  }


  .brand-mark {
    width: 32px;
    height: 32px;
  }


  .nav-tools {
    gap: 14px;
  }


  .tool-link {
    display: none;
  }


  .cart-link {
    font-size: 11px;
  }


  .cart-link span {
    width: 21px;
    height: 21px;
  }


  .hero {
    padding:
      165px 0
      90px;
  }


  .hero .shell {
    gap: 60px;
  }


  .hero h1 {
    font-size:
      clamp(
        58px,
        18vw,
        88px
      );

    line-height: 0.85;
  }


  .hero-copy p {
    margin-top: 30px;

    font-size: 16px;

    line-height: 1.7;
  }


  .hero-actions {
    align-items: flex-start;

    flex-direction: column;

    gap: 20px;

    margin-top: 32px;
  }


  .hero-product {
    aspect-ratio: 4 / 5;
  }


  .quiet-strip .shell {
    min-height: 72px;

    justify-content: flex-start;

    gap: 30px;

    overflow: hidden;
  }


  .quiet-strip span:nth-child(n + 4) {
    display: none;
  }


  .products-section,
  .categories-section {
    padding: 105px 0;
  }


  .section-heading {
    align-items: flex-start;

    flex-direction: column;

    gap: 25px;

    margin-bottom: 45px;
  }


  .section-heading h2,
  .collection-copy h2,
  .message-section h2,
  .newsletter h2 {
    font-size:
      clamp(
        42px,
        13vw,
        66px
      );
  }


  .product-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }


  .product-card:last-child {
    grid-column: auto;
  }


  .collection-feature {
    padding:
      40px 0
      105px;
  }


  .collection-art {
    min-height: 440px;
  }


  .collection-word {
    font-size:
      clamp(
        150px,
        50vw,
        240px
      );
  }


  .collection-symbol {
    font-size: 130px;
  }


  .collection-copy {
    padding: 50px 28px;
  }


  .collection-copy p {
    font-size: 16px;
  }


  .message-section {
    padding: 125px 0;
  }


  .message-section p {
    margin:
      30px 0;

    font-size: 16px;
  }


  .category-card {
    min-height: 135px;

    grid-template-columns:
      35px
      1fr
      auto;

    gap: 14px;
  }


  .category-card:hover {
    padding-left: 0;
  }


  .category-card h3 {
    font-size:
      clamp(
        23px,
        7vw,
        32px
      );
  }


  .newsletter {
    margin-top: 30px;

    padding: 95px 0;
  }


  .newsletter-inner {
    gap: 45px;
  }


  .site-footer {
    padding: 65px 0;
  }


  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .footer-end {
    grid-column: auto;

    text-align: left;
  }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

  .announcement-bar a {
    display: none;
  }


  .announcement-bar {
    justify-content: center;
  }


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


  .nav-tools {
    gap: 9px;
  }

}



.brand-logo {
  height: 55px;
  width: auto;
  display: block;
}

.brand-text {
  font-size: 32px;
  font-weight: 600;
  white-space: nowrap;
}
