/*
Theme Name: Luxstruct
Theme URI: https://example.test/georgebuildings
Author: Luxstruct
Description: A custom one-page architecture and building company landing page.
Version: 1.0.3
Text Domain: georgebuildings
*/

:root {
  --gb-gold: #d8aa3e;
  --gb-gold-dark: #8e5d16;
  --gb-black: #070707;
  --gb-ink: #1f2428;
  --gb-muted: #777d84;
  --gb-soft: #f5f5f3;
  --gb-line: #e8e5df;
  --gb-white: #ffffff;
  --gb-max: 970px;
  --gb-radius: 4px;
  --gb-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gb-white);
  color: var(--gb-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

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

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gb-page {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.gb-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 112px;
  background: #171717;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.gb-header-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

.gb-nav {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 112px;
  color: #fff;
}

.gb-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: 280px;
  margin-left: clamp(24px, 4vw, 64px);
  margin-right: clamp(18px, 2.8vw, 42px);
}

.gb-logo img {
  display: block;
  width: 280px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.gb-logo-mark {
  position: relative;
  width: 22px;
  height: 19px;
  background: var(--gb-gold);
  border-radius: 3px 3px 2px 2px;
}

.gb-logo-mark::before {
  content: '';
  position: absolute;
  left: 4px;
  top: -6px;
  width: 14px;
  height: 14px;
  background: var(--gb-gold);
  transform: rotate(45deg);
  border-radius: 2px;
}

.gb-logo-mark::after {
  content: '';
  position: absolute;
  left: 8px;
  bottom: 0;
  width: 6px;
  height: 8px;
  background: #171717;
}

.gb-menu {
  position: static;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: clamp(11px, 0.72vw, 14px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.gb-menu-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.gb-menu-list .menu-item {
  position: relative;
}

.gb-menu-list a {
  display: inline-flex;
  align-items: center;
  min-height: 112px;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.gb-menu-list a:hover,
.gb-menu-list .current-menu-item>a,
.gb-menu-list .current-menu-ancestor>a {
  color: var(--gb-gold);
}

.gb-menu-list .menu-item-has-children>a::after {
  content: '';
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-left: clamp(4px, 0.45vw, 8px);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.gb-menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 80;
  min-width: 168px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.gb-menu-list .menu-item:hover>.sub-menu,
.gb-menu-list .menu-item:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.gb-menu-list .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  z-index: 90;
  margin-left: 8px;
  transform: translate(10px, 0);
}

.gb-menu-list .sub-menu .menu-item:hover>.sub-menu,
.gb-menu-list .sub-menu .menu-item:focus-within>.sub-menu {
  transform: translate(0, 0);
}

.gb-menu-list .sub-menu .menu-item-has-children>a {
  justify-content: space-between;
  gap: 16px;
}

.gb-menu-list .sub-menu .menu-item-has-children>a::after {
  flex: 0 0 8px;
  margin-left: 16px;
  transform: rotate(-45deg);
}

.gb-menu-list .sub-menu a {
  display: flex;
  min-height: 46px;
  padding: 0 29px;
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.gb-menu-list .sub-menu a:hover,
.gb-menu-list .sub-menu .current-menu-item>a {
  background: #f5f5f5;
  color: var(--gb-gold);
}

.gb-menu-list .gb-product-mega-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 0;
  min-width: 680px;
  padding: 22px 24px;
  left: 50%;
}

.gb-menu-list .gb-menu-group {
  padding: 0 18px;
}

.gb-menu-list .gb-menu-group+.gb-menu-group {
  border-left: 1px solid #eee;
}

.gb-menu-list .gb-menu-group span {
  display: block;
  margin-bottom: 10px;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-menu-list .gb-menu-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gb-menu-list .gb-menu-group a {
  min-height: 34px;
  padding: 0;
  font-size: 15px;
}

.gb-menu-list .gb-menu-group a:hover {
  background: transparent;
}

.gb-menu a {
  color: rgba(255, 255, 255, 0.82);
}

.gb-menu a:hover {
  color: var(--gb-gold);
}

.gb-language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  margin-left: clamp(8px, 1vw, 18px);
}

.gb-language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 26px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.gb-language-switcher a:hover,
.gb-language-switcher a.is-active {
  border-color: var(--gb-gold);
  color: #fff;
}

.gb-mobile-menu-toggle {
  display: none;
}

.gb-nav-cta {
  align-self: stretch;
  flex: 0 0 auto;
  margin-left: clamp(12px, 1.5vw, 24px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(128px, 9vw, 150px);
  min-height: 112px;
  padding: 0 clamp(16px, 1.5vw, 24px);
  border-radius: 0;
  background: var(--gb-gold);
  color: #fff;
  font-size: clamp(10px, 0.62vw, 11px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  box-shadow: none;
  white-space: nowrap;
}

.gb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--gb-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 11px 26px rgba(185, 123, 30, 0.32);
}

.gb-btn:hover,
.gb-nav-cta:hover {
  background: var(--gb-gold-dark);
}

.gb-btn-dark {
  background: #151515;
  box-shadow: none;
}

.gb-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 650px;
  padding: 112px 0 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.34) 45%, rgba(0, 0, 0, 0.66) 100%),
    url('gb-inner-pages/assets/brand/showroom-poster.png') center/cover no-repeat;
}

.gb-hero::after {
  content: '';
  position: absolute;
  inset: 112px 0 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.gb-hero-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1120px) / 2 + 12px));
  padding: 34px 34px 36px;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.gb-hero-panel h1 {
  max-width: 1000px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 50px !important;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.gb-hero-panel p {
  max-width: 1000px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.65;
}

.gb-hero-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.gb-hero-list li {
  position: relative;
  padding-left: 29px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.gb-hero-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gb-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.gb-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--gb-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 26px rgba(185, 123, 30, 0.3);
}

.gb-hero-btn:hover {
  background: var(--gb-gold-dark);
}

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

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

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

.gb-section-title {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.gb-section-title h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.gb-section-title p {
  margin: 0 auto;
  color: var(--gb-muted);
}

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

.gb-stats-section {
  padding: 80px 0 10px;
  background: #fff;
}

.gb-counter-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 20px 0 30px;
}

.gb-counter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 178px;
  text-align: center;
}

.gb-counter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  color: var(--gb-gold);
  font-size: 36px;
  line-height: 1;
}

.gb-counter-card strong {
  display: block;
  color: #111;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.gb-counter-card p {
  max-width: 250px;
  margin: 12px auto 0;
  color: #111;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.gb-intro-section {
  padding: 0 0 60px;
  background: #fff;
}

.gb-intro-shell {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.gb-intro-shell h2 {
  margin: 0 0 30px;
  color: #111;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.18;
}

.gb-intro-shell p {
  margin: 0;
  color: #333;
  font-size: 17px;
  line-height: 1.75;
}

.gb-product-section {
  padding: 30px 0 60px;
  background: #fff;
}

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

.gb-product-card {
  margin: 0;
  text-align: center;
}

.gb-product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gb-product-card h3 {
  margin: 16px 0 0;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

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

.gb-showroom-section {
  margin-top: 30px;
  padding: 60px 0;
  background: #f4f4f4;
}

.gb-showroom-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  align-items: stretch;
}

.gb-showroom-copy {
  padding: 0 34px 0 0;
}

.gb-showroom-copy h2 {
  margin: 0 0 22px;
  color: #111;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.gb-showroom-copy p,
.gb-showroom-copy li {
  color: #333;
  font-size: 16px;
  line-height: 1.75;
}

.gb-showroom-copy p {
  margin: 0 0 12px;
}

.gb-showroom-copy ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.gb-showroom-video {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 430px;
  background: #111;
}

.gb-showroom-video video {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.gb-saving-section {
  padding: 70px 0 40px;
  background: #fff;
}

.gb-saving-inner {
  text-align: center;
}

.gb-saving-inner h2,
.gb-process-section h2,
.gb-why-section h2,
.gb-onestop-head h2,
.gb-review-head h2 {
  max-width: 980px;
  margin: 0 auto 34px;
  color: #111;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}

.gb-saving-inner img {
  width: min(800px, 100%);
  margin: 0 auto;
}

.gb-process-section {
  padding: 60px 0;
  background: #f6f6f6;
}

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

.gb-process-card,
.gb-why-grid article,
.gb-service-grid article {
  background: #fff;
  border: 1px solid #e8e8e8;
  text-align: center;
}

.gb-process-card {
  position: relative;
  padding: 34px 18px 28px;
}

.gb-process-card span,
.gb-why-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gb-gold);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.gb-process-card h3,
.gb-why-grid h3,
.gb-service-grid h3,
.gb-review-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.gb-process-card p,
.gb-why-grid p,
.gb-review-card p,
.gb-review-head p,
.gb-onestop-head p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

.gb-audience-section {
  padding: 60px 0;
  background: #fff;
}

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

.gb-audience-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: var(--bg) center/cover no-repeat;
}

.gb-audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.gb-audience-card div {
  position: relative;
  z-index: 1;
}

.gb-audience-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
}

.gb-audience-card h3 {
  margin: 0 0 24px;
  font-size: 34px;
  line-height: 1.15;
}

.gb-audience-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 2px;
  background: var(--gb-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.gb-why-section {
  padding: 70px 0;
  background: #f6f6f6;
}

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

.gb-why-grid article {
  padding: 32px 24px;
}

.gb-onestop-section {
  padding: 70px 0;
  background: #fff;
}

.gb-onestop-head,
.gb-review-head {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.gb-onestop-head h2,
.gb-review-head h2 {
  margin-bottom: 12px;
}

.gb-onestop-head p {
  font-size: 22px;
  font-weight: 700;
}

.gb-service-grid article {
  padding: 34px 20px;
}

.gb-service-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gb-gold);
  font-size: 42px;
  line-height: 1;
}

.gb-review-section {
  padding: 70px 0;
  background: #fff;
}

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

.gb-review-card {
  padding: 0 0 24px;
  border: 1px solid #e8e8e8;
  background: #fff;
}

.gb-review-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gb-review-card h3,
.gb-review-card p,
.gb-review-card strong {
  display: block;
  padding-right: 22px;
  padding-left: 22px;
}

.gb-review-card h3 {
  margin-top: 20px;
}

.gb-review-card strong {
  margin-top: 16px;
  color: #111;
  font-size: 14px;
}

.gb-final-cta {
  padding: 72px 0 70px;
  background: #fff;
  text-align: center;
}

.gb-final-cta h2 {
  max-width: 1040px;
  margin: 0 auto 28px;
  color: #111;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.gb-final-cta .gb-btn {
  min-height: 44px;
  padding: 0 26px;
}

.gb-news-card figure,
.gb-social-card figure {
  margin: 0;
}

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

.gb-news-card {
  background: #fff;
  border: 1px solid var(--gb-line);
}

.gb-news-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.gb-news-body {
  padding: 18px;
}

.gb-date {
  color: var(--gb-gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gb-news-body h3 {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.gb-news-body p {
  margin: 0;
  color: var(--gb-muted);
  font-size: 12px;
}

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

.gb-social-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  background: #ddd;
}

.gb-social-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gb-social-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 10px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.gb-cta-band {
  background: #202020;
  color: #fff;
  padding: 34px 0;
}

.gb-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.gb-cta-inner h2 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}

.gb-footer {
  padding: 56px 0 30px;
  background: #050505;
  color: rgba(255, 255, 255, 0.72);
}

.gb-footer-brand {
  margin-bottom: 34px;
}

.gb-footer-logo {
  display: inline-flex;
  align-items: center;
  width: 220px;
}

.gb-footer-logo img {
  display: block;
  width: 220px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.gb-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.1fr;
  gap: 36px;
}

.gb-footer h3,
.gb-footer h4 {
  margin: 0 0 16px;
  color: #fff;
  text-transform: uppercase;
}

.gb-footer p,
.gb-footer li {
  margin: 0 0 8px;
  font-size: 12px;
}

.gb-footer a:hover {
  color: var(--gb-gold);
}

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

.gb-newsletter {
  display: flex;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.gb-newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 12px;
  background: transparent;
  color: #fff;
}

.gb-newsletter button {
  border: 0;
  padding: 0 16px;
  background: var(--gb-gold);
  color: #fff;
  font-weight: 800;
}

.gb-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.gb-footer-social .gb-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gb-footer-social .gb-social-link:hover {
  border-color: var(--gb-gold);
  background: var(--gb-gold);
  color: #fff;
  transform: translateY(-2px);
}

.gb-footer-social .gb-social-link img,
.gb-footer-social .gb-social-link i {
  width: 18px;
  height: 18px;
  object-fit: contain;
  font-size: 18px;
  line-height: 18px;
}

.gb-copy {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1440px) {
  .gb-logo {
    width: 230px;
    margin-left: 32px;
    margin-right: 24px;
  }

  .gb-logo img {
    width: 230px;
    max-height: 86px;
  }

  .gb-menu {
    font-size: 11px;
    letter-spacing: 0.025em;
  }

  .gb-menu-list {
    gap: 9px;
  }
}

@media (max-width: 1280px) {
  .gb-logo {
    width: 190px;
    margin-left: 22px;
    margin-right: 16px;
  }

  .gb-logo img {
    width: 190px;
    max-height: 76px;
  }

  .gb-menu {
    font-size: 10px;
    letter-spacing: 0.015em;
  }

  .gb-menu-list {
    gap: 7px;
  }

  .gb-menu-list .menu-item-has-children>a::after {
    margin-left: 4px;
  }

  .gb-nav-cta {
    min-width: 118px;
    padding: 0 14px;
    font-size: 9px;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 1120px) {
  .gb-logo {
    width: 160px;
    margin-left: 16px;
    margin-right: 12px;
  }

  .gb-logo img {
    width: 160px;
    max-height: 66px;
  }

  .gb-menu {
    font-size: 9px;
    letter-spacing: 0;
  }

  .gb-menu-list {
    gap: 6px;
  }

  .gb-language-switcher {
    margin-left: 6px;
  }
}

@media (max-width: 860px) {
  .gb-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #171717;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.28);
  }

  .gb-menu.is-open {
    display: block;
  }

  .gb-menu-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .gb-menu-list a {
    min-height: 42px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
  }

  .gb-menu-list .sub-menu {
    position: static;
    min-width: 0;
    padding-left: 14px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .gb-menu-list .sub-menu a {
    min-height: 36px;
    padding: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
  }

  .gb-mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .gb-mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

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

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

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

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

  .gb-counter-row,
  .gb-product-grid,
  .gb-process-grid,
  .gb-why-grid,
  .gb-service-grid,
  .gb-review-grid,
  .gb-social-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gb-showroom-copy {
    padding: 0 0 28px;
  }

  .gb-saving-inner h2,
  .gb-process-section h2,
  .gb-why-section h2,
  .gb-onestop-head h2,
  .gb-review-head h2,
  .gb-final-cta h2 {
    font-size: 34px;
  }
}

@media (max-width: 560px) {

  .gb-shell,
  .gb-wide-shell,
  .gb-intro-shell {
    width: calc(100% - 28px);
  }

  .gb-topbar {
    height: 80px;
  }

  .gb-nav {
    min-height: 80px;
  }

  .gb-logo {
    width: 130px;
    margin-left: 14px;
    margin-right: 8px;
  }

  .gb-logo img {
    width: 130px;
    max-height: 48px;
  }

  .gb-mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .gb-nav-cta {
    align-self: stretch;
    min-width: 82px;
    min-height: 80px;
    margin-left: 8px;
    padding: 0 8px;
    font-size: 7px;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }

  .gb-hero {
    min-height: auto;
    padding: 88px 0 92px;
  }

  .gb-hero-panel {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 26px 20px 30px;
  }

  .gb-hero-panel h1 {
    font-size: 36px !important;
  }

  .gb-counter-row,
  .gb-product-grid,
  .gb-process-grid,
  .gb-audience-grid,
  .gb-why-grid,
  .gb-service-grid,
  .gb-review-grid,
  .gb-social-strip {
    grid-template-columns: 1fr;
  }

  .gb-counter-row {
    gap: 18px;
    margin: 24px 0 34px;
  }

  .gb-counter-card strong {
    font-size: 46px;
  }

  .gb-intro-shell h2,
  .gb-showroom-copy h2,
  .gb-saving-inner h2,
  .gb-process-section h2,
  .gb-why-section h2,
  .gb-onestop-head h2,
  .gb-review-head h2,
  .gb-final-cta h2 {
    font-size: 30px;
  }

  .gb-product-card img {
    height: 220px;
  }

  .gb-audience-card {
    min-height: 260px;
  }

  .gb-audience-card h3 {
    font-size: 26px;
  }

  .gb-showroom-video,
  .gb-showroom-video video {
    min-height: 260px;
    height: 260px;
  }

  .gb-cta-inner {
    flex-direction: column;
  }
}

.gb-footer-brand-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

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

.gb-footer-search {
  position: relative;
  display: flex;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.gb-footer-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 15px;
  background: transparent;
  color: #fff;
  font: inherit;
}

.gb-footer-search input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.gb-footer-search button {
  border: 0;
  padding: 0 18px;
  background: var(--gb-gold);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.gb-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 120;
  display: none;
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.gb-search-results.is-visible {
  display: block;
}

.gb-search-results a,
.gb-search-results p {
  display: block;
  margin: 0;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.gb-search-results a strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.gb-search-results a span {
  color: rgba(255, 255, 255, 0.55);
}

.gb-search-results a:hover strong {
  color: var(--gb-gold);
}

.gb-form-status {
  margin: 10px 0 0;
  color: var(--gb-gold) !important;
  font-size: 12px !important;
  font-weight: 800;
}

.gb-footer-qr-block p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52);
}

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

.gb-qr-item {
  display: grid;
  place-items: center;
  min-height: 178px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #fff;
}

.gb-qr-item img {
  display: block;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.gb-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.gb-floating-service {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 140;
  width: 56px;
  height: 56px;
  font-size: 16px;
}

.gb-floating-service:hover {
  width: 176px;
}

.gb-floating-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  min-height: 56px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
  transition: width 0.22s ease, padding 0.22s ease, background 0.18s ease, transform 0.18s ease;
}

.gb-floating-service:hover .gb-floating-toggle {
  width: 176px;
  padding: 0 22px 0 0;
}

.gb-floating-toggle:hover,
.gb-floating-toggle:focus-visible {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

.gb-floating-icon {
  display: inline-flex;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
}

.gb-floating-icon i {
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 28px;
}

.gb-floating-label {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  transition: width 0.22s ease, opacity 0.16s ease;
}

.gb-floating-service:hover .gb-floating-label {
  width: 98px;
  opacity: 1;
}

.gb-floating-panel {
  display: none;
}

.gb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.86);
}

.gb-lightbox[hidden] {
  display: none;
}

.gb-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.gb-lightbox button {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1024px) {

  .gb-footer-brand-row,
  .gb-footer-grid-expanded {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {

  .gb-footer-brand-row,
  .gb-footer-grid-expanded,
  .gb-qr-grid {
    grid-template-columns: 1fr;
  }

  .gb-footer-search {
    display: grid;
  }

  .gb-footer-search button {
    min-height: 42px;
  }

  .gb-copy {
    justify-content: center;
  }

  .gb-floating-service {
    right: 14px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .gb-floating-service:hover {
    width: 52px;
  }

  .gb-floating-toggle,
  .gb-floating-service:hover .gb-floating-toggle {
    width: 52px;
    min-height: 52px;
    padding: 0;
  }

  .gb-floating-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .gb-floating-icon i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 24px;
  }

  .gb-floating-service:hover .gb-floating-label {
    width: 0;
    opacity: 0;
  }
}