:root {
  color-scheme: light;
  --bg: #ede6da;
  --bg-deep: #d8cdba;
  --surface: #fffdf7;
  --surface-alt: #f4efe5;
  --surface-strong: #e7ddcc;
  --ink: #1f211c;
  --muted: #655f53;
  --line: rgba(41, 39, 32, 0.12);
  --accent: #b4832d;
  --accent-strong: #8a631f;
  --forest: #2e3b33;
  --forest-soft: #405348;
  --shadow: 0 24px 60px rgba(35, 31, 22, 0.12);
  --shadow-soft: 0 18px 42px rgba(35, 31, 22, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(180, 131, 45, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(46, 59, 51, 0.12), transparent 32%),
    linear-gradient(180deg, #f6f1e8 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Raleway", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

p {
  margin: 0;
  line-height: 1.65;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

label {
  font-weight: 600;
  color: var(--forest);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(46, 59, 51, 0.16);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: rgba(255, 253, 247, 0.95);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(180, 131, 45, 0.75);
  box-shadow: 0 0 0 4px rgba(180, 131, 45, 0.14);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.gp-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: calc(100% - 32px);
  margin: 1rem auto 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  background: rgba(255, 251, 243, 0.78);
  box-shadow: 0 12px 30px rgba(32, 28, 19, 0.08);
  backdrop-filter: blur(18px);
}

.gp-header-title {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Raleway", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-logo span {
  line-height: 1.1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(32, 28, 19, 0.14);
}

.gp-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.gp-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gp-nav a:hover,
.gp-nav a:focus {
  color: var(--ink);
  background: rgba(46, 59, 51, 0.08);
}

.gp-main {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem 1rem 2rem;
}

.gp-home {
  padding-top: 1.4rem;
}

.gp-section {
  position: relative;
  width: calc(100% - 32px);
  padding: clamp(1.6rem, 3vw, 2.7rem);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.94) 0%, rgba(250, 246, 238, 0.98) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gp-section.headerless {
  padding-top: clamp(1.9rem, 3vw, 3rem);
}

.gp-section h1 {
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  max-width: 15ch;
}

.gp-section h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  max-width: 16ch;
}

.gp-section h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.gp-muted {
  color: var(--muted);
}

.section-kicker,
.panel-label,
.capability-label,
.quote-source,
.stat-label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker,
.panel-label,
.capability-label {
  color: var(--accent-strong);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.section-heading-center {
  justify-content: center;
}

.section-heading-center > div {
  text-align: center;
}

.section-intro {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.overview-graphic {
  width: min(100%, 34rem);
  height: auto;
  margin-top: auto;
}

.overview-section-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 2rem;
}

.overview-column {
  max-width: 40rem;
  display: flex;
  flex-direction: column;
}

.overview-layout {
  margin-bottom: 0;
}

.overview-layout > div {
  max-width: 32rem;
}

.overview-layout h2 {
  max-width: 11ch;
}

.gp-link,
.gp-link-inline {
  color: var(--forest);
  font-weight: 700;
}

.gp-link:hover,
.gp-link-inline:hover,
.gp-link:focus,
.gp-link-inline:focus {
  color: var(--accent-strong);
}

.gp-link-inline::after {
  content: " ->";
}

.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #c79234 0%, #a37224 100%);
  color: #fff9ef;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: 0 14px 28px rgba(163, 114, 36, 0.28);
}

.gp-btn:hover,
.gp-btn:focus {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.gp-btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: rgba(46, 59, 51, 0.22);
  box-shadow: none;
}

.gp-btn-outline:hover,
.gp-btn-outline:focus {
  background: rgba(46, 59, 51, 0.07);
}

.gp-btn-nav {
  min-height: 42px;
  padding: 0.68rem 1rem;
}

.gp-btn-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
}

.gp-grid {
  display: grid;
  gap: 1rem;
}

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

.gp-grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gp-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gp-card,
.capability-card,
.quote-card,
.contact-card,
.partnership-panel,
.stat-card,
.hero-panel,
.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.gp-card {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.gp-card p,
.capability-card p,
.hero-panel p,
.partnership-panel p,
.quote-card p,
.contact-card p {
  color: var(--muted);
}

.gp-card-media {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(46, 59, 51, 0.1), rgba(180, 131, 45, 0.12));
}

.gp-card-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f120f;
}

.gp-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.gp-hero {
  background:
    radial-gradient(circle at 15% 12%, rgba(199, 146, 52, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(36, 47, 40, 0.92), rgba(62, 80, 69, 0.92)),
    linear-gradient(180deg, #e7dfd2 0%, #f4ede0 100%);
  color: #fff8eb;
}

.gp-hero::before {
  content: "";
  position: absolute;
  inset: auto -6% -25% auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 243, 214, 0.16), transparent 70%);
}

.gp-hero h1,
.gp-hero h2,
.gp-hero h3,
.gp-hero .section-kicker,
.gp-hero .panel-label {
  color: #fff6e5;
}

.gp-hero .section-kicker,
.gp-hero .panel-label {
  color: rgba(255, 236, 196, 0.82);
}

.gp-hero .gp-muted,
.gp-hero p,
.gp-hero li,
.gp-hero .stat-label {
  color: rgba(255, 248, 233, 0.78);
}

.post-hero h1 {
  max-width: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-summary {
  max-width: 46rem;
  font-size: clamp(1.08rem, 2vw, 1.26rem);
  color: rgba(255, 248, 233, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions .gp-btn-outline {
  color: #fff3db;
  border-color: rgba(255, 243, 219, 0.28);
}

.hero-actions .gp-btn-outline:hover,
.hero-actions .gp-btn-outline:focus {
  background: rgba(255, 243, 219, 0.08);
}

.hero-aside {
  display: grid;
  gap: 1rem;
}

.hero-panel {
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.12), rgba(255, 250, 242, 0.06));
  border-color: rgba(255, 245, 223, 0.16);
}

.hero-panel h2 {
  margin-bottom: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.1rem 1rem;
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(255, 245, 223, 0.14);
  text-align: center;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.stat-value {
  display: block;
  font-family: "Raleway", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.55rem);
  font-weight: 800;
  color: #fff8eb;
  line-height: 1.05;
}

.stat-label {
  line-height: 1.45;
}

.gp-story {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(251, 247, 240, 0.96));
}

.clients {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 245, 223, 0.16);
}

.clients-title {
  margin-bottom: 1.25rem;
  color: rgba(101, 95, 83, 0.78);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gp-hero .clients-title {
  color: rgba(255, 236, 196, 0.72);
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.4rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  width: max-content;
  animation: clients-scroll 25s linear infinite;
}

.clients-track img {
  width: auto;
  height: 40px;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.clients-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-1px);
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.capability-card {
  padding: 1.4rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.capability-card h3 {
  max-width: 12ch;
}

.gp-partnership {
  background:
    linear-gradient(140deg, rgba(232, 222, 205, 0.8), rgba(255, 251, 243, 0.96));
}

.partnership-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  align-items: start;
}

.partnership-panel {
  padding: 1.45rem;
}

.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(46, 59, 51, 0.14);
  border-radius: 999px;
  background: rgba(46, 59, 51, 0.05);
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 600;
}

.gp-testimonials {
  background:
    linear-gradient(180deg, rgba(46, 59, 51, 0.94), rgba(58, 76, 64, 0.94));
  color: #fff8eb;
}

.gp-testimonials h2,
.gp-testimonials h3,
.gp-testimonials .section-kicker {
  color: #fff5df;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card {
  padding: 1.4rem;
  background: rgba(255, 251, 243, 0.08);
  border-color: rgba(255, 244, 219, 0.12);
}

.quote-card .quote-copy,
.quote-card .quote-source {
  color: rgba(255, 248, 233, 0.82);
}

.quote-mark {
  font-family: "Raleway", "Segoe UI", sans-serif;
  font-size: 3rem;
  line-height: 0.8;
  color: rgba(255, 225, 162, 0.72);
  margin-bottom: 0.8rem;
}

.quote-copy {
  font-size: 1.05rem;
}

.quote-source {
  margin-top: 1.2rem;
}

.gp-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(180, 131, 45, 0.14), rgba(46, 59, 51, 0.08)),
    rgba(255, 252, 247, 0.94);
}

.cta-band-copy p:last-child {
  max-width: 48rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.gp-contact {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(244, 239, 229, 0.96));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 120px;
}

.contact-card {
  padding: 1.45rem;
}

.gp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gp-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.gp-form-group-span {
  grid-column: 1 / -1;
}

.gp-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.honeypot-field {
  display: none;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: inherit;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a24c 0%, #8a631f 100%);
  box-shadow: 0 0 0 4px rgba(180, 131, 45, 0.12);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}

.blog-card h3 {
  max-width: 15ch;
}

.blog-card .meta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.blog-card-image {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(46, 59, 51, 0.08);
}

.blog-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-card-summary {
  display: grid;
  gap: 0.7rem;
}

.blog-card-summary.is-collapsed {
  position: relative;
  max-height: 13rem;
  overflow: hidden;
}

.blog-card-summary.is-collapsed::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3.2rem;
  background: linear-gradient(180deg, rgba(255, 251, 243, 0), rgba(255, 251, 243, 0.96));
  pointer-events: none;
}

.blog-card-summary p {
  color: var(--muted);
}

.blog-card-toggle {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ochre);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.blog-card-toggle:hover,
.blog-card-toggle:focus-visible {
  color: #8a631f;
}

.blog-card .gp-section-footer {
  margin-top: auto;
  padding-top: 0.2rem;
}

.gp-section-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.gp-footer {
  width: calc(100% - 32px);
  margin: 0 auto 1.6rem;
  padding: 1.4rem 1rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .partnership-grid,
  .contact-grid,
  .gp-cta-band {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-aside {
    position: static;
  }
}

@media (max-width: 820px) {
  .gp-header {
    width: calc(100% - 24px);
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .gp-nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gp-nav::-webkit-scrollbar {
    display: none;
  }

  .gp-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .gp-main {
    padding: 1rem 0.75rem 1.6rem;
  }

  .gp-section {
    width: 100%;
    border-radius: 24px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .overview-section-layout {
    grid-template-columns: 1fr;
  }

  .overview-layout {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .overview-column,
  .overview-layout > div,
  .overview-layout h2 {
    max-width: none;
  }

  .hero-stats,
  .capability-grid,
  .quote-grid,
  .gp-form-grid {
    grid-template-columns: 1fr;
  }

  .clients-track {
    gap: 2.25rem;
  }

  .clients-track img {
    height: 30px;
    max-width: 120px;
  }

  .gp-btn,
  .gp-btn-outline,
  button.gp-btn {
    width: 100%;
  }

  .hero-actions,
  .gp-form-actions,
  .gp-card-footer,
  .gp-section-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .gp-header .gp-btn,
  .gp-header .gp-btn-outline,
  .gp-header button.gp-btn {
    width: auto;
  }
}

@media (max-width: 560px) {
  .gp-header {
    margin-top: 0.75rem;
    border-radius: 20px;
  }

  .gp-header-title {
    gap: 0.7rem;
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .gp-nav a {
    padding: 0.65rem 0.8rem;
  }

  .gp-section h1 {
    max-width: none;
  }

  .gp-section h2 {
    max-width: none;
  }

  .blog-card h3,
  .capability-card h3 {
    max-width: none;
  }
}
