/* ==========================================================================
   GRØNBLÅ — site.css
   Design system based on the Brand Manual v3 (CMYK/RGB/HEX values)
   ========================================================================== */

/* ----- Tokens ----- */
:root {
  --gb-green: #95C11F;       /* Pantone 376 C */
  --gb-green-dark: #7BA516;
  --gb-green-light: #C6E07A;
  --gb-blue: #1A79F5;        /* Pantone 285 C */
  --gb-blue-dark: #0F5BC2;
  --gb-navy: #052857;        /* Deep ocean */
  --gb-navy-soft: #0B3470;
  --gb-yellow: #FFE800;
  --gb-cream: #FBF9F1;
  --gb-paper: #FFFFFF;
  --gb-line: #EDEDED;
  --gb-grey-3: #9D9D9C;
  --gb-grey-4: #575756;
  --gb-ink: #0A0A0A;

  --font-display: 'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'IBM Plex Sans Condensed', 'Helvetica Neue', Arial, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;

  --max-w: 1240px;
  --max-w-text: 720px;

  --t-fast: 150ms ease;
  --t-med: 300ms ease;

  --shadow-1: 0 1px 2px rgba(5,40,87,0.06), 0 4px 16px rgba(5,40,87,0.06);
  --shadow-2: 0 8px 32px rgba(5,40,87,0.10);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--gb-ink);
  background: var(--gb-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
}

/* Tighten the brand name so the Ø-N pair doesn't render with a gap.
   Auto-wrapped by site.js. */
.gb-name { letter-spacing: -0.01em; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gb-blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--gb-navy);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; letter-spacing: .04em; }
p  { margin: 0 0 1em; }
.lead { font-size: 1.25rem; line-height: 1.5; color: var(--gb-grey-4); }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .82rem;
  color: var(--gb-green-dark);
  margin: 0 0 .8em;
}
.eyebrow--blue { color: var(--gb-blue-dark); }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }
.container--prose { max-width: var(--max-w-text); }

section { padding: 88px 0; }
section.tight { padding: 56px 0; }
section.hero { padding: 120px 0 96px; }

/* ----- Header ----- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--gb-line);
}
.site-header__row { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 16px; flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; min-width: 0; }
.brand__logo { height: 40px; width: auto; display: block; flex: 0 0 auto; max-width: none; }
.site-footer .brand__logo { height: 44px; }
@media (max-width: 600px){ .brand__logo { height: 32px; } }

/* Legacy CSS-built brand mark — retained for the (rare) case the image fails to load,
   but hidden when an .brand__logo sibling exists */
.brand:has(.brand__logo) .brand__mark,
.brand:has(.brand__logo) .brand__name { display: none; }
.brand__mark {
  width: 32px; height: 32px;
  background: var(--gb-green);
  border-radius: 50%;
  position: relative; flex: 0 0 32px;
  overflow: hidden;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 0 0 50% 0;
  background: var(--gb-blue);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.35rem;
  letter-spacing: .04em;
  color: var(--gb-navy);
  text-transform: uppercase;
}
.brand:hover .brand__name { color: var(--gb-blue-dark); }

.nav { display: flex; gap: 2px; align-items: center; flex-wrap: nowrap; }
.nav a {
  color: var(--gb-navy);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .03em;
  font-size: .9rem;
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.nav a:hover { background: var(--gb-line); color: var(--gb-blue-dark); text-decoration: none; }
.nav a.is-active { color: var(--gb-green-dark); }
.nav a.cta { background: var(--gb-navy); color: #fff; padding: 10px 14px; }
.nav a.cta:hover { background: var(--gb-blue-dark); color: #fff; }

.lang-switch { display: inline-flex; gap: 1px; margin-left: 6px; border-left: 1px solid var(--gb-line); padding-left: 8px; white-space: nowrap; }
.lang-switch a { font-size: .78rem; padding: 6px 4px; color: var(--gb-grey-4); text-transform: uppercase; letter-spacing: .06em; }
.lang-switch a[href*="/zh/"] { letter-spacing: 0; font-size: .9rem; padding: 4px 4px; }
.lang-switch a.is-active { color: var(--gb-navy); font-weight: 600; }

.menu-toggle { display: none; background: transparent; border: 0; font-size: 24px; color: var(--gb-navy); cursor: pointer; padding: 8px; }

@media (max-width: 1180px) {
  .nav { display: none; position: absolute; top: 72px; right: 0; left: 0; flex-direction: column; align-items: stretch; padding: 16px; background: #fff; border-bottom: 1px solid var(--gb-line); gap: 4px; }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; }
  .lang-switch { border-left: 0; padding-left: 0; margin-left: 0; padding-top: 8px; border-top: 1px solid var(--gb-line); }
  .menu-toggle { display: inline-flex; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .06em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--gb-green); color: var(--gb-navy); }
.btn--primary:hover { background: var(--gb-green-dark); color: var(--gb-navy); }
.btn--blue { background: var(--gb-blue); color: #fff; }
.btn--blue:hover { background: var(--gb-blue-dark); color: #fff; }
.btn--navy { background: var(--gb-navy); color: #fff; }
.btn--navy:hover { background: var(--gb-navy-soft); color: #fff; }
.btn--ghost { background: transparent; color: var(--gb-navy); border-color: var(--gb-navy); }
.btn--ghost:hover { background: var(--gb-navy); color: #fff; }
.btn--lg { padding: 18px 32px; font-size: 1.05rem; }
.btn .arr { transition: transform var(--t-fast); }
.btn:hover .arr { transform: translateX(4px); }

/* ----- Hero ----- */
.hero { background: linear-gradient(180deg, var(--gb-cream) 0%, #fff 100%); position: relative; overflow: hidden; }
.hero h1 strong { color: var(--gb-green-dark); font-weight: inherit; }
.hero h1 em { color: var(--gb-blue-dark); font-style: normal; }

/* Forest-aerial variant — used on homepages */
.hero--forest {
  background-color: var(--gb-navy);
  background-image:
    linear-gradient(180deg, rgba(5,40,87,0.6) 0%, rgba(5,40,87,0.82) 60%, rgba(5,40,87,0.95) 100%),
    url("../img/blog/blog-forest-aerial.jpg");
  background-size: cover, cover;
  background-position: center, center 30%;
  background-repeat: no-repeat, no-repeat;
  padding: 96px 0 112px 0;
  color: #fff;
}
.hero--forest .hero__copy { max-width: 760px; }
.hero--forest h1 { color: #fff; }
.hero--forest h1 strong { color: var(--gb-green); }
.hero--forest h1 em { color: #fff; font-style: italic; }
.hero--forest .eyebrow { color: var(--gb-green); }
.hero--forest .lead { color: rgba(255,255,255,0.9); }
.hero--forest .hero__visual { display: none; }
.hero--forest .hero__inner { grid-template-columns: 1fr; gap: 0; }
.hero--forest .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero--forest .btn--ghost:hover { background: rgba(255,255,255,0.1); }
.hero__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.hero__copy { max-width: 640px; }
.hero__visual {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 30% 30%, var(--gb-green) 0%, var(--gb-blue) 70%, var(--gb-navy) 100%);
  position: relative;
  box-shadow: var(--shadow-2);
}
.hero__visual::after { content: ""; position: absolute; inset: 12%; border: 2px dashed rgba(255,255,255,0.45); border-radius: 50%; animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 880px) { .hero__inner { grid-template-columns: 1fr; gap: 32px; } .hero__visual { max-width: 360px; margin: 0 auto; } }

/* ----- Doors ----- */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.door {
  display: block; position: relative;
  padding: 40px 32px 36px;
  border-radius: var(--radius-lg);
  text-decoration: none; color: #fff;
  min-height: 280px; overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.door:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); text-decoration: none; }
.door--visitor { background: linear-gradient(135deg, var(--gb-green) 0%, var(--gb-green-dark) 100%); color: var(--gb-navy); }
.door--venue { background: linear-gradient(135deg, var(--gb-navy) 0%, var(--gb-blue) 100%); color: #fff; }
.door h3 { color: inherit; font-size: 2rem; margin-bottom: 8px; }
.door p { font-size: 1.05rem; }
.door__cta { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.door__cta::after { content: "→"; transition: transform var(--t-fast); }
.door:hover .door__cta::after { transform: translateX(6px); }
@media (max-width: 720px) { .doors { grid-template-columns: 1fr; } }

/* ----- Section helpers ----- */
.bg-cream { background: var(--gb-cream); }
.bg-navy  { background: var(--gb-navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy a:not(.btn):not(.brand) { color: var(--gb-green); }
.bg-navy .lead { color: rgba(255,255,255,0.85); }
.bg-green { background: var(--gb-green); color: var(--gb-navy); }
.bg-green h2 { color: var(--gb-navy); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }

/* ----- Cards ----- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--gb-line); border-radius: var(--radius-lg); padding: 28px; transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); border-color: var(--gb-green); }
.card h3 { font-size: 1.3rem; }
.card__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gb-green-light); color: var(--gb-navy);
  border-radius: 50%; font-size: 24px; margin-bottom: 16px;
}
.card--blue .card__icon { background: rgba(26,121,245,.15); color: var(--gb-blue-dark); }
.card--navy { background: var(--gb-navy); color: #fff; border-color: transparent; }
.card--navy h3 { color: #fff; }

/* ----- Loop diagram ----- */
.loop { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; counter-reset: step; }
.loop__step {
  position: relative;
  background: #fff;
  border: 2px solid var(--gb-line);
  border-radius: var(--radius-lg);
  padding: 28px 20px 22px;
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.loop__step:hover { border-color: var(--gb-green); transform: translateY(-2px); }
.loop__step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gb-navy); color: #fff;
  font-family: var(--font-display); font-weight: 600;
  padding: 4px 10px; border-radius: 14px; font-size: .85rem; letter-spacing: .1em;
}
.loop__step h4 { color: var(--gb-navy); margin-bottom: 6px; }
.loop__step p { font-size: .92rem; margin: 0; color: var(--gb-grey-4); }
.loop__step .icon { font-size: 36px; margin: 4px 0 10px; display: block; }

/* ----- Process steps ----- */
.steps { counter-reset: s; padding-left: 0; list-style: none; }
.steps > li { position: relative; padding-left: 72px; padding-bottom: 36px; margin: 0; }
.steps > li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 48px; height: 48px;
  background: var(--gb-green); color: var(--gb-navy);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
}
.steps > li::after { content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px; background: var(--gb-line); }
.steps > li:last-child { padding-bottom: 0; }
.steps > li:last-child::after { display: none; }
.steps h4 { color: var(--gb-navy); margin-bottom: 6px; font-size: 1.15rem; }

/* ----- Stats / pull quotes ----- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: 3.2rem; color: var(--gb-green); line-height: 1; }
.stat__label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; color: var(--gb-grey-4); margin-top: 6px; }
.bg-navy .stat__num { color: var(--gb-green); }
.bg-navy .stat__label { color: rgba(255,255,255,.75); }

blockquote.pull {
  border-left: 4px solid var(--gb-green);
  padding: 8px 0 8px 24px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--gb-navy); line-height: 1.35;
}
blockquote.pull cite { display: block; font-size: .9rem; color: var(--gb-grey-4); margin-top: 12px; font-family: var(--font-body); font-style: normal; }

/* ----- Tables ----- */
table.spec { width: 100%; border-collapse: collapse; font-size: .96rem; }
.spec th, .spec td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--gb-line); }
.spec th { background: var(--gb-cream); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; color: var(--gb-navy); }

/* ----- Forms ----- */
form.gb-form { display: grid; gap: 18px; max-width: 640px; }
form.gb-form label { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; color: var(--gb-grey-4); }
form.gb-form input, form.gb-form select, form.gb-form textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--gb-line);
  border-radius: var(--radius);
  background: #fff; color: var(--gb-ink);
  transition: border-color var(--t-fast);
}
form.gb-form input:focus, form.gb-form select:focus, form.gb-form textarea:focus { outline: 0; border-color: var(--gb-blue); }
form.gb-form textarea { min-height: 140px; resize: vertical; }
form.gb-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px){ form.gb-form .row-2 { grid-template-columns: 1fr; } }

/* ----- Pills ----- */
.pill { display: inline-flex; padding: 4px 12px; font-family: var(--font-display); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; border-radius: 100px; background: var(--gb-cream); color: var(--gb-navy); border: 1px solid var(--gb-line); }
.pill--green { background: var(--gb-green); color: var(--gb-navy); border-color: var(--gb-green); }
.pill--blue { background: var(--gb-blue); color: #fff; border-color: var(--gb-blue); }

/* ----- Placeholder note ----- */
.placeholder {
  background: repeating-linear-gradient(45deg, #FFF8C4, #FFF8C4 10px, #FFE800 10px, #FFE800 20px);
  border: 1px solid var(--gb-yellow);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .9rem; color: var(--gb-navy);
}
.placeholder strong { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; }

/* ----- Footer ----- */
.site-footer { background: var(--gb-navy); color: #fff; padding: 64px 0 24px; }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .1em; }
.site-footer a { color: #fff; opacity: .85; }
.site-footer a:hover { opacity: 1; color: var(--gb-green); }
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  color: var(--gb-green);
  margin: 12px 0 16px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-bottom { padding-top: 24px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: .85rem; opacity: .75; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ----- Visitor strip ----- */
.what-is-this { background: var(--gb-green); color: var(--gb-navy); padding: 24px 0; }
.what-is-this__row { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; justify-content: space-between; }
.what-is-this strong { font-family: var(--font-display); text-transform: uppercase; }

/* ----- Misc ----- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.flex { display: flex; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.divider { height: 1px; background: var(--gb-line); margin: 32px 0; }

/* ----- Flow strip ----- */
.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; }
.flow__item { background: var(--gb-cream); padding: 24px 16px; text-align: center; position: relative; border-right: 4px solid #fff; }
.flow__item:last-child { border-right: 0; }
.flow__item .icon { font-size: 36px; display: block; margin-bottom: 8px; }
.flow__item h5 { margin: 0 0 4px; font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; color: var(--gb-navy); letter-spacing: .04em; }
.flow__item p { margin: 0; font-size: .88rem; color: var(--gb-grey-4); }

/* ----- Cert badges ----- */
.cert-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.cert {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--gb-navy);
  border-radius: var(--radius);
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .06em;
  font-size: .85rem; color: var(--gb-navy);
}
.cert::before { content: "✓"; color: var(--gb-green-dark); font-weight: 700; }

/* ----- Page hero (non-home) ----- */
.page-hero {
  background: linear-gradient(180deg, var(--gb-cream) 0%, #fff 100%);
  padding: 96px 0 64px;
}
.page-hero h1 { margin-bottom: 16px; }

/* Two-column prose */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* Image placeholder block */
.img-ph {
  background: linear-gradient(135deg, var(--gb-green-light) 0%, rgba(26,121,245,0.18) 100%);
  border: 2px dashed var(--gb-green);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--gb-navy);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  text-align: center;
  padding: 24px;
  min-height: 240px;
}

/* ----- Zoomable images (lightbox) ----- */
.zoomable { cursor: zoom-in; transition: transform var(--t-fast); }
.zoomable:hover { transform: scale(1.01); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 40, 87, 0.94);
  display: none;
  z-index: 1000;
  animation: lb-fade .15s ease-out;
  overflow: auto; /* allow panning when zoomed in */
}
.lightbox.is-open { display: block; }
.lightbox__inner {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox img {
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  cursor: zoom-in;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-radius: 4px;
  transition: transform var(--t-med);
}
.lightbox.is-zoomed { display: block; }
.lightbox.is-zoomed .lightbox__inner {
  align-items: flex-start;
  min-height: auto;
}
.lightbox.is-zoomed img {
  max-width: 200vw;
  max-height: none;
  width: 200vw;
  cursor: zoom-out;
}
.lightbox__close {
  position: fixed; top: 16px; right: 20px;
  background: rgba(5,40,87,0.7); border: 0;
  color: #fff; font-size: 32px; line-height: 1;
  cursor: pointer; padding: 4px 14px;
  font-family: var(--font-display);
  border-radius: 24px;
  z-index: 1001;
}
.lightbox__close:hover { color: var(--gb-green); }
.lightbox__hint {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  background: rgba(5,40,87,0.7);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  z-index: 1001;
  pointer-events: none;
}
@keyframes lb-fade { from { opacity: 0 } to { opacity: 1 } }

/* ===========================================
   Single team-group photo + unified blurb
   Replaces the old 4-card founder grid on
   the About page. Photo on top (or left on
   wide screens), blurb below/right.
   =========================================== */
.team-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 16px;
}
@media (min-width: 880px) {
  .team-group { grid-template-columns: 1.2fr 1fr; align-items: center; }
}
.team-group__photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  display: block;
}
.team-group__photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(149,193,31,0.10), rgba(26,121,245,0.10)),
    var(--gb-cream);
  border: 1px dashed rgba(5,40,87,0.25);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--gb-grey-4);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
  padding: 24px;
}
.team-group__caption {
  font-size: .92rem;
  color: var(--gb-grey-4);
  margin-top: 8px;
  letter-spacing: .02em;
}
.team-group__bio {
  font-size: 1.02rem;
  line-height: 1.6;
}
.team-group__bio p { margin-top: 0; }
.team-group__bio p + p { margin-top: 12px; }

/* ===========================================
   Team / founder photo unification
   Applies a subtle duotone-ish treatment so all
   founder portraits read as one set, even when
   they were shot in different conditions.
   Drop a new portrait into assets/img/ and tag
   it with .team-photo — the treatment applies
   automatically.
   =========================================== */
.team-photo {
  filter: grayscale(0.55) contrast(1.04) brightness(0.98) sepia(0.06);
  transition: filter .25s ease;
}
.team-photo:hover {
  filter: grayscale(0.15) contrast(1.04) brightness(1.0) sepia(0);
}
/* Placeholder card matches the photo card height so the
   row stays aligned until the real photo arrives. */
.team-photo-placeholder {
  min-height: 240px;
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(149,193,31,0.10), rgba(26,121,245,0.10)),
    var(--gb-cream);
  border: 1px dashed rgba(5,40,87,0.18);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--gb-grey-4);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  padding: 24px;
}

/* ===========================================
   LinkedIn — buttons and social icons
   The brand has one company LinkedIn URL. To
   change it everywhere, find/replace the URL
   in every page (or use the central footer
   block). Use .btn--linkedin for prominent
   inline CTAs ("Follow on LinkedIn"); use
   .social-link for the small footer icon.
   =========================================== */
.btn--linkedin {
  background: #0A66C2;          /* Official LinkedIn blue */
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
}
.btn--linkedin:hover { background: #084d92; color: #fff; }
.btn--linkedin svg {
  width: 18px; height: 18px; flex: 0 0 18px;
  fill: currentColor;
}

/* Small icon-only link for footer / inline contexts */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: #fff;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  text-decoration: none;
}
.social-link:hover {
  background: #0A66C2;
  color: #fff;
  transform: translateY(-1px);
}
.social-link svg {
  width: 18px; height: 18px;
  fill: currentColor;
}

/* On light backgrounds (e.g., blog post author byline) */
.social-link--light {
  background: var(--gb-line);
  color: var(--gb-navy);
}
.social-link--light:hover { background: #0A66C2; color: #fff; }

/* Footer social row — sits below the tagline in the brand column */
.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social__label {
  font-size: .82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ===========================================
   Blog
   Layout for the blog index and individual
   blog post pages. Posts are layer-3 content,
   with a max-width of ~720px for readable
   prose, dropcap-style intro, and an author
   byline block at the top.
   =========================================== */
.blog-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--gb-line);
  border-radius: var(--radius-lg);
  background: var(--gb-paper);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
  margin-bottom: 16px;
}
.blog-card:hover {
  box-shadow: var(--shadow-1);
  transform: translateY(-2px);
  border-color: var(--gb-green);
  color: inherit;
}
.blog-card__meta {
  font-size: .9rem;
  color: var(--gb-grey-4);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.blog-card__meta strong { color: var(--gb-navy); }
.blog-card h2 {
  margin: 0 0 10px 0;
  font-size: 1.55rem;
  line-height: 1.2;
}
.blog-card p { margin: 0; color: var(--gb-grey-4); }

/* ===========================================
   Brand ambassador block
   Used on the About page (and DA twin) to showcase
   our brand ambassador with a video player and bio.
   Two-column on desktop, stacked on mobile.
   =========================================== */
.ambassador {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 800px) {
  .ambassador { grid-template-columns: 1fr; gap: 20px; }
}
.ambassador__video {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  background: var(--gb-navy);
  display: block;
}
.ambassador__bio p {
  margin-top: 0;
}
.ambassador__pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gb-blue);
  color: #fff;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Hero image at the top of a blog post or section */
.blog-hero {
  margin: 0 0 32px 0;
  padding: 0;
}
.blog-hero img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  display: block;
}
.blog-hero figcaption {
  font-size: .82rem;
  color: var(--gb-grey-3);
  margin-top: 8px;
  text-align: right;
  letter-spacing: .02em;
}

/* Thumbnail on a blog-card on the index page */
.blog-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  margin-bottom: 16px;
  display: block;
}

/* Author byline block on individual posts */
.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--gb-line);
  border-bottom: 1px solid var(--gb-line);
  margin: 24px 0 32px;
}
.byline img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  /* Match the founder-card unified treatment so author photos
     read as part of the same family. */
  filter: grayscale(0.55) contrast(1.04) brightness(0.98) sepia(0.06);
}
.byline__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.byline__name { font-weight: 600; color: var(--gb-navy); }
.byline__role { font-size: .9rem; color: var(--gb-grey-4); }
.byline__meta { font-size: .85rem; color: var(--gb-grey-3); margin-top: 2px; }

/* Print */
@media print { .site-header, .site-footer, .door, .btn { box-shadow: none; } body { background: #fff; } .lightbox { display: none !important; } }

/* ----- Proof strip (homepage section under hero) ----- */
.proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  color: #fff;
}
.proof-strip__num {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.9;
  font-weight: 700;
  color: var(--gb-green);
  letter-spacing: -0.04em;
  margin: 12px 0 8px 0;
}
.proof-strip__label {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0;
}
.proof-strip__sigs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.proof-strip__sig {
  padding-left: 16px;
  border-left: 2px solid var(--gb-green);
}
.proof-strip__sig-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gb-green);
  font-weight: 600;
  margin-bottom: 4px;
}
.proof-strip__sig-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.proof-strip__sig-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .proof-strip { grid-template-columns: 1fr; gap: 32px; }
  .proof-strip__num { font-size: 5rem; }
}

/* ----- Trust trio strip (used on Documentation page) ----- */
.trust-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0;
}
.trust-trio__card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 10px;
  border: 1px solid var(--gb-line);
  text-align: left;
}
.trust-trio__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gb-green-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.trust-trio__big {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gb-navy);
  line-height: 1.1;
  margin-bottom: 4px;
}
.trust-trio__sub {
  font-size: 0.95rem;
  color: var(--gb-grey-4);
  margin-bottom: 12px;
  line-height: 1.4;
}
.trust-trio__src {
  font-size: 0.8rem;
  color: var(--gb-grey-3);
  border-top: 1px solid var(--gb-line);
  padding-top: 10px;
  font-style: italic;
}
@media (max-width: 700px) {
  .trust-trio { grid-template-columns: 1fr; }
}

/* ----- Comparison table (on For Venues) ----- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gb-line);
  vertical-align: top;
  text-align: left;
}
.compare-table thead th {
  background: var(--gb-cream);
  color: var(--gb-navy);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-table thead th.us {
  background: var(--gb-navy);
  color: #fff;
}
.compare-table tbody td.us {
  background: rgba(149,193,31,0.08);
  font-weight: 600;
  color: var(--gb-navy);
}
.compare-table tbody th {
  background: transparent;
  font-weight: 600;
  color: var(--gb-navy);
}
.compare-table .yes { color: var(--gb-green-dark); font-weight: 700; }
.compare-table .no { color: var(--gb-grey-3); }
.compare-table .partial { color: var(--gb-grey-4); }

/* ----- Page hero image (under .page-hero) ----- */
.page-hero-image { padding: 0 0 24px 0; }
.page-hero-image img {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: block;
  height: 50vh; max-height: 540px; min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}

/* ----- Dropdown sub-menus on primary nav ----- */
.nav__item { position: relative; display: inline-flex; align-items: center; }
.nav__item .nav__link { padding: 8px 10px; display: inline-flex; align-items: center; gap: 4px; color: var(--gb-navy); font-weight: 500; }
.nav__item .nav__link:hover { color: var(--gb-blue-dark); background: var(--gb-line); border-radius: 4px; }
.nav__chev { font-size: 0.7em; color: var(--gb-grey-3); transition: transform 0.15s ease; }
.nav__item:hover .nav__chev,
.nav__item:focus-within .nav__chev { transform: rotate(180deg); color: var(--gb-blue-dark); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(5, 40, 87, 0.10);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 1000;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--gb-navy);
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.nav__dropdown a:hover { background: var(--gb-cream); color: var(--gb-blue-dark); }
.nav__dropdown a.is-active { background: var(--gb-cream); color: var(--gb-green-dark); font-weight: 600; }

/* Mobile: stack the dropdowns inline */
@media (max-width: 1180px) {
  .nav__item { display: block; width: 100%; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--gb-cream);
    border-radius: 4px;
    margin-top: 4px;
    padding: 4px 0;
  }
  .nav__chev { display: none; }
}

/* ----- Cookie banner ----- */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 720px; margin: 0 auto;
  background: var(--gb-navy); color: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(5,40,87,0.32);
  z-index: 9999;
  display: none;
  font-size: 0.9rem;
}
.cookie-banner.is-shown { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.cookie-banner p { margin: 0; flex: 1; min-width: 240px; line-height: 1.5; }
.cookie-banner a { color: var(--gb-green); text-decoration: underline; }
.cookie-banner button {
  background: var(--gb-green); color: var(--gb-navy);
  border: 0; padding: 8px 18px; border-radius: 4px;
  font-weight: 600; cursor: pointer;
  font-family: inherit; font-size: 0.9rem;
}
.cookie-banner button:hover { background: var(--gb-green-light); }

/* Clean image placeholder when product photography isn't ready yet */
.img-ph-clean {
  background: var(--gb-cream);
  border: 1px dashed var(--gb-line);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--gb-grey-3);
  font-size: 0.92rem;
  font-style: italic;
}
.img-ph-clean span { text-align: center; padding: 24px; }

/* ─── Accessibility: skip-link + reduced motion ─── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--navy, #052857);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--green, #95C11F);
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@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;
  }
}

/* Focus rings — visible everywhere */
:focus-visible {
  outline: 3px solid var(--green, #95C11F);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Hero visual: real-photo variant (overrides the gradient circle) */
.hero__visual--photo {
  background: none;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 48px rgba(5, 40, 87, 0.18);
  position: relative;
}
.hero__visual--photo::after { display: none; }
.hero__visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
