/*
  Greenback Properties, LLC
  Definitive concept-art homepage implementation
  DATA. INVESTMENTS. RESULTS.
*/

/* 1. Tokens */
:root {
  --gb-black: #020605;
  --gb-navy: #061012;
  --gb-panel: #081315;
  --gb-card: #0D1717;
  --gb-green: #2F6D45;
  --gb-green-soft: #3F8657;
  --gb-green-dark: #163D2A;
  --gb-gold: #C99B4A;
  --gb-gold-soft: #D5B56B;
  --gb-white: #F4F0E8;
  --gb-muted: #B8B8AC;
  --gb-border: rgba(213, 181, 107, 0.28);
  --gb-border-green: rgba(63, 134, 87, 0.35);
  --gb-admin-sidebar: 292px;
  color-scheme: dark;
}

/* 2. Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.gb-body,
body.gb-admin-body {
  margin: 0;
  min-height: 100vh;
  color: var(--gb-white);
  background: var(--gb-black);
  font-family: Inter, Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(201, 155, 74, .32); color: var(--gb-white); }

/* 3. Shared layout */
.gb-section-inner {
  width: min(1700px, calc(100% - 124px));
  margin-inline: auto;
}
.gb-container,
.gb-container-wide {
  width: min(1700px, calc(100% - 124px));
  margin-inline: auto;
}
.gb-hidden { display: none !important; }
.gb-muted { color: var(--gb-muted); }
.gb-small { font-size: .84rem; }
.gb-eyebrow {
  margin: 0 0 14px;
  color: var(--gb-green-soft);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .82rem;
  font-weight: 800;
}
.gb-page-title,
.gb-section-heading h2,
.gb-trustee-copy h2,
.gb-mission-copy h2,
.gb-final-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
  font-weight: 500;
}
.gb-grid { display: grid; gap: 24px; }
.gb-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gb-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gb-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gb-section { padding: 104px 0; }
.gb-section-tight { padding: 54px 0; }
.gb-split { display: grid; grid-template-columns: 1.05fr .75fr; gap: 34px; align-items: start; }

/* 4. Header */
.gb-public-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  background: linear-gradient(180deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .34));
  border-bottom: 1px solid rgba(244, 240, 232, .04);
  transition: background .22s ease, border-color .22s ease, backdrop-filter .22s ease;
}
.gb-public-header.is-scrolled {
  background: rgba(2, 6, 5, .88);
  border-color: rgba(213, 181, 107, .14);
  backdrop-filter: blur(16px);
}
.gb-header-inner,
.gb-public-nav {
  width: min(1760px, calc(100% - 72px));
  height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.gb-public-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}
.gb-public-logo img {
  width: 265px;
  height: auto;
  max-height: 66px;
  object-fit: contain;
}
.gb-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  white-space: nowrap;
}
.gb-nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .095em;
  font-size: .72rem;
  font-weight: 800;
  color: rgba(244, 240, 232, .92);
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.gb-nav-links a:hover { color: var(--gb-gold-soft); }
.gb-admin-login,
.gb-header-admin-link {
  border: 1px solid rgba(201, 155, 74, .64);
  padding: 12px 19px;
  color: var(--gb-white) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gb-admin-login:hover,
.gb-header-admin-link:hover {
  background: rgba(201, 155, 74, .11);
  border-color: var(--gb-gold-soft);
}

/* 5. Hero */
.gb-hero-concept {
  min-height: 690px;
  height: 54vw;
  max-height: 890px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 6, 5, .98) 0%, rgba(2, 6, 5, .90) 42%, rgba(2, 6, 5, .52) 73%, rgba(2, 6, 5, .80) 100%),
    radial-gradient(circle at 74% 47%, rgba(47, 109, 69, .18), transparent 36%),
    var(--gb-black);
}
.gb-hero-city {
  position: absolute;
  inset: 70px 0 0 auto;
  width: 67%;
  height: calc(100% - 70px);
  background:
    linear-gradient(90deg, rgba(2, 6, 5, .92), rgba(2, 6, 5, .32) 42%, rgba(2, 6, 5, .74)),
    linear-gradient(180deg, rgba(2,6,5,.10), rgba(2,6,5,.20) 55%, rgba(2,6,5,.80)),
    url('/assets/img/site/hero-city.jpg') center right / cover no-repeat;
  opacity: .95;
  filter: saturate(.95) contrast(1.1);
}
.gb-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1760px, calc(100% - 124px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  padding-top: 94px;
}
.gb-hero-copy { max-width: 660px; }
.gb-hero-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 5.6vw, 6.6rem);
  line-height: 1.04;
  letter-spacing: -.052em;
  font-weight: 500;
  color: var(--gb-white);
}
.gb-hero-title span { color: var(--gb-gold); }
.gb-hero-text {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(244, 240, 232, .89);
  font-size: clamp(1rem, 1.13vw, 1.22rem);
  line-height: 1.68;
}
.gb-hero-mark-wrap {
  align-self: stretch;
  position: relative;
}
.gb-hero-gp-mark {
  position: absolute;
  right: 5.8%;
  top: 43%;
  width: min(39vw, 420px);
  transform: translateY(-50%);
  filter: drop-shadow(0 25px 52px rgba(0, 0, 0, .62));
  opacity: .82;
}

/* 6. Buttons */
.gb-actions { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 42px; }
.gb-button,
.gb-button-outline,
.gb-button-secondary,
.gb-button-ghost {
  min-height: 49px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .105em;
  font-size: .74rem;
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.gb-button {
  color: var(--gb-white);
  background: linear-gradient(180deg, var(--gb-green-soft), var(--gb-green));
  border-color: rgba(63, 134, 87, .75);
}
.gb-button:hover { transform: translateY(-1px); background: var(--gb-green-soft); }
.gb-button-outline,
.gb-button-secondary,
.gb-button-ghost {
  color: var(--gb-white);
  background: rgba(2, 6, 5, .38);
  border-color: rgba(201, 155, 74, .68);
}
.gb-button-outline:hover,
.gb-button-secondary:hover,
.gb-button-ghost:hover { color: var(--gb-gold-soft); border-color: var(--gb-gold-soft); transform: translateY(-1px); }
.gb-button-danger { border-color: rgba(160, 66, 66, .58); color: #ffd0d0; }

/* 7. Capability row */
.gb-capabilities {
  background: linear-gradient(180deg, #040b0d, #050b0d 70%, #070d0d);
  border-top: 1px solid rgba(244, 240, 232, .03);
  border-bottom: 1px solid rgba(244, 240, 232, .04);
}
.gb-capability-row {
  width: min(1580px, calc(100% - 124px));
  margin-inline: auto;
  min-height: 300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gb-capability-item {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 42px 52px;
  position: relative;
}
.gb-capability-item + .gb-capability-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 54px;
  bottom: 54px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(244, 240, 232, .32), transparent);
}
.gb-capability-item img {
  height: 76px;
  width: 76px;
  object-fit: contain;
  margin-bottom: 28px;
  opacity: .93;
}
.gb-capability-item h2 {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 850;
}
.gb-capability-item p {
  max-width: 270px;
  margin: 0;
  color: rgba(244, 240, 232, .74);
  font-size: .95rem;
  line-height: 1.58;
}

/* 8. Wholesale carousel */
.gb-wholesale-section {
  padding: 76px 0 70px;
  background:
    radial-gradient(circle at 72% 32%, rgba(201, 155, 74, .07), transparent 28%),
    linear-gradient(180deg, #090d0c, #0b0f0e 52%, #040807);
}
.gb-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.gb-section-heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 3.05vw, 4rem);
  line-height: 1.04;
}
.gb-view-all {
  min-height: 47px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(63, 134, 87, .72);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 850;
  font-size: .76rem;
}
.gb-carousel-wrap {
  position: relative;
  min-height: 356px;
}
.gb-feature-stage { min-height: 356px; }
.gb-feature-slide {
  display: none;
  min-height: 356px;
}
.gb-feature-slide.is-active { display: grid; }
.gb-feature-card {
  display: grid;
  grid-template-columns: 34.5% 65.5%;
  width: min(1420px, calc(100% - 108px));
  min-height: 356px;
  margin-inline: auto;
  border-radius: 4px;
  overflow: visible;
}
.gb-feature-info {
  position: relative;
  z-index: 2;
  padding: 34px 48px 34px 38px;
  background: rgba(2, 6, 5, .92);
  border: 1px solid rgba(244, 240, 232, .05);
  box-shadow: 0 22px 70px rgba(0,0,0,.46);
}
.gb-status-pill {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  background: rgba(47, 109, 69, .9);
  color: var(--gb-white);
  text-transform: uppercase;
  font-size: .64rem;
  letter-spacing: .1em;
  font-weight: 850;
}
.gb-feature-info h3 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.2vw, 3.1rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.035em;
}
.gb-feature-location { margin: 6px 0 28px; color: var(--gb-white); font-family: Georgia, "Times New Roman", serif; font-size: 1.26rem; }
.gb-feature-price { color: var(--gb-gold); font-family: Georgia, "Times New Roman", serif; font-size: 2.4rem; line-height: 1; margin-bottom: 24px; }
.gb-feature-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(244,240,232,.13);
  border-bottom: 1px solid rgba(244,240,232,.13);
}
.gb-feature-metric {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gb-white);
}
.gb-feature-metric i { color: var(--gb-gold); font-size: 1.1rem; }
.gb-feature-metric strong { display: block; font-size: .95rem; }
.gb-feature-metric span { display: block; color: var(--gb-muted); text-transform: uppercase; font-size: .64rem; letter-spacing: .08em; }
.gb-feature-description { color: rgba(244,240,232,.82); line-height: 1.65; margin: 0 0 26px; font-size: .98rem; }
.gb-feature-image-wrap {
  min-height: 356px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 70px rgba(0,0,0,.4);
}
.gb-feature-image-wrap img { width: 100%; height: 100%; min-height: 356px; object-fit: cover; }
.gb-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(63, 134, 87, .75);
  background: rgba(2, 6, 5, .68);
  color: var(--gb-white);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.gb-carousel-arrow:hover { background: rgba(47,109,69,.3); border-color: var(--gb-green-soft); }
.gb-carousel-arrow-left { left: 0; }
.gb-carousel-arrow-right { right: 0; }
.gb-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.gb-carousel-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(184,184,172,.42);
  padding: 0;
  cursor: pointer;
}
.gb-carousel-dot.is-active { background: var(--gb-gold); }
.gb-empty-state {
  min-height: 300px;
  display: grid;
  place-items: center;
  color: var(--gb-muted);
  border: 1px dashed rgba(213,181,107,.24);
}

/* 9. Trustee section */
.gb-trustee-preview {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
  background:
    linear-gradient(90deg, rgba(2,6,5,.98) 0%, rgba(2,6,5,.92) 42%, rgba(2,6,5,.84) 100%),
    radial-gradient(circle at 88% 42%, rgba(63,134,87,.20), transparent 38%);
}
.gb-trustee-grid { display: grid; grid-template-columns: 40% 60%; min-height: 340px; align-items: center; }
.gb-trustee-copy { max-width: 560px; }
.gb-trustee-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 3.55vw, 5.2rem);
  line-height: 1.06;
}
.gb-trustee-copy p:not(.gb-eyebrow) {
  max-width: 560px;
  color: rgba(244,240,232,.82);
  line-height: 1.68;
  margin: 22px 0 0;
}
.gb-trustee-art {
  position: relative;
  height: 360px;
}
.gb-trustee-gavel {
  position: absolute;
  right: 4%;
  bottom: -20px;
  width: min(58vw, 780px);
  height: 410px;
  object-fit: cover;
  object-position: center;
  opacity: .98;
  mix-blend-mode: screen;
  filter: contrast(1.02) saturate(1.05);
}
.gb-trustee-watermark {
  position: absolute;
  right: 4%;
  top: 34px;
  width: 300px;
  opacity: .22;
  filter: saturate(.88);
}
.gb-trustee-art::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -45px;
  width: 54%;
  height: 155px;
  background-image: radial-gradient(rgba(63,134,87,.44) 1px, transparent 1px);
  background-size: 10px 10px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
  opacity: .52;
}

/* 10. Mission band */
.gb-mission-band {
  padding: 72px 0;
  background:
    linear-gradient(90deg, #08301f 0%, #0b3a26 36%, #062116 100%);
  border-top: 1px solid rgba(63,134,87,.32);
  border-bottom: 1px solid rgba(63,134,87,.26);
  overflow: hidden;
}
.gb-mission-grid { display: grid; grid-template-columns: 32% 68%; align-items: center; position: relative; }
.gb-mission-watermark {
  width: 330px;
  opacity: .12;
  filter: saturate(.8);
}
.gb-mission-copy { max-width: 820px; }
.gb-mission-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2.9vw, 4rem);
  line-height: 1.06;
}
.gb-mission-copy p:not(.gb-eyebrow) {
  margin: 18px 0 0;
  color: rgba(244,240,232,.82);
  font-size: 1.05rem;
  line-height: 1.72;
}

/* 11. CTA band */
.gb-final-cta {
  padding: 58px 0;
  background: linear-gradient(180deg, #050a0b, #070c0d);
  border-bottom: 1px solid rgba(244,240,232,.10);
}
.gb-final-cta-inner {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 34px;
}
.gb-final-icon { width: 92px; height: 92px; object-fit: contain; }
.gb-final-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2.55vw, 3.7rem);
  line-height: 1.05;
}
.gb-final-copy p:not(.gb-eyebrow) { margin: 10px 0 0; color: rgba(244,240,232,.78); font-size: 1.05rem; }

/* 12. Footer */
.gb-footer {
  background: #050909;
  padding: 54px 0 20px;
}
.gb-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .95fr .75fr;
  gap: 58px;
  padding-bottom: 40px;
}
.gb-footer-brand img { width: 250px; margin-bottom: 20px; }
.gb-footer-brand p { margin: 0 0 18px; color: rgba(244,240,232,.78); line-height: 1.72; }
.gb-footer-brand strong { color: var(--gb-green-soft); font-weight: 600; }
.gb-footer-socials { display: flex; gap: 12px; }
.gb-footer-socials a {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--gb-green-soft);
  text-decoration: none;
  border-radius: 999px;
}
.gb-footer-col h3 {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .82rem;
  color: var(--gb-white);
}
.gb-footer-col a,
.gb-footer-col p {
  display: block;
  margin: 0 0 12px;
  color: rgba(244,240,232,.72);
  text-decoration: none;
  font-size: .95rem;
}
.gb-footer-col a:hover { color: var(--gb-gold-soft); }
.gb-footer-col i { color: var(--gb-green-soft); width: 22px; }
.gb-footer-bottom {
  width: min(1700px, calc(100% - 124px));
  margin-inline: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(244,240,232,.09);
  text-align: center;
  color: rgba(184,184,172,.64);
  font-size: .88rem;
}

/* 13. Forms/cards/supporting pages */
.gb-card,
.gb-admin-panel {
  border: 1px solid rgba(213,181,107,.20);
  background: linear-gradient(180deg, rgba(13,23,23,.96), rgba(6,16,18,.96));
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  padding: 30px;
  border-radius: 18px;
}
.gb-page-hero {
  padding: 150px 0 80px;
  min-height: 65vh;
  background:
    linear-gradient(180deg, rgba(2,6,5,.84), var(--gb-black)),
    url('/assets/img/site/hero-city.jpg') center / cover no-repeat;
}
.gb-lead { color: rgba(244,240,232,.78); font-size: 1.15rem; line-height: 1.7; }
.gb-pill,
.gb-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gb-gold-soft);
  background: rgba(201,155,74,.10);
  border: 1px solid rgba(201,155,74,.26);
  padding: 7px 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 800;
  text-decoration: none;
}
.gb-form { display: grid; gap: 18px; }
.gb-form label { display: grid; gap: 8px; color: var(--gb-muted); font-weight: 700; }
.gb-form input,
.gb-form select,
.gb-form textarea,
.gb-input,
input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(213,181,107,.20);
  background: rgba(2,6,5,.56);
  color: var(--gb-white);
  padding: 11px 13px;
  border-radius: 0;
}
textarea { min-height: 130px; resize: vertical; }
.gb-honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; }
.gb-gallery-main img { width: 100%; border-radius: 14px; object-fit: cover; max-height: 640px; }
.gb-thumbs { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; margin-top: 12px; }
.gb-thumbs img { height: 84px; width: 100%; object-fit: cover; border-radius: 8px; cursor: pointer; }
.gb-stat-card { border: 1px solid rgba(244,240,232,.08); padding: 16px; background: rgba(2,6,5,.34); }
.gb-property-card__price { font-family: Georgia, serif; font-size: 2.4rem; color: var(--gb-gold); margin: 16px 0; }
.gb-process-list { display: grid; gap: 14px; }
.gb-process-step { padding: 16px; border-left: 2px solid var(--gb-green-soft); background: rgba(2,6,5,.30); }
.gb-disclaimer { border-color: rgba(201,155,74,.34); }

/* 14. Admin shell safety */
body.gb-admin-body { background: #050909; }
.gb-admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--gb-admin-sidebar);
  padding: 24px 18px;
  background: #050909;
  border-right: 1px solid rgba(213,181,107,.14);
  overflow-y: auto;
}
.gb-admin-brand { display: flex; gap: 12px; align-items: center; text-decoration: none; margin-bottom: 26px; }
.gb-admin-brand img { width: 46px; height: 46px; object-fit: contain; }
.gb-admin-brand strong { display: block; }
.gb-admin-brand span { color: var(--gb-muted); font-size: .78rem; }
.gb-admin-nav-section { margin: 22px 0; }
.gb-admin-nav-label { color: var(--gb-gold); text-transform: uppercase; font-size: .7rem; letter-spacing: .13em; margin: 0 0 10px; }
.gb-admin-link { display: block; padding: 10px 12px; text-decoration: none; color: rgba(244,240,232,.82); border-left: 2px solid transparent; }
.gb-admin-link:hover,
.gb-admin-link.is-active { background: rgba(47,109,69,.16); border-color: var(--gb-green-soft); color: var(--gb-white); }
.gb-admin-topbar {
  position: fixed;
  top: 0;
  left: var(--gb-admin-sidebar);
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  background: rgba(5,9,9,.92);
  border-bottom: 1px solid rgba(213,181,107,.12);
  z-index: 30;
}
.gb-admin-wrap { margin-left: var(--gb-admin-sidebar); padding: 104px 34px 40px; }
.gb-admin-title { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }
.gb-admin-title h1,
.gb-admin-title h2 { margin: 0; font-family: Georgia, serif; font-weight: 500; }
.gb-admin-kpis { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 16px; margin-bottom: 24px; }
.gb-table-wrap { overflow-x: auto; }
.gb-table { width: 100%; border-collapse: collapse; }
.gb-table th,
.gb-table td { padding: 13px 12px; border-bottom: 1px solid rgba(244,240,232,.08); text-align: left; vertical-align: top; }
.gb-table th { color: var(--gb-gold-soft); text-transform: uppercase; font-size: .74rem; letter-spacing: .08em; }
.gb-admin-filters { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }

/* 15. Responsive */
@media (max-width: 1180px) {
  .gb-section-inner,
  .gb-container,
  .gb-container-wide { width: min(100% - 48px, 1100px); }
  .gb-header-inner,
  .gb-public-nav { width: calc(100% - 42px); height: auto; min-height: 82px; flex-wrap: wrap; padding: 10px 0; }
  .gb-nav-links { gap: 15px; }
  .gb-public-logo img { width: 220px; }
  .gb-hero-inner { width: calc(100% - 48px); grid-template-columns: 1fr; padding-top: 120px; align-content: center; }
  .gb-hero-concept { height: auto; min-height: 760px; }
  .gb-hero-city { width: 100%; opacity: .48; }
  .gb-hero-gp-mark { right: 4%; top: 58%; width: 360px; opacity: .28; }
  .gb-capability-row { width: calc(100% - 48px); grid-template-columns: repeat(2, 1fr); }
  .gb-capability-item:nth-child(3)::before { display: none; }
  .gb-feature-card { width: calc(100% - 74px); grid-template-columns: 42% 58%; }
  .gb-trustee-grid { grid-template-columns: 1fr; gap: 20px; }
  .gb-trustee-art { min-height: 320px; }
  .gb-mission-grid { grid-template-columns: 1fr; gap: 18px; }
  .gb-footer-grid { grid-template-columns: repeat(2,1fr); }
  .gb-admin-kpis { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 760px) {
  .gb-section-inner,
  .gb-container,
  .gb-container-wide,
  .gb-hero-inner,
  .gb-footer-bottom { width: calc(100% - 34px); }
  .gb-header-inner,
  .gb-public-nav { width: calc(100% - 30px); justify-content: center; }
  .gb-public-logo img { width: 205px; }
  .gb-nav-links { justify-content: center; gap: 10px; }
  .gb-nav-links a { font-size: .64rem; }
  .gb-admin-login { padding: 9px 12px; }
  .gb-hero-concept { min-height: 780px; }
  .gb-hero-title { font-size: clamp(3rem, 13vw, 4.6rem); }
  .gb-hero-text { font-size: 1rem; }
  .gb-actions { gap: 12px; }
  .gb-button,
  .gb-button-outline,
  .gb-button-secondary { width: 100%; }
  .gb-capability-row { grid-template-columns: 1fr; min-height: 0; }
  .gb-capability-item { min-height: 250px; padding: 34px 24px; }
  .gb-capability-item + .gb-capability-item::before { left: 24px; right: 24px; top: 0; bottom: auto; width: auto; height: 1px; }
  .gb-section-heading { align-items: start; flex-direction: column; }
  .gb-feature-card { width: 100%; grid-template-columns: 1fr; }
  .gb-feature-image-wrap { min-height: 250px; order: -1; }
  .gb-feature-image-wrap img { min-height: 250px; }
  .gb-carousel-arrow { width: 44px; height: 44px; top: 45%; }
  .gb-carousel-arrow-left { left: -10px; }
  .gb-carousel-arrow-right { right: -10px; }
  .gb-feature-info { padding: 28px; }
  .gb-feature-metrics { flex-wrap: wrap; }
  .gb-trustee-copy h2,
  .gb-mission-copy h2,
  .gb-final-copy h2 { font-size: 2.25rem; }
  .gb-trustee-gavel { width: 100%; right: 0; height: 300px; }
  .gb-final-cta-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .gb-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gb-grid-2,
  .gb-grid-3,
  .gb-grid-4,
  .gb-split { grid-template-columns: 1fr; }
  .gb-admin-sidebar { position: static; width: auto; }
  .gb-admin-topbar { position: static; height: auto; margin: 0; padding: 16px; }
  .gb-admin-wrap { margin-left: 0; padding: 24px 16px; }
  .gb-admin-kpis { grid-template-columns: 1fr; }
}
