/** Shopify CDN: Minification failed

Line 490:14 Expected identifier but found whitespace
Line 490:15 Unexpected "var("

**/
/* Zuuma — theme layout & section styles */

/* Prevent Shopify-injected script/noscript nodes from leaking as visible text */
script, noscript, template { display: none !important; }

/* Language visibility — driven by <html lang="de"> set in layout */
html[lang="de"] .lang-en { display: none !important; }
html:not([lang="de"]) .lang-de { display: none !important; }

/* ============ ANNOUNCEMENT BAR (marquee at top) ============
   Quiet, editorial. Not a shoutband. Slow, low-contrast text.          */
.marquee-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141413;
  color: var(--off-white);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  gap: 44px;
  padding-inline: 24px;
  flex-wrap: nowrap;
  max-width: 100%;
}
.m-item {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.54);
  white-space: nowrap;
  font-weight: 400;
}
.m-dot { color: var(--accent); font-size: 10px; opacity: 0.55; }
@media (hover: hover) {
  .marquee-strip:hover .marquee-track { animation-play-state: paused; }
}

/* ============ LANGUAGE SWITCH ============
   Renders only when the shop has 2+ published languages. Two
   placements: compact in the announcement bar (right-aligned) and
   tucked into the footer-bottom row.                                  */
/* Mobile menu */
.nav-burger { display: none; }
.mobile-menu { display: none; }
.nav-lang-mobile { display: none; }
.lang-switch { margin: 0; padding: 0; }
.lang-switch-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.lang-switch-item { display: inline-flex; align-items: center; }
.lang-switch-item + .lang-switch-item::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 10px;
  background: currentColor;
  opacity: 0.28;
  margin: 0 2px;
}
.lang-switch-btn {
  appearance: none;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.55;
  padding: 6px 8px;
  cursor: pointer;
  transition: opacity 0.2s, color 0.2s;
}
.lang-switch-btn:hover { opacity: 1; }
.lang-switch-btn.is-active { opacity: 1; color: var(--accent); }
.lang-switch-btn:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
  opacity: 1;
}

/* Announcement bar placement: pinned to the right edge */
.marquee-strip {
  /* allow the switch to sit absolute over the centered track */
}
.marquee-strip .lang-switch {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--off-white);
}
.marquee-strip .lang-switch-btn { font-size: 9.5px; padding: 4px 6px; }

/* Footer placement: inline between copyright and "Made in Berlin" */
.footer-bottom .lang-switch { color: var(--off-white); opacity: 0.85; }
.footer-bottom .lang-switch-btn { font-size: 11px; padding: 4px 8px; }

/* ============ NAV / HEADER ============ */
.site-header {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
  pointer-events: none;
  transition: background 0.35s var(--ease), padding 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header > * { pointer-events: all; }
.site-header.is-scrolled {
  background: rgba(249, 248, 246, 0.9);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: rgba(0,0,0,0.06);
  padding: 16px 60px;
  box-shadow: 0 8px 24px -20px rgba(0,0,0,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.68;
  font-weight: 500;
  transition: opacity 0.25s, color 0.25s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
  opacity: 1 !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--black);
  padding: 10px 18px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav-cta:hover { background: var(--black); color: var(--off-white); }
.nav-cta-label { display: inline-block; color: inherit; }
.nav-cta-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover .nav-cta-count { background: var(--off-white); color: var(--black); }

/* ============ HERO ============ */
.hero-pin {
  position: relative;
  min-height: 100vh;
  padding-top: var(--announce-h);
}

#hero {
  min-height: calc(100vh - var(--announce-h));
  display: grid;
  grid-template-columns: 58% 42%;
  position: relative;
}

.hero-image-side {
  position: relative;
  background: var(--off-white);
  overflow: hidden;
}

.bag-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.bag-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bag-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.bag-slide--active {
  opacity: 1;
  pointer-events: auto;
}
.bag-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bag-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.bag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.35s, transform 0.35s;
}

.bag-dot--active {
  background: #0c0c0c;
  transform: scale(1.6);
}

.hero-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 96px 120px 112px;
  position: relative;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(64px, 7.4vw, 112px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0 0 36px;
  max-width: 11ch;
  color: var(--black);
}
.hero-headline em {
  font-style: italic;
  display: block;
  font-size: 0.6em;
  line-height: 1.1;
  color: rgba(0,0,0,0.55);
  margin-top: 4px;
}
.hero-divider {
  width: 56px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 36px;
  opacity: 0.9;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0,0,0,0.78);
  max-width: 420px;
  margin: 0 0 44px;
  font-weight: 300;
}
.hero-desc br + br { display: block; content: ''; margin-top: 1em; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-price {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--black);
  position: relative;
  padding-right: 28px;
}
.hero-price::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background: rgba(0, 0, 0, 0.2);
}

/* Scroll cue at hero base — quiet: rail + dot only */
.hero-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 16px;
  opacity: 0;
  pointer-events: auto;
  transition:
    opacity 0.8s var(--ease-hi),
    transform 0.3s var(--ease);
  will-change: opacity, transform;
}
.hero-scroll-cue.is-in { opacity: 0.6; }
.hero-scroll-cue:hover { opacity: 1; }
.hero-scroll-cue.is-gone {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.hero-scroll-rail {
  position: relative;
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.14);
  overflow: hidden;
}
.hero-scroll-dot {
  position: absolute;
  top: -10px; left: -2px;
  width: 5px;
  height: 10px;
  background: var(--accent);
  animation: scroll-cue-dot 2.4s var(--ease-hi) infinite;
}
@keyframes scroll-cue-dot {
  0%   { transform: translateY(0); opacity: 0; }
  15%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translateY(58px); opacity: 0; }
}

/* Buttons — simple, high-contrast hover. No overlay that ever sits above text. */
.btn-primary {
  position: relative;
  isolation: isolate;
  background: var(--black);
  color: var(--off-white);
  padding: 19px 36px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: background 0.35s var(--ease), color 0.15s linear, border-color 0.35s var(--ease);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}
.btn-primary:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }

.btn-primary-label { display: inline-block; color: inherit; }
.btn-primary-arrow {
  display: inline-block;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  transform: translateX(0);
  transition: transform 0.3s var(--ease);
  color: inherit;
}
.btn-primary:hover .btn-primary-arrow,
.btn-primary:focus-visible .btn-primary-arrow { transform: translateX(4px); }

.btn-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.58);
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(0,0,0,0.14);
  transition: color 0.25s, border-color 0.25s;
}
.btn-link:hover { color: var(--black); border-bottom-color: var(--black); }

/* ============ FEATURE SCENE (new) ============ */
[data-feature-scene] {
  position: relative;
  padding: 140px 60px 180px;
  background: var(--off-white);
}
[data-feature-scene].feature-scene-alt { background: var(--warm-grey); }
[data-feature-scene].feature-scene-alt .feature-scene {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
[data-feature-scene].feature-scene-alt .feature-scene-visual { order: 2; }
[data-feature-scene].feature-scene-alt .feature-scene-narrative { order: 1; }

.feature-scene-head {
  max-width: 880px;
  margin: 0 auto 100px;
  text-align: center;
}
.feature-scene-head .eyebrow { margin-bottom: 22px; }
#apron-features .feature-scene-head .eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(64px, 7.4vw, 112px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.022em;
  text-transform: none;
  margin-bottom: 0;
}
.feature-scene-head h2.section-h {
  margin: 0 auto;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(64px, 7.4vw, 112px) !important;
  font-weight: 300 !important;
  line-height: 0.98;
  letter-spacing: -0.022em;
}
.feature-scene-head h2.section-h em {
  font-style: italic;
  display: block;
  font-size: 0.6em;
  line-height: 1.1;
  color: rgba(0,0,0,0.32);
}
  font-family: var(--serif);
  font-size: clamp(64px, 7.4vw, 112px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.022em;
}
.feature-scene-head .section-h em {
  font-style: italic;
  display: block;
  font-size: 0.6em;
  line-height: 1.1;
}
.feature-scene-sub {
  margin: 28px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(0,0,0,0.76);
}

.feature-scene {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 100px;
  align-items: start;
}

/* Sticky visual column */
.feature-scene-visual {
  position: sticky;
  top: 120px;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 28px;
  align-items: stretch;
}
.feature-visual-stack {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--warm-grey);
  overflow: hidden;
}
[data-feature-scene].feature-scene-alt .feature-visual-stack { background: #d9d4cb; }
.feature-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  will-change: opacity;
}
.feature-visual.is-active { opacity: 1; }
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-visual-caption {
  position: absolute;
  left: 28px; bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--off-white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease) 0.25s, transform 0.6s var(--ease) 0.25s;
  text-shadow: 0 1px 14px rgba(0,0,0,0.35);
  pointer-events: none;
}
.feature-visual.is-active .feature-visual-caption { opacity: 1; transform: translateY(0); }
.feature-visual-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
}
.feature-visual-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.feature-progress {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 12px;
  align-self: center;
}
.feature-progress-tick {
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(0,0,0,0.12);
  margin-left: 11px;
  transition: background 0.4s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
  transform-origin: left center;
}
.feature-progress-tick.is-active {
  background: var(--accent);
  width: 2px;
  margin-left: 10px;
}

/* Narrative column */
.feature-scene-narrative {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-card {
  position: relative;
  padding: 58px 0 58px 28px;
  border-top: 1px solid rgba(0,0,0,0.12);
  opacity: 0.3;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), padding-left 0.5s var(--ease);
  transform: translateX(0);
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height 0.55s var(--ease);
}
[data-feature-scene].feature-scene-alt .feature-card { border-top-color: rgba(0,0,0,0.14); }
.feature-card:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
[data-feature-scene].feature-scene-alt .feature-card:last-child { border-bottom-color: rgba(0,0,0,0.14); }
.feature-card.is-active {
  opacity: 1;
  transform: translateX(4px);
  padding-left: 36px;
}
.feature-card.is-active::before {
  height: 64px;
  box-shadow: 0 0 16px rgba(79,205,196,0.35);
}

.feature-card-index {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
}
.feature-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--accent);
}
.feature-card-total {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(0,0,0,0.45);
}
.feature-card-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.7;
  font-weight: 500;
  margin-bottom: 18px;
}
.feature-card-value {
  font-family: var(--serif);
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.feature-card-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0,0,0,0.82);
  max-width: 460px;
}

/* ============ BAG / APRON PRODUCT ============ */
#bag-product {
  padding: 180px 60px 200px;
}
.pdp--bag,
.pdp--apron {
  padding: 60px 60px 200px;
}
.product-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 120px;
  align-items: start;
}
.product-grid.is-mirrored {
  grid-template-columns: 1fr 1.05fr;
}
.product-grid.is-mirrored .product-image-col { order: 2; }
.product-grid.is-mirrored .product-info-col { order: 1; }
.product-image-col {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-main-img {
  aspect-ratio: 4/5;
  background: var(--warm-grey);
  overflow: hidden;
  position: relative;
}
.product-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.product-image-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.62);
  font-weight: 500;
}

/* Clickable image link on showcase sections */
.product-img-link {
  display: block;
  text-decoration: none;
}
.bag-stage,
#bag-features .feature-visual-stack,
#apron-features .feature-visual-stack {
  cursor: pointer;
}
.product-img-link:hover .product-main-img img {
  transform: scale(1.025);
  transition: transform 0.55s ease;
}
.product-main-img img { transition: transform 0.55s ease; }

/* Heading link on showcase sections */
.p-title-link {
  color: inherit;
  text-decoration: none;
}
.p-title-link:hover { opacity: 0.75; }

/* PDP back link */
.pdp-back {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 60px 0;
}
.pdp-back-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.pdp-back-link:hover { opacity: 1; }

/* PDP thumbnail gallery */
.pdp-gallery-main { position: relative; }
.pdp-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp-thumb {
  width: calc(16.666% - 7px);
  aspect-ratio: 4/5;
  background: var(--warm-grey);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s;
}
.pdp-thumb.is-active { border-color: var(--black); }
.pdp-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* PDP features table */
.pdp-features {
  margin-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.pdp-feature {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.pdp-feature-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.5;
  flex-shrink: 0;
}
.pdp-feature-value {
  text-align: right;
  color: var(--black);
}

/* PDP video embed */
.pdp-video {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
}
.pdp-video-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
  margin: 0 0 20px;
}
.pdp-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}
.pdp-video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-video-poster .film-play-btn {
  position: relative;
  z-index: 2;
}
.pdp-video-poster-fallback {
  position: absolute;
  inset: 0;
  background: #111;
}

.product-info-col {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
}
.p-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.7;
  font-weight: 500;
  margin-bottom: 28px;
}
.p-title {
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.p-title em {
  font-style: italic;
  display: block;
  color: rgba(0,0,0,0.48);
}

.p-accent {
  width: 56px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 40px;
}

.p-copy {
  font-size: 18px;
  line-height: 1.72;
  color: rgba(0,0,0,0.84);
  margin-bottom: 56px;
  max-width: 480px;
  font-weight: 300;
}
.p-copy p { margin: 0 0 1.2em; }
.p-copy p:last-child { margin-bottom: 0; }
.p-copy ul, .p-copy ol { display: none; }

.p-spec-line {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(0,0,0,0.72);
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  margin-bottom: 56px;
}

.p-cta { display: flex; flex-direction: column; gap: 16px; }
.btn-cart {
  position: relative;
  isolation: isolate;
  background: var(--black);
  color: var(--off-white);
  border: 1px solid var(--black);
  width: 100%;
  padding: 22px 26px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.35s var(--ease), color 0.15s linear, border-color 0.35s var(--ease);
}
.btn-cart:hover,
.btn-cart:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}
.btn-cart:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }
.btn-cart:disabled { opacity: 0.4; cursor: not-allowed; background: var(--black); color: var(--off-white); }
.btn-cart-price {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  transition: color 0.15s linear;
}
.btn-cart:hover .btn-cart-price,
.btn-cart:focus-visible .btn-cart-price { color: var(--black); }
.p-note {
  font-size: 12px;
  text-align: center;
  color: rgba(0,0,0,0.62);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Trust row — under Add-to-Cart. Quiet, editorial. */
.trust-row {
  list-style: none;
  margin: 22px 0 4px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}
.trust-row-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 500;
}
.trust-row-icon {
  flex: 0 0 18px;
  color: var(--accent);
  opacity: 0.95;
}

/* legacy badges kept for main-product template */
.badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.badge {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(0,0,0,0.22);
  color: rgba(0,0,0,0.7);
  font-weight: 500;
}
.badge-teal { border-color: var(--accent); color: var(--accent); }

/* Variant picker (main-product template) */
.variant-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 32px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.variant-picker-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.66);
  font-weight: 500;
}
.variant-picker-select {
  font: inherit;
  font-size: 15px;
  padding: 6px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  color: var(--black);
}

/* Cart line items */
.cart-lines {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-line-meta { text-align: right; }
.cart-line-vendor {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.66);
  font-weight: 500;
  margin-bottom: 6px;
}
.cart-line-title {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  color: var(--black);
}

/* ============ MEDIA STATEMENT ============ */
#media-statement {
  position: relative;
  padding: 110px 60px;
  background: var(--black);
  color: var(--off-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#media-statement .media-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  will-change: transform;
}
.media-statement.has-media { padding: 140px 60px; }
.media-statement.has-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,12,10,0.55) 0%, rgba(13,12,10,0.35) 50%, rgba(13,12,10,0.6) 100%);
}
.media-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}
.media-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 22px;
  font-weight: 500;
}
.media-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 auto;
  max-width: 22ch;
  color: var(--off-white);
}
.media-line em {
  font-style: italic;
  color: rgba(255,255,255,0.62);
}
.media-sub {
  margin: 24px auto 0;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 42ch;
}
.media-caption {
  position: absolute;
  bottom: 40px; right: 40px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ============ APRON (reuses feature-scene / product layout) ============ */
#apron-product {
  padding: 140px 60px;
  background: var(--warm-grey);
}
#apron-product .product-grid { gap: 96px; }
#apron-product .product-main-img { background: #d9d4cb; }

/* ============ PRINTS ============ */
#prints {
  padding: 160px 60px;
  background: var(--black);
}
.prints-head {
  max-width: var(--container);
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  column-gap: 120px;
  row-gap: 28px;
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 48px;
}
.prints-head .eyebrow {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.66);
  opacity: 1;
  margin-bottom: 4px;
}
.prints-head h2 {
  grid-column: 1;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.05;
}
.prints-head h2 em { font-style: italic; color: rgba(255,255,255,0.42); }
.studio-standfirst {
  grid-column: 2;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 440px;
}
.studio-link {
  grid-column: 2;
  justify-self: start;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(79,205,196,0.5);
  padding-bottom: 3px;
  font-weight: 500;
  transition: color 0.25s, border-color 0.25s;
}
.studio-link:hover { color: #fff; border-bottom-color: var(--accent); }

.prints-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.print-card { position: relative; overflow: hidden; background: #141414; }
.print-card-img {
  aspect-ratio: 3/4;
  background: #1b1b1b;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.print-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.print-card:hover .print-card-img img,
.print-card:hover .print-ph { transform: scale(1.04); }
.print-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.1);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: transform 0.8s var(--ease);
  min-height: 360px;
}
.print-hover-layer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.print-card:hover .print-hover-layer { opacity: 1; transform: translateY(0); }
.print-hover-btn {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 18px;
  background: none;
  font-family: var(--sans);
  font-weight: 500;
  transition: border-color 0.2s;
}
.print-hover-btn:hover { border-color: var(--off-white); }

.print-info { padding: 28px 32px 34px; }
.print-cat {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  font-weight: 500;
}
.print-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}
.print-name {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 300;
  color: var(--off-white);
}
.print-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  white-space: nowrap;
}
.print-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.print-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.print-card-wide .print-card-img { aspect-ratio: auto; min-height: 380px; }
.print-card-wide .print-info {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 72px;
}
.print-card-wide .print-name { font-size: 40px; margin-bottom: 16px; }

.coming-soon-note {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 28px;
  margin-bottom: 24px;
  font-weight: 500;
}
.btn-notify {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 28px;
  background: none;
  font-family: var(--sans);
  font-weight: 500;
  transition: border-color 0.25s, background 0.25s;
}
.btn-notify:hover { border-color: var(--off-white); background: rgba(255,255,255,0.08); }
.print-tag-teal {
  display: inline-block;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(79,205,196,0.5);
  padding: 5px 12px;
  font-weight: 500;
}

/* ============ CHARITY ============ */
#charity {
  position: relative;
  padding: 160px 60px;
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
#charity::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,205,196,0.16) 0%, rgba(79,205,196,0) 65%);
  pointer-events: none;
  z-index: 0;
}
.charity-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}

.charity-head {
  max-width: 820px;
  margin: 0 auto 84px;
  text-align: center;
}
.charity-head .eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(64px, 7.4vw, 112px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.022em;
  text-transform: none;
  margin-bottom: 0;
}
.charity-standfirst {
  margin: 30px auto 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(0,0,0,0.82);
}

.charity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 96px;
}
.charity-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.5s var(--ease);
}
.charity-card:hover { transform: translateY(-4px); }
.charity-card-img {
  aspect-ratio: 5/7;
  background: var(--warm-grey);
  overflow: hidden;
  position: relative;
}
.charity-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.charity-card:hover .charity-card-img img { transform: scale(1.03); }
.charity-card-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  color: rgba(0,0,0,0.3);
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, #ecece7 0%, #d9d6ce 100%);
}
.charity-card-info {
  padding: 4px 2px 0;
}
.charity-card-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.charity-card-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--black);
}
.charity-card-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--accent);
  white-space: nowrap;
}
.charity-card-sub {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
  margin-bottom: 14px;
}
.charity-card-cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid rgba(79,205,196,0.4);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.charity-card:hover .charity-card-cta {
  color: var(--black);
  border-bottom-color: var(--black);
}

.charity-mechanic {
  max-width: 700px;
  margin: 0 auto 72px;
  padding: 44px 48px;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.charity-mechanic-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.charity-mechanic-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  color: var(--black);
  min-width: 100px;
  letter-spacing: -0.01em;
}
.charity-mechanic-row--give .charity-mechanic-num { color: var(--accent); font-style: italic; }
.charity-mechanic-rule {
  flex: 0 0 44px;
  height: 1px;
  background: rgba(0,0,0,0.25);
}
.charity-mechanic-row--give .charity-mechanic-rule { background: var(--accent); }
.charity-mechanic-desc {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,0.78);
  font-weight: 400;
}

.charity-pledge {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  line-height: 1.35;
  text-align: center;
  color: var(--black);
  max-width: 640px;
  margin: 0 auto 18px;
}
.charity-note {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(0,0,0,0.62);
  font-weight: 500;
}

/* ============ ABOUT ============ */
#about {
  position: relative;
  padding: 220px 60px;
  background: var(--black);
  color: var(--off-white);
  overflow: hidden;
}
.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 148px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-copy {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-top: 32px;
}
.about-quote {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.38);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin: 32px 0;
}
.about-image-wrap {
  margin-bottom: 40px;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.about-headline {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--off-white);
}
.about-headline em {
  font-style: italic;
  display: block;
  color: rgba(255,255,255,0.48);
}
.about-accent-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px 0;
}
.about-accent-bar {
  width: 2px;
  height: 0;
  background: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
  transition: height 1s var(--ease);
}
.about-accent-bar.in { height: 60px; }
.about-accent-link {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  opacity: 0;
  transition: opacity 1s var(--ease) 0.4s, color 0.2s;
}
.about-accent-bar.in ~ .about-accent-link { opacity: 1; }
.about-accent-link:hover { color: #fff; }

.about-origin {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.origin-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(79,205,196,0.6);
}

.about-body { display: flex; flex-direction: column; gap: 34px; }
.about-copy {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.84);
}
.about-quote {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--off-white);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

/* ============ FAQ ============ */
#faq {
  padding: 160px 60px;
  background: var(--warm-grey);
}
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-top { margin-bottom: 80px; }
.faq-top .eyebrow { margin-bottom: 20px; }

.qa-item { border-top: 1px solid rgba(0,0,0,0.1); }
.qa-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.qa-btn {
  width: 100%;
  text-align: left;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.qa-q {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.3;
}
.qa-cross {
  width: 18px; height: 18px;
  position: relative; flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.25s, transform 0.45s var(--ease);
}
.qa-btn:hover .qa-cross { opacity: 1; transform: rotate(90deg); }
.qa-item.open .qa-cross { opacity: 1; }
.qa-cross::before, .qa-cross::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.qa-cross::before {
  width: 100%; height: 1px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}
.qa-cross::after {
  width: 1px; height: 100%;
  left: 50%; top: 0;
  transform: translateX(-50%);
}
.qa-item.open .qa-cross::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.qa-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.4s;
}
.qa-item.open .qa-body {
  max-height: 320px;
  padding-bottom: 30px;
}
.qa-body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(0,0,0,0.68);
  max-width: 620px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  padding: 100px 60px 52px;
}
.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.f-about { min-width: 0; }
.f-brand-link {
  display: block;
  margin-bottom: 8px;
}
.f-brand-img {
  height: 28px;
  width: auto;
  display: block;
}
.f-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.f-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.62);
  max-width: 320px;
}
.f-col h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 26px;
  font-weight: 500;
}
.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.f-col ul a {
  font-family: var(--serif);
  font-size: 17.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  transition: color 0.25s;
}
.f-col ul a:hover { color: var(--off-white); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.f-copy, .f-made {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.52);
  font-weight: 400;
}
.f-made span { color: var(--accent); font-weight: 500; }

/* ============ PAGE (legal / static pages) ============ */
.page-wrap {
  padding: 180px 60px 140px;
  background: var(--off-white);
}
.page-inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
  margin-bottom: 24px;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--black);
  margin-bottom: 32px;
}
.page-accent {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 48px;
}
.page-rte {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(0,0,0,0.82);
}
.page-rte > * + * { margin-top: 1em; }
.page-rte h1, .page-rte h2, .page-rte h3, .page-rte h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.page-rte h1 { font-size: 32px; margin-top: 2em; }
.page-rte h2 { font-size: 26px; margin-top: 2em; }
.page-rte h3 { font-size: 21px; margin-top: 1.8em; }
.page-rte h4 { font-size: 17px; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--sans); font-weight: 500; margin-top: 1.6em; }
.page-rte p { margin: 0 0 1em; }
.page-rte a {
  color: var(--black);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.page-rte a:hover { color: var(--accent); border-bottom-color: var(--black); }
.page-rte ul, .page-rte ol { padding-left: 24px; }
.page-rte li { margin-bottom: 0.6em; }
.page-rte strong { font-weight: 500; color: var(--black); }
.page-rte hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin: 2.4em 0;
}
.page-rte blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(0,0,0,0.85);
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 1.4em 0;
}
.page-rte table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 1.4em 0;
}
.page-rte table th, .page-rte table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  vertical-align: top;
}
.page-rte table th {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.62);
  font-weight: 500;
}

@media (max-width: 760px) {
  .page-wrap { padding: 120px 24px 88px; }
  .page-rte { font-size: 15.5px; }
}

/* ============ ABOUT PAGE ============ */
.about-pg {
  padding: 180px 60px 140px;
  background: var(--off-white);
}
.about-pg__inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-pg__accent {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 48px;
}
.about-pg__label {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(0,0,0,0.84);
  margin: 2.8em 0 0.3em;
}
.about-pg__label:first-child { margin-top: 0; }
.about-pg__copy {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(0,0,0,0.84);
  margin: 0 0 0;
}

@media (max-width: 760px) {
  .about-pg { padding: 120px 24px 88px; }
  .about-pg__copy { font-size: 17px; }
}

/* ============ NOT FOUND ============ */
.notfound {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 28px;
}
.notfound__inner {
  max-width: 480px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.notfound__title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
}
.notfound__title em {
  font-style: italic;
  display: block;
  color: rgba(0,0,0,0.4);
}
.notfound__copy {
  color: rgba(0,0,0,0.68);
  font-size: 16px;
  line-height: 1.8;
}

/* ============ BUNDLE ============ */
#bundle {
  padding: 160px 60px;
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.bundle-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.bundle-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 460px;
}
.bundle-head .eyebrow { margin-bottom: 4px; }
.bundle-copy {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0,0,0,0.82);
  margin-top: 8px;
}
.bundle-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.bundle-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bundle-item img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  background: #eceae5;
}
.bundle-item figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.72);
}
.bundle-item-name { font-weight: 500; }
.bundle-item-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--black);
}
.bundle-plus {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
}
.bundle-checkout {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  margin: 56px auto 0;
  width: 100%;
  text-align: center;
}
.bundle-total {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif);
}
.bundle-total-strike {
  font-size: 22px;
  color: rgba(0,0,0,0.5);
  text-decoration: line-through;
}
.bundle-total-display {
  font-size: 44px;
  font-weight: 300;
  color: var(--black);
}
.btn-cart-bundle { max-width: 100%; }

/* ============ FILM PROJECTS ============ */
.film-section {
  background: var(--black);
  padding: 160px 60px;
}
.film-head {
  max-width: var(--container);
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  column-gap: 120px;
  row-gap: 28px;
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 48px;
}
.film-head .eyebrow {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.66);
  opacity: 1;
  margin-bottom: 4px;
}
.film-head h2 {
  grid-column: 1;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.05;
}
.film-head h2 em { font-style: italic; color: rgba(255,255,255,0.42); }
.film-standfirst { grid-column: 2; }
.film-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.film-card { background: #141414; overflow: hidden; }
.film-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  overflow: hidden;
}
.film-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.film-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.2);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  border: 1px dashed rgba(255,255,255,0.08);
}
.film-poster {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
}
.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.film-poster:hover img { transform: scale(1.03); }
.film-poster-fallback {
  position: absolute;
  inset: 0;
  background: #111;
}
.film-play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.film-play-btn svg {
  width: 72px;
  height: 72px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.film-poster:hover .film-play-btn svg {
  opacity: 1;
  transform: scale(1);
}
.film-info { padding: 28px 32px 36px; }
.film-cat {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.film-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.film-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.film-link {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(79,205,196,0.4);
  padding-bottom: 2px;
  transition: color 0.25s;
}
.film-link:hover { color: #fff; }

/* ============ RESPONSIVE ============ */
/* Tablet — collapse 4-col footer to 2x2 */
@media (max-width: 1100px) and (min-width: 961px) {
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
  .footer-top .f-about { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --announce-h: 28px; }
  .marquee-track { gap: 24px; padding-inline: 20px; }
  .m-item { font-size: 10px; letter-spacing: 0.22em; }
  .marquee-strip .lang-switch { display: none; }
  .footer-bottom { gap: 14px; }

  .site-header { padding: 18px 24px; }
  .site-header.is-scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-lang-mobile { display: flex; }

  /* Hamburger button */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    pointer-events: all;
  }
  .nav-burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--black);
    transition: transform 0.25s var(--ease), opacity 0.2s;
    transform-origin: center;
  }
  .nav-burger.is-open span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; }
  .nav-burger.is-open span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

  /* Mobile menu drawer */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99;
    background: var(--off-white);
    padding: 100px 40px 60px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }
  .mobile-menu.is-open {
    transform: translateX(0);
  }
  .mobile-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu-links li {
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .mobile-menu-links a {
    display: block;
    padding: 20px 0;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--black);
    opacity: 0.75;
    text-decoration: none;
  }
  .mobile-menu-links a:hover { opacity: 1; }
  .mobile-menu-links .nav-cta {
    color: var(--black);
    opacity: 1;
    font-weight: 600;
  }
  .mobile-menu-lang {
    margin-top: 40px;
  }
  .nav-logo-img { height: 22px; }

  .hero-pin { min-height: auto; padding-top: var(--announce-h); }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { min-height: 90vw; }
  .hero-content-side { padding: 64px 28px 80px; }
  .hero-scroll-cue { display: none; }
  .hero-actions { gap: 18px; }
  .hero-price { padding-right: 0; font-size: clamp(28px, 7vw, 36px); }
  .hero-price::after { display: none; }

  [data-feature-scene] { padding: 80px 28px 96px; }
  .feature-scene-head { margin-bottom: 40px; }
  .feature-scene-sub { margin-top: 20px; }
  .feature-scene,
  [data-feature-scene].feature-scene-alt .feature-scene { grid-template-columns: 1fr; gap: 48px; }
  .feature-scene-visual { position: relative; top: auto; grid-template-columns: 1fr; gap: 20px; }
  .feature-visual-stack { aspect-ratio: 4/5; }
  .feature-progress { flex-direction: row; justify-content: flex-start; gap: 10px; }
  .feature-progress-tick { width: 28px; height: 2px; }
  .feature-card { opacity: 1; transform: none; padding: 32px 0 32px 20px; }
  .feature-card.is-active { transform: none; padding-left: 24px; }

  #bag-product,
  #apron-product,
  #prints,
  #charity,
  #about,
  #bundle,
  #faq { padding: 100px 28px; }

  #charity::before { width: 260px; height: 260px; }
  .charity-head { margin-bottom: 56px; }
  .charity-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 64px; }
  .charity-mechanic { padding: 32px 20px; margin-bottom: 56px; }
  .charity-mechanic-row { gap: 18px; flex-wrap: wrap; }
  .charity-mechanic-num { min-width: 0; font-size: 30px; }
  .charity-mechanic-rule { flex: 0 0 28px; }
  .charity-mechanic-desc { font-size: 13px; }

  .product-grid,
  .product-grid.is-mirrored,
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .product-grid.is-mirrored .product-image-col { order: 1; }
  .product-grid.is-mirrored .product-info-col { order: 2; }
  .product-image-col { position: static; }
  .p-title { font-size: clamp(44px, 10vw, 64px); }
  .p-copy { font-size: 17px; }
  .p-spec-line { font-size: 10px; letter-spacing: 0.24em; }
  .btn-cart { padding: 20px 24px; font-size: 11px; }

  .pdp-back { padding: 24px 28px 0; }
  .pdp-thumb { width: calc(33.333% - 6px); }
  .pdp-features { margin-top: 36px; }

  .bundle-inner { grid-template-columns: 1fr; gap: 56px; }
  .bundle-grid { grid-template-columns: 1fr; gap: 32px; }
  .bundle-plus { text-align: center; font-size: 36px; }
  .bundle-total-display { font-size: 36px; }

  .prints-grid { grid-template-columns: 1fr; }
  .film-grid { grid-template-columns: 1fr; gap: 32px; }
  .film-head { grid-template-columns: 1fr; }
  .film-standfirst { grid-column: 1; }
  .film-section { padding: 100px 24px; }
  .print-card-wide { grid-template-columns: 1fr; }
  .print-card-wide .print-info { padding: 40px 32px; }
  .print-card-wide .print-name { font-size: 32px; }
  .prints-head { grid-template-columns: 1fr; row-gap: 24px; }
  .prints-head h2, .studio-standfirst, .studio-link { grid-column: 1; }

  #media-statement { padding: 80px 28px; }

  .footer-top { grid-template-columns: 1fr; gap: 44px; }
  .f-about { margin-bottom: 4px; }
  .site-footer { padding: 72px 28px 40px; }

  .studio-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .print-pdp-grid { grid-template-columns: 1fr; gap: 56px; }
  .print-pdp-image-col { position: static; }
  .studio-page-head { padding: 100px 0 60px; }
}

/* ============ STUDIO PAGE (/collections/prints) ============ */
.studio-page {
  padding: 180px 60px 160px;
  background: var(--black);
  color: var(--off-white);
}
.studio-page-head {
  max-width: var(--container);
  margin: 0 auto 96px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 56px;
}
.studio-page-head .eyebrow {
  color: rgba(255,255,255,0.68);
  opacity: 1;
  margin-bottom: 24px;
}
.studio-page-h {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.studio-page-h em { font-style: italic; color: rgba(255,255,255,0.48); }
.studio-page-standfirst {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
}
.studio-page-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
}
.studio-piece {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s;
}
.studio-piece:hover { opacity: 0.88; }
.studio-piece-img {
  aspect-ratio: 3/4;
  background: #1b1b1b;
  overflow: hidden;
  margin-bottom: 24px;
}
.studio-piece-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.studio-piece:hover .studio-piece-img img { transform: scale(1.03); }
.studio-piece-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: rgba(255,255,255,0.38);
}
.studio-piece-cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  font-weight: 500;
}
.studio-piece-name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 6px;
}
.studio-piece-price {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
.studio-page-foot {
  max-width: var(--container);
  margin: 120px auto 0;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
}

/* ============ PRINT PDP ============ */
.print-pdp {
  padding: 160px 60px;
  background: var(--black);
  color: var(--off-white);
}
.print-pdp-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 120px;
  align-items: start;
}
.print-pdp-image-col {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.print-pdp-main-img {
  background: #1b1b1b;
}
.print-pdp-main-img img { width: 100%; height: auto; display: block; object-fit: unset; transform: none !important; }
.print-pdp-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: rgba(255,255,255,0.25);
}
.print-pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.print-pdp-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.print-pdp-info-col .eyebrow {
  color: rgba(255,255,255,0.68);
  opacity: 1;
  margin-bottom: 28px;
}
.print-pdp-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 16px;
}
.print-pdp-cat {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.print-pdp-accent {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 36px 0;
}
.print-pdp-copy {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
}
.print-pdp-copy * {
  font-size: 16.5px !important;
  font-weight: inherit !important;
  line-height: 1.85 !important;
  margin-top: 0 !important;
}
.print-pdp-copy p,
.print-pdp-copy h1,
.print-pdp-copy h2,
.print-pdp-copy h3,
.print-pdp-copy h4,
.print-pdp-copy h5,
.print-pdp-copy h6 { margin: 0 0 1em; font-size: inherit; font-weight: inherit; line-height: inherit; }
.print-pdp-copy p:last-child,
.print-pdp-copy h1:last-child,
.print-pdp-copy h2:last-child,
.print-pdp-copy h3:last-child,
.print-pdp-copy h4:last-child,
.print-pdp-copy h5:last-child,
.print-pdp-copy h6:last-child { margin-bottom: 0; }
.print-pdp-artist {
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.print-pdp-artist-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  font-weight: 500;
}
.print-pdp-artist p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin: 0 0 1em;
}
.print-pdp-artist p:last-child { margin-bottom: 0; }
.print-pdp-edition {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  font-weight: 500;
}
.print-pdp-variants { margin-bottom: 20px; }
.print-pdp-variants label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
  font-weight: 500;
}
.print-pdp-variant-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--off-white);
  font-family: inherit;
  font-size: 13px;
}
.print-pdp-back {
  display: inline-block;
  margin-top: 48px;
}

/* ── Bag CTA strip ── */
.bag-cta-strip {
  background: #f5f0e8;
  padding: 60px 24px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bag-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--black);
  color: var(--off-white);
  padding: 19px 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: background 0.25s, color 0.25s;
}
.bag-cta-btn:hover,
.bag-cta-btn:focus-visible {
  background: transparent;
  color: var(--black);
}
