:root {
  --brand-orange: #f36f21;
  --brand-orange-pressed: #c95012;
  --brand-orange-soft: #fff0e6;
  --accent-gold: #d99a1e;
  --bg: #faf5ec;
  --surface: #ffffff;
  --surface-panel: #fff9f0;
  --surface-muted: #f2eadf;
  --dark: #201d1a;
  --text: #201d1a;
  --text-muted: #5f5750;
  --border: #e2d5c6;
  --border-strong: #c8b8a4;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --maxw: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  padding: 0 28px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 245, 236, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: auto;
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: var(--radius-md);
  padding: 9px 14px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover {
  background: var(--brand-orange-soft);
  color: var(--brand-orange-pressed);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.btn-primary {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: #ffffff;
}

.btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange-pressed);
}

.btn-primary:hover {
  border-color: var(--brand-orange-pressed);
  background: var(--brand-orange-pressed);
  color: #ffffff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--brand-orange-pressed);
}

.hero {
  padding: 64px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-orange);
}

h1 {
  max-width: 13ch;
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
}

.lede {
  max-width: 66ch;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

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

.hero-card p {
  padding: 18px 20px;
  color: var(--text-muted);
  font-size: 15px;
}

.section {
  padding: 72px 0 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 26px;
}

.card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.card p,
.card li {
  color: var(--text-muted);
  font-size: 15px;
}

.card p {
  margin-top: 10px;
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 22px;
}

.list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.band {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface-panel);
  padding: 38px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 0 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.links a:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange-pressed);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  border-radius: var(--radius-xl);
  background: var(--dark);
  padding: 34px;
  color: #ffffff;
}

.cta p {
  max-width: 58ch;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  margin-top: 72px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cat-note {
  margin-top: 14px;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ---------- catalogue viewer ---------- */
.cat-pages {
  display: grid;
  gap: 20px;
}

.cat-page {
  margin: 0;
}

.cat-page a {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}

.cat-page img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.cat-page a:hover img {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-premium);
}

.cat-page figcaption {
  margin-top: 8px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

/* ---------- product range grid ---------- */
.range {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.range-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

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

.range-item div {
  padding: 18px 20px 22px;
}

.range-item h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.range-item p {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .hero-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .range {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    display: none;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }

  .range {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 46px;
  }

  h1 {
    max-width: none;
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero {
    padding-top: 46px;
  }

  .band,
  .cta {
    padding: 26px 20px;
  }
}
