:root {
  --vh: 1vh;
  --bg: #f7e8b1;
  --bg-deep: #ead89d;
  --surface: rgba(255, 249, 232, 0.58);
  --surface-strong: rgba(255, 251, 240, 0.88);
  --ink: #000000;
  --muted: rgba(11, 61, 46, 0.76);
  --line: rgba(11, 61, 46, 0.12);
  --accent: #937181;
  --accent-soft: rgba(147, 113, 129, 0.22);
  --forest: #0b3d2e;
  --gold: #f7e8b1;
  --shadow: 0 24px 60px rgba(11, 61, 46, 0.15);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(147, 113, 129, 0.28), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(11, 61, 46, 0.18), transparent 18%),
    linear-gradient(180deg, #fcf6d9 0%, var(--bg) 40%, var(--bg-deep) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 61, 46, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 61, 46, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
  opacity: 0.45;
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 4px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--forest));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(247, 232, 177, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-lockup-mark {
  width: 62px;
  height: 34px;
  object-fit: contain;
}

.brand-lockup-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-lockup-copy strong,
.section-heading h2,
.hero h1,
.story-copy h2,
.newsletter h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

.brand-lockup-copy strong {
  font-size: 1.38rem;
  line-height: 1;
}

.brand-lockup-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav .menu {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
}

.site-nav .current-menu-item > a,
.site-nav .current_page_item > a,
.site-nav .current-menu-ancestor > a {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 240, 0.48);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--forest);
  transition: transform 220ms ease, opacity 220ms ease;
}

.header-cta,
.button,
.newsletter-form button {
  border-radius: 999px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.header-cta,
.button-primary,
.newsletter-form button {
  background: var(--forest);
  color: #fff7dc;
  box-shadow: 0 14px 24px rgba(11, 61, 46, 0.18);
}

.header-cta {
  padding: 12px 18px;
  font-size: 0.92rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-utility {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 999px;
  background: rgba(255, 251, 240, 0.54);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  min-height: 26px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(11, 61, 46, 0.12);
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 800;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 36px;
  padding: 84px 0 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  line-height: 0.92;
  max-width: 9ch;
}

.hero-text,
.story-copy p,
.collection-meta p,
.product-copy p,
.site-nav,
.journal-card span {
  color: var(--muted);
}

.hero-text {
  max-width: 36rem;
  margin: 22px 0 28px;
  font-size: 1.02rem;
  line-height: 1.8;
}

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

.button {
  padding: 14px 22px;
  border: 1px solid var(--line);
}

.button-secondary {
  background: rgba(255, 251, 240, 0.42);
  color: var(--forest);
}

.hero-signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 240, 0.42);
  color: var(--muted);
}

.hero-signature span {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-swatches,
.mini-swatches {
  display: flex;
  gap: 10px;
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.swatch-gold {
  background: var(--gold);
}

.swatch-mauve {
  background: var(--accent);
}

.swatch-forest {
  background: var(--forest);
}

.swatch-black {
  background: #000000;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.visual-stack {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 0.92fr;
  gap: 18px;
}

.look-card,
.collection-card,
.product-card,
.story-panel,
.journal-card,
.newsletter,
.stats-strip {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.look-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: #fffaf0;
}

.look-card::before,
.product-visual,
.collection-art {
  content: "";
  position: absolute;
  inset: 0;
}

.look-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(147, 113, 129, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(255, 251, 240, 0.94), rgba(247, 232, 177, 0.85));
}

.featured-logo {
  position: relative;
  z-index: 1;
  width: min(78%, 420px);
  border-radius: 28px;
  box-shadow: 0 28px 54px rgba(11, 61, 46, 0.14);
}

.card-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 252, 245, 0.86);
  color: var(--forest);
}

.card-note span,
.look-card-palette span,
.look-card-mark span {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
}

.card-note strong,
.look-card-palette strong,
.look-card-mark strong {
  display: block;
  margin-top: 10px;
  font-size: 1.28rem;
  line-height: 1.14;
}

.look-card-mark::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(150deg, rgba(11, 61, 46, 0.96), rgba(0, 0, 0, 0.92));
}

.look-card-mark > * {
  position: relative;
  z-index: 1;
}

.mark-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 78px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: rgba(247, 232, 177, 0.96);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.mark-chip img {
  width: 82%;
  height: auto;
  object-fit: contain;
}

.look-card-palette::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(150deg, rgba(147, 113, 129, 0.95), rgba(0, 0, 0, 0.86));
}

.look-card-palette > * {
  position: relative;
  z-index: 1;
}

.mini-swatches {
  margin: 18px 0 22px;
}

.look-card-tall {
  grid-row: 1 / span 2;
  min-height: 620px;
}

.look-card-square {
  min-height: 300px;
}

.look-card-wide {
  min-height: 300px;
}

.floating-note {
  position: absolute;
  right: -12px;
  bottom: 36px;
  max-width: 230px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 251, 240, 0.84);
  box-shadow: var(--shadow);
  color: var(--forest);
  font-size: 0.92rem;
  line-height: 1.5;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
  padding: 22px 28px;
  border-radius: 28px;
}

.stats-strip strong {
  display: block;
  color: var(--forest);
  font-size: 2rem;
  margin-bottom: 6px;
}

.stats-strip span {
  color: var(--muted);
}

.hero {
  --stage-progress: 0;
  --hero-swap-distance: clamp(220px, 26vw, 420px);
  position: relative;
  display: block;
  min-height: calc(var(--vh, 1vh) * 182);
  padding: 48px 0 36px;
}

.hero-stage-wrap {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 138);
}

.hero-browser {
  position: sticky;
  top: 108px;
  overflow: hidden;
  min-height: calc(var(--vh, 1vh) * 76);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 36px;
  background: rgba(255, 248, 230, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  isolation: isolate;
}

.hero-browser-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  background: rgba(255, 251, 240, 0.8);
}

.hero-browser-dots {
  display: flex;
  gap: 8px;
}

.hero-browser-dots span,
.hero-browser-plus {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-browser-dots span:nth-child(1) {
  background: #d88f7e;
}

.hero-browser-dots span:nth-child(2) {
  background: #d2bb63;
}

.hero-browser-dots span:nth-child(3) {
  background: #6fa47b;
}

.hero-browser-address {
  justify-self: center;
  width: min(100%, 420px);
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11, 61, 46, 0.08), rgba(11, 61, 46, 0.14));
}

.hero-browser-plus {
  justify-self: end;
  border: 1px solid rgba(11, 61, 46, 0.12);
  background:
    linear-gradient(var(--muted), var(--muted)) center / 8px 1.5px no-repeat,
    linear-gradient(var(--muted), var(--muted)) center / 1.5px 8px no-repeat,
    rgba(255, 251, 240, 0.72);
}

.hero-window {
  position: relative;
  min-height: 720px;
  padding: 30px 30px 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.5), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(147, 113, 129, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(252, 246, 217, 0.98), rgba(247, 232, 177, 0.92));
}

.hero-brand-ghost,
.hero-ribbons,
.hero-copy,
.hero-model-stage,
.hero-product-rail {
  position: absolute;
}

.hero-brand-ghost {
  top: 26px;
  left: 28px;
  width: min(36vw, 360px);
  opacity: calc(0.12 + (1 - var(--stage-progress)) * 0.08);
  z-index: 0;
}

.hero-brand-ghost-logo {
  width: 100%;
  height: auto;
}

.hero-ribbons {
  inset: 2% -6% 18% 34%;
  opacity: clamp(0, calc((var(--stage-progress) - 0.12) * 1.5), 0.78);
  pointer-events: none;
}

.hero-ribbon {
  position: absolute;
  border-style: solid;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.hero-ribbon-one {
  top: 4%;
  right: -12%;
  width: 58%;
  height: 88%;
  border-width: 24px;
  border-color: rgba(147, 113, 129, 0.42);
  transform: rotate(14deg) translate3d(calc((0.5 - var(--stage-progress)) * 36px), calc((0.5 - var(--stage-progress)) * 10px), 0);
}

.hero-ribbon-two {
  top: 16%;
  right: -3%;
  width: 48%;
  height: 72%;
  border-width: 20px;
  border-color: rgba(11, 61, 46, 0.28);
  transform: rotate(18deg) translate3d(calc((0.45 - var(--stage-progress)) * 28px), calc((0.5 - var(--stage-progress)) * -8px), 0);
}

.hero-ribbon-three {
  top: 30%;
  right: 6%;
  width: 40%;
  height: 58%;
  border-width: 16px;
  border-color: rgba(247, 232, 177, 0.9);
  transform: rotate(22deg) translate3d(calc((0.4 - var(--stage-progress)) * 22px), calc((0.5 - var(--stage-progress)) * 8px), 0);
}

.hero-copy {
  top: clamp(122px, 18%, 172px);
  left: calc(54% - var(--stage-progress) * 50%);
  z-index: 2;
  width: min(34vw, 400px);
  transform: translate3d(0, calc((1 - var(--stage-progress)) * 8px), 0);
}

.hero-copy-inner {
  max-width: 100%;
}

.hero h1 {
  max-width: none;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
}

.hero-text {
  max-width: 30rem;
  margin: 20px 0 24px;
}

.hero-actions {
  margin-bottom: 18px;
}

.hero-signature {
  background: rgba(255, 251, 240, 0.58);
  backdrop-filter: blur(10px);
}

.hero-model-stage {
  left: calc(2% + var(--stage-progress) * 58%);
  right: auto;
  bottom: 24px;
  z-index: 3;
  width: min(36vw, 400px);
  height: min(82%, 620px);
  min-height: 520px;
  transform: translate3d(0, calc(var(--stage-progress) * -44px), 0);
}

.hero-model-glow,
.hero-look {
  position: absolute;
  margin: 0;
}

.hero-model-glow {
  inset: auto 4% 10px 4%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 61, 46, 0.18), rgba(11, 61, 46, 0) 72%);
  filter: blur(12px);
  opacity: calc(0.4 + var(--stage-progress) * 0.14);
}

.hero-look {
  pointer-events: none;
}

.hero-look-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(11, 61, 46, 0.18));
}

.hero-look-front .hero-look-image,
.hero-look-back .hero-look-image {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
}

.hero-look-front {
  left: max(-8%, -18px);
  bottom: 0;
  z-index: 2;
  width: min(32vw, 350px);
  opacity: calc(0.88 + (1 - var(--stage-progress)) * 0.12);
  transform: translate3d(calc((0.34 - var(--stage-progress)) * 28px), calc((1 - var(--stage-progress)) * 10px), 0) scale(calc(0.95 + var(--stage-progress) * 0.08));
}

.hero-look-back {
  right: -12%;
  bottom: 10px;
  z-index: 1;
  width: min(24vw, 300px);
  opacity: clamp(0, calc((var(--stage-progress) - 0.34) * 1.8), 0.92);
  transform: translate3d(calc((0.62 - var(--stage-progress)) * 30px), calc((1 - var(--stage-progress)) * 18px), 0) scale(calc(0.86 + var(--stage-progress) * 0.12));
}

.hero-look-orb {
  top: 18px;
  right: 8px;
  z-index: 3;
  width: clamp(120px, 12vw, 164px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 34px rgba(11, 61, 46, 0.14);
  transform: translate3d(calc((1 - var(--stage-progress)) * 8px), calc((1 - var(--stage-progress)) * -6px), 0) rotate(calc((0.5 - var(--stage-progress)) * 4deg));
}

.hero-look-orb .hero-look-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 92% 10%;
  filter: none;
}

.hero-model-figure,
.hero-model-shadow,
.hero-model-hair,
.hero-model-head,
.hero-model-ear,
.hero-model-neck,
.hero-model-arm,
.hero-model-trouser {
  position: absolute;
}

.hero-model-figure {
  inset: 0;
}

.hero-model-shadow {
  left: 50%;
  bottom: 4px;
  width: 72%;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 61, 46, 0.18), rgba(11, 61, 46, 0) 72%);
  transform: translateX(-50%);
}

.hero-model-hair {
  top: 20px;
  left: 50%;
  width: 168px;
  height: 118px;
  border-radius: 56% 56% 34% 48%;
  background:
    radial-gradient(circle at 34% 32%, rgba(96, 64, 42, 0.92), rgba(96, 64, 42, 0) 30%),
    linear-gradient(180deg, #4b2f1e 0%, #22140f 100%);
  box-shadow: inset -24px -12px 0 rgba(0, 0, 0, 0.16);
  transform: translateX(-38%) rotate(12deg);
}

.hero-model-head {
  top: 48px;
  left: 50%;
  width: 120px;
  height: 144px;
  border-radius: 48% 52% 42% 44%;
  background: linear-gradient(180deg, #f0c8a4 0%, #bc7a4e 100%);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%) rotate(6deg);
}

.hero-model-ear {
  top: 104px;
  left: calc(50% + 48px);
  width: 18px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e7b68e 0%, #b87547 100%);
  transform: rotate(8deg);
}

.hero-model-neck {
  top: 172px;
  left: 50%;
  width: 40px;
  height: 44px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #e3b289 0%, #be7b4d 100%);
  transform: translateX(-50%);
}

.hero-model-arm {
  top: 210px;
  z-index: 1;
  width: 64px;
  height: 220px;
  border-radius: 36px;
  background: linear-gradient(180deg, #efcaab 0%, #bf7a4d 100%);
}

.hero-model-arm-left {
  left: 74px;
  transform: rotate(calc(12deg - var(--stage-progress) * 7deg)) translateX(calc((1 - var(--stage-progress)) * 10px));
}

.hero-model-arm-right {
  right: 60px;
  top: 216px;
  height: 204px;
  transform: rotate(calc(-16deg + var(--stage-progress) * 6deg));
}

.hero-model-shirt {
  position: absolute;
  top: 184px;
  left: 50%;
  z-index: 2;
  width: min(320px, 84%);
  height: 286px;
  border-radius: 40px 40px 34px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #155844 0%, #0b3d2e 56%, #071b14 100%);
  box-shadow: 0 26px 38px rgba(11, 61, 46, 0.18);
  transform: translateX(-50%) scaleX(calc(0.965 + var(--stage-progress) * 0.055));
}

.hero-model-shirt::before {
  content: "";
  position: absolute;
  inset: 18px 22px auto;
  height: 42%;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 74%);
  opacity: calc(0.42 + var(--stage-progress) * 0.16);
}

.hero-model-shirt::after {
  content: "";
  position: absolute;
  inset: 74px 16% 82px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247, 232, 177, 0.18), rgba(247, 232, 177, 0) 66%);
  opacity: calc(0.24 + var(--stage-progress) * 0.18);
}

.hero-model-collar,
.hero-model-sleeve,
.hero-model-fold {
  position: absolute;
  display: block;
}

.hero-model-collar {
  top: 18px;
  left: 50%;
  width: 96px;
  height: 42px;
  border-radius: 0 0 30px 30px;
  border-bottom: 2px solid rgba(247, 232, 177, 0.62);
  transform: translateX(-50%);
}

.hero-model-sleeve {
  top: 46px;
  width: 110px;
  height: 88px;
  border-radius: 30px;
  background: linear-gradient(180deg, #17624b 0%, #0b3d2e 70%);
}

.hero-model-sleeve-left {
  left: -54px;
  transform-origin: right top;
  transform: rotate(calc(-18deg - var(--stage-progress) * 6deg));
}

.hero-model-sleeve-right {
  right: -54px;
  transform-origin: left top;
  transform: rotate(calc(18deg + var(--stage-progress) * 6deg));
}

.hero-model-fold {
  top: 118px;
  width: 2px;
  height: 112px;
  background: linear-gradient(180deg, rgba(247, 232, 177, 0), rgba(247, 232, 177, 0.36), rgba(247, 232, 177, 0));
  opacity: calc(0.16 + var(--stage-progress) * 0.24);
}

.hero-model-fold-left {
  left: 28%;
  transform: rotate(calc(8deg - var(--stage-progress) * 8deg));
}

.hero-model-fold-center {
  left: 50%;
  transform: translateX(-50%) scaleY(calc(0.86 + var(--stage-progress) * 0.16));
}

.hero-model-fold-right {
  right: 28%;
  transform: rotate(calc(-8deg + var(--stage-progress) * 8deg));
}

.hero-tee-art {
  position: absolute;
  top: 86px;
  left: 50%;
  width: 92px;
  height: auto;
  opacity: calc(0.84 + var(--stage-progress) * 0.12);
  transform: translateX(-50%) scale(calc(0.9 + var(--stage-progress) * 0.08));
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.1));
}

.hero-model-trouser {
  left: 50%;
  bottom: 18px;
  width: 44%;
  height: 144px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, rgba(35, 39, 41, 0.92), rgba(0, 0, 0, 1));
  transform: translateX(-50%);
}

.hero-product-rail {
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  opacity: clamp(0, calc((var(--stage-progress) - 0.54) * 3.2), 1);
  transform: translateY(calc((1 - var(--stage-progress)) * 36px));
}

.hero-product-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: rgba(255, 251, 240, 0.9);
  box-shadow: 0 16px 30px rgba(11, 61, 46, 0.08);
}

.hero-product-thumb {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: 50% 16%;
  border-radius: 16px;
  background: rgba(255, 251, 240, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.hero-product-thumb-detail {
  object-fit: cover;
}

.hero-thumb-front-detail {
  object-position: 50% 28%;
}

.hero-thumb-back-detail {
  object-position: 50% 18%;
}

.hero-thumb-forest {
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(160deg, #0b3d2e, #000000);
}

.hero-thumb-gold {
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.3), transparent 20%),
    linear-gradient(160deg, #f7e8b1, #ccb066);
}

.hero-thumb-mauve {
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.24), transparent 20%),
    linear-gradient(160deg, #c0a2b0, #937181);
}

.hero-thumb-black {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(160deg, #292929, #000000);
}

.hero-product-card strong,
.hero-product-card span,
.hero-product-card em {
  display: block;
}

.hero-product-card strong {
  color: var(--forest);
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero-product-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero-product-card em {
  color: var(--ink);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.presence-stage {
  --stage-progress: 0;
  position: relative;
  min-height: calc(var(--vh, 1vh) * 165);
  padding: 18px 0 40px;
}

.presence-stage-wrap {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 126);
}

.presence-sticky {
  position: sticky;
  top: 108px;
  overflow: hidden;
  min-height: calc(var(--vh, 1vh) * 68);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.52), transparent 20%),
    linear-gradient(160deg, rgba(255, 251, 240, 0.82), rgba(247, 232, 177, 0.58));
  box-shadow: var(--shadow);
  contain: layout paint;
  isolation: isolate;
}

.presence-backdrop,
.presence-shell,
.presence-caption {
  position: absolute;
}

.presence-backdrop {
  inset: 0;
}

.presence-band {
  position: absolute;
  border-radius: 999px;
  opacity: 0.52;
  will-change: transform;
}

.band-gold {
  top: 12%;
  left: 8%;
  width: clamp(220px, 34vw, 460px);
  height: clamp(220px, 34vw, 460px);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.62), rgba(247, 232, 177, 0.9) 45%, rgba(205, 181, 113, 0.98) 100%);
  transform: translate3d(calc((0.12 - var(--stage-progress)) * 36px), calc((1 - var(--stage-progress)) * 12px), 0) scale(calc(0.98 + var(--stage-progress) * 0.03));
}

.band-mauve {
  top: 16%;
  right: 10%;
  width: clamp(220px, 32vw, 400px);
  height: clamp(320px, 44vw, 520px);
  background: linear-gradient(180deg, rgba(199, 172, 184, 0.88), rgba(147, 113, 129, 0.98));
  transform: translate3d(calc((var(--stage-progress) - 0.72) * 28px), calc((1 - var(--stage-progress)) * -10px), 0) rotate(calc((1 - var(--stage-progress)) * 2.5deg));
}

.band-forest {
  left: 38%;
  bottom: -12%;
  width: clamp(280px, 44vw, 620px);
  height: clamp(180px, 24vw, 280px);
  background: linear-gradient(135deg, rgba(11, 61, 46, 0.98), rgba(0, 0, 0, 0.98));
  transform: translate3d(calc((0.5 - var(--stage-progress)) * 18px), calc((1 - var(--stage-progress)) * 12px), 0) rotate(calc((var(--stage-progress) - 0.5) * 1.5deg));
}

.presence-shell {
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 18px;
  align-items: stretch;
  padding: 26px 26px 92px;
}

.presence-logo-panel,
.presence-mark-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 32px;
  box-shadow: 0 22px 50px rgba(11, 61, 46, 0.12);
  contain: layout paint;
  will-change: transform;
}

.presence-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 252, 244, 0.72);
  transform: translateY(calc((1 - var(--stage-progress)) * 10px)) scale(calc(0.985 + var(--stage-progress) * 0.015));
}

.presence-logo-panel::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: 24px;
}

.presence-logo-mask {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 48px);
  min-height: clamp(300px, 42vw, 480px);
  clip-path: inset(calc((1 - var(--stage-progress)) * 12%) calc((1 - var(--stage-progress)) * 7%) round 28px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(247, 232, 177, 0.2));
  will-change: clip-path, transform;
}

.presence-logo {
  width: min(78%, 460px);
  transform: scale(calc(1.01 - var(--stage-progress) * 0.01));
  will-change: transform;
}

.presence-mark-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: linear-gradient(160deg, rgba(11, 61, 46, 0.96), rgba(0, 0, 0, 0.95));
  color: #fff7dc;
  transform: translateY(calc((var(--stage-progress) - 0.5) * 6px));
}

.presence-mark-panel p {
  max-width: 24ch;
  margin: 20px 0 0;
  color: rgba(255, 247, 220, 0.78);
  line-height: 1.8;
}

.presence-mark-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(240px, 84%);
  aspect-ratio: 1;
  margin: 6px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(160deg, rgba(247, 232, 177, 0.24), rgba(147, 113, 129, 0.16));
  box-shadow: inset 0 0 0 1px rgba(247, 232, 177, 0.16);
  transform: translate3d(calc((0.5 - var(--stage-progress)) * 18px), calc((1 - var(--stage-progress)) * 8px), 0) rotate(calc((1 - var(--stage-progress)) * -3deg));
  will-change: transform;
}

.presence-mark-orbit::before,
.presence-mark-orbit::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(247, 232, 177, 0.22);
  border-radius: 50%;
}

.presence-mark-orbit::after {
  inset: 22%;
  border-color: rgba(147, 113, 129, 0.42);
}

.presence-mark-image {
  width: 72%;
  height: auto;
  object-fit: contain;
}

.presence-caption {
  left: 26px;
  right: 26px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 12px;
  opacity: calc(0.8 + var(--stage-progress) * 0.2);
  will-change: opacity, transform;
}

.presence-caption span {
  flex: 1;
  padding-top: 12px;
  border-top: 1px solid rgba(11, 61, 46, 0.12);
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fit-stage {
  --stage-progress: 0;
  position: relative;
  min-height: calc(var(--vh, 1vh) * 170);
  padding: 18px 0 40px;
}

.fit-stage-wrap {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 128);
}

.fit-sticky {
  position: sticky;
  top: 108px;
  overflow: hidden;
  min-height: calc(var(--vh, 1vh) * 74);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.6), transparent 20%),
    linear-gradient(160deg, rgba(255, 250, 238, 0.9), rgba(247, 232, 177, 0.74));
  box-shadow: var(--shadow);
  contain: layout paint;
  isolation: isolate;
}

.fit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  min-height: inherit;
  padding: 30px 30px 94px;
}

.fit-copy {
  max-width: 32rem;
}

.fit-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fit-copy h3 {
  margin: 0 0 16px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.fit-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
}

.fit-scene {
  position: relative;
  min-height: 560px;
}

.fit-aura,
.fit-watermark,
.fit-figure,
.fit-caption {
  position: absolute;
}

.fit-aura {
  border-radius: 50%;
  opacity: 0.5;
  will-change: transform, opacity;
}

.aura-gold {
  top: 8%;
  left: 10%;
  width: clamp(180px, 24vw, 280px);
  height: clamp(180px, 24vw, 280px);
  background: radial-gradient(circle, rgba(247, 232, 177, 0.95), rgba(247, 232, 177, 0.08));
  transform: translate3d(calc((0.22 - var(--stage-progress)) * 34px), calc((1 - var(--stage-progress)) * 14px), 0);
}

.aura-mauve {
  right: 12%;
  top: 14%;
  width: clamp(200px, 24vw, 320px);
  height: clamp(280px, 36vw, 420px);
  background: radial-gradient(circle, rgba(147, 113, 129, 0.34), rgba(147, 113, 129, 0.04));
  transform: translate3d(calc((var(--stage-progress) - 0.74) * 28px), calc((1 - var(--stage-progress)) * -10px), 0);
}

.fit-watermark {
  inset: 10% 8% 16%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: calc(0.07 + var(--stage-progress) * 0.06);
  transform: scale(calc(0.985 + var(--stage-progress) * 0.015));
}

.fit-watermark-logo {
  width: min(66%, 360px);
  height: auto;
}

.fit-figure {
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.fit-head {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 104px;
  height: 120px;
  border-radius: 48% 48% 44% 44%;
  background: linear-gradient(180deg, #f2d4b5 0%, #cf9a6b 100%);
  transform: translateX(-50%);
  overflow: hidden;
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.08);
}

.fit-head::before,
.fit-head::after {
  content: "";
  position: absolute;
}

.fit-head::before {
  inset: -8px 6px 34px;
  border-radius: 48% 48% 42% 42%;
  background: linear-gradient(180deg, #2d1c15 0%, #5a3a24 100%);
}

.fit-head::after {
  inset: 18px 18px 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 56%);
}

.fit-neck {
  position: absolute;
  top: 118px;
  left: 50%;
  width: 34px;
  height: 40px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #e8bc93 0%, #c88759 100%);
  transform: translateX(-50%);
}

.fit-torso {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: min(470px, 74%);
  height: 420px;
  transform: translateX(-50%);
}

.fit-arm {
  position: absolute;
  top: 78px;
  width: 140px;
  height: 220px;
}

.fit-arm-left {
  left: -12px;
}

.fit-arm-right {
  right: -12px;
}

.fit-forearm,
.fit-grip {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #f0cfaf 0%, #cf9a6b 100%);
}

.fit-forearm {
  top: 0;
  width: 56px;
  height: 170px;
  border-radius: 32px;
}

.fit-grip {
  top: 132px;
  width: 46px;
  height: 56px;
  border-radius: 20px;
}

.fit-arm-left .fit-forearm {
  right: 26px;
  transform-origin: top center;
  transform: translateX(calc(8px - var(--stage-progress) * 22px)) rotate(calc(14deg + var(--stage-progress) * 12deg));
}

.fit-arm-left .fit-grip {
  right: calc(18px + var(--stage-progress) * 22px);
  transform: rotate(calc(10deg + var(--stage-progress) * 8deg));
}

.fit-arm-right .fit-forearm {
  left: 26px;
  transform-origin: top center;
  transform: translateX(calc(-8px + var(--stage-progress) * 22px)) rotate(calc(-14deg - var(--stage-progress) * 12deg));
}

.fit-arm-right .fit-grip {
  left: calc(18px + var(--stage-progress) * 22px);
  transform: rotate(calc(-10deg - var(--stage-progress) * 8deg));
}

.fit-shirt {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 72%;
  height: 320px;
  border-radius: 42px 42px 34px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, #114c3a 0%, #0b3d2e 58%, #071b14 100%);
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.14);
  transform: translateX(-50%) scaleX(calc(0.965 + var(--stage-progress) * 0.14)) translateY(calc((1 - var(--stage-progress)) * 10px));
  will-change: transform;
}

.fit-shirt::before {
  content: "";
  position: absolute;
  inset: 72px 18% 84px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247, 232, 177, 0.16), rgba(247, 232, 177, 0) 68%);
  opacity: calc(0.24 + var(--stage-progress) * 0.22);
  transform: scaleX(calc(0.82 + var(--stage-progress) * 0.16));
}

.fit-shirt::after {
  content: "";
  position: absolute;
  inset: 18px 20px auto;
  height: 44%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 72%);
  opacity: calc(0.42 + var(--stage-progress) * 0.12);
}

.fit-collar,
.fit-sleeve,
.fit-fabric-line,
.fit-stitch-ring,
.fit-waist {
  position: absolute;
  display: block;
}

.fit-collar {
  top: 18px;
  left: 50%;
  width: 96px;
  height: 42px;
  border-radius: 0 0 28px 28px;
  border-bottom: 2px solid rgba(247, 232, 177, 0.58);
  transform: translateX(-50%);
}

.fit-sleeve {
  top: 46px;
  width: 114px;
  height: 92px;
  border-radius: 30px;
  background: linear-gradient(180deg, #13533f 0%, #0b3d2e 70%);
}

.fit-sleeve-left {
  left: -56px;
  transform-origin: right top;
  transform: rotate(calc(-18deg - var(--stage-progress) * 10deg));
}

.fit-sleeve-right {
  right: -56px;
  transform-origin: left top;
  transform: rotate(calc(18deg + var(--stage-progress) * 10deg));
}

.fit-fabric-line {
  top: 116px;
  width: 2px;
  height: 110px;
  background: linear-gradient(180deg, rgba(247, 232, 177, 0), rgba(247, 232, 177, 0.34), rgba(247, 232, 177, 0));
  opacity: calc(0.16 + var(--stage-progress) * 0.28);
  transform-origin: top center;
}

.fit-line-left {
  left: 26%;
  transform: rotate(calc(8deg - var(--stage-progress) * 10deg)) scaleY(calc(0.88 + var(--stage-progress) * 0.14));
}

.fit-line-center {
  left: 50%;
  opacity: calc(0.12 + var(--stage-progress) * 0.24);
  transform: translateX(-50%) scaleY(calc(0.84 + var(--stage-progress) * 0.18));
}

.fit-line-right {
  right: 26%;
  transform: rotate(calc(-8deg + var(--stage-progress) * 10deg)) scaleY(calc(0.88 + var(--stage-progress) * 0.14));
}

.fit-stitch-ring {
  top: 84px;
  left: 50%;
  width: 124px;
  height: 124px;
  border: 1px dashed rgba(247, 232, 177, 0.46);
  border-radius: 50%;
  transform: translateX(-50%) scale(calc(0.92 + var(--stage-progress) * 0.08));
  opacity: calc(0.44 + var(--stage-progress) * 0.24);
}

.fit-embroidery {
  position: absolute;
  top: 118px;
  left: 50%;
  width: 118px;
  height: auto;
  opacity: calc(0.86 + var(--stage-progress) * 0.14);
  transform: translateX(-50%) scale(calc(0.88 + var(--stage-progress) * 0.08)) translateY(calc((1 - var(--stage-progress)) * 4px));
}

.fit-waist {
  left: 50%;
  bottom: 0;
  width: 48%;
  height: 124px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.98));
  transform: translateX(-50%);
}

.fit-caption {
  left: 30px;
  right: 30px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 12px;
  opacity: calc(0.74 + var(--stage-progress) * 0.18);
}

.fit-caption span {
  flex: 1;
  padding-top: 12px;
  border-top: 1px solid rgba(11, 61, 46, 0.12);
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.section-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.96;
}

.collections,
.featured,
.journal {
  padding: 60px 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.collection-card,
.product-card,
.journal-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.collection-card {
  min-height: 430px;
}

.collection-art {
  z-index: 0;
}

.art-gold {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.35), transparent 18%),
    linear-gradient(160deg, #f7e8b1 0%, #cdb571 100%);
}

.art-mauve {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.28), transparent 18%),
    linear-gradient(160deg, #c7acb8 0%, #937181 100%);
}

.art-forest {
  background:
    radial-gradient(circle at 45% 10%, rgba(255, 255, 255, 0.16), transparent 16%),
    linear-gradient(160deg, #0b3d2e 0%, #000000 100%);
}

.collection-meta {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 252, 244, 0.82);
  backdrop-filter: blur(14px);
}

.collection-meta span {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.collection-meta h3,
.product-copy h3,
.journal-card h3 {
  margin: 10px 0 8px;
  font-size: 1.35rem;
}

.product-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  min-height: 420px;
}

.product-visual {
  height: 62%;
  position: relative;
}

.visual-one {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.32), transparent 16%),
    linear-gradient(160deg, #f7e8b1 0%, #937181 100%);
}

.visual-two {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.36), transparent 16%),
    linear-gradient(160deg, #f7e8b1 0%, #0b3d2e 100%);
}

.visual-three {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14), transparent 16%),
    linear-gradient(160deg, #937181 0%, #000000 100%);
}

.visual-four {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.24), transparent 16%),
    linear-gradient(160deg, #fff3cc 0%, #937181 100%);
}

.product-copy {
  position: absolute;
  inset: auto 18px 18px;
  padding: 18px;
  border-radius: 22px;
  background: var(--surface-strong);
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  font-weight: 700;
}

.product-row a {
  color: var(--forest);
}

.story-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  align-items: end;
  padding: 36px;
  margin: 24px auto;
  border-radius: 36px;
}

.story-copy h2,
.newsletter h2 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.story-quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(11, 61, 46, 0.96), rgba(0, 0, 0, 0.94));
  color: #fff7dc;
}

.story-mark {
  width: 140px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(247, 232, 177, 0.96);
}

.story-quote p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}

.story-quote span {
  color: rgba(255, 247, 220, 0.7);
}

.journal-grid {
  grid-template-columns: 1fr 1.25fr 1fr;
}

.journal-card {
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.6)),
    linear-gradient(160deg, rgba(255, 248, 225, 0.88), rgba(147, 113, 129, 0.36));
}

.journal-highlight {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.12)),
    linear-gradient(160deg, rgba(11, 61, 46, 0.92), rgba(0, 0, 0, 0.94));
  color: #fff7dc;
}

.journal-highlight span {
  color: rgba(255, 247, 220, 0.72);
}

.newsletter {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
  padding: 34px;
  margin: 48px auto 80px;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(11, 61, 46, 0.96), rgba(0, 0, 0, 0.92));
  color: #fff7dc;
}

.newsletter .eyebrow {
  color: rgba(247, 232, 177, 0.82);
}

.newsletter p,
.newsletter h2 {
  color: inherit;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(247, 232, 177, 0.16);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 14px 16px;
  font: inherit;
  color: #fff7dc;
}

.newsletter-form input::placeholder {
  color: rgba(255, 247, 220, 0.62);
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  border: 0;
  padding: 14px 18px;
  font: inherit;
  cursor: pointer;
  background: var(--gold);
  color: var(--forest);
}

.content-shell {
  padding: 84px 0 80px;
}

.content-card,
.entry-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 36px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.content-card {
  padding: 34px;
}

.content-title {
  margin: 0 0 16px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
}

.content-copy {
  max-width: 48rem;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.entry-card {
  padding: 28px;
}

.entry-title {
  margin: 0 0 12px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.entry-meta {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.entry-content {
  color: var(--muted);
  line-height: 1.7;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.pagination-shell {
  margin-top: 28px;
  color: var(--forest);
}

.pagination-shell .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.admin-bar .site-header {
  top: 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.992);
  transition:
    opacity 620ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.18, 1);
}

.reveal-delay {
  transition-delay: 80ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.collection-card,
.product-card,
.journal-card,
.button,
.header-cta,
.newsletter-form button {
  will-change: transform;
}

.collection-card:hover,
.product-card:hover,
.journal-card:hover,
.button:hover,
.header-cta:hover,
.newsletter-form button:hover {
  transform: translateY(-3px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .hero,
  .story-panel,
  .newsletter {
    grid-template-columns: 1fr;
  }

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

  .journal-highlight {
    grid-column: 1 / -1;
  }

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

  .visual-stack {
    grid-template-columns: 1fr 1fr;
  }

  .look-card-tall {
    min-height: 360px;
    grid-row: auto;
  }

  .presence-shell {
    grid-template-columns: 1fr;
  }

  .presence-mark-panel p {
    max-width: 32ch;
  }

  .fit-grid {
    grid-template-columns: 1fr;
    padding-bottom: 116px;
  }

  .fit-copy {
    max-width: 38rem;
  }

  .fit-scene {
    min-height: 500px;
  }

  .hero {
    --hero-swap-distance: clamp(120px, 16vw, 220px);
    min-height: calc(var(--vh, 1vh) * 170);
  }

  .hero-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 128);
  }

  .hero-window {
    min-height: 620px;
    padding: 28px 24px 126px;
  }

  .hero-copy {
    width: min(44vw, 400px);
  }

  .hero-model-stage {
    width: min(42vw, 380px);
    min-height: 400px;
  }

  .hero-look-front {
    width: min(32vw, 360px);
  }

  .hero-look-back {
    width: min(24vw, 260px);
  }

  .hero-look-orb {
    width: clamp(112px, 12vw, 148px);
  }

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

@media (max-width: 920px) {
  .site-header {
    border-radius: 32px;
  }

  .brand-lockup {
    flex: 1;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-menu {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 8px;
  }

  .site-header.is-open .header-menu {
    display: flex;
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 251, 240, 0.52);
  }

  .site-nav .menu {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .header-utility {
    justify-content: space-between;
  }

  .hero {
    gap: 28px;
  }

  .presence-stage {
    min-height: calc(var(--vh, 1vh) * 150);
  }

  .presence-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 116);
  }

  .presence-sticky {
    top: 96px;
    min-height: calc(var(--vh, 1vh) * 64);
  }

  .presence-shell {
    padding-bottom: 112px;
  }

  .presence-caption {
    flex-wrap: wrap;
  }

  .presence-caption span {
    min-width: calc(50% - 8px);
  }

  .fit-stage {
    min-height: calc(var(--vh, 1vh) * 156);
  }

  .fit-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 118);
  }

  .fit-sticky {
    top: 96px;
    min-height: calc(var(--vh, 1vh) * 70);
  }

  .fit-caption {
    flex-wrap: wrap;
  }

  .fit-caption span {
    min-width: calc(50% - 8px);
  }

  .hero {
    --hero-swap-distance: clamp(88px, 12vw, 150px);
    min-height: calc(var(--vh, 1vh) * 158);
    padding-top: 28px;
  }

  .hero-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 116);
  }

  .hero-browser {
    top: 96px;
    min-height: calc(var(--vh, 1vh) * 70);
    border-radius: 30px;
  }

  .hero-window {
    min-height: 600px;
    padding: 24px 20px 122px;
  }

  .hero-copy {
    top: 72px;
    left: calc(48% - var(--stage-progress) * 44%);
    width: min(50vw, 360px);
  }

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

  .hero-model-stage {
    left: calc(0% + var(--stage-progress) * 54%);
    width: min(44vw, 340px);
    min-height: 360px;
  }

  .hero-look-front {
    left: -8%;
    width: min(34vw, 320px);
  }

  .hero-look-back {
    right: -16%;
    width: min(24vw, 220px);
  }

  .hero-look-orb {
    width: 132px;
    border-width: 5px;
  }

  .hero-product-card {
    grid-template-columns: 52px 1fr;
  }

  .hero-product-card em {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(calc(100% - 24px), var(--max));
    flex-wrap: wrap;
  }

  .brand-lockup {
    width: auto;
    justify-content: flex-start;
  }

  .brand-lockup-copy span {
    letter-spacing: 0.05em;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

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

  .visual-stack {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(180px, 1fr));
  }

  .look-card,
  .look-card-tall,
  .look-card-square,
  .look-card-wide {
    min-height: 200px;
  }

  .featured-logo {
    width: min(72%, 320px);
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

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

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

  .presence-stage {
    min-height: calc(var(--vh, 1vh) * 145);
  }

  .presence-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 110);
  }

  .presence-sticky {
    top: 84px;
  }

  .presence-logo-mask {
    width: calc(100% - 28px);
    min-height: 250px;
  }

  .presence-mark-orbit {
    width: min(200px, 70%);
  }

  .fit-stage {
    min-height: calc(var(--vh, 1vh) * 148);
  }

  .fit-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 108);
  }

  .fit-sticky {
    top: 84px;
  }

  .fit-scene {
    min-height: 450px;
  }

  .fit-torso {
    width: min(410px, 82%);
    height: 380px;
  }

  .fit-shirt {
    height: 292px;
  }

  .hero {
    --hero-swap-distance: clamp(56px, 10vw, 96px);
    min-height: calc(var(--vh, 1vh) * 150);
    padding-top: 24px;
  }

  .hero-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 108);
  }

  .hero-browser {
    top: 84px;
    min-height: calc(var(--vh, 1vh) * 68);
  }

  .hero-window {
    min-height: 560px;
    padding: 22px 18px 118px;
  }

  .hero-brand-ghost {
    top: 20px;
    left: 18px;
    width: min(44vw, 250px);
  }

  .hero-copy {
    top: 48px;
    left: calc(42% - var(--stage-progress) * 36%);
    width: min(60vw, 300px);
  }

  .hero h1 {
    font-size: clamp(2.6rem, 11vw, 4.4rem);
  }

  .hero-model-stage {
    bottom: 110px;
    width: min(46vw, 300px);
    min-height: 330px;
  }

  .hero-model-glow {
    inset: auto 0 6px 0;
  }

  .hero-look-front {
    left: -10%;
    width: min(42vw, 280px);
  }

  .hero-look-back {
    right: -20%;
    bottom: 6px;
    width: min(28vw, 196px);
  }

  .hero-look-orb {
    top: 12px;
    width: 116px;
    border-width: 4px;
  }

  .hero-model-hair {
    width: 136px;
    height: 96px;
  }

  .hero-model-head {
    top: 42px;
    width: 100px;
    height: 122px;
  }

  .hero-model-ear {
    top: 92px;
    left: calc(50% + 40px);
  }

  .hero-model-neck {
    top: 148px;
    width: 34px;
    height: 38px;
  }

  .hero-model-arm {
    top: 176px;
    width: 52px;
    height: 176px;
  }

  .hero-model-arm-left {
    left: 54px;
  }

  .hero-model-arm-right {
    right: 42px;
    top: 182px;
    height: 168px;
  }

  .hero-model-shirt {
    top: 160px;
    width: min(240px, 84%);
    height: 240px;
    border-radius: 30px 30px 26px 26px;
  }

  .hero-model-collar {
    width: 78px;
    height: 32px;
  }

  .hero-model-sleeve {
    top: 34px;
    width: 84px;
    height: 70px;
  }

  .hero-model-sleeve-left {
    left: -36px;
  }

  .hero-model-sleeve-right {
    right: -36px;
  }

  .hero-model-fold {
    top: 90px;
    height: 94px;
  }

  .hero-tee-art {
    top: 70px;
    width: 78px;
  }

  .hero-model-trouser {
    height: 110px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 28px;
  }

  .newsletter-form button,
  .newsletter-form input {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    gap: 14px;
    margin-top: 12px;
    padding: 12px 14px;
  }

  .brand-lockup-mark {
    width: 54px;
    height: 30px;
  }

  .brand-lockup-copy strong {
    font-size: 1.15rem;
  }

  .brand-lockup-copy span {
    font-size: 0.68rem;
  }

  .hero {
    padding: 36px 0 44px;
  }

  .hero-actions .button,
  .hero-signature {
    width: 100%;
  }

  .hero-signature {
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 24px;
  }

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

  .visual-stack {
    gap: 14px;
    grid-template-rows: repeat(3, minmax(190px, 1fr));
  }

  .look-card {
    padding: 18px;
  }

  .card-note,
  .collection-meta,
  .product-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .floating-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .stats-strip,
  .story-panel,
  .newsletter {
    padding: 22px 18px;
    border-radius: 28px;
  }

  .presence-stage {
    min-height: calc(var(--vh, 1vh) * 138);
    padding-top: 6px;
  }

  .presence-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 100);
  }

  .presence-sticky {
    top: 82px;
    min-height: calc(var(--vh, 1vh) * 62);
    border-radius: 28px;
  }

  .presence-shell {
    padding: 16px 16px 126px;
  }

  .presence-logo-panel,
  .presence-mark-panel {
    border-radius: 24px;
  }

  .presence-logo-mask {
    width: calc(100% - 16px);
    min-height: 220px;
    clip-path: inset(calc((1 - var(--stage-progress)) * 8%) calc((1 - var(--stage-progress)) * 4%) round 22px);
  }

  .presence-mark-panel {
    padding: 18px;
  }

  .presence-mark-panel p {
    max-width: none;
    font-size: 0.96rem;
  }

  .presence-mark-orbit {
    width: min(170px, 72%);
    transform: translate3d(calc((0.5 - var(--stage-progress)) * 10px), calc((1 - var(--stage-progress)) * 4px), 0) rotate(calc((1 - var(--stage-progress)) * -2deg));
  }

  .presence-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }

  .presence-caption span {
    min-width: 100%;
    padding-top: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .fit-stage {
    min-height: calc(var(--vh, 1vh) * 138);
  }

  .fit-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 98);
  }

  .fit-sticky {
    top: 82px;
    min-height: calc(var(--vh, 1vh) * 62);
    border-radius: 28px;
  }

  .fit-grid {
    gap: 18px;
    padding: 18px 18px 126px;
  }

  .fit-copy h3 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .fit-scene {
    min-height: 360px;
  }

  .fit-head {
    width: 82px;
    height: 96px;
  }

  .fit-neck {
    top: 92px;
    width: 28px;
    height: 34px;
  }

  .fit-torso {
    width: min(320px, 88%);
    height: 310px;
  }

  .fit-arm {
    top: 68px;
    width: 104px;
    height: 176px;
  }

  .fit-forearm {
    width: 44px;
    height: 136px;
  }

  .fit-grip {
    top: 104px;
    width: 38px;
    height: 44px;
  }

  .fit-shirt {
    top: 18px;
    height: 234px;
    border-radius: 30px 30px 24px 24px;
  }

  .fit-sleeve {
    top: 38px;
    width: 84px;
    height: 70px;
  }

  .fit-sleeve-left {
    left: -36px;
  }

  .fit-sleeve-right {
    right: -36px;
  }

  .fit-stitch-ring {
    top: 70px;
    width: 100px;
    height: 100px;
  }

  .fit-embroidery {
    top: 94px;
    width: 96px;
  }

  .fit-waist {
    height: 94px;
  }

  .fit-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 8px;
  }

  .fit-caption span {
    min-width: 100%;
    padding-top: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .hero {
    --hero-swap-distance: 36px;
    min-height: calc(var(--vh, 1vh) * 146);
    padding: 24px 0 30px;
  }

  .hero-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 102);
  }

  .hero-browser {
    top: 82px;
    min-height: calc(var(--vh, 1vh) * 62);
    border-radius: 24px;
  }

  .hero-browser-bar {
    padding: 10px 12px;
    gap: 10px;
  }

  .hero-browser-address {
    height: 16px;
  }

  .hero-window {
    min-height: 520px;
    padding: 18px 14px 156px;
  }

  .hero-brand-ghost {
    top: 18px;
    left: 14px;
    width: 180px;
  }

  .hero-ribbons {
    inset: 12% -20% 28% 26%;
  }

  .hero-copy {
    top: 42px;
    left: calc(22% - var(--stage-progress) * 10%);
    width: calc(100% - 28px);
    max-width: 250px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-text {
    max-width: 18rem;
    margin-bottom: 20px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-model-stage {
    left: calc(0% + var(--stage-progress) * 48%);
    bottom: 124px;
    width: min(54vw, 250px);
    min-height: 300px;
  }

  .hero-model-glow {
    inset: auto 0 4px 0;
    height: 72%;
  }

  .hero-look-front {
    left: -8%;
    width: min(52vw, 218px);
  }

  .hero-look-back {
    right: -12%;
    bottom: 10px;
    width: min(34vw, 154px);
  }

  .hero-look-orb {
    top: 10px;
    right: 4px;
    width: 92px;
    border-width: 4px;
  }

  .hero-model-hair {
    top: 18px;
    width: 110px;
    height: 82px;
  }

  .hero-model-head {
    top: 40px;
    width: 80px;
    height: 98px;
  }

  .hero-model-ear {
    top: 78px;
    left: calc(50% + 30px);
    width: 14px;
    height: 20px;
  }

  .hero-model-neck {
    top: 128px;
    width: 26px;
    height: 30px;
  }

  .hero-model-arm {
    top: 156px;
    width: 44px;
    height: 152px;
  }

  .hero-model-arm-left {
    left: 44px;
  }

  .hero-model-arm-right {
    right: 32px;
    top: 160px;
    height: 140px;
  }

  .hero-model-shirt {
    top: 142px;
    width: min(210px, 84%);
    height: 188px;
    border-radius: 26px 26px 22px 22px;
  }

  .hero-model-collar {
    width: 70px;
    height: 28px;
  }

  .hero-model-sleeve {
    top: 30px;
    width: 72px;
    height: 60px;
  }

  .hero-model-sleeve-left {
    left: -30px;
  }

  .hero-model-sleeve-right {
    right: -30px;
  }

  .hero-model-fold {
    top: 80px;
    height: 78px;
  }

  .hero-tee-art {
    top: 62px;
    width: 68px;
  }

  .hero-model-trouser {
    bottom: 10px;
    height: 92px;
  }

  .hero-product-rail {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-product-card {
    grid-template-columns: 42px 1fr;
    padding: 10px;
    border-radius: 16px;
  }

  .hero-product-thumb {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .hero-product-card strong {
    font-size: 0.82rem;
  }

  .hero-product-card span {
    font-size: 0.7rem;
  }

  .hero-product-card em {
    display: none;
  }

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

  .journal-highlight {
    grid-column: auto;
  }

  .story-mark {
    width: 110px;
  }

  .product-row {
    flex-wrap: wrap;
    gap: 8px 14px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .fit-aura,
  .fit-watermark,
  .fit-shirt,
  .fit-arm-left .fit-forearm,
  .fit-arm-left .fit-grip,
  .fit-arm-right .fit-forearm,
  .fit-arm-right .fit-grip,
  .fit-sleeve-left,
  .fit-sleeve-right,
  .fit-stitch-ring,
  .fit-embroidery {
    transform: none !important;
  }
}

/* Intersection Hero Override */
.site-header {
  z-index: 60;
}

.hero.section.scroll-wrapper {
  --stage-progress: 0;
  --hero-exit: max(calc(var(--stage-progress) - 0.8), 0);
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: calc(var(--vh, 1vh) * 250);
  padding: 0;
}

.intersection-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.54), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(147, 113, 129, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(252, 246, 217, 0.99), rgba(247, 232, 177, 0.94) 74%, rgba(234, 216, 157, 0.9));
  opacity: clamp(0, calc(1 - var(--hero-exit) * 4.8), 1);
  transform: translate3d(0, calc(var(--hero-exit) * -48px), 0)
    scale(calc(1 - var(--hero-exit) * 0.16));
}

.intersection-container::before,
.intersection-container::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intersection-container::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 50% 92%, rgba(11, 61, 46, 0.08), transparent 42%);
}

.intersection-container::after {
  z-index: 0;
  background-image:
    linear-gradient(rgba(11, 61, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 61, 46, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 88%);
  opacity: 0.42;
}

.main-logo,
.short-logo,
.hero-copy,
.hero-model-stage {
  position: absolute;
  will-change: transform, opacity;
}

.main-logo {
  top: clamp(88px, 9vw, 118px);
  left: 50%;
  z-index: 25;
  width: min(18vw, 220px);
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 30px;
  background: rgba(247, 232, 177, 0.54);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(147, 113, 129, 0.08);
  transform: translateX(-50%);
  opacity: calc(1 - var(--stage-progress) * 0.24);
}

.short-logo {
  right: clamp(22px, 4vw, 40px);
  bottom: clamp(20px, 4vw, 40px);
  z-index: 25;
  width: clamp(72px, 8vw, 102px);
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 24px;
  background: rgba(255, 251, 240, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 28px rgba(11, 61, 46, 0.12);
  opacity: calc(0.84 + var(--stage-progress) * 0.16);
  transform: translate3d(
      calc((1 - var(--stage-progress)) * 8px),
      calc((1 - var(--stage-progress)) * 8px),
      0
    )
    scale(calc(0.98 + var(--stage-progress) * 0.04));
}

.swoosh {
  position: absolute;
  top: 50%;
  left: 54%;
  z-index: 0;
  width: min(1400px, 138vw);
  height: min(360px, 40vw);
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    rgba(147, 113, 129, 0.42),
    rgba(11, 61, 46, 0.2)
  );
  filter: blur(84px);
  opacity: calc(0.14 + var(--stage-progress) * 0.12);
  transform: translate3d(
      -50%,
      calc(-50% + (0.5 - var(--stage-progress)) * 24px),
      0
    )
    rotate(-16deg);
}

.hero-copy {
  top: 50%;
  left: calc(54% - var(--stage-progress) * 46%);
  z-index: 1;
  width: min(38vw, 520px);
  text-align: left;
  pointer-events: none;
  transform: translate3d(0, -44%, 0);
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(147, 113, 129, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .tagline {
  margin: 0;
  max-width: none;
  font-family: "Instrument Serif", serif;
  font-size: clamp(4.2rem, 10vw, 8.8rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: rgba(11, 61, 46, 0.95);
}

.tagline span {
  display: block;
}

.hero-note {
  max-width: 22rem;
  margin: 18px 0 0;
  color: rgba(11, 61, 46, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-model-stage {
  left: calc(2% + var(--stage-progress) * 55%);
  bottom: clamp(28px, 5vw, 56px);
  z-index: 10;
  width: min(38vw, 560px);
  height: min(78vh, 760px);
  min-height: 520px;
  transform: translate3d(0, calc(var(--stage-progress) * -24px), 0);
}

.hero-model-glow,
.hero-look {
  position: absolute;
  margin: 0;
}

.hero-model-glow {
  inset: auto 4% 18px;
  height: 74%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(11, 61, 46, 0.2),
    rgba(11, 61, 46, 0) 72%
  );
  filter: blur(12px);
  opacity: calc(0.34 + var(--stage-progress) * 0.14);
}

.hero-look {
  pointer-events: none;
}

.hero-look-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(11, 61, 46, 0.18));
}

.hero-look-front .hero-look-image,
.hero-look-back .hero-look-image {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
}

.hero-look-front {
  left: max(-6%, -18px);
  bottom: 0;
  z-index: 2;
  width: min(33vw, 470px);
  opacity: calc(0.92 + (1 - var(--stage-progress)) * 0.08);
  transform: translate3d(
      calc((0.3 - var(--stage-progress)) * 34px),
      calc((1 - var(--stage-progress)) * 12px),
      0
    )
    scale(calc(0.96 + var(--stage-progress) * 0.04));
}

.hero-look-back {
  right: -18%;
  bottom: 2%;
  z-index: 1;
  width: min(26vw, 350px);
  opacity: clamp(0, calc((var(--stage-progress) - 0.3) * 1.7), 0.98);
  transform: translate3d(
      calc((0.7 - var(--stage-progress)) * 40px),
      calc((1 - var(--stage-progress)) * 20px),
      0
    )
    scale(calc(0.86 + var(--stage-progress) * 0.12));
}

.hero-look-orb {
  top: 7%;
  right: 2%;
  z-index: 4;
  width: clamp(108px, 12vw, 164px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 36px rgba(11, 61, 46, 0.14);
  opacity: calc(0.84 - var(--stage-progress) * 0.22);
  transform: translate3d(
      calc((1 - var(--stage-progress)) * 10px),
      calc((1 - var(--stage-progress)) * -8px),
      0
    )
    rotate(calc((0.5 - var(--stage-progress)) * 5deg));
}

.hero-look-orb .hero-look-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 84% 12%;
  filter: none;
}

@media (max-width: 1100px) {
  .hero.section.scroll-wrapper {
    min-height: calc(var(--vh, 1vh) * 230);
  }

  .main-logo {
    width: min(22vw, 200px);
  }

  .hero-copy {
    width: min(42vw, 460px);
  }

  .hero-model-stage {
    width: min(42vw, 460px);
    min-height: 460px;
  }

  .hero-look-front {
    width: min(36vw, 420px);
  }

  .hero-look-back {
    width: min(28vw, 300px);
  }
}

@media (max-width: 920px) {
  .hero.section.scroll-wrapper {
    min-height: calc(var(--vh, 1vh) * 214);
  }

  .main-logo {
    top: 92px;
    width: min(28vw, 184px);
  }

  .hero-copy {
    top: 48%;
    left: calc(48% - var(--stage-progress) * 38%);
    width: min(48vw, 390px);
    transform: translate3d(0, -42%, 0);
  }

  .hero .tagline {
    font-size: clamp(3.5rem, 11vw, 6.4rem);
  }

  .hero-model-stage {
    left: calc(0% + var(--stage-progress) * 50%);
    width: min(46vw, 360px);
    min-height: 420px;
  }

  .hero-look-front {
    width: min(40vw, 320px);
  }

  .hero-look-back {
    right: -14%;
    width: min(28vw, 220px);
  }

  .hero-look-orb {
    width: 128px;
    border-width: 5px;
  }
}

@media (max-width: 720px) {
  .hero.section.scroll-wrapper {
    min-height: calc(var(--vh, 1vh) * 196);
  }

  .intersection-container {
    min-height: calc(var(--vh, 1vh) * 100);
  }

  .main-logo {
    top: 84px;
    width: min(34vw, 168px);
  }

  .short-logo {
    right: 18px;
    bottom: 18px;
    width: 72px;
  }

  .swoosh {
    width: 180vw;
    height: 52vw;
  }

  .hero-copy {
    top: 18%;
    left: calc(10% - var(--stage-progress) * 2%);
    width: min(78vw, 340px);
    transform: none;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero .tagline {
    font-size: clamp(3rem, 16vw, 4.8rem);
    line-height: 0.9;
  }

  .hero-note {
    max-width: 17rem;
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .hero-model-stage {
    left: calc(-2% + var(--stage-progress) * 20%);
    bottom: 74px;
    width: min(72vw, 340px);
    height: min(56vh, 520px);
    min-height: 300px;
  }

  .hero-look-front {
    left: -4%;
    width: min(68vw, 290px);
  }

  .hero-look-back {
    right: -10%;
    width: min(42vw, 210px);
  }

  .hero-look-orb {
    top: 4%;
    right: 0;
    width: 92px;
    border-width: 4px;
  }
}

@media (max-width: 480px) {
  .main-logo {
    top: 78px;
    width: 142px;
  }

  .hero-copy {
    top: 19%;
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero-model-stage {
    left: calc(-4% + var(--stage-progress) * 16%);
    bottom: 72px;
    width: min(80vw, 310px);
  }

  .hero-look-front .hero-look-image,
  .hero-look-back .hero-look-image {
    border-radius: 24px;
  }

  .hero-look-back {
    right: -8%;
    width: min(40vw, 180px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intersection-container,
  .main-logo,
  .short-logo,
  .swoosh,
  .hero-copy,
  .hero-model-stage,
  .hero-look-front,
  .hero-look-back,
  .hero-look-orb {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-copy {
    left: 8%;
    top: 22%;
  }

  .hero-model-stage {
    left: 44%;
  }

  .hero-look-back {
    opacity: 0.92 !important;
  }
}

/* Presence Video Override */
.fit-stage {
  min-height: calc(var(--vh, 1vh) * 158);
}

.fit-stage-wrap {
  min-height: calc(var(--vh, 1vh) * 120);
}

.fit-sticky {
  min-height: calc(var(--vh, 1vh) * 74);
}

.fit-grid {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 24px 24px 104px;
}

.fit-scene {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 34px;
  background: rgba(255, 251, 240, 0.18);
  box-shadow: 0 28px 56px rgba(11, 61, 46, 0.16);
}

.fit-copy {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  max-width: min(46rem, 100%);
  padding: 34px 34px 28px;
}

.fit-copy h3 {
  max-width: 14ch;
  color: #111111;
}

.fit-video-aura,
.fit-video-shell {
  position: absolute;
}

.fit-video-aura {
  border-radius: 50%;
  opacity: 0.52;
  pointer-events: none;
}

.fit-video-aura-gold {
  top: 6%;
  left: 8%;
  width: clamp(180px, 24vw, 320px);
  height: clamp(180px, 24vw, 320px);
  background: radial-gradient(circle, rgba(247, 232, 177, 0.96), rgba(247, 232, 177, 0.08));
  transform: translate3d(calc((0.2 - var(--stage-progress)) * 34px), calc((1 - var(--stage-progress)) * 18px), 0);
}

.fit-video-aura-mauve {
  top: 16%;
  right: 7%;
  width: clamp(220px, 30vw, 420px);
  height: clamp(220px, 30vw, 420px);
  background: radial-gradient(circle, rgba(147, 113, 129, 0.24), rgba(147, 113, 129, 0.04) 62%, rgba(147, 113, 129, 0) 76%);
  transform: translate3d(calc((var(--stage-progress) - 0.4) * 28px), calc((1 - var(--stage-progress)) * 14px), 0);
}

.fit-video-shell {
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fit-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.1), rgba(255, 248, 232, 0) 24%, rgba(255, 248, 232, 0) 70%, rgba(255, 248, 232, 0.14)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02));
  pointer-events: none;
}

.fit-video-shell::before {
  content: "";
  position: absolute;
  inset: auto 12% 10px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 61, 46, 0.16), rgba(11, 61, 46, 0) 72%);
}

.fit-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .fit-stage {
    min-height: calc(var(--vh, 1vh) * 148);
  }

  .fit-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 112);
  }

  .fit-scene {
    min-height: 500px;
  }

  .fit-copy {
    max-width: min(40rem, 100%);
  }
}

@media (max-width: 820px) {
  .fit-stage {
    min-height: calc(var(--vh, 1vh) * 142);
  }

  .fit-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 102);
  }

  .fit-grid {
    padding: 18px 18px 120px;
  }

  .fit-copy {
    padding: 24px 24px 18px;
  }

  .fit-scene {
    min-height: 400px;
  }

  .fit-copy h3 {
    max-width: 13ch;
  }
}

@media (max-width: 640px) {
  .fit-stage {
    min-height: calc(var(--vh, 1vh) * 132);
  }

  .fit-stage-wrap {
    min-height: calc(var(--vh, 1vh) * 94);
  }

  .fit-grid {
    gap: 18px;
    padding: 14px 14px 126px;
  }

  .fit-copy {
    padding: 18px 18px 14px;
    max-width: 100%;
  }

  .fit-scene {
    min-height: 260px;
    border-radius: 26px;
  }

  .fit-video-shell {
    inset: 0;
  }

  .fit-copy h3 {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fit-video-aura {
    transform: none !important;
  }
}

.shop-shell {
  width: min(calc(100% - 32px), 1280px);
  padding: 84px 0 80px;
}

.wardrobe-shell,
.contact-shell {
  width: min(calc(100% - 32px), 1280px);
  padding: 84px 0 80px;
}

.wardrobe-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.wardrobe-hero-copy .content-copy,
.contact-hero-copy .content-copy {
  margin-bottom: 0;
}

.wardrobe-hero-copy .content-copy p:last-child,
.contact-hero-copy .content-copy p:last-child {
  margin-bottom: 0;
}

.wardrobe-hero-meta,
.contact-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.wardrobe-meta-card,
.contact-meta-card,
.wardrobe-category-card,
.wardrobe-cta,
.contact-status,
.contact-info-card,
.contact-quick-link {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.wardrobe-meta-card,
.contact-meta-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 168px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(147, 113, 129, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(255, 251, 240, 0.88), rgba(247, 232, 177, 0.72));
}

.wardrobe-meta-card strong,
.contact-meta-card strong,
.contact-status strong,
.contact-info-card h2,
.wardrobe-category-copy strong,
.contact-quick-link strong {
  color: var(--forest);
}

.wardrobe-meta-card span,
.contact-meta-card span,
.wardrobe-category-copy span,
.contact-status span,
.contact-quick-link span {
  color: var(--muted);
  line-height: 1.7;
}

.wardrobe-section {
  margin-bottom: 28px;
}

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

.wardrobe-category-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
}

.wardrobe-category-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(255, 251, 240, 0.92), rgba(247, 232, 177, 0.7));
}

.wardrobe-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wardrobe-category-placeholder {
  width: 58%;
  aspect-ratio: 0.8;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(160deg, rgba(147, 113, 129, 0.74), rgba(11, 61, 46, 0.82));
  box-shadow: 0 24px 44px rgba(11, 61, 46, 0.16);
}

.wardrobe-category-copy {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.wardrobe-products-grid {
  margin-bottom: 0;
}

.wardrobe-empty-card {
  padding: 28px;
}

.wardrobe-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
}

.wardrobe-cta-copy h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 0.98;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.contact-form-card {
  padding: 32px;
}

.contact-info-panel {
  display: grid;
  gap: 18px;
}

.contact-info-card {
  padding: 28px;
}

.contact-status {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.contact-status.is-success {
  background: linear-gradient(160deg, rgba(255, 251, 240, 0.92), rgba(247, 232, 177, 0.8));
}

.contact-status.is-error {
  background: linear-gradient(160deg, rgba(255, 241, 238, 0.92), rgba(247, 232, 177, 0.72));
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-field {
  margin: 0;
}

.contact-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
  font: inherit;
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-submit {
  justify-self: start;
}

.contact-form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-quick-links {
  display: grid;
  gap: 14px;
}

.contact-quick-link {
  display: grid;
  gap: 10px;
  padding: 20px;
  text-decoration: none;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 36px 16px 26px;
}

.footer-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: calc(var(--radius-lg) + 8px);
  background:
    radial-gradient(circle at top right, rgba(147, 113, 129, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 249, 232, 0.88), rgba(245, 233, 188, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.footer-intro {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: end;
}

.footer-brand-block h2,
.footer-highlight-card strong {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

.footer-brand-block h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 0.95;
}

.footer-brand-block p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.footer-highlight-card {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: var(--radius-md);
  background: rgba(11, 61, 46, 0.9);
  box-shadow: 0 18px 32px rgba(11, 61, 46, 0.2);
}

.footer-highlight-card span {
  color: rgba(247, 232, 177, 0.74);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-highlight-card strong {
  color: #fff9ea;
  font-size: 2rem;
  line-height: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 30px 0;
}

.footer-column {
  min-width: 0;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--forest);
  transform: translateX(3px);
}

.footer-column-categories {
  padding: 18px;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 241, 0.56);
}

.footer-category-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-empty-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-assurance span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 999px;
  background: rgba(255, 251, 240, 0.68);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.shop-hero-copy .content-copy {
  margin-bottom: 0;
}

.shop-hero-copy .content-copy p:last-child {
  margin-bottom: 0;
}

.shop-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.shop-meta-card,
.shop-toolbar,
.shop-product-panel,
.shop-empty-state {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.shop-meta-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 164px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(147, 113, 129, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(255, 251, 240, 0.88), rgba(247, 232, 177, 0.72));
}

.shop-meta-card strong {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 0.96;
  color: var(--forest);
}

.shop-meta-card span,
.shop-toolbar-copy,
.shop-product-meta,
.shop-product-excerpt {
  color: var(--muted);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 20px 24px;
}

.shop-toolbar-copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
}

.homepage-products-grid {
  margin-top: 8px;
}

.shop-product-card {
  margin: 0;
  list-style: none;
  width: auto !important;
  float: none !important;
  clear: none !important;
}

.shop-product-panel {
  height: 100%;
  overflow: hidden;
}

.shop-product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.2), transparent 16%),
    linear-gradient(180deg, rgba(255, 251, 240, 0.72), rgba(247, 232, 177, 0.9));
}

.shop-product-media::after {
  content: "";
  position: absolute;
  inset: auto 12% 10px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 61, 46, 0.14), rgba(11, 61, 46, 0) 70%);
}

.shop-product-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(11, 61, 46, 0.16));
}

.shop-product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 61, 46, 0.92);
  color: #fff7dc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-product-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.shop-product-meta {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-product-title {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 0.98;
  color: var(--forest);
}

.shop-product-excerpt {
  margin: 0;
  line-height: 1.7;
}

.shop-product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.shop-product-price {
  color: var(--forest);
}

.shop-product-price .price {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.12rem;
  font-weight: 700;
  color: inherit;
}

.shop-product-price del {
  opacity: 0.48;
}

.shop-product-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-product-action .button,
.shop-product-action .added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  background: var(--forest);
  color: #fff7dc;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 24px rgba(11, 61, 46, 0.18);
}

.shop-product-action .added_to_cart {
  background: rgba(255, 251, 240, 0.8);
  color: var(--forest);
  box-shadow: none;
}

.shop-pagination {
  margin-top: 32px;
}

.shop-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 999px;
  background: rgba(255, 251, 240, 0.82);
  color: var(--forest);
  text-decoration: none;
}

.shop-pagination .page-numbers.current {
  background: var(--forest);
  color: #fff7dc;
}

.commerce-shell {
  width: min(calc(100% - 32px), 1280px);
  padding: 84px 0 80px;
}

.commerce-page-card {
  padding: 32px;
}

.commerce-page-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.commerce-page-copy .content-copy {
  margin-bottom: 0;
}

.commerce-page-copy .content-copy p:last-child {
  margin-bottom: 0;
}

.commerce-page-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.commerce-meta-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(147, 113, 129, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(255, 251, 240, 0.88), rgba(247, 232, 177, 0.72));
  box-shadow: var(--shadow);
  text-decoration: none;
}

.commerce-meta-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 400;
  line-height: 0.98;
}

.commerce-meta-card span {
  color: var(--muted);
  line-height: 1.7;
}

.commerce-entry-content {
  color: var(--muted);
}

.commerce-entry-content .woocommerce {
  display: grid;
  gap: 24px;
}

.commerce-entry-content .woocommerce > * {
  margin: 0;
}

.commerce-entry-content .woocommerce-message,
.commerce-entry-content .woocommerce-info,
.commerce-entry-content .woocommerce-error {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: 22px;
  background: rgba(255, 251, 240, 0.9);
  color: var(--forest);
  list-style: none;
  box-shadow: var(--shadow);
}

.commerce-entry-content .woocommerce-message .button,
.commerce-entry-content .woocommerce-info .button {
  float: right;
  margin-left: 12px;
}

.commerce-entry-content .return-to-shop {
  margin-top: 12px;
}

.commerce-entry-content .woocommerce-cart-form,
.commerce-entry-content .cart-collaterals,
.commerce-entry-content form.checkout_coupon,
.commerce-entry-content form.login,
.commerce-entry-content .woocommerce-checkout,
.commerce-entry-content .woocommerce-account,
.commerce-entry-content .woocommerce-order,
.commerce-entry-content .woocommerce-customer-details,
.commerce-entry-content .woocommerce-order-details {
  display: grid;
  gap: 24px;
}

.commerce-entry-content .shop_table,
.commerce-entry-content .cart_totals,
.commerce-entry-content .woocommerce-checkout-review-order,
.commerce-entry-content .woocommerce-MyAccount-navigation,
.commerce-entry-content .woocommerce-MyAccount-content,
.commerce-entry-content .woocommerce-order-details,
.commerce-entry-content .woocommerce-customer-details,
.commerce-entry-content .woocommerce-order,
.commerce-entry-content .woocommerce-form-login,
.commerce-entry-content .woocommerce-form-coupon,
.commerce-entry-content .woocommerce-ResetPassword,
.commerce-entry-content .woocommerce-form-register {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.commerce-entry-content .shop_table {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

.commerce-entry-content .shop_table th,
.commerce-entry-content .shop_table td {
  padding: 18px;
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  text-align: left;
  vertical-align: middle;
}

.commerce-entry-content .shop_table tr:last-child > * {
  border-bottom: 0;
}

.commerce-entry-content .shop_table thead th {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.commerce-entry-content .shop_table .product-thumbnail img,
.commerce-entry-content .woocommerce-table .product-thumbnail img {
  width: 88px;
  height: auto;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 251, 240, 0.82);
}

.commerce-entry-content .shop_table .product-name a,
.commerce-entry-content .shop_table .product-name dl.variation dd p,
.commerce-entry-content .shop_table .product-remove a,
.commerce-entry-content .shop_table .product-subtotal,
.commerce-entry-content .shop_table .product-price,
.commerce-entry-content .shop_table .product-quantity {
  color: var(--forest);
}

.commerce-entry-content .shop_table .product-remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 61, 46, 0.08);
  font-size: 1.15rem;
  text-decoration: none;
}

.commerce-entry-content .quantity .qty,
.commerce-entry-content input.input-text,
.commerce-entry-content textarea,
.commerce-entry-content select {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--forest);
  font: inherit;
}

.commerce-entry-content textarea {
  min-height: 140px;
  resize: vertical;
}

.commerce-entry-content .quantity .qty {
  max-width: 110px;
}

.commerce-entry-content .button,
.commerce-entry-content button.button,
.commerce-entry-content .wc-proceed-to-checkout .checkout-button,
.commerce-entry-content .woocommerce-button,
.commerce-entry-content .place-order .button,
.commerce-entry-content .actions button,
.commerce-entry-content .coupon .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #fff7dc;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 24px rgba(11, 61, 46, 0.18);
}

.commerce-entry-content .button.alt,
.commerce-entry-content button.button.alt {
  background: var(--forest);
}

.commerce-entry-content .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.commerce-entry-content .coupon #coupon_code {
  flex: 1;
  min-width: 220px;
}

.commerce-entry-content .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.commerce-entry-content .cart-collaterals {
  grid-template-columns: minmax(0, 1fr);
}

.commerce-entry-content .cart_totals,
.commerce-entry-content .woocommerce-checkout-review-order,
.commerce-entry-content .woocommerce-MyAccount-navigation,
.commerce-entry-content .woocommerce-MyAccount-content,
.commerce-entry-content .woocommerce-order,
.commerce-entry-content .woocommerce-order-details,
.commerce-entry-content .woocommerce-customer-details,
.commerce-entry-content .woocommerce-form-login,
.commerce-entry-content .woocommerce-form-coupon,
.commerce-entry-content .woocommerce-ResetPassword,
.commerce-entry-content .woocommerce-form-register {
  padding: 24px;
}

.commerce-entry-content .cart_totals h2,
.commerce-entry-content #order_review_heading,
.commerce-entry-content .woocommerce-order-details__title,
.commerce-entry-content .woocommerce-column__title,
.commerce-entry-content .woocommerce-order-details h2,
.commerce-entry-content .woocommerce-MyAccount-content h2,
.commerce-entry-content .woocommerce-Address-title h3 {
  margin: 0 0 18px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 0.98;
  color: var(--forest);
}

.commerce-entry-content .wc-proceed-to-checkout {
  margin-bottom: 0;
  padding-top: 12px;
}

.commerce-entry-content .wc-proceed-to-checkout .checkout-button {
  width: 100%;
}

.commerce-entry-content .checkout_coupon,
.commerce-entry-content .login {
  display: grid;
  gap: 14px;
  margin: 0;
}

.commerce-entry-content .woocommerce-checkout {
  gap: 28px;
}

.commerce-entry-content form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 24px;
  align-items: start;
}

.commerce-entry-content .col2-set {
  display: grid;
  gap: 24px;
}

.commerce-entry-content .woocommerce-billing-fields,
.commerce-entry-content .woocommerce-shipping-fields,
.commerce-entry-content .woocommerce-additional-fields {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.commerce-entry-content .woocommerce-billing-fields h3,
.commerce-entry-content .woocommerce-shipping-fields h3,
.commerce-entry-content .woocommerce-additional-fields h3 {
  margin: 0 0 18px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 0.98;
  color: var(--forest);
}

.commerce-entry-content .woocommerce-billing-fields__field-wrapper,
.commerce-entry-content .woocommerce-shipping-fields__field-wrapper,
.commerce-entry-content .woocommerce-additional-fields__field-wrapper {
  display: grid;
  gap: 14px;
}

.commerce-entry-content .form-row {
  margin: 0;
}

.commerce-entry-content .form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-weight: 700;
}

.commerce-entry-content .woocommerce-checkout-review-order {
  position: sticky;
  top: 110px;
}

.commerce-entry-content #payment {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: 24px;
  background: rgba(255, 251, 240, 0.76);
}

.commerce-entry-content #payment ul.payment_methods {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.commerce-entry-content #payment ul.payment_methods li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}

.commerce-entry-content #payment ul.payment_methods li:last-child {
  border-bottom: 0;
}

.commerce-entry-content #payment div.payment_box {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.commerce-entry-content .place-order {
  margin-top: 16px;
}

.commerce-entry-content .place-order .button {
  width: 100%;
}

.commerce-entry-content .woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.commerce-entry-content .woocommerce-order-overview li {
  padding: 16px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: 22px;
  background: rgba(255, 251, 240, 0.76);
}

.commerce-entry-content .woocommerce-order-overview strong {
  display: block;
  margin-top: 8px;
  color: var(--forest);
}

.commerce-entry-content .woocommerce-thankyou-order-received {
  margin: 0;
  color: var(--forest);
  font-size: 1.1rem;
  font-weight: 700;
}

.commerce-entry-content .woocommerce-account {
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  align-items: start;
}

.commerce-entry-content .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commerce-entry-content .woocommerce-MyAccount-navigation-link a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 251, 240, 0.72);
  color: var(--forest);
  text-decoration: none;
}

.commerce-entry-content .woocommerce-MyAccount-navigation-link.is-active a {
  background: var(--forest);
  color: #fff7dc;
}

.commerce-entry-content .woocommerce-MyAccount-content > *:first-child {
  margin-top: 0;
}

.commerce-entry-content .woocommerce-MyAccount-content .addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.commerce-entry-content .woocommerce-Address {
  padding: 18px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: 24px;
  background: rgba(255, 251, 240, 0.76);
}

.commerce-entry-content .woocommerce-address-fields,
.commerce-entry-content .edit-account,
.commerce-entry-content .woocommerce-form-login,
.commerce-entry-content .woocommerce-form-register,
.commerce-entry-content .lost_reset_password {
  display: grid;
  gap: 14px;
}

.commerce-entry-content .select2-container--default .select2-selection--single,
.commerce-entry-content .select2-container--default .select2-selection--multiple {
  min-height: 50px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.commerce-entry-content .select2-container--default .select2-selection--single .select2-selection__rendered,
.commerce-entry-content .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  color: var(--forest);
  line-height: 48px;
}

.commerce-entry-content .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
}

.product-shell {
  width: min(calc(100% - 32px), 1280px);
  padding: 84px 0 80px;
}

.product-detail {
  display: grid;
  gap: 24px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-breadcrumb a {
  color: inherit;
}

.product-breadcrumb strong {
  color: var(--forest);
  font-weight: 700;
}

.product-detail .woocommerce-notices-wrapper {
  display: grid;
  gap: 12px;
}

.product-detail .woocommerce-error,
.product-detail .woocommerce-info,
.product-detail .woocommerce-message {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: 22px;
  background: rgba(255, 251, 240, 0.9);
  color: var(--forest);
  list-style: none;
  box-shadow: var(--shadow);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.product-gallery-card,
.product-summary-card,
.product-tabs-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 36px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.product-gallery-card {
  position: sticky;
  top: 110px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(147, 113, 129, 0.14), transparent 26%),
    linear-gradient(160deg, rgba(255, 251, 240, 0.88), rgba(247, 232, 177, 0.72));
}

.product-gallery-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 61, 46, 0.92);
  color: #fff7dc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-gallery-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(255, 251, 240, 0.94), rgba(247, 232, 177, 0.66));
}

.product-gallery-main::after {
  content: "";
  position: absolute;
  inset: auto 16% 16px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 61, 46, 0.12), rgba(11, 61, 46, 0) 72%);
}

.product-gallery-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(11, 61, 46, 0.16));
}

.product-gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.product-gallery-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  background: rgba(255, 251, 240, 0.76);
}

.product-gallery-thumb-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-summary-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
}

.product-title {
  margin-bottom: 0;
}

.product-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.product-price-block {
  color: var(--forest);
}

.product-price-block .price {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: inherit;
}

.product-price-block del {
  opacity: 0.45;
}

.product-rating-block .woocommerce-product-rating {
  margin: 0;
}

.product-rating-block .star-rating {
  color: var(--accent);
}

.product-rating-block .woocommerce-review-link {
  color: var(--muted);
  text-decoration: none;
}

.product-summary-copy {
  color: var(--muted);
  line-height: 1.75;
}

.product-summary-copy > *:first-child {
  margin-top: 0;
}

.product-summary-copy > *:last-child {
  margin-bottom: 0;
}

.product-purchase-card {
  padding: 20px;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 28px;
  background: rgba(255, 251, 240, 0.84);
}

.product-purchase-card .cart {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  margin: 0;
}

.product-purchase-card .quantity {
  display: flex;
  align-items: center;
}

.product-purchase-card .quantity .qty {
  width: 92px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(11, 61, 46, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
  font: inherit;
}

.product-purchase-card .single_add_to_cart_button,
.product-purchase-card .button.alt,
.product-purchase-card .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #fff7dc;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(11, 61, 46, 0.18);
}

.product-purchase-card .woocommerce-variation-price {
  margin-bottom: 12px;
  color: var(--forest);
}

.product-purchase-card .variations {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.product-purchase-card .variations th,
.product-purchase-card .variations td {
  padding: 0;
  text-align: left;
  vertical-align: middle;
}

.product-purchase-card .variations label {
  color: var(--forest);
  font-weight: 700;
}

.product-purchase-card .variations select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(11, 61, 46, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
  font: inherit;
}

.product-purchase-card .reset_variations {
  color: var(--accent);
  font-size: 0.86rem;
  text-decoration: none;
}

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

.product-note-card,
.product-meta-panel {
  padding: 18px 20px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: 24px;
  background: rgba(255, 251, 240, 0.76);
}

.product-note-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
}

.product-note-card span {
  color: var(--muted);
  line-height: 1.7;
}

.product-meta-panel .product_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
}

.product-meta-panel .product_meta > span {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-meta-panel .product_meta a,
.product-meta-panel .product_meta .sku {
  color: var(--forest);
}

.product-tabs-card {
  padding: 28px;
}

.product-tabs-card .woocommerce-tabs h2,
.product-tabs-card .woocommerce-Reviews-title,
.product-related-wrap h2 {
  margin: 0 0 20px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
  color: var(--forest);
}

.product-tabs-card .tabs.wc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.product-tabs-card .tabs.wc-tabs li {
  list-style: none;
}

.product-tabs-card .tabs.wc-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 999px;
  background: rgba(255, 251, 240, 0.84);
  color: var(--forest);
  text-decoration: none;
}

.product-tabs-card .tabs.wc-tabs li.active a {
  background: var(--forest);
  color: #fff7dc;
}

.product-tabs-card .woocommerce-Tabs-panel {
  color: var(--muted);
  line-height: 1.75;
}

.product-tabs-card .woocommerce-Tabs-panel > *:first-child {
  margin-top: 0;
}

.product-tabs-card .shop_attributes {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.product-tabs-card .shop_attributes th,
.product-tabs-card .shop_attributes td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  text-align: left;
}

.product-tabs-card .commentlist {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.product-tabs-card .commentlist li {
  padding: 20px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: 24px;
  background: rgba(255, 251, 240, 0.8);
}

.product-tabs-card .comment-form {
  display: grid;
  gap: 14px;
}

.product-tabs-card input:not([type="submit"]):not([type="checkbox"]),
.product-tabs-card textarea,
.product-tabs-card select {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
  font: inherit;
}

.product-tabs-card textarea {
  min-height: 160px;
  resize: vertical;
}

.product-tabs-card .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #fff7dc;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(11, 61, 46, 0.18);
}

.product-related-wrap .related.products {
  display: grid;
  gap: 20px;
}

.product-related-wrap .products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
}

.product-related-wrap .products > li {
  list-style: none;
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}

@media (max-width: 1100px) {
  .wardrobe-category-grid,
  .shop-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .product-related-wrap .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-gallery-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 920px) {
  .wardrobe-hero,
  .contact-hero,
  .shop-hero,
  .footer-intro-row {
    grid-template-columns: 1fr;
  }

  .wardrobe-hero-meta,
  .contact-hero-meta,
  .contact-grid,
  .contact-form-grid,
  .wardrobe-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-copyright {
    text-align: left;
  }

  .commerce-page-head,
  .commerce-page-meta,
  .commerce-entry-content .woocommerce-account,
  .commerce-entry-content .woocommerce-MyAccount-content .addresses,
  .commerce-entry-content .woocommerce-order-overview,
  .commerce-entry-content form.checkout {
    grid-template-columns: 1fr;
  }

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

  .product-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .wardrobe-shell,
  .shop-shell {
    width: min(calc(100% - 24px), 1280px);
    padding: 68px 0 64px;
  }

  .contact-shell,
  .commerce-shell {
    width: min(calc(100% - 24px), 1280px);
    padding: 68px 0 64px;
  }

  .wardrobe-meta-card,
  .contact-meta-card,
  .contact-form-card,
  .contact-info-card,
  .wardrobe-cta,
  .contact-quick-link {
    border-radius: 24px;
  }

  .wardrobe-category-grid,
  .wardrobe-hero-meta,
  .contact-hero-meta,
  .shop-hero-meta,
  .footer-category-links {
    grid-template-columns: 1fr;
  }

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

  .wardrobe-category-media {
    min-height: 200px;
  }

  .wardrobe-cta {
    padding: 22px 18px;
  }

  .contact-form-card,
  .contact-info-card,
  .footer-shell {
    padding: 22px 18px;
  }

  .site-footer {
    padding-inline: 12px;
  }

  .footer-brand-block h2 {
    font-size: 2.2rem;
  }

  .footer-highlight-card strong {
    font-size: 1.6rem;
  }

  .commerce-page-card {
    padding: 22px 18px;
    border-radius: 28px;
  }

  .commerce-page-meta {
    grid-template-columns: 1fr;
  }

  .commerce-meta-card {
    min-height: auto;
  }

  .commerce-entry-content .shop_table,
  .commerce-entry-content .cart_totals,
  .commerce-entry-content .woocommerce-checkout-review-order,
  .commerce-entry-content .woocommerce-MyAccount-navigation,
  .commerce-entry-content .woocommerce-MyAccount-content,
  .commerce-entry-content .woocommerce-order,
  .commerce-entry-content .woocommerce-order-details,
  .commerce-entry-content .woocommerce-customer-details,
  .commerce-entry-content .woocommerce-form-login,
  .commerce-entry-content .woocommerce-form-coupon,
  .commerce-entry-content .woocommerce-ResetPassword,
  .commerce-entry-content .woocommerce-form-register,
  .commerce-entry-content .woocommerce-billing-fields,
  .commerce-entry-content .woocommerce-shipping-fields,
  .commerce-entry-content .woocommerce-additional-fields {
    border-radius: 24px;
  }

  .commerce-entry-content .shop_table th,
  .commerce-entry-content .shop_table td {
    padding: 14px 12px;
    font-size: 0.92rem;
  }

  .commerce-entry-content .coupon,
  .commerce-entry-content .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .commerce-entry-content .coupon #coupon_code,
  .commerce-entry-content .button,
  .commerce-entry-content button.button,
  .commerce-entry-content .wc-proceed-to-checkout .checkout-button,
  .commerce-entry-content .woocommerce-button,
  .commerce-entry-content .place-order .button,
  .commerce-entry-content .actions button,
  .commerce-entry-content .coupon .button {
    width: 100%;
  }

  .shop-toolbar,
  .shop-product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-product-media {
    min-height: 280px;
    padding: 20px;
  }

  .shop-product-body {
    padding: 20px;
  }

  .shop-product-action .button,
  .shop-product-action .added_to_cart {
    width: 100%;
  }

  .product-shell {
    width: min(calc(100% - 24px), 1280px);
    padding: 68px 0 64px;
  }

  .product-gallery-card,
  .product-summary-card,
  .product-tabs-card {
    border-radius: 28px;
  }

  .product-gallery-card,
  .product-summary-card,
  .product-tabs-card {
    padding: 20px;
  }

  .product-gallery-main {
    min-height: 360px;
    padding: 18px;
    border-radius: 24px;
  }

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

  .product-gallery-thumb {
    min-height: 110px;
  }

  .product-purchase-card .cart {
    flex-direction: column;
    align-items: stretch;
  }

  .product-purchase-card .quantity,
  .product-purchase-card .single_add_to_cart_button,
  .product-purchase-card .button.alt,
  .product-purchase-card .button {
    width: 100%;
  }

  .product-tabs-card .tabs.wc-tabs {
    flex-direction: column;
  }

  .product-related-wrap .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
