:root {
  --gb-forest: #0f4a37;
  --gb-forest-deep: #0a3528;
  --gb-leaf: #547664;
  --gb-gold: #c9a567;
  --gb-gold-deep: #7d5c24;
  --gb-paper: #f7f4ed;
  --gb-surface: #ece7dd;
  --gb-white: #ffffff;
  --gb-ink: #2a2d2a;
  --gb-muted: #5c645f;
  --gb-line: #d8d7cf;
  --gb-warm: #a55d3a;
  --gb-shadow: 0 16px 40px rgba(20, 36, 29, 0.12);
  --gb-container: 1240px;
  --gb-header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gb-ink);
  background: var(--gb-white);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.gb-menu-lock {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gb-gold);
  outline-offset: 3px;
}

.gb-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--gb-white);
  background: var(--gb-forest-deep);
  transform: translateY(-160%);
}

.gb-skip-link:focus {
  transform: translateY(0);
}

.gb-container {
  width: min(calc(100% - 40px), var(--gb-container));
  margin-inline: auto;
}

.gb-section {
  padding: 88px 0;
}

.gb-section--compact {
  padding: 64px 0;
}

.gb-section--paper {
  background: var(--gb-paper);
}

.gb-section--forest {
  color: var(--gb-white);
  background: var(--gb-forest);
}

.gb-section--surface {
  background: var(--gb-surface);
}

.gb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gb-gold-deep);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.gb-eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--gb-gold);
  content: "";
}

.gb-section--forest .gb-eyebrow,
.gb-page-hero .gb-eyebrow,
.gb-home-hero .gb-eyebrow {
  color: #ead5ae;
}

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

h1,
h2,
h3,
h4 {
  color: var(--gb-forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 26px;
}

.gb-section--forest h2,
.gb-section--forest h3,
.gb-page-hero h1,
.gb-home-hero h1 {
  color: var(--gb-white);
}

.gb-lead {
  max-width: 760px;
  color: var(--gb-muted);
  font-size: 19px;
  line-height: 1.7;
}

.gb-section--forest .gb-lead {
  color: #dce8e1;
}

.gb-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.gb-section-heading h2,
.gb-section-heading p {
  margin-bottom: 0;
}

.gb-section-heading__copy {
  max-width: 760px;
}

.gb-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--gb-forest);
  border-radius: 4px;
  color: var(--gb-white);
  background: var(--gb-forest);
  font-weight: 750;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gb-button:hover {
  border-color: var(--gb-forest-deep);
  background: var(--gb-forest-deep);
  transform: translateY(-1px);
}

.gb-button--light {
  border-color: var(--gb-white);
  color: var(--gb-forest-deep);
  background: var(--gb-white);
}

.gb-button--light:hover {
  border-color: var(--gb-paper);
  background: var(--gb-paper);
}

.gb-button--outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--gb-white);
  background: transparent;
}

.gb-button--outline:hover {
  border-color: var(--gb-white);
  color: var(--gb-forest-deep);
  background: var(--gb-white);
}

.gb-button--forest-outline {
  border-color: var(--gb-forest);
  color: var(--gb-forest);
  background: transparent;
}

.gb-button--forest-outline:hover {
  color: var(--gb-white);
  background: var(--gb-forest-deep);
}

.gb-button--small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
}

.gb-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--gb-forest);
  font-weight: 800;
}

.gb-text-link:hover {
  color: var(--gb-warm);
}

.gb-text-link--light {
  color: #f3dfb9;
}

.gb-contact-bar {
  color: #ecf3ef;
  background: var(--gb-forest-deep);
  font-size: 13px;
}

.gb-contact-bar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gb-contact-bar p {
  margin: 0;
}

.gb-contact-bar__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.gb-contact-bar a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
}

.gb-contact-bar a:hover {
  color: #f3dfb9;
}

.gb-site-header {
  position: relative;
  z-index: 100;
  background: var(--gb-white);
}

.gb-nav-shell {
  border-bottom: 1px solid rgba(42, 45, 42, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.gb-nav-shell__inner {
  display: flex;
  min-height: var(--gb-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.gb-brand {
  display: flex;
  width: 235px;
  min-height: 68px;
  flex: 0 0 auto;
  align-items: center;
}

.gb-brand img {
  width: 100%;
  height: 66px;
  object-fit: contain;
}

.gb-primary-nav,
.gb-nav-list,
.gb-nav-label {
  display: flex;
  align-items: center;
}

.gb-primary-nav {
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
  gap: 20px;
}

.gb-nav-list {
  min-width: 0;
  margin: 0;
  padding: 0;
  gap: 3px;
  list-style: none;
}

.gb-nav-item > a,
.gb-nav-label > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 8px;
  color: #24342d;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.gb-nav-item > a:hover,
.gb-nav-label > a:hover {
  color: var(--gb-forest);
}

.gb-menu-toggle,
.gb-icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 4px;
  color: var(--gb-forest-deep);
  background: transparent;
  cursor: pointer;
}

.gb-menu-toggle {
  width: 30px;
  min-width: 30px;
  font-size: 11px;
}

.gb-menu-toggle i {
  transition: transform 160ms ease;
}

.gb-has-menu.is-open .gb-menu-toggle i {
  transform: rotate(180deg);
}

.gb-mobile-toggle {
  display: none;
  font-size: 20px;
}

.gb-mega-menu,
.gb-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  visibility: hidden;
  opacity: 0;
  box-shadow: var(--gb-shadow);
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.gb-mega-menu {
  display: grid;
  width: min(calc(100vw - 40px), 1180px);
  grid-template-columns: 250px 1fr;
  background: var(--gb-white);
}

.gb-has-menu.is-open > .gb-mega-menu,
.gb-has-menu.is-open > .gb-dropdown,
.gb-has-menu:focus-within > .gb-mega-menu,
.gb-has-menu:focus-within > .gb-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.gb-mega-menu__intro {
  padding: 30px;
  color: var(--gb-white);
  background: var(--gb-forest);
}

.gb-mega-menu__intro span {
  display: block;
  margin-bottom: 12px;
  color: #ead5ae;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gb-mega-menu__intro strong {
  display: block;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.3;
}

.gb-mega-menu__intro a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}

.gb-mega-menu__groups {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
}

.gb-mega-menu__groups section h2 {
  margin: 0 0 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 850;
}

.gb-mega-menu__groups section > a {
  display: block;
  padding: 6px 0;
  color: var(--gb-muted);
  font-size: 13px;
  line-height: 1.4;
}

.gb-mega-menu__groups a:hover {
  color: var(--gb-forest);
}

.gb-dropdown {
  width: 290px;
  padding: 10px;
  background: var(--gb-white);
}

.gb-dropdown a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 12px;
  color: var(--gb-muted);
  font-size: 14px;
  font-weight: 650;
}

.gb-dropdown a:hover {
  color: var(--gb-forest);
  background: var(--gb-paper);
}

.gb-home-hero {
  position: relative;
  display: flex;
  min-height: min(720px, calc(100vh - 70px));
  align-items: flex-end;
  overflow: hidden;
  color: var(--gb-white);
  background: var(--gb-forest-deep);
}

.gb-home-hero__image,
.gb-page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-home-hero::after,
.gb-page-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 20, 0.56);
  content: "";
}

.gb-home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 86px;
}

.gb-home-hero__copy {
  max-width: 780px;
}

.gb-home-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 66px;
}

.gb-home-hero__copy > p:not(.gb-eyebrow) {
  max-width: 710px;
  margin-bottom: 30px;
  color: #eef5f1;
  font-size: 20px;
  line-height: 1.7;
}

.gb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gb-hero-note {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - var(--gb-container)) / 2));
  bottom: 0;
  width: 330px;
  padding: 22px 24px;
  color: var(--gb-forest-deep);
  background: var(--gb-gold);
}

.gb-hero-note strong,
.gb-hero-note span {
  display: block;
}

.gb-hero-note strong {
  margin-bottom: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.gb-hero-note span {
  font-size: 14px;
}

.gb-page-hero {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: end;
  overflow: hidden;
  background: var(--gb-forest-deep);
}

.gb-page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--gb-container));
  margin-inline: auto;
  padding: 96px 0 60px;
}

.gb-page-hero h1 {
  max-width: 850px;
  margin-bottom: 16px;
}

.gb-page-hero p:not(.gb-eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #e4eee8;
  font-size: 18px;
}

.gb-category-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.gb-category-card {
  position: relative;
  min-height: 360px;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 4px;
  color: var(--gb-white);
  background: var(--gb-forest-deep);
}

.gb-category-card:nth-child(1),
.gb-category-card:nth-child(2) {
  grid-column: span 6;
  min-height: 420px;
}

.gb-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gb-category-card::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 34, 25, 0.48);
  content: "";
}

.gb-category-card__body {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.gb-category-card h3 {
  margin-bottom: 8px;
  color: var(--gb-white);
  font-size: 30px;
}

.gb-category-card p {
  max-width: 420px;
  margin-bottom: 16px;
  color: #edf3ef;
}

.gb-category-card:hover img {
  transform: scale(1.025);
}

.gb-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.gb-step {
  min-height: 260px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.gb-step:last-child {
  border-right: 0;
}

.gb-step__number {
  display: block;
  margin-bottom: 42px;
  color: #e7c98f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.gb-step h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.gb-step p {
  margin-bottom: 0;
  color: #dbe8e0;
}

.gb-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.gb-split__media {
  min-height: 540px;
}

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

.gb-split__body {
  display: flex;
  align-items: center;
  padding: 64px;
  background: var(--gb-paper);
}

.gb-split__body > div {
  max-width: 560px;
}

.gb-check-list {
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.gb-check-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--gb-line);
}

.gb-check-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--gb-forest);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}

.gb-application-grid,
.gb-product-grid,
.gb-article-grid,
.gb-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gb-application-item {
  padding: 28px 0;
  border-top: 2px solid var(--gb-gold);
}

.gb-application-item h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.gb-application-item p {
  color: var(--gb-muted);
}

.gb-product-card,
.gb-article-card,
.gb-project-card {
  min-width: 0;
  border: 1px solid var(--gb-line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--gb-white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.gb-product-card:hover,
.gb-article-card:hover,
.gb-project-card:hover {
  box-shadow: var(--gb-shadow);
  transform: translateY(-3px);
}

.gb-product-card__image,
.gb-article-card__image,
.gb-project-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gb-surface);
}

.gb-product-card__image img,
.gb-article-card__image img,
.gb-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.gb-product-card:hover img,
.gb-article-card:hover img,
.gb-project-card:hover img {
  transform: scale(1.025);
}

.gb-product-card__body,
.gb-article-card__body,
.gb-project-card__body {
  padding: 24px;
}

.gb-product-card__meta,
.gb-article-card__meta {
  display: block;
  margin-bottom: 8px;
  color: var(--gb-gold-deep);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.gb-product-card h2,
.gb-product-card h3,
.gb-article-card h2,
.gb-article-card h3,
.gb-project-card h2,
.gb-project-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.gb-product-card p,
.gb-article-card p,
.gb-project-card p {
  color: var(--gb-muted);
}

.gb-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.gb-category-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--gb-line);
  border-radius: 4px;
  color: var(--gb-forest-deep);
  background: var(--gb-white);
  font-size: 14px;
  font-weight: 750;
}

.gb-category-nav a:hover,
.gb-category-nav a.active {
  border-color: var(--gb-forest);
  color: var(--gb-white);
  background: var(--gb-forest);
}

.gb-intro-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 50px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--gb-line);
}

.gb-intro-panel h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.gb-intro-panel p {
  margin-bottom: 0;
  color: var(--gb-muted);
  font-size: 18px;
}

.gb-pagination {
  display: flex;
  justify-content: center;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.gb-pagination a,
.gb-pagination span {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  margin: 3px;
  border: 1px solid var(--gb-line);
  border-radius: 4px;
}

.gb-pagination .active,
.gb-pagination a:hover {
  border-color: var(--gb-forest);
  color: var(--gb-white);
  background: var(--gb-forest);
}

.gb-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  color: var(--gb-white);
  background: var(--gb-forest);
}

.gb-cta-band--spaced {
  margin-top: 48px;
}

.gb-cta-band h2 {
  margin-bottom: 8px;
  color: var(--gb-white);
  font-size: 34px;
}

.gb-cta-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: #dce9e1;
}

.gb-form-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.gb-contact-details {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.gb-contact-details li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gb-line);
}

.gb-contact-details i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gb-white);
  background: var(--gb-forest);
}

.gb-contact-details span,
.gb-contact-details strong,
.gb-contact-details a {
  display: block;
}

.gb-contact-details span {
  color: var(--gb-muted);
  font-size: 13px;
}

.gb-contact-details strong,
.gb-contact-details a {
  color: var(--gb-forest-deep);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.gb-form {
  padding: 36px;
  border: 1px solid var(--gb-line);
  background: var(--gb-white);
}

.gb-form h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.gb-form > p {
  margin-bottom: 26px;
  color: var(--gb-muted);
}

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

.gb-field {
  min-width: 0;
}

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

.gb-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--gb-forest-deep);
  font-size: 14px;
  font-weight: 800;
}

.gb-field input,
.gb-field textarea,
.gb-field select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #afb7b1;
  border-radius: 3px;
  color: var(--gb-ink);
  background: var(--gb-white);
}

.gb-field textarea {
  min-height: 145px;
  resize: vertical;
}

.gb-field input:focus,
.gb-field textarea:focus,
.gb-field select:focus {
  border-color: var(--gb-forest);
  outline: 3px solid rgba(15, 74, 55, 0.16);
}

.gb-verify {
  display: flex;
  gap: 12px;
  align-items: center;
}

.gb-verify img {
  height: 46px;
  cursor: pointer;
}

.gb-form-note {
  margin: 16px 0 20px;
  color: var(--gb-muted);
  font-size: 13px;
}

.gb-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 62px;
  align-items: start;
}

.gb-gallery-main {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gb-paper);
}

.gb-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gb-gallery-thumb {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--gb-paper);
  cursor: pointer;
}

.gb-gallery-thumb.is-active,
.gb-gallery-thumb:hover {
  border-color: var(--gb-forest);
}

.gb-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-product-summary h1 {
  margin-bottom: 18px;
  font-size: 46px;
}

.gb-product-summary__category {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gb-gold-deep);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.gb-product-summary__lead {
  color: var(--gb-muted);
  font-size: 18px;
}

.gb-product-facts {
  margin: 28px 0;
  border-top: 1px solid var(--gb-line);
}

.gb-product-facts__row {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--gb-line);
}

.gb-product-facts__row dt {
  color: var(--gb-muted);
  font-size: 14px;
  font-weight: 700;
}

.gb-product-facts__row dd {
  margin: 0;
  color: var(--gb-forest-deep);
  font-weight: 700;
}

.gb-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gb-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 70px;
  align-items: start;
}

.gb-prose {
  color: #3b413d;
  font-size: 17px;
  line-height: 1.78;
}

.gb-prose h2 {
  margin: 40px 0 16px;
  font-size: 34px;
}

.gb-prose h3 {
  margin: 32px 0 14px;
  font-size: 25px;
}

.gb-prose ul,
.gb-prose ol {
  padding-left: 24px;
}

.gb-prose img {
  height: auto;
  margin: 28px 0;
}

.gb-sidebar {
  position: sticky;
  top: 24px;
  padding: 26px;
  border-top: 4px solid var(--gb-gold);
  background: var(--gb-paper);
}

.gb-sidebar h2 {
  margin-bottom: 12px;
  font-size: 25px;
}

.gb-sidebar p {
  color: var(--gb-muted);
}

.gb-service-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.gb-service-list a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gb-line);
  color: var(--gb-forest-deep);
  font-size: 14px;
  font-weight: 750;
}

.gb-empty-state {
  padding: 56px;
  border: 1px solid var(--gb-line);
  text-align: center;
  background: var(--gb-paper);
}

.gb-empty-state i {
  margin-bottom: 16px;
  color: var(--gb-gold-deep);
  font-size: 34px;
}

.gb-empty-state h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.gb-empty-state p {
  max-width: 640px;
  margin: 0 auto 22px;
  color: var(--gb-muted);
}

.gb-site-footer {
  color: #dfe9e3;
  background: #082e23;
}

.gb-footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.9fr 1.15fr;
  gap: 52px;
  padding-top: 68px;
  padding-bottom: 56px;
}

.gb-footer-brand img {
  width: 250px;
  height: 99px;
  margin-bottom: 20px;
  object-fit: contain;
  background: var(--gb-paper);
}

.gb-footer-brand p {
  max-width: 390px;
  color: #bdcec4;
}

.gb-site-footer h2 {
  margin: 6px 0 18px;
  color: var(--gb-white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.gb-site-footer li a,
.gb-footer-contact a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: #bdcec4;
}

.gb-site-footer li a:hover,
.gb-footer-contact a:hover {
  color: #f3dfb9;
}

.gb-footer-contact address {
  margin-bottom: 12px;
  color: #bdcec4;
  font-style: normal;
}

.gb-footer-contact a {
  display: flex;
  gap: 8px;
  overflow-wrap: anywhere;
}

.gb-footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #9fb4a8;
  font-size: 13px;
}

.gb-footer-bottom p {
  margin: 0;
}

.gb-whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--gb-white);
  border-radius: 50%;
  color: var(--gb-white);
  background: #187a54;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-size: 25px;
}

.gb-whatsapp-float:hover {
  background: var(--gb-forest-deep);
}

@media (min-width: 1101px) {
  .gb-has-menu:hover > .gb-mega-menu,
  .gb-has-menu:hover > .gb-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1180px) {
  .gb-nav-cta {
    display: none;
  }

  .gb-primary-nav {
    gap: 8px;
  }

  .gb-brand {
    width: 205px;
  }

  .gb-nav-item > a,
  .gb-nav-label > a {
    padding: 0 6px;
    font-size: 13px;
  }
}

@media (max-width: 1100px) {
  .gb-contact-bar__inner {
    min-height: 40px;
  }

  .gb-contact-bar__inner > p {
    display: none;
  }

  .gb-contact-bar__links {
    width: 100%;
    justify-content: space-between;
  }

  .gb-mobile-toggle {
    display: inline-grid;
  }

  .gb-primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 128px);
    padding: 14px 20px 24px;
    overflow-y: auto;
    border-top: 1px solid var(--gb-line);
    background: var(--gb-white);
    box-shadow: var(--gb-shadow);
  }

  .gb-primary-nav.is-open {
    display: block;
  }

  .gb-nav-list {
    display: block;
  }

  .gb-nav-item,
  .gb-nav-label {
    display: block;
  }

  .gb-nav-label {
    position: relative;
  }

  .gb-nav-item > a,
  .gb-nav-label > a {
    display: flex;
    min-height: 48px;
    padding: 0 52px 0 8px;
    border-bottom: 1px solid var(--gb-line);
    font-size: 15px;
  }

  .gb-menu-toggle {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 44px;
  }

  .gb-mega-menu,
  .gb-dropdown,
  .gb-has-menu.is-open > .gb-mega-menu,
  .gb-has-menu.is-open > .gb-dropdown,
  .gb-has-menu:focus-within > .gb-mega-menu,
  .gb-has-menu:focus-within > .gb-dropdown {
    position: static;
    display: none;
    visibility: visible;
    width: 100%;
    opacity: 1;
    box-shadow: none;
    transform: none;
  }

  .gb-has-menu.is-open > .gb-mega-menu,
  .gb-has-menu.is-open > .gb-dropdown {
    display: block;
  }

  .gb-mega-menu__intro {
    padding: 22px;
  }

  .gb-mega-menu__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px;
  }

  .gb-mega-menu__groups section:last-child {
    grid-column: 1 / -1;
  }

  .gb-dropdown {
    padding: 8px 12px;
  }

  .gb-home-hero {
    min-height: 650px;
  }

  .gb-home-hero h1 {
    font-size: 56px;
  }

  .gb-hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .gb-category-card,
  .gb-category-card:nth-child(1),
  .gb-category-card:nth-child(2) {
    grid-column: span 6;
  }

  .gb-category-card:last-child {
    grid-column: 4 / span 6;
  }

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

  .gb-step:nth-child(2) {
    border-right: 0;
  }

  .gb-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .gb-footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr;
  }

  .gb-footer-contact {
    grid-column: 1 / -1;
  }
}

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

  .gb-section,
  .gb-section--compact {
    padding: 58px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .gb-lead {
    font-size: 17px;
  }

  .gb-section-heading {
    display: block;
  }

  .gb-section-heading .gb-text-link {
    margin-top: 18px;
  }

  .gb-home-hero {
    min-height: 610px;
  }

  .gb-home-hero__inner {
    padding-top: 78px;
    padding-bottom: 66px;
  }

  .gb-home-hero h1 {
    font-size: 46px;
  }

  .gb-home-hero__copy > p:not(.gb-eyebrow) {
    font-size: 17px;
  }

  .gb-page-hero {
    min-height: 340px;
  }

  .gb-category-grid,
  .gb-application-grid,
  .gb-product-grid,
  .gb-article-grid,
  .gb-project-grid,
  .gb-form-layout,
  .gb-product-detail,
  .gb-content-layout,
  .gb-intro-panel {
    grid-template-columns: 1fr;
  }

  .gb-category-card,
  .gb-category-card:nth-child(1),
  .gb-category-card:nth-child(2),
  .gb-category-card:last-child {
    min-height: 350px;
    grid-column: auto;
  }

  .gb-split {
    grid-template-columns: 1fr;
  }

  .gb-split__media {
    min-height: 390px;
  }

  .gb-split__body {
    padding: 42px 28px;
  }

  .gb-form-layout,
  .gb-product-detail,
  .gb-content-layout,
  .gb-intro-panel {
    gap: 34px;
  }

  .gb-sidebar {
    position: static;
  }

  .gb-cta-band {
    display: block;
    padding: 32px 24px;
  }

  .gb-cta-band .gb-button {
    margin-top: 22px;
  }

  .gb-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .gb-footer-brand,
  .gb-footer-contact {
    grid-column: 1 / -1;
  }

  .gb-footer-bottom {
    display: block;
    padding: 20px 0;
  }

  .gb-footer-bottom p + p {
    margin-top: 6px;
  }

  .gb-whatsapp-float {
    display: none;
  }
}

@media (max-width: 540px) {
  .gb-contact-bar__links a:first-child span {
    display: none;
  }

  .gb-contact-bar__links a:first-child {
    width: 44px;
    justify-content: center;
  }

  .gb-nav-shell__inner {
    min-height: 76px;
  }

  .gb-brand {
    width: 190px;
  }

  .gb-brand img {
    height: 58px;
  }

  .gb-mega-menu__groups {
    grid-template-columns: 1fr;
  }

  .gb-mega-menu__groups section:last-child {
    grid-column: auto;
  }

  .gb-home-hero h1 {
    font-size: 39px;
  }

  .gb-home-hero__image {
    object-position: 58% center;
  }

  .gb-page-hero h1,
  .gb-product-summary h1 {
    font-size: 38px;
  }

  .gb-hero-actions,
  .gb-product-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gb-button {
    width: 100%;
  }

  .gb-category-card__body {
    padding: 22px;
  }

  .gb-steps {
    grid-template-columns: 1fr;
  }

  .gb-step,
  .gb-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .gb-step:last-child {
    border-bottom: 0;
  }

  .gb-form,
  .gb-empty-state {
    padding: 26px 20px;
  }

  .gb-form-grid {
    grid-template-columns: 1fr;
  }

  .gb-field--full {
    grid-column: auto;
  }

  .gb-product-facts__row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .gb-footer-grid {
    grid-template-columns: 1fr;
  }

  .gb-footer-brand,
  .gb-footer-contact {
    grid-column: auto;
  }
}

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