:root {
  color-scheme: light;
  --green-950: #062f22;
  --green-900: #083c2c;
  --green-800: #0e4a36;
  --green-700: #176044;
  --green-100: #e8f0ea;
  --text: #10291d;
  --muted: #5e7168;
  --line: #dfe7e1;
  --paper: #ffffff;
  --soft: #f4f7f2;
  --amber: #a45d00;
  --amber-dark: #a45d00;
  --shadow: 0 22px 55px rgba(8, 60, 44, 0.14);
  --sidebar-width: 280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--soft);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input,
select,
textarea {
  font: inherit;
}

.menu-toggle {
  display: none;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--sidebar-width);
  padding: 28px 18px;
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(180deg, #063f2d 0%, #05281f 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.brand {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 25px;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.35;
}

.side-nav {
  display: grid;
  gap: 8px;
}

.side-nav a {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  min-height: 58px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.side-nav a:hover,
.side-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.side-nav a:hover {
  transform: translateX(2px);
}

.nav-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.nav-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-nav span:last-child {
  display: grid;
  gap: 3px;
  font-weight: 700;
  font-size: 14px;
}

.side-nav small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 500;
}

.side-cta {
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.side-cta span {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.side-cta small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.scrim {
  display: none;
}

.page-shell {
  margin-left: var(--sidebar-width);
  background: var(--soft);
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 18;
  max-width: 1180px;
  min-height: 72px;
  margin: 0 auto;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(8, 60, 44, 0.1);
  background: rgba(244, 247, 242, 0.92);
  backdrop-filter: blur(18px);
}

.top-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-dot {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green-950);
  font-size: 13px;
  font-weight: 900;
}

.top-header-brand strong,
.top-header-brand small {
  display: block;
}

.top-header-brand strong {
  color: var(--green-950);
  font-size: 17px;
  line-height: 1.1;
}

.top-header-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

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

.header-quote {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-900);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  min-width: 76px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-950);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary i {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-switcher[open] summary i {
  transform: rotate(225deg) translate(-1px, -1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  width: 250px;
  max-height: min(70vh, 430px);
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(8, 60, 44, 0.16);
}

.language-menu a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 8px;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
  background: var(--green-100);
}

.language-menu span {
  color: var(--green-950);
  font-size: 12px;
  font-weight: 950;
}

.language-menu small {
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 48px;
}

.hero {
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 52px;
  align-items: center;
  background: linear-gradient(90deg, #fff 0%, #fff 55%, #f2f5f0 100%);
}

.section-label {
  margin: 0 0 12px;
  color: var(--amber-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
p,
li,
a,
button,
label,
small,
span,
strong {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--green-950);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
  color: var(--green-950);
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy > p:not(.section-label),
.section-copy > p,
.section-heading > p,
.contact-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, #a45d00, #8b4c00);
  box-shadow: 0 14px 28px rgba(200, 117, 5, 0.23);
}

.button.primary:hover {
  background: linear-gradient(180deg, #914f00, #743d00);
}

.button.ghost {
  color: var(--green-800);
  background: #fff;
  border-color: var(--line);
}

.hero-points {
  display: grid;
  gap: 9px;
  color: var(--green-800);
  font-weight: 750;
}

.hero-points span {
  position: relative;
  padding-left: 24px;
}

.hero-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.hero-media,
.image-frame,
.wide-product-image {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #e9ede8;
}

.hero-media {
  aspect-ratio: 4 / 3;
}

.route-hero {
  min-height: 56svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 46px;
  align-items: center;
  background: #fff;
}

.route-hero-compact {
  min-height: auto;
  display: block;
  padding-bottom: 30px;
}

.route-hero h1,
.section-copy h1,
.section-heading h1,
.contact-copy h1 {
  max-width: 780px;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.02;
}

.route-hero p {
  max-width: 690px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.page-card-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.page-card-grid h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.12;
}

.page-card-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.page-card-grid a {
  color: var(--amber-dark);
  font-weight: 850;
}

.seo-anchor-band {
  border-top: 1px solid var(--line);
  background: #fff;
}

.seo-anchor-copy {
  max-width: 900px;
}

.seo-anchor-copy h2 {
  max-width: 820px;
  font-size: clamp(28px, 3vw, 42px);
}

.seo-anchor-copy p:not(.section-label) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.seo-anchor-links a {
  color: var(--green-900);
  border-bottom: 1px solid rgba(8, 60, 44, 0.32);
  font-weight: 850;
}

.seo-anchor-links a:hover {
  color: var(--amber-dark);
  border-bottom-color: currentColor;
}

.split,
.formulation {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 46px;
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
}

.detail-section,
.standalone-process {
  border-top: 1px solid var(--line);
}

.formulation {
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
}

.image-frame {
  aspect-ratio: 16 / 10;
}

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

.feature-list article,
.process-steps article,
.product-grid article,
.page-card-grid article,
.quality-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-list article {
  padding: 18px;
}

.feature-list strong,
.quality-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-950);
}

.feature-list span,
.quality-grid span,
.process-steps p,
.product-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.process,
.products {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.process-steps article {
  padding: 24px;
}

.process-steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--amber);
  font-weight: 900;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--green-800);
  font-weight: 700;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(-45deg);
}

.wide-product-image {
  aspect-ratio: 16 / 7;
  margin-bottom: 18px;
}

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

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

.product-grid article,
.quality-grid article {
  padding: 20px;
}

.quality {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 47, 34, 0.98), rgba(12, 86, 61, 0.94)),
    #063f2d;
}

.quality .section-label,
.quality h1,
.quality h2,
.quality .section-heading p {
  color: #fff;
}

.quality .section-heading p {
  opacity: 0.78;
}

.quality-grid article {
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: 46px;
  align-items: start;
  background: #fff;
  border-top: 1px solid var(--line);
}

.contact-card {
  display: grid;
  gap: 8px;
  max-width: 380px;
  margin-top: 30px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-900);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.contact-card strong {
  margin-bottom: 10px;
  font-size: 19px;
}

.contact-note {
  display: grid;
  gap: 10px;
  max-width: 440px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-note strong {
  color: var(--green-950);
  font-size: 18px;
}

.contact-note span {
  color: var(--muted);
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label,
.field-group {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.custom-select-trigger {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfdad2;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  background: #fbfcfa;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.phone-control {
  display: grid;
  grid-template-columns: minmax(108px, 0.38fr) minmax(0, 1fr);
  gap: 8px;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green-950) 50%),
    linear-gradient(135deg, var(--green-950) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  font-weight: 800;
}

.custom-select {
  position: relative;
}

.field-label {
  display: block;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.select-chevron {
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--green-950);
  border-bottom: 2px solid var(--green-950);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.custom-select.is-open .select-chevron {
  transform: rotate(225deg) translate(-2px, -1px);
}

.custom-select-menu {
  position: absolute;
  inset: calc(100% + 8px) 0 auto 0;
  z-index: 12;
  display: none;
  overflow: hidden;
  border: 1px solid #b8c8be;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(8, 60, 44, 0.16);
}

.custom-select.is-open .custom-select-menu {
  display: grid;
}

.custom-select-menu button {
  min-height: 44px;
  border: 0;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
  text-align: left;
  font-weight: 750;
  cursor: pointer;
}

.custom-select-menu button:hover,
.custom-select-menu button[aria-selected="true"] {
  color: var(--green-950);
  background: var(--green-100);
}

.contact-form textarea {
  min-height: 134px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.custom-select-trigger:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(23, 96, 68, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.contact-form.is-submitting .submit-button:disabled {
  cursor: wait;
}

.form-status {
  min-height: 24px;
  margin: -2px 0 0;
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 750;
}

.form-status.is-success {
  color: var(--green-700);
}

.form-status.is-error {
  color: #a83225;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 48px 44px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  background: var(--green-950);
}

.site-footer strong {
  font-size: 26px;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

@media (max-width: 1120px) {
  :root {
    --sidebar-width: 250px;
  }

  .section {
    padding-inline: 34px;
  }

  .hero,
  .route-hero,
  .split,
  .formulation,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-top: 60px;
  }

  .hero-media,
  .image-frame {
    max-height: 560px;
  }

  .process-steps,
  .page-card-grid,
  .product-grid,
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    background: #fff;
  }

  .menu-toggle {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 50;
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(8, 60, 44, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(8, 60, 44, 0.12);
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--green-950);
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .sidebar {
    width: min(84vw, 330px);
    transform: translateX(-102%);
    transition: transform 200ms ease;
  }

  .menu-open .sidebar {
    transform: translateX(0);
  }

  .scrim {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: block;
    pointer-events: none;
    background: rgba(4, 25, 18, 0);
    transition: background 200ms ease;
  }

  .menu-open .scrim {
    pointer-events: auto;
    background: rgba(4, 25, 18, 0.45);
  }

  .page-shell {
    margin-left: 0;
  }

  .top-header {
    min-height: 72px;
    padding: 12px 76px 12px 20px;
  }

  .top-header-brand small {
    display: none;
  }

  .header-quote {
    display: none;
  }

  .language-switcher summary {
    min-width: 62px;
  }

  .language-menu {
    right: 0;
    width: min(280px, calc(100vw - 40px));
    max-height: min(72vh, 520px);
  }

  .section {
    padding: 58px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    background: #fff;
  }

  .route-hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 34px;
  }

  .route-hero h1,
  .section-copy h1,
  .section-heading h1,
  .contact-copy h1 {
    font-size: 38px;
  }

  .hero-copy > p:not(.section-label),
  .section-copy > p,
  .section-heading > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media,
  .image-frame,
  .wide-product-image {
    aspect-ratio: 4 / 3;
  }

  .process-steps,
  .page-card-grid,
  .product-grid,
  .quality-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-section {
    gap: 26px;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    padding: 32px 20px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Product categories extend the original Fason Bar layout. */
.side-nav a { grid-template-columns: 1fr; min-height: 38px; }
.sidebar { gap: 22px; padding-top: 24px; }
.side-nav { gap: 3px; }
.nav-caption { margin: 20px 10px 8px; color: #a5bcaa; font-size: 10px; letter-spacing: 1.8px; }
.category-group summary { padding: 13px 10px; font-size: 14px; line-height: 1.6; cursor: pointer; font-weight: 650; color: #fff; }
.category-links { margin: 2px 0 10px 17px; padding-left: 12px; border-left: 1px solid #53755f; }
.category-links a { min-height: 35px; padding: 8px 10px; }
.category-links a span:last-child { font-size: 12px; font-weight: 450; }
.category-links a[aria-current] { background: #ffffff18; color: white; }
.side-cta { margin-top: auto; }
.hero-media img { object-fit: cover; }
.breadcrumbs { display:flex; gap:10px; flex-wrap:wrap; padding:24px 44px 0; font-size:12px; color:var(--muted); }
.breadcrumbs a:hover { text-decoration:underline; }
.product-tabs { display:flex; flex-wrap:wrap; gap:8px; padding-top:0; padding-bottom:20px; }
.product-tabs a { padding:10px 16px; border:1px solid var(--line); border-radius:6px; font-size:13px; background:white; }
.product-tabs a[aria-current] { background:var(--green-900); color:white; border-color:var(--green-900); }
.detail-cards { grid-template-columns:repeat(2,minmax(0,1fr)); }
.detail-cards p { line-height:1.9; }
.catalog-intro { padding-bottom:0; }
.catalog-intro h2 { margin-top:10px; }
.home-links { grid-template-columns: minmax(0,1fr); }
.home-links article { max-width:700px; }
.process-cards { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:22px; margin-top:28px; }
.process-cards article { border-top:1px solid var(--line); padding-top:24px; }
.process-cards article > span { color:var(--amber); font-size:13px; }
.process-cards h3 { font-size:17px; }
.process-cards p { color:var(--muted); font-size:14px; line-height:1.8; }
.project-cta { display:flex; align-items:center; justify-content:space-between; gap:25px; background:#e8eee3; }
.project-cta h2 { margin:10px 0; }
.project-cta .button { flex-shrink:0; }
.intro-section { max-width:1000px; }
.intro-section h1 { font-size:clamp(32px,4vw,58px); line-height:1.12; letter-spacing:-1.7px; }
.intro-section > p:last-child { color:var(--muted); font-size:18px; line-height:1.8; }
.skip-link { position:fixed; top:-70px; left:15px; z-index:100; background:white; padding:12px; }
.skip-link:focus { top:10px; }
:focus-visible { outline:3px solid #c87505; outline-offset:4px; }
@media(max-width:1100px) { .process-cards { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:700px) { .detail-cards { grid-template-columns:1fr; } .project-cta { align-items:flex-start; flex-direction:column; } .breadcrumbs { padding:22px 22px 0; } .process-cards { grid-template-columns:1fr; } }
@media(prefers-reduced-motion:reduce) { html { scroll-behavior:auto; } *, *::before, *::after { transition:none!important; animation:none!important; } }
.contact-grid { display:grid; grid-template-columns:minmax(0,.75fr) minmax(0,1.5fr); gap:42px; }
.contact-grid > div > p { color:var(--muted); line-height:1.8; }
@media(max-width:900px) { .contact-grid { grid-template-columns:1fr; } }
.hero h1 { font-size:clamp(36px,4.3vw,64px); line-height:1.08; letter-spacing:-2px; }

/* Expanded product catalogue */
[hidden] { display: none !important; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
:root { --sidebar-width:300px; }
.sidebar { scrollbar-width:thin; scrollbar-color:#446958 transparent; }
.sidebar .brand strong { font-size:23px; }
.sidebar-search { margin:16px 0 0; }
.sidebar-search input { width:100%; min-width:0; padding:11px 12px; color:white; background:#ffffff0c; border:1px solid #ffffff30; border-radius:6px; font-size:13px; }
.sidebar-search input::placeholder { color:#c0d1c5; }
.sidebar-empty { padding:10px; color:#d4ded6; font-size:13px; }
.category-group summary { padding:10px; font-size:13px; line-height:1.55; overflow-wrap:anywhere; }
.category-group[open] summary { color:#f5d193; }
.nav-caption { margin-top:22px; margin-bottom:5px; line-height:1.5; }
.sidebar-product-group .category-links a { min-height:32px; }
.hero { grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:36px; padding-top:54px; padding-bottom:54px; min-height:0; }
.hero h1 { font-size:clamp(32px,3.65vw,56px); letter-spacing:-1.6px; line-height:1.12; overflow-wrap:break-word; }
.product-hero h1 { font-size:clamp(28px,2.9vw,44px); letter-spacing:-1px; }
.hero-media { margin:0; position:relative; aspect-ratio:3/2; height:auto; min-height:0; border-radius:10px; overflow:visible; box-shadow:none; background:transparent; }
.hero-media img { border-radius:10px; aspect-ratio:3/2; height:auto; }
.hero-media figcaption { padding:8px 2px 0; color:var(--muted); font-size:10px; letter-spacing:.3px; }
.catalog-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; margin-top:28px; }
.product-card { min-width:0; background:white; border:1px solid var(--line); border-radius:9px; overflow:hidden; transition:border-color .15s; }
.product-card:hover { border-color:#9dab99; }
.product-photo { margin:0; aspect-ratio:3/2; }
.product-photo img { aspect-ratio:3/2; height:auto; }
.product-card-copy { padding:22px; }
.product-card h2 { font-size:21px; line-height:1.3; letter-spacing:-.4px; margin:9px 0 14px; overflow-wrap:break-word; }
.product-card p:not(.section-label) { font-size:14px; line-height:1.8; color:var(--muted); }
.product-card .section-label { font-size:10px; line-height:1.5; }
.text-link { display:inline-block; margin-top:9px; color:var(--green-800); font-weight:650; font-size:13px; }
.section-intro { color:var(--muted); max-width:800px; line-height:1.8; }
.section-more { margin-top:30px; }
.section > h2, .project-cta h2 { font-size:clamp(26px,2.8vw,38px); letter-spacing:-.8px; }
.catalog-controls { display:grid; gap:20px; }
.catalog-controls > label { display:grid; gap:10px; max-width:520px; font-size:13px; font-weight:650; }
.catalog-controls input { min-width:0; width:100%; border:1px solid var(--line); border-radius:7px; padding:13px 16px; background:white; }
.catalog-filters { display:flex; flex-wrap:wrap; gap:8px; }
.catalog-filters button { border:1px solid var(--line); background:white; border-radius:30px; padding:10px 17px; color:var(--green-800); cursor:pointer; font-size:13px; }
.catalog-filters button[aria-pressed="true"] { background:var(--green-900); border-color:var(--green-900); color:white; }
.catalog-empty { color:var(--muted); padding:25px 0; }
.catalog-section { padding-top:0; }
.editorial-sections { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px 48px; padding-top:25px; }
.editorial-sections article { border-top:1px solid var(--line); padding-top:23px; }
.editorial-sections h2 { font-size:24px; letter-spacing:-.4px; line-height:1.3; margin:0 0 16px; }
.editorial-sections p { color:var(--muted); line-height:1.9; margin:0; }
.formulation-note { background:#ebf0e7; padding:24px; border-radius:8px; border:0!important; }
.contact-intro { padding-bottom:28px; }
.contact-grid { padding-top:25px; gap:40px; align-items:start; }
.contact-grid h2 { font-size:32px; letter-spacing:-.8px; }
.contact-grid > div > p { font-size:15px; }
.contact-steps { margin-top:30px; }
.contact-steps p { display:flex; gap:14px; color:var(--green-800); font-size:14px; }
.contact-steps span { color:var(--amber); }
.breadcrumbs { padding-inline:44px; }
.product-tabs { padding-top:24px; }
.site-footer nav { flex-wrap:wrap; }
[dir="rtl"] .hero h1, [dir="rtl"] h2, [dir="rtl"] .intro-section h1 { letter-spacing:0; }
[dir="rtl"] .category-links { margin:2px 17px 10px 0; padding-left:0; padding-right:12px; border-left:0; border-right:1px solid #53755f; }
[dir="rtl"] .phone-control, [dir="rtl"] input[type="email"], [dir="rtl"] input[name="phone"] { direction:ltr; }
[dir="rtl"] .language-menu { text-align:start; }
/* The user's product navigation stays on the left in every language. */
@media(min-width:761px) { .sidebar { left:0; right:auto; } .page-shell { margin-left:var(--sidebar-width); margin-right:0; } }
@media(max-width:1250px) { .catalog-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:1120px) { :root { --sidebar-width:270px; } .hero { grid-template-columns:1fr; } .hero-media { max-width:760px; } .related-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:760px) { .sidebar { visibility:hidden; } .menu-open .sidebar { visibility:visible; } .catalog-grid,.related-grid,.editorial-sections { grid-template-columns:1fr; } .hero { padding-top:36px; padding-bottom:36px; gap:28px; } .hero h1 { font-size:37px; } .product-hero h1 { font-size:32px; } .breadcrumbs { padding-inline:20px; } .intro-section { padding-top:35px; padding-bottom:28px; } .intro-section h1 { font-size:36px; } .catalog-section,.contact-grid { padding-top:20px; } .editorial-sections { gap:28px; padding-top:15px; } .project-cta { padding-block:35px; } .product-tabs { padding-block:18px; } .product-tabs a { font-size:12px; padding:8px 11px; } }
picture { display:block; }
[dir="rtl"] .language-menu { left:0; right:auto; }

.fasonbar-reference {
  margin-block: 0 3rem;
  padding-block: 1.5rem;
  border-block: 1px solid var(--line, #d5dfd7);
}
.fasonbar-reference p { max-width: 76ch; margin: 0 0 1rem; }
.fasonbar-reference a { overflow-wrap: anywhere; }

.publication { display:flex; flex-wrap:wrap; gap:.4rem 1.1rem; margin:1.25rem 0 1.5rem; color:var(--muted); font-size:12px; line-height:1.8; }
.publication a { color:var(--green-800); text-decoration:underline; text-underline-offset:3px; }
.publication span { max-width:100%; }
.publication time { white-space:normal; }
.intro-section > p { color:var(--muted); font-size:18px; line-height:1.8; }
@media (max-width:760px) { .publication { gap:.4rem .9rem; } }

.phone-field { display:grid; gap:8px; min-width:0; }
.phone-field > label { font-size:13px; font-weight:750; color:var(--green-950); }
