/* ==========================================================================
   NOMODU — premium modular furniture landing
   Shared stylesheet for index.html and gotowe-zestawy.html
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg:         #F7F5F2;
  --bg-warm:    #F1EDE6;
  --surface:    #FFFFFF;
  --surface-2:  #FAF8F4;
  --ink:        #1A1A1A;
  --ink-2:      #2A2926;
  --muted:      #6B6B66;
  --mute-2:     #9A9A94;
  --line:       #E8E4DD;
  --line-2:     #D9D3C7;
  --accent:     #1F1D1B;
  --sage:       #A3B5A0;
  --sage-soft:  #D7DDD0;

  --f-sans: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(20,20,18,0.04);
  --shadow-sm: 0 6px 16px rgba(20,20,18,0.06);
  --shadow-md: 0 18px 40px rgba(20,20,18,0.08);
  --shadow-lg: 0 28px 60px rgba(20,20,18,0.10);

  --ease: cubic-bezier(.2,.65,.2,1);
  --tr: .3s var(--ease);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
button { cursor: pointer; font: inherit; color: inherit; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-lg { padding: 160px 0; }

.divider {
  height: 1px; background: var(--line);
  margin: 0;
}

/* ---------- Typography (Barlow — thin + bold contrast) ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-bottom: 20px;
}
h1, h2, h3, h4 {
  color: var(--ink);
  letter-spacing: -0.015em;
  font-weight: 700;
  line-height: 1.05;
}
.display {
  font-size: clamp(48px, 7.4vw, 108px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.display .soft,
h1 .soft, h2 .soft {
  font-weight: 200;
  color: var(--muted);
  letter-spacing: -0.03em;
}
h2, .h2 {
  font-size: clamp(32px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
h3, .h3 {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.012em;
}
h4, .h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: -0.005em;
  max-width: 56ch;
}
p { color: var(--ink); font-weight: 400; }
.muted { color: var(--muted); font-weight: 300; }
strong, b { font-weight: 600; }

/* Section header blocks */
.section-head {
  max-width: 760px;
  margin-bottom: 72px;
}
.section-head.center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-head h2 { margin-bottom: 20px; }
.section-head p { color: var(--muted); font-size: 18px; line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--surface);
}
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--surface); }
.btn-quiet {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
}
.btn-quiet:hover { opacity: 0.55; }
.btn-sm { padding: 12px 20px; font-size: 13.5px; }
.btn-lg { padding: 19px 36px; font-size: 15.5px; }
.btn-block { display: flex; width: 100%; }

.btn .arrow { transition: transform var(--tr); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--surface);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.announce a { border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 1px; }
.announce a:hover { border-color: white; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,245,242,0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), background var(--tr);
}
.site-header.scrolled { border-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 78px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand img { height: 26px; width: auto; }
.brand .wordmark {
  font-family: 'Barlow', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}

.primary-nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto; margin-right: 24px;
}
.primary-nav > li { position: relative; }
.primary-nav > li > a,
.primary-nav > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 6px;
  transition: background var(--tr), color var(--tr);
}
.primary-nav > li > a:hover,
.primary-nav > li > button:hover { color: var(--ink); background: var(--bg-warm); }
.primary-nav .chev { font-size: 9px; opacity: 0.5; transition: transform var(--tr); }
.primary-nav li:hover .chev { transform: rotate(180deg); }

/* Mega dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 22px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
  z-index: 101;
}
.dropdown.wide { min-width: 640px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.primary-nav li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown h5 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--mute-2); font-weight: 600;
  padding: 6px 12px 10px; margin: 0;
}
.dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 6px;
  transition: background var(--tr), color var(--tr);
}
.dropdown a:hover { background: var(--bg-warm); color: var(--ink); }
.dropdown .col { display: flex; flex-direction: column; }

.nav-cta { display: flex; gap: 8px; align-items: center; }
.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.burger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink);
  position: relative;
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 1.5px; background: var(--ink);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

/* ---------- Hero (full-width, product-dominant) ---------- */
.hero-full {
  position: relative;
  min-height: 72vh;
  max-height: 780px;
  overflow: hidden;
  background: var(--surface-2);
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,14,12,0) 0%,
    rgba(14,14,12,0) 30%,
    rgba(14,14,12,0.1) 55%,
    rgba(14,14,12,0.55) 88%,
    rgba(14,14,12,0.72) 100%
  );
  pointer-events: none;
}
.hero-top-tag {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.hero-top-tag .pl-flag {
  width: 20px; height: 14px;
  background: linear-gradient(to bottom, #fff 50%, #DC143C 50%);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--surface);
  padding-top: 64px;
  padding-bottom: 64px;
  width: 100%;
}
.hero-content .eyebrow {
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}
.hero-content h1 {
  color: var(--surface);
  max-width: 16ch;
  margin-bottom: 28px;
}
.hero-content h1 .soft {
  color: rgba(255,255,255,0.62);
  font-weight: 200;
}
.hero-content .lead {
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: 40px;
}
.hero-content .hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Light variants for dark hero */
.btn-primary-light {
  background: var(--surface);
  color: var(--ink);
}
.btn-primary-light:hover { background: var(--bg); transform: translateY(-1px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--surface);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); border-color: var(--surface); }

.hero-pills {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 820px;
}
.hero-pills .pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}
.hero-pills .pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}

/* ==========================================================================
   GRID SYSTEM PAGE — grid-system.html
   ========================================================================== */

.gs-hero {
  padding: 48px 0 96px;
  border-bottom: 1px solid var(--line);
}
.gs-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.gs-hero-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-md);
}
.gs-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.gs-hero-copy .eyebrow { margin-bottom: 24px; }
.gs-hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 78px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.gs-hero-copy h1 .soft {
  display: block;
  color: var(--muted);
  font-weight: 200;
  letter-spacing: -0.025em;
}
.gs-hero-copy .lead { margin-bottom: 36px; }
.gs-usp-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.gs-usp-row .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.gs-usp-row .item::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink);
}
.gs-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Manifest / intro */
.gs-manifest { padding: 120px 0; }
.gs-manifest-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.gs-manifest h2 { margin-bottom: 32px; max-width: 16ch; }
.gs-manifest p {
  color: var(--muted);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 56ch;
}
.gs-quote {
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-xl);
  padding: 56px 44px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.012em;
  position: relative;
  overflow: hidden;
}
.gs-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.gs-quote > * { position: relative; z-index: 1; }
.gs-quote .q-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.gs-quote strong { font-weight: 600; color: var(--surface); }

/* How GRID works */
.gs-how {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gs-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.gs-how-text h2 { margin-bottom: 28px; }
.gs-how-text p {
  color: var(--muted);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.gs-how-text .highlight {
  margin-top: 32px;
  padding: 22px 26px;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.gs-how-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.gs-how-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Configurator section */
.gs-config {
  padding: 120px 0;
}
.gs-config-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.gs-config-visual {
  aspect-ratio: 4 / 3;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  position: relative;
}
.gs-config-visual img { width: 100%; height: 100%; object-fit: cover; }
.gs-config-visual .chrome {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: rgba(20,20,18,0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gs-config-visual .chrome .dots { display: flex; gap: 6px; margin-right: 8px; }
.gs-config-visual .chrome .dots span {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25);
}
.gs-config-text h2 { margin-bottom: 22px; }
.gs-config-text p {
  color: var(--muted);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 48ch;
}
.gs-config-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
}
.gs-config-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15.5px;
  font-weight: 500;
}
.gs-config-steps li:last-child { border-bottom: 1px solid var(--line); }
.gs-config-steps .num {
  font-size: 12px;
  font-weight: 600;
  color: var(--mute-2);
  letter-spacing: 0.14em;
  min-width: 28px;
}

/* Modules — 7 cards */
.gs-modules {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gs-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gs-modules-grid .module { background: var(--surface); }

/* Dimensions block */
.gs-dims {
  padding: 120px 0;
}
.gs-dims-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
}
.gs-dims-text h2 { margin-bottom: 24px; max-width: 14ch; }
.gs-dims-text p {
  color: var(--muted);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 48ch;
}
.gs-dims-box {
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
}
.gs-dims-box .lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.gs-dim-row {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.gs-dim-row:last-child { padding-bottom: 0; }
.gs-dim-row .k {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.gs-dim-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gs-dim-chips span {
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--surface);
  letter-spacing: -0.005em;
}
.gs-dim-chips span.unit {
  background: transparent;
  border-color: transparent;
  color: rgba(255,255,255,0.45);
  padding-left: 2px;
}

/* Colors section */
.gs-colors {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gs-colors-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.gs-colors-intro h2 { max-width: 14ch; }
.gs-colors-intro p {
  color: var(--muted);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.gs-color-highlight {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  margin-top: 48px;
}
.gs-color-sample {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: #1F2E45;
  box-shadow: var(--shadow-md);
  position: relative;
}
.gs-color-sample::after {
  content: '';
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--radius-lg) - 4px);
}
.gs-color-highlight .eyebrow { color: var(--mute-2); margin-bottom: 10px; }
.gs-color-highlight h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}
.gs-color-highlight p {
  color: var(--muted);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}

/* Brand statement */
.gs-brand {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--surface);
}
.gs-brand .bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.gs-brand .bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.gs-brand .bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,14,12,0.82), rgba(14,14,12,0.35) 70%);
}
.gs-brand .inner {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}
.gs-brand .eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.gs-brand h2 {
  color: var(--surface);
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.018em;
  max-width: 22ch;
}
.gs-brand h2 em {
  font-style: normal;
  font-weight: 200;
  color: rgba(255,255,255,0.7);
}

/* Dla jakich przestrzeni */
.gs-spaces { padding: 120px 0; }
.gs-spaces-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gs-space {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color var(--tr), transform var(--tr), background var(--tr);
}
.gs-space:hover { border-color: var(--ink); transform: translateY(-3px); }
.gs-space .icon {
  width: 48px; height: 48px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.gs-space .icon svg {
  width: 24px; height: 24px;
  stroke: var(--ink); fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gs-space h4 {
  font-size: 16px; font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.gs-space p {
  font-size: 13px; color: var(--muted);
  font-weight: 300; line-height: 1.55;
}

/* Schemat budowy (blueprint) */
.gs-blueprint {
  padding: 120px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gs-blueprint-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
}
.gs-step {
  flex: 1;
  padding: 30px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: left;
  min-width: 0;
}
.gs-step .n {
  font-size: 11px;
  font-weight: 700;
  color: var(--mute-2);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.gs-step .icon {
  width: 48px; height: 48px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.gs-step .icon svg {
  width: 24px; height: 24px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gs-step h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.gs-step p {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}
.gs-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  color: var(--line-2);
  font-size: 20px;
  font-weight: 300;
  user-select: none;
}
.gs-blueprint-note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

/* Dlaczego GRID */
.gs-reasons { padding: 140px 0; }
.gs-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.gs-reason {
  padding: 44px 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color var(--tr), transform var(--tr);
}
.gs-reason:hover { border-color: var(--ink-2); transform: translateY(-3px); }
.gs-reason .n {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.16em;
  min-width: 36px;
  padding-top: 6px;
  flex-shrink: 0;
}
.gs-reason h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.gs-reason p {
  font-size: 15.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 42ch;
}

@media (max-width: 1100px) {
  .gs-spaces { padding: 88px 0; }
  .gs-spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-blueprint { padding: 88px 0; }
  .gs-blueprint-flow { flex-direction: column; gap: 12px; }
  .gs-arrow {
    flex: 0 0 auto;
    transform: rotate(90deg);
    padding: 0;
    margin: 2px 0;
  }
  .gs-reasons { padding: 88px 0; }
  .gs-reasons-grid { grid-template-columns: 1fr; gap: 16px; }
  .gs-reason { padding: 32px 28px; }
}
@media (max-width: 640px) {
  .gs-spaces-grid { grid-template-columns: 1fr; }
  .gs-reason { flex-direction: column; gap: 12px; }
  .gs-reason .n { padding-top: 0; }
}

/* Sticky config CTA on mobile */
.sticky-config {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  padding: 14px 20px;
  background: var(--ink);
  color: var(--surface);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}
@media (max-width: 720px) {
  .sticky-config { display: flex; }
}

@media (max-width: 1100px) {
  .gs-hero-grid, .gs-manifest-grid, .gs-how-grid,
  .gs-config-grid, .gs-dims-grid, .gs-colors-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .gs-hero-visual, .gs-how-visual {
    max-width: 560px;
    margin-inline: auto;
  }
  .gs-modules-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-color-highlight { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
  .gs-manifest { padding: 88px 0; }
  .gs-config { padding: 88px 0; }
  .gs-dims { padding: 88px 0; }
}
@media (max-width: 640px) {
  .gs-modules-grid { grid-template-columns: 1fr; }
  .gs-quote { padding: 36px 28px; }
  .gs-dims-box { padding: 32px 24px; }
}

/* ---------- Founder quotes (O nas) ---------- */
.founder-quotes {
  padding: 140px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fq-main {
  margin: 0 auto 80px;
  max-width: 1040px;
  text-align: left;
}
.fq-main blockquote {
  font-family: var(--f-sans);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 40px;
  quotes: "\201E" "\201D";
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--ink);
}
.fq-main blockquote strong { font-weight: 600; }
.fq-main figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 28px;
}
.fq-main .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.fq-main figcaption strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.fq-main figcaption span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.fq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}
.fq-item {
  padding: 44px 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  margin: 0;
}
.fq-item blockquote {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 24px;
  padding: 0;
  border: none;
}
.fq-item blockquote strong { font-weight: 600; }
.fq-item figcaption {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mute-2);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1100px) {
  .founder-quotes { padding: 96px 0; }
  .fq-main { margin-bottom: 56px; }
  .fq-grid { grid-template-columns: 1fr; gap: 20px; }
  .fq-item { padding: 32px 28px; }
}
@media (max-width: 640px) {
  .fq-main blockquote { padding-left: 20px; }
  .fq-main figcaption { padding-left: 20px; }
}

/* ---------- Popular carousel ---------- */
.carousel-wrap {
  padding: 96px 0 112px;
  border-top: 1px solid var(--line);
}
.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.carousel-header .eyebrow { margin-bottom: 16px; }
.carousel-header h2 { max-width: 22ch; }
.carousel-header p { color: var(--muted); font-weight: 300; font-size: 15px; max-width: 48ch; margin-top: 12px; }
.carousel-controls { display: flex; gap: 10px; align-items: center; }
.carousel-ctrl {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
  transition: border-color var(--tr), background var(--tr), color var(--tr), opacity var(--tr);
  cursor: pointer;
}
.carousel-ctrl:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}
.carousel-ctrl:disabled { opacity: 0.28; cursor: default; }

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .product {
  flex: 0 0 320px;
  scroll-snap-align: start;
  min-width: 0;
}
.carousel-track .product .product-visual { aspect-ratio: 4 / 5; margin-bottom: 18px; }
.carousel-track .product h3 { font-size: 17px; }
.carousel-track .product .desc { font-size: 13.5px; }
.carousel-track .product .price .val { font-size: 19px; }

.carousel-view-all {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* ---------- USP strip ---------- */
.usp-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.usp {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.usp-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  border-radius: 14px;
  margin-bottom: 10px;
}
.usp-icon svg {
  width: 28px; height: 28px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.usp h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.012em;
  margin-bottom: 4px;
}
.usp p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 300;
  max-width: 34ch;
}
.usp .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.usp .tag::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--ink);
}

/* ---------- Idea section ---------- */
.idea {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.idea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.idea-visual {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
}
.idea-visual img { width: 100%; height: 100%; object-fit: cover; }
.idea-copy h2 { margin-bottom: 28px; }
.idea-copy p { color: var(--muted); margin-bottom: 20px; font-size: 17px; line-height: 1.65; }
.idea-copy p strong { color: var(--ink); font-weight: 600; }
.idea-feats {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.idea-feat {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.idea-feat .num {
  font-size: 12px; font-weight: 600;
  color: var(--mute-2); letter-spacing: 0.16em;
  min-width: 32px;
}
.idea-feat .t { font-size: 15.5px; font-weight: 600; }
.idea-feat .d { font-size: 14px; color: var(--muted); margin-left: auto; }

/* ---------- How it works ---------- */
.how-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: transparent;
  border-top: 1px solid var(--line-2);
  padding: 32px 0 0;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mute-2);
  margin-bottom: 20px;
}
.step .icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--ink-2);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.step:hover .icon { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.step h4 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Configurator CTA ---------- */
.configurator-cta {
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-xl);
  padding: 90px 72px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.configurator-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.configurator-cta > * { position: relative; z-index: 1; }
.configurator-cta h2 { color: var(--surface); margin-bottom: 20px; }
.configurator-cta p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 44ch;
}
.configurator-cta .btn-primary {
  background: var(--surface);
  color: var(--ink);
}
.configurator-cta .btn-primary:hover { background: var(--bg); }
.configurator-cta .btn-ghost {
  color: var(--surface);
  border-color: rgba(255,255,255,0.35);
}
.configurator-cta .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--surface); }
.configurator-preview {
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  position: relative;
}
.configurator-preview img { width: 100%; height: 100%; object-fit: cover; }
.configurator-preview .chrome {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: rgba(20,20,18,0.65);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.configurator-preview .chrome .dots { display: flex; gap: 6px; margin-right: 12px; }
.configurator-preview .chrome .dots span {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25);
}

/* ---------- Modules ---------- */
.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.module {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
  display: flex;
  flex-direction: column;
}
.module:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.module-visual {
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.module-visual svg { width: 70%; height: 70%; stroke: var(--ink); fill: none; stroke-width: 1; }
.module-visual img { width: 100%; height: 100%; object-fit: cover; }
.module-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.module-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute-2); margin-bottom: 10px;
}
.module h3 { font-size: 20px; margin-bottom: 12px; }
.module p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- Dimensions ---------- */
.dims-wrap { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dims-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.dims-text h2 { margin-bottom: 20px; }
.dims-text p { color: var(--muted); font-size: 16px; line-height: 1.65; }
.dim-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.dim-box .lbl {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute-2); margin-bottom: 18px;
}
.dim-box .vals {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.dim-box .vals span { color: var(--mute-2); font-weight: 400; }
.dim-box .u {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.dims-note {
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 920px;
}

/* ---------- Colors ---------- */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.swatch {
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr);
}
.swatch:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.swatch .info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  font-size: 11.5px;
  display: flex; justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.swatch .info strong { font-weight: 600; }
.swatch .info span { color: var(--muted); }
.swatch.dark .info { background: rgba(20,20,18,0.9); color: white; }
.swatch.dark .info span { color: rgba(255,255,255,0.65); }

.color-combos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.combo {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.combo .bars { display: flex; gap: 6px; height: 48px; margin-bottom: 20px; }
.combo .bars span { flex: 1; border-radius: 4px; border: 1px solid rgba(0,0,0,0.06); }
.combo h4 { margin-bottom: 6px; }
.combo p { font-size: 13.5px; color: var(--muted); }

/* ---------- Category tiles ---------- */
.cats-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.cat-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
  min-height: 180px;
}
.cat-tile:hover { background: var(--bg-warm); border-color: var(--line-2); transform: translateY(-3px); }
.cat-tile h3 { font-size: 20px; margin-bottom: 8px; }
.cat-tile p { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }
.cat-tile .arrow-mark {
  margin-top: auto;
  font-size: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.cat-tile:hover .arrow-mark { background: var(--ink); color: var(--surface); border-color: var(--ink); }

.cats-sub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.cats-sub h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--mute-2); font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cats-sub ul li a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink-2);
  transition: color var(--tr), padding var(--tr);
}
.cats-sub ul li a:hover { color: var(--ink); padding-left: 6px; }

/* ---------- Inspirations ---------- */
.inspirations {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.insp {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
}
.insp img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insp:hover img { transform: scale(1.03); }
.insp .cap {
  position: absolute; left: 18px; bottom: 16px;
  background: rgba(255,255,255,0.94);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
}
.insp-1 { grid-column: span 7; aspect-ratio: 16 / 11; }
.insp-2 { grid-column: span 5; aspect-ratio: 5 / 6; }
.insp-3 { grid-column: span 4; aspect-ratio: 4 / 5; }
.insp-4 { grid-column: span 4; aspect-ratio: 4 / 5; }
.insp-5 { grid-column: span 4; aspect-ratio: 4 / 5; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding: 150px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}
.final-cta h2 { margin-bottom: 24px; max-width: 20ch; margin-left: auto; margin-right: auto; }
.final-cta p {
  max-width: 58ch;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 18px;
}
.final-cta .buttons { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 36px;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 72px;
}
.site-footer .brand-col .wordmark {
  font-family: 'Barlow', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  font-size: 26px;
  line-height: 1;
  color: var(--surface);
  display: block;
  margin-bottom: 18px;
}
.site-footer .brand-col p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.65; max-width: 32ch; margin-bottom: 24px; }
.site-footer h5 {
  color: var(--surface);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.site-footer li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--tr);
}
.site-footer li a:hover { color: var(--surface); }
.site-footer .bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   LISTING PAGE — gotowe-zestawy.html
   ========================================================================== */

.cat-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
}
.cat-hero .eyebrow { margin-bottom: 20px; }
.cat-hero h1 {
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.02;
  max-width: 16ch;
}
.cat-hero p { max-width: 62ch; font-size: 18px; color: var(--muted); line-height: 1.65; }

.buy-modes {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.buy-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.buy-mode { display: flex; gap: 20px; align-items: flex-start; }
.buy-mode .num {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--mute-2);
  padding-top: 4px;
  min-width: 32px;
}
.buy-mode h4 { font-size: 17px; margin-bottom: 6px; }
.buy-mode p { font-size: 14px; color: var(--muted); line-height: 1.55; }

.filters {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.filters-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink-2);
  background: var(--surface);
  transition: border-color var(--tr), background var(--tr);
  cursor: pointer;
}
.filter-chip:hover, .filter-chip.active { border-color: var(--ink); background: var(--ink); color: var(--surface); }
.filter-chip .count { color: var(--mute-2); margin-left: 4px; font-size: 12.5px; }
.filter-chip.active .count { color: rgba(255,255,255,0.7); }
.filter-spacer { flex: 1; }
.filter-sort {
  background: transparent; border: 0;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-2);
  padding: 10px 0;
  cursor: pointer;
}

.listing {
  padding: 56px 0 96px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.product {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: var(--radius-lg);
  transition: transform var(--tr);
}
.product:hover { transform: translateY(-4px); }
.product-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
  margin-bottom: 22px;
}
.product-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product:hover .product-visual img { transform: scale(1.025); }
.product-visual .badges {
  position: absolute; top: 16px; left: 16px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.badge {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  border: 1px solid rgba(232,228,221,0.6);
}
.badge.dark { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.product-visual .wish {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--ink);
  border: 1px solid rgba(232,228,221,0.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--tr), transform var(--tr);
}
.product:hover .wish { opacity: 1; }
.wish:hover { transform: scale(1.1); color: #b14; }

.product-body { padding: 0 4px; display: flex; flex-direction: column; gap: 8px; }
.product-code {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--mute-2);
  text-transform: uppercase;
}
.product h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
.product .desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
.product .meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.product .price { display: flex; flex-direction: column; }
.product .price .from { font-size: 11.5px; color: var(--muted); letter-spacing: 0.04em; }
.product .price .val { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }

.product-ctas { display: flex; gap: 8px; margin-top: 16px; }
.product-ctas .btn { flex: 1; padding: 13px 14px; font-size: 13px; }

/* Listing info block */
.info-block {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.info-block h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 20px; max-width: 18ch; }
.info-block p { color: var(--muted); font-size: 16px; margin-bottom: 14px; line-height: 1.65; }
.info-block ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-block ul li {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 14px;
  display: flex; align-items: center; gap: 12px;
}
.info-block ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink); flex-shrink: 0;
}

.how-to-buy {
  padding: 120px 0;
}
.htb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.htb {
  padding: 32px 28px;
  border-top: 1px solid var(--line-2);
}
.htb .n { font-size: 13px; font-weight: 600; color: var(--mute-2); letter-spacing: 0.14em; margin-bottom: 20px; }
.htb h4 { font-size: 18px; margin-bottom: 10px; }
.htb p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  /* Mobile drawer navigation */
  .primary-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--bg);
    padding: 100px 28px 40px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    overflow-y: auto;
    margin: 0;
    z-index: 95;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .32s var(--ease), visibility .32s var(--ease);
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .primary-nav {
    transform: translateX(0);
    visibility: visible;
  }
  .primary-nav > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav > li:last-child { border-bottom: none; }
  .primary-nav > li > a,
  .primary-nav > li > button {
    width: 100%;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    justify-content: space-between;
    border-radius: 0;
    background: transparent;
  }
  .primary-nav > li > a:hover,
  .primary-nav > li > button:hover {
    background: transparent;
    color: var(--muted);
  }
  .primary-nav .chev { font-size: 12px; transition: transform .2s var(--ease); }
  .primary-nav li.open > button .chev { transform: rotate(180deg); }
  .primary-nav li:hover > .dropdown { /* disable hover open on mobile */
    opacity: 0;
    visibility: hidden;
    transform: none;
  }
  .primary-nav .dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    margin: 0;
    transform: none;
    display: block;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: 0;
    overflow: hidden;
    transition: max-height .32s var(--ease), opacity .2s var(--ease), visibility .2s var(--ease), padding .32s var(--ease);
  }
  .primary-nav li.open > .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 800px;
    padding: 4px 0 18px 4px;
    grid-template-columns: 1fr;
  }
  .primary-nav .dropdown h5 {
    padding: 14px 12px 8px;
    margin: 0;
  }
  .primary-nav .dropdown a {
    padding: 10px 12px;
    font-size: 15px;
  }
  /* Burger → X transform */
  .burger { display: inline-flex; z-index: 101; position: relative; background: var(--surface); }
  body.menu-open .burger { background: transparent; border-color: var(--ink); }
  body.menu-open .burger span { background: transparent; }
  body.menu-open .burger span::before {
    top: 0;
    transform: rotate(45deg);
  }
  body.menu-open .burger span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .burger span::before, .burger span::after {
    transition: top .2s var(--ease), transform .2s var(--ease);
  }

  section { padding: 88px 0; }
  .hero-full { min-height: 64vh; }
  .hero-content { padding: 48px 0; }
  .hero-top-tag { top: 20px; right: 20px; font-size: 11.5px; padding: 8px 14px; }
  .hero-pills { gap: 18px 24px; padding-top: 24px; }
  .usp-strip { padding: 72px 0; }
  .usp-grid { grid-template-columns: 1fr; gap: 40px; }
  .carousel-wrap { padding: 72px 0 88px; }
  .carousel-track { margin: 0 -20px; padding: 0 20px 10px; }
  .carousel-track .product { flex: 0 0 280px; }
  .idea-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .configurator-cta { padding: 56px 36px; grid-template-columns: 1fr; gap: 40px; }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .dims-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .dims-text { grid-column: 1 / -1; }
  .swatch-grid { grid-template-columns: repeat(4, 1fr); }
  .color-combos { grid-template-columns: 1fr; gap: 14px; }
  .cats-main { grid-template-columns: repeat(2, 1fr); }
  .cats-sub { grid-template-columns: 1fr 1fr; gap: 32px; }
  .inspirations { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .insp { grid-column: span 1 !important; aspect-ratio: 4/5 !important; }
  .insp-1 { aspect-ratio: 16/10 !important; grid-column: span 2 !important; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-modes-grid { grid-template-columns: 1fr; gap: 24px; }
  .htb-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .info-block { padding: 40px 32px; grid-template-columns: 1fr; gap: 32px; }
  .info-block ul { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .final-cta { padding: 100px 0; }
  .hero-full { min-height: 58vh; }
  .hero-content { padding: 40px 0; }
  .hero-pills { gap: 12px 20px; }
  .hero-pills .pill { font-size: 13px; }
  .usp-strip { padding: 56px 0; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
  .step { padding: 24px 0 0; }
  .modules { grid-template-columns: 1fr; }
  .dims-grid { grid-template-columns: 1fr; }
  .swatch-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cats-main { grid-template-columns: 1fr; }
  .cats-sub { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .htb-grid { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (PDP) — produkt-grid-w04.html
   ========================================================================== */

.breadcrumb {
  padding: 28px 0 0;
  font-size: 13px;
  color: var(--muted);
  display: flex; flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.cat-page .breadcrumb {
  padding: 12px 0 0;
}
.breadcrumb a { color: var(--muted); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--line-2); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

.pdp {
  padding: 40px 0 96px;
}
.pdp-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

/* Gallery */
.pdp-gallery {
  position: sticky;
  top: 96px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
}
.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: border-color var(--tr), transform var(--tr);
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover { border-color: var(--ink-2); }
.pdp-thumb.active { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }

.pdp-main {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.pdp-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .3s var(--ease);
}
.pdp-main .pdp-badges {
  position: absolute;
  top: 20px; left: 20px;
  display: flex;
  gap: 8px;
}
.pdp-main .pdp-zoom {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
  border: 1px solid rgba(232,228,221,0.5);
}

/* Info panel */
.pdp-info { padding: 4px 0; }
.pdp-info .product-code {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--mute-2);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pdp-info h1 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.pdp-info .headline-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 48ch;
}

.pdp-badges-row {
  display: flex; gap: 8px;
  margin-bottom: 28px;
}
.pdp-badges-row .badge { font-size: 11.5px; }

.pdp-price {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}
.pdp-price .val {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pdp-price .from {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.pdp-price .vat {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2px;
  margin-left: auto;
}

/* Option pickers */
.pdp-opt {
  margin-bottom: 26px;
}
.pdp-opt-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.pdp-opt-head .lbl {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute-2);
}
.pdp-opt-head .val { font-size: 14px; font-weight: 500; color: var(--ink); }

.pdp-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pdp-color {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative;
}
.pdp-color:hover { transform: scale(1.08); }
.pdp-color.active {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3.5px var(--ink);
}

.pdp-dims {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pdp-dim {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--tr), background var(--tr);
  background: var(--surface);
}
.pdp-dim:hover { border-color: var(--ink-2); }
.pdp-dim.active { border-color: var(--ink); background: var(--ink); color: var(--surface); }

/* Configurable info block (replaces color/dim pickers) */
.pdp-configurable {
  padding: 24px 26px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.pdp-configurable-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.pdp-configurable-head .lbl {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-2);
}
.pdp-configurable-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.pdp-configurable-lead {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 18px;
}
.pdp-configurable-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.pdp-configurable-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  align-items: baseline;
}
.pdp-configurable-list li:first-child { border-top: none; padding-top: 0; }
.pdp-configurable-list .k {
  color: var(--muted);
  font-weight: 400;
}
.pdp-configurable-list .v {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}
@media (max-width: 480px) {
  .pdp-configurable-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .pdp-configurable-list .k { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
}

/* CTA row — stacked */
.pdp-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 28px 0 20px;
}
.pdp-cta .btn {
  padding: 19px 24px;
  font-size: 15px;
  width: 100%;
}

/* Conversion block — Czym jest AXIS? (minimalist plus marks) */
.pdp-grid-info {
  margin: 20px 0 28px;
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.pdp-grid-info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pdp-grid-info-head .lbl {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  white-space: nowrap;
}
.pdp-grid-info-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.pdp-grid-info-lead {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 22px;
}
.pdp-ticks {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pdp-ticks li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.pdp-ticks .tick {
  width: 32px; height: 32px;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 100;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -4px;
}
.pdp-ticks strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.pdp-ticks span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

/* Polish flag badge (highlight) */
.badge.flag-pl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-weight: 600;
  padding: 7px 12px 7px 9px;
  font-size: 12px;
}
.pl-flag-mini {
  width: 18px;
  height: 13px;
  background: linear-gradient(to bottom, #fff 50%, #DC143C 50%);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.pdp-secondary {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.pdp-secondary button, .pdp-secondary a {
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 8px 0;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr);
  cursor: pointer;
}
.pdp-secondary button:hover, .pdp-secondary a:hover { border-color: var(--ink); }

/* Trust row */
.pdp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.pdp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.pdp-trust-item svg { flex-shrink: 0; margin-top: 2px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
.pdp-trust-item strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.pdp-trust-item span { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.4; }

/* Accordion */
.pdp-acc { border-top: 1px solid var(--line); }
.pdp-acc details {
  border-bottom: 1px solid var(--line);
}
.pdp-acc summary {
  padding: 20px 0;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.pdp-acc summary::-webkit-details-marker { display: none; }
.pdp-acc summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  transition: transform var(--tr);
}
.pdp-acc details[open] summary::after { content: '−'; }
.pdp-acc .acc-body {
  padding: 0 0 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
  font-weight: 300;
}
.pdp-acc .acc-body p { color: var(--muted); font-weight: 300; margin-bottom: 10px; }
.pdp-acc .acc-body ul { list-style: disc; padding-left: 20px; }
.pdp-acc .acc-body li { padding: 4px 0; color: var(--muted); }

/* Short GRID concept sneak peek — right after PDP hero */
.pdp-concept {
  padding: 88px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pdp-concept-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.pdp-concept-head .eyebrow { margin-bottom: 18px; }
.pdp-concept-head h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: 20px;
}
.pdp-concept-head h2 .soft {
  display: block;
  color: var(--muted);
  font-weight: 200;
  letter-spacing: -0.022em;
}
.pdp-concept-head p {
  font-size: 16.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  max-width: 60ch;
  margin: 0 auto;
}
.pdp-concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.pdp-concept-grid .pt {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--tr), transform var(--tr);
}
.pdp-concept-grid .pt:hover { border-color: var(--ink); transform: translateY(-3px); }
.pdp-concept-grid .pt .num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--mute-2);
  margin-bottom: 18px;
}
.pdp-concept-grid .pt strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.pdp-concept-grid .pt span {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}
.pdp-concept-link {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .pdp-concept { padding: 72px 0; }
  .pdp-concept-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pdp-concept-grid { grid-template-columns: 1fr; }
}

/* Specs block full-width */
.pdp-specs-wrap {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}
.pdp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.pdp-specs-grid h2 { margin-bottom: 16px; }
.pdp-specs-grid > .col1 p {
  color: var(--muted);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  max-width: 40ch;
}
.pdp-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-2);
}
.pdp-specs-list .row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
  align-items: baseline;
}
.pdp-specs-list .row .k {
  color: var(--muted);
  font-weight: 400;
}
.pdp-specs-list .row .v {
  color: var(--ink);
  font-weight: 500;
}

/* In-situ / lifestyle gallery */
.pdp-lifestyle {
  padding: 120px 0;
}
.pdp-lifestyle .imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pdp-lifestyle .imgs div {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
}
.pdp-lifestyle .imgs div.wide { grid-column: span 2; aspect-ratio: 21 / 10; }
.pdp-lifestyle .imgs img { width: 100%; height: 100%; object-fit: cover; }

/* Related products */
.pdp-related {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 40px; }
  .pdp-gallery { position: static; grid-template-columns: 1fr; gap: 10px; }
  .pdp-thumbs { flex-direction: row; order: 2; overflow-x: auto; padding-bottom: 4px; }
  .pdp-thumb { flex: 0 0 80px; }
  .pdp-main { order: 1; aspect-ratio: 4 / 5; max-height: 640px; }
  .pdp-specs-grid { grid-template-columns: 1fr; gap: 40px; }
  .pdp-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pdp-cta { grid-template-columns: 1fr; }
  .pdp-trust { grid-template-columns: 1fr; }
  .pdp-lifestyle .imgs { grid-template-columns: 1fr; }
  .pdp-lifestyle .imgs div.wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .pdp-related-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   Featured products — editorial layout (hero + small cards)
   =========================================================== */
.feat-wrap {
  padding: 96px 0 112px;
  border-top: 1px solid var(--line);
}
.feat-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.feat-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-width: 0;
}
.feat-header {
  max-width: 600px;
}
.feat-header .eyebrow { margin-bottom: 16px; display: block; }
.feat-header h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
  max-width: 14ch;
}
.feat-header p {
  color: var(--muted);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 48ch;
}

/* Hero product card — bigger, more presence */
.feat-hero {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 24px 60px -28px rgba(26, 26, 26, 0.18), 0 6px 20px -10px rgba(26, 26, 26, 0.08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feat-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px -28px rgba(26, 26, 26, 0.24), 0 10px 28px -10px rgba(26, 26, 26, 0.12);
}
.feat-hero .product-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  background: var(--surface);
}
.feat-hero .product-visual img {
  object-fit: contain;
  padding: 8%;
}
.feat-hero .product-visual .badges { top: 16px; left: 16px; }
.feat-hero .product-visual .badges .badge {
  font-size: 11.5px;
  padding: 7px 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.feat-hero .product-body { padding: 0 4px 4px; gap: 10px; }
.feat-hero .product-code {
  font-size: 12px;
  letter-spacing: 0.18em;
}
.feat-hero h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.feat-hero .desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 4px 0 0;
  max-width: 44ch;
}
.feat-hero .meta { margin-top: 8px; }
.feat-hero .price .from { font-size: 12px; }
.feat-hero .price .val { font-size: 28px; font-weight: 700; }

/* Right column — 3 stacked smaller cards */
.feat-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-content: start;
}
.feat-small {
  background: transparent;
}
.feat-small .product-visual {
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
}
.feat-small .product-visual img {
  object-fit: contain;
  padding: 6%;
}
.feat-small .product-visual .badges { top: 12px; left: 12px; }
.feat-small .product-body {
  padding: 0 2px;
  gap: 6px;
}
.feat-small h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}
.feat-small .product-code {
  font-size: 11px;
  color: var(--muted);
}
.feat-small .price .val {
  font-size: 18px;
  font-weight: 600;
}

/* CTA below — generous spacing */
.feat-cta {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

@media (max-width: 980px) {
  .feat-wrap { padding: 72px 0 80px; }
  .feat-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feat-left { gap: 32px; }
  .feat-header h2 { max-width: 100%; }
  .feat-hero h3 { font-size: 22px; }
  .feat-hero .price .val { font-size: 24px; }
  .feat-right {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .feat-cta { margin-top: 48px; }
}
@media (max-width: 560px) {
  .feat-right { grid-template-columns: 1fr; }
  .feat-hero { padding: 16px; }
  .feat-hero .product-visual { margin-bottom: 18px; }
}

/* ===========================================================
   Brand logo (img-based wordmark)
   =========================================================== */
.brand-logo {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}
.site-footer .brand-logo {
  height: 24px;
  margin-bottom: 18px;
}
@media (max-width: 720px) {
  .brand-logo { height: 18px; }
}

/* ===========================================================
   AXIS system mark — centered logo on system page
   =========================================================== */
.axis-system-mark {
  text-align: center;
  padding: 88px 24px 24px;
  border-bottom: 1px solid var(--line);
}
.axis-system-mark img {
  max-width: 460px;
  width: 70%;
  height: auto;
  display: inline-block;
}
.axis-system-mark .eyebrow {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .axis-system-mark { padding: 64px 20px 16px; }
  .axis-system-mark img { width: 80%; }
}

/* ===========================================================
   Inline video block (used on landing/system/PDP)
   =========================================================== */
.video-block {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 32px 0;
}
.video-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-block-figure {
  margin: 56px 0;
}
.video-block-figure figcaption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.video-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 64px 0;
}
.video-strip .video-block { margin: 0; }
@media (max-width: 800px) {
  .video-strip { grid-template-columns: 1fr; }
}

/* ===========================================================
   AXIS system page — full-width hero (no image)
   =========================================================== */
.gs-hero.gs-hero-wide {
  padding: 80px 0 120px;
}
.gs-hero-copy-wide {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.gs-hero-copy-wide h1 {
  font-size: clamp(44px, 6.4vw, 96px);
  margin-bottom: 32px;
}
.gs-hero-copy-wide .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 64ch;
}
.gs-hero-copy-wide .gs-usp-row {
  justify-content: center;
}
.gs-hero-copy-wide .gs-hero-ctas {
  justify-content: center;
}
@media (max-width: 720px) {
  .gs-hero.gs-hero-wide { padding: 56px 0 88px; }
  .gs-hero-copy-wide { text-align: left; }
  .gs-hero-copy-wide .gs-usp-row,
  .gs-hero-copy-wide .gs-hero-ctas { justify-content: flex-start; }
}

/* ===========================================================
   Category banner — wide image hero with copy below
   =========================================================== */
.cat-banner {
  margin-top: -16px;
  margin-bottom: 24px;
}
.cat-banner-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--surface-2);
}
.cat-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-banner-copy {
  padding-top: 32px;
}
.cat-banner-copy h1 {
  font-size: clamp(40px, 5.4vw, 78px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin-bottom: 20px;
}
.cat-banner-copy .eyebrow {
  margin-bottom: 18px;
}
.cat-banner-copy p {
  color: var(--muted);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  max-width: 64ch;
}
.cat-banner + .listing {
  padding-top: 24px;
}
@media (max-width: 720px) {
  .cat-banner { margin-top: -8px; margin-bottom: 16px; }
  .cat-banner-img { aspect-ratio: 4 / 3; }
  .cat-banner-copy { padding-top: 24px; }
  .cat-banner + .listing { padding-top: 16px; }
}

/* Manifest — 2-column product block */
.gs-manifest { padding: 96px 0; }
.gs-manifest-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.gs-manifest-copy {
  max-width: 560px;
  text-align: left;
}
.gs-manifest-copy .eyebrow {
  display: block;
  margin-bottom: 18px;
}
.gs-manifest-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 16ch;
}
.gs-manifest-copy p {
  color: var(--muted);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 52ch;
}
.manifest-pills {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.manifest-pills li {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--surface);
}
.gs-manifest-video {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 24px 60px -24px rgba(26, 26, 26, 0.22), 0 8px 24px -12px rgba(26, 26, 26, 0.12);
}
.gs-manifest-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 980px) {
  .gs-manifest { padding: 64px 0; }
  .gs-manifest-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .gs-manifest-copy { max-width: 100%; }
  .gs-manifest-video { aspect-ratio: 16 / 10; }
}
@media (max-width: 600px) {
  .gs-manifest { padding: 56px 0; }
  .gs-manifest-split { gap: 32px; }
}
