/* =========================================
   Y·NEUMAN — Global Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=IBM+Plex+Mono:wght@300;400&display=swap');

/* --- Variables --- */
:root {
  --bg:          rgb(28, 28, 27);
  --bg-alt:      rgb(36, 36, 35);
  --bg-deep:     rgb(18, 18, 17);
  --text:        #E8E6E1;
  --text-mid:    rgba(232, 230, 225, 0.58);
  --text-light:  rgba(232, 230, 225, 0.32);
  --border:      rgba(232, 230, 225, 0.10);
  --border-mid:  rgba(232, 230, 225, 0.18);

  --display: 'Oswald', sans-serif;
  --mono:    'IBM Plex Mono', 'Courier New', monospace;

  --nav-h: 72px;
  --pad-x: clamp(24px, 6vw, 96px);
  --pad-section: clamp(64px, 9vw, 128px);
  --transition: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--mono);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
.announce {
  background: var(--bg-deep);
  color: var(--text-mid);
  text-align: center;
  padding: 11px var(--pad-x);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.announce a {
  color: var(--text);
  border-bottom: 1px solid rgba(232,230,225,0.25);
  padding-bottom: 1px;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad-x);
}

.nav-left,
.nav-right {
  z-index: 2;
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

.nav-logo {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  height: 26px;
  width: auto;
  display: block;
}

.nav a {
  text-align: center;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity var(--transition);
  white-space: nowrap;
  color: var(--text);
}
.nav a:hover { opacity: 0.45; }

/* Dropdown */
.dropdown { position: relative; display: flex; align-items: center; }
.dropdown > a { position: relative; top: -1px; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--border-mid);
  border-top: none;
  padding: 12px 0;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 300;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 9.5px;
  letter-spacing: 0.14em;
}
.dropdown-menu a:hover { background: rgba(232,230,225,0.06); opacity: 1; }

/* Mobile */
.menu-toggle {
  display: none;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 0;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 500;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { z-index: 500;
  display: flex; }

.mobile-menu a {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: var(--pad-x);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* =========================================
   HERO (Homepage)
   ========================================= */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 780px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%; /* desktop */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,28,27,0.15) 0%,
    transparent 35%,
    rgba(28,28,27,0.55) 100%
  );
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 5vw, 72px) var(--pad-x) 18vh;
}

.hero-text { color: rgb(28,28,27); max-width: 580px; }

/* Hero h1 line-break variants */
.h1-mob { display: none; }
.h1-desk { display: block; }

.hero-text h1 {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-text p {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  line-height: 2.2;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  padding: clamp(56px, 8vw, 120px) var(--pad-x) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 80px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.05;
  color: var(--text);
}

.page-hero p {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
  max-width: 580px;
}

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: var(--pad-section) var(--pad-x); }
.section-sm { padding: clamp(40px, 5vw, 72px) var(--pad-x); }

.section-header {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(36px, 4.5vw, 60px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.section-header h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

/* =========================================
   TYPOGRAPHY UTILITIES
   ========================================= */
.eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
  display: block;
}

.link-subtle {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  color: var(--text);
  transition: opacity var(--transition);
  white-space: nowrap;
}
.link-subtle:hover { opacity: 0.45; }

/* Colourway count — plain text, same typography as link-subtle but no interaction */
.colourway-count {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  opacity: 0.55;
}

.link-subtle-white {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  color: var(--text-mid);
  transition: color var(--transition), border-color var(--transition);
}
.link-subtle-white:hover { color: var(--text); border-color: var(--text-mid); }

/* =========================================
   STATEMENT BAND
   ========================================= */
.statement {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: var(--pad-section) var(--pad-x);
}

/* Statement band — white background with black text */
.statement-wrap {
  background: #ffffff;
}

.statement p {
  font-family: var(--display);
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(28,28,27);
}

/* =========================================
   COLLECTION SPLIT (homepage tiles)
   ========================================= */
.collection-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.collection-tile {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--bg-alt);
}

.collection-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s ease;
}
.collection-tile:hover img { transform: scale(1.04); }

/* Oct42_LTGO tile: no translateY so image fills bottom edge */
.collection-split .collection-tile:last-child img {
  transform: scale(1.0);
  transform-origin: center center;
}
.collection-split .collection-tile:last-child:hover img {
  transform: scale(1.04);
  transform-origin: center center;
}

.collection-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,230,225,0.15);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 52px);
  transition: background var(--transition);
}
.collection-tile:hover .collection-tile-overlay { background: rgba(232,230,225,0.25); }

.collection-tile-overlay h3 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  color: rgba(28,28,27,0.58);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.18;
}

.collection-tile-overlay .tile-sub {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28,28,27,0.45);
}

/* =========================================
   PRODUCT GRID
   ========================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

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

.product-card { cursor: pointer; }

.product-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 16px;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-img .img-primary { position: absolute; inset: 0; transition: opacity 0.4s ease; object-fit: cover; object-position: center center; }
.product-card-img .img-hover   { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease; object-fit: cover; object-position: center center; }
.product-card-img .img-side    { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.4s ease; object-fit: contain; object-position: center center; }

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

/* 3-image cards — JS controls opacity via inline style; prevent CSS hover from interfering */
.product-card-img--3 .img-primary,
.product-card-img--3 .img-hover,
.product-card-img--3 .img-side { transition: opacity 0.4s ease; }
.product-card:hover .product-card-img--3 .img-primary { opacity: 1; }
.product-card:hover .product-card-img--3 .img-hover   { opacity: 0; }

/* 2-image dot cards — JS controls opacity; prevent CSS hover from interfering */
.product-card:hover .product-card-img--2 .img-primary { opacity: 1; }
.product-card:hover .product-card-img--2 .img-hover   { opacity: 0; }

/* 3DP page hero: dark text; no bleed-over margin; image zoomed out; text at top-left */
.page-3dp .hero-text { color: rgb(28,28,27); }
.page-3dp .hero-text .eyebrow { color: rgb(28,28,27); }
.page-3dp .hero { margin-bottom: 0; height: 85vh; }
.page-3dp .hero img { object-position: center 54%; }
.page-3dp .hero-overlay {
  justify-content: flex-start;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(32px, 5vw, 72px);
}
/* 3DP page: contain product images so full frame shows */
.page-3dp .product-card-img .img-primary { object-fit: contain; }
.page-3dp .product-card-img .img-hover   { transform: none; object-fit: contain; object-position: center; }
.page-3dp .product-card-img .img-side    { object-fit: contain; }

/* 3DP page: uniform product title sizes across aug-jul headers and section headers */
.page-3dp .augp-jul-grid__header,
.page-3dp .section-header h2 {
  font-size: clamp(20px, 2.4vw, 32px);
}

/* =========================================
   IMAGE DOTS — overlaid bottom-centre of picture box
   ========================================= */
.img-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 7px;
  align-items: center;
  pointer-events: none;
}
.img-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: white;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  pointer-events: all;
  transition: background 0.2s;
}
.img-dot.img-dot--active { background: rgba(80,80,80,0.7); }

/* =========================================
   IMAGE ARROWS — minimal prev/next inside picture box
   ========================================= */
.img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: rgb(28,28,27);
  padding: 8px 10px;
  transition: color 0.15s;
  font-family: serif;
  font-weight: 300;
}
.img-arrow:hover { color: rgba(28,28,27,0.55); }
.img-arrow--prev { left: 2px; }
.img-arrow--next { right: 2px; }

/* =========================================
   ACETATE HERO — gradient + slight zoom-out
   ========================================= */
img.acetate-hero-img { transform: scale(0.97) translateY(2%); }

.page-acetate .acetate-hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,28,27,0.15) 0%,
    transparent         35%,
    rgba(28,28,27,0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.page-acetate .acetate-hero-text { z-index: 2; }

/* =========================================
   AUG·42P + JUL·42 COMBINED GRID
   ========================================= */
.augp-jul-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: clamp(16px, 2vw, 24px);
  row-gap: 0;
  margin-bottom: clamp(56px, 7vw, 104px);
  align-items: start;
}
.augp-jul-grid__header {
  padding-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.augp-jul-grid__aug-header { grid-column: 1 / 3; }
.augp-jul-grid__jul-header { grid-column: 3; }

.product-card-name {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.product-card-colorways {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.08em;
}

/* =========================================
   DEEP SECTION (formerly "dark")
   ========================================= */

.section-light {
  background: var(--text);
  color: var(--bg);
  padding: var(--pad-section) var(--pad-x);
  border-top: 1px solid rgba(28,28,27,0.12);
  border-bottom: 1px solid rgba(28,28,27,0.12);
}

.section-light .eyebrow { color: rgba(28,28,27,0.5); }

.section-light h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.18;
  color: var(--bg);
}

.section-light p {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 2;
  color: rgba(28,28,27,0.65);
  max-width: 500px;
  margin-bottom: 44px;
}

.section-light .email-signup input {
  background: transparent;
  color: var(--bg);
  border-bottom-color: rgba(28,28,27,0.25);
}

.section-light .email-signup input::placeholder { color: rgba(28,28,27,0.4); }

.section-light .email-signup button {
  background: transparent;
  color: var(--bg);
  border-bottom-color: rgba(28,28,27,0.25);
}

/* Collectors' CTA — dark background override */
.collectors-cta {
  background: var(--bg) !important;
  border-top: none !important;
  border-bottom: none !important;
}
.collectors-cta .eyebrow { color: var(--text-mid) !important; }
.collectors-cta h2 { color: #ffffff !important; }
.collectors-cta p { color: var(--text-mid) !important; }
.collectors-cta .email-signup input {
  color: var(--text) !important;
  border-bottom-color: var(--border) !important;
}
.collectors-cta .email-signup input::placeholder { color: var(--text-mid) !important; }
.collectors-cta .email-signup button {
  color: var(--text) !important;
  border-bottom-color: var(--border) !important;
}

.section-dark {
  background: var(--bg-deep);
  color: var(--text);
  padding: var(--pad-section) var(--pad-x);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark .eyebrow { color: var(--text-light); }

.section-dark h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.18;
  color: var(--text);
}

.section-dark p {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 44px;
}

/* Collectors CTA two-column layout */
.collectors-cta {
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 72px);
}

.collectors-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.collectors-cta-text p {
  margin-bottom: 0;
}

.collectors-cta-form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.collectors-cta-form .email-signup {
  width: 100%;
  max-width: 380px;
}

@media (max-width: 900px) {
  .collectors-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .collectors-cta-form {
    justify-content: flex-start;
  }
}

/* Email signup */
.email-signup {
  z-index: 2;
  display: flex;
  gap: 0;
  max-width: 420px;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 12px;
}

.email-signup input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 8px 0;
}
.email-signup input::placeholder { color: var(--text-light); }

.email-signup button {
  color: var(--text);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0 8px 28px;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.email-signup button:hover { opacity: 0.45; }

/* =========================================
   FEATURE / ABOUT GRID
   ========================================= */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.feature-grid + .feature-grid { margin-top: clamp(48px, 6vw, 88px); }

.feature-img {
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--bg-alt);
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.feature-text h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  line-height: 1.18;
  color: var(--text);
}

.feature-text p {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.tag-row {
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.tag {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--border-mid);
  padding: 7px 14px;
  color: var(--text-mid);
}

/* =========================================
   COLLECTORS' EDITIONS
   ========================================= */
.edition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3px;
}

.edition-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-alt);
}

.edition-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}
.edition-item:hover img { transform: scale(1.04); }

.edition-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(18,18,17,0.82) 0%, transparent 100%);
  color: var(--text);
}

.edition-item-info h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.edition-item-info p {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.edition-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  border: 1px dashed var(--border-mid);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-light);
}

.edition-placeholder span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================================
   DROPS STATUS BAR
   ========================================= */
.drops-status {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 28px var(--pad-x);
  border-bottom: 1px solid var(--border);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-light);
  display: inline-block;
  flex-shrink: 0;
}

/* =========================================
   PROSE (legal / long-form)
   ========================================= */
.prose {
  max-width: 680px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
}

.prose h2 {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 52px;
  margin-bottom: 18px;
}

.prose p { margin-bottom: 16px; }
.prose a {
  color: var(--text);
  border-bottom: 1px solid var(--border-mid);
  transition: border-color var(--transition);
}
.prose a:hover { border-color: var(--text); }

/* =========================================
   CAREERS
   ========================================= */
.role-item {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.role-item:first-child { border-top: 1px solid var(--border); }

.role-info h3 {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
  color: var(--text);
}

.role-info p {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  line-height: 1.75;
  max-width: 580px;
}

.role-meta { text-align: right; flex-shrink: 0; }

.role-location {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 10px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-deep);
  color: var(--text-mid);
  padding: clamp(56px, 7vw, 96px) var(--pad-x) clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

.footer-brand-text {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 230px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 22px;
}

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

.footer-col a {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 300;
  color: var(--text-light);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-instagram a {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.footer-instagram a:hover { color: var(--text); border-color: var(--text-mid); }

/* Acetate mobile intro block — hidden on desktop, shown in mobile media query */
.acetate-intro-mobile { display: none; }

/* =========================================
   DIVIDER / UTILITY
   ========================================= */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.text-center { text-align: center; }
.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 48px; }

/* =========================================
   PROFILES STRIP (90° side views)
   ========================================= */
.profiles-strip {
  margin-bottom: clamp(56px, 7vw, 104px);
}

.profiles-intro {
  padding: clamp(40px, 5vw, 72px) var(--pad-x) clamp(24px, 3vw, 40px);
}

.profiles-subtitle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin: 8px 0 0;
  text-transform: uppercase;
}

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.profile-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #111;
}

.profile-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.profile-panel:hover img {
  transform: scale(1.04);
}

.profile-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
  opacity: 0.75;
}

/* =========================================
   DETAIL CLOSE-UPS STRIP
   ========================================= */
.details-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: clamp(56px, 7vw, 104px);
}

.detail-panel {
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #0a0a0a;
}

.detail-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.detail-panel:hover img {
  transform: scale(1.05);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid + .feature-grid { margin-top: clamp(40px, 5vw, 64px); }
  .feature-img { aspect-ratio: 16/9; max-height: 520px; }

  /* Landing page picture 4 — cover fills container, no transform */
  .landing-p4-img { object-fit: cover !important; transform: none; object-position: center calc(50% + 20px) !important; }

  /* 3DP page picture 2 — lift subject 30px */
  .tdp-feature-img { transform: translateY(-30px); }
}

@media (max-width: 900px) {
  :root { --nav-h: 60px; }

  .collection-split { grid-template-columns: 1fr; }
  .collection-tile { aspect-ratio: 16/10; }

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

  .nav-left,
  .nav-right { display: none; }
  .nav { grid-template-columns: 1fr 1fr; }
  .nav-logo { justify-content: flex-start; }
  .menu-toggle { display: block; }

  /* Logo 20% smaller */
  .nav-logo img { height: 21px; }

  /* Raise Performance · Comfort · Fit closer to h1 */
  .hero-text h1 { margin-bottom: 6px; }

  /* Hero — flex layout so overlay is in-flow and cannot bleed outside the hero on iOS Safari */
  .hero { min-height: unset; height: calc(81vh - 49px); display: flex; flex-direction: column; justify-content: flex-end; }

  /* Image: translateY crops top white space; negative margin-bottom pulls divider up to image edge */
  .hero { margin-bottom: calc(-14.6vh + 14px); }
  .hero picture { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
  .hero img { height: 100%; transform: translateY(-18%); }

  /* Gradient: original values — subtle top, dark bottom for text legibility */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(28,28,27,0.15) 0%,
      transparent         35%,
      rgba(28,28,27,0.55) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Overlay: z-index 2 — text sits above gradient */
  .hero-overlay {
    position: relative;
    background: none;
    padding-top: 0;
    padding-bottom: calc(14.6vh + 14px);
    z-index: 2;
    width: 100%;
    flex-shrink: 0;
  }

  /* Hero h1: show mobile line-break version only */
  .h1-desk { display: none; }
  .h1-mob { display: block; }

  /* Hero text: light grey so it reads against dark hair */
  .hero-text { color: var(--text); }

  /* Acetate hero: translateY(70px) pulls head down into visible frame */
  img.acetate-hero-img {
    transform: scale(1.0) translateY(0px);
    transform-origin: center bottom;
  }

  /* Acetate hero text: pinned to bottom; light colour so it reads over dark gradient */
  .acetate-hero-text {
    top: auto !important;
    bottom: 58px !important;
  }
  .acetate-hero-text .eyebrow,
  .acetate-hero-text h1 { color: var(--text) !important; }

  /* Angled hover photos: scale(1.3) + translateY(-14%) centres frame vertically, fills card */
  .product-card-img .img-hover {
    transform: scale(1.3) translateY(-14%);
    transform-origin: center center;
  }

  /* 3DP hero text: restore light colour on mobile (dark background) */
  .page-3dp .hero-text { color: var(--text); }
  .page-3dp .hero-text .eyebrow { color: var(--text-light); }

  /* Acetate hero gradient: contained within box; dark bottom for text legibility */
  .page-acetate .acetate-hero-wrap::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(28,28,27,0.28) 0%,
      rgba(28,28,27,0.08) 40%,
      rgba(28,28,27,0.72) 80%,
      rgba(28,28,27,0.80) 100%
    );
  }

  /* Acetate hero: crop shorter; gap below before intro text */
  .page-acetate .acetate-hero-wrap { overflow: hidden !important; clip-path: none; margin-bottom: 0; height: 88vh !important; }
  .page-acetate .acetate-hero-wrap + * { margin-top: 24px; }
  .page-acetate .acetate-hero-text p { display: none; }
  .acetate-intro-mobile {
    display: block;
    background: var(--bg);
    color: var(--text);
    margin-top: 40px;
    padding: 24px var(--pad-x);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.95;
    letter-spacing: 0.04em;
  }

  .page-acetate .product-card-img .img-hover {
    transform: none;
    transform-origin: center center;
    object-fit: cover;
    object-position: center center;
  }

  /* Statement — reduce black space at top */
  .statement { padding-top: clamp(28px, 5vw, 56px); }

  /* Picture 2: slightly zoomed out + brighter */
  .collection-split .collection-tile:first-child img {
    transform: scale(1.35);
    transform-origin: center center;
    filter: brightness(1.25);
  }

  /* Picture 3 (Oct42_LTGO): no translateY so bottom edge is fully covered */
  .collection-split .collection-tile:last-child img {
    transform: scale(1.12);
    transform-origin: center center;
    filter: brightness(1.25);
  }
  .collection-split .collection-tile:last-child:hover img {
    transform: scale(calc(1.12 * 1.04));
  }

  /* Colourways: hide text description on mobile — photo shows the colourway */
  .product-card-colorways { display: none; }

  /* Thin black line between picture 2 and picture 3 */
  .collection-split .collection-tile:first-child {
    border-bottom: 1px solid var(--border);
  }

  /* hero-divider: raised above hero's background via z-index so it isn't painted over */
  .hero-divider { display: block; position: relative; z-index: 5; margin-top: 7px; }
  .collectors-cta { margin-top: 0; position: relative; z-index: 2; }

  /* Collection tile titles: smaller, tighter gap to subtitle */
  .collection-tile-overlay h3 { font-size: 16px; margin-bottom: 1px; }

  /* Tighten line spacing in collectors h2 to reduce gap between the two lines */
  .collectors-cta h2 { line-height: 1.0; }

  /* Collectors' Editions — shift Notify me button slightly right */
  .collectors-cta-form .email-signup button {
    padding-left: 64px;
  }

  /* Last picture — frame vertical centre at 53.8% of image → 64% object-position */
  img.acetate-teaser-img {
    object-position: center 64% !important;
  }

  /* Pictures 4, 5, 6 — image below title text on mobile */
  .feature-grid .feature-text { order: 1; }
  .feature-grid .feature-img  { order: 2; }

  /* About page picture 3 — shift object-position so standing figure is centred, not bottom-cropped */
  .page-about .about-p3-img { object-position: center 55% !important; }
}

@media (max-width: 640px) {
  :root { --pad-x: 20px; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .edition-grid { grid-template-columns: 1fr; }
  .hero { height: 88vh; }
  .hero-text h1 { font-size: 26px; }
  .role-item { flex-direction: column; align-items: flex-start; }
  .role-meta { text-align: left; }

  /* Profiles strip: horizontal scroll on mobile so each panel is readable */
  .profiles-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 2px;
  }
  .profile-panel {
    flex: 0 0 78vw;
    scroll-snap-align: start;
    aspect-ratio: 3/4;
  }

  /* Detail strip: two columns on mobile */
  .details-strip {
    grid-template-columns: 1fr 1fr;
  }
  .details-strip .detail-panel:last-child {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }

  /* 3DP hero mobile: title pinned to bottom like acetate; scale(1.75); black text */
  .page-3dp .hero { justify-content: flex-end; margin-bottom: 0; height: 88vh; }
  .page-3dp .hero-overlay {
    padding-top: 0;
    padding-bottom: 58px;
    background: none;
  }
  .page-3dp .hero img { transform: scale(1.35) translateY(-18%); transform-origin: center top; }
  .page-3dp .hero-text { color: rgb(28,28,27); }
  .page-3dp .hero-text .eyebrow { color: rgb(28,28,27); }
  .page-3dp .hero-text h1 { font-size: 38px; }

  /* Aug/Jul combined grid: stack to 2-col on mobile, Jul42 on new row */
  .augp-jul-grid {
    grid-template-columns: 1fr 1fr;
  }
  .augp-jul-grid__aug-header { grid-column: 1 / 3; }
  .augp-jul-grid__jul-header { grid-column: 1 / 3; margin-top: 32px; }
}
