:root {
  --bg: #f4f0e8;
  --bg-soft: #fbf7f0;
  --surface: rgba(255, 252, 247, 0.86);
  --surface-strong: #fffdf9;
  --surface-dark: #151515;
  --text: #151515;
  --muted: #5f5b56;
  --line: rgba(21, 21, 21, 0.1);
  --line-strong: rgba(21, 21, 21, 0.18);
  --accent: #3d6b4f;
  --accent-strong: #204b33;
  --terracotta: #b86d44;
  --sand: #dcc9ae;
  --shadow: 0 24px 80px rgba(21, 21, 21, 0.08);
  --shadow-soft: 0 16px 40px rgba(21, 21, 21, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --nav-height: 84px;
  --font-sans: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(61, 107, 79, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(184, 109, 68, 0.09), transparent 26%),
    linear-gradient(180deg, #faf7f1 0%, #f3ede2 100%);
  min-height: 100vh;
}

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

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

button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.55;
}

.site-shell::before {
  width: 280px;
  height: 280px;
  top: 120px;
  right: -90px;
  background: rgba(61, 107, 79, 0.1);
}

.site-shell::after {
  width: 340px;
  height: 340px;
  bottom: -80px;
  left: -100px;
  background: rgba(184, 109, 68, 0.1);
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.page-section {
  padding: 96px 0;
}

.page-section.tight {
  padding-top: 56px;
  padding-bottom: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.page-header {
  padding: 104px 0 44px;
}

.page-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 40px;
  align-items: end;
}

.page-header h1,
.hero-content h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.page-header p,
.hero-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.page-header-card,
.hero-panel,
.panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.utility-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(21, 21, 21, 0.88);
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.utility-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.utility-inline span,
.utility-inline a {
  opacity: 0.88;
}

.site-header {
  position: sticky;
  top: 44px;
  z-index: 25;
  padding: 16px 0 0;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 252, 247, 0.95);
  border-color: rgba(21, 21, 21, 0.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--nav-height);
  padding: 14px 18px;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(21, 21, 21, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.button,
.button-ghost,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  background: var(--surface-dark);
  color: #fff;
  box-shadow: 0 12px 32px rgba(21, 21, 21, 0.18);
}

.button:hover,
.button-ghost:hover,
.button-link:hover {
  transform: translateY(-2px);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  border: 1px solid var(--line);
}

.button-link {
  min-height: unset;
  padding: 0;
  color: var(--accent-strong);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.hero {
  padding: 18px 0 42px;
}

.hero-stage {
  position: relative;
  width: min(calc(100% - 24px), 1580px);
  min-height: clamp(700px, 86vh, 940px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 38px;
  background: #111;
  box-shadow: 0 40px 120px rgba(21, 21, 21, 0.2);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #111;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(56px, 0, 0) scale(1.03);
  transition: opacity 860ms ease, transform 860ms ease;
  will-change: opacity, transform;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 2;
}

.hero-slide.is-leaving {
  opacity: 0;
  transform: translate3d(-56px, 0, 0) scale(1.01);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.6);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.54) 0%, rgba(9, 9, 9, 0.14) 42%, rgba(9, 9, 9, 0.34) 100%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.08) 0%, rgba(9, 9, 9, 0.28) 100%);
}

.hero-scrim {
  z-index: 1;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-content-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px);
  gap: 28px;
  align-items: end;
  min-height: clamp(700px, 86vh, 940px);
  padding: clamp(28px, 4vw, 52px);
}

.hero-content {
  align-self: center;
  max-width: 760px;
  color: #fff;
  padding-top: 72px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.84);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow-light::before {
  background: rgba(255, 255, 255, 0.54);
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-heading {
  max-width: 820px;
}

.hero-support {
  margin-top: 20px;
  max-width: 640px;
}

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

.hero .button {
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero .button-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero .button-link {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 7px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.hero-feature-card {
  align-self: end;
  justify-self: end;
  width: min(100%, 320px);
  padding: 24px;
  border-radius: 24px;
  background: rgba(8, 8, 8, 0.64);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-feature-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-feature-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1.4rem;
  line-height: 1.15;
}

.hero-feature-card p {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.hero-feature-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-feature-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.hero-controls {
  position: absolute;
  inset: auto 0 26px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding: 0 clamp(28px, 4vw, 52px);
  pointer-events: none;
}

.hero-dots,
.hero-scroll-cue {
  pointer-events: auto;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.hero-dot.is-active {
  background: #fff;
  transform: scaleX(1.12);
}

.hero-scroll-cue {
  justify-self: center;
  width: 44px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
  backdrop-filter: blur(14px);
}

.hero-scroll-cue span {
  width: 8px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  animation: hero-scroll 1600ms ease-in-out infinite;
}

@keyframes hero-scroll {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(18px);
    opacity: 0.32;
  }
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.05);
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-strip-floating {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.trust-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: var(--shadow-soft);
}

.trust-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.trust-card span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.card-media {
  position: relative;
  aspect-ratio: 1.06;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  padding: 24px;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(61, 107, 79, 0.12);
  color: var(--accent-strong);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  align-items: stretch;
}

.feature-panel {
  padding: 32px;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.96), rgba(37, 37, 37, 0.92));
  color: rgba(255, 255, 255, 0.88);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-panel h3 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.feature-panel p {
  margin: 0;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.74);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.feature-item {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
}

.feature-item span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.54;
}

.feature-cta {
  margin-top: 22px;
}

.service-grid {
  gap: 16px;
  align-content: start;
  height: 100%;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: stretch;
}

.service-grid .card {
  border-radius: 20px;
  height: 100%;
}

.service-grid .card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px;
  height: 100%;
}

.service-grid .card-kicker {
  min-height: 32px;
  padding: 0 11px;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.service-grid .card h3 {
  margin-bottom: 8px;
  font-size: 1.125rem;
  line-height: 1.14;
}

.service-grid .card p {
  font-size: 0.86rem;
  line-height: 1.48;
}

.service-grid .card-actions {
  margin-top: auto;
  padding-top: 12px;
}

.service-grid .button-link {
  font-size: 0.94rem;
}

.service-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

@media (min-width: 921px) {
  .service-section .service-band {
    min-height: clamp(520px, 72vh, 680px);
  }
}

.catalogue-grid .card-media {
  aspect-ratio: 0.9;
  background: linear-gradient(180deg, #f8f4ec, #efe5d7);
}

.catalogue-card .card-actions .button-ghost,
.catalogue-card .card-actions .button-link {
  min-height: 46px;
}

.catalogue-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.catalogue-summary {
  padding: 32px;
}

.catalogue-summary h3 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.catalogue-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.catalogue-cover {
  overflow: hidden;
}

.catalogue-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalogue-product-media {
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f4ede3);
}

.catalogue-product-media img {
  object-fit: contain;
  transform: none;
}

.product-record:hover .catalogue-product-media img {
  transform: none;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.product-spec {
  padding: 14px;
  border-radius: 16px;
  background: rgba(21, 21, 21, 0.04);
  border: 1px solid rgba(21, 21, 21, 0.06);
}

.product-spec strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-spec span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
}

.split-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.split-copy,
.split-visual {
  padding: 32px;
}

.split-copy h3,
.content-card h3,
.contact-card h3 {
  margin: 0 0 14px;
  font-size: 1.9rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.split-copy p,
.content-card p,
.contact-card p,
.stat-list li,
.page-list li {
  color: var(--muted);
  line-height: 1.72;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  min-height: 100%;
}

.image-mosaic .stack {
  display: grid;
  gap: 14px;
}

.image-tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(61, 107, 79, 0.15), rgba(21, 21, 21, 0.08)),
    linear-gradient(140deg, #efe5d8, #d6c4aa);
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.image-tile::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.content-card {
  padding: 28px;
}

.content-card ul,
.page-list,
.stat-list {
  padding-left: 18px;
  margin: 14px 0 0;
}

.page-list li,
.stat-list li {
  margin-bottom: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contact-card {
  padding: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.contact-item {
  padding: 20px;
  border-radius: 20px;
  background: rgba(21, 21, 21, 0.04);
}

.contact-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.contact-item a,
.contact-item span {
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.cta-band {
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.96), rgba(61, 107, 79, 0.92));
  color: #fff;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
  max-width: 720px;
}

.cta-band .button {
  background: #fff;
  color: var(--text);
}

.site-footer {
  padding: 28px 0 36px;
}

.footer-shell {
  display: grid;
  gap: 24px;
  padding: 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.74;
}

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

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-contact {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-contact p,
.footer-contact a {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 24;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.mobile-cta a {
  min-height: 52px;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

.catalogue-browser {
  padding: 36px;
}

.catalogue-browser-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: end;
}

.catalogue-browser-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.catalogue-browser-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.catalogue-browser-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.catalogue-browser-actions p {
  font-size: 0.95rem;
}

.catalogue-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.filter-pill:hover,
.filter-pill:focus-visible {
  border-color: rgba(21, 21, 21, 0.22);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.filter-pill.is-active {
  background: rgba(55, 93, 67, 0.12);
  border-color: rgba(55, 93, 67, 0.22);
  color: var(--forest);
}

.filter-pill span:last-child {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.06);
  font-size: 0.82rem;
}

.filter-pill.is-active span:last-child {
  background: rgba(55, 93, 67, 0.12);
}

.catalogue-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.catalogue-product-card {
  overflow: hidden;
}

.catalogue-product-card .card-body {
  display: grid;
  gap: 14px;
}

.catalogue-product-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  background: linear-gradient(180deg, #faf6ef, #efe6d9);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 0.94;
}

.catalogue-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.45s ease, transform 0.7s ease;
}

.catalogue-product-image.is-primary {
  object-fit: contain;
  object-position: center;
  padding: 16px;
  background: linear-gradient(180deg, #fbf8f3, #f1e9de);
}

.catalogue-product-image.is-hover {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
}

.catalogue-product-card:hover .catalogue-product-image.is-primary,
.catalogue-product-card:focus-within .catalogue-product-image.is-primary {
  opacity: 0;
  transform: scale(1.05);
}

.catalogue-product-card:hover .catalogue-product-image.is-hover,
.catalogue-product-card:focus-within .catalogue-product-image.is-hover {
  opacity: 1;
  transform: scale(1);
}

.catalogue-image-hint {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.72);
  color: #f9f6f1;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(6px);
}

.catalogue-product-card:hover .catalogue-image-hint,
.catalogue-product-card:focus-within .catalogue-image-hint {
  opacity: 1;
  transform: translateY(0);
}

.catalogue-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalogue-page-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.05);
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-product-card .button-link {
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.catalogue-spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalogue-spec-list li,
.catalogue-dialog-specs li {
  color: var(--muted);
  line-height: 1.6;
}

.catalogue-spec-list strong,
.catalogue-dialog-specs strong {
  color: var(--ink);
}

.catalogue-empty-state,
.catalogue-load-state {
  padding: 28px;
  margin-top: 24px;
}

.catalogue-empty-state h3,
.catalogue-load-state h3 {
  margin: 0 0 10px;
}

.catalogue-empty-state p,
.catalogue-load-state p {
  margin: 0;
  color: var(--muted);
}

.catalogue-dialog {
  width: min(1100px, calc(100% - 36px));
  padding: 0;
  border: 0;
  background: transparent;
}

.catalogue-dialog::backdrop {
  background: rgba(18, 18, 18, 0.56);
  backdrop-filter: blur(8px);
}

.catalogue-dialog-shell {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: #fbf7f1;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
}

.catalogue-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  cursor: pointer;
}

.catalogue-dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
}

.catalogue-dialog-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.catalogue-dialog-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #f6efe3, #ece2d3);
}

.catalogue-dialog-figure img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  display: block;
}

.catalogue-dialog-figure:first-child img {
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #fbf8f3, #f1e9de);
}

.catalogue-dialog-figure figcaption {
  padding: 12px 14px 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.catalogue-dialog-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 12px;
}

.catalogue-dialog-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.catalogue-dialog-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.catalogue-dialog-specs {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  list-style: none;
  border-radius: 24px;
  background: rgba(21, 21, 21, 0.04);
}

@media (max-width: 1120px) {
  .hero-content-shell,
  .page-header-grid,
  .catalogue-hero,
  .catalogue-browser-head,
  .service-band,
  .contact-layout,
  .footer-top,
  .cta-band,
  .catalogue-dialog-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stage,
  .hero-content-shell {
    min-height: 780px;
  }

  .service-section .service-band {
    min-height: unset;
  }

  .service-grid {
    height: auto;
    grid-template-rows: none;
  }

  .feature-panel {
    height: auto;
  }

  .hero-feature-card {
    justify-self: start;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalogue-dialog-media {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    top: 44px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 6px;
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.96);
    border: 1px solid rgba(21, 21, 21, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
    padding: 0 14px;
  }

  .header-actions .button {
    display: none;
  }

  .grid-three,
  .grid-two,
  .split-block,
  .trust-strip,
  .contact-grid,
  .product-specs {
    grid-template-columns: 1fr;
  }

  .hero-feature-card,
  .feature-panel,
  .content-card,
  .contact-card,
  .split-copy,
  .split-visual,
  .cta-band {
    padding: 28px;
  }

  .catalogue-browser {
    padding: 28px;
  }

  .hero-stage,
  .hero-content-shell {
    min-height: 720px;
  }

  .hero-content {
    align-self: end;
    padding-top: 84px;
  }

  .hero-feature-card {
    width: min(100%, 420px);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .page-section {
    padding: 72px 0;
  }

  .utility-bar-inner {
    align-items: flex-start;
    padding: 10px 0;
  }

  .utility-bar,
  .site-header {
    position: relative;
    top: 0;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-stage {
    width: min(calc(100% - 16px), 1580px);
    min-height: 640px;
    border-radius: 28px;
  }

  .hero-content-shell {
    min-height: 640px;
    padding: 24px;
    gap: 18px;
  }

  .hero-content {
    padding-top: 46px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content h1,
  .page-header h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .grid-four,
  .footer-links,
  .image-mosaic,
  .catalogue-dialog-media {
    grid-template-columns: 1fr;
  }

  .catalogue-filter-bar {
    gap: 10px;
  }

  .filter-pill {
    width: 100%;
    justify-content: space-between;
  }

  .catalogue-browser {
    padding: 24px;
  }

  .catalogue-dialog {
    width: min(calc(100% - 20px), 1100px);
  }

  .catalogue-dialog-shell {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-controls {
    inset: auto 0 18px;
    padding: 0 24px;
  }

  .hero-dot {
    width: 34px;
  }

  .hero-scroll-cue {
    width: 40px;
    height: 62px;
  }

  .trust-strip-floating {
    margin-top: 18px;
  }

  .mobile-cta {
    display: grid;
  }

  body {
    padding-bottom: 86px;
  }
}
