/*
Theme Name: ITOUKEI Brutal
Theme URI: https://itoukei.com
Author: ITOUKEI®
Author URI: https://itoukei.com
Description: Thème brutalist ITOUKEI — #D0CCC0 × #000 × #F5C900. Impact, Space Grotesk, Courier. Three.js 3D robot. Streetwear brodé, Sion Suisse.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://itoukei.com
Text Domain: itoukei-brutal
Tags: woocommerce, streetwear, brutalist, three-js, minimal
*/

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

:root {
  --bg:      #D0CCC0;
  --black:   #000000;
  --yellow:  #F5C900;
  --white:   #FFFFFF;
  --border:  3px solid #000;
  --border-t:1.5px solid #000;
  --nav-h:   64px;
  --font-d:  Impact, 'Arial Narrow', Arial, sans-serif;
  --font-b:  'Space Grotesk', sans-serif;
  --font-m:  'Courier New', Courier, monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: var(--font-b);
  color: var(--black);
  overflow-x: hidden;
}

img { display:block; max-width:100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════════════
   THREE.JS CANVAS (LAYER 1)
═══════════════════════════════════════════════ */
#webgl-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}

/* ═══════════════════════════════════════════════
   LOADING SCREEN
═══════════════════════════════════════════════ */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity .5s ease;
}
#loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-logo {
  font-family: var(--font-d);
  font-size: clamp(48px, 10vw, 96px);
  color: var(--yellow);
  letter-spacing: 6px;
  text-transform: uppercase;
}
.loading-bar-wrap {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
}
.loading-bar {
  height: 100%;
  background: var(--yellow);
  width: 0%;
  transition: width .1s linear;
}
.loading-pct {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
#itoukei-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: var(--bg);
  border-bottom: var(--border);
  transition: background .2s;
}
#itoukei-nav.scrolled { background: var(--bg); }

.nav-logo {
  font-family: var(--font-d);
  font-size: 26px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}
.nav-logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links li a {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-left: var(--border-t);
  display: block;
  transition: background .15s, color .15s;
}
.nav-links li a:hover { background: var(--black); color: var(--yellow); }
.nav-links li:last-child a { border-right: var(--border-t); }

.nav-cta {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--yellow);
  border: var(--border);
  padding: 8px 20px;
  cursor: pointer;
  transition: background .15s, color .15s;
  margin-left: 16px;
}
.nav-cta:hover { background: var(--black); color: var(--yellow); }

.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 2px;
  border: var(--border-t);
  padding: 6px 12px;
  transition: background .15s, color .15s;
  margin-left: 8px;
}
.nav-cart:hover { background: var(--black); color: var(--yellow); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform .2s, opacity .2s;
}
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
#mobile-menu {
  display: block;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: var(--border);
  z-index: 99;
  transform: translateY(-120%);
  transition: transform .3s ease;
}
#mobile-menu.open { transform: translateY(0); }
#mobile-menu a {
  display: block;
  padding: 18px 24px;
  border-bottom: var(--border-t);
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#mobile-menu a:hover { background: var(--black); color: var(--yellow); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  background: transparent;
  pointer-events: none;
}

.hero-inner { pointer-events: all; }

.hero-eyebrow {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  display: inline-block;
  padding: 4px 12px;
  border: var(--border-t);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(20px);
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(72px, 14vw, 180px);
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--black);
  opacity: 0; transform: translateY(40px);
}
.hero-title .accent { color: var(--yellow); -webkit-text-stroke: 2px var(--black); }

.hero-sub {
  font-family: var(--font-m);
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 3px;
  color: var(--black);
  margin-top: 20px;
  max-width: 480px;
  line-height: 1.8;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: 0;
}

.btn {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: var(--border);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--black); color: var(--yellow); }
.btn-secondary { background: var(--black); color: var(--yellow); }
.btn-secondary:hover { background: var(--yellow); color: var(--black); }

/* Hero corner markers */
.hero-corner {
  position: absolute;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(0,0,0,.4);
  pointer-events: none;
}
.hero-corner.tl { top: calc(var(--nav-h) + 16px); left: 24px; }
.hero-corner.tr { top: calc(var(--nav-h) + 16px); right: 24px; }
.hero-corner.bl { bottom: 24px; left: 24px; }
.hero-corner.br { bottom: 24px; right: 24px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--black);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
.hero-scroll-label {
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(.6); }
}

/* ═══════════════════════════════════════════════
   TICKER / MARQUEE
═══════════════════════════════════════════════ */
.ticker-wrap {
  position: relative;
  z-index: 3;
  background: var(--black);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.ticker-item {
  font-family: var(--font-d);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 0 32px;
  flex-shrink: 0;
}
.ticker-dot {
  font-size: 18px;
  color: var(--yellow);
  padding: 0 8px;
  flex-shrink: 0;
  line-height: 1;
  align-self: center;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 3;
  background: var(--bg);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 56px 24px 32px;
  border-bottom: var(--border);
  gap: 20px;
  flex-wrap: wrap;
}
.section-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
  margin-bottom: 8px;
  display: block;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(40px, 7vw, 88px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: 0;
}
.section-link {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: var(--border-t);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s;
}
.section-link:hover { opacity: .6; }

/* ═══════════════════════════════════════════════
   PRODUCT GRID (WooCommerce)
═══════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: var(--border);
}
/* WooCommerce ul.products override */
ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: var(--border);
  list-style: none;
  margin: 0; padding: 0;
}

.product-card,
ul.products li.product {
  border-right: var(--border);
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  transition: background .15s;
}
.product-card:hover,
ul.products li.product:hover { background: #C8C4B8; }

.product-img-wrap {
  aspect-ratio: 1/1;
  background: #C0BCB0;
  border-bottom: var(--border);
  overflow: hidden;
  position: relative;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

/* WooCommerce product image */
ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-bottom: var(--border);
  transition: transform .4s ease;
}
ul.products li.product:hover a img { transform: scale(1.04); }

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B8B4A8;
}
.product-placeholder-letter {
  font-family: var(--font-d);
  font-size: 80px;
  color: rgba(0,0,0,.15);
  letter-spacing: 0;
  line-height: 1;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  border: var(--border-t);
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 3px 8px;
  z-index: 2;
}

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* WooCommerce product body */
ul.products li.product .product-body-wc {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-cat {
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,.4);
}
.product-name,
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-d);
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-desc {
  font-family: var(--font-m);
  font-size: 11px;
  line-height: 1.7;
  color: rgba(0,0,0,.6);
  margin-top: 4px;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: var(--border-t);
}
.product-price,
ul.products li.product .price {
  font-family: var(--font-d);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--black);
}
.product-cta,
ul.products li.product .button {
  font-family: var(--font-b);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--black);
  color: var(--yellow);
  border: none;
  padding: 9px 16px;
  cursor: pointer;
  transition: background .15s, color .15s;
  text-decoration: none;
  display: inline-block;
}
.product-cta:hover,
ul.products li.product .button:hover { background: var(--yellow); color: var(--black); }

/* ═══════════════════════════════════════════════
   BBOT SECTION
═══════════════════════════════════════════════ */
#bbot-section {
  position: relative;
  z-index: 3;
  background: var(--black);
  border-top: var(--border);
  border-bottom: var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.bbot-visual {
  border-right: var(--border);
  overflow: hidden;
  background: #111;
  min-height: 400px;
}
.bbot-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  filter: contrast(1.1);
}
.bbot-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.bbot-eyebrow {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245,201,0,.3);
  display: inline-block;
  padding: 4px 10px;
}
.bbot-title {
  font-family: var(--font-d);
  font-size: clamp(40px, 6vw, 72px);
  line-height: .9;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
}
.bbot-title .accent { color: var(--yellow); }
.bbot-text {
  font-family: var(--font-m);
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,.65);
  max-width: 400px;
}
.bbot-cta {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  border: var(--border);
  padding: 12px 28px;
  width: fit-content;
  transition: background .15s, color .15s;
}
.bbot-cta:hover { background: var(--white); }

/* ═══════════════════════════════════════════════
   UNIVERS / STORIES SECTION
═══════════════════════════════════════════════ */
#univers-section {
  position: relative;
  z-index: 3;
  background: var(--bg);
  border-bottom: var(--border);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: var(--border);
}

.story-card {
  border-right: var(--border);
  border-bottom: var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .15s;
}
.story-card:hover { background: #C8C4B8; }

.story-num {
  font-family: var(--font-d);
  font-size: 80px;
  line-height: 1;
  color: rgba(0,0,0,.08);
  letter-spacing: -2px;
  margin-bottom: -16px;
}
.story-chapter {
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,.4);
}
.story-title {
  font-family: var(--font-d);
  font-size: clamp(22px, 3vw, 32px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.story-text {
  font-family: var(--font-m);
  font-size: 12px;
  line-height: 1.8;
  color: rgba(0,0,0,.6);
  flex: 1;
}
.story-link {
  font-family: var(--font-b);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: var(--border-t);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 4px;
  transition: opacity .2s;
}
.story-link:hover { opacity: .5; }

/* Manifeste strip */
.manifeste-strip {
  background: var(--yellow);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.manifeste-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
}
.manifeste-quote {
  font-family: var(--font-d);
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */
#contact-section {
  position: relative;
  z-index: 3;
  background: var(--black);
  border-top: var(--border);
  padding: 80px 24px;
  text-align: center;
}
.contact-title {
  font-family: var(--font-d);
  font-size: clamp(48px, 9vw, 120px);
  line-height: .9;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.contact-title .accent { color: var(--yellow); }
.contact-sub {
  font-family: var(--font-m);
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.5);
  margin-bottom: 48px;
}
.contact-email {
  font-family: var(--font-d);
  font-size: clamp(20px, 4vw, 36px);
  letter-spacing: 2px;
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
  display: inline-block;
  transition: opacity .2s;
}
.contact-email:hover { opacity: .7; }
.contact-note {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.3);
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  position: relative;
  z-index: 3;
  background: var(--bg);
  border-top: var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-left: var(--border);
}
.footer-col {
  padding: 40px 28px;
  border-right: var(--border);
}
.footer-brand {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand span { color: var(--yellow); -webkit-text-stroke: 1px var(--black); }
.footer-tagline {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(0,0,0,.5);
  margin-bottom: 24px;
  line-height: 1.8;
}
.footer-col-title {
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,.4);
  margin-bottom: 20px;
  border-bottom: var(--border-t);
  padding-bottom: 8px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  font-family: var(--font-b);
  font-size: 12px;
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(0,0,0,.7);
  transition: color .15s;
  letter-spacing: .5px;
}
.footer-col ul li a:hover { color: var(--black); }

.footer-bottom {
  border-top: var(--border-t);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(0,0,0,.4);
  text-transform: uppercase;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,.4);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--black); }

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS (initial state)
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}

/* ═══════════════════════════════════════════════
   INNER PAGES
═══════════════════════════════════════════════ */
.page-content {
  position: relative;
  z-index: 3;
  background: var(--bg);
  padding: calc(var(--nav-h) + 48px) 40px 80px;
  min-height: 80vh;
  max-width: 900px;
  margin: 0 auto;
}
.page-content h1 {
  font-family: var(--font-d);
  font-size: clamp(40px, 7vw, 80px);
  line-height: .9;
  text-transform: uppercase;
  margin-bottom: 32px;
  border-bottom: var(--border);
  padding-bottom: 24px;
}
.page-content h2 {
  font-family: var(--font-d);
  font-size: clamp(22px, 3vw, 36px);
  text-transform: uppercase;
  margin: 40px 0 12px;
}
.page-content p, .page-content li {
  font-family: var(--font-m);
  font-size: 13px;
  line-height: 1.9;
  color: rgba(0,0,0,.75);
  margin-bottom: 12px;
}
.page-content a {
  color: var(--black);
  border-bottom: var(--border-t);
}

/* WooCommerce shop page */
.woocommerce-page .page-content { max-width: 100%; padding-left: 0; padding-right: 0; }
.woocommerce-result-count, .woocommerce-ordering {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  ul.products { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(3), .footer-col:nth-child(4) { border-top: var(--border-t); }
  #bbot-section { grid-template-columns: 1fr; }
  .bbot-visual { min-height: 320px; border-right: none; border-bottom: var(--border); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-cart { display: none; }
  .nav-burger { display: flex; }

  .hero-title { font-size: clamp(52px, 18vw, 90px); letter-spacing: -1px; }
  .hero-corner.tr, .hero-corner.br { display: none; }

  .product-grid { grid-template-columns: 1fr; }
  ul.products { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .manifeste-strip { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:not(:first-child) { border-top: var(--border-t); }

  #bbot-section { grid-template-columns: 1fr; }
  .bbot-content { padding: 40px 24px; }
  .bbot-visual { min-height: 260px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-content { padding: calc(var(--nav-h) + 32px) 24px 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .hero-scroll-line { animation: none; }
}
