/* ═══════════════════════════════════════════════
   PLANKFIST — DESIGN TOKENS & GLOBAL STYLES
   Premium bespoke furniture design system
   ═══════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Colors */
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-off-white: #f5f4f0;
  --color-warm-gray: #e8e6e1;
  --color-mid-gray: #b0aca4;
  --color-dark-gray: #3a3835;
  --color-text: #1a1916;
  --color-text-light: #7a7670;
  --color-overlay: rgba(0, 0, 0, 0.25);
  --color-overlay-heavy: rgba(0, 0, 0, 0.45);
  --color-accent: #c8b89a;
  /* warm parchment accent */
  --color-border: #d6d3ce;

  --overlay-bottom: rgba(0, 0, 0, 0.72);
  --overlay-mid: rgba(0, 0, 0, 0.20);
  --overlay-top: rgba(0, 0, 0, 0.04);
  --border-light: rgba(255, 255, 255, 0.18);
  --border-glow: rgba(255, 255, 255, 0.75);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.4, 0, 0.2, 1);

  /* Plankfist site variables */
  --black: #0a0a0a;
  --white: #ffffff;
  --off: #f5f4f0;
  --warm: #eceae5;
  --text: #1a1916;
  --muted: #7a7670;
  --border: #d9d6d0;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', Helvetica, sans-serif;
  --font-heading-source: "Alpha", var(--font-body);

  --fs-xs: 0.6875rem;
  /* 11px */
  --fs-sm: 0.8125rem;
  /* 13px */
  --fs-base: 0.9375rem;
  /* 15px */
  --fs-md: 1.125rem;
  /* 18px */
  --fs-lg: 1.5rem;
  /* 24px */
  --fs-xl: 2rem;
  /* 32px */
  --fs-2xl: 2.75rem;
  /* 44px */
  --fs-3xl: 3.75rem;
  /* 60px */
  --fs-4xl: 5rem;
  /* 80px */

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;

  --ls-wide: 0.12em;
  --ls-wider: 0.2em;
  --ls-widest: 0.32em;

  --lh-tight: 1.1;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-loose: 1.85;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  --sp-40: 10rem;

  /* Layout */
  --max-width: 1440px;
  --header-h: 72px;
  --gutter: clamp(1.5rem, 5vw, 5rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 200ms;
  --dur-base: 380ms;
  --dur-slow: 600ms;
  --dur-xslow: 900ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.06);
  --shadow-md: 0 6px 24px rgba(10, 10, 10, 0.10);
  --shadow-lg: 0 16px 48px rgba(10, 10, 10, 0.14);
  /* Plankfist Anniversary Logo Tokens */
  --pf-black:       #1A1A1A;
  --pf-white:       #FFFFFF;
  --pf-off-white:   #F2F1EF;
  --pf-mid-grey:    #8C8C8C;
  --pf-border-grey: #C8C8C8;
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  cursor: none;
  /* custom cursor active */
}

/* ══════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .25s var(--ease-spring), height .25s var(--ease-spring);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .38s var(--ease-spring),
    height .38s var(--ease-spring),
    border-color .3s ease;
}

.cursor-dot.hover {
  width: 8px;
  height: 8px;
}

.cursor-ring.hover {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 255, 255, .65);
}

/* ══════════════════════════════════════
   VIDEO PROGRESS BAR
══════════════════════════════════════ */


img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}


/* ═══════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════ */
.hero__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 100;
}

/* Logo — animates down + fade in */
/* Logo — animates down + fade in */
.plankfist-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  user-select: none;
  color: var(--white);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .9s var(--ease-spring) .1s,
    transform .9s var(--ease-spring) .1s,
    color .3s ease;
}

.plankfist-logo.in {
  opacity: 1;
  transform: translateY(0);
}

.logo-wordmark {
  font-family: 'Articulat CF Demi Bold', 'Articulat CF', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: none; /* Keep Plankfist title-case */
  letter-spacing: -0.025em;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
  transition: color .3s ease;
}

.logo-divider {
  width: 1px;
  background: currentColor;
  align-self: stretch;
  margin: 0 10px;
  flex-shrink: 0;
  transition: background .3s ease;
}

/* 10th anniversary descriptor beside the wordmark */
.logo-svg-badge {
  display: none;
}

.logo-anniversary-descriptor {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: max-content max-content;
  align-items: start;
  column-gap: 1px;
  row-gap: 1px;
  color: currentColor;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 1px;
}

.logo-anniversary-number {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  grid-column: 1;
  grid-row: 1;
  display: inline-block;
  font-size: 30.9px;
  font-weight: 200;
  letter-spacing: -0.09em;
  line-height: 0.78;
  opacity: 0.92;
  transform: scaleX(0.92);
  transform-origin: left bottom;
}

.logo-anniversary-sup {
  font-size: 6.6px;
  vertical-align: super;
  letter-spacing: 0;
  font-weight: 300;
  opacity: 0.9;
  margin-left: 5px;
  position: relative;
  top: -3px;
}

.logo-anniversary-label,
.logo-anniversary-year {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1;
  color: inherit;
}

.logo-anniversary-label {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 8.8px;
  letter-spacing: 0.205em;
  text-transform: uppercase;
  opacity: 0.9;
}

.logo-anniversary-year {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin-top: 15px;
  padding: 0 2px 1px;
  border-bottom: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.12);
  font-size: 6.85px;
  letter-spacing: 0.02em;
  opacity: 0.78;
}

/* ---- Size variants ---- */
.logo-nav .logo-wordmark  { font-size: 34.68px; }
.logo-small .logo-wordmark { font-size: 17.94px; }
.logo-small .logo-divider  { margin: 0 6px; }

/* ---- Inverse (scrolled/internal pages) and footer variants ---- */
.hero__header--internal .plankfist-logo {
  color: var(--pf-black);
}

.site-footer .plankfist-logo,
.ft .plankfist-logo {
  color: var(--white);
  opacity: 1;
  transform: none;
}

.ft .plankfist-logo {
  opacity: 1;
  transform: none;
}
/* Nav */
.main-nav {
  display: flex;
  gap: 40px;
  list-style: none;
}

.main-nav a {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-weight: 300;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: .5px;
  background: #fff;
  transition: width .38s var(--ease-spring);
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Header icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: none;
  color: rgba(255, 255, 255, .75);
  display: flex;
  align-items: center;
  transition: color .2s;
  padding: 4px;
}

.icon-btn:hover {
  color: #fff;
}

/* Hamburger lines */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 5px 3px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, .82);
  transition: transform .38s var(--ease-spring), opacity .2s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Scroll state */
.hero__header.scrolled {
  position: fixed;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 30px rgba(0,0,0,0.03);
  animation: slideInDown .3s ease;
}

@keyframes slideInDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.hero__header.scrolled .plankfist-logo,
.hero__header.scrolled .main-nav a,
.hero__header.scrolled .icon-btn {
  color: var(--black);
}
.hero__header.scrolled .hamburger span {
  background: var(--black);
}

/* Make hamburger spans and logo white when menu is open globally */
.hero__header.menu-open .hamburger span,
.hero__header.hero__header--internal.menu-open .hamburger span,
.hero__header.scrolled.menu-open .hamburger span {
  background: #fff !important;
}

.hero__header.menu-open .plankfist-logo,
.hero__header.hero__header--internal.menu-open .plankfist-logo,
.hero__header.scrolled.menu-open .plankfist-logo {
  color: #fff !important;
}



/* ═══════════════════════════════════════════════
   FULL OVERLAY MENU
   ═══════════════════════════════════════════════ */
.full-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 95;
  background: var(--color-black, #111);
  display: flex;
  align-items: center;
  padding: var(--header-h) var(--gutter) var(--sp-16);
  opacity: 0;
  pointer-events: none;
  width: 100vw;
  max-width: 480px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}

.full-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.full-menu-inner {
  max-width: 720px;
  width: 100%;
}

.full-menu-primary {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-12);
}

.menu-big-link {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--fw-light);
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: var(--lh-tight);
  transition: color var(--dur-fast);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out),
    color var(--dur-fast);
}

.full-menu.open .menu-big-link {
  opacity: 1;
  transform: translateY(0);
}

.full-menu.open .menu-big-link:nth-child(1) {
  transition-delay: 100ms;
}

.full-menu.open .menu-big-link:nth-child(2) {
  transition-delay: 160ms;
}

.full-menu.open .menu-big-link:nth-child(3) {
  transition-delay: 220ms;
}

.full-menu.open .menu-big-link:nth-child(4) {
  transition-delay: 280ms;
}

.menu-big-link:hover {
  color: var(--color-accent);
}

.full-menu-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-8);
  margin-bottom: var(--sp-12);
}

.full-menu-secondary a {
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-mid-gray);
  transition: color var(--dur-fast);
}

.full-menu-secondary a:hover {
  color: var(--color-white);
}

.full-menu-social {
  display: flex;
  gap: var(--sp-4);
}

.full-menu-credit {
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
}

.full-menu-credit-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a4845;
}

.full-menu-credit-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3a3835;
  margin: 0 4px;
}

.full-menu-credit a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #8a8680;
  transition: color var(--dur-fast);
}

.full-menu-credit a:hover {
  color: #c8c5be;
  opacity: 1;
}

.social-icon {
  color: var(--color-mid-gray);
  transition: color var(--dur-fast);
}

.social-icon:hover {
  color: var(--color-white);
}


/* ═══════════════════════════════════════════════
   HERO — VIDEO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  /* centered */
  justify-content: center;
  /* centered */
  overflow: hidden;
  font-family: var(--font-body);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1714 0%, #2d2820 50%, #1a1412 100%);
  opacity: 0;
  transition: opacity 2s ease;
}

.page-loaded .hero__video-wrap {
  opacity: 1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12) translateY(0px);
  will-change: transform;
  animation: kenBurns 4s var(--ease-spring) forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1.12) translateY(0px);
  }

  to {
    transform: scale(1.04) translateY(0px);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      var(--overlay-bottom) 0%,
      var(--overlay-mid) 48%,
      var(--overlay-top) 100%);
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, .32) 0%, transparent 55%),
    linear-gradient(to top, var(--overlay-bottom) 0%, var(--overlay-mid) 48%, var(--overlay-top) 100%);
}

.hero__content {
  position: relative;
  z-index: 5;
  padding: 0 var(--gutter);
  color: var(--white);
  pointer-events: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__label {
  display: block;
  font-size: 9.5px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
  font-weight: 300;
  margin-bottom: 18px;
  font-family: var(--font-body);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .85s var(--ease-spring) 0s,
    transform .85s var(--ease-spring) 0s;
}

.hero__label.in {
  opacity: 1;
  transform: translateY(0);
}

.hero__headline {
  font-family: var(--font-heading-source);
  font-size: clamp(52px, 7.8vw, 100px);
  font-weight: 400;
  line-height: 1.333;
  letter-spacing: -0.03em;
  margin-bottom: clamp(28px, 5vh, 52px);
  max-width: 11.8em;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

.col-header h2,
.flag-title,
.bstyle-overlay h3,
.bstyle-slide-name,
.page-title,
.page-header h1,
.env-title-block h2,
.product-overlay-name,
.env-label-name,
.ps-hero__title,
.ps-entry__h3,
.ps-entry__subtitle,
.ps-cta__title {
  font-family: var(--font-heading-source);
  font-weight: 400;
  line-height: 1.333;
  -webkit-font-smoothing: antialiased;
}

.line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: .05em;
}

.line-inner {
  display: block;
  transform: translateY(105%);
  transition: transform .95s var(--ease-spring);
}

.line-inner.in {
  transform: translateY(0);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 9.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--font-body);
  color: var(--white);
  text-decoration: none;
  pointer-events: all;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s var(--ease-spring) 0s,
    transform .8s var(--ease-spring) 0s,
    gap .42s var(--ease-spring);
}

.hero__cta.in {
  opacity: 1;
  transform: translateY(0);
}

.hero__cta:hover {
  gap: 32px;
}

.cta-line {
  position: relative;
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, .55);
  flex-shrink: 0;
  transition: width .42s var(--ease-spring);
}

.hero__cta:hover .cta-line {
  width: 62px;
}

.cta-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(255, 255, 255, .8);
  border-right: 1px solid rgba(255, 255, 255, .8);
  transform: translateY(-50%) rotate(45deg);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.cta > span:first-child,
.hero__cta > span:first-child {
  display: inline-block;
  padding-right: 2px;
}

.cta .cta-line,
.hero__cta .cta-line {
  margin-left: 2px;
}

.cta:hover {
  gap: 30px;
}

.flagship .cta,
.bstyle-overlay .cta,
.bstyle-info .cta {
  gap: 24px;
}

.flagship .cta:hover,
.bstyle-overlay .cta:hover,
.bstyle-info .cta:hover {
  gap: 32px;
}

.scroll-indicator {
  position: absolute;
  right: clamp(20px, 3vw, 48px);
  bottom: clamp(40px, 7vh, 84px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 1.1s var(--ease-spring) 0s;
}

.scroll-indicator.in {
  opacity: 1;
}

.scroll-text {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  font-weight: 300;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-track {
  width: 1px;
  height: 68px;
  background: rgba(255, 255, 255, .16);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.scroll-thumb {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, .78);
  animation: scrollDrop 2.2s var(--ease-inout) infinite;
}

@keyframes scrollDrop {
  0% {
    top: -100%;
    opacity: 1;
  }

  65% {
    top: 100%;
    opacity: 1;
  }

  66% {
    top: 100%;
    opacity: 0;
  }

  67% {
    top: -100%;
    opacity: 0;
  }

  100% {
    top: -100%;
    opacity: 1;
  }
}



/* ═══════════════════════════════════════════════
   PRODUCTS PAGE SPECIFICS
   ═══════════════════════════════════════════════ */

/* Internal Page Header */
#site-header.hero__header--internal {
  position: relative;
  background: var(--color-white);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  z-index: 100;
}

.hero__header--internal .logo,
.hero__header--internal .main-nav a,
.hero__header--internal .icon-btn {
  color: var(--color-black);
}

.hero__header--internal .main-nav a:hover {
  color: rgba(0, 0, 0, 0.6);
}

.hero__header--internal .main-nav a::after {
  background: var(--color-black);
}

.hero__header--internal .hamburger span {
  background: var(--color-black);
}

/* Page Intro */
.page-intro {
  padding: calc(var(--header-h) + var(--sp-24)) var(--gutter) var(--sp-12);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.01em;
}

.page-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dim);
  line-height: var(--lh-loose);
  font-weight: 300;
}

/* Product Filters */
.product-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--sp-4);
  flex-wrap: wrap;
  gap: var(--sp-6);
}

.filter-group {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--dur-fast);
  cursor: pointer;
  padding: 4px 0;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-white);
}

.filter-sort {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, 0.5);
}

.sort-select {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: .18em;
  cursor: pointer;
  outline: none;
}

/* Collection Category */
.collection-category {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: .2em;
}



@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@200;300;400&display=swap');

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





/* ── CTA ARROW ── */
.ct .cta:hover {
  gap: 24px
}

.cta-line {
  position: relative;
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: .6;
  flex-shrink: 0;
  transition: width .38s var(--ease);
}

.cta:hover .cta-line {
  width: 54px
}

.cta-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* ═══════════════════════════════
   §1  COLLECTIONS
═══════════════════════════════ */
.collections {
  padding: 72px var(--gutter) 80px
}

.col-header {
  margin-bottom: 48px
}

.col-header h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.col-header p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 680px;
  font-weight: 300
}

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

.col-card {
  display: block;
  background: var(--white);
  transition: background .3s
}

.col-card:hover {
  background: var(--warm)
}

.col-img {
  aspect-ratio: 4/3;
  background: var(--off);
  overflow: hidden;
  position: relative;
}

.col-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transition: opacity .8s ease, transform 1s var(--ease);
}

.col-img .img-primary {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.col-img .img-hover {
  z-index: 2;
  opacity: 0;
  transform: scale(1.05);
}

.col-card:hover .col-img img {
  transform: scale(1.05);
}

.col-card:hover .col-img .img-primary {
  opacity: 0;
  transform: scale(0.95);
}

.col-card:hover .col-img .img-hover {
  opacity: 1;
  transform: scale(1);
}

.col-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 14px;
  border-bottom: 1px solid var(--border);
  margin: 0 2px;
}

.col-name {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 300;
  transition: color .2s
}

.col-card:hover .col-name {
  color: var(--muted)
}

.col-arrow {
  width: 22px;
  height: 1px;
  background: var(--text);
  position: relative;
  flex-shrink: 0;
  transition: width .38s var(--ease);
  opacity: .5;
}

.col-card:hover .col-arrow {
  width: 32px
}

.col-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-top: 1px solid var(--text);
  border-right: 1px solid var(--text);
  transform: translateY(-50%) rotate(45deg);
}

/* ═══════════════════════════════
   §2  FLAGSHIP BANNER
═══════════════════════════════ */
.flagship {
  background: var(--off);
  padding: 52px var(--gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.flag-tag {
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 300;
}

.flag-title {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 6px;
}

.flag-addr {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 300
}

/* ═══════════════════════════════
   §3  B/STYLE — MAIN GRID
═══════════════════════════════ */
.bstyle-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 100vh;
  min-height: 800px;
  background: #fff;
  gap: 3px;
  border-bottom: 3px solid #fff;
}

.bstyle-main {
  position: relative;
  overflow: hidden;
}

.bstyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .62) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 56px);
  color: #fff;
}

.bstyle-overlay h3 {
  font-family: var(--font-d);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  line-height: 1.25;
  max-width: 22ch;
  margin-bottom: 24px;
}

.bstyle-side {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bstyle-side-img {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* ═══════════════════════════════
   §4  B/STYLE — SLIDER ROW
═══════════════════════════════ */
.bstyle-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-top: 1px solid var(--border);
  min-height: 380px;
}


.bstyle-info {
  border-right: 1px solid var(--border);
  padding: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.bstyle-counter {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.bstyle-counter .cur {
  color: var(--text)
}

.bstyle-slide-name {
  font-family: var(--font-d);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 24px;
}

.bstyle-wide {
  overflow: hidden;
  position: relative
}

/* ═══════════════════════════════
   §5  DUAL BRAND SHOWCASE
═══════════════════════════════ */
.dual-brand {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: var(--white);
  padding: 80px 0;
}

.brand-item {
  position: relative;
  width: 50%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.brand-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 700px;
}

.brand-italia .brand-inner {
  grid-template-columns: 1fr 1.2fr;
}

.brand-editions .brand-inner {
  grid-template-columns: 1.2fr 1fr;
}

.brand-bg-cream {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  background: #f8f4f0;
  z-index: 1;
}

.brand-bg-pink {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 70%;
  background: #f7ebe9;
  z-index: 1;
}

.brand-text {
  position: relative;
  z-index: 3;
}

.brand-logo {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--black);
}

.brand-logo span {
  font-weight: 300;
  font-size: 14px;
}

.brand-text h3 {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  font-weight: 500;
  color: var(--black);
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}

.brand-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 2px;
  background: var(--black);
}

.brand-image {
  position: relative;
  z-index: 2;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 1s var(--ease);
}

.brand-item:hover .brand-image img {
  transform: scale(1.05);
}

/* ═══════════════════════════════
   §6  FOOTER
═══════════════════════════════ */
/* ═══════════════════════════════════════════════
   NEW SOPHISTICATED FOOTER
   ═══════════════════════════════════════════════ */
.ft {
  background: #111;
  color: #e8e6e0;
  font-family: var(--font-body);
  font-weight: 300;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 5;
}

.ft a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s, color .2s;
}

.ft a:hover {
  opacity: .5;
}

/* Upper grid */
.ft-upper {
  padding: 80px var(--gutter) 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

/* Brand / address column */
.ft-logo-wrap {
  display: block;
  margin-bottom: 32px;
}

.ft-brand address {
  font-style: normal;
  font-size: 12px;
  line-height: 2.2;
  color: #9e9b94;
  letter-spacing: 0.04em;
}

.ft-brand address a {
  color: #9e9b94;
}

/* Nav columns */
.ft-col-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a6760;
  margin-bottom: 24px;
  font-weight: 500;
}

.ft-col ul {
  list-style: none;
}

.ft-col ul li {
  margin-bottom: 12px;
}

.ft-col ul li a {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #c8c5be;
}

/* Social links */
.ft-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-social a {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #c8c5be;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-social a i {
  font-size: 16px;
  color: #6a6760;
  transition: color .2s;
}

.ft-social a:hover i {
  color: var(--white);
}

/* Legal bar */
.ft-lower {
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 20px;
}

.ft-legal-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.ft-legal-links a {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #6a6760;
}

.ft-legal-links a:hover {
  color: #c8c5be;
  opacity: 1;
}

.ft-copy {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #4a4845;
}

/* Credit bar */
.ft-credit {
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0a0a;
}

.ft-credit-left {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #4a4845;
}

.ft-credit-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-credit-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a4845;
}

.ft-credit-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3a3835;
  margin: 0 4px;
}

.ft-credit-brand {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #8a8680;
}

.ft-credit-brand:hover {
  color: #c8c5be;
  opacity: 1;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

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

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

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

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

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

  .bstyle-main {
    height: 56vw;
    min-height: 320px;
  }

  .bstyle-side {
    flex-direction: row;
    height: 36vw;
    min-height: 200px;
    gap: 3px; 
  }

  .bstyle-row {
    grid-template-columns: 1fr;
  }

  .bstyle-info {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .brand-item {
    width: 100%;
    min-height: auto;
    padding: 40px 20px;
  }

  .brand-inner {
    max-width: 100%;
  }

  .brand-italia .brand-inner {
    grid-template-columns: 1fr 1.2fr;
  }

  .brand-editions .brand-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}


@media(max-width:560px) {
  .brand-inner { 
    grid-template-columns: 1fr !important; 
    gap: 40px; 
  }
  .brand-italia .brand-inner { 
    display: flex; 
    flex-direction: column; 
  }
  .brand-editions .brand-inner { 
    display: flex; 
    flex-direction: column-reverse; 
  }

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

  .bstyle-side {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .foot-mid {
    grid-template-columns: 1fr;
  }

  .foot-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ═══════════════════════════════
   HOME PAGE REFINEMENT LAYER
   Keeps hero unchanged; polishes all sections below it.
═══════════════════════════════ */
.collections,
.flagship,
.bstyle-grid,
.bstyle-row,
.dual-brand,
.ft {
  font-family: var(--font-body);
}

.collections {
  padding: clamp(76px, 9vw, 132px) var(--gutter) clamp(70px, 8vw, 118px);
  background: #fbfaf8;
}

.col-header {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(320px, 1fr);
  align-items: end;
  gap: clamp(32px, 7vw, 96px);
  max-width: 1360px;
  margin: 0 auto clamp(34px, 5vw, 64px);
}

.col-header h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  letter-spacing: -0.025em;
  margin: 0;
}

.col-header p {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.9;
  color: #6d6962;
}

.col-grid {
  max-width: 1360px;
  margin: 0 auto;
  gap: clamp(14px, 1.5vw, 24px);
}

.col-card {
  background: transparent;
  color: inherit;
  text-decoration: none;
}

.col-img {
  aspect-ratio: 16 / 9;
  background: #efede8;
}

.col-img img,
.bstyle-main > img,
.bstyle-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bstyle-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.col-img img {
  position: absolute;
  inset: 0;
  object-fit: contain;
  padding: 0;
  mix-blend-mode: normal;
  transform: scale(1.01);
  transition: transform .95s cubic-bezier(.22,1,.36,1), filter .95s cubic-bezier(.22,1,.36,1);
}

.col-card:hover {
  background: transparent;
}

.col-card:hover .col-img img {
  transform: scale(1.045);
  filter: brightness(.96) saturate(.96);
}

.col-footer {
  padding: 18px 0 0;
  margin: 0;
  border-bottom: 0;
}

.col-name {
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 400;
}

.flagship {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding: clamp(48px, 6vw, 82px) var(--gutter);
  background: #efede8;
}

.flag-title {
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.flag-addr {
  margin-bottom: 0;
}

.flagship .cta {
  justify-self: end;
  margin-bottom: 4px;
}

.bstyle-grid {
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .72fr);
  min-height: clamp(620px, 78vh, 820px);
  height: auto;
  gap: clamp(12px, 1.5vw, 22px);
  padding: clamp(12px, 1.5vw, 22px);
  background: #fff;
  border-bottom: 0;
}

.bstyle-main,
.bstyle-side-img,
.brand-image {
  background: #efede8;
}

.bstyle-wide {
  background: #efede8;
  aspect-ratio: 2079 / 1169;
  overflow: hidden;
}

.bstyle-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,.18) 46%, transparent 78%);
  padding: clamp(30px, 4vw, 64px);
}

.bstyle-overlay h3 {
  font-size: clamp(28px, 4vw, 52px);
  max-width: 13em;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}

.bstyle-side {
  gap: clamp(12px, 1.5vw, 22px);
}

.bstyle-row {
  grid-template-columns: minmax(260px, 30vw) minmax(0, 1fr);
  min-height: clamp(360px, 42vw, 560px);
  border-top: 0;
  border-bottom: 1px solid var(--border);
}

.bstyle-info {
  padding: clamp(34px, 5vw, 70px) clamp(24px, 4vw, 58px);
  border-right: 1px solid var(--border);
}

.bstyle-counter {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .12em;
}

.bstyle-slide-name {
  font-size: clamp(28px, 3.8vw, 52px);
  letter-spacing: -0.03em;
  max-width: 8em;
}

.dual-brand {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--border);
}

.brand-item {
  width: auto;
  min-height: clamp(520px, 56vw, 760px);
  padding: clamp(34px, 5vw, 78px);
  background: #fbfaf8;
}

.brand-inner,
.brand-italia .brand-inner,
.brand-editions .brand-inner {
  grid-template-columns: minmax(140px, .62fr) minmax(220px, 1fr);
  max-width: 760px;
  gap: clamp(24px, 4vw, 56px);
}

.brand-editions .brand-inner {
  grid-template-columns: minmax(220px, 1fr) minmax(140px, .62fr);
}

.brand-bg-cream,
.brand-bg-pink {
  display: none;
}

.brand-logo {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.brand-logo span {
  display: inline-block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-text h3 {
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.035em;
  padding-bottom: 0;
}

.brand-text h3::after {
  display: none;
}

.brand-image {
  box-shadow: none;
  aspect-ratio: 4 / 5.2;
}

.brand-image img {
  mix-blend-mode: normal;
  transform: scale(1.01);
  transition: transform .95s cubic-bezier(.22,1,.36,1), filter .95s cubic-bezier(.22,1,.36,1);
}

.brand-item:hover .brand-image img {
  transform: scale(1.04);
  filter: brightness(.96) saturate(.96);
}

.brand-image-bespoke {
  aspect-ratio: auto;
  align-self: center;
  margin: 32px 0;
}

.brand-image-bespoke img {
  height: auto;
  object-fit: contain;
}

.ft-upper {
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(36px, 5vw, 74px);
}

@media (max-width: 1100px) {
  .col-header,
  .dual-brand,
  .ft-upper {
    grid-template-columns: 1fr 1fr;
  }

  .bstyle-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bstyle-main {
    min-height: clamp(440px, 60vw, 680px);
  }

  .bstyle-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .bstyle-side-img {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .collections {
    padding-top: 70px;
  }

  .col-header,
  .col-grid,
  .flagship,
  .bstyle-row,
  .dual-brand,
  .brand-inner,
  .brand-italia .brand-inner,
  .brand-editions .brand-inner,
  .ft-upper {
    grid-template-columns: 1fr;
  }

  .col-header {
    gap: 18px;
  }

  .col-grid {
    gap: 28px;
  }

  .flagship .cta {
    justify-self: start;
  }

  .bstyle-grid {
    padding: 0;
    gap: 1px;
  }

  .bstyle-main {
    min-height: 520px;
  }

  .bstyle-side {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .bstyle-side-img {
    min-height: 280px;
  }

  .bstyle-info {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    min-height: 260px;
  }

  .bstyle-wide {
    min-height: 340px;
  }

  .brand-item {
    min-height: auto;
    padding: 48px var(--gutter);
  }

  .brand-editions .brand-inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .brand-image {
    aspect-ratio: 5 / 4;
  }

  .ft-lower,
  .ft-credit {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .col-img,
  .brand-image {
    aspect-ratio: 1 / 1.05;
  }

  .bstyle-main {
    min-height: 460px;
  }

  .bstyle-overlay h3,
  .bstyle-slide-name,
  .brand-text h3 {
    letter-spacing: -0.025em;
  }

  .ft-legal-links {
    gap: 14px 22px;
  }
}

/* ═══════════════════════════════════════════════
   PRODUCT PAGE SPECIFIC
   ═══════════════════════════════════════════════ */

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 120px var(--gutter) 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a, .breadcrumb span {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-text);
}

.breadcrumb .sep {
  color: rgba(0, 0, 0, 0.1);
}

.breadcrumb--hero {
  position: absolute;
  z-index: 4;
  top: 118px;
  left: var(--gutter);
  padding: 0;
}

.breadcrumb--hero a,
.breadcrumb--hero span {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb--hero a:hover {
  color: #fff;
}

.breadcrumb--hero .sep {
  color: rgba(255, 255, 255, 0.26);
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 48px var(--gutter) 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.page-header p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-light);
  font-weight: 300;
  max-width: 560px;
}

/* ── FILTER BAR ── */
.filter-bar {
  position: sticky;
  top: 80px;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  height: 52px;
  gap: 0;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  padding: 0 24px 0 0;
  cursor: pointer;
  height: 100%;
  border-right: 1px solid var(--border);
  transition: color .2s;
  white-space: nowrap;
}

.filter-btn:first-child {
  padding-left: 0;
}

.filter-btn:hover {
  color: var(--color-mid-gray);
}

.filter-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform .3s;
}

.filter-btn.open svg.chevron {
  transform: rotate(180deg);
}

.filter-sep {
  flex: 1;
}

.sort-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  padding: 0 0 0 24px;
  cursor: pointer;
  height: 100%;
  border-left: 1px solid var(--border);
  transition: color .2s;
  white-space: nowrap;
}

.sort-btn:hover {
  color: var(--color-mid-gray);
}

.sort-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ── DROPDOWN PANELS ── */
.dropdown-overlay {
  display: none;
  position: fixed;
  top: 132px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px var(--gutter) 48px;
  z-index: 89;
  animation: slideDown .25s ease;
}

.dropdown-overlay.open {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  margin-bottom: 24px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tag {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 8px 20px;
  border: 1px solid #d4d4d4;
  background: var(--white);
  cursor: pointer;
  transition: all .2s;
}

.filter-tag:hover, .filter-tag.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.close-dropdown {
  position: absolute;
  top: 24px;
  right: var(--gutter);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
}

.close-dropdown:hover {
  color: var(--black);
}

/* sort panel */
.sort-panel {
  display: none;
  position: fixed;
  top: 132px;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  padding: 24px 32px;
  z-index: 89;
  min-width: 220px;
  animation: slideDown .25s ease;
}

.sort-panel.open {
  display: block;
}

.sort-option {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  color: var(--black);
  transition: color .2s;
}

.sort-option:last-child {
  border: none;
}

.sort-option:hover, .sort-option.active {
  color: var(--color-mid-gray);
}

.sort-option.active::after {
  content: ' ✓';
  color: var(--black);
}

/* ── ACTIVE FILTERS ── */
.active-filters {
  padding: 16px var(--gutter);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  min-height: 0;
  transition: all .3s;
}

.active-filter-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}

.active-filter-chip span {
  opacity: .6;
  font-size: 14px;
  line-height: 1;
}

.clear-all {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 0;
  margin-left: 8px;
}

.clear-all:hover {
  color: var(--black);
}

/* ── PRODUCT COUNT ── */
.product-count {
  padding: 0 var(--gutter) 20px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
}

/* ── PRODUCT GRID ── */
.products-section {
  padding: 0 var(--gutter);
}

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

/* ── PRODUCT CARD with POLIFORM animation ── */
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--color-off-white);
  cursor: pointer;
  aspect-ratio: 4/5;
}

.product-card:hover .product-img-light {
  opacity: 0;
}

.product-card:hover .product-img-dark {
  opacity: 1;
}

.product-card:hover .product-info-overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover .product-img-light {
  transform: scale(1.03);
}

.product-img-light {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .55s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
}

.product-img-dark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .55s cubic-bezier(.4, 0, .2, 1);
  z-index: 2;
  filter: brightness(.35) contrast(1.1);
}

/* Dark overlay effect on hover like Poliform */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .4) 40%, transparent 70%);
  opacity: 0;
  transition: opacity .45s ease;
  z-index: 3;
}

.product-card:hover::after {
  opacity: 1;
}

.product-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 28px;
  z-index: 4;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.4, 0, .2, 1);
}

.product-overlay-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: .01em;
  margin-bottom: 6px;
}

.product-overlay-category {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.product-overlay-arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-overlay-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

/* static label below card (like bonaldo) */
.product-label {
  padding: 16px 0 20px;
}

.product-label-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  letter-spacing: .02em;
  display: block;
  margin-bottom: 3px;
}

.product-label-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
}

/* card wrapper (card+label) */
.product-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.product-item:hover .product-label-name {
  color: var(--color-text-light);
}

/* ── LOAD MORE ── */
.load-more-wrap {
  padding: 60px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.load-more-wrap .progress-bar {
  width: 200px;
  height: 1px;
  background: var(--border);
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--black);
  width: 11.7%;
}

.progress-text {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
}

.load-more-btn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 40px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: all .25s;
  margin-top: 8px;
}

.load-more-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* ── ENVIRONMENT SECTION ── */
.environment-section {
  padding: 80px var(--gutter);
  border-top: 1px solid var(--border);
}

.env-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.env-title-block h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}

.env-title-block p {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--color-mid-gray);
  max-width: 420px;
  line-height: 1.7;
}

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

.env-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--color-off-white);
  text-decoration: none;
}

.env-card:hover .env-img {
  transform: scale(1.05);
  filter: brightness(.5);
}

.env-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1), filter .6s ease;
}

.env-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1), filter .6s ease;
}

.env-card:hover .env-img-placeholder {
  filter: brightness(.4);
  transform: scale(1.05);
}

.env-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.env-label-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: .02em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}

/* Overlay for dropdowns */
.page-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
}

.page-overlay.visible {
  display: block;
}

/* Refined product catalogue */
.hero__header--internal {
  min-width: 0;
}

.hero__header--internal .plankfist-logo {
  flex-shrink: 1;
  min-width: 0;
}

.hero__header--internal .logo-anniversary-descriptor {
  color: inherit;
}

.breadcrumb {
  padding-top: calc(var(--header-h) + 34px);
}

.page-header {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(320px, 1fr);
  align-items: end;
  gap: clamp(36px, 7vw, 96px);
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 78px) var(--gutter) clamp(30px, 4vw, 54px);
  text-align: left;
}

.page-header h1 {
  font-size: clamp(48px, 7vw, 92px);
}

.page-header p {
  max-width: 680px;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.85;
}

.filter-bar {
  top: var(--header-h);
  min-height: 56px;
  height: auto;
  gap: 0;
}

.filter-btn,
.sort-btn {
  min-height: 56px;
}

.filter-btn:focus-visible,
.sort-btn:focus-visible,
.filter-tag:focus-visible,
.load-more-btn:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.filter-tag {
  border-radius: 0;
}

.active-filters {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 18px;
  padding-bottom: 12px;
}

.product-count {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 4px;
}

.products-section {
  max-width: 1360px;
  margin: 0 auto;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
  align-items: start;
}

.product-item {
  color: inherit;
  gap: 14px;
}

.product-card {
  aspect-ratio: 4 / 5;
  background: #f4f1ec;
  isolation: isolate;
}

.product-img-light,
.product-img-dark {
  object-fit: contain;
  padding: clamp(16px, 2vw, 30px);
  transform: scale(1.001);
  transition:
    opacity .62s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1, .36, 1),
    filter .82s cubic-bezier(.22, 1, .36, 1);
}

.product-card:hover .product-img-light,
.product-item:focus-visible .product-img-light {
  opacity: 0;
  transform: scale(1.01);
}

.product-card:hover .product-img-dark,
.product-item:focus-visible .product-img-dark {
  opacity: 1;
  transform: scale(1.01);
}

.product-img-dark {
  filter: brightness(.46) contrast(1.04) saturate(.94);
}

.product-card::after {
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.28) 42%, transparent 72%);
  transition: opacity .52s cubic-bezier(.22, 1, .36, 1);
}

.product-card:hover::after,
.product-item:focus-visible .product-card::after {
  opacity: 1;
}

.product-info-overlay {
  padding: clamp(20px, 2.3vw, 30px);
  transform: translateY(10px);
  transition:
    opacity .48s cubic-bezier(.22, 1, .36, 1),
    transform .48s cubic-bezier(.22, 1, .36, 1);
}

.product-card:hover .product-info-overlay,
.product-item:focus-visible .product-info-overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-overlay-name {
  font-size: clamp(19px, 1.8vw, 25px);
}

.product-overlay-arrow {
  border-radius: 999px;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), border-color .42s ease;
}

.product-card:hover .product-overlay-arrow,
.product-item:focus-visible .product-overlay-arrow {
  transform: translateX(4px);
  border-color: rgba(255,255,255,.72);
}

.product-label {
  padding: 0 0 10px;
}

.product-label-name {
  font-size: 15px;
  transition: color .24s ease;
}

.product-label-sub {
  display: block;
  margin-top: 5px;
}

.empty-products {
  grid-column: 1 / -1;
  min-height: 240px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--color-mid-gray);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.load-more-btn:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.environment-section {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.env-grid {
  gap: clamp(12px, 1.4vw, 22px);
}

.env-card {
  aspect-ratio: 4 / 5;
}

.env-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.52), rgba(0,0,0,0) 58%);
  pointer-events: none;
}

.env-label {
  z-index: 1;
}

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

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

  .hero__header--internal .logo-nav .logo-wordmark {
    font-size: 28px;
  }

  .hero__header--internal .logo-anniversary-descriptor {
    transform: scale(.88);
    transform-origin: left center;
  }

  .breadcrumb {
    padding-top: calc(var(--header-h) + 26px);
  }

  .page-header {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 38px;
  }

  .filter-bar {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

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

  .filter-sep {
    min-width: 20px;
  }

  .dropdown-overlay,
  .sort-panel {
    top: calc(var(--header-h) + 56px);
  }

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

  .product-info-overlay {
    opacity: 1;
    transform: none;
    padding: 20px;
  }

  .product-card::after {
    opacity: .78;
  }
}

@media (max-width: 620px) {
  .breadcrumb {
    display: none;
  }

  .page-header {
    padding-top: calc(var(--header-h) + 34px);
  }

  .filter-btn,
  .sort-btn {
    padding-right: 18px;
    padding-left: 18px;
  }

  .filter-btn:first-child {
    padding-left: 0;
  }

  .dropdown-overlay {
    max-height: calc(100vh - var(--header-h) - 56px);
    overflow: auto;
    padding: 28px var(--gutter) 34px;
  }

  .sort-panel {
    left: var(--gutter);
    right: var(--gutter);
    min-width: 0;
  }

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

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

  .product-card,
  .env-card {
    aspect-ratio: 5 / 6;
  }

  .load-more-wrap {
    padding-top: 42px;
    padding-bottom: 58px;
  }
}

/* ═══════════════════════════════════════════════
   § P/STYLE PAGE SPECIFIC
   ═══════════════════════════════════════════════ */

.ps-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--color-black);
}

.ps-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.1s ease-out; /* Parallax speed */
  will-change: transform;
}

.ps-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

.ps-hero__label {
  position: absolute;
  top: 140px;
  left: var(--gutter);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.page-loaded .ps-hero__label {
  opacity: 1;
  transform: translateY(0);
}

.ps-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 var(--gutter) 80px;
  max-width: 1000px;
  color: var(--white);
}

.ps-hero__title {
  font-size: clamp(36px, 5vw, 68px);
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  max-width: 11.8em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease) 0.3s, transform 1s var(--ease) 0.3s;
}

.page-loaded .ps-hero__title {
  opacity: 1;
  transform: translateY(0);
}

.ps-hero__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease) 0.6s, transform 1s var(--ease) 0.6s;
}

.page-loaded .ps-hero__desc {
  opacity: 1;
  transform: translateY(0);
}

.ps-hero__desc p + p {
  margin-top: 20px;
}

/* ── STYLE BLOCKS ── */
.ps-entry {
  display: flex;
  width: 100%;
  min-height: 100vh;
  border-bottom: 1px solid var(--border);
}

.ps-entry:last-child {
  border-bottom: none;
}

.ps-entry__text {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--gutter);
  background: var(--white);
  position: relative;
  z-index: 2;
}

.ps-entry__photo {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  background: var(--color-warm-gray);
}

.ps-entry__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.ps-entry:hover .ps-entry__photo img {
  transform: scale(1.06);
}

.ps-entry.rev {
  flex-direction: row-reverse;
}

.ps-entry__h3 {
  font-family: var(--font-d);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.ps-entry__subtitle {
  font-family: var(--font-d);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.ps-entry__desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 48px;
  max-width: 420px;
}

.ps-entry__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: opacity 0.3s var(--ease);
}

.ps-entry__link:hover {
  opacity: 0.6;
}

.ps-entry__link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.4s var(--ease);
}

.ps-entry__link:hover svg {
  transform: translateX(8px);
}

/* ── CATALOGUE CTA ── */
.ps-cta {
  background: var(--color-black);
  padding: 140px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.ps-cta::after {
  content: 'P/Style';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-d);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.ps-cta__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.ps-cta__title {
  font-family: var(--font-d);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 300;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.ps-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--white);
  padding: 20px 48px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.ps-cta__btn:hover {
  background: var(--color-accent);
}

.ps-cta__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
}

@media (max-width: 900px) {
  .ps-entry, .ps-entry.rev {
    flex-direction: column;
    min-height: auto;
  }
  .ps-entry__photo {
    min-height: 60vw;
  }
  .ps-entry__text {
    padding: 60px var(--gutter);
  }
  .ps-hero {
    min-height: 600px;
  }
  .ps-hero__content {
    padding-bottom: 60px;
  }
}

/* Mobile responsiveness polish: preserve desktop header logic, clamp layouts to viewport. */
@media (max-width: 760px) {
  :root {
    --header-h: 74px;
    --gutter: clamp(14px, 4.25vw, 20px);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body > * {
    max-width: 100vw;
  }

  .hero__header,
  #site-header.hero__header--internal {
    position: absolute;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter);
    gap: 14px;
  }

  .hero__header.scrolled {
    position: fixed;
  }

  .hero__header .plankfist-logo,
  .hero__header--internal .plankfist-logo,
  .hero__header.scrolled .plankfist-logo {
    color: inherit;
    flex: 0 1 auto;
    max-width: calc(100vw - (var(--gutter) * 2) - 58px);
    min-width: 0;
    transform: none;
    overflow: visible;
  }

  .hero__header:not(.scrolled):not(.hero__header--internal) .plankfist-logo {
    color: var(--white);
  }

  .hero__header--internal .plankfist-logo,
  .hero__header.scrolled .plankfist-logo {
    color: var(--black);
  }

  .logo-nav .logo-wordmark,
  .hero__header--internal .logo-nav .logo-wordmark {
    font-size: clamp(21px, 6.1vw, 28px);
    letter-spacing: -0.03em;
    min-width: 0;
  }

  .logo-divider {
    height: 31px;
    align-self: center;
    margin: 0 6px;
  }

  .logo-anniversary-descriptor,
  .hero__header--internal .logo-anniversary-descriptor {
    transform: scale(.72);
    transform-origin: left center;
  }

  .logo-anniversary-number {
    font-size: 29px;
  }

  .logo-anniversary-sup {
    font-size: 6px;
    margin-left: 4px;
    top: -3px;
  }

  .logo-anniversary-label {
    font-size: 7.8px;
    letter-spacing: .18em;
  }

  .logo-anniversary-year {
    margin-top: 14px;
    font-size: 6.2px;
  }

  .main-nav {
    display: none !important;
  }

  .header-icons {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 0;
  }

  .header-icons .icon-btn {
    display: none;
  }

  .hamburger {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 101;
  }

  .hamburger span {
    width: 21px;
  }

  .hero__header--internal .hamburger span,
.hero__header.scrolled .hamburger span {
  background: var(--black);
}

.hero__header.menu-open .hamburger span,
.hero__header.hero__header--internal.menu-open .hamburger span,
.hero__header.scrolled.menu-open .hamburger span {
  background: #fff;
}

.hero__header.menu-open .plankfist-logo,
.hero__header.hero__header--internal.menu-open .plankfist-logo,
.hero__header.scrolled.menu-open .plankfist-logo {
  color: #fff;
}

  .full-menu {
    inset: 0;
    width: 100%;
    max-width: none;
    padding: calc(var(--header-h) + 26px) var(--gutter) 38px;
    overflow-y: auto;
  }

  .full-menu-inner {
    max-width: none;
    min-height: calc(100svh - var(--header-h) - 64px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
  }

  .full-menu-primary {
    gap: 10px;
    margin-bottom: 30px;
  }

  .menu-big-link {
    font-size: clamp(34px, 12vw, 54px);
    line-height: 1.04;
  }

  .full-menu-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-bottom: 28px;
  }

  .full-menu-secondary a {
    font-size: 10px;
    line-height: 1.4;
  }

  .full-menu-social {
    gap: 18px;
  }

  .full-menu-credit {
    margin-top: 26px;
    padding-top: 18px;
    flex-wrap: wrap;
    font-size: 9.5px;
    letter-spacing: .12em;
  }

  .breadcrumb {
    display: flex;
    padding-top: calc(var(--header-h) + 20px);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .breadcrumb--hero {
    top: calc(var(--header-h) + 18px);
    left: var(--gutter);
    padding: 0;
  }

  .page-header {
    padding-top: 30px;
  }

  .hero__content {
    padding-inline: var(--gutter);
  }

  .hero,
  .collections,
  .flagship,
  .bstyle-grid,
  .bstyle-row,
  .dual-brand,
  .ft,
  .products-section,
  .environment-section,
  .ps-hero,
  .ps-entry,
  .ps-cta {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .bstyle-wide,
  .bstyle-wide img,
  .bstyle-main,
  .bstyle-main > img,
  .bstyle-side,
  .bstyle-side-img,
  .bstyle-side-img img {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .filter-bar {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: 56px;
    overflow: visible;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .filter-sep {
    display: none;
  }

  .filter-btn,
  .sort-btn {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    height: 46px;
    min-width: 0;
    padding: 0 12px;
    border: 0;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
  }

  .product-grid,
  .env-grid,
  .col-grid,
  .ft-upper,
  .ft-lower,
  .ft-credit {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .ft-credit-right,
  .ft-credit-left {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .hero__header,
  #site-header.hero__header--internal {
    gap: 10px;
  }

  .hero__header .plankfist-logo,
  .hero__header--internal .plankfist-logo,
  .hero__header.scrolled .plankfist-logo {
    max-width: calc(100vw - (var(--gutter) * 2) - 50px);
  }

  .logo-nav .logo-wordmark,
  .hero__header--internal .logo-nav .logo-wordmark {
    font-size: clamp(19px, 5.7vw, 24px);
  }

  .logo-divider {
    height: 30px;
    margin: 0 5px;
  }

  .logo-anniversary-descriptor,
  .hero__header--internal .logo-anniversary-descriptor {
    transform: scale(.62);
  }

  .hamburger {
    width: 40px;
    height: 40px;
  }

  .filter-btn,
  .sort-btn {
    min-width: 0;
  }
}

/* Stable product filter system across desktop, tablet, and mobile. */
.product-filter-shell {
  position: sticky;
  top: var(--header-h);
  z-index: 92;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.filter-bar {
  isolation: isolate;
  position: relative;
  top: auto;
  z-index: 1;
  border: 0;
}

.filter-btn,
.sort-btn {
  min-width: 0;
}

.dropdown-overlay,
.sort-panel {
  box-shadow: 0 20px 48px rgba(0, 0, 0, .06);
}

.page-overlay.visible {
  z-index: 88;
}

@media (min-width: 901px) {
  .product-filter-shell {
    top: var(--header-h);
  }

  .filter-bar {
    flex-wrap: nowrap;
    height: 56px;
    overflow: visible;
  }

  .filter-btn,
  .sort-btn {
    flex: 0 0 auto;
    height: 100%;
  }

  .filter-sep {
    display: block;
    flex: 1 1 auto;
  }

  .dropdown-overlay,
  .sort-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .sort-panel {
    left: auto;
    right: 0;
  }
}

@media (max-width: 900px) {
  .product-filter-shell {
    position: relative;
    top: auto;
    z-index: 20;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .filter-bar {
    position: relative;
    top: auto;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
  }

  .filter-btn,
  .sort-btn {
    width: 100%;
    height: 56px;
    justify-content: center;
    padding: 0 12px;
    border: 0;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 10px;
    letter-spacing: .16em;
    white-space: nowrap;
  }

  .filter-btn:nth-of-type(2),
  .sort-btn {
    border-right: 0;
  }

  .filter-sep {
    display: none;
  }

  .dropdown-overlay,
  .sort-panel {
    position: static;
    left: 0;
    right: 0;
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 28px var(--gutter) 34px;
    border: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
    animation: none;
  }

  .sort-panel {
    min-width: 0;
  }

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

  .filter-tag {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    text-align: center;
  }

  .close-dropdown {
    top: 18px;
  }

  .page-overlay.visible {
    display: none;
  }
}

@media (max-width: 420px) {
  .filter-btn,
  .sort-btn {
    height: 52px;
    font-size: 9px;
    letter-spacing: .14em;
    gap: 6px;
  }

  .filter-btn svg,
  .sort-btn svg {
    width: 13px;
    height: 13px;
  }

  .dropdown-overlay,
  .sort-panel {
    max-height: none;
  }
}
