:root {
  --accent: hsl(14 66% 41%);
  --accent-dark: hsl(14 60% 32%);
  --accent-soft: hsl(14 34% 93%);
  --ink: hsl(14 10% 13%);
  --muted: hsl(14 6% 40%);
  --line: hsl(14 12% 87%);
  --surface: hsl(14 20% 97%);
  --white: #fff;
  --s1: 4px;
  --s2: 8px;
  --s3: 16px;
  --s4: 24px;
  --s5: 32px;
  --s6: 48px;
  --s7: 64px;
  --s8: 96px;
  --f-xs: 13px;
  --f-sm: 14px;
  --f-md: 16px;
  --f-lg: 20px;
  --f-xl: 25px;
  --f-2xl: 31px;
  --f-3xl: 39px;
  --f-4xl: 49px;
  --wrap: 1200px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: var(--f-md);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Jost", "Inter", sans-serif;
  font-weight: 300;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p { margin: 0; }

a { color: inherit; }

img { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: var(--f-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-height: 48px;
}

.brand svg { flex: none; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--s1);
  flex-wrap: wrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 var(--s3);
  font-size: var(--f-sm);
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }

.header-tools {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.currency {
  display: inline-flex;
  border: 1px solid var(--line);
}

.currency button {
  min-width: 52px;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: var(--f-xs);
  letter-spacing: 0.08em;
  cursor: pointer;
}

.currency button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--s4);
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: var(--f-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover { background: var(--ink); color: var(--white); }

.btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  padding: 0 var(--s5);
}

.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.hero {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  padding: var(--s8) 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 55% -30% -20%;
  background: var(--white);
  transform: skewX(-9deg);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--s7);
  align-items: center;
}

.hero h1 {
  font-size: var(--f-4xl);
  max-width: 9em;
}

.hero p {
  margin: var(--s4) 0 var(--s5);
  color: var(--muted);
  max-width: 34ch;
}

.showcase {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -40px hsl(14 20% 20% / 0.45);
  padding: var(--s5);
}

.showcase-strip {
  display: flex;
  gap: var(--s3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.showcase-strip::-webkit-scrollbar { display: none; }

.showcase-strip figure {
  margin: 0;
  flex: 0 0 46%;
  scroll-snap-align: start;
}

.showcase-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface);
}

.showcase-strip figcaption {
  margin-top: var(--s2);
  font-size: var(--f-xs);
  color: var(--muted);
}

.showcase-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s4);
  margin-top: var(--s4);
}

.showcase-foot h3 { font-size: var(--f-lg); }

.showcase-foot p {
  color: var(--muted);
  font-size: var(--f-sm);
  max-width: 32ch;
  margin-top: var(--s1);
}

.arrows { display: flex; gap: var(--s2); }

.arrows button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: var(--f-md);
  cursor: pointer;
}

.arrows button:hover { border-color: var(--ink); }

.band {
  position: relative;
  background: var(--surface);
  padding-top: var(--s8);
}

.band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  transform: translateY(var(--s6));
  margin-top: calc(var(--s6) * -1);
}

.tile {
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--s6) var(--s5);
  text-align: center;
}

.tile h3 {
  margin-top: var(--s4);
  font-family: "Inter", sans-serif;
  font-size: var(--f-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tile p {
  margin-top: var(--s3);
  font-size: var(--f-sm);
  color: var(--muted);
}

.section { padding: var(--s8) 0; }

.section-head { max-width: 46ch; }

.section-head h2 { font-size: var(--f-3xl); }

.section-head p { margin-top: var(--s4); color: var(--muted); }

.eyebrow {
  font-size: var(--f-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s7);
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: var(--surface);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin-top: var(--s5);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
}

.facts dt {
  font-family: "Jost", sans-serif;
  font-size: var(--f-xl);
  font-weight: 300;
}

.facts dd {
  margin: var(--s1) 0 0;
  font-size: var(--f-sm);
  color: var(--muted);
}

.catalogue-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s5);
  flex-wrap: wrap;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s5);
}

.filters button {
  min-height: 48px;
  padding: 0 var(--s4);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font: inherit;
  font-size: var(--f-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.filters button[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--ink);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: var(--s4);
  margin-top: var(--s6);
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s4);
  flex: 1;
}

.card-cat {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.card h3 {
  font-family: "Inter", sans-serif;
  font-size: var(--f-md);
  font-weight: 600;
  line-height: 1.5;
}

.card p {
  font-size: var(--f-sm);
  color: var(--muted);
  flex: 1;
}

.price {
  font-family: "Jost", sans-serif;
  font-size: var(--f-lg);
  font-weight: 400;
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}

.doc { padding: var(--s7) 0 var(--s8); }

.doc-inner { max-width: 74ch; }

.doc h1 { font-size: var(--f-3xl); }

.doc h2 {
  font-size: var(--f-xl);
  margin-top: var(--s6);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
}

.doc h3 {
  font-family: "Inter", sans-serif;
  font-size: var(--f-md);
  font-weight: 600;
  margin-top: var(--s5);
}

.doc p, .doc li { color: var(--muted); }

.doc p { margin-top: var(--s3); }

.doc ul, .doc ol { margin: var(--s3) 0 0; padding-left: var(--s4); }

.doc li { margin-top: var(--s2); }

.doc strong { color: var(--ink); font-weight: 600; }

.updated {
  margin-top: var(--s3);
  font-size: var(--f-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.table-wrap { overflow-x: auto; margin-top: var(--s4); }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--f-sm);
}

th, td {
  text-align: left;
  padding: var(--s3);
  border: 1px solid var(--line);
  color: var(--muted);
}

th { color: var(--ink); font-weight: 600; background: var(--surface); }

.site-footer {
  background: var(--ink);
  color: hsl(14 8% 78%);
  padding: var(--s8) 0 var(--s6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s6);
}

.site-footer h4 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s3);
}

.site-footer p, .site-footer li { font-size: var(--f-sm); }

.site-footer ul { list-style: none; margin: 0; padding: 0; }

.site-footer li { margin-top: var(--s2); }

.site-footer a { text-decoration: none; }

.site-footer a:hover { color: var(--white); }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  color: var(--white);
  font-family: "Jost", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: var(--s4);
}

.footer-note {
  margin-top: var(--s7);
  padding-top: var(--s4);
  border-top: 1px solid hsl(14 8% 26%);
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
  font-size: var(--f-xs);
  color: hsl(14 8% 66%);
}

@media (max-width: 980px) {
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .hero::before { display: none; }
  .band-inner { grid-template-columns: 1fr; }
  .showcase-strip figure { flex: 0 0 70%; }
  .hero h1 { font-size: var(--f-3xl); }
  .section { padding: var(--s7) 0; }
}

@media (max-width: 640px) {
  .header-row { flex-wrap: wrap; padding: var(--s3) 0; }
  .nav { order: 3; width: 100%; }
  .section-head h2, .doc h1 { font-size: var(--f-2xl); }
  .facts { grid-template-columns: 1fr; }
}
