/* Inner virtual page templates. */

.gb-blog-page {
  padding: 150px 0 76px;
  background: #fff;
}

.gb-blog-page h1 {
  margin: 0 0 42px;
  color: #111;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.gb-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 26px;
}

.gb-blog-card {
  background: #fff;
}

.gb-blog-image {
  display: block;
  overflow: hidden;
  margin-bottom: 18px;
  background: #eee;
}

.gb-blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gb-blog-card:hover .gb-blog-image img {
  transform: scale(1.04);
}

.gb-blog-card h3 {
  min-height: 74px;
  margin: 0 0 14px;
  color: #111;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.gb-blog-card h3 a:hover,
.gb-blog-more:hover {
  color: var(--gb-gold);
}

.gb-blog-more {
  display: inline-flex;
  color: #111;
  font-size: 14px;
  font-weight: 700;
}

.gb-blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 54px;
  color: #333;
  font-size: 14px;
}

.gb-blog-pagination a,
.gb-blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
}

.gb-blog-pagination .is-current {
  color: var(--gb-gold);
  font-weight: 800;
}

.gb-inner-main {
  background: #fff;
}

.gb-inner-hero {
  position: relative;
  min-height: 520px;
  padding: 180px 0 96px;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.42)), var(--bg) center/cover no-repeat;
}

.gb-inner-hero h1 {
  max-width: 960px;
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.gb-inner-hero p:not(.gb-inner-eyebrow) {
  max-width: 780px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

.gb-inner-eyebrow {
  margin: 0 0 14px;
  color: var(--gb-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gb-inner-section {
  padding: 76px 0;
  background: #fff;
}

.gb-inner-soft {
  background: #f6f6f6;
}

.gb-inner-head {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.gb-inner-head h2,
.gb-about-grid h2,
.gb-contact-grid h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.18;
}

.gb-inner-head p,
.gb-about-grid p,
.gb-contact-grid p,
.gb-contact-grid li {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.75;
}

.gb-inner-card-grid,
.gb-feature-row,
.gb-step-grid,
.gb-stat-grid {
  display: grid;
  gap: 24px;
}

.gb-grid-3,
.gb-feature-row,
.gb-step-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gb-inner-card,
.gb-feature-row article,
.gb-step-grid article,
.gb-stat-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
}

.gb-inner-card img,
.gb-feature-row img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.gb-inner-card div,
.gb-feature-row article,
.gb-step-grid article {
  padding: 26px 24px;
}

.gb-feature-row article {
  padding: 0 0 26px;
}

.gb-feature-row article h3,
.gb-feature-row article p {
  padding-right: 24px;
  padding-left: 24px;
}

.gb-inner-card h3,
.gb-feature-row h3,
.gb-step-grid h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.gb-inner-card p,
.gb-feature-row p,
.gb-step-grid p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

.gb-step-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gb-gold);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.gb-inner-video-grid {
  grid-template-columns: repeat(5, 1fr);
}

.gb-about-grid,
.gb-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.gb-about-grid img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.gb-about-grid p+p {
  margin-top: 18px;
}

.gb-stat-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gb-stat-grid article {
  padding: 34px 20px;
  text-align: center;
}

.gb-stat-grid strong {
  display: block;
  color: #111;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.gb-stat-grid span {
  display: block;
  margin-top: 12px;
  color: #444;
  font-size: 15px;
}

.gb-contact-grid ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.gb-contact-form {
  display: grid;
  gap: 14px;
  padding: 32px;
  background: #f6f6f6;
  border: 1px solid #e8e8e8;
}

.gb-contact-form label {
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.gb-contact-form input,
.gb-contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #ddd;
  padding: 12px 13px;
  background: #fff;
  color: #111;
  font: inherit;
}

.gb-contact-form button {
  min-height: 44px;
  border: 0;
  background: var(--gb-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.gb-section-kicker {
  margin: 0 0 12px;
  color: var(--gb-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gb-split-showcase,
.gb-project-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.gb-split-showcase>img,
.gb-project-intro>img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.gb-split-showcase h2 {
  margin: 0 0 18px;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.18;
}

.gb-split-showcase p:not(.gb-section-kicker) {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.78;
}

.gb-split-showcase p+p {
  margin-top: 18px;
}

.gb-service-point-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gb-service-point-grid article {
  min-height: 210px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.gb-inner-soft .gb-service-point-grid article {
  border-color: #ededed;
}

.gb-service-point-grid h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.28;
}

.gb-service-point-grid p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.72;
}

.gb-stat-grid-compact {
  grid-template-columns: 1fr;
  gap: 16px;
}

.gb-stat-grid-compact article {
  padding: 28px 24px;
  text-align: left;
}

.gb-products-display-section {
  padding-top: 72px;
  background: linear-gradient(180deg, #fff 0%, #f8f6f0 100%);
}

.gb-products-display-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 16px 48px;
  align-items: end;
  margin-bottom: 34px;
}

.gb-products-display-head .gb-section-kicker {
  grid-column: 1 / -1;
  margin: 0;
}

.gb-products-display-head h2 {
  margin: 0;
  color: #111;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.gb-products-display-head p {
  margin: 0;
  color: #444;
  font-size: 16px;
  line-height: 1.75;
}

.gb-products-display-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.gb-products-feature-card,
.gb-products-display-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: inherit;
  border: 1px solid #ebe4d4;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gb-products-feature-card:hover,
.gb-products-display-card:hover {
  border-color: var(--gb-gold);
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.14);
}

.gb-products-feature-card {
  display: grid;
  min-height: 610px;
}

.gb-products-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gb-products-feature-card:hover img,
.gb-products-display-card:hover img {
  transform: scale(1.06);
}

.gb-products-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.76) 100%);
}

.gb-products-feature-card>span {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}

.gb-products-feature-card em,
.gb-products-display-copy em {
  display: block;
  margin-bottom: 8px;
  color: var(--gb-gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-products-feature-card strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.gb-products-feature-card b {
  display: block;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

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

.gb-products-display-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 138px;
}

.gb-products-display-image {
  display: block;
  overflow: hidden;
  background: #111;
}

.gb-products-display-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gb-products-display-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.gb-products-display-copy strong {
  color: #111;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.18;
}

.gb-products-display-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.gb-products-display-tags b {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: #f7f1e1;
  color: #222;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.gb-product-group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.gb-product-group-card {
  padding: 30px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.05);
}

.gb-product-group-card h3 {
  margin: 0 0 22px;
  color: #111;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

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

.gb-product-link-grid a {
  overflow: hidden;
  background: #f7f7f7;
  border: 1px solid #ededed;
  color: #111;
  font-weight: 800;
}

.gb-product-link-grid img {
  display: block;
  width: 100%;
  height: 138px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gb-product-link-grid span {
  display: block;
  padding: 14px 16px;
}

.gb-product-link-grid a:hover {
  color: var(--gb-gold);
}

.gb-product-link-grid a:hover img {
  transform: scale(1.04);
}

.gb-product-detail-intro .gb-hero-btn {
  margin-top: 24px;
}

.gb-product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gb-product-gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.gb-product-display-section {
  padding-top: 42px;
}

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

.gb-product-display-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gb-product-display-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.13);
}

.gb-product-display-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.gb-product-display-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.gb-product-display-card img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gb-product-display-card:hover img {
  transform: scale(1.045);
}

.gb-product-display-card div {
  padding: 24px 24px 28px;
}

.gb-product-display-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gb-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.gb-product-display-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.15;
}

.gb-product-display-card p {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.72;
}

.gb-product-display-card strong {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--gb-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-product-display-card strong::after {
  content: "→";
  margin-left: 8px;
  color: #111;
}

.gb-product-display-stone .gb-product-display-card:first-child,
.gb-product-display-cabinet .gb-product-display-card:first-child,
.gb-product-display-interior .gb-product-display-card:first-child {
  grid-column: span 2;
}

.gb-product-display-stone .gb-product-display-card:first-child img,
.gb-product-display-cabinet .gb-product-display-card:first-child img,
.gb-product-display-interior .gb-product-display-card:first-child img {
  height: 340px;
}

.gb-product-item-main {
  background: #fff;
}

.gb-product-item-hero {
  padding: 92px 0 76px;
  background: linear-gradient(135deg, #101010 0%, #1a1a1a 58%, #2d2413 100%);
  color: #fff;
}

.gb-product-item-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 58px;
  align-items: center;
}

.gb-product-item-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-product-item-breadcrumb a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.gb-product-item-breadcrumb a:hover {
  color: var(--gb-gold);
}

.gb-product-item-copy h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 60px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.gb-product-item-copy p:not(.gb-section-kicker) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.8;
}

.gb-product-item-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.gb-product-item-back {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.gb-product-item-back:hover {
  color: var(--gb-gold);
}

.gb-product-item-cover {
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.gb-product-item-cover img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.gb-product-item-section {
  padding: 76px 0;
}

.gb-product-item-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: start;
}

.gb-product-item-content {
  max-width: 920px;
}

.gb-product-item-content h2 {
  margin: 0 0 22px;
  color: #111;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.gb-product-item-content > p {
  margin: 0 0 20px;
  color: #333;
  font-size: 17px;
  line-height: 1.86;
}

.gb-product-item-accessory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 38px 0 56px;
}

.gb-product-item-accessory-grid section,
.gb-product-item-process section,
.gb-product-item-faq section {
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.gb-product-item-accessory-grid section {
  min-height: 188px;
  padding: 28px;
}

.gb-product-item-accessory-grid h3,
.gb-product-item-process h3,
.gb-product-item-faq h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
}

.gb-product-item-accessory-grid p,
.gb-product-item-process p,
.gb-product-item-faq p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.72;
}

.gb-product-item-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 56px;
}

.gb-product-item-process section {
  min-height: 250px;
  padding: 24px;
  border-top: 4px solid var(--gb-gold);
}

.gb-product-item-process span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gb-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.gb-product-item-faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gb-product-item-faq section {
  padding: 28px;
}

.gb-product-item-sidebar {
  position: sticky;
  top: 104px;
  padding: 32px;
  background: #111;
  color: #fff;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
}

.gb-product-item-sidebar h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.12;
}

.gb-product-item-sidebar dl {
  margin: 0 0 30px;
}

.gb-product-item-sidebar dl div {
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.gb-product-item-sidebar dt {
  color: var(--gb-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gb-product-item-sidebar dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
}

.gb-product-item-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gb-product-item-gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
}

.gb-product-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: start;
}

.gb-align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.gb-product-spec-card,
.gb-product-quote-card {
  background: #111;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.gb-product-spec-card {
  padding: 32px;
}

.gb-product-spec-card h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.gb-product-spec-card dl {
  margin: 0;
}

.gb-product-spec-card div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.gb-product-spec-card dt {
  color: var(--gb-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gb-product-spec-card dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.6;
}

.gb-product-quote-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 42px;
}

.gb-product-quote-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
}

.gb-product-quote-card p:not(.gb-section-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
}

.gb-product-detail-page {
  padding-top: 76px;
}

.gb-product-variant-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.gb-product-variant-copy {
  position: relative;
  z-index: 1;
}

.gb-product-variant-copy h2 {
  margin: 0 0 20px;
  color: #111;
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.gb-product-variant-copy p:not(.gb-section-kicker) {
  max-width: 620px;
  margin: 0 0 16px;
  color: #333;
  font-size: 17px;
  line-height: 1.78;
}

.gb-product-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.gb-product-quick-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(216, 170, 62, 0.42);
  background: #fff8e6;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-product-stone-board,
.gb-product-room-board,
.gb-product-system-panel,
.gb-product-standard-media {
  position: relative;
  min-height: 540px;
}

.gb-product-stone-board {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  padding: 18px;
  background: #111;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.gb-product-stone-board img,
.gb-product-standard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-product-stone-board dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 18px 0 0;
  background: rgba(255, 255, 255, 0.14);
}

.gb-product-stone-board dl div {
  padding: 18px;
  background: #1a1a1a;
}

.gb-product-stone-board dt,
.gb-product-room-board strong,
.gb-product-system-stats strong {
  display: block;
  color: var(--gb-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-product-stone-board dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.gb-product-room-board {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  grid-template-rows: 1fr 150px;
  gap: 18px;
}

.gb-product-room-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.gb-product-room-board .is-main {
  grid-row: span 2;
}

.gb-product-room-board div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: #111;
  color: #fff;
}

.gb-product-room-board span,
.gb-product-system-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

.gb-product-system-panel {
  display: grid;
  grid-template-rows: minmax(340px, 1fr) auto;
  border: 1px solid #e8e8e8;
  background: #fff;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.12);
}

.gb-product-system-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-product-system-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e8e8e8;
}

.gb-product-system-stats article {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid #e8e8e8;
  background: #111;
}

.gb-product-system-stats article:last-child {
  border-right: 0;
}

.gb-product-standard-media {
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.14);
}

.gb-product-detail-stone .gb-product-variant-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
}

.gb-product-detail-cabinet .gb-product-variant-hero,
.gb-product-detail-interior .gb-product-variant-hero {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
}

.gb-product-detail-lighting .gb-product-variant-hero,
.gb-product-detail-bathroom .gb-product-variant-hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
}

.gb-product-stone-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.gb-product-masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.gb-product-masonry-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.gb-product-masonry-gallery .is-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gb-product-room-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  align-items: start;
}

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

.gb-product-room-grid article {
  min-height: 230px;
  padding: 26px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.gb-product-room-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gb-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gb-product-room-grid h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.16;
}

.gb-product-room-grid p {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.68;
}

.gb-product-system-layout {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 38px;
  align-items: start;
}

.gb-product-component-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gb-product-component-grid article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.gb-product-component-grid span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 8px solid #111;
  border-radius: 50%;
  outline: 2px solid var(--gb-gold);
}

.gb-product-component-grid strong {
  color: #111;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.gb-product-spec-layout-stone .gb-product-spec-card {
  position: sticky;
  top: 104px;
}

.gb-product-quote-stone {
  background: linear-gradient(135deg, #111 0%, #2d2413 100%);
}

.gb-product-quote-cabinet,
.gb-product-quote-interior {
  background: linear-gradient(135deg, #111 0%, #1f1f1f 62%, #3a2b0f 100%);
}

.gb-product-quote-system,
.gb-product-quote-lighting,
.gb-product-quote-bathroom {
  background: linear-gradient(135deg, #090909 0%, #191919 100%);
}

.gb-product-process-grid article {
  border-top: 4px solid var(--gb-gold);
}

@media (max-width: 1180px) {

  .gb-product-variant-hero,
  .gb-product-detail-stone .gb-product-variant-hero,
  .gb-product-detail-cabinet .gb-product-variant-hero,
  .gb-product-detail-interior .gb-product-variant-hero,
  .gb-product-detail-lighting .gb-product-variant-hero,
  .gb-product-detail-bathroom .gb-product-variant-hero,
  .gb-product-stone-layout,
  .gb-product-room-layout,
  .gb-product-system-layout {
    grid-template-columns: 1fr;
  }

  .gb-product-variant-copy p:not(.gb-section-kicker) {
    max-width: none;
  }

  .gb-product-stone-layout .gb-product-spec-card,
  .gb-product-spec-layout-stone .gb-product-spec-card {
    position: static;
  }

  .gb-product-room-grid,
  .gb-product-display-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gb-product-display-stone .gb-product-display-card:first-child,
  .gb-product-display-cabinet .gb-product-display-card:first-child,
  .gb-product-display-interior .gb-product-display-card:first-child {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .gb-product-detail-page {
    padding-top: 54px;
  }

  .gb-product-variant-copy h2 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .gb-product-stone-board,
  .gb-product-room-board,
  .gb-product-system-panel,
  .gb-product-standard-media {
    min-height: 0;
  }

  .gb-product-stone-board {
    grid-template-rows: auto auto;
  }

  .gb-product-stone-board img,
  .gb-product-system-panel img,
  .gb-product-standard-media img {
    height: 340px;
  }

  .gb-product-stone-board dl,
  .gb-product-system-stats,
  .gb-product-component-grid {
    grid-template-columns: 1fr;
  }

  .gb-product-system-stats article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .gb-product-system-stats article:last-child {
    border-bottom: 0;
  }

  .gb-product-masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gb-product-room-board {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 130px;
  }

  .gb-product-quote-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .gb-product-quick-tags span {
    width: 100%;
    justify-content: center;
  }

  .gb-product-stone-board,
  .gb-product-spec-card,
  .gb-product-quote-card,
  .gb-product-room-grid article {
    padding: 22px;
  }

  .gb-product-stone-board img,
  .gb-product-system-panel img,
  .gb-product-standard-media img {
    height: 240px;
  }

  .gb-product-room-board {
    display: block;
  }

  .gb-product-room-board img,
  .gb-product-room-board .is-main {
    height: 240px;
    margin-bottom: 14px;
  }

  .gb-product-room-board div {
    min-height: 120px;
  }

  .gb-product-room-grid,
  .gb-product-masonry-gallery,
  .gb-product-display-grid {
    grid-template-columns: 1fr;
  }

  .gb-product-display-card img,
  .gb-product-display-stone .gb-product-display-card:first-child img,
  .gb-product-display-cabinet .gb-product-display-card:first-child img,
  .gb-product-display-interior .gb-product-display-card:first-child img {
    height: 240px;
  }

  .gb-product-masonry-gallery .is-large {
    grid-column: auto;
    grid-row: auto;
  }

  .gb-product-component-grid article {
    min-height: 84px;
  }
}

.gb-project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gb-project-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.gb-project-gallery img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gb-project-gallery figure:hover img {
  transform: scale(1.04);
}

.gb-project-case-page {
  padding-top: 58px;
  padding-bottom: 34px;
  background: #fff;
}

.gb-project-case-cover {
  margin: 0 0 34px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.gb-project-case-cover img {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 620px);
  object-fit: cover;
}

.gb-project-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.gb-project-stat-row article {
  min-height: 150px;
  padding: 30px 28px;
  border-right: 1px solid #ececec;
  text-align: center;
}

.gb-project-stat-row article:last-child {
  border-right: 0;
}

.gb-project-stat-row strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gb-gold);
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.gb-project-stat-row span {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.gb-project-gallery-section {
  padding-top: 70px;
}

.gb-project-case-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gb-project-case-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #e8e8e8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.gb-project-case-gallery img {
  display: block;
  width: 100%;
  height: 268px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gb-project-case-gallery figure:hover img {
  transform: scale(1.045);
}

.gb-project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gb-project-card-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.gb-project-card-grid img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gb-project-card-grid h3 {
  margin: 0;
  min-height: 76px;
  padding: 18px 18px 20px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.gb-case-landing {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}

.gb-case-landing .gb-project-case-cover {
  margin: 0;
}

.gb-case-landing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background: #111;
  color: #fff;
}

.gb-case-landing-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.14;
}

.gb-case-landing-copy p:not(.gb-section-kicker) {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.76;
}

.gb-case-summary-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gb-case-summary-list span,
.gb-case-filter-panel span,
.gb-case-materials span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gb-case-summary-list span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.gb-case-filter-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gb-case-filter-panel article {
  padding: 28px;
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.gb-case-filter-panel h3 {
  margin: 0 0 18px;
  color: #111;
  font-size: 21px;
  font-weight: 800;
}

.gb-case-filter-panel article div,
.gb-case-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.gb-case-filter-panel span {
  background: #f4f4f4;
  color: #222;
}

.gb-case-category-grid,
.gb-case-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gb-case-category-grid article,
.gb-case-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.07);
}

.gb-case-category-grid img,
.gb-case-card>img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gb-case-category-grid article div,
.gb-case-card-body {
  padding: 26px 24px;
}

.gb-case-category-grid span,
.gb-case-type {
  display: block;
  margin: 0 0 12px;
  color: var(--gb-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-case-category-grid h3,
.gb-case-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.26;
}

.gb-case-category-grid p,
.gb-case-card-body>p:not(.gb-case-type) {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.68;
}

.gb-case-card-grid {
  grid-template-columns: repeat(2, 1fr);
}

.gb-case-card-body dl {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 18px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.gb-case-card-body dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
}

.gb-case-card-body dt,
.gb-case-card-body dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.gb-case-card-body dt {
  color: #111;
  font-weight: 900;
}

.gb-case-card-body dd {
  color: #555;
}

.gb-case-materials span {
  background: rgba(216, 170, 62, 0.14);
  color: var(--gb-gold);
}

.gb-project-loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gb-project-loop-grid article {
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.gb-project-loop-grid img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gb-project-loop-grid h3 {
  margin: 0;
  padding: 20px 20px 8px;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.32;
}

.gb-project-loop-grid p {
  margin: 0;
  padding: 0 20px 22px;
  color: #444;
  font-size: 15px;
  line-height: 1.68;
}

.gb-case-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gb-case-list-grid article {
  padding: 18px 16px;
  background: #fff;
  border-left: 3px solid var(--gb-gold);
  color: #222;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.gb-article-page {
  padding: 80px 0 72px;
  background: #fff;
}

.gb-article-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.gb-article-header {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.gb-article-category {
  margin: 0 0 18px;
  color: #777;
  font-size: 16px;
  line-height: 1.6;
}

.gb-article-header h1 {
  margin: 0 0 26px;
  color: #111;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.gb-article-lead {
  max-width: 880px;
  margin: 0 auto 18px;
  color: #333;
  font-size: 17px;
  line-height: 1.82;
  text-align: left;
}

.gb-article-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 31vw, 430px);
  margin: 0 0 42px;
  overflow: hidden;
  background: #171717;
}

.gb-article-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.46);
}

.gb-article-hero-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-article-hero-title {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
}

.gb-article-hero-title h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.05vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.gb-article-guide {
  display: inline-flex;
  margin-top: 10px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}

.gb-article-guide:hover,
.gb-article-related a:hover,
.gb-article-sidebar a:hover {
  color: var(--gb-gold);
}

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

.gb-article-content.gb-article-main {
  max-width: none;
  margin: 0;
  min-width: 0;
}

.gb-article-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 22px;
}

.gb-sidebar-card {
  border: 1px solid #e5e5e5;
  padding: 24px;
  background: #fff;
}

.gb-sidebar-card h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.gb-sidebar-card p {
  margin: 0 0 18px;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.gb-sidebar-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gb-sidebar-card li {
  margin: 0;
  padding-bottom: 13px;
  border-bottom: 1px solid #eee;
}

.gb-sidebar-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.gb-sidebar-card a {
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}

.gb-sidebar-eyebrow {
  margin-bottom: 8px !important;
  color: var(--gb-gold) !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-sidebar-cta,
.gb-sidebar-contact {
  background: #f8f8f8;
}

.gb-sidebar-cta a,
.gb-sidebar-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--gb-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-sidebar-cta a:hover,
.gb-sidebar-contact a:hover {
  color: #fff;
  background: #111;
}

.gb-article-content {
  max-width: 900px;
  margin: 0 auto;
  color: #222;
  font-size: 16px;
  line-height: 1.82;
}

.gb-article-content p {
  margin: 0 0 20px;
}

.gb-article-content strong {
  color: #111;
  font-weight: 800;
}

.gb-article-content h2 {
  margin: 44px 0 22px;
  color: #111;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.24;
}

.gb-article-content h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.gb-article-content figure {
  margin: 30px 0;
}

.gb-article-content figure img {
  width: 100%;
  height: auto;
}

.gb-article-table-wrap {
  overflow-x: auto;
  margin: 28px 0 46px;
  border: 1px solid #ddd;
}

.gb-article-content table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.gb-article-content table th,
.gb-article-content table td {
  border: 1px solid #ddd;
  padding: 14px 16px;
  color: #222;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.gb-article-content table th {
  background: #f7f7f7;
  color: #111;
  font-weight: 800;
}

.gb-article-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.gb-article-table th,
.gb-article-table td {
  border: 1px solid #ddd;
  padding: 14px 16px;
  color: #222;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.gb-article-table th {
  background: #f7f7f7;
  color: #111;
  font-weight: 800;
}

.gb-article-material {
  padding-top: 8px;
}

.gb-article-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 26px 0;
}

.gb-article-two-col>div {
  padding: 24px;
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
}

.gb-article-content ul {
  margin: 0;
  padding-left: 20px;
}

.gb-article-content li+li {
  margin-top: 8px;
}

.gb-article-note {
  padding: 18px 20px;
  border-left: 4px solid var(--gb-gold);
  background: #fff8e6;
  color: #111;
  font-weight: 700;
}

.gb-article-faq {
  margin-top: 52px;
  padding-top: 10px;
}

.gb-article-faq div {
  padding: 22px 0;
  border-bottom: 1px solid #e6e6e6;
}

.gb-article-faq div:first-of-type {
  border-top: 1px solid #e6e6e6;
}

.gb-article-faq p,
.gb-article-bonus p {
  margin-bottom: 0;
}

.gb-article-bonus {
  margin-top: 46px;
  padding: 32px;
  background: #f7f7f7;
}

.gb-article-bonus p+p {
  margin-top: 18px;
}

.gb-article-related {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid #e6e6e6;
}

.gb-article-related h2 {
  margin-top: 0;
}

.gb-article-related a {
  color: #111;
  font-size: 17px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .gb-article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .gb-article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .gb-article-page {
    padding-top: 80px;
  }

  .gb-article-hero-image {
    min-height: 300px;
  }

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

  .gb-article-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .gb-article-shell {
    width: calc(100% - 28px);
  }

  .gb-article-page {
    padding: 80px 0 54px;
  }

  .gb-article-hero-image {
    min-height: 250px;
    margin-bottom: 30px;
  }

  .gb-article-hero-title {
    width: calc(100% - 28px);
  }

  .gb-article-hero-title h1 {
    font-size: 24px;
  }

  .gb-article-header {
    text-align: left;
  }

  .gb-article-header h1 {
    font-size: 32px;
  }

  .gb-article-lead,
  .gb-article-content {
    font-size: 15px;
  }

  .gb-article-content h2 {
    font-size: 26px;
  }

  .gb-article-two-col>div,
  .gb-article-bonus {
    padding: 20px;
  }
}

@media (max-width: 860px) {

  .gb-about-grid,
  .gb-contact-grid,
  .gb-split-showcase,
  .gb-project-intro,
  .gb-case-landing {
    grid-template-columns: 1fr;
  }

  .gb-service-point-grid,
  .gb-project-gallery,
  .gb-project-case-gallery,
  .gb-project-card-grid,
  .gb-project-loop-grid,
  .gb-case-list-grid,
  .gb-case-filter-panel,
  .gb-case-category-grid,
  .gb-case-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gb-project-stat-row {
    grid-template-columns: 1fr;
  }

  .gb-project-stat-row article {
    border-right: 0;
    border-bottom: 1px solid #ececec;
  }

  .gb-project-stat-row article:last-child {
    border-bottom: 0;
  }

  .gb-inner-card-grid,
  .gb-feature-row,
  .gb-step-grid,
  .gb-stat-grid,
  .gb-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gb-inner-head h2,
  .gb-about-grid h2,
  .gb-contact-grid h2 {
    font-size: 34px;
  }

  .gb-inner-hero {
    min-height: 460px;
    padding: 150px 0 76px;
  }

  .gb-product-link-grid,
  .gb-product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gb-product-spec-layout,
  .gb-product-quote-card {
    grid-template-columns: 1fr;
  }

  .gb-product-spec-layout {
    display: grid;
  }

  .gb-product-quote-card {
    display: grid;
    align-items: start;
  }

  .gb-about-grid img {
    min-height: 320px;
  }
}

@media (max-width: 560px) {

  .gb-about-grid,
  .gb-contact-grid,
  .gb-split-showcase,
  .gb-project-intro,
  .gb-service-point-grid,
  .gb-project-gallery,
  .gb-project-case-gallery,
  .gb-project-card-grid,
  .gb-project-loop-grid,
  .gb-case-list-grid,
  .gb-case-filter-panel,
  .gb-case-category-grid,
  .gb-case-card-grid,
  .gb-inner-card-grid,
  .gb-feature-row,
  .gb-step-grid,
  .gb-stat-grid,
  .gb-blog-grid {
    grid-template-columns: 1fr;
  }

  .gb-split-showcase>img,
  .gb-project-intro>img,
  .gb-project-gallery img,
  .gb-project-case-gallery img,
  .gb-case-category-grid img,
  .gb-case-card>img,
  .gb-product-gallery img {
    min-height: 0;
    height: 240px;
  }

  .gb-case-landing-copy,
  .gb-case-filter-panel article,
  .gb-case-category-grid article div,
  .gb-case-card-body {
    padding: 22px;
  }

  .gb-product-link-grid,
  .gb-product-gallery,
  .gb-product-spec-layout {
    grid-template-columns: 1fr;
  }

  .gb-product-group-card,
  .gb-product-spec-card,
  .gb-product-quote-card {
    padding: 22px;
  }

  .gb-product-link-grid img {
    height: 180px;
  }

  .gb-service-point-grid article {
    min-height: 0;
  }

  .gb-inner-head h2,
  .gb-about-grid h2,
  .gb-contact-grid h2 {
    font-size: 30px;
  }

  .gb-inner-hero {
    min-height: auto;
    padding: 128px 0 68px;
  }

  .gb-inner-hero h1 {
    font-size: 36px;
  }

  .gb-inner-section {
    padding: 54px 0;
  }

  .gb-contact-form {
    padding: 22px;
  }
}

.gb-process-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: stretch;
}

.gb-process-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.gb-process-visual-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background: #111;
  color: #fff;
}

.gb-process-visual-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.16;
}

.gb-process-visual-card p:not(.gb-section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.76;
}

.gb-service-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: service-step;
}

.gb-service-flow-grid article {
  position: relative;
  min-height: 250px;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.gb-service-flow-grid article::after {
  content: '';
  position: absolute;
  top: 48px;
  right: -22px;
  width: 22px;
  height: 2px;
  background: var(--gb-gold);
}

.gb-service-flow-grid article:nth-child(3n)::after,
.gb-service-flow-grid article:last-child::after {
  display: none;
}

.gb-service-flow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gb-gold);
  color: #fff;
  font-weight: 900;
}

.gb-service-flow-grid h3,
.gb-download-card h3,
.gb-contact-info-list strong {
  margin: 0 0 12px;
  color: #111;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.28;
}

.gb-service-flow-grid p,
.gb-download-card p,
.gb-contact-info-list span {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.72;
}

.gb-workshop-gallery,
.gb-material-library-grid,
.gb-download-card-grid {
  display: grid;
  gap: 24px;
}

.gb-workshop-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.gb-material-library-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gb-download-card-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.gb-workshop-gallery figure,
.gb-material-library-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.gb-workshop-gallery img,
.gb-material-library-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.gb-material-library-grid img {
  height: 230px;
}

.gb-workshop-gallery figure:hover img,
.gb-material-library-grid figure:hover img {
  transform: scale(1.04);
}

.gb-workshop-gallery figcaption,
.gb-material-library-grid figcaption {
  padding: 16px 18px;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.gb-library-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.gb-library-toolbar label span {
  display: block;
  margin-bottom: 8px;
  color: var(--gb-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-library-toolbar input,
.gb-search-page-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #ddd;
  padding: 0 16px;
  background: #fff;
  color: #111;
  font: inherit;
}

.gb-library-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gb-library-category-list button {
  min-height: 38px;
  border: 1px solid #dedede;
  padding: 0 16px;
  background: #f7f7f7;
  color: #222;
  cursor: pointer;
  font-weight: 800;
}

.gb-library-category-list button.is-active,
.gb-library-category-list button:hover {
  border-color: var(--gb-gold);
  background: var(--gb-gold);
  color: #fff;
}

.gb-library-grid figcaption span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--gb-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-library-grid figcaption strong,
.gb-library-grid figcaption small {
  display: block;
}

.gb-library-grid figcaption small {
  margin-top: 8px;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.gb-library-empty,
.gb-search-empty-state {
  padding: 32px;
  border: 1px solid #e7e7e7;
  background: #f8f8f8;
  color: #333;
  text-align: center;
}

.gb-library-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  background: #111;
  color: #fff;
}

.gb-library-cta-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 34px;
  line-height: 1.16;
}

.gb-library-cta-card p:not(.gb-section-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.gb-search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 42px;
}

.gb-search-page-form button {
  min-height: 52px;
  border: 0;
  padding: 0 28px;
  background: var(--gb-gold);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.gb-search-head {
  margin-top: 18px;
}

.gb-search-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gb-search-result-card {
  padding: 28px;
  border: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.gb-search-result-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gb-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-search-result-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 22px;
  line-height: 1.25;
}

.gb-search-result-card p {
  margin: 0 0 18px;
  color: #444;
  line-height: 1.68;
}

.gb-search-result-more {
  color: #111;
  font-weight: 900;
}

.gb-search-result-more:hover {
  color: var(--gb-gold);
}

.gb-download-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.gb-download-card.is-featured {
  background: #111;
  color: #fff;
}

.gb-download-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gb-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-download-card.is-featured h3 {
  color: #fff;
  font-size: 30px;
}

.gb-download-card.is-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.gb-download-card .gb-hero-btn {
  margin-top: 22px;
}

.gb-contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.gb-contact-info-list article {
  padding: 18px 20px;
  background: #f7f7f7;
  border-left: 3px solid var(--gb-gold);
}

.gb-contact-info-list span {
  display: block;
  color: var(--gb-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-contact-info-list strong {
  display: block;
  margin: 5px 0 0;
  font-size: 16px;
}

.gb-contact-form select {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #ddd;
  padding: 12px 13px;
  background: #fff;
  color: #111;
  font: inherit;
}

@media (max-width: 860px) {

  .gb-process-visual,
  .gb-service-flow-grid,
  .gb-workshop-gallery,
  .gb-material-library-grid,
  .gb-download-card-grid,
  .gb-search-result-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gb-process-visual-card {
    padding: 30px;
  }

  .gb-service-flow-grid article::after {
    display: none;
  }
}

@media (max-width: 560px) {

  .gb-process-visual,
  .gb-service-flow-grid,
  .gb-workshop-gallery,
  .gb-material-library-grid,
  .gb-download-card-grid,
  .gb-search-result-grid,
  .gb-search-page-form {
    grid-template-columns: 1fr;
  }

  .gb-process-visual img,
  .gb-workshop-gallery img,
  .gb-material-library-grid img {
    min-height: 0;
    height: 240px;
  }

  .gb-process-visual-card,
  .gb-download-card,
  .gb-library-toolbar,
  .gb-library-cta-card,
  .gb-search-result-card,
  .gb-search-empty-state {
    padding: 22px;
  }
}

@media (max-width: 980px) {
  .gb-products-display-head,
  .gb-products-display-layout {
    grid-template-columns: 1fr;
  }

  .gb-products-feature-card,
  .gb-products-feature-card img {
    min-height: 440px;
  }
}

@media (max-width: 680px) {
  .gb-products-display-head,
  .gb-products-display-grid,
  .gb-products-display-card {
    grid-template-columns: 1fr;
  }

  .gb-products-display-card {
    min-height: 0;
  }

  .gb-products-display-image img {
    height: 220px;
  }

  .gb-products-feature-card,
  .gb-products-feature-card img {
    min-height: 360px;
  }
}

.gb-legal-content {
  max-width: 920px;
}

.gb-legal-updated {
  margin: 0 0 28px;
  color: var(--gb-gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-legal-content h2 {
  margin: 34px 0 12px;
  color: #111;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.gb-legal-content p {
  margin: 0 0 16px;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

.gb-legal-content a {
  color: var(--gb-gold);
  font-weight: 800;
}

.gb-blog-system-page .gb-inner-head {
  margin-bottom: 26px;
}

.gb-blog-system-page .gb-inner-head h1 {
  margin-bottom: 16px;
}

.gb-blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 52px;
}

.gb-blog-category-nav a {
  padding: 12px 18px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 900;
}

.gb-blog-category-nav a:hover {
  border-color: var(--gb-gold);
  color: var(--gb-gold);
}

.gb-blog-category-section {
  scroll-margin-top: 120px;
  margin-top: 62px;
}

.gb-blog-category-head {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eee;
}

.gb-blog-category-head h2 {
  margin: 0;
  color: #111;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.16;
}

.gb-blog-category-head p:not(.gb-section-kicker),
.gb-blog-card-detailed p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.72;
}

.gb-blog-card-detailed span {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--gb-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-blog-card-detailed h3 {
  min-height: auto;
}

.gb-blog-card-detailed .gb-blog-more {
  margin-top: 18px;
}

.gb-service-diagram-section {
  background: linear-gradient(135deg, #111 0%, #272727 100%);
}

.gb-service-diagram-section .gb-inner-head h2 {
  color: #fff;
}

.gb-service-diagram-section .gb-inner-head p:not(.gb-section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.gb-process-diagram {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.gb-process-diagram article {
  position: relative;
  min-height: 260px;
  padding: 24px 18px;
  background: #fff;
  border-top: 4px solid var(--gb-gold);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.gb-process-diagram span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gb-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.gb-process-diagram h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.gb-process-diagram p {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.62;
}

.gb-process-diagram i {
  display: none;
}

@media (max-width: 1180px) {
  .gb-process-diagram {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .gb-blog-category-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gb-process-diagram {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gb-blog-category-head h2 {
    font-size: 30px;
  }

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

  .gb-process-diagram article {
    min-height: 0;
  }
}