:root {
  --color-charcoal: #151515;
  --color-ink: #252525;
  --color-muted: #6f6f6f;
  --color-line: #e8e2dc;
  --color-soft: #f7f4f0;
  --color-white: #ffffff;
  --color-accent: #ff0012;
  --color-accent-dark: #15497b;
  --color-brand-blue: #15497b;
  --color-brand-red: #ff0012;
  --shadow-soft: 0 24px 70px rgba(17, 17, 17, 0.12);
  --shadow-card: 0 18px 50px rgba(21, 21, 21, 0.1);
  --radius-lg: 24px;
  --radius-md: 18px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.section-padding {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.section-kicker {
  margin-bottom: 0.8rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--color-charcoal);
  line-height: 1.02;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

h1 {
  max-width: 780px;
  color: var(--color-white);
  font-size: clamp(3rem, 5.8vw, 5.9rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.1rem);
}

h3 {
  font-size: clamp(1.8rem, 3.4vw, 3.5rem);
  font-weight: 800;
}

.section-copy {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-accent {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 16px 36px rgba(255, 0, 18, 0.24);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  border-color: var(--color-accent-dark);
  background: var(--color-accent-dark);
  color: var(--color-white);
}

.btn-dark {
  border-color: var(--color-charcoal);
  background: var(--color-charcoal);
  color: var(--color-white);
}

.premium-navbar {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition: padding var(--transition);
}

.premium-navbar .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 5vw, 4rem);
  border: 0;
  border-radius: 0;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.premium-navbar.scrolled {
  padding: 0.55rem 0;
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.08);
}

.premium-navbar.scrolled .container {
  background: transparent;
  box-shadow: none;
}

.navbar-brand,
.premium-navbar .nav-link {
  color: var(--color-charcoal);
}

.navbar-brand:hover,
.navbar-brand:focus,
.premium-navbar .nav-link:hover,
.premium-navbar .nav-link:focus {
  color: var(--color-accent);
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-brand-blue),
    var(--color-brand-red)
  );
  color: var(--color-white);
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.brand-copy small {
  font-size: 0.68rem;
  opacity: 0.78;
}

.premium-navbar .nav-link {
  padding-inline: 1rem !important;
  font-size: 0.92rem;
  font-weight: 800;
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: none;
}

.premium-navbar.scrolled .navbar-toggler-icon {
  filter: none;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-white), var(--color-soft));
  --hero-pointer-x: 50%;
  --hero-pointer-y: 46%;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at var(--hero-pointer-x) var(--hero-pointer-y),
      rgba(255, 0, 18, 0.16),
      transparent 24rem
    ),
    radial-gradient(
      circle at 12% 78%,
      rgba(21, 73, 123, 0.1),
      transparent 18rem
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 255, 255, 0.88),
      transparent 16rem
    );
  opacity: 0.72;
  transition: opacity var(--transition);
  content: "";
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(247, 244, 240, 0.9)
    ),
    radial-gradient(circle at 78% 48%, rgba(255, 0, 18, 0.11), transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(21, 21, 21, 0.08), transparent 28%);
  background-position: center;
  background-size: cover;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(21, 21, 21, 0.07) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 72%);
  opacity: 0.28;
}

.hero-bg,
.hero-grid,
.hero-section::after {
  pointer-events: none;
}

.hero-section::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72));
  content: "";
}

.hero-container {
  display: flex;
  min-height: inherit;
  align-items: center;
}

.hero-layout {
  width: 100%;
  padding-top: 3.5rem;
}

.hero-content {
  width: min(660px, 100%);
  transform: translate3d(
    calc((var(--hero-move-x, 0) * -1px)),
    calc((var(--hero-move-y, 0) * -1px)),
    0
  );
  transition: transform 0.28s ease-out;
}

.hero-kicker {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.48rem 0.82rem;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-charcoal);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 580px;
  margin: 0.85rem 0 1.15rem;
  color: var(--color-muted);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

.hero-section h1 {
  color: var(--color-charcoal);
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.08em 0.16em;
  align-items: baseline;
  color: transparent;
  background: linear-gradient(
    110deg,
    var(--color-charcoal) 0%,
    var(--color-charcoal) 38%,
    var(--color-brand-blue) 52%,
    var(--color-accent) 66%,
    var(--color-charcoal) 82%
  );
  background-size: 260% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: titleGradient 8s ease-in-out infinite;
  cursor: default;
}

.hero-title .title-word {
  display: inline-flex;
  white-space: nowrap;
}

.hero-title span span {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(0.34em) rotateX(18deg);
  animation: titleCharacterReveal 0.72s cubic-bezier(0.18, 0.84, 0.28, 1)
    forwards;
  animation-delay: calc(0.08s + (var(--char-index) * 0.035s));
  transition:
    color var(--transition),
    text-shadow var(--transition),
    transform var(--transition);
}

.hero-title:hover span span,
.hero-title:focus-visible span span {
  transform: translateY(-0.03em);
  text-shadow: 0 16px 36px rgba(21, 73, 123, 0.18);
}

.hero-section .btn-outline-light {
  color: var(--color-charcoal);
  border-color: rgba(21, 21, 21, 0.28);
}

.hero-section .btn-outline-light:hover,
.hero-section .btn-outline-light:focus-visible {
  color: var(--color-white);
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.hero-actions .btn {
  padding: 0.62rem 1.02rem;
  font-size: 0.95rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.trust-row span {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-row i {
  color: var(--color-accent);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1rem;
}

.hero-metrics span {
  display: grid;
  min-width: 128px;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-muted);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-metrics strong {
  color: var(--color-charcoal);
  font-size: 1rem;
  line-height: 1;
}

.hero-product-stage {
  position: relative;
  display: grid;
  min-height: clamp(380px, 42vw, 620px);
  place-items: center;
  isolation: isolate;
  justify-items: end;
  overflow: visible;
}

.hero-product-stage::before {
  position: absolute;
  right: 0;
  width: min(92%, 680px);
  aspect-ratio: 1.8;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 34%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(18px);
  content: "";
  z-index: -1;
}

.hero-product-stage::after {
  position: absolute;
  right: 4%;
  bottom: 18%;
  width: min(82%, 620px);
  height: clamp(32px, 4vw, 54px);
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(21, 21, 21, 0.2) 0%,
    rgba(21, 21, 21, 0.12) 42%,
    rgba(21, 21, 21, 0) 72%
  );
  filter: blur(14px);
  content: "";
  z-index: -1;
}

.product-slide {
  position: absolute;
  width: min(110%, 720px);
  max-height: min(76vh, 690px);
  object-fit: contain;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  filter: drop-shadow(0 28px 34px rgba(21, 21, 21, 0.16));
  pointer-events: none;
}

.product-showcase-image {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(100%, 710px);
  height: auto;
  max-width: 100%;
  max-height: min(74vh, 640px);
  object-fit: contain;
  opacity: 0;
  transform: translate3d(20px, -50%, 0);
  filter: drop-shadow(0 30px 30px rgba(21, 21, 21, 0.24));
  pointer-events: none;
  will-change: transform, opacity;
}

.product-showcase-image--white-socks {
  animation: productShowcaseWhiteSocks 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.product-showcase-image--three-socks {
  animation: productShowcaseThreeSocks 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.product-showcase-image--handkerchiefs {
  animation: productShowcaseHandkerchiefs 12s cubic-bezier(0.4, 0, 0.2, 1)
    infinite;
}

.product-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: productFloat 5s ease-in-out infinite;
}

@keyframes productFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes productShowcaseWhiteSocks {
  0%,
  25% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }

  33.333%,
  91.667% {
    opacity: 0;
    transform: translate3d(-20px, -50%, 0);
  }

  91.668% {
    opacity: 0;
    transform: translate3d(20px, -50%, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes productShowcaseThreeSocks {
  0%,
  25% {
    opacity: 0;
    transform: translate3d(20px, -50%, 0);
  }

  33.333%,
  58.333% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }

  66.667%,
  100% {
    opacity: 0;
    transform: translate3d(-20px, -50%, 0);
  }
}

@keyframes productShowcaseHandkerchiefs {
  0%,
  58.333% {
    opacity: 0;
    transform: translate3d(20px, -50%, 0);
  }

  66.667%,
  91.667% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-20px, -50%, 0);
  }
}

.hero-product-frame,
.about-image,
.story-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-product-frame {
  position: relative;
  max-width: 540px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-product-frame img,
.about-image img,
.story-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.image-hover:hover img {
  transform: scale(1.055);
}

.about-section {
  background: linear-gradient(180deg, var(--color-white), var(--color-soft));
  padding: clamp(3.4rem, 6vw, 5rem) 0;
}

.about-image {
  max-width: 500px;
  margin-inline: auto;
  background: var(--color-soft);
}

.about-product-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(330px, 34vw, 460px);
  overflow: hidden;
  isolation: isolate;
}

.about-product-showcase::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 73, 123, 0.16),
    rgba(255, 0, 18, 0.08) 42%,
    transparent 70%
  );
  filter: blur(10px);
}

.about-product-showcase::after {
  content: "";
  position: absolute;
  bottom: 15%;
  z-index: -1;
  width: min(58%, 300px);
  height: 28px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.2);
  filter: blur(18px);
}

.about-section h2 {
  max-width: 620px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.7vw, 3.65rem);
}

.about-section .section-copy {
  max-width: 620px;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.brand-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.82rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-charcoal);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.brand-list a:hover,
.brand-list a:focus-visible {
  color: var(--color-accent);
  border-color: rgba(255, 0, 18, 0.28);
  transform: translateY(-2px);
}

.catalog-section {
  background: var(--color-white);
  padding: clamp(3rem, 5vw, 4.4rem) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 1.05rem;
}

.catalog-section h2 {
  font-size: clamp(2rem, 3.55vw, 3.6rem);
}

.catalog-section .section-copy {
  max-width: 640px;
  margin: 0.65rem auto 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.filter-tab {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  background: var(--color-white);
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.filter-tab:hover,
.filter-tab:focus-visible,
.filter-tab.active {
  border-color: var(--color-charcoal);
  background: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.collection-showcases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.collection-story {
  --brand-accent: var(--color-brand-blue);
  --brand-accent-soft: rgba(21, 73, 123, 0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: start;
  min-height: 100%;
  height: 100%;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, var(--brand-accent-soft), transparent 34%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(251, 248, 245, 0.96)
    ),
    var(--color-white);
  box-shadow: 0 20px 60px rgba(21, 21, 21, 0.09);
  transition:
    opacity var(--transition),
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.collection-story[data-category="microfresh"] {
  --brand-accent: #15497b;
  --brand-accent-soft: rgba(21, 73, 123, 0.1);
}

.collection-story[data-category="christian-oliver"] {
  --brand-accent: #151515;
  --brand-accent-soft: rgba(21, 21, 21, 0.08);
}

.collection-story[data-category="sharmane"] {
  --brand-accent: #ff0012;
  --brand-accent-soft: rgba(255, 0, 18, 0.08);
}

.collection-story:hover {
  border-color: color-mix(in srgb, var(--brand-accent) 24%, transparent);
  transform: translateY(-7px);
  box-shadow: 0 30px 80px rgba(21, 21, 21, 0.14);
}

.collection-story.reverse .story-image {
  order: 0;
}

.story-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.15rem 0.15rem 0;
}

.story-content p:not(.section-kicker) {
  max-width: 560px;
  margin: 0.5rem 0 0.85rem;
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.story-content h3 {
  margin-bottom: 0;
  color: var(--color-charcoal);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0;
}

.story-content h3::after {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: var(--brand-accent);
  content: "";
}

.brand-fit {
  display: inline-flex;
  align-items: center;
  margin: 0.62rem 0 0 !important;
  padding: 0.34rem 0.56rem;
  border: 1px solid color-mix(in srgb, var(--brand-accent) 16%, transparent);
  border-radius: 999px;
  background: var(--brand-accent-soft);
  color: var(--color-charcoal) !important;
  font-size: 0.72rem !important;
  font-weight: 900;
  line-height: 1.15 !important;
}

.story-content .section-kicker {
  display: none;
}

.story-content .btn {
  margin-top: auto;
  padding: 0.58rem 0.95rem;
  font-size: 0.86rem;
}

.story-number {
  display: none;
  margin-bottom: 0;
  color: rgba(21, 21, 21, 0.14);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.8;
}

.brand-product-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(170px, 16vw, 220px);
  isolation: isolate;
}

.brand-product-image::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(72%, 230px);
  height: 22px;
  align-self: end;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.18);
  filter: blur(16px);
}

.slider-viewport {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: clamp(150px, 15vw, 205px);
}

.about-product-showcase .slider-viewport {
  height: clamp(300px, 30vw, 420px);
}

.slider-image {
  position: absolute;
  width: min(82%, 250px);
  height: 100%;
  max-width: none;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 22px 24px rgba(21, 21, 21, 0.2));
  transform: translateY(8px) scale(0.96);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
  will-change: opacity, transform;
}

.slider-image.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: productFloat 4.8s ease-in-out infinite;
}

.about-product-showcase .slider-image {
  width: min(88%, 390px);
  filter: drop-shadow(0 30px 34px rgba(21, 21, 21, 0.24));
}

.slider-indicators {
  display: flex;
  gap: 0.38rem;
  justify-content: center;
  margin-top: 0.4rem;
}

.slider-indicators span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.22);
  transition:
    width var(--transition),
    background var(--transition);
}

.slider-indicators span.active {
  width: 18px;
  border-radius: 999px;
  background: var(--color-accent);
}

@keyframes productFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

.brand-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  width: 100%;
  padding: 0;
  margin: 0 0 0.95rem;
  list-style: none;
}

.brand-features li {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(21, 73, 123, 0.12);
  border-radius: 999px;
  background: rgba(21, 73, 123, 0.05);
  color: var(--color-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-features li::before {
  content: "\2713";
  color: var(--color-accent);
  font-weight: 900;
}

.brand-categories {
  width: 100%;
  margin: 0 0 0.95rem;
}

.brand-categories h4 {
  margin: 0 0 0.5rem;
  color: var(--color-charcoal);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.category-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0.32rem 0.52rem;
  border: 1px solid color-mix(in srgb, var(--brand-accent) 16%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-ink);
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.1;
}

.marketplace-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.marketplace-links a {
  display: inline-flex;
  gap: 0.35rem;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.58rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-charcoal);
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.06);
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.marketplace-links a:hover,
.marketplace-links a:focus-visible {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

.collection-story.is-hidden {
  display: none;
}

.contact-section {
  background: linear-gradient(180deg, var(--color-soft), #ffffff);
  padding: clamp(2rem, 3.6vw, 3.15rem) 0;
}

.contact-section .container {
  max-width: 1280px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(580px, 1fr);
  max-width: 1220px;
  align-items: center;
  gap: clamp(1.35rem, 2.8vw, 2.8rem);
  margin-inline: auto;
  padding: clamp(1.25rem, 2.2vw, 1.85rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.contact-info {
  max-width: 500px;
  min-height: 100%;
  padding: clamp(1.1rem, 1.75vw, 1.45rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(21, 21, 21, 0.07);
}

.contact-info p:not(.section-kicker) {
  color: var(--color-muted);
  max-width: 430px;
  margin-bottom: 0.95rem;
  font-size: 0.95rem;
  line-height: 1.58;
}

.contact-section h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.75rem, 2.45vw, 2.45rem);
}

.contact-list {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.62rem;
  align-items: flex-start;
  color: var(--color-ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-list i {
  color: var(--color-accent);
  line-height: 1.45;
  font-size: 1rem;
  text-align: center;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition:
    color var(--transition),
    opacity var(--transition);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--color-accent);
  opacity: 0.86;
}

.contact-form {
  width: min(100%, 660px);
  justify-self: center;
  padding: clamp(1.05rem, 1.85vw, 1.35rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 16px 42px rgba(21, 21, 21, 0.07);
}

.contact-form-grid {
  --bs-gutter-x: 0.85rem;
  --bs-gutter-y: 0.72rem;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.form-status {
  display: none;
  margin-bottom: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  border: 1px solid rgba(21, 73, 123, 0.18);
  background: rgba(21, 73, 123, 0.08);
  color: var(--color-brand-blue);
}

.form-status.error {
  border: 1px solid rgba(255, 0, 18, 0.2);
  background: rgba(255, 0, 18, 0.08);
  color: #b0000d;
}

.form-label {
  color: var(--color-charcoal);
  margin-bottom: 0.26rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-control {
  min-height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #fbfaf8;
  box-shadow: none !important;
  font-size: 0.9rem;
}

.form-control:focus {
  border-color: var(--color-accent);
}

.contact-form .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

textarea.form-control {
  min-height: 96px;
}

.contact-form .btn {
  padding-block: 0.72rem;
  font-size: 0.95rem;
}

@keyframes titleCharacterReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotateX(0);
  }
}

@keyframes titleGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.footer {
  padding: 3.4rem 0 1.5rem;
  background: #111111;
  color: rgba(255, 255, 255, 0.72);
}

.footer strong,
.footer h3 {
  color: var(--color-white);
}

.footer h3 {
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
  transition: color var(--transition);
}

.footer a:hover,
.footer a:focus {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.14s;
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 78px;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-line);
  }

  .premium-navbar.scrolled .navbar-collapse,
  .premium-navbar.open .navbar-collapse {
    border-top-color: var(--color-line);
  }

  .premium-navbar.open .container {
    background: transparent;
    box-shadow: none;
  }

  .premium-navbar.open .navbar-brand,
  .premium-navbar.open .nav-link {
    color: var(--color-charcoal);
  }

  .premium-navbar.open .navbar-toggler-icon {
    filter: none;
  }

  .nav-cta {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero-content {
    padding-top: 0;
    transform: none;
  }

  .hero-section {
    min-height: auto;
    padding: 7.25rem 0 3rem;
  }

  .hero-container {
    min-height: 0;
  }

  .hero-layout {
    padding-top: 0;
  }

  .hero-content,
  .hero-copy {
    max-width: 720px;
  }

  .hero-product-stage {
    min-height: clamp(260px, 44vw, 390px);
    justify-items: center;
  }

  .product-showcase-image {
    width: min(88vw, 520px);
    height: auto;
    max-width: 100%;
    max-height: 360px;
  }

  .hero-product-frame {
    max-width: 440px;
    margin: 0;
  }

  .collection-showcases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-story,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-info p:not(.section-kicker),
  .contact-form {
    max-width: none;
    width: 100%;
  }

  .collection-story {
    min-height: auto;
  }

  .collection-story.reverse .story-image {
    order: 0;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 3rem 0;
  }

  .container {
    --bs-gutter-x: 1.4rem;
  }

  .premium-navbar {
    padding: 0.55rem 0;
  }

  .premium-navbar .container {
    padding-inline: 1rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy strong {
    max-width: 190px;
    font-size: 0.82rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
  }

  .section-kicker {
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
  }

  .section-copy {
    font-size: 0.94rem;
  }

  .hero-section {
    padding: 6.4rem 0 2.2rem;
  }

  .hero-section .row {
    align-content: center;
  }

  .hero-layout {
    padding-top: 0;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-copy {
    margin: 0.6rem 0 0.85rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    gap: 0.65rem !important;
  }

  .hero-actions .btn {
    padding-block: 0.5rem;
    font-size: 0.9rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero-metrics span {
    min-width: 0;
    padding: 0.52rem 0.45rem;
    font-size: 0.68rem;
  }

  .trust-row {
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .trust-row span {
    flex: 1 1 145px;
    justify-content: center;
    padding: 0.5rem 0.62rem;
    font-size: 0.78rem;
  }

  .hero-product-frame {
    max-width: min(180px, 56vw);
  }

  .hero-product-stage {
    min-height: 215px;
    justify-items: center;
  }

  .product-slide,
  .product-showcase-image {
    width: min(96vw, 390px);
    max-height: 230px;
  }

  .about-section {
    padding: 3.2rem 0;
  }

  .about-image {
    max-width: 320px;
  }

  .about-section h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .collection-showcases {
    grid-template-columns: 1fr;
  }

  .collection-story {
    min-height: auto;
    border-radius: 18px;
  }

  .brand-product-image img {
    height: 160px;
  }

  .story-content {
    padding: 0.75rem 0.35rem 0.15rem;
  }

  .story-content p:not(.section-kicker) {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
  }

  .contact-panel {
    gap: 1.2rem;
    padding: 0.78rem;
    border-radius: 18px;
  }

  .contact-section {
    padding: 1.55rem 0;
  }

  .contact-info {
    padding: 0.9rem;
  }

  .contact-info p:not(.section-kicker) {
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
  }

  .contact-section h2 {
    margin-bottom: 0.32rem;
  }

  .contact-list {
    gap: 0.5rem;
    margin-top: 0.7rem;
  }

  .contact-list li {
    gap: 0.65rem;
    font-size: 0.86rem;
  }

  .contact-form {
    padding: 0.82rem;
    border-radius: 18px;
  }

  .contact-form-grid {
    --bs-gutter-x: 0.55rem;
    --bs-gutter-y: 0.5rem;
  }

  .contact-form-grid > .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .form-label {
    font-size: 0.7rem;
  }

  .form-control {
    min-height: 36px;
    font-size: 0.84rem;
  }

  textarea.form-control {
    min-height: 66px;
  }

  .contact-form .btn {
    padding-block: 0.58rem;
    font-size: 0.9rem;
  }

  .footer {
    padding-top: 2.6rem;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    max-width: 145px;
  }

  .hero-section {
    padding: 5.9rem 0 1.6rem;
  }

  .hero-title {
    gap: 0.03em 0.12em;
  }

  .hero-copy {
    font-size: 0.86rem;
  }

  .hero-product-stage {
    min-height: 170px;
  }

  .product-showcase-image {
    width: min(88vw, 340px);
    max-height: 185px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics span {
    padding-inline: 0.35rem;
    font-size: 0.62rem;
  }

  .hero-metrics strong {
    font-size: 0.88rem;
  }

  .filter-tabs {
    justify-content: stretch;
  }

  .filter-tab {
    flex: 1 1 100%;
  }

  .brand-list a,
  .category-badges span {
    max-width: 100%;
  }

  .contact-list li {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .product-showcase-image {
    animation: none;
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    will-change: auto;
  }

  .product-showcase-image--white-socks {
    opacity: 1;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-content {
    transform: none !important;
  }

  .hero-title,
  .hero-title span span {
    animation: none !important;
  }

  .hero-title span span {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
