/*
Theme Name: Gecko Print Revenue
Theme URI: https://geckoprintanddesign.com/
Author: Gecko Print & OpenAI
Description: A conversion-focused custom WordPress theme for Gecko Print & Design.
Version: 1.6.7
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: gecko-print
*/

:root {
  --gp-orange: #f45a1f;
  --gp-orange-dark: #d94712;
  --gp-green: #80c342;
  --gp-green-dark: #4f9624;
  --gp-ink: #202329;
  --gp-charcoal: #2d3036;
  --gp-muted: #656b73;
  --gp-cream: #fff9f1;
  --gp-white: #ffffff;
  --gp-line: #e8e2da;
  --gp-shadow: 0 18px 50px rgba(29, 32, 37, 0.12);
  --gp-radius: 22px;
  --gp-radius-sm: 14px;
  --gp-container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--gp-ink);
  background: var(--gp-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.gp-container { width: var(--gp-container); margin-inline: auto; }
.gp-section { padding: 92px 0; }
.gp-section--cream { background: var(--gp-cream); }
.gp-section--dark { background: var(--gp-charcoal); color: var(--gp-white); }
.gp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gp-green-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.gp-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--gp-orange);
}
.gp-section-title {
  margin: 14px 0 14px;
  max-width: 780px;
  font-size: clamp(2.05rem, 4.2vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.gp-section-lead {
  margin: 0;
  max-width: 720px;
  color: var(--gp-muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}
.gp-section--dark .gp-section-lead { color: rgba(255,255,255,.72); }

.gp-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--gp-orange);
  color: var(--gp-white);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(244, 90, 31, .22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.gp-button:hover,
.gp-button:focus-visible {
  transform: translateY(-2px);
  background: var(--gp-orange-dark);
  box-shadow: 0 16px 32px rgba(244, 90, 31, .28);
}
.gp-button--secondary {
  background: var(--gp-white);
  border-color: rgba(32,35,41,.14);
  color: var(--gp-ink);
  box-shadow: none;
}
.gp-button--secondary:hover,
.gp-button--secondary:focus-visible { background: var(--gp-cream); }
.gp-button--green { background: var(--gp-green-dark); box-shadow: 0 12px 24px rgba(79,150,36,.18); }
.gp-button--green:hover,
.gp-button--green:focus-visible { background: #397b17; }

/* Header */
.gp-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(32,35,41,.08);
  backdrop-filter: blur(16px);
}
.gp-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.gp-brand { display: flex; align-items: center; min-width: 210px; }
.gp-brand img { width: 212px; max-height: 64px; object-fit: contain; }
.gp-primary-nav { margin-left: auto; }
.gp-primary-nav ul { display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; list-style: none; }
.gp-primary-nav a { font-size: .95rem; font-weight: 700; color: #3b4047; }
.gp-primary-nav a:hover { color: var(--gp-orange); }
.gp-header-cta { white-space: nowrap; }
.gp-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--gp-cream);
  color: var(--gp-ink);
  font-size: 1.35rem;
}

/* Hero */
.gp-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 10% 8%, rgba(128,195,66,.18), transparent 27%),
    radial-gradient(circle at 95% 10%, rgba(244,90,31,.18), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #fff 100%);
}
.gp-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 85px solid rgba(128,195,66,.09);
  border-radius: 50%;
}
.gp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(470px, 1.02fr);
  align-items: center;
  gap: 62px;
}
.gp-hero h1 {
  margin: 18px 0 22px;
  max-width: 720px;
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.064em;
}
.gp-hero h1 .gp-highlight { color: var(--gp-orange); }
.gp-hero-copy {
  max-width: 650px;
  color: var(--gp-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}
.gp-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.gp-hero-proof { display: flex; flex-wrap: wrap; gap: 17px 24px; margin-top: 30px; padding: 0; list-style: none; }
.gp-hero-proof li { display: inline-flex; align-items: center; gap: 8px; color: #4c5159; font-size: .92rem; font-weight: 700; }
.gp-hero-proof li::before { content: "✓"; display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(128,195,66,.16); color: var(--gp-green-dark); font-weight: 900; }
.gp-hero-collage { position: relative; min-height: 590px; }
.gp-hero-card {
  position: absolute;
  overflow: hidden;
  border: 9px solid var(--gp-white);
  border-radius: 28px;
  box-shadow: var(--gp-shadow);
  background: #ddd;
}
.gp-hero-card img { width: 100%; height: 100%; object-fit: cover; }
.gp-hero-card--a { width: 60%; height: 63%; top: 0; left: 0; transform: rotate(-3deg); }
.gp-hero-card--b { width: 52%; height: 56%; right: 0; top: 13%; transform: rotate(3deg); }
.gp-hero-card--c { width: 62%; height: 44%; left: 17%; bottom: 0; transform: rotate(1deg); }
.gp-floating-badge {
  position: absolute;
  z-index: 5;
  right: 4%;
  bottom: 4%;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 17px;
  border: 7px solid var(--gp-white);
  border-radius: 50%;
  background: var(--gp-charcoal);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.gp-floating-badge img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

/* Trust strip */
.gp-trust-strip { border-block: 1px solid var(--gp-line); background: var(--gp-white); }
.gp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.gp-trust-item { padding: 27px 22px; border-right: 1px solid var(--gp-line); text-align: center; }
.gp-trust-item:last-child { border-right: 0; }
.gp-trust-item strong { display: block; font-size: 1rem; }
.gp-trust-item span { color: var(--gp-muted); font-size: .87rem; }

/* Service cards */
.gp-services-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 42px; }
.gp-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.gp-service-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--gp-radius);
  background: var(--gp-charcoal);
  color: var(--gp-white);
  box-shadow: 0 16px 40px rgba(28,31,36,.13);
}
.gp-service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gp-service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,18,22,.04) 28%, rgba(16,18,22,.93) 100%); }
.gp-service-card:hover img { transform: scale(1.04); }
.gp-service-content { position: absolute; z-index: 2; inset: auto 0 0; padding: 31px; }
.gp-service-kicker { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.15); font-size: .73rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(6px); }
.gp-service-card h3 { margin: 13px 0 7px; font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1.05; }
.gp-service-card p { margin: 0; max-width: 520px; color: rgba(255,255,255,.77); }
.gp-service-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 800; color: #fff; }
.gp-service-link::after { content: "→"; transition: transform .18s ease; }
.gp-service-card:hover .gp-service-link::after { transform: translateX(4px); }

/* Split credibility section */
.gp-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.gp-image-stack { position: relative; min-height: 560px; }
.gp-image-stack__main { position: absolute; inset: 0 10% 12% 0; overflow: hidden; border-radius: 28px; box-shadow: var(--gp-shadow); }
.gp-image-stack__main img { width: 100%; height: 100%; object-fit: cover; }
.gp-image-stack__small { position: absolute; right: 0; bottom: 0; width: 44%; height: 42%; overflow: hidden; border: 8px solid var(--gp-white); border-radius: 24px; box-shadow: var(--gp-shadow); }
.gp-image-stack__small img { width: 100%; height: 100%; object-fit: cover; }
.gp-checklist { display: grid; gap: 14px; margin: 28px 0 34px; padding: 0; list-style: none; }
.gp-checklist li { display: grid; grid-template-columns: 28px 1fr; gap: 11px; align-items: start; }
.gp-checklist li::before { content: "✓"; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(128,195,66,.18); color: var(--gp-green-dark); font-weight: 900; }

/* Process */
.gp-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; counter-reset: process; }
.gp-process-step { position: relative; padding: 31px 25px; border: 1px solid var(--gp-line); border-radius: var(--gp-radius); background: var(--gp-white); counter-increment: process; }
.gp-process-step::before { content: counter(process, decimal-leading-zero); display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: var(--gp-orange); color: var(--gp-white); font-weight: 900; }
.gp-process-step h3 { margin: 20px 0 8px; font-size: 1.3rem; }
.gp-process-step p { margin: 0; color: var(--gp-muted); font-size: .94rem; }

/* Gallery */
.gp-gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 37px; }
.gp-gallery { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: 260px; gap: 16px; }
.gp-gallery-item { position: relative; overflow: hidden; border-radius: 18px; background: #ddd; }
.gp-gallery-item:first-child { grid-row: span 2; }
.gp-gallery-item:nth-child(4) { grid-column: span 2; }
.gp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gp-gallery-item:hover img { transform: scale(1.035); }
.gp-gallery-caption { position: absolute; inset: auto 0 0; padding: 44px 18px 16px; color: #fff; font-weight: 800; background: linear-gradient(transparent, rgba(0,0,0,.72)); }

/* Location + CTA */
.gp-location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.gp-location-card { padding: 31px; border-radius: var(--gp-radius); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); }
.gp-location-card h3 { margin: 0 0 8px; font-size: 1.45rem; }
.gp-location-card p { margin: 0; color: rgba(255,255,255,.68); }
.gp-final-cta { position: relative; overflow: hidden; padding: 70px; border-radius: 34px; background: var(--gp-orange); color: #fff; box-shadow: 0 28px 60px rgba(244,90,31,.24); }
.gp-final-cta::after { content: ""; position: absolute; right: -90px; top: -110px; width: 330px; height: 330px; border: 60px solid rgba(255,255,255,.12); border-radius: 50%; }
.gp-final-cta > * { position: relative; z-index: 1; }
.gp-final-cta h2 { margin: 0 0 14px; max-width: 780px; font-size: clamp(2.4rem, 5vw, 5.2rem); line-height: .98; letter-spacing: -.055em; }
.gp-final-cta p { max-width: 720px; margin: 0 0 28px; color: rgba(255,255,255,.85); font-size: 1.12rem; }
.gp-final-cta .gp-button { background: #fff; color: var(--gp-ink); box-shadow: none; }

/* Generic content pages */
.gp-page-hero { padding: 76px 0 52px; background: var(--gp-cream); border-bottom: 1px solid var(--gp-line); }
.gp-page-hero h1 { margin: 10px 0 0; font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: .98; letter-spacing: -.055em; }
.gp-content { width: min(900px, calc(100vw - 40px)); margin: 0 auto; padding: 64px 0 90px; }
.gp-content h2, .gp-content h3 { line-height: 1.15; letter-spacing: -.025em; }
.gp-content h2 { margin-top: 2.3em; font-size: 2rem; }
.gp-content p, .gp-content li { color: #4f555d; }
.gp-content a { color: var(--gp-orange-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.gp-content .wp-block-button__link { text-decoration: none; }
.gp-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 32px 0; }
.gp-page-card { padding: 24px; border: 1px solid var(--gp-line); border-radius: var(--gp-radius-sm); }

/* Footer */
.gp-site-footer { padding: 72px 0 28px; background: #1f2227; color: #fff; }
.gp-footer-grid { display: grid; grid-template-columns: 1.35fr .85fr .85fr .95fr; gap: 44px; }
.gp-footer-logo { width: 220px; padding: 8px; border-radius: 14px; background: #fff; }
.gp-footer-copy { max-width: 390px; color: rgba(255,255,255,.62); }
.gp-site-footer h3 { margin: 4px 0 16px; font-size: 1rem; }
.gp-footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.68); }
.gp-footer-links a:hover { color: var(--gp-green); }
.gp-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: .86rem; }

/* WordPress admin bar accommodation */
.admin-bar .gp-site-header { top: 32px; }

@media (max-width: 1050px) {
  .gp-primary-nav { display: none; position: absolute; top: 84px; left: 0; right: 0; padding: 16px 20px 24px; background: #fff; border-bottom: 1px solid var(--gp-line); }
  .gp-primary-nav.is-open { display: block; }
  .gp-primary-nav ul { align-items: stretch; flex-direction: column; gap: 8px; }
  .gp-primary-nav a { display: block; padding: 10px 0; }
  .gp-menu-toggle { display: inline-grid; place-items: center; }
  .gp-header-cta { margin-left: auto; }
  .gp-hero-grid { grid-template-columns: 1fr; }
  .gp-hero-collage { min-height: 530px; max-width: 720px; width: 100%; margin: 0 auto; }
  .gp-services-grid { grid-template-columns: 1fr 1fr; }
  .gp-split { grid-template-columns: 1fr; gap: 44px; }
  .gp-image-stack { min-height: 480px; }
  .gp-process-grid { grid-template-columns: 1fr 1fr; }
  .gp-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .gp-footer-grid > div:last-child { grid-column: span 3; }
}

@media (max-width: 760px) {
  :root { --gp-container: min(100% - 28px, 1180px); }
  .gp-section { padding: 68px 0; }
  .gp-header-inner { min-height: 72px; gap: 10px; }
  .gp-brand { min-width: auto; }
  .gp-brand img { width: 150px; max-height: 48px; }
  .gp-primary-nav { top: 72px; }
  .gp-header-cta { display: none; }
  .gp-hero { padding: 62px 0 52px; }
  .gp-hero h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .gp-hero-collage { min-height: 405px; }
  .gp-hero-card { border-width: 5px; border-radius: 18px; }
  .gp-floating-badge { width: 92px; height: 92px; border-width: 5px; }
  .gp-trust-grid { grid-template-columns: 1fr 1fr; }
  .gp-trust-item:nth-child(2) { border-right: 0; }
  .gp-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--gp-line); }
  .gp-services-head, .gp-gallery-head { align-items: start; flex-direction: column; }
  .gp-services-grid { grid-template-columns: 1fr; }
  .gp-service-card { min-height: 360px; }
  .gp-image-stack { min-height: 390px; }
  .gp-process-grid { grid-template-columns: 1fr; }
  .gp-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gp-gallery-item:first-child { grid-row: auto; grid-column: span 2; }
  .gp-gallery-item:nth-child(4) { grid-column: span 2; }
  .gp-location-grid { grid-template-columns: 1fr; }
  .gp-final-cta { padding: 44px 26px; border-radius: 24px; }
  .gp-footer-grid { grid-template-columns: 1fr 1fr; }
  .gp-footer-grid > div:first-child, .gp-footer-grid > div:last-child { grid-column: span 2; }
  .gp-footer-bottom { align-items: flex-start; flex-direction: column; }
  .gp-page-grid { grid-template-columns: 1fr; }
  .admin-bar .gp-site-header { top: 46px; }
}

@media (max-width: 480px) {
  .gp-hero-actions .gp-button { width: 100%; }
  .gp-trust-grid { grid-template-columns: 1fr; }
  .gp-trust-item { border-right: 0; border-bottom: 1px solid var(--gp-line); }
  .gp-trust-item:last-child { border-bottom: 0; }
  .gp-gallery { grid-template-columns: 1fr; }
  .gp-gallery-item:first-child, .gp-gallery-item:nth-child(4) { grid-column: auto; }
  .gp-footer-grid { grid-template-columns: 1fr; }
  .gp-footer-grid > div:first-child, .gp-footer-grid > div:last-child { grid-column: auto; }
}

/* Contact page — bold gecko-led hero with a clean, practical contact section */
.gp-contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 9vw, 128px) 0 clamp(74px, 9vw, 118px);
  background:
    radial-gradient(circle at 7% 18%, rgba(128,195,66,.22), transparent 28%),
    radial-gradient(circle at 48% 92%, rgba(244,90,31,.16), transparent 30%),
    linear-gradient(132deg, #202329 0%, #292f29 48%, #172219 100%);
  color: #fff;
}
.gp-contact-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}
.gp-contact-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -11vw;
  bottom: -29vw;
  width: min(62vw, 890px);
  aspect-ratio: 1;
  border: clamp(45px, 6vw, 92px) solid rgba(128,195,66,.09);
  border-radius: 50%;
}
.gp-contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}
.gp-contact-hero .gp-eyebrow { color: #aee56e; }
.gp-contact-hero .gp-eyebrow::before { background: var(--gp-orange); }
.gp-contact-hero h1 {
  max-width: 820px;
  margin: 18px 0 24px;
  font-size: clamp(3.2rem, 6.9vw, 7.3rem);
  line-height: .88;
  letter-spacing: -.072em;
  text-wrap: balance;
}
.gp-contact-hero h1 span {
  display: block;
  color: #9fdc5c;
  text-shadow: 0 12px 40px rgba(128,195,66,.16);
}
.gp-contact-hero__copy > p {
  max-width: 670px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.72;
}
.gp-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}
.gp-contact-hero .gp-button--secondary {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(12px);
}
.gp-contact-hero .gp-button--secondary:hover,
.gp-contact-hero .gp-button--secondary:focus-visible {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.14);
}
.gp-contact-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 31px 0 0;
  padding: 0;
  color: rgba(255,255,255,.67);
  font-size: .86rem;
  font-weight: 720;
  list-style: none;
}
.gp-contact-promise li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.gp-contact-promise li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(128,195,66,.16);
  color: #aee56e;
  font-size: .72rem;
  font-weight: 950;
}
.gp-contact-hero__visual {
  position: relative;
  min-height: clamp(440px, 49vw, 680px);
}
.gp-contact-hero__visual > img {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: min(100%, 720px);
  max-height: 100%;
  transform: translate(-50%, -50%) rotate(1.4deg);
  border: 8px solid rgba(255,255,255,.92);
  border-radius: clamp(28px, 4vw, 54px);
  box-shadow: 0 42px 90px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.08);
}
.gp-contact-orbit {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(255,255,255,.13);
  border-radius: 50%;
}
.gp-contact-orbit--one { inset: 4% 0 14% 7%; transform: rotate(-13deg); }
.gp-contact-orbit--two { inset: 15% 8% 4% 0; border-color: rgba(128,195,66,.25); transform: rotate(12deg); }
.gp-contact-hero__badge {
  position: absolute;
  z-index: 4;
  right: -12px;
  bottom: 8%;
  display: grid;
  gap: 1px;
  min-width: 220px;
  padding: 17px 21px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 18px;
  background: rgba(24,30,25,.82);
  color: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
  transform: rotate(-2deg);
}
.gp-contact-hero__badge strong { color: #aee56e; font-size: 1.02rem; }
.gp-contact-hero__badge span { color: rgba(255,255,255,.7); font-size: .82rem; }

.gp-contact-quick {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}
.gp-contact-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gp-contact-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 218px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(32,35,41,.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(25,29,25,.12);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.gp-contact-card:hover,
a.gp-contact-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(128,195,66,.56);
  box-shadow: 0 28px 60px rgba(25,29,25,.16);
}
.gp-contact-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -40px;
  width: 112px;
  height: 112px;
  border: 25px solid rgba(128,195,66,.08);
  border-radius: 50%;
}
.gp-contact-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 13px;
  background: var(--gp-cream);
  color: var(--gp-orange-dark);
  font-size: 1.15rem;
  font-weight: 900;
}
.gp-contact-card small {
  color: var(--gp-green-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.gp-contact-card strong {
  position: relative;
  z-index: 1;
  margin-top: 5px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.gp-contact-card em {
  position: relative;
  z-index: 1;
  margin-top: 9px;
  color: var(--gp-muted);
  font-size: .82rem;
  font-style: normal;
  line-height: 1.5;
}

.gp-contact-story { padding: clamp(92px, 11vw, 150px) 0; }
.gp-contact-story__grid {
  display: grid;
  grid-template-columns: minmax(400px, .92fr) minmax(0, 1.08fr);
  gap: clamp(52px, 7vw, 104px);
  align-items: center;
}
.gp-contact-story__gallery {
  position: relative;
  min-height: 650px;
}
.gp-contact-story__image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid #fff;
  border-radius: 30px;
  background: var(--gp-cream);
  box-shadow: var(--gp-shadow);
}
.gp-contact-story__image img { width: 100%; height: 100%; object-fit: cover; }
.gp-contact-story__image--large { inset: 0 16% 13% 0; transform: rotate(-2.8deg); }
.gp-contact-story__image--small {
  right: -1%;
  bottom: -1%;
  width: 66%;
  height: auto;
  aspect-ratio: 740 / 493;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  transform: rotate(3.1deg);
}
.gp-contact-story__image--small img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #fff;
}
.gp-contact-story__note {
  position: absolute;
  z-index: 3;
  left: 5%;
  bottom: 4%;
  display: grid;
  width: min(330px, 66%);
  gap: 5px;
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--gp-orange);
  color: #fff;
  box-shadow: 0 20px 45px rgba(244,90,31,.27);
  transform: rotate(1.2deg);
}
.gp-contact-story__note span { font-size: .72rem; font-weight: 900; letter-spacing: .095em; text-transform: uppercase; opacity: .74; }
.gp-contact-story__note strong { font-size: 1.08rem; line-height: 1.28; }
.gp-contact-story__copy h2 {
  margin: 15px 0 22px;
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  line-height: .99;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.gp-contact-story__copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--gp-muted);
  font-size: 1.08rem;
  line-height: 1.73;
}
.gp-contact-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 31px;
}
.gp-contact-feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--gp-line);
  border-radius: 17px;
  background: #fff;
}
.gp-contact-feature-list article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #eef8e4;
  color: var(--gp-green-dark);
  font-size: .77rem;
  font-weight: 950;
}
.gp-contact-feature-list strong { display: block; font-size: 1rem; }
.gp-contact-feature-list p { margin: 4px 0 0; color: var(--gp-muted); font-size: .87rem; }

.gp-contact-form-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 140px) 0;
  background:
    radial-gradient(circle at 4% 94%, rgba(244,90,31,.15), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(128,195,66,.2), transparent 30%),
    var(--gp-cream);
}
.gp-contact-form-section::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -110px;
  width: 360px;
  height: 360px;
  opacity: .055;
  background: url("assets/images/contact-gecko-pattern.svg") center / contain no-repeat;
  transform: rotate(-8deg);
  pointer-events: none;
}
.gp-contact-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(500px, 1.22fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}
.gp-contact-form-copy h2 {
  max-width: 620px;
  margin: 15px 0 20px;
  font-size: clamp(2.65rem, 5.5vw, 5.8rem);
  line-height: .94;
  letter-spacing: -.062em;
}
.gp-contact-form-copy > p { max-width: 580px; margin: 0; color: var(--gp-muted); font-size: 1.04rem; }
.gp-contact-order-link {
  display: grid;
  gap: 4px;
  max-width: 520px;
  margin-top: 29px;
  padding: 20px 23px;
  border: 1px solid rgba(128,195,66,.45);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(32,35,41,.07);
  transition: transform .2s ease, border-color .2s ease;
}
.gp-contact-order-link:hover,
.gp-contact-order-link:focus-visible { transform: translateY(-3px); border-color: var(--gp-green-dark); }
.gp-contact-order-link span { color: var(--gp-muted); font-size: .82rem; }
.gp-contact-order-link strong { color: var(--gp-green-dark); font-size: 1.08rem; }
.gp-contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.gp-contact-direct p { display: grid; gap: 1px; margin: 0; }
.gp-contact-direct small { color: var(--gp-muted); }
.gp-contact-direct a { width: fit-content; font-size: 1.02rem; font-weight: 850; overflow-wrap: anywhere; }
.gp-contact-direct a:hover { color: var(--gp-orange-dark); }
.gp-contact-form-card {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(32,35,41,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 70px rgba(29,32,37,.13);
  backdrop-filter: blur(10px);
}
.gp-contact-status {
  display: grid;
  gap: 3px;
  margin-bottom: 19px;
  padding: 15px 17px;
  border-left: 5px solid;
  border-radius: 13px;
}
.gp-contact-status--success { border-color: var(--gp-green); background: #eff9e7; color: #315f18; }
.gp-contact-status--error { border-color: var(--gp-orange); background: #fff0ec; color: #7f2b14; }
.gp-contact-status span { font-size: .84rem; }
.gp-contact-form { display: grid; gap: 17px; }
.gp-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.gp-contact-form label { display: grid; gap: 7px; }
.gp-contact-form label > span { font-size: .82rem; font-weight: 850; }
.gp-contact-form input,
.gp-contact-form select,
.gp-contact-form textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1.5px solid #dcd7d0;
  border-radius: 13px;
  outline: none;
  background: #fff;
  color: var(--gp-ink);
  transition: border-color .17s ease, box-shadow .17s ease;
}
.gp-contact-form textarea { min-height: 160px; resize: vertical; }
.gp-contact-form input:focus,
.gp-contact-form select:focus,
.gp-contact-form textarea:focus { border-color: var(--gp-orange); box-shadow: 0 0 0 4px rgba(244,90,31,.1); }
.gp-contact-form .gp-button { justify-self: start; min-width: 190px; border: 0; }
.gp-contact-form__privacy { margin: -2px 0 0; color: var(--gp-muted); font-size: .76rem; }
.gp-contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.gp-contact-final { padding: 74px 0; background: #1f2227; color: #fff; }
.gp-contact-final__inner {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.gp-contact-final__inner > img {
  width: 112px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,.93);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0,0,0,.3);
}
.gp-contact-final span { color: var(--gp-green); font-size: .73rem; font-weight: 900; letter-spacing: .105em; text-transform: uppercase; }
.gp-contact-final h2 { max-width: 760px; margin: 5px 0 0; font-size: clamp(1.65rem, 3.2vw, 3.2rem); line-height: 1.06; letter-spacing: -.04em; }

@media (max-width: 1080px) {
  .gp-contact-hero__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .gp-contact-hero h1 { font-size: clamp(3.2rem, 7.8vw, 6.2rem); }
  .gp-contact-quick__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-contact-story__grid { grid-template-columns: .9fr 1.1fr; gap: 52px; }
  .gp-contact-form-grid { grid-template-columns: .85fr 1.15fr; gap: 48px; }
  .gp-contact-final__inner { grid-template-columns: 100px 1fr; }
  .gp-contact-final__inner .gp-button { grid-column: 2; justify-self: start; }
}
@media (max-width: 820px) {
  .gp-contact-hero__grid,
  .gp-contact-story__grid,
  .gp-contact-form-grid { grid-template-columns: 1fr; }
  .gp-contact-hero__visual { min-height: 570px; order: -1; }
  .gp-contact-hero__visual > img { width: min(95%, 650px); }
  .gp-contact-hero__copy { text-align: center; }
  .gp-contact-hero__copy > p { margin-inline: auto; }
  .gp-contact-hero__actions,
  .gp-contact-promise { justify-content: center; }
  .gp-contact-story__gallery { min-height: 620px; }
  .gp-contact-story__copy { max-width: 720px; }
  .gp-contact-form-copy { max-width: 720px; }
  .gp-contact-form-grid { gap: 52px; }
}
@media (max-width: 620px) {
  .gp-contact-hero { padding-top: 48px; }
  .gp-contact-hero__visual { min-height: 390px; }
  .gp-contact-hero__visual > img { border-width: 5px; border-radius: 28px; }
  .gp-contact-hero__badge { right: 2%; bottom: 2%; min-width: 185px; padding: 13px 15px; }
  .gp-contact-hero h1 { font-size: clamp(3.05rem, 16vw, 4.75rem); }
  .gp-contact-hero__actions .gp-button { width: 100%; }
  .gp-contact-promise { display: grid; justify-content: start; width: fit-content; margin-inline: auto; text-align: left; }
  .gp-contact-quick { margin-top: -22px; }
  .gp-contact-quick__grid { grid-template-columns: 1fr; }
  .gp-contact-card { min-height: auto; }
  .gp-contact-story__gallery { min-height: 470px; }
  .gp-contact-story__image--large { inset: 0 6% 14% 0; }
  .gp-contact-story__image--small {
    right: 0;
    bottom: -2%;
    width: 68%;
    height: auto;
    padding: 12px;
  }
  .gp-contact-story__note { left: 2%; width: 72%; padding: 16px; }
  .gp-contact-feature-list article { grid-template-columns: 42px 1fr; padding: 15px; }
  .gp-contact-feature-list article > span { width: 39px; height: 39px; }
  .gp-contact-form-card { border-radius: 22px; }
  .gp-contact-form__row { grid-template-columns: 1fr; }
  .gp-contact-form .gp-button { width: 100%; }
  .gp-contact-final__inner { grid-template-columns: 1fr; text-align: center; }
  .gp-contact-final__inner > img { margin-inline: auto; }
  .gp-contact-final__inner .gp-button { grid-column: auto; justify-self: stretch; }
}

/* v0.4 homepage creative feature */
.gp-hero-collage--featured {
  min-height: 0;
  display: grid;
  align-items: end;
}
.gp-hero-feature {
  position: relative;
  overflow: hidden;
  border: 10px solid var(--gp-white);
  border-radius: 30px;
  box-shadow: var(--gp-shadow);
  background: #d8dfd0;
}
.gp-hero-feature img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
}
.gp-hero-feature__note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  display: grid;
  gap: 3px;
  max-width: 260px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 20px;
  background: rgba(26,29,34,.88);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  color: var(--gp-white);
}
.gp-hero-feature__note strong {
  font-size: .96rem;
  line-height: 1.2;
}
.gp-hero-feature__note span {
  color: rgba(255,255,255,.72);
  font-size: .84rem;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .gp-hero-collage--featured {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .gp-hero-feature {
    border-width: 6px;
    border-radius: 22px;
  }
  .gp-hero-feature__note {
    position: static;
    margin: 14px 10px 0;
    max-width: none;
  }
  .gp-hero-feature img {
    aspect-ratio: 4 / 5;
  }
}


/* v0.5 homepage hero background refresh */
.gp-hero {
  background:
    linear-gradient(118deg, rgba(28,52,31,.08) 0%, rgba(28,52,31,0) 34%),
    radial-gradient(circle at 16% 18%, rgba(128,195,66,.30), transparent 31%),
    radial-gradient(circle at 86% 14%, rgba(244,90,31,.18), transparent 30%),
    radial-gradient(circle at 70% 86%, rgba(128,195,66,.13), transparent 36%),
    linear-gradient(135deg, #eef4e8 0%, #faf7f0 42%, #e8f1e3 100%);
}
.gp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background:
    linear-gradient(105deg, rgba(255,255,255,.22), rgba(255,255,255,0) 30%, rgba(255,255,255,.14) 56%, rgba(255,255,255,0) 74%),
    repeating-linear-gradient(118deg, rgba(67,112,31,.08) 0 2px, transparent 2px 42px),
    repeating-linear-gradient(72deg, rgba(127,173,70,.07) 0 1px, transparent 1px 34px);
  mix-blend-mode: multiply;
}
.gp-hero::after {
  right: -140px;
  bottom: -220px;
  width: 540px;
  height: 540px;
  border-color: rgba(128,195,66,.12);
}
.gp-hero-grid > div:first-child {
  position: relative;
  padding: 32px 34px 36px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 34px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 20px 44px rgba(31,45,28,.09);
  backdrop-filter: blur(14px);
}
.gp-hero-copy {
  color: #4f565e;
}
.gp-hero-proof li {
  color: #42484f;
}
.gp-hero-feature {
  border-color: rgba(255,255,255,.94);
  box-shadow: 0 26px 60px rgba(25,36,24,.18);
}
.gp-hero-feature::before {
  content: "";
  position: absolute;
  inset: -14% auto auto -10%;
  width: 56%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.34) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

@media (max-width: 1080px) {
  .gp-hero-grid > div:first-child {
    padding: 28px 28px 30px;
    border-radius: 28px;
  }
}

@media (max-width: 720px) {
  .gp-hero-grid > div:first-child {
    padding: 22px 20px 24px;
    border-radius: 22px;
    background: rgba(255,255,255,.72);
  }
  .gp-hero::before {
    opacity: .36;
  }
}


/* v0.6 immersive hero and 3D product showcase */
.gp-hero {
  padding: 78px 0 58px;
  color: var(--gp-white);
  background:
    radial-gradient(circle at 14% 12%, rgba(128,195,66,.20), transparent 31%),
    radial-gradient(circle at 78% 32%, rgba(74,118,42,.16), transparent 36%),
    linear-gradient(102deg, #222a22 0%, #121613 48%, #030504 78%, #000 100%);
}
.gp-hero::before {
  opacity: .28;
  background:
    repeating-linear-gradient(112deg, rgba(135,191,76,.10) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(68deg, rgba(73,120,42,.09) 0 1px, transparent 1px 37px);
  mix-blend-mode: screen;
}
.gp-hero::after {
  right: -160px;
  bottom: -190px;
  border-color: rgba(128,195,66,.10);
}
.gp-hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: 0;
}
.gp-hero-copy-panel {
  position: relative;
  z-index: 3;
  padding: 48px 82px 48px 42px;
  border: 1px solid rgba(255,255,255,.10);
  border-right: 0;
  border-radius: 34px 0 0 34px;
  background:
    linear-gradient(90deg, rgba(26,32,26,.97) 0%, rgba(19,23,20,.96) 68%, rgba(8,10,9,.16) 100%);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.gp-hero-copy-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -150px;
  width: 240px;
  height: 100%;
  background: linear-gradient(90deg, rgba(14,17,15,.95), rgba(7,9,8,0));
  pointer-events: none;
}
.gp-hero .gp-eyebrow {
  color: #a7e86a;
}
.gp-hero h1 {
  color: #fff;
  text-shadow: 0 10px 32px rgba(0,0,0,.20);
}
.gp-hero-copy {
  color: rgba(255,255,255,.72);
}
.gp-hero .gp-button--secondary {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.gp-hero .gp-button--secondary:hover,
.gp-hero .gp-button--secondary:focus-visible {
  background: rgba(255,255,255,.16);
}
.gp-hero-proof li {
  color: rgba(255,255,255,.76);
}
.gp-hero-proof li::before {
  color: #a8e96d;
  background: rgba(128,195,66,.17);
  box-shadow: inset 0 0 0 1px rgba(167,232,106,.14);
}
.gp-hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin-left: -88px;
}
.gp-hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4% -3% 3% 10%;
  border-radius: 38px;
  background: radial-gradient(circle at 62% 42%, rgba(128,195,66,.23), rgba(0,0,0,0) 66%);
  filter: blur(20px);
}
.gp-hero-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0 34px 34px 0;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.38);
}
.gp-hero-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #0d100e 0%, rgba(13,16,14,.90) 5%, rgba(13,16,14,.46) 14%, rgba(13,16,14,0) 28%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,0) 62%, rgba(0,0,0,.20));
}
.gp-hero-feature img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  object-position: center 51%;
}
.gp-hero-feature__badge {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(7,9,8,.76);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
}
.gp-hero-feature__badge strong {
  color: #a7e86a;
  font-size: .9rem;
}
.gp-hero-feature__badge span {
  color: rgba(255,255,255,.70);
  font-size: .76rem;
}

.gp-home-showcase {
  position: relative;
  z-index: 4;
  margin-top: 46px;
  padding: 24px 26px 19px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background: rgba(8,11,9,.55);
  box-shadow: 0 22px 62px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}
.gp-home-showcase__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.gp-home-showcase__eyebrow {
  display: block;
  color: #a7e86a;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.gp-home-showcase__head h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}
.gp-home-showcase__controls {
  display: flex;
  gap: 8px;
}
.gp-home-showcase__controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 1.15rem;
  transition: background .18s ease, transform .18s ease;
}
.gp-home-showcase__controls button:hover,
.gp-home-showcase__controls button:focus-visible {
  background: var(--gp-orange);
  transform: translateY(-2px);
}
.gp-home-showcase__stage {
  position: relative;
  height: 310px;
  margin-top: 14px;
  overflow: hidden;
  perspective: 1250px;
  outline: none;
}
.gp-home-showcase__stage:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(167,232,106,.55);
  border-radius: 18px;
}
.gp-home-showcase__track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.gp-showcase-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(360px, 34vw);
  height: 236px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: #161a17;
  box-shadow: 0 24px 50px rgba(0,0,0,.38);
  transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.22,.75,.18,1), opacity .45s ease, filter .45s ease;
  cursor: pointer;
}
.gp-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 18%, rgba(0,0,0,.90) 100%);
}
.gp-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gp-showcase-card > div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 20px;
}
.gp-showcase-card span {
  color: #a7e86a;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.gp-showcase-card h3 {
  margin: 5px 0 4px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.08;
}
.gp-showcase-card p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: .82rem;
  line-height: 1.35;
}
.gp-showcase-card:not(.is-active) {
  filter: saturate(.70) brightness(.72);
}
.gp-showcase-card.is-active {
  border-color: rgba(167,232,106,.42);
  filter: none;
}
.gp-home-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 5px;
}
.gp-home-showcase__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.25);
  transition: width .18s ease, background .18s ease;
}
.gp-home-showcase__dots button.is-active {
  width: 26px;
  background: var(--gp-orange);
}

@media (max-width: 1080px) {
  .gp-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .gp-hero-copy-panel {
    border-right: 1px solid rgba(255,255,255,.10);
    border-radius: 30px;
    padding-right: 46px;
  }
  .gp-hero-copy-panel::after {
    display: none;
  }
  .gp-hero-visual {
    margin-left: 0;
  }
  .gp-hero-feature {
    border-radius: 30px;
  }
  .gp-hero-feature::after {
    background: linear-gradient(180deg, rgba(13,16,14,.12), rgba(13,16,14,0) 75%);
  }
  .gp-hero-feature img {
    aspect-ratio: 16 / 10;
    object-position: center 53%;
  }
  .gp-showcase-card {
    width: min(360px, 44vw);
  }
}

@media (max-width: 720px) {
  .gp-hero {
    padding-top: 48px;
  }
  .gp-hero-copy-panel {
    padding: 26px 22px 28px;
    border-radius: 24px;
  }
  .gp-hero-feature {
    border-radius: 24px;
  }
  .gp-hero-feature img {
    aspect-ratio: 4 / 5;
  }
  .gp-hero-feature__badge {
    right: 14px;
    bottom: 14px;
  }
  .gp-home-showcase {
    margin-top: 28px;
    padding: 20px 14px 14px;
  }
  .gp-home-showcase__head {
    align-items: center;
  }
  .gp-home-showcase__stage {
    height: 265px;
  }
  .gp-showcase-card {
    width: min(300px, 78vw);
    height: 205px;
  }
  .gp-showcase-card > div {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-showcase-card {
    transition: opacity .15s ease;
  }
}


/* v0.7 full-campaign hero and true 3D product cylinder */
.gp-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  align-items: stretch;
}
.gp-hero-copy-panel {
  padding-right: 72px;
}
.gp-hero-visual {
  display: flex;
  min-width: 0;
  margin-left: -62px;
}
.gp-hero-feature {
  display: flex;
  width: 100%;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 44%, rgba(91,142,51,.20), transparent 48%),
    #020302;
}
.gp-hero-feature img {
  width: 100%;
  height: auto;
  max-height: 780px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
.gp-hero-feature::after {
  background:
    linear-gradient(90deg, #0d100e 0%, rgba(13,16,14,.78) 5%, rgba(13,16,14,.28) 13%, rgba(13,16,14,0) 24%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,0) 70%, rgba(0,0,0,.16));
}

.gp-home-cylinder {
  position: relative;
  z-index: 4;
  margin-top: 52px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 72%, rgba(128,195,66,.12), transparent 40%),
    rgba(6,9,7,.68);
  box-shadow: 0 24px 72px rgba(0,0,0,.30);
  backdrop-filter: blur(15px);
}
.gp-home-cylinder__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.gp-home-cylinder__eyebrow {
  display: block;
  color: #a7e86a;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.gp-home-cylinder__head h2 {
  margin: 5px 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.gp-home-cylinder__head p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.58);
  font-size: .88rem;
}
.gp-home-cylinder__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}
.gp-home-cylinder__controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 1.18rem;
  transition: background .18s ease, transform .18s ease;
}
.gp-home-cylinder__controls button:hover,
.gp-home-cylinder__controls button:focus-visible {
  background: var(--gp-orange);
  transform: translateY(-2px);
}
.gp-cylinder-stage {
  --gp-cylinder-card-width: 340px;
  --gp-cylinder-radius: 360px;
  position: relative;
  height: 420px;
  margin-top: 10px;
  overflow: hidden;
  perspective: 1200px;
  perspective-origin: 50% 46%;
  cursor: grab;
  touch-action: pan-y;
  outline: none;
}
.gp-cylinder-stage.is-dragging {
  cursor: grabbing;
}
.gp-cylinder-stage:focus-visible {
  border-radius: 22px;
  box-shadow: inset 0 0 0 2px rgba(167,232,106,.52);
}
.gp-cylinder-glow {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: min(760px, 78%);
  height: 120px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(125,194,66,.22), rgba(0,0,0,0) 68%);
  filter: blur(12px);
}
.gp-cylinder-ring {
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: min(700px, 72%);
  height: 112px;
  transform: translateX(-50%);
  border: 1px solid rgba(167,232,106,.18);
  border-radius: 50%;
  box-shadow: inset 0 0 35px rgba(128,195,66,.06);
}
.gp-cylinder-track {
  position: absolute;
  top: 48%;
  left: 50%;
  width: var(--gp-cylinder-card-width);
  height: 238px;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(.2,.72,.16,1);
  will-change: transform;
}
.gp-cylinder-track.is-dragging {
  transition: none;
}
.gp-cylinder-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: #151916;
  box-shadow: 0 28px 58px rgba(0,0,0,.42);
  transform: rotateY(var(--gp-cylinder-panel-angle)) translateZ(var(--gp-cylinder-radius));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  opacity: .58;
  filter: saturate(.67) brightness(.64);
  transition: opacity .42s ease, filter .42s ease, border-color .42s ease;
  cursor: pointer;
}
.gp-cylinder-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 18%, rgba(0,0,0,.92) 100%);
}
.gp-cylinder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gp-cylinder-card > div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 22px;
}
.gp-cylinder-card span {
  color: #a7e86a;
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.gp-cylinder-card h3 {
  margin: 5px 0 5px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.08;
}
.gp-cylinder-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .83rem;
  line-height: 1.38;
}
.gp-cylinder-card.is-active {
  border-color: rgba(167,232,106,.50);
  opacity: 1;
  filter: none;
}
.gp-home-cylinder__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 4px;
}
.gp-home-cylinder__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.25);
  transition: width .18s ease, background .18s ease;
}
.gp-home-cylinder__dots button.is-active {
  width: 27px;
  background: var(--gp-orange);
}

@media (max-width: 1080px) {
  .gp-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .gp-hero-visual {
    margin-left: 0;
  }
  .gp-hero-feature {
    min-height: 0;
    border-radius: 30px;
  }
  .gp-hero-feature img {
    width: min(100%, 620px);
    max-height: none;
  }
  .gp-cylinder-stage {
    height: 390px;
  }
}

@media (max-width: 720px) {
  .gp-home-cylinder {
    padding: 20px 14px 18px;
    border-radius: 22px;
  }
  .gp-home-cylinder__head {
    align-items: center;
  }
  .gp-home-cylinder__head p {
    display: none;
  }
  .gp-cylinder-stage {
    height: 330px;
    perspective: 920px;
  }
  .gp-cylinder-track {
    height: 204px;
  }
  .gp-cylinder-card {
    border-radius: 18px;
  }
  .gp-cylinder-card > div {
    padding: 16px;
  }
  .gp-cylinder-card h3 {
    font-size: 1.08rem;
  }
  .gp-cylinder-card p {
    font-size: .75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-cylinder-track {
    transition-duration: .15s;
  }
}


/* v0.8 black, white and lime homepage redesign */
:root {
  --gp-lime: #a7f04f;
  --gp-lime-deep: #78c82e;
  --gp-black: #030403;
  --gp-black-soft: #0b0d0b;
}

.gp-site-header {
  background: rgba(3,4,3,.96);
  border-bottom-color: rgba(255,255,255,.10);
}
.gp-primary-nav a { color: rgba(255,255,255,.82); }
.gp-primary-nav a:hover,
.gp-primary-nav a:focus-visible { color: var(--gp-lime); }
.gp-menu-toggle { background: rgba(255,255,255,.10); color: #fff; }
.gp-header-cta { background: var(--gp-lime); color: #071006; box-shadow: 0 12px 26px rgba(167,240,79,.18); }
.gp-header-cta:hover,
.gp-header-cta:focus-visible { background: #c1ff78; color: #050805; }

.gp-hero--v08 {
  padding: 74px 0 82px;
  background:
    radial-gradient(circle at 16% 18%, rgba(167,240,79,.13), transparent 28%),
    radial-gradient(circle at 84% 52%, rgba(167,240,79,.07), transparent 32%),
    linear-gradient(135deg, #020302 0%, #070a07 48%, #020302 100%);
}
.gp-hero--v08::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
.gp-hero--v08::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 76px solid rgba(167,240,79,.06);
  border-radius: 50%;
}
.gp-hero-grid--v08 {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, .92fr) minmax(380px, .68fr);
  gap: 38px;
  align-items: center;
}
.gp-hero-copy-panel--v08 {
  position: relative;
  z-index: 3;
  padding: 44px 38px 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
}
.gp-hero-copy-panel--v08::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -80px;
  bottom: 0;
  width: 180px;
  background: linear-gradient(90deg, rgba(4,5,4,.72), rgba(4,5,4,0));
  pointer-events: none;
}
.gp-hero--v08 .gp-eyebrow { color: var(--gp-lime); }
.gp-hero--v08 .gp-eyebrow::before { background: var(--gp-lime); }
.gp-hero--v08 h1 {
  color: #fff;
  font-size: clamp(3.2rem, 6.1vw, 6.2rem);
}
.gp-hero--v08 h1 .gp-highlight { color: var(--gp-lime); }
.gp-hero--v08 .gp-hero-copy { color: rgba(255,255,255,.70); }
.gp-hero--v08 .gp-hero-proof li { color: rgba(255,255,255,.78); }
.gp-hero--v08 .gp-hero-proof li::before {
  background: rgba(167,240,79,.14);
  color: var(--gp-lime);
}
.gp-button--lime {
  background: var(--gp-lime);
  color: #071006;
  box-shadow: 0 14px 30px rgba(167,240,79,.18);
}
.gp-button--lime:hover,
.gp-button--lime:focus-visible {
  background: #c2ff7f;
  color: #030603;
}
.gp-button--hero-secondary {
  background: #fff;
  border-color: #fff;
  color: #080a08 !important;
}
.gp-button--hero-secondary:hover,
.gp-button--hero-secondary:focus-visible {
  background: transparent;
  border-color: rgba(255,255,255,.42);
  color: #fff !important;
}
.gp-hero-visual--v08 {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
}
.gp-hero-feature--v08 {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: #000;
  box-shadow: 0 34px 88px rgba(0,0,0,.48), 0 0 0 1px rgba(167,240,79,.07);
}
.gp-hero-feature--v08::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 23%;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(90deg, #050705 0%, rgba(5,7,5,.72) 18%, rgba(5,7,5,0) 100%);
  pointer-events: none;
}
.gp-hero-feature--v08 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  background: #000;
}

.gp-home-3d-section {
  padding: 64px 0;
  color: #fff;
  background: #050605;
  border-top: 1px solid rgba(255,255,255,.08);
}
.gp-home-3d-section__head { margin-bottom: 28px; }
.gp-home-3d-section__head h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.gp-home-3d-widget { min-width: 0; }
.gp-home-3d-widget__title { color: #fff; }

@media (max-width: 1080px) {
  .gp-hero-grid--v08 {
    grid-template-columns: 1fr;
    max-width: 820px;
  }
  .gp-hero-copy-panel--v08::after { display: none; }
  .gp-hero-feature--v08 { width: min(100%, 570px); }
}
@media (max-width: 720px) {
  .gp-hero--v08 { padding: 46px 0 58px; }
  .gp-hero-copy-panel--v08 { padding: 26px 22px 28px; border-radius: 24px; }
  .gp-hero-feature--v08 { width: min(100%, 480px); border-radius: 22px; }
  .gp-hero-feature--v08::before { border-radius: 22px 0 0 22px; }
}


/* v0.9 official Shader Carousel integration */
.gp-home-shader-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 22%, rgba(167,240,79,.10), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(167,240,79,.055), transparent 32%),
    linear-gradient(180deg, #020302 0%, #080a08 56%, #020302 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.gp-home-shader-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .44;
  background:
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 90%);
}
.gp-home-shader-section .gp-container {
  position: relative;
  z-index: 1;
}
.gp-home-shader-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}
.gp-home-shader-section__head h2 {
  margin: 11px 0 0;
  max-width: 840px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 5.15rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.gp-home-shader-section__head h2 span { color: var(--gp-lime); }
.gp-home-shader-section__head p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 1.04rem;
}
.gp-home-shader-frame {
  min-height: 430px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 28px 80px rgba(0,0,0,.36);
}
.gp-home-shader-frame > * { max-width: 100%; }
.gp-home-shader-frame canvas,
.gp-home-shader-frame iframe,
.gp-home-shader-frame video { max-width: 100%; }
.gp-home-shader-admin-note {
  display: grid;
  gap: 13px;
  max-width: 800px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(167,240,79,.24);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.76);
}
.gp-home-shader-admin-note strong { color: var(--gp-lime); font-size: 1.1rem; }
.gp-home-shader-admin-note code {
  display: block;
  overflow-wrap: anywhere;
  padding: 12px 14px;
  border-radius: 12px;
  background: #000;
  color: #fff;
}
.gp-home-shader-admin-note a {
  width: fit-content;
  color: #071006;
  background: var(--gp-lime);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 850;
}
@media (max-width: 820px) {
  .gp-home-shader-section { padding: 58px 0 64px; }
  .gp-home-shader-section__head { grid-template-columns: 1fr; gap: 16px; }
  .gp-home-shader-frame { min-height: 340px; padding: 10px; border-radius: 22px; }
}

/* v1.0 built-in WebGL Shader Carousel */
.gp-home-shader-section--direct {
  padding-bottom: 78px;
}

.gp-home-shader-frame[data-gecko-shader-frame] {
  position: relative;
  min-height: 650px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(167, 240, 79, .22);
  background: #050605;
  box-shadow: 0 35px 110px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .025) inset;
  isolation: isolate;
}

.gp-shader-stage {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 29px 29px 0 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(167, 240, 79, .08), transparent 38%),
    linear-gradient(180deg, #070907 0%, #030403 100%);
}

.gp-shader-canvas {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 590px;
}

.gp-shader-canvas .fwdsc {
  border-radius: 28px 28px 0 0;
}

.gp-shader-canvas canvas {
  display: block;
  max-width: none !important;
  touch-action: pan-y;
}

.gp-home-shader-frame .fwdsc .caption {
  max-width: 680px !important;
  padding-bottom: 30px !important;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .82));
}

.gp-home-shader-frame .fwdsc .caption-title {
  margin: 0 !important;
  padding-top: 18px !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: clamp(1.65rem, 3vw, 2.65rem) !important;
  font-weight: 900 !important;
  letter-spacing: -.035em !important;
}

.gp-home-shader-frame .fwdsc .caption-desc {
  max-width: 590px;
  margin: 0 auto !important;
  padding-top: 9px !important;
  color: rgba(255, 255, 255, .78) !important;
  font-family: inherit !important;
  font-size: .98rem !important;
  line-height: 1.5 !important;
}

.gp-shader-fallback {
  position: absolute;
  z-index: 1;
  inset: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility .35s ease;
}

.gp-home-shader-frame.is-loaded .gp-shader-fallback {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gp-shader-fallback__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: #111;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
  transform: perspective(900px) rotateY(-8deg);
}

.gp-shader-fallback__card:nth-child(2) {
  transform: translateY(-24px) scale(1.06);
}

.gp-shader-fallback__card:nth-child(3) {
  transform: perspective(900px) rotateY(8deg);
}

.gp-shader-fallback__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-shader-fallback__card span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .78);
  color: #fff;
  font-size: .9rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.gp-shader-toolbar {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 59px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .48);
}

.gp-shader-control {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(167, 240, 79, .45);
  border-radius: 999px;
  cursor: pointer;
  background: rgba(167, 240, 79, .1);
  color: var(--gp-lime);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.gp-shader-control:hover,
.gp-shader-control:focus-visible {
  transform: translateY(-2px);
  outline: none;
  background: var(--gp-lime);
  color: #071006;
}

.gp-home-shader-frame.is-fallback .gp-shader-toolbar span::after {
  content: " — static preview shown";
  color: var(--gp-lime);
}

@media (max-width: 820px) {
  .gp-home-shader-frame[data-gecko-shader-frame] {
    min-height: 510px;
    border-radius: 22px;
  }

  .gp-shader-stage,
  .gp-shader-canvas {
    min-height: 450px;
  }

  .gp-shader-stage,
  .gp-shader-canvas .fwdsc {
    border-radius: 21px 21px 0 0;
  }

  .gp-shader-fallback {
    inset: 22px;
    grid-template-columns: 1fr 1fr;
  }

  .gp-shader-fallback__card:nth-child(3) {
    display: none;
  }

  .gp-shader-fallback__card:nth-child(1),
  .gp-shader-fallback__card:nth-child(2) {
    transform: none;
  }

  .gp-home-shader-frame .fwdsc .caption-desc {
    display: none;
  }
}

@media (max-width: 560px) {
  .gp-home-shader-frame[data-gecko-shader-frame] {
    min-height: 430px;
  }

  .gp-shader-stage,
  .gp-shader-canvas {
    min-height: 370px;
  }

  .gp-shader-fallback {
    inset: 18px;
    grid-template-columns: 1fr;
  }

  .gp-shader-fallback__card:nth-child(2) {
    display: none;
  }

  .gp-shader-toolbar {
    gap: 10px;
    padding-inline: 10px;
    font-size: .68rem;
  }

  .gp-shader-control {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .gp-home-shader-frame .fwdsc .caption-title {
    font-size: 1.45rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-shader-fallback,
  .gp-shader-control {
    transition: none;
  }
}

/* v1.1 full-width campaign hero and compact intro strip */
.gp-promo-hero--v11 {
  position: relative;
  overflow: hidden;
  padding: 24px 0 64px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(167, 240, 79, .08), transparent 31%),
    #020302;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.gp-promo-hero__container {
  width: min(100% - 32px, 1540px);
  max-width: 1540px;
}

.gp-promo-hero__stage {
  position: relative;
  display: flex;
  min-height: clamp(590px, 50vw, 860px);
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  background-image: var(--gp-promo-image);
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: cover;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .52), 0 0 0 1px rgba(167, 240, 79, .05);
  isolation: isolate;
}

/* Intentionally no gradient/fade overlay on the campaign artwork. */
.gp-promo-hero__stage::before,
.gp-promo-hero__stage::after {
  content: none !important;
  display: none !important;
}

.gp-promo-hero__message {
  position: relative;
  z-index: 2;
  width: min(58%, 760px);
  padding: clamp(38px, 5vw, 76px);
  text-transform: uppercase;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .86));
}

.gp-promo-hero__stand,
.gp-promo-hero__out {
  display: block;
  width: fit-content;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .82;
  text-shadow: 0 4px 5px rgba(0, 0, 0, .75), 0 0 18px rgba(0, 0, 0, .42);
}

.gp-promo-hero__stand {
  color: #fff;
  font-size: clamp(4.6rem, 10vw, 10.5rem);
}

.gp-promo-hero__out {
  margin-top: .08em;
  color: #ff6500;
  font-size: clamp(7.2rem, 15.5vw, 16rem);
}

.gp-promo-hero__promise {
  margin: clamp(24px, 3vw, 42px) 0 0;
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.75rem);
  font-weight: 950;
  letter-spacing: -.015em;
  line-height: 1.1;
  text-shadow: 0 3px 7px rgba(0, 0, 0, .9), 0 0 12px rgba(0, 0, 0, .7);
}

.gp-promo-hero__promise span { color: #ff6500; }

.gp-promo-hero__details {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(.82rem, 1.35vw, 1.2rem);
  letter-spacing: .035em;
  line-height: 1.4;
  text-shadow: 0 3px 7px rgba(0, 0, 0, .95), 0 0 10px rgba(0, 0, 0, .72);
}

.gp-intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px 36px;
  margin-top: 18px;
  padding: 24px 28px 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(11, 13, 11, .96);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .28);
}

.gp-intro-strip__copy { max-width: 860px; }
.gp-intro-strip .gp-eyebrow { color: var(--gp-lime); }
.gp-intro-strip .gp-eyebrow::before { background: var(--gp-lime); }

.gp-intro-strip h1 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.gp-intro-strip h1 span { color: var(--gp-lime); }

.gp-intro-strip__copy > p {
  max-width: 820px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(.96rem, 1.25vw, 1.08rem);
  line-height: 1.55;
}

.gp-intro-strip__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.gp-button--intro-secondary {
  border-color: rgba(255, 255, 255, .22) !important;
  background: #fff !important;
  color: #070907 !important;
}

.gp-button--intro-secondary:hover,
.gp-button--intro-secondary:focus-visible {
  border-color: var(--gp-lime) !important;
  background: var(--gp-lime) !important;
  color: #071006 !important;
}

.gp-intro-strip__proof {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 17px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  list-style: none;
}

.gp-intro-strip__proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .74);
  font-size: .86rem;
  font-weight: 760;
}

.gp-intro-strip__proof li::before {
  content: "✓";
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(167, 240, 79, .16);
  color: var(--gp-lime);
  font-size: .78rem;
  font-weight: 950;
}

@media (max-width: 980px) {
  .gp-promo-hero__stage {
    min-height: 700px;
    background-position: 55% 58%;
  }

  .gp-promo-hero__message {
    width: 72%;
    padding: 42px 34px;
  }

  .gp-intro-strip { grid-template-columns: 1fr; }
  .gp-intro-strip__actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .gp-promo-hero--v11 { padding: 14px 0 44px; }
  .gp-promo-hero__container { width: min(100% - 20px, 1540px); }

  .gp-promo-hero__stage {
    min-height: 640px;
    border-radius: 22px;
    background-position: 58% 60%;
  }

  .gp-promo-hero__message {
    width: 100%;
    padding: 28px 22px;
  }

  .gp-promo-hero__stand { font-size: clamp(3.6rem, 18vw, 6rem); }
  .gp-promo-hero__out { font-size: clamp(5.4rem, 28vw, 9rem); }
  .gp-promo-hero__promise { max-width: 86%; }
  .gp-promo-hero__details { max-width: 82%; }

  .gp-intro-strip {
    margin-top: 12px;
    padding: 21px 19px 20px;
    border-radius: 18px;
  }

  .gp-intro-strip__actions { display: grid; grid-template-columns: 1fr; }
  .gp-intro-strip__actions .gp-button { width: 100%; }
  .gp-intro-strip__proof { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; }
}

@media (max-width: 430px) {
  .gp-promo-hero__stage {
    min-height: 590px;
    background-position: 60% 61%;
  }

  .gp-intro-strip__proof { grid-template-columns: 1fr; }
}



/* v1.2 portrait portfolio carousel */
.gp-home-shader-frame[data-gecko-shader-frame] {
  min-height: 790px;
}

.gp-shader-stage,
.gp-shader-canvas {
  min-height: 730px;
}

.gp-shader-fallback__card {
  aspect-ratio: 3 / 4;
}

@media (max-width: 820px) {
  .gp-home-shader-frame[data-gecko-shader-frame] {
    min-height: 630px;
  }

  .gp-shader-stage,
  .gp-shader-canvas {
    min-height: 570px;
  }
}


/* v1.2.2: promotional artwork already contains its campaign text. */
.gp-promo-hero__message {
  display: none !important;
}


/* v1.2.3: fully visible responsive campaign artwork and light navigation header. */
.gp-site-header {
  background: rgba(255, 255, 255, .98) !important;
  border-bottom: 1px solid rgba(5, 8, 5, .12) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  backdrop-filter: blur(16px);
}

.gp-primary-nav a {
  color: #111511 !important;
}

.gp-primary-nav a:hover,
.gp-primary-nav a:focus-visible {
  color: var(--gp-orange) !important;
}

.gp-menu-toggle {
  background: #eef1ec !important;
  color: #111511 !important;
}

.gp-promo-hero__stage {
  display: block;
  min-height: 0 !important;
  margin: 0;
  overflow: hidden;
  background: #020302;
  background-image: none !important;
  border-radius: 30px;
}

.gp-promo-hero__stage picture,
.gp-promo-hero__artwork {
  display: block;
  width: 100%;
}

.gp-promo-hero__artwork {
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1050px) {
  .gp-primary-nav {
    background: #fff !important;
    border-bottom-color: rgba(5, 8, 5, .12) !important;
  }
}

@media (max-width: 680px) {
  .gp-promo-hero__stage {
    min-height: 0 !important;
    border-radius: 22px;
  }
}


/* v1.3: curated portfolio refresh and caption-free WebGL carousel. */
#gp-shader-carousel-data,
.gp-home-shader-frame .fwdsc-data-gallery {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.gp-home-shader-frame .fwdsc .caption,
.gp-home-shader-frame .caption {
  display: none !important;
}

.gp-gallery--curated .gp-gallery-caption {
  display: grid;
  gap: 3px;
}

.gp-gallery--curated .gp-gallery-caption span {
  color: var(--gp-lime, #a7f04f);
  font-size: .72rem;
  line-height: 1.2;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.gp-gallery--curated .gp-gallery-item img {
  object-position: center;
}

.gp-page-hero--portfolio p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #555c64;
  font-size: clamp(1.02rem, 2vw, 1.3rem);
}

.gp-portfolio-page {
  padding: 84px 0 100px;
  background: #050605;
  color: #fff;
}

.gp-portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.gp-portfolio-intro h2,
.gp-portfolio-cta h2 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.gp-portfolio-intro > p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.65);
  font-size: 1.08rem;
}

.gp-portfolio-grid--curated {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gp-portfolio-card {
  overflow: hidden;
  border: 1px solid rgba(167,240,79,.2);
  border-radius: 24px;
  background: #0c0e0c;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.gp-portfolio-card.is-featured {
  grid-column: span 2;
}

.gp-portfolio-card__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #141714;
}

.gp-portfolio-card--portrait .gp-portfolio-card__image {
  aspect-ratio: 4 / 5;
}

.gp-portfolio-card--square .gp-portfolio-card__image {
  aspect-ratio: 1;
}

.gp-portfolio-card--wide .gp-portfolio-card__image,
.gp-portfolio-card.is-featured .gp-portfolio-card__image {
  aspect-ratio: 16 / 10;
}

.gp-portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gp-portfolio-card:hover .gp-portfolio-card__image img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.gp-portfolio-card__copy {
  padding: 22px 24px 26px;
}

.gp-portfolio-card__copy > span {
  color: var(--gp-lime, #a7f04f);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.gp-portfolio-card__copy h2 {
  margin: 8px 0 7px;
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.gp-portfolio-card__copy p {
  margin: 0;
  color: rgba(255,255,255,.63);
}

.gp-portfolio-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 72px;
  padding: 42px;
  border: 1px solid rgba(167,240,79,.26);
  border-radius: 28px;
  background: radial-gradient(circle at 12% 0%, rgba(167,240,79,.13), transparent 38%), #0b0d0b;
}

.gp-portfolio-cta h2 {
  max-width: 780px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

@media (max-width: 980px) {
  .gp-portfolio-intro {
    grid-template-columns: 1fr;
  }

  .gp-portfolio-grid--curated {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gp-portfolio-card.is-featured {
    grid-column: span 2;
  }

  .gp-portfolio-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .gp-portfolio-page {
    padding: 58px 0 72px;
  }

  .gp-portfolio-grid--curated {
    grid-template-columns: 1fr;
  }

  .gp-portfolio-card.is-featured {
    grid-column: auto;
  }

  .gp-portfolio-card__image,
  .gp-portfolio-card--portrait .gp-portfolio-card__image,
  .gp-portfolio-card--square .gp-portfolio-card__image,
  .gp-portfolio-card--wide .gp-portfolio-card__image,
  .gp-portfolio-card.is-featured .gp-portfolio-card__image {
    aspect-ratio: 4 / 3;
  }

  .gp-portfolio-cta {
    margin-top: 48px;
    padding: 28px 22px;
  }
}


/* SEO service landing pages — v1.4.9 */
.gp-breadcrumbs { border-bottom: 1px solid var(--gp-line); background: #fff; font-size: .88rem; color: var(--gp-muted); }
.gp-breadcrumbs .gp-container { display: flex; gap: 10px; align-items: center; padding-top: 14px; padding-bottom: 14px; }
.gp-breadcrumbs a { color: var(--gp-green-dark); font-weight: 750; }
.gp-service-hero { overflow: hidden; padding: 58px 0 72px; background: linear-gradient(135deg, #fffaf2 0%, #fff 58%, #eff9e8 100%); border-bottom: 1px solid var(--gp-line); }
.gp-service-hero__grid { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr); align-items: center; gap: clamp(36px,6vw,84px); }
.gp-service-hero__copy h1 { max-width: 880px; margin: 14px 0 22px; font-size: clamp(2.8rem,5.8vw,5.9rem); line-height: .96; letter-spacing: -.06em; }
.gp-service-hero__copy > p { max-width: 780px; margin: 0; color: #4f555d; font-size: clamp(1.05rem,1.8vw,1.28rem); }
.gp-service-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.gp-service-hero__media { position: relative; margin: 0; min-height: 430px; border-radius: 30px; overflow: hidden; box-shadow: var(--gp-shadow); background: #111; }
.gp-service-hero__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); border-radius: inherit; pointer-events: none; }
.gp-service-hero__media img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.gp-service-main h2 { margin: 0; font-size: clamp(2.1rem,4vw,4rem); line-height: 1.02; letter-spacing: -.045em; }
.gp-service-intro > p { max-width: 900px; color: #545a62; font-size: 1.08rem; }
.gp-service-products { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 36px; }
.gp-service-product { padding: 26px; border: 1px solid var(--gp-line); border-radius: 20px; background: #fff; box-shadow: 0 12px 32px rgba(29,32,37,.06); }
.gp-service-product h3 { margin: 0 0 10px; font-size: 1.18rem; line-height: 1.2; }
.gp-service-product p { margin: 0; color: var(--gp-muted); }
.gp-service-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.gp-service-benefits article { padding: 28px; border-radius: 20px; background: #fff; border: 1px solid rgba(45,48,54,.08); }
.gp-service-benefits h3 { margin: 0 0 10px; }
.gp-service-benefits p { margin: 0; color: var(--gp-muted); }
.gp-service-process { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; padding: 0; margin: 34px 0 0; list-style: none; }
.gp-service-process li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 26px; border: 1px solid var(--gp-line); border-radius: 20px; }
.gp-service-process li > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--gp-orange); color: #fff; font-weight: 900; }
.gp-service-process h3 { margin: 2px 0 8px; }
.gp-service-process p { margin: 0; color: var(--gp-muted); }
.gp-service-faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.gp-service-faqs details { border-top: 1px solid rgba(255,255,255,.17); }
.gp-service-faqs details:last-child { border-bottom: 1px solid rgba(255,255,255,.17); }
.gp-service-faqs summary { cursor: pointer; padding: 22px 42px 22px 0; font-size: 1.08rem; font-weight: 800; list-style: none; position: relative; }
.gp-service-faqs summary::-webkit-details-marker { display: none; }
.gp-service-faqs summary::after { content: "+"; position: absolute; right: 6px; top: 18px; color: var(--gp-green); font-size: 1.55rem; }
.gp-service-faqs details[open] summary::after { content: "−"; }
.gp-service-faqs p { margin: 0; padding: 0 36px 22px 0; color: rgba(255,255,255,.72); }
.gp-related-services { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 30px 0 46px; }
.gp-related-services a { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 22px; border-radius: 16px; border: 1px solid var(--gp-line); font-weight: 850; transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.gp-related-services a:hover { transform: translateY(-2px); border-color: var(--gp-green); box-shadow: 0 12px 30px rgba(29,32,37,.08); }
.gp-final-cta--service { margin-top: 30px; }
@media (max-width: 920px) {
  .gp-service-hero__grid, .gp-service-faq-layout { grid-template-columns: 1fr; }
  .gp-service-hero__media { min-height: 340px; }
  .gp-service-hero__media img { min-height: 340px; }
  .gp-service-products, .gp-service-benefits { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .gp-service-hero { padding: 42px 0 54px; }
  .gp-service-products, .gp-service-benefits, .gp-service-process, .gp-related-services { grid-template-columns: 1fr; }
  .gp-service-hero__media { min-height: 280px; }
  .gp-service-hero__media img { min-height: 280px; }
}


/* v1.5.2 homepage integration for the Gecko 3D Showcase plugin. */
.gp-home-3d-showcase {
  position: relative;
  overflow: hidden;
  background: #030403;
}
.gp-home-3d-showcase > .gecko-3d-showcase {
  margin: 0;
}

.gp-home-3d-showcase.is-collapsed {
  display: none;
}
.gp-home-3d-showcase-reopen {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99990;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(167, 240, 79, .62);
  border-radius: 999px;
  background: rgba(7, 14, 7, .94);
  color: #a7f04f;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .30);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font: inherit;
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .02em;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.gp-home-3d-showcase-reopen[hidden] {
  display: none !important;
}
.gp-home-3d-showcase-reopen:hover,
.gp-home-3d-showcase-reopen:focus-visible {
  transform: translateY(-2px);
  outline: none;
  background: #a7f04f;
  color: #071006;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .36), 0 0 0 4px rgba(167, 240, 79, .18);
}
.gp-home-3d-showcase-reopen span {
  font-size: 1.05rem;
  line-height: 1;
}
@media (max-width: 620px) {
  .gp-home-3d-showcase-reopen {
    right: 12px;
    bottom: 12px;
    min-height: 42px;
    padding-inline: 14px;
    font-size: .78rem;
  }
}
.gp-home-3d-showcase__fallback {
  padding: clamp(72px, 9vw, 124px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(167, 240, 79, .15), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(244, 90, 31, .14), transparent 34%),
    #030403;
  border-block: 1px solid rgba(255, 255, 255, .08);
}
.gp-home-3d-showcase__fallback h2 {
  max-width: 820px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.gp-home-3d-showcase__fallback > .gp-container > p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
  line-height: 1.7;
}
.gp-home-3d-showcase__admin-note {
  margin-top: 22px !important;
  padding: 14px 16px;
  color: #1d2419 !important;
  background: #f1ffd9;
  border-left: 4px solid var(--gp-lime, #a7f04f);
  border-radius: 10px;
}

/* v1.5.3 cohesive Contact-page visual system for Portfolio and Business Printing. */
.gp-cohesive-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 9vw, 128px) 0 clamp(74px, 9vw, 118px);
  background:
    radial-gradient(circle at 7% 18%, rgba(128,195,66,.22), transparent 28%),
    radial-gradient(circle at 48% 92%, rgba(244,90,31,.16), transparent 30%),
    linear-gradient(132deg, #202329 0%, #292f29 48%, #172219 100%);
  color: #fff;
}
.gp-cohesive-hero::before,
.gp-service-hero--cohesive::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 72%);
  mask-image: linear-gradient(to right, #000, transparent 72%);
}
.gp-cohesive-hero::after,
.gp-service-hero--cohesive::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -11vw;
  bottom: -29vw;
  width: min(62vw, 890px);
  aspect-ratio: 1;
  border: clamp(45px, 6vw, 92px) solid rgba(128,195,66,.09);
  border-radius: 50%;
}
.gp-cohesive-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}
.gp-cohesive-hero .gp-eyebrow,
.gp-service-hero--cohesive .gp-eyebrow { color: #aee56e; }
.gp-cohesive-hero .gp-eyebrow::before,
.gp-service-hero--cohesive .gp-eyebrow::before { background: var(--gp-orange); }
.gp-cohesive-hero h1 {
  max-width: 820px;
  margin: 18px 0 24px;
  font-size: clamp(3.2rem, 6.9vw, 7.3rem);
  line-height: .88;
  letter-spacing: -.072em;
  text-wrap: balance;
}
.gp-cohesive-hero h1 span {
  display: block;
  color: #9fdc5c;
  text-shadow: 0 12px 40px rgba(128,195,66,.16);
}
.gp-cohesive-hero__copy > p {
  max-width: 670px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.72;
}
.gp-cohesive-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}
.gp-cohesive-hero .gp-button--secondary,
.gp-service-hero--cohesive .gp-button--secondary {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(12px);
}
.gp-cohesive-hero .gp-button--secondary:hover,
.gp-cohesive-hero .gp-button--secondary:focus-visible,
.gp-service-hero--cohesive .gp-button--secondary:hover,
.gp-service-hero--cohesive .gp-button--secondary:focus-visible {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.14);
}
.gp-cohesive-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 31px 0 0;
  padding: 0;
  color: rgba(255,255,255,.67);
  font-size: .86rem;
  font-weight: 720;
  list-style: none;
}
.gp-cohesive-promise li { display: inline-flex; align-items: center; gap: 7px; }
.gp-cohesive-promise li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(128,195,66,.16);
  color: #aee56e;
  font-size: .72rem;
  font-weight: 950;
}
.gp-cohesive-hero__visual {
  position: relative;
  min-height: clamp(440px, 49vw, 680px);
}
.gp-cohesive-hero__visual > img,
.gp-service-hero--cohesive .gp-service-hero__media > img {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: min(100%, 720px);
  height: auto;
  max-height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(1.4deg);
  border: 8px solid rgba(255,255,255,.92);
  border-radius: clamp(28px, 4vw, 54px);
  box-shadow: 0 42px 90px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.08);
}
.gp-cohesive-orbit {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(255,255,255,.13);
  border-radius: 50%;
}
.gp-cohesive-orbit--one { inset: 4% 0 14% 7%; transform: rotate(-13deg); }
.gp-cohesive-orbit--two { inset: 15% 8% 4% 0; border-color: rgba(128,195,66,.25); transform: rotate(12deg); }
.gp-cohesive-hero__badge {
  position: absolute;
  z-index: 4;
  right: -12px;
  bottom: 8%;
  display: grid;
  gap: 1px;
  min-width: 220px;
  max-width: 310px;
  padding: 17px 21px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 18px;
  background: rgba(24,30,25,.82);
  color: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
  transform: rotate(-2deg);
}
.gp-cohesive-hero__badge strong { color: #aee56e; font-size: 1.02rem; }
.gp-cohesive-hero__badge span { color: rgba(255,255,255,.7); font-size: .82rem; }

.gp-cohesive-quick {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}
.gp-cohesive-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gp-cohesive-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 218px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(32,35,41,.1);
  border-radius: 22px;
  background: #fff;
  color: var(--gp-ink);
  box-shadow: 0 20px 48px rgba(25,29,25,.12);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.gp-cohesive-card:hover,
a.gp-cohesive-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(128,195,66,.56);
  box-shadow: 0 28px 60px rgba(25,29,25,.16);
}
.gp-cohesive-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -40px;
  width: 112px;
  height: 112px;
  border: 25px solid rgba(128,195,66,.08);
  border-radius: 50%;
}
.gp-cohesive-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 13px;
  background: var(--gp-cream);
  color: var(--gp-orange-dark);
  font-size: .82rem;
  font-weight: 950;
}
.gp-cohesive-card small {
  color: var(--gp-green-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.gp-cohesive-card strong {
  position: relative;
  z-index: 1;
  margin-top: 5px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.3;
}
.gp-cohesive-card em {
  position: relative;
  z-index: 1;
  margin-top: 9px;
  color: var(--gp-muted);
  font-size: .82rem;
  font-style: normal;
  line-height: 1.5;
}

/* Portfolio now uses the same warm layered background and white window treatment as Contact. */
.gp-portfolio-page--cohesive {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(92px, 10vw, 140px) 0 clamp(96px, 11vw, 150px);
  background:
    radial-gradient(circle at 4% 10%, rgba(128,195,66,.16), transparent 27%),
    radial-gradient(circle at 95% 78%, rgba(244,90,31,.13), transparent 28%),
    var(--gp-cream);
  color: var(--gp-ink);
}
.gp-portfolio-page--cohesive::after,
.gp-service-main--cohesive .gp-service-section--benefits::after,
.gp-service-main--cohesive .gp-service-section--related::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -115px;
  width: 380px;
  height: 380px;
  opacity: .055;
  background: url("assets/images/contact-gecko-pattern.svg") center / contain no-repeat;
  transform: rotate(-8deg);
  pointer-events: none;
}
.gp-portfolio-intro--cohesive {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
  margin-bottom: 52px;
}
.gp-portfolio-intro--cohesive h2 {
  max-width: 780px;
  margin: 15px 0 0;
  color: var(--gp-ink);
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  line-height: .99;
  letter-spacing: -.058em;
}
.gp-portfolio-intro--cohesive > p {
  margin: 0;
  color: var(--gp-muted);
  font-size: 1.08rem;
  line-height: 1.73;
}
.gp-portfolio-grid--cohesive { gap: 20px; }
.gp-portfolio-grid--cohesive .gp-portfolio-card {
  border: 1px solid rgba(32,35,41,.1);
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 54px rgba(29,32,37,.11);
  backdrop-filter: blur(8px);
}
.gp-portfolio-grid--cohesive .gp-portfolio-card__image { background: #e8e5de; }
.gp-portfolio-grid--cohesive .gp-portfolio-card__copy { padding: 23px 24px 27px; }
.gp-portfolio-grid--cohesive .gp-portfolio-card__copy > span { color: var(--gp-green-dark); }
.gp-portfolio-grid--cohesive .gp-portfolio-card__copy h2 { color: var(--gp-ink); font-size: clamp(1.25rem, 2.2vw, 1.85rem); }
.gp-portfolio-grid--cohesive .gp-portfolio-card__copy p { color: var(--gp-muted); line-height: 1.58; }

.gp-cohesive-final {
  padding: 74px 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(128,195,66,.12), transparent 26%),
    #1f2227;
  color: #fff;
}
.gp-cohesive-final__inner {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.gp-cohesive-final__inner > img {
  width: 112px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,.93);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0,0,0,.3);
}
.gp-cohesive-final span { color: var(--gp-green); font-size: .73rem; font-weight: 900; letter-spacing: .105em; text-transform: uppercase; }
.gp-cohesive-final h2 { max-width: 760px; margin: 5px 0 0; font-size: clamp(1.65rem, 3.2vw, 3.2rem); line-height: 1.06; letter-spacing: -.04em; }

/* Business Printing receives the same hero scale, window layout and shaded overlays. */
.gp-breadcrumbs--cohesive {
  border-color: rgba(255,255,255,.08);
  background: #202329;
  color: rgba(255,255,255,.58);
}
.gp-breadcrumbs--cohesive a { color: #aee56e; }
.gp-service-hero--cohesive {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 9vw, 128px) 0 clamp(74px, 9vw, 118px);
  border-bottom: 0;
  background:
    radial-gradient(circle at 7% 18%, rgba(128,195,66,.22), transparent 28%),
    radial-gradient(circle at 48% 92%, rgba(244,90,31,.16), transparent 30%),
    linear-gradient(132deg, #202329 0%, #292f29 48%, #172219 100%);
  color: #fff;
}
.gp-service-hero--cohesive .gp-service-hero__grid {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 6vw, 92px);
}
.gp-service-hero--cohesive .gp-service-hero__copy h1 {
  max-width: 850px;
  margin: 18px 0 24px;
  color: #fff;
  font-size: clamp(3.2rem, 6.6vw, 7rem);
  line-height: .9;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.gp-service-hero--cohesive .gp-service-hero__copy > p {
  max-width: 670px;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.72;
}
.gp-service-hero--cohesive .gp-service-hero__media {
  position: relative;
  overflow: visible;
  min-height: clamp(440px, 49vw, 680px);
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.gp-service-hero--cohesive .gp-service-hero__media::after { display: none; }
.gp-service-hero--cohesive .gp-cohesive-hero__badge { margin: 0; }
.gp-service-cohesive-quick { margin-bottom: clamp(50px, 6vw, 78px); }
.gp-service-main--cohesive h2,
.gp-service-main--cohesive .gp-section-title {
  max-width: 920px;
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  line-height: .99;
  letter-spacing: -.058em;
}
.gp-service-main--cohesive .gp-service-section--products {
  padding-top: clamp(52px, 7vw, 92px);
  background: #fff;
}
.gp-service-main--cohesive .gp-service-intro > p {
  max-width: 760px;
  color: var(--gp-muted);
  font-size: 1.08rem;
  line-height: 1.73;
}
.gp-service-main--cohesive .gp-service-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}
.gp-service-main--cohesive .gp-service-product,
.gp-service-main--cohesive .gp-service-benefits article,
.gp-service-main--cohesive .gp-service-process li,
.gp-service-main--cohesive .gp-related-services a {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32,35,41,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 45px rgba(29,32,37,.08);
}
.gp-service-main--cohesive .gp-service-product { padding: 24px; }
.gp-service-main--cohesive .gp-service-product::after,
.gp-service-main--cohesive .gp-service-benefits article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -44px;
  width: 112px;
  height: 112px;
  border: 25px solid rgba(128,195,66,.07);
  border-radius: 50%;
  pointer-events: none;
}
.gp-service-main--cohesive .gp-service-product h3,
.gp-service-main--cohesive .gp-service-benefits h3 { position: relative; z-index: 1; font-size: 1.08rem; }
.gp-service-main--cohesive .gp-service-product p,
.gp-service-main--cohesive .gp-service-benefits p { position: relative; z-index: 1; font-size: .9rem; line-height: 1.62; }
.gp-service-main--cohesive .gp-service-section--benefits,
.gp-service-main--cohesive .gp-service-section--related {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 94%, rgba(244,90,31,.15), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(128,195,66,.2), transparent 30%),
    var(--gp-cream);
}
.gp-service-main--cohesive .gp-service-benefits { gap: 15px; }
.gp-service-main--cohesive .gp-service-benefits article { padding: 25px; }
.gp-service-main--cohesive .gp-service-section--process { background: #fff; }
.gp-service-main--cohesive .gp-service-process { gap: 14px; }
.gp-service-main--cohesive .gp-service-process li {
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 20px;
}
.gp-service-main--cohesive .gp-service-process li > span {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #eef8e4;
  color: var(--gp-green-dark);
  font-size: .77rem;
}
.gp-service-main--cohesive .gp-service-process h3 { margin: 1px 0 6px; font-size: 1rem; }
.gp-service-main--cohesive .gp-service-process p { font-size: .88rem; line-height: 1.58; }
.gp-service-main--cohesive .gp-service-section--faq {
  background:
    radial-gradient(circle at 8% 18%, rgba(128,195,66,.15), transparent 28%),
    radial-gradient(circle at 90% 92%, rgba(244,90,31,.1), transparent 30%),
    #1f2227;
}
.gp-service-main--cohesive .gp-service-faq-layout { gap: clamp(44px, 7vw, 92px); }
.gp-service-main--cohesive .gp-service-faqs details { border-color: rgba(255,255,255,.15); }
.gp-service-main--cohesive .gp-related-services { gap: 12px; }
.gp-service-main--cohesive .gp-related-services a { padding: 19px 21px; }
.gp-service-main--cohesive .gp-final-cta--service {
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(128,195,66,.15), transparent 38%),
    #202329;
  color: #fff;
  box-shadow: 0 28px 70px rgba(29,32,37,.18);
}
.gp-service-main--cohesive .gp-final-cta--service p { color: rgba(255,255,255,.7); }

@media (max-width: 1080px) {
  .gp-cohesive-hero__grid,
  .gp-service-hero--cohesive .gp-service-hero__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .gp-cohesive-hero h1,
  .gp-service-hero--cohesive .gp-service-hero__copy h1 { font-size: clamp(3.2rem, 7.8vw, 6.2rem); }
  .gp-cohesive-quick__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-cohesive-final__inner { grid-template-columns: 100px 1fr; }
  .gp-cohesive-final__inner .gp-button { grid-column: 2; justify-self: start; }
}
@media (max-width: 820px) {
  .gp-cohesive-hero__grid,
  .gp-service-hero--cohesive .gp-service-hero__grid { grid-template-columns: 1fr; }
  .gp-cohesive-hero__visual,
  .gp-service-hero--cohesive .gp-service-hero__media { min-height: 570px; order: -1; }
  .gp-cohesive-hero__copy,
  .gp-service-hero--cohesive .gp-service-hero__copy { text-align: center; }
  .gp-cohesive-hero__copy > p,
  .gp-service-hero--cohesive .gp-service-hero__copy > p { margin-inline: auto; }
  .gp-cohesive-hero__actions,
  .gp-service-hero--cohesive .gp-service-hero__actions,
  .gp-cohesive-promise { justify-content: center; }
  .gp-portfolio-intro--cohesive { grid-template-columns: 1fr; gap: 22px; }
  .gp-service-main--cohesive .gp-service-products { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .gp-cohesive-hero,
  .gp-service-hero--cohesive { padding-top: 48px; }
  .gp-cohesive-hero__visual,
  .gp-service-hero--cohesive .gp-service-hero__media { min-height: 390px; }
  .gp-cohesive-hero__visual > img,
  .gp-service-hero--cohesive .gp-service-hero__media > img { border-width: 5px; border-radius: 28px; }
  .gp-cohesive-hero__badge { right: 2%; bottom: 2%; min-width: 185px; padding: 13px 15px; }
  .gp-cohesive-hero h1,
  .gp-service-hero--cohesive .gp-service-hero__copy h1 { font-size: clamp(3.05rem, 15vw, 4.75rem); }
  .gp-cohesive-hero__actions .gp-button,
  .gp-service-hero--cohesive .gp-service-hero__actions .gp-button { width: 100%; }
  .gp-cohesive-promise { display: grid; justify-content: start; width: fit-content; margin-inline: auto; text-align: left; }
  .gp-cohesive-quick { margin-top: -22px; }
  .gp-cohesive-quick__grid { grid-template-columns: 1fr; }
  .gp-cohesive-card { min-height: auto; }
  .gp-portfolio-page--cohesive { padding: 78px 0 84px; }
  .gp-service-main--cohesive .gp-service-products,
  .gp-service-main--cohesive .gp-service-benefits,
  .gp-service-main--cohesive .gp-service-process { grid-template-columns: 1fr; }
  .gp-cohesive-final__inner { grid-template-columns: 1fr; text-align: center; }
  .gp-cohesive-final__inner > img { margin-inline: auto; }
  .gp-cohesive-final__inner .gp-button { grid-column: auto; justify-self: stretch; }
}

/* v1.5.4 homepage cohesion and Business Printing headline refinement. */
.gp-service-hero--cohesive .gp-service-hero__copy h1 span {
  display: block;
  color: #9fdc5c;
  text-shadow: 0 12px 40px rgba(128,195,66,.16);
}

.gp-home-hero--cohesive {
  padding-top: clamp(70px, 8vw, 112px);
}
.gp-home-hero__visual > picture {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: min(100%, 760px);
  height: min(82%, 590px);
  overflow: hidden;
  transform: translate(-50%, -50%) rotate(1.4deg);
  border: 8px solid rgba(255,255,255,.92);
  border-radius: clamp(28px, 4vw, 54px);
  background: #111713;
  box-shadow: 0 42px 90px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.08);
}
.gp-home-hero__visual > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gp-home-cohesive-quick { margin-bottom: clamp(72px, 9vw, 118px); }

.gp-home-services--cohesive,
.gp-home-portfolio--cohesive {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(84px, 10vw, 140px) 0;
  background:
    radial-gradient(circle at 4% 94%, rgba(244,90,31,.13), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(128,195,66,.18), transparent 30%),
    var(--gp-cream);
}
.gp-home-services--cohesive::after,
.gp-home-portfolio--cohesive::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -115px;
  width: 380px;
  height: 380px;
  opacity: .055;
  background: url("assets/images/contact-gecko-pattern.svg") center / contain no-repeat;
  transform: rotate(-8deg);
  pointer-events: none;
}
.gp-home-portfolio--cohesive::after {
  right: auto;
  left: -85px;
  bottom: -130px;
  transform: rotate(12deg) scaleX(-1);
}
.gp-home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}
.gp-home-section-head h2,
.gp-home-story__copy h2,
.gp-home-process__head h2,
.gp-home-service-area__copy h2 {
  max-width: 900px;
  margin: 15px 0 0;
  font-size: clamp(2.45rem, 5vw, 5.35rem);
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.gp-home-section-head p,
.gp-home-process__head > p,
.gp-home-service-area__copy > p,
.gp-home-story__copy > p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--gp-muted);
  font-size: 1.06rem;
  line-height: 1.72;
}
.gp-home-service-windows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.gp-home-service-window {
  display: grid;
  grid-template-columns: minmax(190px, .82fr) minmax(0, 1.18fr);
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(32,35,41,.1);
  border-radius: 25px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 54px rgba(29,32,37,.11);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gp-home-service-window:hover,
.gp-home-service-window:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(128,195,66,.52);
  box-shadow: 0 30px 68px rgba(29,32,37,.15);
}
.gp-home-service-window figure {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #e7e4dd;
}
.gp-home-service-window figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gp-home-service-window:hover figure img { transform: scale(1.035); }
.gp-home-service-window > div {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
}
.gp-home-service-window > div::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -50px;
  width: 126px;
  height: 126px;
  border: 27px solid rgba(128,195,66,.07);
  border-radius: 50%;
}
.gp-home-service-window small {
  position: relative;
  z-index: 1;
  color: var(--gp-green-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.gp-home-service-window h3 {
  position: relative;
  z-index: 1;
  margin: 8px 0 10px;
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.gp-home-service-window p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--gp-muted);
  font-size: .91rem;
  line-height: 1.58;
}
.gp-home-service-window > div > span {
  position: relative;
  z-index: 1;
  margin-top: 17px;
  color: var(--gp-orange-dark);
  font-size: .82rem;
  font-weight: 900;
}

.gp-home-story--cohesive {
  padding: clamp(92px, 11vw, 150px) 0;
  background: #fff;
}
.gp-home-story__grid {
  display: grid;
  grid-template-columns: minmax(400px, .92fr) minmax(0, 1.08fr);
  gap: clamp(52px, 7vw, 104px);
  align-items: center;
}
.gp-home-story__gallery {
  position: relative;
  min-height: 650px;
}
.gp-home-story__image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid #fff;
  border-radius: 30px;
  background: var(--gp-cream);
  box-shadow: var(--gp-shadow);
}
.gp-home-story__image img { width: 100%; height: 100%; object-fit: cover; }
.gp-home-story__image--large { inset: 0 16% 13% 0; transform: rotate(-2.8deg); }
.gp-home-story__image--small { right: 0; bottom: 0; width: 48%; height: 44%; transform: rotate(4.3deg); }
.gp-home-story__note {
  position: absolute;
  z-index: 3;
  left: 5%;
  bottom: 4%;
  display: grid;
  width: min(330px, 66%);
  gap: 5px;
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--gp-orange);
  color: #fff;
  box-shadow: 0 20px 45px rgba(244,90,31,.27);
  transform: rotate(1.2deg);
}
.gp-home-story__note span { font-size: .72rem; font-weight: 900; letter-spacing: .095em; text-transform: uppercase; opacity: .74; }
.gp-home-story__note strong { font-size: 1.08rem; line-height: 1.28; }
.gp-home-story__copy h2 { margin-top: 15px; }
.gp-home-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 31px;
}
.gp-home-feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--gp-line);
  border-radius: 17px;
  background: #fff;
}
.gp-home-feature-list article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #eef8e4;
  color: var(--gp-green-dark);
  font-size: .77rem;
  font-weight: 950;
}
.gp-home-feature-list strong { display: block; font-size: 1rem; }
.gp-home-feature-list p { margin: 4px 0 0; color: var(--gp-muted); font-size: .87rem; }

.gp-home-process--cohesive {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(84px, 10vw, 138px) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(128,195,66,.16), transparent 28%),
    radial-gradient(circle at 90% 92%, rgba(244,90,31,.12), transparent 30%),
    #1f2227;
  color: #fff;
}
.gp-home-process--cohesive::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 80%);
  mask-image: linear-gradient(to right, #000, transparent 80%);
}
.gp-home-process__head .gp-eyebrow { color: #aee56e; }
.gp-home-process__head .gp-eyebrow::before { background: var(--gp-orange); }
.gp-home-process__head h2 { max-width: 920px; }
.gp-home-process__head > p { color: rgba(255,255,255,.7); }
.gp-home-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 42px;
}
.gp-home-process__grid article {
  position: relative;
  min-height: 250px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 42px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}
.gp-home-process__grid article::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -47px;
  width: 120px;
  height: 120px;
  border: 27px solid rgba(128,195,66,.08);
  border-radius: 50%;
}
.gp-home-process__grid article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 13px;
  background: rgba(128,195,66,.17);
  color: #aee56e;
  font-size: .78rem;
  font-weight: 950;
}
.gp-home-process__grid h3 { position: relative; z-index: 1; margin: 0 0 9px; font-size: 1.08rem; }
.gp-home-process__grid p { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.67); font-size: .88rem; line-height: 1.6; }

.gp-home-portfolio--cohesive { background-color: #fff; }
.gp-home-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gp-home-portfolio-card {
  grid-column: span 4;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(32,35,41,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 48px rgba(25,29,25,.1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gp-home-portfolio-card:nth-child(1),
.gp-home-portfolio-card:nth-child(4) { grid-column: span 6; }
.gp-home-portfolio-card:hover,
.gp-home-portfolio-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(128,195,66,.52);
  box-shadow: 0 28px 60px rgba(25,29,25,.15);
}
.gp-home-portfolio-card figure {
  aspect-ratio: 1.35;
  margin: 0;
  overflow: hidden;
  background: #e8e5de;
}
.gp-home-portfolio-card:nth-child(1) figure,
.gp-home-portfolio-card:nth-child(4) figure { aspect-ratio: 1.65; }
.gp-home-portfolio-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gp-home-portfolio-card:hover figure img { transform: scale(1.035); }
.gp-home-portfolio-card > div { display: grid; gap: 4px; padding: 20px 22px 23px; }
.gp-home-portfolio-card small { color: var(--gp-green-dark); font-size: .7rem; font-weight: 900; letter-spacing: .105em; text-transform: uppercase; }
.gp-home-portfolio-card strong { font-size: clamp(1.05rem, 1.6vw, 1.38rem); line-height: 1.25; }

.gp-home-service-area--cohesive {
  padding: clamp(88px, 10vw, 140px) 0;
  background: #fff;
}
.gp-home-service-area__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}
.gp-home-service-area__copy h2 { font-size: clamp(2.35rem, 4.4vw, 4.8rem); }
.gp-home-service-area__cards { display: grid; gap: 15px; }
.gp-home-service-area__cards article {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(32,35,41,.1);
  border-radius: 20px;
  background: var(--gp-cream);
  box-shadow: 0 18px 45px rgba(29,32,37,.08);
}
.gp-home-service-area__cards article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -44px;
  width: 112px;
  height: 112px;
  border: 25px solid rgba(128,195,66,.07);
  border-radius: 50%;
}
.gp-home-service-area__cards span { color: var(--gp-green-dark); font-size: .71rem; font-weight: 900; letter-spacing: .105em; text-transform: uppercase; }
.gp-home-service-area__cards h3 { position: relative; z-index: 1; margin: 6px 0 8px; font-size: 1.2rem; }
.gp-home-service-area__cards p { position: relative; z-index: 1; margin: 0; color: var(--gp-muted); font-size: .91rem; line-height: 1.62; }

.gp-home-final--cohesive {
  background:
    radial-gradient(circle at 15% 30%, rgba(128,195,66,.12), transparent 26%),
    #1f2227;
}

@media (max-width: 1080px) {
  .gp-home-service-windows { grid-template-columns: 1fr; }
  .gp-home-service-window { grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr); }
  .gp-home-story__grid { grid-template-columns: .9fr 1.1fr; gap: 52px; }
  .gp-home-process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-home-service-area__grid { grid-template-columns: .9fr 1.1fr; gap: 48px; }
}
@media (max-width: 820px) {
  .gp-home-section-head,
  .gp-home-story__grid,
  .gp-home-service-area__grid { grid-template-columns: 1fr; }
  .gp-home-section-head { align-items: start; }
  .gp-home-section-head .gp-button { justify-self: start; }
  .gp-home-story__gallery { min-height: 620px; }
  .gp-home-story__copy { max-width: 720px; }
  .gp-home-service-area__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-home-portfolio-card,
  .gp-home-portfolio-card:nth-child(1),
  .gp-home-portfolio-card:nth-child(4) { grid-column: span 6; }
}
@media (max-width: 620px) {
  .gp-home-hero--cohesive { padding-top: 48px; }
  .gp-home-hero__visual { min-height: clamp(470px, 128vw, 540px); }
  .gp-home-hero__visual > picture {
    width: 95%;
    height: auto;
    aspect-ratio: 1086 / 1448;
    border-width: 5px;
    border-radius: 28px;
  }
  .gp-home-hero__visual > picture img {
    object-fit: contain;
    object-position: center;
  }
  .gp-home-cohesive-quick { margin-top: -22px; }
  .gp-home-section-head .gp-button { width: 100%; }
  .gp-home-service-window { grid-template-columns: 1fr; }
  .gp-home-service-window figure { min-height: 245px; }
  .gp-home-story__gallery { min-height: 470px; }
  .gp-home-story__image--large { inset: 0 6% 14% 0; }
  .gp-home-story__image--small { width: 52%; height: 40%; }
  .gp-home-story__note { left: 2%; width: 72%; padding: 16px; }
  .gp-home-process__grid,
  .gp-home-service-area__cards { grid-template-columns: 1fr; }
  .gp-home-process__grid article { min-height: 0; }
  .gp-home-portfolio-card,
  .gp-home-portfolio-card:nth-child(1),
  .gp-home-portfolio-card:nth-child(4) { grid-column: span 12; }
  .gp-home-portfolio-card figure,
  .gp-home-portfolio-card:nth-child(1) figure,
  .gp-home-portfolio-card:nth-child(4) figure { aspect-ratio: 1.35; }
}


/* v1.5.6 contact-page copy and uncropped orange gecko image. */

/* v1.5.7 real customer work and leadership imagery. */
.gp-service-real-work {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 9vw, 118px) 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(128,195,66,.10), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(244,90,31,.08), transparent 28%),
    #f7f3eb;
}
.gp-service-real-work::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(31,34,39,.08) .65px, transparent .65px);
  background-size: 13px 13px;
  opacity: .18;
}
.gp-service-real-work > .gp-container { position: relative; z-index: 1; }
.gp-service-real-work__head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 52px);
}
.gp-service-real-work__head h2 {
  max-width: 840px;
  margin: 12px 0 0;
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.gp-service-real-work__head > p {
  max-width: 580px;
  margin: 0;
  color: var(--gp-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.gp-service-real-work__grid {
  display: grid;
  gap: 22px;
}
.gp-service-real-work__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gp-service-real-work__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gp-service-real-work__card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(31,34,39,.10);
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 58px rgba(25,29,25,.10);
}
.gp-service-real-work__card figure {
  display: grid;
  place-items: center;
  min-height: 280px;
  aspect-ratio: 1.35;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(237,235,228,.92));
}
.gp-service-real-work__card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
}
.gp-service-real-work__card > div {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 23px 25px 27px;
}
.gp-service-real-work__card > div > span {
  color: var(--gp-green-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.gp-service-real-work__card h3 {
  margin: 2px 0 2px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.gp-service-real-work__card p {
  margin: 0;
  color: var(--gp-muted);
  font-size: .9rem;
  line-height: 1.58;
}

.gp-contact-leadership {
  padding: clamp(78px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 13% 20%, rgba(128,195,66,.16), transparent 28%),
    radial-gradient(circle at 91% 84%, rgba(244,90,31,.12), transparent 27%),
    #1f2227;
}
.gp-contact-leadership__card {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 7vw, 88px);
  align-items: center;
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 44px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: linear-gradient(140deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 34px 80px rgba(0,0,0,.28);
}
.gp-contact-leadership__portrait {
  display: grid;
  place-items: stretch;
  min-height: 510px;
  margin: 0;
  overflow: hidden;
  border-radius: 27px;
  background: #20242a;
}
.gp-contact-leadership__portrait img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}
.gp-contact-leadership__copy { max-width: 690px; }
.gp-contact-leadership__copy .gp-eyebrow { color: var(--gp-lime); }
.gp-contact-leadership__role {
  margin: 13px 0 8px;
  color: rgba(255,255,255,.66);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.gp-contact-leadership__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4.3vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.gp-contact-leadership__copy > p:not(.gp-contact-leadership__role) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.72;
}
.gp-contact-leadership__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--gp-lime);
  font-weight: 900;
}
.gp-contact-leadership__link:hover,
.gp-contact-leadership__link:focus-visible { color: #fff; }

/* Let the strongest new homepage work photos breathe instead of over-zooming them. */
.gp-home-story__image img { object-position: center center; }
.gp-home-service-window:nth-child(2) figure img { object-position: center 42%; }
.gp-home-service-window:nth-child(4) figure img { object-position: center 46%; }

@media (max-width: 980px) {
  .gp-service-real-work__head,
  .gp-contact-leadership__card { grid-template-columns: 1fr; }
  .gp-service-real-work__grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-contact-leadership__portrait { min-height: 430px; }
}
@media (max-width: 680px) {
  .gp-service-real-work__grid--2,
  .gp-service-real-work__grid--3 { grid-template-columns: 1fr; }
  .gp-service-real-work__card figure { min-height: 235px; }
  .gp-contact-leadership__card { padding: 16px; border-radius: 26px; }
  .gp-contact-leadership__portrait { min-height: 360px; border-radius: 22px; }
  .gp-contact-leadership__copy { padding: 5px 10px 14px; }
}
.gp-service-hero__media--contain {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.98), rgba(239,236,228,.94));
}
.gp-service-hero__media--contain img {
  width: 100%;
  height: 100%;
  padding: clamp(14px, 2.4vw, 28px);
  object-fit: contain;
  object-position: center;
}


/* v1.5.8 additional real production, wedding, event and game-box photography. */


/* v1.5.9 image framing corrections for real wedding photography. */
.gp-portfolio-card--portrait-contain .gp-portfolio-card__image {
  aspect-ratio: 3 / 4 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f5f0 !important;
}
.gp-portfolio-card--portrait-contain .gp-portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
}
.gp-portfolio-card--portrait-contain:hover .gp-portfolio-card__image img {
  transform: none;
}


/* v1.6.4 temporary homepage + contact app-testing entry points. */
.gp-app-test-banner {
  position: relative;
  z-index: 7;
  padding: 14px 0;
  border-top: 1px solid rgba(139,234,63,.2);
  border-bottom: 1px solid rgba(139,234,63,.24);
  background:
    radial-gradient(circle at 20% 50%, rgba(139,234,63,.11), transparent 34%),
    #0c110d;
  color: #fff;
}
.gp-app-test-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.gp-app-test-banner__copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.gp-app-test-banner__copy strong {
  color: #fff;
  font-size: .98rem;
  font-weight: 900;
}
.gp-app-test-banner__copy span {
  color: rgba(255,255,255,.68);
  font-size: .9rem;
}
.gp-app-test-banner__button {
  min-height: 44px;
  padding: 11px 20px;
  white-space: nowrap;
}
@media (max-width: 680px) {
  .gp-app-test-banner {
    padding: 12px 0 14px;
  }
  .gp-app-test-banner__inner {
    display: grid;
    gap: 10px;
    text-align: center;
  }
  .gp-app-test-banner__copy {
    display: grid;
    gap: 2px;
  }
  .gp-app-test-banner__copy strong {
    font-size: .92rem;
  }
  .gp-app-test-banner__copy span {
    font-size: .8rem;
  }
  .gp-app-test-banner__button {
    width: 100%;
    min-height: 50px;
  }
}


/* v1.6.5: real wedding project photography + updated CEO portrait. */
.gp-service-real-work__card--wedding-photo figure img { object-fit: cover; }


/* v1.6.6: expose the complete Popular Services group in the primary header. */
.gp-site-header .gp-container {
  width: min(1640px, calc(100vw - 40px));
}
.gp-site-header .gp-header-inner {
  gap: 22px;
}
.gp-site-header .gp-primary-nav ul {
  gap: 18px;
}
.gp-site-header .gp-primary-nav a {
  font-size: .9rem;
  white-space: nowrap;
}

/* The longer service navigation becomes the hamburger menu sooner so it never
   collides with the logo or Build Your Order CTA on narrower laptops/tablets. */
@media (max-width: 1320px) {
  .gp-site-header .gp-primary-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    margin-left: 0;
    padding: 16px 28px 24px;
    background: #fff !important;
    border-bottom: 1px solid rgba(5, 8, 5, .12) !important;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .08);
  }
  .gp-site-header .gp-primary-nav.is-open { display: block; }
  .gp-site-header .gp-primary-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }
  .gp-site-header .gp-primary-nav a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
  }
  .gp-site-header .gp-menu-toggle { display: inline-grid; place-items: center; }
  .gp-site-header .gp-header-cta { margin-left: auto; }
}

@media (max-width: 760px) {
  .gp-site-header .gp-container { width: min(100% - 28px, 1640px); }
  .gp-site-header .gp-primary-nav { top: 72px; padding-inline: 20px; }
}
