/* index.html — extracted stylesheet */
:root {
  --ink: #1c1c1a;
  --ink-soft: #2d2d2a;
  --paper: #f4f1ea;
  --paper-warm: #ebe6db;
  --paper-cool: #ffffff;
  --rule: #d8d3c5;
  --accent: #c8553d;
  --muted: #5e5b52;
  --highlight: #e8dfc8;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Sohne', -apple-system, 'Helvetica Neue', Helvetica, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --max-w: 1440px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ============ TOP UTILITY BAR ============ */
.utility {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 0;
}
.utility-marquee { opacity: 0.85; }
.utility-actions { display: flex; gap: 1.5rem; opacity: 0.85; }
@media (max-width: 720px) {
  .utility {
    padding: 0.45rem var(--gutter);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    justify-content: center;
  }
  .utility-actions { display: none; }
  .utility-marquee {
    text-align: center;
    line-height: 1.4;
  }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 28px;
  height: 36px;
  flex-shrink: 0;
}
.logo-mark rect { fill: none; stroke: var(--ink); stroke-width: 2.5; }
.logo-mark line { stroke: var(--ink); stroke-width: 2.5; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.logo-text .light { font-weight: 300; opacity: 0.7; }
.logo-text .dot { padding: 0 0.25em; opacity: 0.4; }

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}
@media (max-width: 520px) {
  .nav-cta { display: none; }
}

/* ============ MOBILE MENU (HAMBURGER) ============ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 6px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 16px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 16px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 16px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  z-index: 99;
  padding: 5.5rem 2rem 3rem;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu li {
  border-bottom: 1px solid var(--rule);
}
.mobile-menu a {
  display: block;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a:active {
  color: var(--accent);
}
.mobile-menu .mobile-cta {
  display: block;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  border-radius: 999px;
  font-family: var(--font-system);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: none;
}
.mobile-menu .mobile-cta:hover {
  background: var(--accent);
  color: var(--paper);
}

@media (max-width: 880px) {
  .menu-toggle { display: block; }
}

body.menu-open {
  overflow: hidden;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 7rem) var(--gutter) clamp(4rem, 10vw, 8rem);
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #ebe6db 0%, #d8d2c0 100%);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(244, 241, 234, 0.85);
  padding: 0.5rem 0.8rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 900px) {
  .hero-visual { aspect-ratio: 1 / 1; }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.hero-title .line { display: block; }

.hero-body {
  display: block;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.hero-body .hero-lede {
  margin-bottom: 2rem;
}
.hero-body .hero-meta {
  margin-top: 2rem;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.hero-meta-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.hero-meta-row span:last-child { color: var(--ink); font-weight: 500; }

.hero-actions {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 2.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.25s;
}
.btn-primary:hover { background: var(--accent); }
.btn-secondary {
  border: 1px solid var(--ink);
  padding: 1.1rem 2.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

/* ============ CREDENTIALS BAR ============ */
.credentials {
  background: var(--ink);
  color: var(--paper);
  padding: 1.8rem var(--gutter);
  overflow: hidden;
}
.cred-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.95;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cred-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============ SECTION GLOBAL ============ */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 20ch;
  font-variation-settings: "opsz" 144;
}
.section-title em { font-style: italic; font-weight: 300; }
.section-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 55ch;
  margin-top: 1.5rem;
}

/* ============ COLLECTION GRID ============ */
.collection {
  background: var(--paper-warm);
}
.collection-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (max-width: 780px) {
  .collection-header { grid-template-columns: 1fr; }
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  row-gap: 4rem;
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper-cool);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product:hover { transform: translateY(-4px); }
.product-image-wrap {
  position: relative;
  background: #ffffff;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

/* Carousel — multi-angle product viewer */
.product-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.product:hover .carousel-slide.active {
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}

/* Prev / next arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease;
  padding: 0;
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow.carousel-prev { left: 0.75rem; }
.carousel-arrow.carousel-next { right: 0.75rem; }
.product:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover {
  background: var(--paper);
  transform: translateY(-50%) scale(1.06);
}
.carousel-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  opacity: 1;
}
.carousel-arrow[disabled] {
  opacity: 0 !important;
  pointer-events: none;
}

/* Dot indicators */
.carousel-dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;  /* Buttons have their own hit-area padding now — no additional gap needed */
  z-index: 3;
  padding: 0.1rem 0.2rem;  /* Reduced since buttons carry their own space */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  transition: opacity 0.25s ease;
}
.carousel-dot {
  /* Desktop: visual dot 7px, tap area 24×24 (via padding + content-box).
     Mobile media query bumps padding for 44×44 tap area. */
  width: 7px;
  height: 7px;
  padding: 8.5px;
  border-radius: 50%;
  background: rgba(28, 28, 26, 0.25);
  background-clip: content-box;
  border: none;
  box-sizing: content-box;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot:hover { background: rgba(28, 28, 26, 0.5); background-clip: content-box; }
.carousel-dot.active {
  background: var(--accent);
  background-clip: content-box;
  transform: scale(1.25);
}
.carousel-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Mobile — always show arrows, tuck dots higher */
@media (max-width: 720px) {
  .carousel-arrow {
    opacity: 1;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.92);
  }
  .carousel-arrow.carousel-prev { left: 0.5rem; }
  .carousel-arrow.carousel-next { right: 0.5rem; }
  .carousel-dots { bottom: 0.7rem; }
  /* Mobile: 44×44 tap area (WCAG 2.5.5). Visual dot still 7px, expanded via padding. */
  .carousel-dot {
    padding: 18.5px;
  }
}

/* Screen-reader-only announce region */
.carousel-live {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}
.product-tag.flagship { background: var(--accent); }

.product-info {
  padding: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.product-category {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.product-name em { font-style: italic; }
.product-meta {
  font-size: 0.85rem;
  color: var(--muted);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}
/* Product sizing — 7 pod layout */
/* Product cards — visual hierarchy by size, consistent framing */
.product.size-s { grid-column: span 3; }   /* 4 per row: 4 × 3 = 12 */
.product.size-m { grid-column: span 3; }   /* 4 per row: 4 × 3 = 12 */
.product.size-ml { grid-column: span 6; }  /* 2 per row: 2 × 6 = 12 */
.product.size-l { grid-column: span 6; }   /* 2 per row: 2 × 6 = 12 */
.product.size-xl { grid-column: span 12; } /* XL flagship full width */
/* Consistent framing: small cards portrait, mid cards landscape, XL widescreen */
.product.size-ml .product-image-wrap,
.product.size-l .product-image-wrap {
  aspect-ratio: 4 / 3;
}
.product.size-xl .product-image-wrap {
  aspect-ratio: 16 / 9;
}

@media (max-width: 1100px) {
  .product.size-s { grid-column: span 6; }
  .product.size-m { grid-column: span 6; }
  .product.size-ml { grid-column: span 6; }
  .product.size-l { grid-column: span 6; }
  .product.size-xl { grid-column: span 12; }
}
@media (max-width: 720px) {
  .product.size-s, .product.size-m, .product.size-ml,
  .product.size-l, .product.size-xl { grid-column: span 12; }
}

/* ============ MANIFESTO ============ */
.manifesto {
  background: var(--ink);
  color: var(--paper);
}
.manifesto .section-eyebrow { color: rgba(244, 241, 234, 0.6); }
.manifesto .section-title { color: var(--paper); }
.manifesto .section-intro { color: rgba(244, 241, 234, 0.75); }

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}
@media (max-width: 780px) { .manifesto-grid { grid-template-columns: 1fr; } }

.manifesto-card {
  border-top: 1px solid rgba(244, 241, 234, 0.2);
  padding-top: 2rem;
}
.manifesto-card-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #9a3d28;  /* darker for AA contrast on small text */
  margin-bottom: 1.25rem;
}
.manifesto-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.manifesto-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(244, 241, 234, 0.8);
}

/* ============ STATS ============ */
.stats {
  background: var(--paper-warm);
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats-grid { grid-template-columns: 1fr; } }

.stat {
  border-top: 1px solid var(--ink);
  padding-top: 1.5rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.stat-unit { font-size: 0.5em; color: var(--ink); margin-left: 0.1em; }
.stat-label {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  line-height: 1.45;
  max-width: 24ch;
}
.stat-source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

/* ============ COLOR LIBRARY ============ */
.colorway {
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.colorway-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.colorway-grid-interior {
  grid-template-columns: repeat(4, 1fr);
  max-width: 50%;
  margin-top: 1.5rem;
}
@media (max-width: 880px) {
  .colorway-grid { grid-template-columns: repeat(4, 1fr); }
  .colorway-grid-interior { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
}

.colorway-divider {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.colorway-divider-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.swatch {
  text-align: center;
}
.swatch-chip {
  aspect-ratio: 1;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  border: 1px solid var(--rule);
  box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s;
}
.swatch:hover .swatch-chip { transform: scale(1.06); }
.swatch-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.swatch-code {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
  display: block;
  margin-top: 0.15rem;
}

/* ============ VIDEO SECTIONS ============ */
.video-feature {
  background: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.video-feature-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-frame.poster-mode video { display: none; }
.video-frame.poster-mode .video-poster { display: block; }
.video-poster {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(28, 28, 26, 0.15) 0%, rgba(28, 28, 26, 0.45) 100%);
  transition: background 0.3s;
  pointer-events: none;
}
.video-frame.playing .video-play-overlay { opacity: 0; pointer-events: none; }
.video-frame:hover .video-play-overlay { background: linear-gradient(180deg, rgba(28, 28, 26, 0.1) 0%, rgba(28, 28, 26, 0.35) 100%); }
.video-play-button {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: rgba(244, 241, 234, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.video-frame:hover .video-play-button {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.video-play-button::after {
  content: '';
  width: 0; height: 0;
  border-left: 24px solid var(--ink);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-caption {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  flex-wrap: wrap;
}
.video-caption-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.5);
}
.video-caption-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--paper);
  max-width: 28ch;
  margin-top: 0.5rem;
}
.video-caption-title em { font-style: italic; }

/* Slideshow video — smaller, autoplay loop */
.brand-loop {
  background: var(--paper-warm);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  border-top: 1px solid var(--rule);
}
.brand-loop-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.brand-loop-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}
.brand-loop-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-loop-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-loop-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.brand-loop-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
  max-width: 28ch;
}
.brand-loop-title em { font-style: italic; }
.specs-section {
  background: var(--paper);
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
}
.specs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.specs-header {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.specs-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.specs-tab {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  white-space: nowrap;
}
.specs-tab:hover { color: var(--ink); }
.specs-tab.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.specs-content { display: none; animation: fadeIn 0.4s ease; }
.specs-content.active { display: grid; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.specs-content {
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) {
  .specs-content { grid-template-columns: 1fr; }
}

.spec-image-col {
  background: var(--paper-warm);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px solid var(--rule);
}
.spec-image-col img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.spec-detail-col h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}
.spec-detail-col h3 em { font-style: italic; }
.spec-subtitle {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a3d28;  /* darker for AA contrast on small text */
  margin-bottom: 2rem;
}

.spec-group {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
}
.spec-group:last-child { border-bottom: 1px solid var(--rule); }
.spec-group-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  line-height: 1.5;
}
.spec-row dt { color: var(--ink-soft); }
.spec-row dd {
  color: var(--ink);
  font-weight: 500;
}
.spec-row dd .imperial {
  color: var(--muted);
  font-size: 0.85em;
  font-weight: 400;
  margin-left: 0.4em;
}

.spec-furniture-callout {
  background: var(--ink);
  color: var(--paper);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.spec-furniture-callout strong {
  display: block;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.signup {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}
.signup-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.signup h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  font-variation-settings: "opsz" 144;
}
.signup h2 em { font-style: italic; color: var(--accent); }
.signup p {
  font-size: 1.05rem;
  color: rgba(244, 241, 234, 0.75);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}
.signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.signup-form input {
  flex: 1;
  min-width: 200px;
  padding: 1.1rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.3);
  color: var(--paper);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
}
.signup-form input:focus { border-color: var(--accent); }
.signup-form input::placeholder { color: rgba(244, 241, 234, 0.5); }
.signup-form button {
  padding: 1.1rem 2rem;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s;
}
.signup-form button:hover { background: var(--accent); color: var(--paper); }
.signup-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(244, 241, 234, 0.4);
  margin-top: 1.5rem;
}
/* Consent checkbox for waitlist */
.signup-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 480px;
  margin: 1.25rem auto 0;
  padding: 0 0.25rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(244, 241, 234, 0.72);
  text-align: left;
}
.signup-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
  cursor: pointer;
}
.signup-consent span {
  flex: 1;
}
/* Honeypot — visually and accessibly hidden from real users, still in the DOM for bots to fill */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink-soft);
  color: rgba(244, 241, 234, 0.7);
  padding: 4rem var(--gutter) 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244, 241, 234, 0.15);
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--paper);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(244, 241, 234, 0.7);
  transition: color 0.2s;
  display: inline-block;
  padding: 0.2rem 0;
  /* Increase tap area on mobile without changing visual layout */
}
.footer-col a:hover { color: var(--accent); }
.footer-col li {
  font-size: 0.88rem;
  color: rgba(244, 241, 234, 0.7);
  line-height: 1.5;
}
.footer-meta-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.7);  /* bumped for AA contrast */
  display: block;
  margin-bottom: 0.1rem;
}

/* Mobile — give footer links roomy tap targets (Apple recommends 44px) */
@media (max-width: 720px) {
  .footer-col ul { gap: 0.4rem; }
  .footer-col a {
    padding: 0.7rem 0;
    font-size: 0.95rem;
  }
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal:nth-child(1) { animation-delay: 0.05s; }
.reveal:nth-child(2) { animation-delay: 0.15s; }
.reveal:nth-child(3) { animation-delay: 0.25s; }
.reveal:nth-child(4) { animation-delay: 0.35s; }
.reveal:nth-child(5) { animation-delay: 0.45s; }
.reveal:nth-child(6) { animation-delay: 0.55s; }
.reveal:nth-child(7) { animation-delay: 0.65s; }

/* Reveal on scroll (IntersectionObserver applied via JS) */
/* Elements default to VISIBLE — animation is progressive enhancement only */
.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* Only hide if JS has run AND added the prep class */
.js-reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
}
.js-reveal-ready .scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
