/* =====================================================
   TSAR WEBSITE
   ===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap");


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

:root {
  --background: #090a07;
  --background-soft: #0e100b;
  --background-card: #12150e;
  --background-light: #f0ece4;

  --text: #f4efe6;
  --text-soft: #c5bdaf;
  --text-dark: #11130d;

  --gold: #d1b071;
  --gold-light: #e5cb96;
  --gold-dark: #9e7d45;

  --border: rgba(209, 176, 113, 0.2);
  --border-strong: rgba(209, 176, 113, 0.5);

  --header-height: 88px;
  --page-padding: 7vw;

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: "Archivo", Arial, sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

section {
  scroll-margin-top: var(--header-height);
}


/* =====================================================
   SCROLLBAR
   ===================================================== */

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #080906;
}

::-webkit-scrollbar-thumb {
  background: #6d5b38;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}


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

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  min-height: var(--header-height);
  padding: 14px var(--page-padding);

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

  background: rgba(9, 10, 7, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    min-height var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.header.scrolled {
  min-height: 72px;
  background: rgba(9, 10, 7, 0.94);
  border-color: var(--border);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.logo {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 92px;
  height: 58px;
  object-fit: contain;

  filter: brightness(1.07);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
  opacity: 0.86;
}

nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

nav a {
  position: relative;
  padding: 8px 0;

  color: #d7d0c4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-decoration: none;
  text-transform: uppercase;

  transition: color var(--transition);
}

nav a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  width: 0;
  height: 1px;
  margin: auto;

  background: var(--gold);

  transition: width var(--transition);
}

nav a:hover,
nav a.active {
  color: var(--gold-light);
}

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


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

.hero {
  position: relative;

  min-height: 100svh;
  padding-top: var(--header-height);

  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;

  background:
    radial-gradient(circle at 10% 35%,
      rgba(209, 176, 113, 0.13),
      transparent 31%),
    linear-gradient(120deg, #0e100b 0%, var(--background) 62%);
}

.hero-content {
  position: relative;
  z-index: 3;

  padding:
    clamp(100px, 15vh, 180px) 7% 100px var(--page-padding);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: -55px;

  width: clamp(300px, 38vw, 590px);

  opacity: 0.035;
  pointer-events: none;
  transform: translateY(-50%);
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;

  margin: 20px 0 26px;

  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 600;
  letter-spacing: -4px;
  line-height: 0.85;
  text-transform: uppercase;

  text-shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
}

.hero h1::after {
  content: "";

  display: block;

  width: 84px;
  height: 2px;
  margin-top: 30px;

  background: var(--gold);
}

.hero-text {
  max-width: 590px;
  margin-bottom: 38px;

  color: var(--text-soft);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 52px;
  padding: 15px 28px;

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

  border: 1px solid transparent;
  border-radius: 100px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

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

.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 15px 35px rgba(209, 176, 113, 0.17);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 18px 40px rgba(209, 176, 113, 0.26);
}

.btn-secondary {
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(209, 176, 113, 0.08);
  border-color: var(--gold);
}

.hero-image {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
}

.hero-image>img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--header-height));

  object-fit: cover;
  object-position: center top;

  transition: transform 1.2s ease;
}

.hero:hover .hero-image>img {
  transform: scale(1.018);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      var(--background) 0%,
      rgba(9, 10, 7, 0.43) 17%,
      transparent 48%),
    linear-gradient(0deg,
      rgba(9, 10, 7, 0.52) 0%,
      transparent 40%);

  pointer-events: none;
}

.hero-badge {
  position: absolute;
  right: 35px;
  bottom: 35px;

  min-width: 170px;
  padding: 17px 20px;

  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(9, 10, 7, 0.65);
  border: 1px solid var(--border);
  border-radius: 14px;

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

.hero-badge span {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 24px;
}

.hero-badge p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: var(--page-padding);
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 12px;

  color: #8e887d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-indicator span {
  width: 36px;
  height: 1px;
  background: var(--gold);
  animation: scrollLine 1.8s infinite ease-in-out;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleX(0.55);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}


/* =====================================================
   SHARED SECTION STYLING
   ===================================================== */

.collection,
.meaning,
.contact {
  position: relative;
  padding:
    clamp(90px, 11vw, 150px) var(--page-padding);
}

.section-heading {
  margin-bottom: 60px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title-row img {
  width: 58px;
  height: 45px;
  object-fit: contain;
}

.section-title-row p {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
}

.section-heading-text {
  max-width: 760px;
}

.section-heading-text h2,
.meaning-top h2,
.contact h2 {
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading-text>p {
  max-width: 600px;
  margin-top: 22px;

  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}


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

.collection {
  background:
    linear-gradient(to bottom,
      var(--background),
      var(--background-soft) 10%,
      var(--background-soft) 90%,
      var(--background));
}

.collection::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 86%;
  height: 1px;

  background: linear-gradient(90deg,
      transparent,
      var(--border),
      transparent);

  transform: translateX(-50%);
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.card {
  padding: 14px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.006)),
    var(--background-card);

  border: 1px solid var(--border);
  border-radius: 26px;

  overflow: hidden;

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
  transform: translateY(-7px);
}

.shirt-switch {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1.03;

  background:
    radial-gradient(circle at center,
      rgba(255, 255, 255, 0.95),
      #e8e2d9);

  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

.shirt-switch::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 3;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.18),
      transparent 40%);

  pointer-events: none;
}

.shirt-switch img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.shirt-switch .front {
  opacity: 1;
  transform: scale(1);
}

.shirt-switch .back {
  opacity: 0;
  transform: scale(1.025);
}

.card.active .shirt-switch .front {
  opacity: 0;
  transform: scale(0.985);
}

.card.active .shirt-switch .back {
  opacity: 1;
  transform: scale(1);
}

/* Hover only on devices that actually support hover */
@media (hover: hover) and (pointer: fine) {
  .card:hover .shirt-switch .front {
    opacity: 0;
    transform: scale(0.985);
  }

  .card:hover .shirt-switch .back {
    opacity: 1;
    transform: scale(1);
  }

  .desktop-label {
    font-size: 0;
  }

  .desktop-label::after {
    content: "Hover to view back";
    font-size: 9px;
  }

  .card:hover .desktop-label::after {
    content: "Hover to view front";
  }
}


.view-label {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 5;

  padding: 9px 13px;

  background: rgba(10, 11, 8, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;

  color: #eee9df;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    background var(--transition),
    color var(--transition);
}

.card.active .view-label {
  background: var(--gold);
  color: var(--text-dark);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover .view-label {
    background: var(--gold);
    color: var(--text-dark);
  }
}

.mobile-label {
  display: none;
}

.card-info {
  min-height: 115px;
  padding: 23px 9px 10px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.product-number {
  margin-bottom: 8px;

  color: #857e72;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
}

.card-info h3 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.product-meaning {
  flex-shrink: 0;
  padding: 9px 13px;

  border: 1px solid var(--border);
  border-radius: 100px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}


/* =====================================================
   BRAND STATEMENT
   ===================================================== */

.brand-statement {
  padding:
    clamp(105px, 14vw, 200px) var(--page-padding);

  text-align: center;

  background:
    radial-gradient(circle at center,
      rgba(209, 176, 113, 0.15),
      transparent 36%),
    var(--background);
}

.statement-small {
  margin-bottom: 30px;

  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
}

.brand-statement h2 {
  max-width: 1100px;
  margin: auto;

  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 1.02;
  text-transform: uppercase;
}

.brand-statement h2 span {
  display: block;
  color: var(--gold);
}


/* =====================================================
   MEANING
   ===================================================== */

.meaning {
  background:
    radial-gradient(circle at 6% 12%,
      rgba(209, 176, 113, 0.15),
      transparent 30%),
    linear-gradient(145deg, #0f120c, #080906);
}

.meaning-top {
  margin-bottom: 65px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.meaning-top .eyebrow {
  margin-bottom: 20px;
}

.meaning-intro {
  max-width: 580px;

  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.meaning-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.meaning-card {
  position: relative;

  min-height: 390px;
  padding: 28px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.012));

  border: 1px solid var(--border);
  border-radius: 24px;

  overflow: hidden;

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.meaning-card:nth-child(1),
.meaning-card:nth-child(2) {
  grid-column: span 3;
}

.meaning-card:nth-child(3),
.meaning-card:nth-child(4),
.meaning-card:nth-child(5) {
  grid-column: span 2;
}

.meaning-card::before {
  content: "";

  position: absolute;
  top: -100px;
  right: -100px;

  width: 230px;
  height: 230px;

  background: radial-gradient(circle,
      rgba(209, 176, 113, 0.16),
      transparent 68%);

  opacity: 0;
  transition: opacity var(--transition);
}

.meaning-card:hover {
  background:
    linear-gradient(145deg,
      rgba(209, 176, 113, 0.09),
      rgba(255, 255, 255, 0.015));

  border-color: var(--border-strong);
  transform: translateY(-7px);
}

.meaning-card:hover::before {
  opacity: 1;
}

.meaning-number {
  position: relative;
  z-index: 2;

  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
}

.meaning-content {
  position: relative;
  z-index: 2;
}

.tree-symbol {
  margin-bottom: 12px;

  color: #81796d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.4px;
}

.meaning-card h3 {
  margin-bottom: 8px;

  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.meaning-card h4 {
  margin-bottom: 18px;

  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.meaning-card .meaning-content>p:last-child {
  max-width: 470px;

  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}


/* =====================================================
   CONTACT
   ===================================================== */

.contact {
  padding-top: clamp(110px, 13vw, 180px);
  padding-bottom: clamp(110px, 13vw, 180px);

  background:
    radial-gradient(circle at center top,
      rgba(209, 176, 113, 0.17),
      transparent 32%),
    var(--background-soft);

  text-align: center;
}

.contact-inner {
  max-width: 1120px;
  margin: auto;
}

.contact-brand {
  margin-bottom: 20px;

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

.contact-logo {
  width: 90px;
  height: 70px;
  margin-bottom: 25px;

  object-fit: contain;
}

.contact h2 {
  max-width: 850px;
  margin: auto;
}

.contact-description {
  max-width: 620px;
  margin: 28px auto 50px;

  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

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

.contact-box a {
  position: relative;

  min-height: 145px;
  padding: 30px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

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

  text-align: left;
  text-decoration: none;

  overflow: hidden;

  transition:
    background var(--transition),
    color var(--transition);
}

.contact-box a:last-child {
  border-right: 0;
}

.contact-box a::before {
  content: "";

  position: absolute;
  inset: auto 0 0 0;

  height: 0;

  background: var(--gold);

  transition: height var(--transition);
}

.contact-box a:hover::before {
  height: 100%;
}

.contact-type,
.contact-value,
.contact-arrow {
  position: relative;
  z-index: 2;
}

.contact-type {
  margin-bottom: 13px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;

  transition: color var(--transition);
}

.contact-value {
  max-width: 100%;

  font-family: "Oswald", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  overflow-wrap: anywhere;
}

.contact-arrow {
  position: absolute;
  top: 25px;
  right: 25px;

  color: var(--gold);
  font-size: 20px;

  transition:
    color var(--transition),
    transform var(--transition);
}

.contact-box a:hover {
  color: var(--text-dark);
}

.contact-box a:hover .contact-type,
.contact-box a:hover .contact-arrow {
  color: var(--text-dark);
}

.contact-box a:hover .contact-arrow {
  transform: translate(4px, -4px);
}


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

footer {
  padding: 50px var(--page-padding) 30px;

  background: #070805;
  border-top: 1px solid rgba(209, 176, 113, 0.12);
}

.footer-top {
  padding-bottom: 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;

  text-decoration: none;
}

.footer-logo {
  width: 70px;
  height: 54px;
  object-fit: contain;
}

.footer-brand span {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #9e978b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;

  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 25px;

  display: flex;
  justify-content: space-between;
  gap: 25px;

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

  color: #777167;
  font-size: 11px;
  letter-spacing: 0.5px;
}


/* =====================================================
   SCROLL REVEAL
   ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(34px);

  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.products .card:nth-child(2),
.meaning-grid .meaning-card:nth-child(2) {
  transition-delay: 0.08s;
}

.products .card:nth-child(3),
.meaning-grid .meaning-card:nth-child(3) {
  transition-delay: 0.16s;
}

.products .card:nth-child(4),
.meaning-grid .meaning-card:nth-child(4) {
  transition-delay: 0.24s;
}

.meaning-grid .meaning-card:nth-child(5) {
  transition-delay: 0.32s;
}


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

@media (max-width: 1100px) {

  :root {
    --page-padding: 5vw;
  }

  .hero {
    grid-template-columns: 48% 52%;
  }

  .hero h1 {
    font-size: clamp(5.5rem, 12vw, 8rem);
  }

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

  .meaning-card:nth-child(n) {
    grid-column: auto;
  }

  .meaning-card:last-child {
    grid-column: 1 / -1;
    min-height: 300px;
  }

}


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

@media (max-width: 850px) {

  :root {
    --header-height: 82px;
    --page-padding: 6vw;
  }

  .header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo img {
    width: 78px;
    height: 52px;
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: 600px;
    padding:
      100px var(--page-padding) 80px;

    align-items: center;

    text-align: center;
  }

  .hero-watermark {
    top: 50%;
    left: 50%;
    width: 470px;
    transform: translate(-50%, -50%);
  }

  .hero h1 {
    font-size: clamp(6rem, 22vw, 10rem);
  }

  .hero h1::after {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-image {
    min-height: 590px;
  }

  .hero-image>img {
    min-height: 590px;
    object-position: center top;
  }

  .hero-image-overlay {
    background:
      linear-gradient(to bottom,
        var(--background) 0%,
        transparent 22%,
        transparent 70%,
        var(--background) 100%);
  }

  .scroll-indicator {
    display: none;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .meaning-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-box a {
    min-height: 125px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .contact-box a:last-child {
    border-bottom: 0;
  }

}


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

@media (max-width: 650px) {

  :root {
    --header-height: 122px;
    --page-padding: 5.5vw;
  }

  section {
    scroll-margin-top: 118px;
  }

  .header {
    min-height: var(--header-height);
    padding: 12px var(--page-padding);

    flex-direction: column;
    justify-content: center;
    gap: 10px;

    background: rgba(9, 10, 7, 0.94);
  }

  .header.scrolled {
    min-height: 112px;
  }

  .logo img {
    width: 75px;
    height: 47px;
  }

  nav {
    width: 100%;

    justify-content: center;
    gap: 7px;
  }

  nav a {
    padding: 8px 12px;

    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(209, 176, 113, 0.19);
    border-radius: 100px;

    font-size: 9px;
    letter-spacing: 1px;
  }

  nav a::after {
    display: none;
  }

  nav a.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text-dark);
  }

  .hero {
    padding-top: var(--header-height);
  }

  .hero-content {
    min-height: 535px;
    padding: 75px var(--page-padding) 58px;
  }

  .hero-watermark {
    width: 370px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .hero h1 {
    margin: 17px 0 22px;

    font-size: clamp(5.2rem, 26vw, 7.2rem);
    letter-spacing: -2px;
  }

  .hero h1::after {
    width: 55px;
    margin-top: 22px;
  }

  .hero-text {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .hero-buttons {
    width: 100%;
    justify-content: center;
  }

  .btn {
    min-height: 48px;
    padding: 13px 21px;
    font-size: 9px;
  }

  .hero-image {
    min-height: 440px;
    padding: 0 var(--page-padding) 34px;
  }

  .hero-image>img {
    min-height: 440px;
    border-radius: 25px;
    object-position: center top;
  }

  .hero-image-overlay {
    right: var(--page-padding);
    bottom: 34px;
    left: var(--page-padding);

    border-radius: 25px;

    background:
      linear-gradient(to bottom,
        transparent 55%,
        rgba(9, 10, 7, 0.5) 100%);
  }

  .hero-badge {
    right: calc(var(--page-padding) + 15px);
    bottom: 50px;

    min-width: 145px;
    padding: 12px 15px;
  }

  .hero-badge span {
    font-size: 20px;
  }

  .hero-badge p {
    font-size: 9px;
  }

  .collection,
  .meaning,
  .contact {
    padding:
      85px var(--page-padding);
  }

  .section-heading {
    margin-bottom: 38px;
    gap: 25px;
  }

  .section-title-row img {
    width: 48px;
    height: 38px;
  }

  .section-title-row p {
    font-size: 9px;
    letter-spacing: 2.2px;
  }

  .section-heading-text h2,
  .meaning-top h2,
  .contact h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
    letter-spacing: -1.5px;
  }

  .section-heading-text>p,
  .meaning-intro,
  .contact-description {
    font-size: 14px;
    line-height: 1.65;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card {
    padding: 11px;
    border-radius: 22px;
  }

  .card:hover {
    transform: none;
  }

  .shirt-switch {
    border-radius: 16px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .view-label {
    right: 11px;
    bottom: 11px;
    padding: 8px 11px;
    font-size: 8px;
  }

  .card-info {
    min-height: 100px;
    padding: 19px 5px 7px;

    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .card-info h3 {
    font-size: 1.75rem;
  }

  .product-meaning {
    padding: 7px 10px;
    font-size: 8px;
  }

  .brand-statement {
    padding: 110px var(--page-padding);
  }

  .statement-small {
    margin-bottom: 23px;
    font-size: 8px;
    letter-spacing: 3px;
  }

  .brand-statement h2 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
    letter-spacing: -1.7px;
  }

  .meaning-top {
    margin-bottom: 38px;
  }

  .meaning-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .meaning-card,
  .meaning-card:last-child {
    grid-column: auto;
    min-height: 330px;
    padding: 24px;
    border-radius: 20px;
  }

  .meaning-card:hover {
    transform: none;
  }

  .meaning-card h3 {
    font-size: 2.25rem;
  }

  .contact-logo {
    width: 76px;
    height: 58px;
  }

  .contact-description {
    margin: 23px auto 38px;
  }

  .contact-box a {
    min-height: 115px;
    padding: 24px 20px;
  }

  .contact-value {
    padding-right: 35px;
    font-size: 1.3rem;
  }

  .contact-arrow {
    top: 21px;
    right: 20px;
  }

  footer {
    padding: 40px var(--page-padding) 25px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 15px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .reveal {
    transform: translateY(24px);
  }

  .products .card,
  .meaning-grid .meaning-card {
    transition-delay: 0s !important;
  }

}


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

@media (max-width: 380px) {

  nav a {
    padding: 7px 9px;
    font-size: 8px;
  }

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

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

  .btn {
    width: 100%;
  }

  .hero-image,
  .hero-image>img {
    min-height: 395px;
  }

}


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

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

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}