:root {
  --ink: #07100d;
  --ink-2: #101916;
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.74);
  --muted: rgba(255, 255, 255, 0.52);
  --glass: rgba(255, 255, 255, 0.14);
  --glass-strong: rgba(255, 255, 255, 0.22);
  --glass-line: rgba(255, 255, 255, 0.34);
  --sage: #9fab8f;
  --olive: #4e5a42;
  --champagne: #d8caa8;
  --ice: #cfe6ee;
  --blue: #5d7280;
  --accent: #f1eee3;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  --wide: "Arial Black", "Impact", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 10%, rgba(207, 230, 238, 0.16), transparent 32vw),
    linear-gradient(180deg, #07100d 0%, #151c18 48%, #eef1ea 100%);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 78%);
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 202, 168, 0.28), transparent 34%),
    #07100d;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__halo {
  position: absolute;
  width: 38vmin;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  animation: spin 2400ms linear infinite;
}

.loader__halo::before,
.loader__halo::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(207, 230, 238, 0.18);
  border-radius: 50%;
  transform: rotate(40deg) scaleX(1.45);
}

.loader__halo::after {
  transform: rotate(-42deg) scaleX(1.45);
}

.loader__brand {
  position: relative;
  font-family: var(--wide);
  font-size: clamp(46px, 11vw, 138px);
  letter-spacing: 0.08em;
}

.loader__bar {
  position: absolute;
  left: 50%;
  bottom: 13vh;
  width: min(520px, 72vw);
  height: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.18);
}

.loader__bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--champagne), var(--ice), var(--white));
}

.loader__count {
  position: absolute;
  right: 8vw;
  bottom: 10.5vh;
  color: var(--soft);
  font-family: var(--wide);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: screen;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  width: 360px;
  height: 360px;
  pointer-events: none;
  opacity: 0.48;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(216, 202, 168, 0.24), rgba(207, 230, 238, 0.16) 38%, transparent 70%);
  filter: blur(18px);
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 58px);
  transition: background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 16, 13, 0.5);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  padding: 8px 12px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.24), 0 16px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--ink);
  border-radius: 50%;
  background: rgba(241, 238, 227, 0.92);
  font-family: var(--wide);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.brand__text {
  font-family: var(--wide);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.14em;
}

.main-nav,
.header-tools {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 22px);
}

.main-nav {
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
}

.main-nav a,
.glass-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.main-nav a {
  min-height: 34px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 220ms ease, background 220ms ease;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.glass-btn {
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.52),
    inset 0 -1px rgba(255, 255, 255, 0.08),
    0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(1.7);
  -webkit-backdrop-filter: blur(24px) saturate(1.7);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.glass-btn::before {
  content: "";
  position: absolute;
  inset: 1px 16% auto;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.46), transparent);
  pointer-events: none;
}

.glass-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.11)),
    rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.62),
    0 24px 58px rgba(0, 0, 0, 0.3);
}

.glass-btn--primary {
  color: #07100d;
  border-color: rgba(241, 238, 227, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(207, 230, 238, 0.66)),
    rgba(241, 238, 227, 0.78);
}

.glass-btn--small {
  min-height: 38px;
  padding-inline: 15px;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: auto;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: end;
  gap: clamp(22px, 4vw, 64px);
  padding: clamp(96px, 13vh, 120px) clamp(22px, 5vw, 72px) clamp(42px, 7vh, 54px);
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  transform: scale(1.04);
  animation: imageBreath 12s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 76% 58%, rgba(7, 16, 13, 0.03), rgba(7, 16, 13, 0.38) 34%, rgba(7, 16, 13, 0.72) 74%),
    linear-gradient(90deg, rgba(7, 16, 13, 0.86) 0%, rgba(7, 16, 13, 0.36) 48%, rgba(7, 16, 13, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 16, 13, 0.26) 0%, rgba(7, 16, 13, 0.14) 54%, rgba(7, 16, 13, 0.88) 100%);
}

.hero__rings {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  perspective: 900px;
}

.hero__rings span {
  position: absolute;
  left: 52%;
  top: 54%;
  width: min(56vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(241, 238, 227, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(74deg) rotateZ(0deg);
  animation: orbit 18s linear infinite;
}

.hero__rings span:nth-child(2) {
  width: min(72vw, 940px);
  border-color: rgba(207, 230, 238, 0.16);
  animation-duration: 26s;
  animation-direction: reverse;
}

.hero__rings span:nth-child(3) {
  width: min(40vw, 540px);
  border-color: rgba(159, 171, 143, 0.2);
  animation-duration: 14s;
}

.hero__content {
  width: min(760px, 100%);
  padding-bottom: 3vh;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ice);
  font-family: var(--wide);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  max-width: 820px;
  text-transform: uppercase;
  font-family: var(--wide);
  font-size: clamp(58px, 8.4vw, 132px);
  line-height: 0.86;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-title span {
  display: block;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.hero-title span:empty {
  display: none;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.5;
}

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

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: 1px;
  padding: 10px;
  border-radius: 30px;
}

.hero-panel div {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel strong {
  display: block;
  font-family: var(--wide);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-size: 13px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
  text-transform: uppercase;
  font-family: var(--wide);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.scroll-cue span {
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-cue span::after {
  content: "";
  display: block;
  width: 100%;
  height: 18px;
  background: var(--white);
  animation: scrollPulse 1450ms ease-in-out infinite;
}

.scroll-story {
  position: relative;
  height: 260vh;
  background:
    radial-gradient(circle at 18% 24%, rgba(216, 202, 168, 0.16), transparent 32vw),
    linear-gradient(180deg, #07100d 0%, #1d241f 55%, #0f1714 100%);
}

.story-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  padding: 110px clamp(22px, 5vw, 72px);
  overflow: hidden;
}

.story-copy {
  position: relative;
  z-index: 2;
}

.story-copy h2,
.section-heading h2,
.atelier-copy h2,
.contact-inner h2 {
  margin: 0;
  max-width: 720px;
  font-family: var(--wide);
  font-size: clamp(42px, 6vw, 94px);
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.story-copy p:not(.eyebrow),
.atelier-copy p,
.contact-inner p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.fabric-scene {
  position: relative;
  min-height: clamp(460px, 48vw, 620px);
  perspective: 1200px;
}

.orbital {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(207, 230, 238, 0.18);
  border-radius: 50%;
  transform: rotateX(68deg);
}

.orbital--two {
  inset: 18% 5%;
  border-color: rgba(216, 202, 168, 0.2);
  transform: rotateX(70deg) rotateZ(42deg);
}

.fabric-stack {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, 72vw);
  height: min(430px, 48vw);
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-22deg);
  transition: transform 100ms linear;
}

.fabric-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.2) 0 2px, transparent 2px 12px),
    linear-gradient(120deg, #1d2a22, #4e5a42 50%, #c8c1aa);
  box-shadow: 0 46px 100px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.28);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
}

.fabric-layer span {
  color: rgba(255,255,255,.86);
  font-family: var(--wide);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.fabric-layer--front {
  transform: translateZ(94px);
}

.fabric-layer--mid {
  opacity: 0.72;
  transform: translateZ(20px) translateX(-36px) translateY(34px);
  filter: hue-rotate(28deg);
}

.fabric-layer--back {
  opacity: 0.5;
  transform: translateZ(-58px) translateX(-72px) translateY(72px);
  filter: saturate(0.76) brightness(1.18);
}

.section {
  position: relative;
  z-index: 5;
  padding: clamp(92px, 12vw, 160px) clamp(22px, 5vw, 72px);
}

.products-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef1ea 0%, #dce3d8 100%);
}

.products-section .eyebrow {
  color: #506158;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.product-card {
  position: relative;
  min-height: clamp(460px, 38vw, 540px);
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
  transform-style: preserve-3d;
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

.product-grid:has(.product-card:hover) .product-card:not(:hover) {
  filter: saturate(0.65) brightness(0.72) blur(1px);
}

.product-card:hover {
  z-index: 3;
  box-shadow: 0 42px 120px rgba(30, 38, 33, 0.38), inset 0 1px rgba(255,255,255,.34);
}

.product-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateZ(-1px) scale(1.05);
  transition: transform 360ms ease;
}

.product-card:hover .product-card__media {
  transform: translateZ(24px) scale(1.12);
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 13, 0.04), rgba(7, 16, 13, 0.76)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 34%);
}

.product-card__media--a {
  background-image: url("assets/product-outdoor-functional-woven.png");
  background-position: 58% 48%;
}

.product-card__media--b {
  background-image: url("assets/product-fashion-woven-clothing.png");
  background-position: 52% 22%;
}

.product-card__media--c {
  background-image: url("assets/product-down-padded-jacket.png");
  background-position: 50% 20%;
}

.product-card__media--d {
  background-image: url("assets/product-finishing-development.png");
  background-position: 50% 48%;
}

.product-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(22px, 2.4vw, 28px);
  transform: translateZ(52px);
}

.product-card__body span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  font-family: var(--wide);
  font-size: 11px;
}

.product-card h3 {
  margin: 0;
  font-family: var(--wide);
  font-size: clamp(25px, 2.7vw, 42px);
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-card p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.atelier-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 32%, rgba(207, 230, 238, 0.16), transparent 32vw),
    linear-gradient(180deg, #101916, #07100d);
}

.atelier-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 44px;
  box-shadow: 0 34px 110px rgba(0,0,0,.44);
}

.atelier-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 50% 58%;
  transform: scale(1.02);
}

.atelier-copy p {
  margin-top: 24px;
}

.atelier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.atelier-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}

.contact-section {
  position: relative;
  z-index: 5;
  min-height: 96svh;
  display: grid;
  place-items: center;
  padding: clamp(82px, 10vw, 150px) clamp(22px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,16,13,.78), rgba(7,16,13,.5)),
    url("assets/contact-fabric-brief-background.png") center / cover fixed;
}

.contact-inner {
  width: min(980px, 100%);
  padding: clamp(30px, 5vw, 68px);
  border-radius: 42px;
}

.contact-inner p:not(.eyebrow) {
  margin: 22px 0 32px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.78,.22,1);
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes imageBreath {
  from { transform: scale(1.04) translate3d(-0.7%, -0.5%, 0); }
  to { transform: scale(1.09) translate3d(0.7%, 0.5%, 0); }
}

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotateX(74deg) rotateZ(360deg); }
}

@keyframes scrollPulse {
  from { transform: translateY(-18px); }
  to { transform: translateY(52px); }
}

@media (max-width: 1240px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-panel {
    display: none;
  }

  .story-sticky,
  .atelier-section {
    grid-template-columns: 1fr;
  }

  .story-sticky {
    min-height: 100svh;
    grid-template-rows: auto minmax(300px, 1fr);
    align-content: center;
    padding-block: clamp(78px, 10vh, 104px) clamp(42px, 7vh, 70px);
    overflow: hidden;
  }

  .fabric-scene {
    min-height: clamp(300px, 42vh, 440px);
  }

  .fabric-stack {
    width: min(640px, 72vw);
    height: min(430px, 48vw);
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 72px;
    padding-inline: 14px;
  }

  .brand {
    min-width: auto;
    padding: 7px 10px;
  }

  .brand__text {
    font-size: 14px;
  }

  .header-tools .glass-btn:last-child {
    display: none;
  }

  .hero {
    min-height: 100svh;
    height: auto;
    padding: 86px 20px 32px;
    align-items: end;
  }

  .hero__image img {
    object-position: 60% 48%;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(7,16,13,.08) 0%, rgba(7,16,13,.32) 38%, rgba(7,16,13,.88) 100%),
      linear-gradient(90deg, rgba(7,16,13,.72), rgba(7,16,13,.08));
  }

  .hero-title {
    font-size: clamp(44px, 14vw, 68px);
    line-height: 0.9;
  }

  .hero-copy {
    max-width: 94%;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.48;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .glass-btn {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .scroll-cue {
    display: none;
  }

  .story-sticky {
    grid-template-rows: auto minmax(260px, 1fr);
    padding: 82px 20px 42px;
    gap: 22px;
  }

  .fabric-scene {
    min-height: 280px;
  }

  .fabric-stack {
    width: min(82vw, 420px);
    height: min(56vw, 290px);
  }

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

  .product-card {
    min-height: clamp(440px, 122vw, 540px);
    border-radius: 28px;
  }

  .product-card h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .product-card p {
    font-size: 14px;
  }

  .section-heading {
    display: block;
  }

  .atelier-visual {
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: 32px;
  }

  .contact-inner {
    border-radius: 30px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-section {
    background-attachment: scroll;
  }
}

@media (max-height: 720px) and (min-width: 701px) {
  .hero-title {
    font-size: clamp(52px, 7.2vw, 104px);
  }

  .hero-copy {
    margin-top: 20px;
  }

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

  .hero-panel div {
    padding: 16px 18px;
  }

  .hero-panel strong {
    font-size: clamp(26px, 3vw, 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
