:root {
  --paper: #f4f3ef;
  --ink: #151515;
  --line: #b8b7b1;
  --blue: #1648d8;
  --cream: #ded2ae;
  --red: #ef3b23;
  --display: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
}
button, input, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(244,243,239,.94);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(12px);
}
.brand, nav button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.brand { padding: 0; }
.brand img { display: block; width: 118px; height: 50px; object-fit: contain; object-position: left center; }
nav { display: flex; align-items: center; gap: 10px; }
nav button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: .82rem;
  text-transform: uppercase;
}
nav button:hover, nav button:focus-visible { border-color: var(--ink); outline: none; }
.cart-trigger span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  border-bottom: 1px solid var(--ink);
}
.hero-copy {
  padding: clamp(28px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eyebrow, .meta, .specs, .price, .kicker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.eyebrow, .kicker { font-size: .8rem; }
h1 {
  margin: 36px 0 24px;
  max-width: 900px;
  font-size: clamp(4rem, 10vw, 9.7rem);
  line-height: .81;
  font-weight: 900;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.hero-note {
  max-width: 420px;
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.38rem);
  line-height: 1.25;
}
.hero-image {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-family: var(--mono);
  font-size: .8rem;
  text-align: center;
  transform: rotate(8deg);
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background: var(--blue);
  color: white;
}
.ticker-track {
  width: max-content;
  padding: 10px 0;
  display: flex;
  gap: 48px;
  font-family: var(--mono);
  font-size: .8rem;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--ink);
}
.section-heading h2, .page-title {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.section-heading p { max-width: 390px; margin: 0; font-size: 1.1rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--ink); }
.product-card { min-width: 0; border-right: 1px solid var(--ink); }
.product-card:last-child { border-right: 0; }
.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 0;
  background: #ddd;
  cursor: pointer;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-info { padding: 18px 20px 24px; display: grid; grid-template-columns: 1fr auto; gap: 16px; }
.product-name { margin: 0; font-size: clamp(2rem, 4vw, 4.6rem); letter-spacing: -.055em; }
.product-desc { margin: 8px 0 0; color: #555; }
.price { text-align: right; font-size: .9rem; white-space: nowrap; }
.buy-row { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0 18px;
  background: transparent;
  font-family: var(--mono);
  font-size: .82rem;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover, .btn:focus-visible { background: var(--ink); color: white; outline: none; }
.btn.primary { background: var(--ink); color: white; }
.btn.primary:hover { background: var(--blue); border-color: var(--blue); }

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 1px solid var(--ink);
}
.manifesto > div { padding: clamp(28px, 5vw, 72px); }
.manifesto .statement {
  display: flex;
  align-items: flex-end;
  background: var(--cream);
  border-right: 1px solid var(--ink);
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: .88;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.manifesto .details { display: flex; flex-direction: column; justify-content: space-between; }
.manifesto p { max-width: 540px; font-size: clamp(1.2rem, 2.4vw, 2rem); line-height: 1.15; }

.detail { min-height: calc(100svh - 76px); }
.detail-top { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--ink); }
.detail-photo { min-height: 720px; background: #111; }
.detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.detail-panel { padding: clamp(28px, 5vw, 72px); display: flex; flex-direction: column; }
.back { width: fit-content; margin-bottom: auto; border: 0; background: transparent; padding: 0; font-family: var(--mono); cursor: pointer; }
.detail h1 { margin: 80px 0 18px; font-size: clamp(4rem, 9vw, 9rem); }
.detail-lede { max-width: 510px; font-size: 1.25rem; line-height: 1.3; }
.config { margin-top: 34px; border-top: 1px solid var(--ink); }
.config-row { display: grid; grid-template-columns: 150px 1fr; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.config-row label { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; }
.config-row select { min-height: 44px; border: 1px solid var(--ink); border-radius: 0; background: transparent; padding: 0 12px; }
.detail-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 24px; }
.detail-actions .price { display: flex; align-items: center; padding: 0 16px; border: 1px solid var(--ink); }
.detail-grid { display: grid; grid-template-columns: 1.2fr .8fr; }
.detail-grid img { width: 100%; height: 620px; object-fit: cover; border-right: 1px solid var(--ink); }
.spec-box { padding: 36px; }
.spec-box h2 { margin: 0 0 40px; font-size: 2.5rem; text-transform: uppercase; }
.specs { margin: 0; padding: 0; list-style: none; font-size: .82rem; }
.specs li { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }

.page { min-height: calc(100svh - 76px); padding: 32px 24px 80px; }
.page-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 60px; }
.cart-layout { display: grid; grid-template-columns: 1fr minmax(320px, .45fr); gap: 32px; }
.cart-items { border-top: 1px solid var(--ink); }
.cart-item { display: grid; grid-template-columns: 120px 1fr auto; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--ink); }
.cart-item img { width: 120px; height: 120px; object-fit: cover; }
.cart-item h3 { margin: 0 0 8px; font-size: 1.7rem; }
.cart-item p { margin: 0; color: #666; font-family: var(--mono); font-size: .78rem; }
.remove { border: 0; background: transparent; text-decoration: underline; cursor: pointer; align-self: end; }
.summary { height: fit-content; border: 1px solid var(--ink); padding: 22px; position: sticky; top: 100px; }
.summary h2 { margin-top: 0; font-size: 2rem; text-transform: uppercase; }
.summary-line { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.summary .btn { width: 100%; margin-top: 20px; }
.empty { max-width: 680px; padding: 60px 0; }
.empty p { font-size: 1.25rem; }
.checkout { max-width: 800px; margin: 0 auto; }
.checkout-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; }
.field input, .field select {
  min-height: 50px;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 0 14px;
  background: white;
}
.checkout-note { margin: 24px 0; padding: 16px; background: var(--cream); font-size: .95rem; }
.success { max-width: 760px; padding: 60px 0; }
.success-mark { width: 110px; height: 110px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: white; font-size: 3rem; }
.success h1 { font-size: clamp(4rem, 10vw, 9rem); margin-top: 40px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--ink); }
.about-grid > div { padding: clamp(28px, 5vw, 70px); }
.about-grid > div:first-child { background: var(--blue); color: white; }
.about-grid p { font-size: clamp(1.3rem, 2vw, 2rem); line-height: 1.2; }

footer { min-height: 220px; padding: 30px 24px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 20px; font-family: var(--mono); font-size: .78rem; text-transform: uppercase; }
footer img { width: 130px; }
footer div { display: flex; gap: 20px; }
footer a { text-decoration: underline; }
#toast { position: fixed; left: 50%; bottom: 24px; z-index: 50; transform: translate(-50%, 130%); padding: 14px 20px; background: var(--ink); color: white; font-family: var(--mono); font-size: .8rem; transition: transform .25s; }
#toast.show { transform: translate(-50%, 0); }

@media (max-width: 820px) {
  .site-header { min-height: 66px; padding: 8px 14px; }
  .brand img { width: 90px; height: 42px; }
  nav { gap: 0; }
  nav button { padding: 0 8px; font-size: .72rem; }
  nav button[data-route="about"] { display: none; }
  .hero, .detail-top, .manifesto, .detail-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 530px; }
  .hero-image { min-height: 70svh; }
  h1 { font-size: clamp(4.2rem, 21vw, 7rem); }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { border-right: 0; border-bottom: 1px solid var(--ink); }
  .product-card:last-child { border-bottom: 0; }
  .manifesto .statement { border-right: 0; border-bottom: 1px solid var(--ink); min-height: 440px; }
  .detail-photo { min-height: 68svh; }
  .detail-grid img { height: 65svh; border-right: 0; border-bottom: 1px solid var(--ink); }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .checkout-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .about-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; align-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .product-image img { transition: none; }
}

/* Product-led catalogue: measured typography and uncropped studio views. */
body { line-height: 1.5; }
.editorial-intro { display: block; min-height: 0; }
.editorial-intro .hero-copy { min-height: 0; padding: 44px 32px 36px; gap: 18px; }
.editorial-intro h1 { font-size: clamp(2rem, 4.5vw, 4.5rem); font-weight: 400; line-height: 1.12; letter-spacing: -.045em; margin: 0; text-transform: none; }
.hero-note { font-size: .875rem; line-height: 1.5; }
.product-grid { gap: 0; }
.product-card { background: #eeede9; }
.product-image { aspect-ratio: auto; height: clamp(360px, 49vw, 700px); background: #d2cfca; }
.product-image img { object-fit: contain; }
.product-card:hover .product-image img { transform: none; }
.product-info { padding: 24px 32px 32px; background: var(--paper); align-items: center; }
.product-name { font-size: clamp(1.5rem, 2.5vw, 2.8rem); font-weight: 400; letter-spacing: -.04em; }
.product-desc { font-size: .875rem; }
.kicker { margin: 0 0 8px; font-size: .75rem; color: #555; }
.price { font-size: .875rem; }
.btn { font-size: .875rem; }
.ambient-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 64px 32px; border-bottom: 1px solid var(--ink); }
.ambient-pair figure { margin: 0; }
.ambient-pair img { display: block; width: 100%; height: 550px; object-fit: contain; background: #e5e2dc; }
.ambient-pair figcaption { font-size: .75rem; padding-top: 12px; }
.detail-top { grid-template-columns: 1.15fr 1fr; }
.detail-photo { position: relative; min-height: 0; height: min(820px, calc(100svh - 76px)); background: #d2cfca; padding-bottom: 70px; }
.detail-photo img { object-fit: contain; }
.light-controls { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; background: var(--paper); border: 1px solid var(--ink); }
.light-controls button { background: transparent; border: 0; padding: 12px 18px; font-size: .875rem; cursor: pointer; }
.light-controls button[aria-pressed="true"] { color: white; background: var(--ink); }
.detail-panel { justify-content: center; padding: 40px; }
.back { margin-bottom: 40px; font-size: .875rem; }
.detail h1 { font-size: clamp(2rem, 4vw, 4.5rem); margin: 22px 0; font-weight: 400; letter-spacing: -.045em; line-height: 1.15; }
.detail-lede { font-size: 1rem; line-height: 1.65; }
.config-row label, .specs, nav button, footer { font-size: .875rem; }
.detail-grid img { object-fit: contain; background: #e5e2dc; }
.page-title { font-size: clamp(2rem, 5vw, 5rem); line-height: 1.1; font-weight: 400; letter-spacing: -.04em; }
.cart-item h3 { font-size: 1.25rem; }
.about-grid p { font-size: 1.1rem; line-height: 1.65; }
.privacy-consent { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; line-height: 1.5; }
.privacy-consent input { width: 18px; min-width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--ink); }
.privacy-consent a { color: inherit; text-underline-offset: 3px; }
@media (max-width: 820px) {
  .editorial-intro .hero-copy { padding: 32px 20px; }
  .product-info { padding: 22px 20px; }
  .product-image { height: 66svh; max-height: 650px; }
  .ambient-pair { grid-template-columns: 1fr; padding: 36px 20px; gap: 32px; }
  .ambient-pair img { height: auto; max-height: 650px; }
  .detail-top { grid-template-columns: 1fr; }
  .detail-photo { height: 72svh; }
  .detail-panel { padding: 30px 20px; }
  .detail-actions { grid-template-columns: 1fr; }
  .detail-actions .price { padding: 14px; justify-content: center; }
  nav button { font-size: .75rem; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item img { width: 70px; height: 100px; }
  .cart-item > div:last-child { grid-column: 2; display: flex; justify-content: space-between; }
}
