:root {
  --ink: #0e151b;
  --graphite: #17242c;
  --text: #22313a;
  --muted: #64727b;
  --line: #dbe4e8;
  --paper: #f5f7f8;
  --white: #fff;
  --gold: #f0ae12;
  --rose: #c83a84;
  --glass: #84cbd1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.logged-in .site-header {
  top: 32px;
}

a {
  color: inherit;
}

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

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

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

.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;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  text-decoration: none;
  white-space: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar {
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 max(20px, calc((100vw - 1280px) / 2));
  background: #f1f4f5;
  color: #657179;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.topbar span:nth-child(2) {
  text-align: center;
}

.topbar a {
  justify-self: end;
  color: var(--ink);
  text-decoration: none;
}

.nav {
  position: relative;
  max-width: 1280px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: grid;
  grid-template-columns: 34px auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 32px;
  height: 44px;
  border: 4px solid #b5c0c6;
  border-right-color: var(--rose);
  transform: skewY(-8deg);
}

.brand-logo {
  width: auto;
  max-width: 180px;
  max-height: 54px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  letter-spacing: .18em;
}

.brand em {
  display: block;
  margin-top: 4px;
  color: var(--rose);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .19em;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.links a {
  text-decoration: none;
  color: #56656e;
  font-size: 14px;
  font-weight: 900;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu li {
  position: relative;
  margin: 0;
}

.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 230px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 55px rgba(14, 21, 27, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  display: block;
  padding: 9px 10px;
  color: var(--text);
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-line::before {
  top: -7px;
}

.nav-toggle-line::after {
  top: 7px;
}

.site-header.is-menu-open .nav-toggle-line {
  background: transparent;
}

.site-header.is-menu-open .nav-toggle-line::before {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle-line::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.button,
.brief-form button,
.wp-block-button__link,
.entry-content .wp-block-file__button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 2px;
  background: var(--gold);
  color: #121212;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .72);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  background: var(--ink);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(132, 203, 209, .22), transparent 28%),
    linear-gradient(90deg, rgba(10, 17, 22, .94), rgba(10, 17, 22, .72), rgba(10, 17, 22, .2)),
    url("https://www.glassbuildingsystems.ro/wp-content/uploads/2021/08/Picture-020-scaled-e1720430938560.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
}

.hero-frame {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  min-height: calc(100vh - 238px);
  margin: 0 auto;
  padding: 74px 24px 46px;
  display: grid;
  grid-template-columns: minmax(0, 860px) 360px;
  gap: 56px;
  justify-content: space-between;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 6px 10px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  color: #fff;
  font-size: clamp(42px, 5.7vw, 88px);
  line-height: .96;
}

h2 {
  color: var(--ink);
  font-size: clamp(32px, 3.4vw, 58px);
  line-height: 1.05;
}

.hero-copy p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .88);
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.hero-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 16px 0;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.hero-card p {
  color: rgba(255, 255, 255, .78);
}

.hero-index {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 38px;
}

.hero-index a {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-left: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.hero-index a:first-child {
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.hero-index span {
  color: var(--gold);
  font-size: 24px;
}

.positioning,
.services-mosaic,
.capabilities,
.project-proof,
.work,
.method,
.brief,
.content-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 92px 24px;
}

.positioning {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(320px, 430px);
  gap: 68px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.positioning-right p,
.brief p {
  color: var(--muted);
  font-size: 19px;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.proof-points span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: 48px;
  margin-bottom: 38px;
}

.section-head.wide {
  grid-template-columns: 280px minmax(0, 900px);
}

.service-board {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 26px;
  background: var(--graphite);
  color: #fff;
  text-decoration: none;
}

.service-card-large {
  grid-row: span 2;
  min-height: 736px;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .56;
  transform: scale(1.03);
  transition: opacity .35s ease, transform .35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 21, 27, .1), rgba(14, 21, 27, .92));
}

.service-card:hover img,
.service-card:focus-visible img {
  opacity: .72;
  transform: scale(1.06);
}

.service-card span,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card span {
  color: var(--gold);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.service-card h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.16;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}

.service-card p {
  max-width: 430px;
  margin-top: 12px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

.capability-stack {
  display: grid;
  gap: 18px;
}

.capability {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  min-height: 540px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.capability.reverse {
  grid-template-columns: minmax(360px, 480px) minmax(0, 1fr);
}

.capability.reverse .capability-media {
  order: 2;
}

.capability-media {
  min-height: 540px;
  overflow: hidden;
}

.capability-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.capability-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.capability-copy span,
.work-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-copy h3 {
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.06;
}

.capability-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.capability-copy a {
  margin-top: 28px;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.project-proof {
  padding-top: 96px;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--graphite);
  color: #fff;
  text-decoration: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: .74;
  transition: opacity .35s ease, transform .35s ease;
}

.project-card:hover img,
.project-card:focus-visible img {
  opacity: .86;
  transform: scale(1.035);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 17, 22, .82));
}

.project-card div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding-top: 18px;
  border-top: 3px solid var(--gold);
}

.project-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-card h3 {
  color: #fff;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.08;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.project-footer span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.project-footer a {
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.work {
  max-width: none;
  background: var(--ink);
}

.work .section-head {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.work h2 {
  color: #fff;
}

.work-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  grid-template-rows: repeat(2, 360px);
  gap: 16px;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
}

.work-card.large {
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 17, 22, .9));
}

.work-card div {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 26px;
}

.work-card h3 {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 40px);
  line-height: 1.05;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-list li {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.method-list strong {
  display: block;
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 24px;
}

.method-list h3 {
  color: var(--ink);
  font-size: 24px;
}

.method-list p {
  margin-top: 10px;
  color: var(--muted);
}

.brief {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(360px, 500px);
  gap: 66px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.brief-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--graphite);
}

.brief-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-form input,
.brief-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 0;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: rgba(255, 255, 255, .5);
}

.brief-form textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - 1280px) / 2));
  background: #0b1116;
  color: rgba(255, 255, 255, .68);
}

.site-footer strong {
  color: #fff;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu a {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
  text-decoration: none;
}

.woocommerce .site-main,
.woocommerce-page .site-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 2px;
  background: var(--gold);
  color: #121212;
  font-weight: 900;
}

.archive-head,
.singular-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.archive-head h1,
.singular-head h1 {
  color: var(--ink);
  font-size: clamp(36px, 4vw, 70px);
  line-height: 1;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-landing .archive-head p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
}

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

.portfolio-card {
  min-height: 100%;
  overflow: hidden;
  background: var(--graphite);
}

.portfolio-card a {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-decoration: none;
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: opacity .35s ease, transform .35s ease;
}

.portfolio-card a:hover img,
.portfolio-card a:focus-visible img {
  opacity: .86;
  transform: scale(1.035);
}

.portfolio-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(10, 17, 22, .9));
}

.portfolio-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.portfolio-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-card h2 {
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
}

.portfolio-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .8);
}

.portfolio-return {
  max-width: 780px;
  margin: 34px auto 0;
}

.post-card {
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
}

.post-card a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.post-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.post-card span {
  padding: 24px 24px 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-card h2 {
  padding: 10px 24px 0;
  color: var(--ink);
  font-size: 28px;
}

.post-card p {
  padding: 12px 24px 24px;
  color: var(--muted);
}

.singular {
  max-width: 1040px;
}

.singular-image {
  margin-bottom: 38px;
}

.singular-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.entry-content {
  color: var(--text);
  font-size: 18px;
}

.entry-content > * {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.entry-content > .alignwide {
  max-width: 1040px;
}

.entry-content > .alignfull {
  max-width: none;
  width: calc(100vw - 48px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote,
.entry-content figure,
.entry-content table,
.entry-content .wp-block-buttons {
  margin-top: 0;
  margin-bottom: 24px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  max-width: 780px;
  margin: 42px auto 18px;
  color: var(--ink);
  line-height: 1.1;
}

.entry-content h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.entry-content h3 {
  font-size: 28px;
}

.entry-content a:not(.button):not(.wp-block-button__link) {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.entry-content .gbs-lead {
  color: var(--text);
  font-size: 22px;
  line-height: 1.45;
}

.entry-content .gbs-section {
  max-width: 1040px;
  margin-top: 52px;
  margin-bottom: 52px;
}

.entry-content .gbs-section > h2:first-child {
  margin-top: 0;
}

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

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

.gbs-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.gbs-card h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
  margin: 0 0 10px;
}

.gbs-card p,
.gbs-card ul,
.gbs-card ol {
  margin-bottom: 0;
  color: var(--muted);
}

.gbs-card strong {
  color: var(--ink);
}

.gbs-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.gbs-panel-dark {
  padding: 28px;
  background: var(--graphite);
  color: #fff;
}

.gbs-panel-dark h2,
.gbs-panel-dark h3,
.gbs-panel-dark p,
.gbs-panel-dark li {
  color: #fff;
}

.gbs-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.gbs-steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.gbs-steps li {
  counter-increment: steps;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.gbs-steps li::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.gbs-steps h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 23px;
}

.gbs-steps p {
  margin: 0;
  color: var(--muted);
}

.gbs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.gbs-table th {
  background: var(--graphite);
  color: #fff;
}

.gbs-table th,
.gbs-table td {
  padding: 14px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.gbs-faq {
  display: grid;
  gap: 12px;
}

.gbs-faq details {
  border: 1px solid var(--line);
  background: #fff;
}

.gbs-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.gbs-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.gbs-cta {
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background: var(--graphite);
  color: #fff;
}

.gbs-cta h2,
.gbs-cta p {
  color: #fff;
}

.gbs-cta p {
  margin-bottom: 0;
}

.entry-content .wpcf7 {
  max-width: 760px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.entry-content .wpcf7 label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.entry-content .wpcf7 input,
.entry-content .wpcf7 textarea,
.entry-content .wpcf7 select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.entry-content .wpcf7-submit {
  min-height: 46px;
  width: auto;
  border: 0;
  border-radius: 2px;
  background: var(--gold);
  color: #121212;
  font-weight: 900;
  cursor: pointer;
}

.entry-content blockquote {
  padding: 24px;
  border-left: 6px solid var(--gold);
  background: var(--paper);
  color: var(--ink);
  font-size: 22px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.entry-content .wp-block-cover {
  min-height: 480px;
}

.nav-links,
.page-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 34px;
}

.page-numbers,
.post-page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.page-numbers.current,
.post-page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .links {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 55px rgba(14, 21, 27, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .site-header.is-menu-open .links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .links > a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .links > a:last-child {
    border-bottom: 0;
  }

  .primary-menu {
    display: grid;
    gap: 0;
    justify-content: stretch;
  }

  .primary-menu > li > a {
    display: block;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .primary-menu > li:last-child > a {
    border-bottom: 0;
  }

  .primary-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero-frame,
  .positioning,
  .section-head,
  .section-head.wide,
  .brief,
  .capability,
  .capability.reverse,
  .gbs-split,
  .gbs-cta {
    grid-template-columns: 1fr;
  }

  .capability.reverse .capability-media {
    order: 0;
  }

  .hero-index,
  .service-board,
  .project-strip,
  .method-list,
  .proof-points,
  .portfolio-grid,
  .gbs-grid,
  .gbs-grid.two,
  .gbs-steps,
  .post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-large {
    grid-row: auto;
    grid-column: span 2;
    min-height: 500px;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 782px) {
  body.logged-in .site-header {
    top: 46px;
  }
}

@media (max-width: 680px) {
  body.logged-in .site-header {
    top: 0;
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 0 16px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand em {
    font-size: 8px;
  }

  .brand-mark {
    width: 26px;
    height: 36px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 13px;
  }

  .links {
    right: 16px;
    left: 16px;
  }

  .hero,
  .hero-frame {
    min-height: auto;
  }

  .hero-frame {
    padding: 52px 18px 28px;
    gap: 28px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-index {
    grid-template-columns: 1fr;
    padding: 0 18px 34px;
  }

  .hero-index a,
  .hero-index a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .22);
    border-top: 0;
  }

  .hero-index a:first-child {
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .positioning,
  .services-mosaic,
  .capabilities,
  .project-proof,
  .work,
  .method,
  .brief,
  .content-shell {
    padding: 58px 18px;
  }

  .proof-points,
  .service-board,
  .project-strip,
  .method-list,
  .work-grid,
  .portfolio-grid,
  .gbs-grid,
  .gbs-grid.two,
  .gbs-steps,
  .post-list {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-rows: none;
  }

  .work-card,
  .work-card.large {
    min-height: 360px;
    grid-row: auto;
  }

  .service-card,
  .service-card-large,
  .project-card,
  .project-card img,
  .portfolio-card a {
    min-height: 360px;
  }

  .service-card-large {
    grid-column: auto;
  }

  .project-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .capability,
  .capability-media,
  .capability-media img {
    min-height: 380px;
  }

  .capability-copy {
    padding: 30px 22px;
  }

  .brief-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }

  .entry-content {
    font-size: 17px;
  }

  .entry-content > .alignfull {
    width: calc(100vw - 36px);
  }
}
