/* =========================================================
   Sean Hager, ISA Certified Arborist
   Dark forest theme. Brand: GoodGuys (verified tokens, dark skin)
   ========================================================= */

:root {
  /* Accents (brand, brightened for dark contrast) */
  --gg-orange: #f08a17;
  --gg-orange-deep: #d4760a;
  --gg-green: #6cbf3a;        /* bright green for ticks/accents on dark */
  --gg-green-deep: #3e9107;   /* canonical brand green for fills */
  --gg-yellow: #ffd34e;
  --gg-dark-green: #087734;

  /* Text (warm off-white on dark) */
  --gg-text: #ece9dd;
  --gg-text-2: #a8af9a;
  --gg-text-3: #767c66;

  /* Surfaces (deep warm forest, darkest to lifted) */
  --bg: #10140c;
  --bg-band: #0b0e07;        /* darkest bands */
  --panel: #161d10;          /* alternating section */
  --surface: #1c2417;        /* cards */
  --surface-hi: #232d1b;     /* card hover */
  --line: rgba(255,255,255,0.10);
  --line-2: rgba(255,255,255,0.16);

  /* Legacy names remapped to dark so existing refs flow */
  --gg-ink: #0b0e07;
  --gg-ink-2: #141a0e;
  --gg-paper: #10140c;
  --gg-panel: #161d10;
  --chip: #ece9dd;           /* light chip for overlap badges */

  --font: 'Raleway', system-ui, -apple-system, sans-serif;
  --mono: 'Menlo', 'Consolas', 'Monaco', monospace;
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-lg: 0 30px 60px -28px rgba(0, 0, 0, 0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--gg-text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--gg-orange); outline-offset: 3px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gg-orange), var(--gg-yellow));
  z-index: 100; transition: width .1s linear;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; } .d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

/* ---------- Header ---------- */
header.site {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
header.site.scrolled {
  background: rgba(11, 14, 7, 0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line); padding: 10px 28px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand .name { font-weight: 800; font-size: 1.05rem; letter-spacing: .2px; line-height: 1.12; color: var(--gg-text); }
.brand .name small {
  display: block; font-weight: 600; font-size: .64rem; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--gg-green);
}
nav.main { display: flex; align-items: center; gap: 28px; }
nav.main a.link {
  font-weight: 600; font-size: .9rem; color: var(--gg-text-2); position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
nav.main a.link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gg-orange); transition: width .3s var(--ease);
}
nav.main a.link:hover, nav.main a.link.active { color: var(--gg-text); }
nav.main a.link.active::after, nav.main a.link:hover::after { width: 100%; }
.btn-cta {
  background: var(--gg-orange); color: #1a1205; padding: 10px 20px; border-radius: 2px;
  font-weight: 700; font-size: .9rem; transition: background .25s var(--ease), transform .25s var(--ease);
}
.btn-cta:hover { background: var(--gg-yellow); transform: translateY(-1px); }

.hamburger { display: none; width: 30px; height: 22px; position: relative; }
.hamburger span { position: absolute; left: 0; height: 2.5px; width: 100%; background: var(--gg-text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.hamburger span:nth-child(1) { top: 0; } .hamburger span:nth-child(2) { top: 9.5px; } .hamburger span:nth-child(3) { top: 19px; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .hamburger { display: block; z-index: 95; }
  nav.main {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 26px;
    background: rgba(11, 14, 7, 0.98); backdrop-filter: blur(8px);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 92;
  }
  body.menu-open nav.main { transform: none; }
  nav.main a.link { font-size: 1.4rem; }
  .btn-cta { font-size: 1.1rem; padding: 14px 26px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .95rem;
  padding: 14px 26px; border-radius: 2px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn-primary { background: var(--gg-orange); color: #1a1205; box-shadow: 0 14px 30px -14px rgba(240,138,23,.6); }
.btn-primary:hover { background: var(--gg-yellow); transform: translateY(-2px); }
.btn-ghost { color: var(--gg-text); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--gg-green); color: var(--gg-green); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; padding: 130px 0 80px;
  background:
    radial-gradient(120% 85% at 88% 4%, rgba(108,191,58,.16), transparent 52%),
    radial-gradient(90% 70% at 0% 100%, rgba(240,138,23,.12), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero .topo { position: absolute; inset: 0; z-index: 0; pointer-events: none; will-change: transform; }
.hero .topo path { stroke-dasharray: 2400; stroke-dashoffset: 2400; animation: draw 2.6s var(--ease) forwards; }
.hero .topo path:nth-child(2){ animation-delay:.15s } .hero .topo path:nth-child(3){ animation-delay:.3s }
.hero .topo path:nth-child(4){ animation-delay:.45s } .hero .topo path:nth-child(5){ animation-delay:.6s }
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero .wrap { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .78rem;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gg-green); margin-bottom: 26px;
}
.eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--gg-orange); }
.hero h1 {
  font-weight: 800; font-size: clamp(2.9rem, 8.5vw, 6.2rem); line-height: .96;
  letter-spacing: -1.5px; color: #fff;
}
.hero h1 .accent { color: var(--gg-orange); }
.hero .role { font-weight: 500; font-size: clamp(1.05rem, 2.3vw, 1.45rem); color: var(--gg-text-2); margin: 22px 0 30px; max-width: 640px; }
.hero .role b { color: var(--gg-text); font-weight: 700; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 16px; }
.credline { margin-top: 54px; display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; font-size: .82rem; color: var(--gg-text-3); font-weight: 600; }
.credline span { display: inline-flex; align-items: center; gap: 8px; letter-spacing: .3px; }
.credline span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gg-green); }

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-media { position: relative; }
.media-frame { position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; background: linear-gradient(160deg, var(--gg-ink-2), var(--bg-band)); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .9s var(--ease); }
.media-frame img.loaded { opacity: 1; }
.media-skeleton { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: rgba(255,255,255,.5); font-size: .82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; gap: 4px; }
.media-skeleton small { font-size: .68rem; font-weight: 600; letter-spacing: 2px; opacity: .7; }
.media-skeleton::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.06) 50%, transparent 70%); background-size: 220% 100%; animation: shimmer 1.8s infinite; }
@keyframes shimmer { to { background-position: -220% 0; } }
.media-badge { position: absolute; bottom: -16px; left: -16px; display: flex; align-items: center; gap: 9px; background: var(--chip); color: #11150d; font-weight: 800; font-size: .8rem; padding: 11px 16px; border-radius: 3px; box-shadow: 0 16px 34px -16px rgba(0,0,0,.8); }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { max-width: 420px; }
  .hero { min-height: auto; padding: 130px 0 90px; }
}
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--gg-text-3); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .mouse { width: 22px; height: 34px; border: 2px solid var(--gg-text-3); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ''; position: absolute; left: 50%; top: 6px; width: 3px; height: 6px; background: var(--gg-text-3); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{ opacity:0; transform: translate(-50%,0);} 30%{opacity:1;} 100%{ opacity:0; transform: translate(-50%,10px);} }
@media (max-width: 900px) { .scroll-hint { display: none; } }

/* ---------- Section scaffolding ---------- */
section { padding: 110px 0; position: relative; }
.sec-head { max-width: 680px; margin-bottom: 58px; }
.sec-eyebrow { font-weight: 700; font-size: .74rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gg-orange); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.sec-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gg-green); }
.sec-head h2 { font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 2.9rem); line-height: 1.06; letter-spacing: -.8px; color: #fff; }
.sec-head p { margin-top: 18px; font-size: 1.08rem; color: var(--gg-text-2); }

/* ---------- Credentials (darkest band) ---------- */
.creds { background: var(--bg-band); color: var(--gg-text); }
.creds::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--gg-orange), var(--gg-green-deep)); }
.creds .sec-eyebrow { color: var(--gg-yellow); } .creds .sec-eyebrow::before { background: var(--gg-orange); }
.cred-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.cred-item { padding: 34px 22px 34px 0; border-right: 1px solid var(--line); }
.cred-item:last-child { border-right: none; }
.cred-item .abbr { font-weight: 800; font-size: 1.6rem; color: var(--gg-orange); letter-spacing: -.5px; margin-bottom: 12px; }
.cred-item .title { font-weight: 700; font-size: .98rem; color: #fff; line-height: 1.3; margin-bottom: 8px; }
.cred-item .id { font-family: var(--mono); font-size: .78rem; color: var(--gg-text-3); letter-spacing: .5px; }
@media (max-width: 900px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-item { border-bottom: 1px solid var(--line); padding-right: 22px; }
  .cred-item:nth-child(even) { border-right: none; padding-left: 22px; }
}
@media (max-width: 540px) { .cred-grid { grid-template-columns: 1fr; } .cred-item, .cred-item:nth-child(even) { border-right: none; padding-left: 0; } }
.cert-badges { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; margin: -6px 0 50px; }
.cert-badges img { height: 128px; width: auto; object-fit: contain; filter: drop-shadow(0 6px 13px rgba(0,0,0,.5)); }
.cert-badges img.badge-lift { filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)) drop-shadow(0 0 6px rgba(255,255,255,.5)); }
@media (max-width: 640px) { .cert-badges { gap: 20px; } .cert-badges img { height: 92px; } }

/* ---------- Expertise (expandable) ---------- */
.exp-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.exp-item { background: var(--surface); transition: background .3s var(--ease); }
.exp-item:hover { background: var(--surface-hi); }
.exp-head { display: flex; align-items: center; gap: 24px; width: 100%; text-align: left; padding: 30px 38px; }
.exp-head .num { font-family: var(--mono); font-size: .82rem; color: var(--gg-orange); font-weight: 700; letter-spacing: 1px; min-width: 26px; }
.exp-head .ic { width: 38px; height: 38px; flex-shrink: 0; color: var(--gg-green); display: flex; align-items: center; justify-content: center; }
.exp-head .ic svg { width: 30px; height: 30px; }
.exp-badge { width: 54px; height: 54px; object-fit: contain; flex-shrink: 0; }
.exp-head h3 { font-weight: 700; font-size: clamp(1.2rem, 2.6vw, 1.55rem); letter-spacing: -.3px; flex: 1; color: #fff; }
.exp-head .tag { font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gg-green); white-space: nowrap; }
.exp-head .plus { width: 26px; height: 26px; position: relative; flex-shrink: 0; }
.exp-head .plus::before, .exp-head .plus::after { content: ''; position: absolute; background: var(--gg-text-2); border-radius: 2px; transition: transform .35s var(--ease); }
.exp-head .plus::before { left: 0; top: 50%; width: 100%; height: 2.5px; transform: translateY(-50%); }
.exp-head .plus::after { top: 0; left: 50%; width: 2.5px; height: 100%; transform: translateX(-50%); }
.exp-item.open .plus::after { transform: translateX(-50%) scaleY(0); }
.exp-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.exp-body-inner { padding: 0 38px 34px 92px; color: var(--gg-text-2); font-size: 1.02rem; max-width: 760px; }
@media (max-width: 640px) {
  .exp-head { padding: 24px; gap: 16px; flex-wrap: wrap; }
  .exp-head .tag { order: 3; width: 100%; }
  .exp-body-inner { padding: 0 24px 28px 24px; }
}

/* ---------- Plant Health Care ---------- */
.phc { background: var(--bg-band); }
.phc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.phc-card { background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: 40px 38px; transition: background .3s var(--ease), border-color .3s var(--ease); }
.phc-card:hover { background: var(--surface-hi); border-color: var(--line-2); }
.phc-card .ic { width: 50px; height: 50px; color: var(--gg-green); display: block; margin-bottom: 22px; }
.phc-card .ic svg { width: 100%; height: 100%; }
.phc-card h3 { font-weight: 800; font-size: 1.5rem; letter-spacing: -.4px; color: #fff; margin-bottom: 14px; }
.phc-card p { color: var(--gg-text-2); font-size: 1rem; margin-bottom: 22px; }
.phc-benefits { list-style: none; }
.phc-benefits li { position: relative; padding: 10px 0 10px 28px; border-top: 1px solid var(--line); color: var(--gg-text); font-size: .95rem; }
.phc-benefits li:first-child { border-top: none; }
.phc-benefits li::before { content: ''; position: absolute; left: 0; top: 16px; width: 11px; height: 6px; border-left: 2px solid var(--gg-orange); border-bottom: 2px solid var(--gg-orange); transform: rotate(-45deg); }
.phc-proof { margin-top: 36px; }
.phc-proof-label { font-weight: 700; font-size: .74rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gg-orange); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.phc-proof-label::before { content: ''; width: 26px; height: 2px; background: var(--gg-green); }
.phc-proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.phc-shot { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.phc-shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.phc-shot:hover img { transform: scale(1.04); }
.phc-shot figcaption { padding: 18px 22px; color: var(--gg-text-2); font-size: .92rem; line-height: 1.5; }
@media (max-width: 700px) { .phc-proof-grid { grid-template-columns: 1fr; } }
.phc-also { margin-top: 36px; max-width: 760px; color: var(--gg-text-2); font-size: 1rem; }
.phc-cta { margin-top: 30px; }
@media (max-width: 760px) { .phc-grid { grid-template-columns: 1fr; } .phc-card { padding: 32px 28px; } }

/* ---------- Expertise: reports block ---------- */
.exp-reports { margin-top: 16px; display: grid; grid-template-columns: 1.25fr 1fr; gap: 44px; background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: 42px 40px; align-items: center; }
.exp-reports .er-eyebrow { font-weight: 700; font-size: .74rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gg-orange); margin-bottom: 14px; }
.exp-reports h3 { font-weight: 800; font-size: clamp(1.4rem, 2.8vw, 1.85rem); color: #fff; letter-spacing: -.4px; margin-bottom: 14px; line-height: 1.15; }
.exp-reports p { color: var(--gg-text-2); font-size: 1rem; }
.er-list { list-style: none; }
.er-list li { position: relative; padding: 9px 0 9px 26px; border-top: 1px solid var(--line); color: var(--gg-text); font-size: .95rem; }
.er-list li:first-child { border-top: none; }
.er-list li::before { content: ''; position: absolute; left: 0; top: 15px; width: 10px; height: 6px; border-left: 2px solid var(--gg-green); border-bottom: 2px solid var(--gg-green); transform: rotate(-45deg); }
@media (max-width: 760px) { .exp-reports { grid-template-columns: 1fr; gap: 26px; padding: 32px 26px; } }

/* ---------- City of Austin Permitting ---------- */
.permits { background: var(--panel); }
.permit-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--bg-band); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; margin-bottom: 44px; box-shadow: var(--shadow-lg); }
.pstat { background: var(--bg-band); padding: 30px 28px; display: flex; flex-direction: column; gap: 10px; }
.pnum { font-weight: 800; font-size: 2.2rem; letter-spacing: -1px; color: var(--gg-yellow); line-height: 1; }
.plabel { font-size: .9rem; color: var(--gg-text-2); line-height: 1.45; }
.permit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.permit-item { background: var(--surface); padding: 28px 30px; position: relative; transition: background .3s var(--ease); }
.permit-item::before { content: ''; position: absolute; left: 0; top: 28px; bottom: 28px; width: 3px; background: var(--gg-orange); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.permit-item:hover { background: var(--surface-hi); }
.permit-item:hover::before { transform: scaleY(1); }
.permit-item h3 { font-weight: 700; font-size: 1.12rem; letter-spacing: -.2px; margin-bottom: 9px; padding-left: 16px; position: relative; color: #fff; }
.permit-item h3::before { content: ''; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--gg-green); }
.permit-item p { color: var(--gg-text-2); font-size: .94rem; padding-left: 16px; }
.permit-cta { margin-top: 40px; }
.permit-note { font-size: .82rem; color: var(--gg-text-3); margin: 18px 0 0; max-width: 760px; }
@media (max-width: 820px) { .permit-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .permit-stats { grid-template-columns: 1fr; } }

/* ---------- Risk Self-Check (interactive) ---------- */
.checker { background: var(--bg); }
.checker-card { background: var(--surface); border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow-lg); overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; }
.checker-q { padding: 46px 44px; }
.checker-q h3 { font-weight: 800; font-size: 1.5rem; letter-spacing: -.4px; margin-bottom: 8px; color: #fff; }
.checker-q p.sub { color: var(--gg-text-2); font-size: .98rem; margin-bottom: 26px; }
.q-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.q-item:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.q-item .q-text { font-weight: 600; font-size: .98rem; color: var(--gg-text); }
.toggle { display: inline-flex; background: var(--bg-band); border-radius: 40px; padding: 3px; flex-shrink: 0; border: 1px solid var(--line); }
.toggle button { padding: 7px 16px; border-radius: 40px; font-weight: 700; font-size: .82rem; color: var(--gg-text-2); transition: all .25s var(--ease); }
.toggle button.sel-yes { background: var(--gg-orange); color: #1a1205; }
.toggle button.sel-no { background: var(--gg-green-deep); color: #fff; }
.checker-result {
  background: var(--bg-band); color: var(--gg-text); padding: 46px 44px; display: flex; flex-direction: column; justify-content: center;
}
.result-badge { display: inline-flex; align-self: flex-start; align-items: center; gap: 9px; font-weight: 800; font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 16px; border-radius: 40px; margin-bottom: 20px; transition: background .4s var(--ease); }
.result-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.lvl-none { background: rgba(255,255,255,.10); color: var(--gg-text-2); }
.lvl-monitor { background: rgba(255,211,78,.16); color: var(--gg-yellow); }
.lvl-assess { background: rgba(240,138,23,.2); color: #ffae5e; }
.lvl-urgent { background: rgba(220,60,72,.22); color: #ff8088; }
.checker-result h4 { font-weight: 800; font-size: 1.45rem; color: #fff; line-height: 1.18; margin-bottom: 14px; transition: opacity .3s; }
.checker-result p { color: var(--gg-text-2); font-size: .98rem; margin-bottom: 26px; }
.checker-result .disclaimer { font-size: .76rem; color: var(--gg-text-3); line-height: 1.5; margin-top: 22px; border-top: 1px solid var(--line); padding-top: 18px; }
@media (max-width: 820px) { .checker-card { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .checker-q, .checker-result { padding: 32px 26px; } }

/* ---------- About ---------- */
.about { background: var(--panel); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.about .portrait { aspect-ratio: 4/3; background: linear-gradient(160deg, var(--gg-ink-2), var(--bg-band)); border-radius: 4px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 26px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.about .portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .9s var(--ease); z-index: 1; }
.about .portrait img.loaded { opacity: 1; }
.about .portrait .ph { position: relative; z-index: 2; color: rgba(255,255,255,.55); font-size: .8rem; font-weight: 600; letter-spacing: .4px; border: 1px dashed rgba(255,255,255,.3); padding: 8px 12px; border-radius: 2px; }
.about .portrait .leaf { position: absolute; top: -40px; right: -40px; width: 220px; height: 220px; opacity: .18; }
.about h2 { font-weight: 800; font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -.6px; line-height: 1.1; margin-bottom: 22px; color: #fff; }
.about p { color: var(--gg-text-2); font-size: 1.05rem; margin-bottom: 18px; }
.about p b { color: var(--gg-text); }
.about .sig { margin-top: 26px; font-weight: 800; font-size: 1.15rem; color: var(--gg-green); }
.about .sig small { display: block; font-weight: 600; font-size: .8rem; color: var(--gg-text-3); letter-spacing: .5px; margin-top: 4px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } .about .portrait { aspect-ratio: 16/10; } }

/* ---------- Recent Work ---------- */
.work { background: var(--bg); }
.work-feature { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.work-video { position: relative; width: 320px; max-width: 100%; aspect-ratio: 9 / 16; border-radius: 6px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow-lg); background: var(--bg-band); }
.work-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-tag { position: absolute; top: 14px; left: 14px; background: rgba(11,14,7,.78); color: var(--gg-yellow); font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 12px; border-radius: 40px; display: inline-flex; align-items: center; gap: 7px; }
.work-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gg-orange); box-shadow: 0 0 0 0 rgba(240,138,23,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(240,138,23,.55);} 70%{ box-shadow: 0 0 0 8px rgba(240,138,23,0);} 100%{ box-shadow: 0 0 0 0 rgba(240,138,23,0);} }
.work-copy h3 { font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.5px; color: #fff; margin-bottom: 16px; line-height: 1.12; }
.work-copy p { color: var(--gg-text-2); font-size: 1.05rem; margin-bottom: 22px; max-width: 520px; }
.work-points { list-style: none; margin-bottom: 22px; }
.work-points li { position: relative; padding: 10px 0 10px 28px; border-top: 1px solid var(--line); color: var(--gg-text); font-size: .98rem; }
.work-points li:first-child { border-top: none; }
.work-points li::before { content: ''; position: absolute; left: 0; top: 16px; width: 11px; height: 6px; border-left: 2px solid var(--gg-green); border-bottom: 2px solid var(--gg-green); transform: rotate(-45deg); }
.work-note { font-size: .85rem; color: var(--gg-text-3) !important; margin-bottom: 0 !important; }
@media (max-width: 760px) { .work-feature { grid-template-columns: 1fr; gap: 32px; justify-items: center; } .work-copy { text-align: left; } }

/* ---------- Vista (full-bleed cinematic band) ---------- */
.vista { position: relative; width: 100%; aspect-ratio: 2800 / 952; min-height: 300px; max-height: 80vh; overflow: hidden; background: var(--bg-band); }
.vista-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.vista::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; box-shadow: inset 0 -90px 90px -60px var(--bg-band), inset 0 90px 90px -70px var(--bg-band); }
.vista-overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; background: linear-gradient(90deg, rgba(11,14,7,.82) 0%, rgba(11,14,7,.42) 52%, rgba(11,14,7,.1) 100%); }
.vista-eyebrow { font-weight: 700; font-size: .74rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gg-yellow); margin-bottom: 18px; }
.vista-line { font-weight: 800; font-size: clamp(1.5rem, 3.6vw, 2.7rem); line-height: 1.14; letter-spacing: -.6px; color: #fff; max-width: 720px; text-shadow: 0 2px 30px rgba(0,0,0,.55); }
@media (max-width: 700px) {
  .vista { aspect-ratio: auto; height: 58vh; min-height: 380px; }
  .vista-overlay { align-items: flex-end; padding-bottom: 40px; background: linear-gradient(180deg, rgba(11,14,7,.35) 0%, rgba(11,14,7,.86) 100%); }
}

/* ---------- Contact ---------- */
.contact { background: var(--bg-band); color: var(--gg-text); }
.contact::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--gg-green-deep), var(--gg-orange)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact .sec-eyebrow { color: var(--gg-yellow); } .contact .sec-eyebrow::before { background: var(--gg-orange); }
.contact h2 { font-weight: 800; font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -.8px; color: #fff; margin-bottom: 18px; line-height: 1.06; }
.contact .lede { color: var(--gg-text-2); font-size: 1.08rem; margin-bottom: 34px; max-width: 460px; }
.contact-detail { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail .ic { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: var(--gg-yellow); flex-shrink: 0; }
.contact-detail .ct small { display: block; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gg-text-3); }
.contact-detail .ct a, .contact-detail .ct span { font-weight: 700; color: #fff; }
.contact-detail .ct a:hover { color: var(--gg-yellow); }
form.lead { background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 4px; padding: 34px; }
form.lead .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.lead label { display: block; font-size: .76rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gg-text-3); margin: 0 0 7px; }
form.lead .field { margin-bottom: 18px; }
form.lead input, form.lead select, form.lead textarea {
  width: 100%; font-family: inherit; font-size: .95rem; color: #fff; background: rgba(0,0,0,.35);
  border: 1px solid var(--line-2); border-radius: 2px; padding: 12px 14px; transition: border-color .25s var(--ease), background .25s var(--ease);
}
form.lead input::placeholder, form.lead textarea::placeholder { color: var(--gg-text-3); }
form.lead input:focus, form.lead select:focus, form.lead textarea:focus { outline: none; border-color: var(--gg-orange); background: rgba(0,0,0,.5); }
form.lead select option { color: #1a1a1a; }
form.lead textarea { resize: vertical; min-height: 96px; }
form.lead .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }
form.lead .form-note { font-size: .78rem; color: var(--gg-text-3); margin-top: 14px; text-align: center; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 480px) { form.lead .row { grid-template-columns: 1fr; } form.lead { padding: 26px; } }

/* ---------- Footer ---------- */
footer.site { background: var(--bg); padding: 40px 0; border-top: 1px solid var(--line); }
footer.site .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
footer.site .brand img { height: 34px; }
footer.site .brand span { font-weight: 700; font-size: .92rem; }
footer.site .legal { font-size: .8rem; color: var(--gg-text-3); }
footer.site .legal a { color: var(--gg-text-2); font-weight: 600; }
