:root {
  --glb-ink: #1A1F24;
  --glb-surface: #24303A;
  --glb-panel: #FFFFFF;
  --glb-paper: #F4F6F8;
  --glb-white: #FFFFFF;
  --glb-muted: #5C6770;
  --glb-line: #D5DCE3;
  --glb-accent: #2F5D8C;
  --glb-accent-soft: #E8F0F7;
  --glb-accent-deep: #1A3A5C;
  --glb-success: #2F6B4F;
  --glb-warning: #A67C2A;
  --glb-danger: #A33B3B;
  --glb-radius-sm: 6px;
  --glb-radius: 10px;
  --glb-radius-lg: 16px;
  --glb-radius-pill: 999px;
  --glb-font-heading: 'Libre Baskerville', Georgia, serif;
  --glb-font-body: 'Source Sans 3', system-ui, sans-serif;
  --glb-black: var(--glb-ink);
  --glb-border: var(--glb-line);
  --glb-shadow: 0 8px 28px rgba(26, 31, 36, 0.08);
}


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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none !important;
  overflow-x: hidden;
  font-family: var(--glb-font-body);
  color: var(--glb-ink);
  background: var(--glb-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Kill WP / page-builder wrappers that squash the whole site into a narrow column */
#page,
.site,
.wp-site-blocks,
#wrapper,
#content,
.site-content,
.glb-home,
.is-root-container {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.is-layout-constrained,
body .is-layout-constrained {
  max-width: none !important;
}

body .is-layout-constrained > :where(:not(.alignfull):not(.alignwide):not(.glb-container)),
.wp-site-blocks > :where(:not(.alignfull):not(.glb-container)) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Inner pages that put glb-container on <main> keep a readable content width */
.site-main.glb-container {
  width: 100%;
  max-width: var(--glb-content) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(1.25rem, 4vw, 2rem) !important;
  padding-right: clamp(1.25rem, 4vw, 2rem) !important;
}

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

h1, h2, h3, h4 {
  font-family: var(--glb-font-heading);
  color: var(--glb-ink);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

a { color: var(--glb-accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.glb-container {
  width: 100%;
  max-width: var(--glb-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

/* Full-bleed shells — never inherit a parent max-width */
.glb-announcement,
.glb-header,
.glb-hero,
.glb-trust,
.glb-slogan-strip,
.glb-section,
.glb-footer,
.glb-cta {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

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

/* Announcement */
.glb-announcement {
  background: var(--glb-ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.glb-announcement__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 0;
  text-align: center;
}
.glb-announcement p { margin: 0; }

/* Header */
.glb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--glb-line);
  backdrop-filter: blur(14px);
}
.glb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 96px;
  position: relative;
}
.glb-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  max-width: min(42vw, 340px);
}
.glb-logo img,
.glb-header .custom-logo-link img,
.glb-header .custom-logo {
  height: 72px !important;
  width: auto !important;
  max-width: min(42vw, 340px) !important;
  object-fit: contain;
}
.glb-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.glb-nav__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.15rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.glb-nav__list > li { flex: 0 0 auto; }
.glb-nav__list a {
  color: var(--glb-ink);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}
.glb-nav__list a:hover { color: var(--glb-accent-deep); text-decoration: none; }
.glb-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-end;
  flex: 0 0 auto;
}
.glb-nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  order: 3;
}
.glb-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--glb-ink);
  margin: 4px 0;
}

/* Hamburger before nav can stack/squash (in main.css so it always ships) */
@media (max-width: 1100px) {
  .glb-nav-toggle { display: block; }
  .glb-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex: none;
    justify-content: flex-start;
    background: #fff;
    border-bottom: 1px solid var(--glb-line);
    padding: 1rem clamp(1.25rem, 4vw, 2rem) 1.25rem;
    z-index: 120;
  }
  .glb-nav.is-open { display: block; }
  .glb-nav__list {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* Buttons */
.glb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.glb-btn:hover { transform: translateY(-1px); }
.glb-btn--primary {
  background: var(--glb-ink);
  border-color: var(--glb-ink);
  color: #fff !important;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}
.glb-btn--primary:hover {
  background: var(--glb-accent);
  border-color: var(--glb-accent);
  color: #0B0B0C !important;
}
.glb-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
}
.glb-header .glb-btn--ghost,
.glb-section .glb-btn--ghost {
  border-color: var(--glb-line);
  color: var(--glb-ink) !important;
  background: var(--glb-white);
}
.glb-header .glb-btn--ghost:hover,
.glb-section .glb-btn--ghost:hover {
  border-color: var(--glb-ink);
  background: var(--glb-paper);
}

/* Hero */
.glb-hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0B0B0C;
}
.glb-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.glb-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
}
.glb-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.62) 100%);
}
.glb-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 7rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vh, 4.5rem);
}
.glb-hero__mark {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}
.glb-hero h1 {
  color: #fff !important;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: min(14ch, 100%);
  margin-bottom: 1rem;
}
.glb-hero .glb-btn--primary {
  background: #fff;
  border-color: #fff;
  color: #0B0B0C !important;
}
.glb-hero .glb-btn--primary:hover {
  background: var(--glb-accent);
  border-color: var(--glb-accent);
}
.glb-hero__subhead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 36ch;
  margin: 0;
}
.glb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.glb-hero .glb-btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}
.glb-hero .glb-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

/* Trust — light band below hero (avoids stacked dark bars with announcement) */
.glb-trust {
  background: var(--glb-paper);
  color: var(--glb-ink);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glb-line);
}
.glb-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.glb-trust__item strong {
  display: block;
  color: var(--glb-ink);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.glb-trust__item span {
  color: var(--glb-muted);
  font-size: 0.86rem;
}

/* Sections */
.glb-section {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  width: 100%;
}
.glb-section--paper,
.glb-section--cream { background: var(--glb-paper); }
.glb-section--ink {
  background: var(--glb-ink);
  color: #fff;
}
.glb-section--ink h2,
.glb-section--ink h3 { color: #fff; }
.glb-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}
.glb-section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}
.glb-section__lead {
  margin: 0 auto;
  color: var(--glb-muted);
  font-size: 1.05rem;
  max-width: 48ch;
}
.glb-section--ink .glb-section__lead { color: rgba(255, 255, 255, 0.72); }

.glb-slogan {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--glb-coral);
}
.glb-slogan--center { text-align: center; }
.glb-slogan--on-dark { color: var(--glb-accent); }
.glb-slogan--hero { color: var(--glb-accent); margin-bottom: 0.85rem; }

/* Product grid */
.glb-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.glb-product-card {
  background: var(--glb-white);
  border: 1px solid var(--glb-line);
  border-radius: var(--glb-radius);
  overflow: hidden;
  box-shadow: var(--glb-shadow);
  transition: transform 0.2s ease;
}
.glb-product-card:hover { transform: translateY(-4px); }
.glb-product-card__img {
  aspect-ratio: 1;
  background: var(--glb-paper);
  overflow: hidden;
}
.glb-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.glb-product-card__body { padding: 1rem 1rem 1.15rem; }
.glb-product-card__body h3 {
  font-size: 1.05rem;
  margin: 0.35rem 0 0.4rem;
}
.glb-product-card__price {
  margin: 0;
  font-weight: 700;
  color: var(--glb-accent-deep);
}
.glb-badge {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--glb-accent-soft);
  color: var(--glb-accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.glb-section__cta {
  text-align: center;
  margin-top: 2rem;
}

/* Collection tiles */
.glb-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.glb-collection-tile {
  position: relative;
  min-height: 340px;
  border-radius: var(--glb-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none !important;
  box-shadow: var(--glb-shadow);
}
.glb-collection-tile__media {
  position: absolute;
  inset: 0;
}
.glb-collection-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.glb-collection-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.05) 20%, rgba(11, 11, 12, 0.82) 100%);
}
.glb-collection-tile__body {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
}
.glb-collection-tile h3 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
}
.glb-collection-tile p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 28ch;
}
.glb-collection-tile span {
  font-weight: 700;
  color: var(--glb-accent);
}

/* Why grid */
.glb-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.glb-why-card {
  background: var(--glb-white);
  border: 1px solid var(--glb-line);
  border-radius: var(--glb-radius);
  padding: 1.5rem;
}
.glb-why-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.glb-why-card p { margin: 0; color: var(--glb-muted); }

/* Process */
.glb-process {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
.glb-process__copy .glb-section__title,
.glb-process__copy .glb-slogan { text-align: left; }
.glb-process__copy .glb-section__lead {
  margin: 0 0 1.25rem;
  text-align: left;
}
.glb-process ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--glb-muted);
}
.glb-process__media {
  border-radius: var(--glb-radius);
  overflow: hidden;
  box-shadow: var(--glb-shadow);
}
.glb-process__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* FAQ */
.glb-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.glb-faq {
  background: var(--glb-white);
  border: 1px solid var(--glb-line);
  border-radius: var(--glb-radius-sm);
  padding: 1rem 1.15rem;
}
.glb-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--glb-font-heading);
}
.glb-faq p {
  margin: 0.75rem 0 0;
  color: var(--glb-muted);
}

/* CTA */
.glb-cta {
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(200, 245, 66, 0.18), transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgba(200, 245, 66, 0.1), transparent 40%),
    var(--glb-ink);
}
.glb-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.glb-cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

/* Slogan strip */
.glb-slogan-strip {
  overflow: hidden;
  background: var(--glb-ink);
  color: var(--glb-accent);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--glb-line);
}
.glb-slogan-strip__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: glb-marquee 34s linear infinite;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.glb-slogan-strip__item { white-space: nowrap; }
.glb-slogan-strip__item::after {
  content: " · ";
  margin-left: 2.5rem;
  opacity: 0.55;
}
@keyframes glb-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .glb-slogan-strip__track { animation: none; }
}

/* Footer */
.glb-footer {
  background: var(--glb-ink);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3rem, 6vw, 4rem) 0 1.75rem;
}
.glb-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 2rem;
}
.glb-footer__brand p { margin: 0.75rem 0 0; max-width: 28ch; }
.glb-footer h3 {
  color: var(--glb-accent);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.glb-footer ul { list-style: none; margin: 0; padding: 0; }
.glb-footer li { margin-bottom: 0.4rem; }
.glb-footer a { color: rgba(255, 255, 255, 0.78); }
.glb-footer a:hover { color: #fff; }
.glb-footer__closer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  text-align: center;
}
.glb-footer__closer .glb-slogan { color: var(--glb-accent); }
.glb-footer__bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
}

/* Woo single */
.glb-woocommerce,
.glb-single,
.glb-page,
.glb-archive,
.glb-search,
.glb-404 { padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.5rem); }

.glb-page__article { max-width: 760px; margin: 0 auto; }
.glb-page__header { margin-bottom: 1.75rem; }
.glb-page__content > *:first-child { margin-top: 0; }
.glb-page__content > *:last-child { margin-bottom: 0; }
.glb-page__content h2 { margin-top: 2rem; }
.glb-page__content p,
.glb-page__content li { color: var(--glb-muted); }
.glb-page__content strong { color: var(--glb-ink); }
.glb-page__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0;
}
.glb-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--glb-ink) !important;
  margin: 0 0 1.5rem;
}
.glb-page-figure {
  margin: 0 0 1.75rem;
  border-radius: var(--glb-radius);
  overflow: hidden;
  background: var(--glb-paper);
}
.glb-page-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.glb-page-figure figcaption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.88rem;
  color: var(--glb-muted);
}
.glb-page-cta {
  margin-top: 2.75rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--glb-radius);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(200, 245, 66, 0.16), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(200, 245, 66, 0.08), transparent 45%),
    var(--glb-ink);
  color: #fff;
  text-align: center;
}
.glb-page-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.35rem 0 0.65rem;
}
.glb-page-cta p { color: rgba(255, 255, 255, 0.78); }
.glb-page-cta .glb-slogan { color: var(--glb-accent); }
.glb-page-cta .glb-btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}
.glb-shop-intro { margin-bottom: 2rem; max-width: none; }
.glb-page--catalog .glb-page__content { max-width: none; }
.glb-catalog-block { margin-top: 1.5rem; }
.glb-catalog-block h2 {
  font-family: var(--glb-font-heading);
  font-size: 1.35rem;
  margin: 2rem 0 1rem;
}
.glb-catalog-embed { margin: 0.5rem 0 1.5rem; }
.glb-catalog-embed ul.products { margin-top: 0 !important; }
.glb-meta { color: var(--glb-muted); font-size: 0.9rem; margin: 0.35rem 0 0; }
.glb-page__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glb-line);
  color: var(--glb-muted);
  font-size: 0.92rem;
}
.glb-featured-image {
  margin: 0 0 1.5rem;
  border-radius: var(--glb-radius);
  overflow: hidden;
}
.glb-prose { max-width: 68ch; }
.glb-prose h2 { font-size: 1.35rem; margin: 1.75rem 0 0.65rem; }
.glb-prose h3 { font-size: 1.15rem; margin: 1.4rem 0 0.5rem; }
.glb-prose p, .glb-prose li { color: var(--glb-muted); }
.glb-prose ul, .glb-prose ol { padding-left: 1.2rem; }
.glb-prose .glb-btn { margin: 0.35rem 0.5rem 0.35rem 0; }
.glb-prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.glb-prose th,
.glb-prose td {
  border-bottom: 1px solid var(--glb-line);
  padding: 0.65rem 0.4rem;
  text-align: left;
}
.glb-callout {
  background: var(--glb-paper);
  border: 1px solid var(--glb-line);
  border-radius: var(--glb-radius-sm);
  padding: 1rem 1.15rem;
  color: var(--glb-ink) !important;
}
.glb-archive-header { margin: 2rem 0 2.5rem; max-width: 48rem; }
.glb-archive-header .glb-lead { color: var(--glb-muted); font-size: 1.1rem; }
.glb-post-card__thumb { display: block; margin: -1.25rem -1.25rem 1rem; overflow: hidden; border-radius: var(--glb-radius) var(--glb-radius) 0 0; }
.glb-post-card__thumb img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.35s ease; }
.glb-post-card:hover .glb-post-card__thumb img { transform: scale(1.03); }
.glb-featured-image { margin: 0 0 1.75rem; border-radius: var(--glb-radius); overflow: hidden; }
.glb-featured-image img { width: 100%; height: auto; display: block; }
.glb-single .glb-prose { max-width: 68ch; }
.glb-page__footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--glb-line); color: var(--glb-muted); font-size: 0.95rem; }
.glb-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.glb-post-card {
  background: var(--glb-white);
  border: 1px solid var(--glb-line);
  border-radius: var(--glb-radius);
  padding: 1.25rem;
  box-shadow: var(--glb-shadow);
}
.glb-post-card__title { font-size: 1.2rem; margin: 0.5rem 0; }
.glb-empty-state { text-align: center; padding: 3rem 0; max-width: 40ch; margin: 0 auto; }
.glb-btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.25rem; }
.glb-archive-header { text-align: center; margin-bottom: 2rem; }

@media (max-width: 700px) {
  .glb-post-grid { grid-template-columns: 1fr; }
}
.glb-single-product__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.glb-single-product__media {
  background: var(--glb-paper);
  border-radius: var(--glb-radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.glb-single-product__media .woocommerce-product-gallery,
.glb-single-product__media .woocommerce-product-gallery__wrapper,
.glb-single-product__media .woocommerce-product-gallery__image {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.glb-single-product__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}
.glb-single-product__summary .glb-eyebrow,
.glb-eyebrow {
  color: var(--glb-accent-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}
.glb-single-product__lead { color: var(--glb-muted); font-size: 1.05rem; }
.glb-single-product__trust {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--glb-muted);
}
.glb-single-product__details {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glb-line);
}
.glb-variant-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
}
.glb-variant-table th,
.glb-variant-table td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--glb-line);
}

/* WooCommerce loops inherit */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: var(--glb-white);
  border: 1px solid var(--glb-line);
  border-radius: var(--glb-radius);
  overflow: hidden;
  padding: 0 0 1rem !important;
  box-shadow: var(--glb-shadow);
}
.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 0 0.85rem;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--glb-font-heading);
  font-size: 1.05rem !important;
  padding: 0 1rem;
}
.woocommerce ul.products li.product .price {
  padding: 0 1rem;
  color: var(--glb-accent-deep);
  font-weight: 700;
}
.woocommerce ul.products li.product .button {
  margin: 0.85rem 1rem 0;
  background: var(--glb-accent) !important;
  color: var(--glb-ink) !important;
  border-radius: 999px !important;
}
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--glb-accent) !important;
  color: var(--glb-ink) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  padding: 0.9rem 1.5rem !important;
}


.glb-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1A1F24;
  color: #fff;
}
.glb-hero__media { position: absolute; inset: 0; z-index: 0; }
.glb-hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.glb-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(26,31,36,0.88) 0%, rgba(26,31,36,0.45) 55%, rgba(26,31,36,0.25) 100%),
    linear-gradient(180deg, rgba(26,31,36,0.15) 0%, rgba(26,31,36,0.75) 100%);
}
.glb-hero__content {
  position: relative; z-index: 1; width: 100%; max-width: 1180px;
  margin: 0 auto; padding: clamp(4rem, 10vh, 7rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vh, 4.5rem);
}
.glb-hero h1 {
  font-family: var(--glb-font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  max-width: 16ch;
  margin: 0 0 1rem;
  color: #fff;
}
.glb-hero__subhead { max-width: 38ch; color: rgba(255,255,255,0.82); font-size: 1.15rem; }
.glb-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.glb-hero .glb-btn--ghost { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.glb-eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; font-weight: 700;
  color: var(--glb-accent); margin: 0 0 0.75rem;
}
.glb-hero .glb-eyebrow { color: #B8D0E8; }
.glb-hero__micro {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}
.glb-service-card {
  background: #fff; border: 1px solid var(--glb-line); border-radius: var(--glb-radius);
  overflow: hidden; box-shadow: var(--glb-shadow);
}
.glb-service-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--glb-paper); }
.glb-service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.glb-service-card h3 { padding: 1rem 1.1rem 0.35rem; margin: 0; font-size: 1.2rem; }
.glb-service-card p { padding: 0 1.1rem 1.2rem; color: var(--glb-muted); margin: 0; }
.glb-card-grid--4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.glb-process { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.glb-process li { background: #fff; border: 1px solid var(--glb-line); border-radius: var(--glb-radius); padding: 1.25rem; }
.glb-process strong { display: block; margin-bottom: 0.4rem; }
.glb-process span { color: var(--glb-muted); }
.glb-cta-band { text-align: center; max-width: 40rem; margin: 0 auto; }
.glb-cta-band h2 { color: #fff; font-family: var(--glb-font-heading); }
.glb-cta-band p { color: rgba(255,255,255,0.78); }
.glb-section--dark { background: linear-gradient(160deg, #1A1F24, #24303A); color: #fff; }
.glb-page--wide .glb-prose { max-width: none; }
.glb-page-figure { margin: 1.25rem 0 1.75rem; }
.glb-page-figure img { width: 100%; height: auto; border-radius: var(--glb-radius); display: block; }
.glb-logo img { height: 48px !important; width: auto !important; max-width: 280px !important; }
@media (max-width: 900px) {
  .glb-card-grid--4, .glb-process { grid-template-columns: 1fr; }
}
