/* =====================================================
   FIDGET FORGE
===================================================== */


/* =====================================================
   VARIABLES
===================================================== */

:root {

  --black: #0d0d0d;
  --black-soft: #141414;
  --charcoal: #1c1c1c;
  --charcoal-light: #252525;

  --orange: #ff6500;
  --orange-bright: #ff8300;
  --orange-light: #ffad54;

  --white: #f6f4ef;
  --grey: #a7a7a7;
  --grey-dark: #666666;

  --line-light: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(13, 13, 13, 0.13);

  --display: "Archivo Black", sans-serif;
  --body: "Space Grotesk", sans-serif;

  --container: 1440px;

}



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

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  overflow-x: hidden;

  background: var(--black);

  color: var(--white);

  font-family: var(--body);
}


body.modal-open,
body.mobile-menu-open {
  overflow: hidden;
}


img {
  display: block;

  max-width: 100%;
}


a {
  color: inherit;

  text-decoration: none;
}


button {
  color: inherit;

  font: inherit;
}


button,
a {
  -webkit-tap-highlight-color: transparent;
}


::selection {
  background: var(--orange);

  color: var(--black);
}


.container {
  width: min(
    var(--container),
    calc(100% - 72px)
  );

  margin-inline: auto;
}



/* =====================================================
   INTRO
===================================================== */

.forge-intro {
  position: fixed;
  inset: 0;

  z-index: 9999;

  display: grid;
  place-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 101, 0, 0.15),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #161616,
      #080808
    );

  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}


.forge-intro::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.023) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.023) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  opacity: 0.65;
}


.forge-intro.is-hidden {
  opacity: 0;

  visibility: hidden;

  pointer-events: none;
}


.intro-button {
  position: relative;

  z-index: 4;

  width: min(850px, 94vw);

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 30px;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.intro-logo {
  width: min(620px, 85vw);

  filter:
    drop-shadow(
      0 18px 25px rgba(0,0,0,0.55)
    );
}


.intro-spinner-wrap {
  position: relative;

  width: 145px;
  height: 145px;

  display: grid;
  place-items: center;

  margin: 5px 0 18px;
}


.intro-glow {
  position: absolute;

  width: 105px;
  height: 105px;

  border-radius: 50%;

  background: rgba(255,101,0,0.32);

  filter: blur(30px);

  animation:
    introGlow 2s ease-in-out infinite;
}


.intro-spinner {
  position: relative;

  z-index: 2;

  width: 120px;

  animation:
    introSpin 6s linear infinite;

  filter:
    drop-shadow(
      0 0 18px rgba(255,101,0,0.35)
    );
}


.intro-enter {
  color: var(--orange);

  font-size: 0.8rem;
  font-weight: 700;

  letter-spacing: 0.25em;

  animation:
    introPulse 1.5s ease-in-out infinite;
}


.intro-small {
  margin-top: 8px;

  color: rgba(255,255,255,0.39);

  font-size: 0.65rem;
  font-weight: 600;

  letter-spacing: 0.17em;

  text-align: center;
}



/* =====================================================
   INTRO ICONS
===================================================== */

.intro-icons {
  position: absolute;
  inset: 0;

  pointer-events: none;
}


.intro-icon {
  position: absolute;

  width: 90px;
  height: 90px;

  fill: none;

  stroke: var(--white);

  stroke-width: 4;

  stroke-linecap: round;
  stroke-linejoin: round;

  opacity: 0.08;

  animation:
    introIconFloat 13s ease-in-out infinite alternate;
}


.intro-icon.orange {
  stroke: var(--orange);

  opacity: 0.13;
}


.intro-icon-1 {
  left: 5%;
  top: 11%;

  width: 120px;
}


.intro-icon-2 {
  right: 8%;
  top: 15%;

  width: 65px;

  animation-duration: 11s;
}


.intro-icon-3 {
  left: 15%;
  bottom: 10%;

  width: 90px;

  animation-duration: 16s;
}


.intro-icon-4 {
  right: 17%;
  bottom: 12%;

  width: 115px;
}


.intro-icon-5 {
  right: 2%;
  top: 46%;

  width: 130px;

  animation-duration: 18s;
}


.intro-icon-6 {
  left: 32%;
  top: 7%;

  width: 50px;
}


.intro-icon-7 {
  left: 3%;
  top: 49%;

  width: 75px;

  animation-duration: 15s;
}



/* =====================================================
   INTRO SPARKS
===================================================== */

.intro-sparks {
  position: absolute;

  left: 50%;
  top: 54%;

  z-index: 5;

  pointer-events: none;
}


.intro-sparks span {
  position: absolute;

  width: 4px;
  height: 45px;

  border-radius: 999px;

  opacity: 0;

  background:
    linear-gradient(
      transparent,
      var(--orange)
    );
}


.intro-sparks span:nth-child(1) {
  transform: rotate(0deg);
}


.intro-sparks span:nth-child(2) {
  transform: rotate(45deg);
}


.intro-sparks span:nth-child(3) {
  transform: rotate(90deg);
}


.intro-sparks span:nth-child(4) {
  transform: rotate(135deg);
}


.intro-sparks span:nth-child(5) {
  transform: rotate(180deg);
}


.intro-sparks span:nth-child(6) {
  transform: rotate(225deg);
}


.intro-sparks span:nth-child(7) {
  transform: rotate(270deg);
}


.intro-sparks span:nth-child(8) {
  transform: rotate(315deg);
}


.forge-intro.is-entering .intro-spinner {
  animation:
    introExitSpin 0.9s cubic-bezier(.12,.7,.18,1)
    forwards;
}


.forge-intro.is-entering .intro-logo {
  animation:
    introLogoExit 0.8s ease forwards;
}


.forge-intro.is-entering .intro-enter,
.forge-intro.is-entering .intro-small {
  animation:
    introTextExit 0.25s ease forwards;
}


.forge-intro.is-entering .intro-glow {
  animation:
    introGlowExit 0.8s ease-out forwards;
}


.forge-intro.is-entering .intro-sparks span {
  animation:
    introSparkBurst 0.7s ease-out forwards;
}



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

.site-header {
  position: sticky;
  top: 0;

  z-index: 500;

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

  background:
    rgba(10,10,10,0.9);

  backdrop-filter:
    blur(18px);
}


.header-inner {
  min-height: 90px;

  display: grid;

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

  align-items: center;

  gap: 30px;
}


.header-logo {
  width: 215px;

  justify-self: start;
}


.desktop-nav {
  display: flex;

  gap: 42px;
}


.desktop-nav a {
  position: relative;

  color: rgba(255,255,255,0.65);

  font-size: 0.8rem;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  transition:
    color 0.2s ease;
}


.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
}


.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -9px;

  width: 0;
  height: 2px;

  background: var(--orange);

  transition:
    width 0.2s ease;
}


.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}


.header-button {
  justify-self: end;

  display: inline-flex;
  align-items: center;

  gap: 14px;

  min-height: 54px;

  padding: 0 23px;

  background: var(--orange);

  color: var(--black);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.1em;

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


.header-button:hover {
  background: var(--orange-bright);

  transform: translateY(-2px);
}


.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 0;

  background: transparent;
}


.menu-toggle span {
  display: block;

  width: 25px;
  height: 2px;

  margin: 6px auto;

  background: var(--white);
}


.mobile-nav {
  display: none;
}



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

.button {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  padding: 0 25px;

  border:
    1px solid transparent;

  font-size: 0.74rem;
  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

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


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


.button-orange {
  background: var(--orange);

  color: var(--black);
}


.button-outline {
  border-color:
    rgba(255,255,255,0.22);

  background:
    rgba(255,255,255,0.03);

  color: var(--white);
}


.button-outline:hover {
  border-color: var(--orange);
}


.button-dark,
.button-black {
  background: var(--black);

  color: var(--white);
}


.button-orange-outline {
  border-color: var(--black);

  color: var(--black);
}



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

.hero {
  position: relative;

  min-height:
    calc(100svh - 90px);

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--black);
}


.hero-grid,
.shop-hero-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.026) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent
    );
}


.hero-layout {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(400px, 0.9fr);

  align-items: center;

  gap: 70px;

  padding-top: 80px;
  padding-bottom: 80px;
}


.eyebrow {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-bottom: 27px;

  color: var(--orange);

  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.17em;
}


.eyebrow > span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--orange);

  box-shadow:
    0 0 14px var(--orange);
}


.hero h1 {
  margin: 0;

  max-width: 100%;

  font-family: var(--display);

  font-size:
    clamp(4.7rem, 8vw, 9rem);

  font-weight: 400;

  line-height: 0.82;

  letter-spacing: -0.065em;
}


.hero h1 span,
.hero h1 em {
  display: block;
}


.hero h1 em {
  color: var(--orange);

  font-style: normal;
}


.hero-text {
  max-width: 600px;

  margin: 32px 0 0;

  color: rgba(255,255,255,0.63);

  font-size:
    clamp(1.05rem, 1.5vw, 1.28rem);

  line-height: 1.65;
}


.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 35px;
}



/* =====================================================
   ORDER NOTICE
===================================================== */

.order-notice {
  max-width: 650px;

  display: grid;

  grid-template-columns:
    42px 1fr;

  align-items: center;

  gap: 15px;

  margin-top: 45px;

  padding-top: 25px;

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


.notice-icon {
  width: 37px;
  height: 37px;

  display: grid;
  place-items: center;

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

  border-radius: 50%;

  color: var(--orange);

  font-weight: 700;
}


.order-notice p {
  margin: 0;

  color: rgba(255,255,255,0.48);

  font-size: 0.8rem;

  line-height: 1.6;
}


.order-notice strong {
  color: var(--white);
}



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

.hero-visual {
  position: relative;

  min-height: 560px;

  display: grid;
  place-items: center;
}


.hero-orbit {
  position: absolute;

  width: 465px;
  height: 465px;

  border:
    1px solid rgba(255,101,0,0.23);

  border-radius: 50%;
}


.hero-orbit::before {
  content: "";

  position: absolute;

  inset: 42px;

  border:
    1px dashed rgba(255,101,0,0.29);

  border-radius: 50%;

  animation:
    rotate 28s linear infinite;
}


.hero-spinner-glow {
  position: absolute;

  width: 290px;
  height: 290px;

  border-radius: 50%;

  background:
    rgba(255,101,0,0.13);

  filter:
    blur(45px);
}


.hero-spinner {
  position: relative;

  z-index: 2;

  width: 285px;

  animation:
    rotate 20s linear infinite;

  filter:
    drop-shadow(
      0 32px 28px rgba(0,0,0,0.45)
    );
}


.hero-tag {
  position: absolute;

  z-index: 4;

  padding: 9px 13px;

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

  background: var(--black);

  color: var(--orange);

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.11em;
}


.hero-tag-one {
  left: 3%;
  top: 24%;

  transform: rotate(-8deg);
}


.hero-tag-two {
  right: 3%;
  top: 35%;

  transform: rotate(8deg);
}


.hero-tag-three {
  left: 18%;
  bottom: 19%;

  background: var(--orange);

  color: var(--black);

  transform: rotate(5deg);
}



/* =====================================================
   TICKER
===================================================== */

.ticker {
  overflow: hidden;

  background: var(--orange);

  color: var(--black);
}


.ticker-track {
  width: max-content;

  display: flex;
  align-items: center;

  gap: 27px;

  padding: 16px 0;

  animation:
    ticker 25s linear infinite;
}


.ticker-track span {
  font-family: var(--display);

  font-size: 0.8rem;
}


.ticker-track i {
  font-style: normal;
}



/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(280px, 0.55fr);

  align-items: end;

  gap: 70px;

  margin-bottom: 58px;
}


.section-label {
  display: block;

  margin-bottom: 18px;

  color: var(--orange);

  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.17em;
}


.section-heading h2 {
  margin: 0;

  max-width: 100%;

  font-family: var(--display);

  font-size:
    clamp(3.4rem, 6vw, 6.5rem);

  line-height: 0.9;

  letter-spacing: -0.055em;
}


.section-heading h2 em {
  display: block;

  color: var(--orange);

  font-style: normal;
}


.section-heading > p {
  margin: 0;

  color: var(--grey-dark);

  line-height: 1.7;
}


.section-heading-dark > p {
  color: rgba(255,255,255,0.52);
}



/* =====================================================
   HOME CATEGORIES
===================================================== */

.categories-section {
  padding: 125px 0;

  background: var(--white);

  color: var(--black);
}


.home-category-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 18px;
}


.home-category {
  position: relative;

  min-height: 500px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  padding: 27px;

  transition:
    transform 0.3s ease;
}


.home-category:hover {
  transform:
    translateY(-7px);
}


.dark-card {
  background: var(--black);

  color: var(--white);
}


.grey-card {
  background: #292929;

  color: var(--white);
}


.category-number {
  position: relative;

  z-index: 3;

  font-size: 0.66rem;
  font-weight: 700;

  opacity: 0.55;
}


.category-copy {
  position: relative;

  z-index: 3;

  margin-top: auto;
}


.category-copy > span {
  display: block;

  margin-bottom: 8px;

  font-size: 0.62rem;
  font-weight: 700;

  letter-spacing: 0.11em;

  opacity: 0.55;
}


.category-copy h3 {
  margin: 0;

  max-width: 100%;

  font-family: var(--display);

  font-size:
    clamp(2.8rem, 5vw, 5.5rem);

  line-height: 0.88;

  letter-spacing: -0.055em;
}


.mystery-graphic {
  position: absolute;

  left: 50%;
  top: 45%;

  transform:
    translate(-50%, -50%)
    rotate(-7deg);

  color: var(--orange);

  font-family: var(--display);

  font-size: 12rem;

  text-shadow:
    0 0 45px rgba(255,101,0,0.25);
}


.bracelet-graphic {
  position: absolute;
  inset: 0;

  display: grid;
  place-items: center;
}


.bracelet-graphic > div {
  display: flex;

  gap: 5px;

  padding: 17px 25px;

  border:
    12px solid var(--orange);

  border-radius: 999px;

  transform: rotate(-8deg);
}


.bracelet-graphic span {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 5px;

  background: var(--white);

  color: var(--black);

  font-family: var(--display);
}


.categories-button {
  display: flex;
  justify-content: center;

  margin-top: 42px;
}



/* =====================================================
   HOW TO ORDER / AVAILABLE
===================================================== */

.how-order {
  padding: 130px 0;

  background: #151515;
}


.order-steps {
  display: grid;

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

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

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


.order-step {
  min-height: 340px;

  display: flex;
  flex-direction: column;

  padding: 28px;

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


.order-step:last-child {
  border-right: 0;
}


.step-number {
  color: rgba(255,255,255,0.3);

  font-size: 0.65rem;
  font-weight: 700;
}


.step-symbol {
  width: 55px;
  height: 55px;

  display: grid;
  place-items: center;

  margin-top: auto;
  margin-bottom: 24px;

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

  color: var(--orange);

  font-size: 1.4rem;
  font-weight: 600;
}


.order-step h3 {
  margin:
    0 0 11px;

  max-width: 100%;

  font-family: var(--display);

  font-size:
    clamp(1.5rem, 2.5vw, 2.4rem);

  line-height: 1;
}


.order-step p {
  margin: 0;

  color: rgba(255,255,255,0.47);

  line-height: 1.65;
}


.instagram-order-box {
  display: grid;

  grid-template-columns:
    1fr auto;

  align-items: center;

  gap: 50px;

  margin-top: 35px;

  padding: 45px;

  background: var(--orange);

  color: var(--black);
}


.instagram-order-box > div > span {
  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.instagram-order-box h3 {
  margin:
    8px 0 8px;

  max-width: 100%;

  font-family: var(--display);

  font-size:
    clamp(2.2rem, 4vw, 4.5rem);

  letter-spacing: -0.05em;
}


.instagram-order-box p {
  margin: 0;

  line-height: 1.6;
}


.instagram-button {
  min-height: 60px;

  display: inline-flex;
  align-items: center;

  gap: 15px;

  padding: 0 24px;

  background: var(--black);

  color: var(--white);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.1em;

  white-space: nowrap;
}



/* =====================================================
   COMING SOON
===================================================== */

.coming-section {
  position: relative;

  min-height: 620px;

  display: grid;
  place-items: center;

  overflow: hidden;

  background: var(--orange);

  color: var(--black);
}


.coming-lines {
  position: absolute;
  inset: -20%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 35px;

  opacity: 0.18;

  transform: rotate(-6deg);
}


.coming-lines span {
  height: 4px;

  background: var(--black);

  animation:
    lineSlide 8s ease-in-out infinite alternate;
}


.coming-lines span:nth-child(even) {
  animation-direction: alternate-reverse;
}


.coming-content {
  position: relative;

  z-index: 2;

  text-align: center;
}


.coming-small {
  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.2em;
}


.coming-content h2 {
  margin:
    18px auto 25px;

  max-width: 100%;

  font-family: var(--display);

  font-size:
    clamp(4rem, 9vw, 9rem);

  line-height: 0.82;

  letter-spacing: -0.06em;
}


.coming-content h2 em {
  display: block;

  color: var(--white);

  font-style: normal;
}


.coming-content p {
  max-width: 620px;

  margin:
    0 auto 32px;

  line-height: 1.7;

  font-weight: 500;
}



/* =====================================================
   FINAL CTA
===================================================== */

.home-final-cta {
  position: relative;

  min-height: 570px;

  display: grid;
  place-items: center;

  overflow: hidden;

  background: var(--white);

  color: var(--black);
}


.final-spinner-bg {
  position: absolute;

  right: -150px;
  bottom: -190px;

  width: 590px;

  opacity: 0.07;
}


.final-spinner-bg img {
  animation:
    rotate 30s linear infinite;
}


.final-content {
  position: relative;

  z-index: 2;
}


.final-content > span {
  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.final-content h2 {
  max-width: 1000px;

  margin:
    15px 0 35px;

  font-family: var(--display);

  font-size:
    clamp(4rem, 9vw, 9rem);

  line-height: 0.83;

  letter-spacing: -0.06em;
}


.final-content h2 em {
  display: block;

  color: var(--orange);

  font-style: normal;
}


.final-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}



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

.shop-hero {
  position: relative;

  overflow: hidden;

  padding:
    115px 0 90px;

  background: var(--black);
}


.shop-hero-inner {
  position: relative;

  z-index: 2;
}


.shop-hero h1 {
  max-width: 1000px;

  margin: 0;

  font-family: var(--display);

  font-size:
    clamp(4.7rem, 9vw, 9rem);

  line-height: 0.83;

  letter-spacing: -0.065em;
}


.shop-hero h1 em {
  display: block;

  color: var(--orange);

  font-style: normal;
}


.shop-hero-inner > p {
  max-width: 610px;

  margin:
    30px 0;

  color: rgba(255,255,255,0.57);

  font-size: 1.1rem;

  line-height: 1.7;
}


.shop-order-notice {
  max-width: 900px;

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  gap: 25px;

  padding:
    20px 24px;

  border:
    1px solid rgba(255,101,0,0.35);

  background:
    rgba(255,101,0,0.06);
}


.shop-order-notice strong {
  color: var(--orange);

  font-size: 0.68rem;

  letter-spacing: 0.1em;
}


.shop-order-notice span {
  color: rgba(255,255,255,0.57);

  font-size: 0.8rem;
}


.shop-order-notice a {
  color: var(--orange);

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}



/* =====================================================
   CATALOGUE
===================================================== */

.catalogue-section {
  min-height: 700px;

  padding:
    75px 0 125px;

  background: var(--white);

  color: var(--black);
}


.catalogue-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 42px;

  padding-bottom: 22px;

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


.filter-scroll {
  display: flex;
  flex-wrap: wrap;

  gap: 9px;
}


.filter-button {
  min-height: 42px;

  padding: 0 17px;

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

  background: transparent;

  color: #5d5d5d;

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.08em;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}


.filter-button:hover,
.filter-button.active {
  border-color: var(--black);

  background: var(--black);

  color: var(--white);
}


.product-count {
  color: #777;

  font-size: 0.72rem;

  white-space: nowrap;
}


.product-grid {
  display: grid;

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

  gap: 18px;
}



/* =====================================================
   PRODUCT CARDS
===================================================== */

.product-card {
  position: relative;

  overflow: hidden;

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

  background: #fff;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.product-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    0 20px 35px rgba(0,0,0,0.08);
}


.product-media {
  position: relative;

  aspect-ratio: 1 / 1;

  display: grid;
  place-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #1d1d1d,
      #0d0d0d
    );
}


.product-media img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.45s ease;
}


.product-card:hover .product-media img {
  transform:
    scale(1.045);
}


.product-fallback {
  position: absolute;
  inset: 0;

  display: grid;
  place-items: center;

  color: var(--orange);

  font-family: var(--display);

  font-size: 5rem;

  background:
    radial-gradient(
      circle,
      rgba(255,101,0,0.14),
      transparent 50%
    );
}


.product-category-badge {
  position: absolute;

  left: 15px;
  top: 15px;

  z-index: 3;

  padding:
    8px 10px;

  background:
    rgba(13,13,13,0.88);

  color: var(--white);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}


.product-card-content {
  padding:
    20px 20px 22px;
}


.product-card-title {
  display: flex;

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

  gap: 18px;
}


.product-card h2 {
  margin: 0;

  min-width: 0;

  font-family: var(--display);

  font-size:
    clamp(1.25rem, 2vw, 1.8rem);

  line-height: 1;

  letter-spacing: -0.03em;
}


.product-price {
  color: var(--orange);

  font-family: var(--display);

  font-size: 1.2rem;

  white-space: nowrap;
}


.product-card p {
  margin:
    13px 0 0;

  color: #777;

  font-size: 0.82rem;

  line-height: 1.55;
}


.product-view {
  display: inline-flex;

  margin-top: 19px;

  color: var(--black);

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}



/* =====================================================
   SHOP INSTAGRAM CTA
===================================================== */

.shop-instagram-cta {
  padding:
    90px 0;

  background: var(--white);

  color: var(--black);
}


.shop-instagram-inner {
  display: grid;

  grid-template-columns:
    1fr auto;

  align-items: center;

  gap: 70px;
}


.shop-instagram-inner > div > span {
  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}


.shop-instagram-inner h2 {
  margin:
    9px 0;

  max-width: 100%;

  font-family: var(--display);

  font-size:
    clamp(3rem, 6vw, 6rem);

  line-height: 0.88;

  letter-spacing: -0.055em;
}


.shop-instagram-inner h2 em {
  display: block;

  color: var(--orange);

  font-style: normal;
}


.shop-instagram-inner p {
  max-width: 590px;

  margin: 0;

  line-height: 1.65;
}



/* =====================================================
   PRODUCT MODAL
===================================================== */

.product-modal {
  position: fixed;
  inset: 0;

  z-index: 5000;

  display: grid;
  place-items: center;

  padding: 25px;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

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


.product-modal.open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


.product-modal-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(0,0,0,0.78);

  backdrop-filter:
    blur(8px);
}


.product-modal-panel {
  position: relative;

  z-index: 2;

  width: min(980px, 100%);

  max-height:
    calc(100svh - 50px);

  display: grid;

  grid-template-columns:
    1fr 1fr;

  overflow: auto;

  background: var(--white);

  color: var(--black);

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

  transform:
    translateY(20px)
    scale(0.98);

  transition:
    transform 0.3s ease;
}


.product-modal.open .product-modal-panel {
  transform:
    translateY(0)
    scale(1);
}


.modal-close {
  position: absolute;

  right: 16px;
  top: 16px;

  z-index: 10;

  width: 46px;
  height: 46px;

  border: 0;

  border-radius: 50%;

  background:
    rgba(13,13,13,0.88);

  color: var(--white);

  font-size: 1.8rem;

  cursor: pointer;
}


.modal-product-image-wrap {
  position: relative;

  min-height: 570px;

  display: grid;
  place-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #202020,
      #0c0c0c
    );
}


.modal-product-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


.modal-image-fallback {
  position: absolute;
  inset: 0;

  display: none;
  place-items: center;

  color: var(--orange);

  font-family: var(--display);

  font-size: 8rem;

  background:
    radial-gradient(
      circle,
      rgba(255,101,0,0.16),
      transparent 45%
    );
}


.modal-product-content {
  display: flex;
  flex-direction: column;

  padding:
    70px 55px 50px;
}


.modal-category {
  color: var(--orange);

  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.modal-product-content h2 {
  margin:
    15px 0 20px;

  max-width: 100%;

  font-family: var(--display);

  font-size:
    clamp(2.3rem, 4vw, 4rem);

  line-height: 0.9;

  letter-spacing: -0.05em;
}


.modal-description {
  margin: 0;

  color: #6c6c6c;

  line-height: 1.7;
}


.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 35px;

  padding:
    22px 0;

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

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


.modal-price-row span {
  color: #777;

  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.modal-price-row strong {
  color: var(--orange);

  font-family: var(--display);

  font-size: 2rem;
}


.modal-order-note {
  margin-top: 30px;

  padding:
    20px;

  background:
    #ebe8e3;
}


.modal-order-note strong {
  font-size: 0.65rem;

  letter-spacing: 0.11em;
}


.modal-order-note p {
  margin:
    7px 0 0;

  color: #626262;

  font-size: 0.82rem;

  line-height: 1.5;
}


.modal-order-button {
  min-height: 61px;

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

  gap: 15px;

  margin-top: auto;

  padding:
    0 25px;

  background: var(--orange);

  color: var(--black);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  transition:
    background 0.2s ease;
}


.modal-order-button:hover {
  background: var(--orange-bright);
}



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

.site-footer {
  padding:
    70px 0 25px;

  background: #090909;

  color: var(--white);
}


.footer-main {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 100px;

  padding-bottom: 60px;
}


.footer-brand img {
  width: 240px;
}


.footer-brand p {
  max-width: 380px;

  margin:
    22px 0 0;

  color: rgba(255,255,255,0.43);

  line-height: 1.7;
}


.footer-links {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(130px, 1fr));

  gap: 65px;
}


.footer-links > div {
  display: flex;
  flex-direction: column;

  gap: 11px;
}


.footer-links > div > span {
  margin-bottom: 8px;

  color: var(--orange);

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.footer-links a {
  color: rgba(255,255,255,0.62);

  transition:
    color 0.2s ease;
}


.footer-links a:hover {
  color: var(--orange);
}


.footer-bottom {
  display: grid;

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

  align-items: center;

  gap: 25px;

  padding-top: 21px;

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

  color: rgba(255,255,255,0.33);

  font-size: 0.68rem;

  letter-spacing: 0.07em;
}


.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  text-align: center;
}


.footer-credit a {
  color: rgba(255,255,255,0.67);

  transition:
    color 0.2s ease;
}


.footer-credit a:hover {
  color: var(--orange);
}


.footer-order-note {
  justify-self: end;
}



/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes introSpin {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes introGlow {

  0%,
  100% {
    opacity: 0.45;

    transform: scale(0.9);
  }

  50% {
    opacity: 1;

    transform: scale(1.2);
  }

}


@keyframes introPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

}


@keyframes introIconFloat {

  from {
    transform:
      translate(0, 0)
      rotate(-8deg);
  }

  to {
    transform:
      translate(25px, -35px)
      rotate(16deg);
  }

}


@keyframes introExitSpin {

  0% {
    transform:
      rotate(0deg)
      scale(1);
  }

  60% {
    transform:
      rotate(900deg)
      scale(1.45);
  }

  100% {
    transform:
      rotate(1500deg)
      scale(0.1);

    opacity: 0;
  }

}


@keyframes introLogoExit {

  to {
    transform:
      scale(1.13);

    opacity: 0;
  }

}


@keyframes introTextExit {

  to {
    transform:
      translateY(12px);

    opacity: 0;
  }

}


@keyframes introGlowExit {

  to {
    transform:
      scale(8);

    opacity: 0;
  }

}


@keyframes introSparkBurst {

  0% {
    opacity: 0;

    height: 20px;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;

    height: 170px;

    margin-top: -130px;
  }

}


@keyframes rotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes ticker {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


@keyframes lineSlide {

  from {
    transform: translateX(-6%);
  }

  to {
    transform: translateX(6%);
  }

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

  .desktop-nav {
    display: none;
  }


  .header-inner {
    grid-template-columns:
      1fr auto auto;
  }


  .menu-toggle {
    display: block;
  }


  .mobile-nav {
    display: flex;
    flex-direction: column;

    max-height: 0;

    overflow: hidden;

    background: #090909;

    transition:
      max-height 0.3s ease;
  }


  .mobile-nav.open {
    max-height: 300px;
  }


  .mobile-nav a {
    padding:
      17px 36px;

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

    font-size: 0.8rem;
    font-weight: 700;

    text-transform: uppercase;
  }


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

    padding-top: 90px;
  }


  .hero-visual {
    min-height: 500px;
  }


  .section-heading {
    grid-template-columns: 1fr;

    gap: 25px;
  }


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


  .product-modal-panel {
    width: min(850px, 100%);
  }


  .shop-instagram-inner {
    grid-template-columns: 1fr;

    gap: 35px;
  }

}



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

@media (max-width: 700px) {

  .container {
    width:
      calc(100% - 34px);
  }


  /* INTRO */

  .intro-button {
    padding:
      20px 10px;
  }


  .intro-logo {
    width: 94vw;
  }


  .intro-spinner-wrap {
    width: 115px;
    height: 115px;
  }


  .intro-spinner {
    width: 95px;
  }


  .intro-enter {
    font-size: 0.68rem;

    letter-spacing: 0.18em;

    text-align: center;
  }


  .intro-small {
    font-size: 0.55rem;

    letter-spacing: 0.12em;

    line-height: 1.6;
  }


  .intro-icon {
    opacity: 0.06;
  }


  .intro-icon.orange {
    opacity: 0.1;
  }


  /* HEADER */

  .header-inner {
    min-height: 73px;

    grid-template-columns:
      1fr auto;
  }


  .header-logo {
    width: 150px;
  }


  .header-button {
    display: none;
  }


  /* HERO */

  .hero {
    min-height: auto;
  }


  .hero-layout {
    gap: 15px;

    padding-top: 65px;
    padding-bottom: 40px;
  }


  .hero h1 {
    font-size:
      clamp(3.25rem, 14vw, 5.3rem);

    line-height: 0.86;
  }


  .hero-text {
    margin-top: 24px;
  }


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


  .hero-buttons .button {
    width: 100%;
  }


  .order-notice {
    grid-template-columns:
      36px 1fr;

    margin-top: 35px;
  }


  .hero-visual {
    min-height: 390px;
  }


  .hero-orbit {
    width: 305px;
    height: 305px;
  }


  .hero-spinner {
    width: 195px;
  }


  .hero-tag {
    font-size: 0.52rem;
  }


  /* SECTION HEADINGS */

  .categories-section,
  .how-order {
    padding:
      85px 0;
  }


  .section-heading h2 {
    font-size:
      clamp(2.75rem, 11.5vw, 4.6rem);

    line-height: 0.9;

    overflow-wrap: normal;
    word-break: normal;
  }


  /* CATEGORIES */

  .home-category-grid {
    grid-template-columns:
      1fr;
  }


  .home-category {
    min-height: 430px;
  }


  .category-copy h3 {
    font-size:
      clamp(2.6rem, 10.7vw, 4.2rem);

    line-height: 0.9;

    overflow-wrap: normal;
    word-break: normal;
  }


  .mystery-graphic {
    font-size: 9rem;
  }


  .bracelet-graphic > div {
    padding:
      14px 18px;

    border-width: 9px;
  }


  .bracelet-graphic span {
    width: 40px;
    height: 40px;
  }


  /* ORDER */

  .order-steps {
    grid-template-columns:
      1fr;
  }


  .order-step {
    min-height: 270px;

    border-right: 0;

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


  .order-step:last-child {
    border-bottom: 0;
  }


  .order-step h3 {
    font-size:
      clamp(1.45rem, 7vw, 2.1rem);
  }


  .instagram-order-box {
    grid-template-columns:
      1fr;

    gap: 30px;

    padding:
      32px 25px;
  }


  .instagram-order-box h3 {
    font-size:
      clamp(2.35rem, 10vw, 3.6rem);
  }


  .instagram-button {
    justify-content: center;

    white-space: normal;

    text-align: center;
  }


  /* COMING */

  .coming-section {
    min-height: 520px;
  }


  .coming-content h2 {
    font-size:
      clamp(3rem, 12.5vw, 5.2rem);

    line-height: 0.86;
  }


  /* FINAL CTA */

  .home-final-cta {
    min-height: 500px;
  }


  .final-content h2 {
    font-size:
      clamp(3rem, 12.5vw, 5.2rem);

    line-height: 0.86;
  }


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


  .final-buttons .button {
    width: 100%;
  }


  /* SHOP HERO */

  .shop-hero {
    padding:
      80px 0 65px;
  }


  .shop-hero h1 {
    font-size:
      clamp(3rem, 12.5vw, 4.8rem);

    line-height: 0.88;
  }


  .shop-order-notice {
    grid-template-columns: 1fr;

    gap: 10px;
  }


  /* CATALOGUE */

  .catalogue-section {
    padding:
      45px 0 85px;
  }


  .catalogue-toolbar {
    align-items: flex-start;
    flex-direction: column;

    gap: 15px;
  }


  .filter-scroll {
    width: 100%;

    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 4px;

    scrollbar-width: none;
  }


  .filter-scroll::-webkit-scrollbar {
    display: none;
  }


  .filter-button {
    flex: 0 0 auto;
  }


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


  .product-card-title {
    gap: 12px;
  }


  .product-card h2 {
    font-size:
      clamp(1.2rem, 6vw, 1.7rem);
  }


  /* SHOP CTA */

  .shop-instagram-inner h2 {
    font-size:
      clamp(2.75rem, 11.5vw, 4.4rem);

    line-height: 0.9;
  }


  /* MODAL */

  .product-modal {
    padding: 12px;
  }


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


  .modal-product-image-wrap {
    min-height: 330px;
  }


  .modal-product-content {
    padding:
      35px 25px 25px;
  }


  .modal-product-content h2 {
    font-size:
      clamp(2rem, 10vw, 3.4rem);
  }


  .modal-order-button {
    margin-top: 30px;
  }


  /* FOOTER */

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

    gap: 45px;
  }


  .footer-links {
    gap: 30px;
  }


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

    gap: 12px;

    text-align: center;
  }


  .footer-credit {
    flex-wrap: wrap;
  }


  .footer-order-note {
    justify-self: center;
  }

}



/* =====================================================
   EXTRA SMALL PHONES
===================================================== */

@media (max-width: 390px) {

  .hero h1 {
    font-size: 3rem;
  }


  .shop-hero h1 {
    font-size: 2.8rem;
  }


  .section-heading h2 {
    font-size: 2.55rem;
  }


  .category-copy h3 {
    font-size: 2.45rem;
  }


  .coming-content h2,
  .final-content h2 {
    font-size: 2.85rem;
  }


  .instagram-order-box h3 {
    font-size: 2.3rem;
  }

}



/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    scroll-behavior: auto !important;
  }

}

/* =====================================================
   MOBILE FOOTER ONLY
===================================================== */

@media (max-width: 700px) {

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

    gap: 42px;

    padding-bottom: 45px;

    text-align: center;
  }


  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .footer-brand img {
    width: 220px;

    margin-inline: auto;
  }


  .footer-brand p {
    max-width: 320px;

    margin:
      22px auto 0;

    text-align: center;

    line-height: 1.7;
  }


  .footer-links {
    width: min(100%, 340px);

    grid-template-columns:
      repeat(2, 1fr);

    gap: 30px;

    margin-inline: auto;
  }


  .footer-links > div {
    align-items: center;

    text-align: center;
  }


  .footer-links > div > span {
    margin-bottom: 8px;

    text-align: center;
  }


  .footer-links a {
    text-align: center;
  }


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

    gap: 13px;

    padding-top: 24px;

    text-align: center;
  }


  .footer-credit {
    justify-content: center;

    flex-wrap: wrap;

    gap: 5px;
  }


  .footer-order-note {
    justify-self: center;
  }

}