:root {
  --color-bg: #080808;
  --color-bg-soft: #121212;
  --color-card: #181818;
  --color-primary: #d8791f;
  --color-primary-dark: #9f5014;
  --color-text: #ffffff;
  --color-muted: #b8b8b8;
  --color-border: #2a2a2a;
  --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.35);
  --radius: 10px;
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 10%, #1a1a1a 0%, var(--color-bg) 45%), var(--color-bg);
  color: var(--color-text);
  font-family: "Bahnschrift", "Rajdhani", "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--color-text);
  text-decoration-color: rgba(216, 121, 31, 0.6);
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: var(--color-primary);
}

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

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Agency FB", "Bahnschrift", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

p {
  margin: 0 0 1rem;
}

.gx-container {
  width: min(var(--container-width), 100% - 2rem);
  margin-inline: auto;
}

.gx-muted {
  color: var(--color-muted);
}

.gx-kicker {
  margin-bottom: 0.7rem;
  color: var(--color-primary);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.gx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  color: var(--color-text);
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 0.75rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.gx-btn:hover,
.gx-btn:focus {
  color: var(--color-text);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(216, 121, 31, 0.24);
}

.gx-btn--ghost {
  background: transparent;
  border-color: var(--color-border);
}

.gx-btn--small {
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
}

.gx-top-bar {
  border-bottom: 1px solid var(--color-border);
  background: #050505;
  font-size: 0.86rem;
}

.gx-top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}

.gx-top-bar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--color-muted);
}

.gx-top-bar__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.gx-top-bar .dashicons {
  width: 16px;
  height: 16px;
  font-size: 16px;
  color: var(--color-primary);
}

.gx-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(6px);
}

.gx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.gx-branding {
  flex: 1;
  min-width: 170px;
}

.gx-branding .custom-logo {
  max-height: 56px;
  width: auto;
}

.gx-site-title {
  display: inline-block;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gx-mobile-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  cursor: pointer;
}

.gx-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.gx-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 1px);
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.gx-nav.is-open {
  display: flex;
}

.gx-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.gx-nav .menu a {
  text-decoration: none;
  font-weight: 600;
}

.gx-btn--nav {
  width: 100%;
}

.gx-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 80vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.gx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(8, 8, 8, 0.95) 15%, rgba(8, 8, 8, 0.55) 60%),
    url("../img/hero-workshop.svg") center/cover no-repeat;
  z-index: -2;
}

.gx-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(216, 121, 31, 0) 0%, rgba(216, 121, 31, 0.26) 50%, rgba(216, 121, 31, 0) 100%),
    repeating-linear-gradient(
      130deg,
      rgba(216, 121, 31, 0.07),
      rgba(216, 121, 31, 0.07) 2px,
      transparent 2px,
      transparent 20px
    );
  z-index: -1;
}

.gx-hero__content {
  padding: 4.5rem 0;
  position: relative;
}

.gx-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 8vw, 4rem);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.gx-hero__subheadline {
  font-size: clamp(1rem, 2.7vw, 1.25rem);
  color: #e6e6e6;
  max-width: 52ch;
}

.gx-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.gx-section {
  padding: clamp(3.2rem, 7vw, 5.5rem) 0;
}

.gx-section--alt {
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.55) 0%, rgba(18, 18, 18, 0.15) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.gx-section__head {
  margin-bottom: 1.8rem;
}

.gx-section__head h2 {
  max-width: 22ch;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.gx-service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.gx-service-card {
  background: linear-gradient(170deg, #1e1e1e 0%, var(--color-card) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.1rem;
  min-height: 130px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gx-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 121, 31, 0.5);
}

.gx-service-card .dashicons {
  color: var(--color-primary);
  width: 28px;
  height: 28px;
  font-size: 28px;
}

.gx-service-card h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.gx-about {
  display: grid;
  gap: 1rem;
}

.gx-about h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
}

.gx-about__intro p {
  max-width: 64ch;
  color: #d9d9d9;
}

.gx-about__highlights {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: linear-gradient(170deg, #1d1d1d 0%, #141414 100%);
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
}

.gx-about__highlights h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.gx-about__highlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.gx-about__highlights li {
  position: relative;
  padding-left: 1.1rem;
  color: #e3e3e3;
}

.gx-about__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateY(-50%);
}

.gx-contact-grid {
  display: grid;
  gap: 1rem;
}

.gx-contact-info,
.gx-contact-form {
  background: linear-gradient(170deg, #1d1d1d 0%, #141414 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.gx-contact-info ul {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.gx-contact-info li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.gx-contact-info .dashicons {
  color: var(--color-primary);
}

.gx-contact-form h3 {
  margin-bottom: 0.55rem;
}

.gx-form-placeholder {
  margin-top: 1rem;
  border: 1px dashed rgba(216, 121, 31, 0.65);
  background: rgba(216, 121, 31, 0.08);
  border-radius: 8px;
  padding: 1rem;
  color: #f3d2b2;
}

.gx-site-content {
  min-height: 42vh;
}

.gx-template {
  padding: 3rem 0;
}

.gx-content-wrap {
  width: min(840px, 100% - 2rem);
  margin-inline: auto;
}

.gx-page-headline {
  margin-bottom: 1.4rem;
}

.gx-page-headline h1 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.gx-post-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
}

.gx-page,
.gx-single-post {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.gx-page::before,
.gx-single-post::before {
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(216, 121, 31, 0.16) 100%);
}

.gx-post-card + .gx-post-card {
  margin-top: 1rem;
}

.gx-post-card__title {
  margin-bottom: 0.4rem;
}

.gx-post-card__title a {
  text-decoration: none;
}

.gx-post-card__meta {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.gx-post-card__image,
.gx-single-post__image {
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
}

.gx-entry-content > *:last-child {
  margin-bottom: 0;
}

.gx-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.gx-post-card__meta span {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  line-height: 1;
  background: #121212;
}

.gx-post-card__excerpt p:last-child {
  margin-bottom: 0;
}

.gx-post-card__readmore {
  margin-top: 1rem;
}

.gx-single-post {
  padding: 0;
}

.gx-single-post__header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.gx-single-post__meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.gx-single-post__meta-line span {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  background: #111111;
  line-height: 1;
}

.gx-entry-content {
  color: #ebebeb;
}

.gx-entry-content h2,
.gx-entry-content h3,
.gx-entry-content h4 {
  margin: 1.5rem 0 0.7rem;
}

.gx-entry-content p,
.gx-entry-content ul,
.gx-entry-content ol,
.gx-entry-content blockquote,
.gx-entry-content table,
.gx-entry-content pre {
  margin-bottom: 1rem;
}

.gx-entry-content ul,
.gx-entry-content ol {
  padding-left: 1.25rem;
}

.gx-entry-content a {
  color: #ffd5ae;
}

.gx-entry-content blockquote {
  margin-left: 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--color-primary);
  background: #111111;
  border-radius: 0 8px 8px 0;
}

.gx-entry-content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
}

.gx-entry-content th,
.gx-entry-content td {
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.7rem;
  text-align: left;
}

.gx-entry-content th {
  background: #121212;
}

.gx-entry-content pre,
.gx-entry-content code {
  background: #121212;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

.gx-entry-content pre {
  padding: 0.8rem;
  overflow-x: auto;
}

.gx-entry-content code {
  padding: 0.08rem 0.35rem;
}

.gx-entry-content pre code {
  border: 0;
  padding: 0;
}

.gx-entry-content img {
  border-radius: 8px;
}

.gx-single-post__taxonomies {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: 0.7rem;
}

.gx-taxonomy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.gx-taxonomy-label {
  color: var(--color-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gx-taxonomy-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gx-taxonomy-links a {
  display: inline-flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  text-decoration: none;
  font-size: 0.86rem;
  background: #111111;
}

.gx-post-nav {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.gx-post-nav a {
  display: block;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: linear-gradient(170deg, #1c1c1c 0%, #141414 100%);
  padding: 0.8rem 0.95rem;
  text-decoration: none;
  font-weight: 600;
}

.gx-post-nav__next {
  text-align: right;
}

.navigation.pagination,
.posts-navigation,
.post-navigation {
  margin-top: 1.4rem;
}

.page-numbers {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #121212;
  text-decoration: none;
  margin-right: 0.35rem;
  padding: 0 0.75rem;
}

.page-numbers.current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #080808;
  font-weight: 700;
}

.gx-comments {
  margin-top: 1.4rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.gx-comments__inner {
  padding: clamp(1rem, 2.4vw, 1.6rem);
}

.gx-comments__title,
.gx-comment-reply-title {
  margin-bottom: 1rem;
}

.gx-comment-reply-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.gx-comment-reply-title #cancel-comment-reply-link {
  display: inline-flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.18rem 0.6rem;
  text-decoration: none;
  color: var(--color-muted);
}

.gx-comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gx-comment-list .comment {
  list-style: none;
}

.gx-comment-list .comment-body {
  background: linear-gradient(170deg, #1c1c1c 0%, #121212 100%);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.9rem;
}

.gx-comment-list > .comment {
  margin-bottom: 0.8rem;
}

.gx-comment-list .children {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  list-style: none;
  border-left: 1px solid var(--color-border);
}

.gx-comment-list .comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.55rem;
}

.gx-comment-list .comment-author {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gx-comment-list .comment-author .fn a {
  text-decoration: none;
}

.gx-comment-list .says {
  display: none;
}

.gx-comment-list .avatar {
  border-radius: 50%;
  border: 1px solid var(--color-border);
}

.gx-comment-list .comment-metadata {
  font-size: 0.86rem;
  color: var(--color-muted);
}

.gx-comment-list .comment-content p:last-child {
  margin-bottom: 0;
}

.gx-comment-list .reply {
  margin-top: 0.7rem;
}

.gx-comment-list .comment-reply-link {
  display: inline-flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #101010;
  padding: 0.25rem 0.68rem;
  text-decoration: none;
  font-size: 0.86rem;
}

.gx-comment-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 1rem 0;
}

.gx-comment-nav a {
  text-decoration: none;
}

.gx-comments-closed {
  margin-top: 0.8rem;
  color: var(--color-muted);
}

.gx-comment-form {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.gx-comment-form p {
  margin: 0;
}

.gx-comment-notes {
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.gx-comment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.gx-comment-form input[type="text"],
.gx-comment-form input[type="email"],
.gx-comment-form input[type="url"],
.gx-comment-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #101010;
  color: var(--color-text);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.gx-comment-form input:focus,
.gx-comment-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(216, 121, 31, 0.18);
}

.gx-required {
  color: var(--color-primary);
}

.gx-comment-form .form-submit {
  margin-top: 0.2rem;
}

.gx-comment-form .form-submit .gx-btn {
  cursor: pointer;
}

.gx-comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.gx-comment-form .comment-form-cookies-consent input {
  width: auto;
}

.gx-comment-form .comment-form-cookies-consent label {
  margin: 0;
  font-weight: 500;
}

.comment-awaiting-moderation {
  display: inline-flex;
  margin-top: 0.5rem;
  color: #f7ca93;
  font-size: 0.86rem;
}

.gx-center {
  text-align: center;
}

.gx-template--404 {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.gx-404-wrap {
  width: min(760px, 100% - 2rem);
}

.gx-404-wrap h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 6vw, 3.3rem);
  text-transform: uppercase;
}

.gx-404-wrap > p {
  max-width: 60ch;
  margin-inline: auto;
  color: #d8d8d8;
}

.gx-404-scene {
  --gx-wheel-run: min(58vw, 470px);
  position: relative;
  height: 190px;
  margin-bottom: 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background:
    radial-gradient(circle at 78% 22%, rgba(216, 121, 31, 0.26), transparent 40%),
    linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
  overflow: hidden;
}

.gx-404-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 6px;
  background: linear-gradient(90deg, #2b2b2b 0%, #3d3d3d 40%, #252525 100%);
}

.gx-404-track::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(216, 121, 31, 0.7), rgba(216, 121, 31, 0.7) 14px, transparent 14px, transparent 28px);
  opacity: 0.65;
}

.gx-404-wheel {
  position: absolute;
  left: 8%;
  bottom: 25px;
  width: clamp(78px, 13vw, 104px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 11px solid #232323;
  background: radial-gradient(circle at 30% 30%, #454545, #1a1a1a 58%, #0f0f0f 100%);
  box-shadow: inset 0 0 0 4px #0b0b0b, 0 7px 16px rgba(0, 0, 0, 0.45);
  animation: gx-wheel-roll 4.6s ease-in-out infinite;
}

.gx-404-wheel::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #9a9a9a;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px #2a2a2a;
}

.gx-404-wheel span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 2px;
  background: rgba(216, 121, 31, 0.85);
  transform-origin: center;
}

.gx-404-wheel span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg);
}

.gx-404-wheel span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gx-404-wheel span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gx-404-wheel span:nth-child(4) {
  transform: translate(-50%, -50%) rotate(135deg);
}

.gx-404-sparks {
  position: absolute;
  left: 19%;
  bottom: 102px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(216, 121, 31, 0.9);
  filter: blur(0.3px);
  box-shadow:
    26px -14px 0 -3px rgba(216, 121, 31, 0.8),
    44px -8px 0 -4px rgba(216, 121, 31, 0.7),
    62px -21px 0 -5px rgba(216, 121, 31, 0.65);
  animation: gx-sparks 1.6s ease-in-out infinite;
}

.gx-404-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.gx-404-pitnote {
  margin-top: 1rem;
  border: 1px solid rgba(216, 121, 31, 0.45);
  border-radius: 10px;
  background: rgba(216, 121, 31, 0.08);
  padding: 0.82rem 1rem;
  color: #f2d4b5;
}

.gx-404-pitnote strong {
  color: #ffd5ae;
}

.gx-404-search {
  margin-top: 1.1rem;
}

.gx-404-search .search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.gx-404-search .search-field {
  width: min(100%, 420px);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #101010;
  color: var(--color-text);
  padding: 0.65rem 0.78rem;
  font: inherit;
}

.gx-404-search .search-field:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(216, 121, 31, 0.18);
}

.gx-404-search .search-submit {
  border: 1px solid var(--color-primary);
  color: var(--color-text);
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 0.65rem 1.05rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.gx-404-search .search-submit:hover,
.gx-404-search .search-submit:focus {
  box-shadow: 0 10px 18px rgba(216, 121, 31, 0.24);
}

@keyframes gx-wheel-roll {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  46% {
    transform: translateX(var(--gx-wheel-run)) rotate(760deg);
  }
  52% {
    transform: translateX(var(--gx-wheel-run)) rotate(760deg);
  }
  100% {
    transform: translateX(0) rotate(1440deg);
  }
}

@keyframes gx-sparks {
  0%,
  100% {
    opacity: 0.14;
    transform: translateY(0) scale(0.7);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-8px) scale(1);
  }
}

.gx-footer {
  margin-top: 2rem;
  background: #050505;
  border-top: 1px solid var(--color-border);
}

.gx-footer__grid {
  display: grid;
  gap: 1.6rem;
  padding: 2.4rem 0;
}

.gx-footer__col h2 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.gx-footer__title {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.gx-footer__links,
.gx-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.gx-footer__bottom {
  border-top: 1px solid var(--color-border);
  color: #8d8d8d;
  font-size: 0.88rem;
  padding: 0.9rem 0;
}

.gx-footer .custom-logo {
  max-height: 48px;
  width: auto;
}

.gx-footer a {
  text-decoration: none;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.screen-reader-text:focus {
  left: 0.5rem;
  top: 0.5rem;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
}

@media (min-width: 768px) {
  .gx-about {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }

  .gx-post-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gx-comment-form .comment-form-author,
  .gx-comment-form .comment-form-email,
  .gx-comment-form .comment-form-url {
    margin: 0;
  }

  .gx-comment-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }

  .gx-comment-form .comment-form-author,
  .gx-comment-form .comment-form-email {
    grid-column: span 1;
  }

  .gx-comment-form .comment-form-url,
  .gx-comment-form .comment-form-comment,
  .gx-comment-form .comment-form-cookies-consent,
  .gx-comment-form .form-submit,
  .gx-comment-notes {
    grid-column: 1 / -1;
  }

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

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

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

@media (min-width: 992px) {
  .gx-mobile-toggle {
    display: none;
  }

  .gx-nav {
    position: static;
    display: flex;
    background: transparent;
    border: 0;
    padding: 0;
    align-items: center;
    flex-direction: row;
    gap: 1.2rem;
  }

  .gx-nav .menu {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .gx-btn--nav {
    width: auto;
  }

  .gx-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gx-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

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