/* Direction 3: The Glass Hub — soft layered translucency over cream paper */

.gh-root {
  --gh-bg: #F2EDE0;
  --gh-bg-2: #EAE3D1;
  --gh-paper: #FBF8EF;
  --gh-ink: #1A1714;
  --gh-ink-2: #4A4640;
  --gh-mute: #8C857A;
  --gh-rule: rgba(122, 31, 31, 0.12);
  --gh-glass-bg: rgba(255, 252, 244, 0.55);
  --gh-glass-bdr: rgba(122, 31, 31, 0.08);
  --gh-glass-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 8px 32px -8px rgba(60, 30, 20, 0.08), 0 1px 2px rgba(60, 30, 20, 0.04);
  --gh-accent: #7A1F1F;
  --gh-accent-soft: rgba(122, 31, 31, 0.18);

  --gh-blob-1: #E8B89A;
  --gh-blob-2: #C97A6B;
  --gh-blob-3: #D9C9A0;

  background: var(--gh-bg);
  color: var(--gh-ink);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  min-height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;

  --gh-mono: 'JetBrains Mono', ui-monospace, monospace;
  --gh-serif: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
}

[data-theme="dark"] .gh-root {
  --gh-bg: #100D08;
  --gh-bg-2: #181410;
  --gh-paper: #1F1A14;
  --gh-ink: #F2EDDF;
  --gh-ink-2: #BFB8A6;
  --gh-mute: #807A6C;
  --gh-rule: rgba(217, 139, 107, 0.18);
  --gh-glass-bg: rgba(40, 32, 24, 0.45);
  --gh-glass-bdr: rgba(217, 139, 107, 0.14);
  --gh-glass-shadow: 0 1px 0 rgba(255, 220, 180, 0.05) inset, 0 12px 36px -8px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
  --gh-accent: #E8A584;
  --gh-accent-soft: rgba(232, 165, 132, 0.18);
  --gh-blob-1: #6B3422;
  --gh-blob-2: #4A1F1F;
  --gh-blob-3: #3A2E1A;
}

.gh-airy {
  --gh-pad: 120px;
  --gh-pad-x: 88px;
}

.gh-tight {
  --gh-pad: 80px;
  --gh-pad-x: 60px;
}

/* Backdrop */
.gh-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .gh-blob {
  mix-blend-mode: screen;
  opacity: 0.45;
  filter: blur(140px);
}

.gh-blob-1 {
  background: var(--gh-blob-1);
  width: 720px;
  height: 720px;
  top: -200px;
  right: -160px;
}

.gh-blob-2 {
  background: var(--gh-blob-2);
  width: 560px;
  height: 560px;
  top: 35%;
  left: -180px;
}

.gh-blob-3 {
  background: var(--gh-blob-3);
  width: 640px;
  height: 640px;
  bottom: -240px;
  right: 12%;
}

.gh-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(60, 40, 30, 0.045) 1px, transparent 0);
  background-size: 4px 4px;
  opacity: 0.6;
}

[data-theme="dark"] .gh-grain {
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 220, 180, 0.025) 1px, transparent 0);
}

/* Glass primitive */
.gh-glass {
  background: var(--gh-glass-bg);
  border: 1px solid var(--gh-glass-bdr);
  border-radius: 22px;
  box-shadow: var(--gh-glass-shadow);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  position: relative;
}

/* Position content above backdrop */
.gh-root>header,
.gh-root>section,
.gh-root>footer {
  position: relative;
  z-index: 1;
}

/* Top bar */
.gh-top {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 var(--gh-pad-x);
  margin-top: 16px;
}

.gh-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 20px;
  border-radius: 999px;
}

.gh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.gh-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gh-accent);
  color: var(--gh-paper);
  display: grid;
  place-items: center;
  font-family: var(--gh-serif);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

.gh-wordmark {
  width: 34px;
  height: 34px;
  object-fit: cover;
  display: block;
}

.gh-brand-name {
  font-family: var(--gh-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gh-ink);
  text-decoration: none;
}

.gh-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.gh-nav a {
  font-size: 13.5px;
  color: var(--gh-ink-2);
  text-decoration: none;
  transition: color .2s;
}

.gh-nav a:hover {
  color: var(--gh-accent);
}

.gh-theme-link {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13.5px;
  color: var(--gh-ink-2);
  letter-spacing: 0.04em;
  border-left: 1px solid var(--gh-rule);
  padding-left: 24px;
  margin-left: 0;
  transition: color .2s;
}

.gh-theme-link:hover {
  color: var(--gh-accent);
}

.gh-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--gh-ink);
  color: var(--gh-bg);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}

.gh-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.gh-cta-lg {
  padding: 14px 26px;
  font-size: 14.5px;
}

.gh-cta-ghost {
  background: transparent;
  color: var(--gh-ink);
  border: 1px solid var(--gh-rule);
}

.gh-contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero */
.gh-hero {
  padding: calc(var(--gh-pad) - 16px) var(--gh-pad-x) var(--gh-pad);
  text-align: left;
  max-width: 1400px;
  margin: 0 auto;
}

.gh-hero-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.gh-hero-text {
  display: flex;
  flex-direction: column;
}

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

.gh-hero-photo-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.gh-hero-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  border-radius: 22px;
  overflow: hidden;
}

.gh-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gh-photo-placeholder {
  background: var(--gh-glass-bg);
  border: 1px solid var(--gh-glass-bdr);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.gh-photo-initials {
  font-family: var(--gh-serif);
  font-size: 72px;
  font-weight: 400;
  color: var(--gh-accent);
  opacity: 0.4;
  line-height: 1;
}

.gh-photo-note {
  font-family: var(--gh-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gh-mute);
}

.gh-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gh-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gh-ink-2);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gh-glass-bg);
  border: 1px solid var(--gh-glass-bdr);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 56px;
}

.gh-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gh-accent);
  box-shadow: 0 0 0 0 var(--gh-accent-soft);
  animation: gh-pulse 2.4s ease-out infinite;
}

@keyframes gh-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--gh-accent-soft);
  }

  100% {
    box-shadow: 0 0 0 14px transparent;
  }
}

.gh-hero-title {
  font-family: var(--gh-serif);
  font-size: clamp(64px, 10vw, 168px);
  line-height: 0.96;
  letter-spacing: -0.038em;
  font-weight: 400;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0.04em;
  text-wrap: balance;
}

.gh-hero-title em {
  font-style: italic;
  color: var(--gh-accent);
}

.gh-hero-lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  max-width: 60ch;
  color: var(--gh-ink-2);
  margin: 0 0 12px;
  text-wrap: pretty;
}

.gh-hero-stats {
  font-family: var(--gh-mono);
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.07em;
  color: var(--gh-mute);
  margin: 0 0 40px;
}

.gh-hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gh-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gh-glass-bg);
  border: 1px solid var(--gh-glass-bdr);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--gh-ink);
}

.gh-chip-mute {
  color: var(--gh-mute);
}

/* Proof Points Strip */
.gh-proof-strip {
  padding: 0 var(--gh-pad-x) var(--gh-pad);
  max-width: 1400px;
  margin: 0 auto;
}

.gh-proof-inner {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gh-proof-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.gh-proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 28px;
  border-right: 1px solid var(--gh-rule);
}

.gh-proof-stat:first-child {
  padding-left: 4px;
}

.gh-proof-stat:last-child {
  border-right: none;
}

.gh-proof-num {
  font-family: var(--gh-serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
  color: var(--gh-ink);
  letter-spacing: -0.025em;
}

.gh-proof-label {
  font-family: var(--gh-mono);
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gh-mute);
}

.gh-proof-cred {
  font-family: var(--gh-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--gh-ink-2);
  margin: 0;
}

.gh-proof-accts {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gh-mute);
  margin: 0;
}

/* Sections */
.gh-section {
  padding: var(--gh-pad) var(--gh-pad-x);
  max-width: 1400px;
  margin: 0 auto;
}

.gh-sec-h {
  margin-bottom: 48px;
}

.gh-sec-h-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
  flex-wrap: wrap;
}

.gh-eyebrow {
  font-family: var(--gh-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gh-accent);
  display: inline-block;
  margin-bottom: 16px;
}

.gh-section h2 {
  font-family: var(--gh-serif);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}

.gh-section h2 em {
  font-style: italic;
  color: var(--gh-accent);
}

.gh-link {
  font-size: 14px;
  color: var(--gh-accent);
  text-decoration: none;
  font-weight: 500;
}

.gh-link:hover {
  text-decoration: underline;
}

/* About */
.gh-about {
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.gh-about-stack {
  grid-template-columns: 1fr;
  gap: 24px;
}

.gh-about p {
  font-family: var(--gh-serif);
  font-size: 22px;
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}

.gh-about em {
  font-style: italic;
  color: var(--gh-accent);
}

.gh-muted {
  color: var(--gh-ink-2);
}

/* Pillars */
.gh-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gh-pillar {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.gh-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 16px 48px -8px rgba(60, 30, 20, 0.16), 0 2px 4px rgba(60, 30, 20, 0.06);
}

.gh-pillar-n {
  font-family: var(--gh-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gh-accent);
}

.gh-pillar h3 {
  font-family: var(--gh-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.15;
  text-wrap: balance;
}

.gh-pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gh-ink-2);
  margin: 0;
  text-wrap: pretty;
}

.gh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  font-family: var(--gh-mono);
  font-size: 11px;
}

.gh-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gh-accent-soft);
  color: var(--gh-accent);
}

/* Field Notes */
.gh-field-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gh-fn-card {
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
  min-height: 180px;
}

.gh-fn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 16px 48px -8px rgba(60, 30, 20, 0.16), 0 2px 4px rgba(60, 30, 20, 0.06);
}

.gh-fn-kicker {
  font-family: var(--gh-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gh-accent);
}

.gh-fn-title {
  font-family: var(--gh-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin: 0;
  line-height: 1.15;
  text-wrap: balance;
  flex: 1;
}

.gh-fn-label {
  font-size: 14px;
  color: var(--gh-ink-2);
  font-style: italic;
}

.gh-fn-arrow {
  font-size: 13px;
  color: var(--gh-accent);
  font-weight: 500;
  margin-top: auto;
}

/* The Workshop */
.gh-workshop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gh-ws-card {
  padding: 40px 36px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}

a.gh-ws-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 16px 48px -8px rgba(60, 30, 20, 0.16), 0 2px 4px rgba(60, 30, 20, 0.06);
}

.gh-ws-dim {
  opacity: 0.55;
}

.gh-ws-name {
  font-family: var(--gh-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--gh-ink);
}

.gh-ws-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gh-ink-2);
  margin: 0;
  flex: 1;
}

.gh-ws-status {
  font-size: 13px;
  font-weight: 500;
}

.gh-ws-s-live,
.gh-ws-s-github,
.gh-ws-s-lovable {
  color: var(--gh-accent);
}

.gh-ws-s-screenshot {
  color: var(--gh-mute);
}

.gh-ws-s-coming-soon {
  color: var(--gh-mute);
  opacity: 0.6;
}

/* The Room */
.gh-room {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gh-room-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gh-room-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.gh-room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gh-room-card:hover .gh-room-photo img {
  transform: scale(1.03);
}

.gh-room-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gh-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-room-placeholder span {
  font-family: var(--gh-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gh-mute);
}

.gh-room-caption {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gh-room-kind {
  font-family: var(--gh-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gh-accent);
}

.gh-room-venue {
  font-family: var(--gh-serif);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--gh-ink);
}

.gh-room-date {
  font-family: var(--gh-mono);
  font-size: 12px;
  color: var(--gh-mute);
}

a.gh-room-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* (Speaking section replaced by The Room — styles above) */

/* Career */
.gh-career {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gh-career-row {
  padding: 36px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
}

.gh-career-when {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gh-career-years {
  font-family: var(--gh-mono);
  font-size: 13px;
  color: var(--gh-ink);
  letter-spacing: 0.04em;
}

.gh-career-where {
  font-family: var(--gh-mono);
  font-size: 11px;
  color: var(--gh-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gh-career-org {
  font-family: var(--gh-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin-bottom: 6px;
}

.gh-career-role {
  font-family: var(--gh-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gh-accent);
  margin-bottom: 16px;
}

.gh-career-para {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gh-ink-2);
  margin: 0;
}

/* Contact */
.gh-contact-lede {
  font-family: var(--gh-serif);
  font-size: 21px;
  line-height: 1.55;
  color: var(--gh-ink-2);
  margin: -16px 0 40px;
  text-wrap: pretty;
}

.gh-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gh-linkrow {
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 140px 1fr 24px;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}

.gh-linkrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 12px 36px -8px rgba(60, 30, 20, 0.14), 0 2px 4px rgba(60, 30, 20, 0.05);
}

.gh-linkrow-label {
  font-family: var(--gh-serif);
  font-size: 22px;
  letter-spacing: -0.015em;
}

.gh-linkrow-primary .gh-linkrow-label {
  color: var(--gh-accent);
}

.gh-linkrow-handle {
  font-family: var(--gh-mono);
  font-size: 12.5px;
  color: var(--gh-mute);
}

.gh-linkrow-arrow {
  color: var(--gh-accent);
  font-size: 18px;
  text-align: right;
}

/* Footer */
.gh-foot {
  padding: 40px var(--gh-pad-x) 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  font-family: var(--gh-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--gh-mute);
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--gh-rule);
}

.gh-foot-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.gh-foot-right {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}

.gh-foot-copy {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.gh-foot-link {
  color: var(--gh-mute);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gh-foot-link:hover {
  color: var(--gh-accent);
}

.gh-foot-handle {
  opacity: 0.65;
  font-size: 10px;
}

.gh-foot-note {
  opacity: 0.55;
}

/* Back to top */
.gh-back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gh-glass-bg);
  border: 1px solid var(--gh-glass-bdr);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  color: var(--gh-mute);
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  opacity: 0.55;
  transition: opacity .2s, color .2s;
}

.gh-back-top:hover {
  opacity: 1;
  color: var(--gh-accent);
}

/* Responsive */
@media (max-width: 1200px) {
  .gh-workshop {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .gh-hero-split {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

  .gh-field-notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .gh-workshop {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .gh-airy {
    --gh-pad: 64px;
    --gh-pad-x: 24px;
  }

  .gh-hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .gh-hero-photo-wrap {
    order: -1;
    justify-content: center;
  }

  .gh-hero-photo {
    max-width: 260px;
  }

  .gh-proof-inner {
    padding: 24px 20px;
    gap: 20px;
  }

  .gh-proof-stat {
    padding: 8px 16px;
  }

  .gh-proof-stat:first-child {
    padding-left: 16px;
  }

  .gh-proof-num {
    font-size: 26px;
  }

  .gh-pillars {
    grid-template-columns: 1fr;
  }

  .gh-field-notes {
    grid-template-columns: 1fr;
  }

  .gh-workshop {
    grid-template-columns: 1fr;
  }

  .gh-room {
    grid-template-columns: 1fr;
  }

  .gh-links {
    grid-template-columns: 1fr;
  }

  .gh-foot {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    gap: 20px;
  }

  .gh-foot-left,
  .gh-foot-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .gh-nav {
    display: none;
  }

  .gh-career-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }

  .gh-career-org {
    font-size: 20px;
  }
}