/* ============================================================
   OWITHU — B2B HoReCa Tableware
   Extends Plastify design tokens (white/black/mustard).
   ============================================================ */

@import url("./colors_and_type.css");

/* --- Reset / base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* --- Brand-specific overrides ----------------------------- */
:root {
  /* Slightly warmer mustard than Plastify's gold; the brief said
     mustard accent. Brand tokens still resolve via the gold scale. */
  --mustard:        #C9A227;
  --mustard-soft:   #E7C75A;
  --mustard-deep:   #8E6E15;

  --ink:            #0E0E0E;
  --ink-soft:       #1A1A1A;
  --paper:          #FFFFFF;
  --paper-warm:     #FAF8F4;
  --paper-cool:     #F5F5F2;
  --line:           rgba(14,14,14,0.10);
  --line-strong:    rgba(14,14,14,0.22);

  --container-wide: 1320px;
  --container:      1240px;
  --container-narrow: 920px;
}

/* --- Containers ------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

@media (min-width: 720px) {
  .container, .container-wide, .container-narrow { padding: 0 40px; }
}

/* --- Type tweaks for the HoReCa context ------------------- */
.display, h1.display, h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 5.4vw, 76px); line-height: 0.98; }
h2 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.02; }
h3 { font-family: var(--font-body); font-weight: 600; font-size: 22px; line-height: 1.25; letter-spacing: -0.005em; text-transform: none; color: var(--ink); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  flex: 0 0 auto;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow.on-dark { color: var(--mustard); }

.lede {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.body, p { color: var(--ink-soft); line-height: 1.6; }
.body-sm { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.meta { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--silver-600); font-weight: 500; }
.techno { font-family: var(--font-techno); letter-spacing: 0.06em; text-transform: uppercase; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 180ms cubic-bezier(0.2, 0.6, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--mustard); border-color: var(--mustard); color: var(--ink); }
.btn-gold {
  background: var(--mustard);
  color: var(--ink);
  border-color: var(--mustard);
}
.btn-gold:hover { background: var(--mustard-deep); color: var(--paper); border-color: var(--mustard-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ghost.on-dark { color: var(--paper); border-color: rgba(255,255,255,0.3); }
.btn-ghost.on-dark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 180ms cubic-bezier(0.2, 0.6, 0.2, 1), border-color 180ms;
}
.btn-link:hover { gap: 16px; border-color: var(--mustard); color: var(--mustard-deep); }
.btn-link.on-dark { color: var(--paper); border-color: var(--paper); }
.btn-link.on-dark:hover { color: var(--mustard); border-color: var(--mustard); }
.btn-sm { padding: 10px 16px; font-size: 12px; }
.btn .arrow { display: inline-block; transition: transform 180ms; }
.btn:hover .arrow, .btn-link:hover .arrow { transform: translateX(4px); }

/* --- Header ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 200ms;
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(0,0,0,0.04); }
.site-header.on-dark { background: var(--ink); border-bottom-color: rgba(255,255,255,0.08); }
.site-header.on-dark .nav-link, .site-header.on-dark .brand { color: var(--paper); }
.site-header.on-dark .nav-link:hover { color: var(--mustard); }

.header-row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand-mark .accent { color: var(--mustard-deep); }
.brand-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver-600);
}

.main-nav { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 160ms;
}
.nav-link:hover { color: var(--mustard-deep); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--mustard);
}
.nav-actions { display: flex; gap: 12px; align-items: center; }
.mobile-toggle { display: none; }

@media (max-width: 960px) {
  .main-nav, .nav-actions .btn { display: none; }
  .mobile-toggle { display: inline-flex; padding: 8px; }
}

/* --- Footer ----------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--silver-300);
  padding: 80px 0 40px;
  margin-top: 0;
}
.site-footer h4 { color: var(--paper); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin: 0 0 20px; font-family: var(--font-body); }
.site-footer a { color: var(--silver-300); text-decoration: none; display: block; padding: 4px 0; transition: color 160ms; }
.site-footer a:hover { color: var(--mustard); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 32px; font-size: 12px; color: var(--silver-500); }
.footer-brand { font-family: var(--font-display); font-size: 32px; color: var(--paper); margin-bottom: 12px; }
.footer-brand .accent { color: var(--mustard); }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.85);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.45) 0%, rgba(14,14,14,0.25) 40%, rgba(14,14,14,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero h1 { color: var(--paper); margin: 24px 0 24px; font-size: clamp(44px, 6vw, 92px); line-height: 0.96; }
.hero .lede { color: rgba(255,255,255,0.86); max-width: 620px; margin-bottom: 40px; font-weight: 400; }
.hero-meta {
  position: absolute;
  right: 40px; bottom: 60px;
  z-index: 2;
  font-family: var(--font-techno);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  text-align: right;
}
.hero-meta .count {
  font-family: var(--font-display);
  font-size: 56px;
  display: block;
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 720px) {
  .hero-meta { display: none; }
}

/* --- Section primitives ----------------------------------- */
.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--paper); }
.section-dark .body, .section-dark .lede { color: rgba(255,255,255,0.8); }
.section-warm { background: var(--paper-warm); }
.section-cool { background: var(--paper-cool); }

.section-header { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; margin-bottom: 64px; align-items: end; }
.section-header h2 { margin: 12px 0 0; }
.section-header .body { max-width: 560px; }
@media (max-width: 860px) {
  .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}

/* --- Industry cards (home) -------------------------------- */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.industry-card {
  background: var(--paper);
  padding: 48px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: background 240ms;
  text-decoration: none;
  color: var(--ink);
  min-height: 580px;
}
.industry-card:hover { background: var(--paper-warm); }
.industry-card .image {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
  overflow: hidden;
}
.industry-card .image-inner {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 480ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.industry-card:hover .image-inner { transform: scale(1.04); }
.industry-card .number {
  font-family: var(--font-techno);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--mustard-deep);
}
.industry-card h3 { font-family: var(--font-display); font-size: 36px; text-transform: uppercase; letter-spacing: 0.01em; font-weight: 400; margin: 0; line-height: 1; }
.industry-card .summary { color: var(--ink-soft); font-size: 15px; line-height: 1.55; flex: 1; }
.industry-card .industry-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.industry-card:hover .industry-cta { color: var(--mustard-deep); }
.industry-card:hover .industry-cta .arrow { transform: translateX(4px); }
@media (max-width: 960px) {
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: auto; }
}

/* --- Collection cards ------------------------------------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
@media (max-width: 960px) { .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
@media (max-width: 600px) { .collection-grid { grid-template-columns: 1fr; } }

.collection-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.collection-card .img-wrap {
  aspect-ratio: 4 / 3;
  background: var(--paper-cool);
  overflow: hidden;
  position: relative;
}
.collection-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1), opacity 380ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.collection-card .cc-img {
  position: absolute;
  inset: 0;
}
.collection-card .cc-img-alt {
  opacity: 0;
}
.collection-card:hover .cc-img-alt { opacity: 1; }
.collection-card:hover .cc-img-base { opacity: 0; }
.collection-card:hover .img-wrap img { transform: scale(1.035); }
.collection-card .img-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--paper);
  padding: 6px 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.collection-card .name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.collection-card .name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.collection-card .finish {
  font-size: 13px;
  color: var(--silver-600);
  font-style: italic;
}
.collection-card .specs-row {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.collection-card .specs-row span { display: inline-flex; align-items: center; gap: 6px; }
.collection-card .specs-row .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--mustard);
}
.collection-card .cta-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 6px;
}
.collection-card:hover .cta-row { color: var(--mustard-deep); }
.collection-card:hover .cta-row .arrow { transform: translateX(4px); }

/* --- Filter chips ----------------------------------------- */
.chips-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 160ms;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip .count { color: var(--silver-500); font-size: 11px; }
.chip.active .count { color: var(--silver-300); }

/* --- Industry hero panel ---------------------------------- */
.industry-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--paper);
}
.industry-hero .copy {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.industry-hero .copy h1 { font-size: clamp(40px, 5vw, 72px); line-height: 0.98; margin: 24px 0 28px; }
.industry-hero .image {
  background-size: cover;
  background-position: center;
}
@media (max-width: 960px) {
  .industry-hero { grid-template-columns: 1fr; min-height: auto; }
  .industry-hero .copy { padding: 64px 24px; }
  .industry-hero .image { aspect-ratio: 4 / 3; }
}

/* --- Feature row (3 col) ---------------------------------- */
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.feature-row .feature h4 { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.01em; margin: 0 0 12px; font-weight: 400; }
.feature-row .feature .num {
  font-family: var(--font-techno);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mustard-deep);
  margin-bottom: 14px;
  display: block;
}
.feature-row .feature p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
@media (max-width: 720px) { .feature-row { grid-template-columns: 1fr; gap: 32px; } }

/* --- Editorial / pull quote ------------------------------- */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.005em;
  font-weight: 400;
  text-transform: none;
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote .em { color: var(--mustard-deep); font-style: italic; }
.pull-quote-cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-600);
}

/* --- RFQ form --------------------------------------------- */
.rfq-section {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.rfq-section.light { background: var(--paper-warm); color: var(--ink); }
.rfq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.rfq-section.light h2, .rfq-section.light .lede { color: var(--ink); }
.rfq-section .lede { max-width: 480px; }
.rfq-section .checklist { margin: 32px 0 0; padding: 0; list-style: none; }
.rfq-section .checklist li {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.rfq-section.light .checklist li { border-top-color: var(--line); color: var(--ink-soft); }
.rfq-section .checklist li .bullet {
  width: 6px; height: 6px;
  background: var(--mustard);
  flex: 0 0 auto;
  margin-top: 6px;
}
.rfq-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}
.rfq-section.light .rfq-form {
  background: var(--paper);
  border-color: var(--line);
}
.rfq-form .full { grid-column: 1 / -1; }
.rfq-field { display: flex; flex-direction: column; gap: 8px; }
.rfq-field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.rfq-section.light .rfq-field label { color: var(--silver-700); }
.rfq-field input, .rfq-field textarea, .rfq-field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 10px 0;
  font-size: 15px;
  color: var(--paper);
  outline: none;
  transition: border-color 160ms;
  border-radius: 0;
  font-family: var(--font-body);
}
.rfq-section.light .rfq-field input,
.rfq-section.light .rfq-field textarea,
.rfq-section.light .rfq-field select {
  color: var(--ink);
  border-bottom-color: var(--line-strong);
}
.rfq-field input:focus, .rfq-field textarea:focus, .rfq-field select:focus { border-bottom-color: var(--mustard); }
.rfq-field textarea { min-height: 110px; resize: vertical; }
.rfq-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.rfq-section.light .rfq-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230e0e0e' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
}
.rfq-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.rfq-section.light .rfq-submit-row { border-top-color: var(--line); }
.rfq-fineprint { font-size: 12px; color: rgba(255,255,255,0.5); max-width: 320px; }
.rfq-section.light .rfq-fineprint { color: var(--silver-600); }

.rfq-success {
  text-align: center;
  padding: 80px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.rfq-section.light .rfq-success { background: var(--paper); border-color: var(--line); }
.rfq-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}
.rfq-success h3 { font-family: var(--font-display); font-size: 32px; text-transform: uppercase; margin: 0 0 12px; color: var(--paper); }
.rfq-section.light .rfq-success h3 { color: var(--ink); }
.rfq-success p { color: rgba(255,255,255,0.7); }
.rfq-section.light .rfq-success p { color: var(--ink-soft); }
.rfq-success-ref {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--mustard);
}
.rfq-section.light .rfq-success-ref { border-color: var(--line-strong); }

@media (max-width: 960px) {
  .rfq-grid { grid-template-columns: 1fr; gap: 40px; }
  .rfq-form { grid-template-columns: 1fr; padding: 24px; }
}

/* --- Detail page ------------------------------------------ */
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 24px 0 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
.detail-back:hover { color: var(--mustard-deep); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 56px 0 100px;
  align-items: start;
}
.detail-gallery { display: grid; grid-template-columns: 1fr; gap: 12px; }
.detail-gallery .hero-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; }
.detail-gallery .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail-gallery .row .thumb { aspect-ratio: 1 / 1; background-size: cover; background-position: center; }
.detail-meta { position: sticky; top: 100px; }
.detail-meta .eyebrow { color: var(--mustard-deep); }
.detail-meta h1 { font-size: clamp(36px, 4.4vw, 60px); line-height: 1; margin: 16px 0 8px; }
.detail-meta .finish-label {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--silver-700);
  margin-bottom: 32px;
}
.detail-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 32px 0;
}
.detail-specs .row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.detail-specs .row:last-child { border-bottom: 1px solid var(--line); }
.detail-specs .row .label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--silver-600);
  font-weight: 500;
}
.detail-specs .row .value { color: var(--ink); }
.detail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
.detail-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
}

.detail-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

@media (max-width: 960px) {
  .detail-grid { grid-template-columns: 1fr; gap: 40px; padding: 32px 0 60px; }
  .detail-meta { position: static; }
}

/* --- Featured collection mosaic --------------------------- */
.featured-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.featured-mosaic .imgs {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 5 / 4;
}
.featured-mosaic .imgs .big { grid-row: 1 / 3; background-size: cover; background-position: center; }
.featured-mosaic .imgs .small { background-size: cover; background-position: center; }
.featured-mosaic .copy h2 { margin: 16px 0 24px; }
@media (max-width: 860px) {
  .featured-mosaic { grid-template-columns: 1fr; }
}

/* --- Marquee strip ---------------------------------------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.marquee-track .sep { color: var(--mustard); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Promise / values row --------------------------------- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promise-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.promise-cell:last-child { border-right: 0; }
.promise-cell .num { font-family: var(--font-techno); font-size: 11px; letter-spacing: 0.18em; color: var(--mustard-deep); }
.promise-cell h4 { font-family: var(--font-body); font-weight: 600; font-size: 15px; margin: 12px 0 8px; text-transform: none; letter-spacing: 0; }
.promise-cell p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
@media (max-width: 860px) {
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .promise-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-cell:nth-child(2n) { border-right: 0; }
}
@media (max-width: 480px) {
  .promise-grid { grid-template-columns: 1fr; }
}

/* --- Use case strip --------------------------------------- */
.usecase-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.usecase-strip h3 { font-family: var(--font-display); font-size: 32px; text-transform: uppercase; letter-spacing: 0.01em; margin: 0 0 16px; font-weight: 400; line-height: 1; }
.usecase-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.usecase-bullet h5 { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin: 0 0 8px; color: var(--ink); }
.usecase-bullet p { margin: 0; font-size: 14px; color: var(--ink-soft); }
@media (max-width: 860px) {
  .usecase-strip { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .usecase-bullets { grid-template-columns: 1fr; gap: 24px; }
}

/* --- Decorative diagonal hero number ---------------------- */
.hero-corner {
  position: absolute;
  top: 100px;
  right: 40px;
  font-family: var(--font-techno);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  z-index: 2;
  text-align: right;
}

/* --- About snapshot --------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }
.about-stat { padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-stat:nth-child(2n) { border-right: 0; }
.about-stat:nth-last-child(-n+2) { border-bottom: 0; }
.about-stat .num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
}
.about-stat .label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver-600); margin-top: 8px; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Color swatch on cards -------------------------------- */
.swatch {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--mustard);
  border: 1px solid rgba(0,0,0,0.1);
  margin-right: 6px;
  vertical-align: middle;
}

/* --- Page transitions ------------------------------------- */
.page-fade { animation: pageFade 360ms cubic-bezier(0.2, 0.6, 0.2, 1); }
@keyframes pageFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Mobile nav drawer ------------------------------------ */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 100;
  padding: 100px 32px 32px;
  transform: translateY(-100%);
  transition: transform 320ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer .nav-link { display: block; padding: 16px 0; font-size: 22px; color: var(--paper); border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-drawer-close { position: absolute; top: 24px; right: 24px; color: var(--paper); padding: 8px; }

/* --- Reduced motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
}

/* --- Pieces showcase (collection detail) ---------------- */
.pieces-section {
  background: var(--paper-warm);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.pieces-intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}
.pieces-intro h2 { margin: 12px 0 0; }
.pieces-intro .body { max-width: 560px; }

.pieces-group {
  margin-bottom: 64px;
}
.pieces-group:last-child { margin-bottom: 0; }
.pieces-group-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 48px;
}
.pieces-group-header h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  color: var(--ink);
}
.pieces-group-header .count {
  font-family: var(--font-techno);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--mustard-deep);
  text-transform: uppercase;
}

.piece-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}
.piece-card:last-child { margin-bottom: 0; }
.piece-card.reverse { direction: rtl; }
.piece-card.reverse > * { direction: ltr; }

.piece-card .piece-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-cool);
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  min-height: 360px;
}
.piece-card .piece-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 240ms;
}
.piece-card:hover .piece-image { /* subtle hover */ }
.piece-card .piece-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.piece-card:hover .piece-image img { transform: scale(1.04); }

.piece-card .piece-body {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
}
.piece-card .piece-num {
  font-family: var(--font-techno);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mustard-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.piece-card .piece-num .divider {
  width: 24px;
  height: 1px;
  background: currentColor;
}
.piece-card h4 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1;
  color: var(--ink);
}
.piece-card .piece-collection {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--silver-700);
  margin-bottom: 24px;
}
.piece-card .piece-specs {
  display: flex;
  gap: 24px;
  margin: 16px 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.piece-card .piece-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.piece-card .piece-spec .spec-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-600);
  font-weight: 500;
}
.piece-card .piece-spec .spec-value {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
}
.piece-card .piece-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 480px;
}
.piece-card .piece-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

@media (max-width: 860px) {
  .pieces-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .pieces-group-header { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 32px; }
  .piece-card,
  .piece-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .piece-card.reverse > * { direction: ltr; }
  .piece-card .piece-body { padding: 32px 28px; min-height: 0; }
  .piece-card .piece-image { aspect-ratio: 5 / 4; min-height: 240px; }
  .piece-card .piece-image,
  .piece-card.reverse .piece-image { order: -1; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.2, 0.6, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
