/* ===========================================================================
   GENTYA — institutional site layout.
   Built entirely on the design-system tokens (assets/ds/styles.css).
   Prefix: .g-  ·  Brand classes from the DS use .gen- and are untouched.
   =========================================================================== */

/* ------------------------------------------------------------- primitives */
.g-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.g-skip {
  position: absolute;
  left: var(--space-4);
  top: -120px;
  z-index: 100;
  background: var(--surface-brand);
  color: var(--text-on-brand);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  transition: top var(--duration-base) var(--ease-out);
}
.g-skip:focus { top: var(--space-4); color: var(--text-on-brand); }

.g-eyebrow {
  display: inline-block;
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-accent);
}
.g-eyebrow--dark { color: var(--terracotta-300); }

.g-text-accent { color: var(--purple-500); }
.g-text-warm   { color: var(--terracotta-300); }
.g-text-lilac  { color: var(--lilac-300); }

.g-ico { width: 18px; height: 18px; stroke-width: 1.8; }

/* ---------------------------------------------------------------- buttons */
.g-btn {
  --_bg: var(--surface-brand);
  --_fg: var(--text-on-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  line-height: 1;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-standard),
              filter var(--duration-base) var(--ease-standard);
}
.g-btn:hover  { transform: translateY(-2px); color: var(--_fg); }
.g-btn:active { transform: scale(0.98); }
.g-btn .g-ico { width: 18px; height: 18px; }

.g-btn--lg { padding: 0.95rem 1.6rem; font-size: var(--text-md); border-radius: var(--radius-lg); }

.g-btn--primary { --_bg: var(--purple-500); --_fg: var(--text-on-brand); box-shadow: var(--shadow-brand); }
.g-btn--primary:hover { filter: brightness(1.08); box-shadow: 0 18px 44px rgba(76,29,116,0.30); }

.g-btn--accent { --_bg: var(--terracotta-400); --_fg: var(--text-on-accent); box-shadow: var(--shadow-accent); }
.g-btn--accent:hover { filter: brightness(1.05); box-shadow: 0 16px 40px rgba(194,97,59,0.34); }

.g-btn--ghost {
  --_bg: transparent; --_fg: var(--text-strong);
  border-color: var(--border-default);
}
.g-btn--ghost:hover { background: var(--neutral-0); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

.g-btn--on-dark {
  --_bg: rgba(255,255,255,0.06); --_fg: var(--neutral-100);
  border-color: rgba(255,255,255,0.20);
}
.g-btn--on-dark:hover { background: rgba(255,255,255,0.12); }

/* ------------------------------------------------------------------- tags */
.g-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.02em;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
}
.g-tag--purple     { background: var(--purple-50);     color: var(--purple-500);     border-color: var(--purple-100); }
.g-tag--terracotta { background: var(--terracotta-50); color: var(--terracotta-500); border-color: var(--terracotta-100); }
.g-tag--lilac      { background: var(--lilac-50);      color: var(--purple-500);     border-color: var(--lilac-200); }

/* ----------------------------------------------------------------- header */
.g-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background var(--duration-base) var(--ease-standard),
              backdrop-filter var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
}
/* transparent over the hero; solid background once scrolled past it */
@supports (backdrop-filter: blur(12px)) {
  .g-header[data-scrolled] { backdrop-filter: blur(14px) saturate(1.4); }
}
.g-header[data-scrolled] {
  background: rgba(244, 243, 248, 0.96);
  border-bottom-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}
.g-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.g-header__brand,
.g-header__logo,
.g-nav {
  opacity: 1;
  visibility: visible;
}
.g-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.g-header__logo { height: 32px; width: auto; display: block; }

.g-nav { display: flex; align-items: center; gap: var(--space-6); }
.g-nav > a {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-body);
}
.g-nav > a:hover { color: var(--purple-500); }
.g-nav > a[aria-current="page"] {
  color: var(--text-strong);
  position: relative;
}
.g-nav > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.72rem;
  width: 28px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--terracotta-400);
}
/* CTA inside nav: out-specify `.g-nav > a` (0,1,1) so button text stays white */
.g-nav a.g-nav__cta,
.g-nav a.g-nav__cta:hover { color: var(--text-on-accent); }

/* burger */
.g-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.g-burger span {
  display: block; height: 2px; width: 100%;
  background: var(--text-strong); border-radius: 2px;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-fast) var(--ease-standard);
}
.g-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.g-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.g-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------- sections */
.g-section { padding-block: var(--section-y); }
.g-section--white  { background: #f4f3f8; }
.g-section--canvas { background: #f4f3f8; }

.g-section__head { max-width: 640px; margin-bottom: var(--space-9); }
.g-section__head--center { margin-inline: auto; text-align: center; }
.g-section__title {
  font-size: clamp(2.65rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: var(--space-4) 0 0;
  text-wrap: balance;
}
.g-section__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: var(--space-4) 0 0;
  line-height: var(--leading-relaxed);
}
.g-section__head--center .g-section__lead { margin-inline: auto; max-width: 560px; }

/* grids */
.g-grid { display: grid; gap: var(--space-5); }
.g-grid--4 { grid-template-columns: repeat(4, 1fr); }
.g-grid--3 { grid-template-columns: repeat(3, 1fr); }
.g-grid--audience { grid-template-columns: repeat(3, 1fr); }

/* generic card icon chip */
.g-value__icon, .g-service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--terracotta-50);
  color: var(--terracotta-400);
  margin-bottom: var(--space-5);
}
.g-value__icon svg, .g-service__icon svg { width: 24px; height: 24px; stroke-width: 1.8; }

/* ------------------------------------------------------------------- hero */
.g-hero {
  position: relative;
  overflow: hidden;
  background: var(--neutral-100);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(82px + clamp(48px, 6vw, 88px)) 0 clamp(64px, 8vw, 112px);
}
.g-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(244, 243, 248, 0.9) 0%,
    rgba(244, 243, 248, 0.76) 34%,
    rgba(244, 243, 248, 0.24) 64%,
    rgba(244, 243, 248, 0.08) 100%
  );
  pointer-events: none;
}
.g-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}
.g-hero__background--final {
  z-index: 0;
}
.g-hero__background--animated {
  z-index: 1;
  opacity: 1;
  transition: opacity 180ms linear;
}
.g-hero__background--animated.is-finished {
  opacity: 0;
}
.g-hero__grid {
  position: relative;
  z-index: 3;
  width: 100%;
  display: block;
}
.g-hero__copy {
  width: min(100%, 650px);
}
.g-hero__eyebrow {
  position: relative;
  padding-bottom: 0.58rem;
  color: var(--terracotta-500);
}
.g-hero__eyebrow::after {
  content: "";
  position: absolute;
  left: -0.42rem;
  right: -0.42rem;
  bottom: 0;
  height: 0.46rem;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20380%2028'%20preserveAspectRatio='none'%3E%3Cpath%20d='M8%2021%20C78%20-3%20252%2033%20372%208'%20fill='none'%20stroke='%232DC5DC'%20stroke-width='8'%20stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  transform: rotate(-1.2deg);
  pointer-events: none;
}
.g-hero__title {
  font-size: clamp(2.65rem, 4.45vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: -0.032em;
  margin: var(--space-3) 0 0;
  text-wrap: balance;
}
.g-hero__lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  max-width: 560px;
  margin: var(--space-5) 0 0;
}
.g-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-7); }
.g-hero__tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-7); }
.g-hero__micro {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  max-width: 460px;
  margin: var(--space-5) 0 0;
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
  color: var(--text-muted);
}
.g-hero__micro svg { flex: none; width: 17px; height: 17px; stroke-width: 1.9; color: var(--terracotta-500); }
.g-hero__signature {
  margin: var(--space-6) 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--purple-600);
  letter-spacing: -0.01em;
}
.g-hero__signature::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  margin: 0 0.6rem 0.3rem 0;
  vertical-align: middle;
  background: var(--terracotta-400);
}

/* hero network visual */
.g-hero__visual { display: flex; flex-direction: column; gap: var(--space-3); }
.g-net {
  position: relative;
  aspect-ratio: 5 / 4.4;
  width: 100%;
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(160deg, #221a44 0%, var(--navy-800) 55%, #181430 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.g-net canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.g-net__fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 40% at 30% 30%, rgba(168,138,208,0.35), transparent 70%),
    radial-gradient(40% 40% at 72% 68%, rgba(194,97,59,0.30), transparent 70%);
  opacity: 0;
}
.g-net__caption {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
  padding-left: var(--space-2);
}

/* ------------------------------------------------------ impact section head */
.g-impact__head { max-width: 720px; }
.g-impact__head .g-section__title { margin: var(--space-4) 0 0; }
.g-impact__head .g-section__title::after {
  content: "";
  display: block;
  width: 48px; height: 3px;
  border-radius: var(--radius-pill);
  background: var(--terracotta-400);
  margin-top: var(--space-5);
}

/* ------------------------------------------------------------ value cards */
.g-impact-section {
  position: relative;
  background: #f4f3f8;
}

.g-value {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  box-shadow: var(--shadow-xs);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-standard);
}
.g-value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-default); }

/* round terracotta icon badge holding the PNG line-icon */
.g-value__icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-pill);
  background: var(--terracotta-50);
}
.g-value__icon img { width: 32px; height: 32px; display: block; object-fit: contain; }

.g-value__title { font-size: var(--text-xl); margin: 0 0 var(--space-3); line-height: var(--leading-snug); }
.g-value__text { font-size: var(--text-sm); color: var(--text-muted); margin: 0 0 var(--space-5); line-height: var(--leading-relaxed); }

/* divider + checklist */
.g-value__list {
  list-style: none;
  margin: 0 0 var(--space-6);
  padding: var(--space-5) 0 0;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.g-value__list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-body);
}
.g-check {
  flex: none;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--terracotta-400);
  color: #fff;
}
.g-check svg { width: 12px; height: 12px; stroke-width: 3; }

/* card link — pinned to the bottom so all cards align */
.g-value__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: var(--terracotta-400);
  transition: gap var(--duration-base) var(--ease-out), color var(--duration-fast) var(--ease-standard);
}
.g-value__link:hover { gap: 12px; color: var(--terracotta-500); }
.g-value__link .g-ico { width: 16px; height: 16px; }

/* ----------------------------------------------------- impact closing banner */
.g-impact__banner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-7);
  padding: var(--space-5) var(--space-7);
  background: var(--terracotta-50);
  border: 1px solid var(--terracotta-100);
  border-radius: var(--radius-lg);
}
.g-impact__banner-icon {
  flex: none;
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--surface-card);
  box-shadow: var(--shadow-xs);
}
.g-impact__banner-icon img { width: 24px; height: 24px; }
.g-impact__banner-text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--text-strong);
}
.g-impact__banner-divider { width: 1px; height: 30px; background: var(--terracotta-200); }
.g-impact__banner-q { margin: 0; color: var(--text-muted); font-size: var(--text-md); }
.g-impact__banner .g-btn { margin-left: auto; }

@media (max-width: 860px) {
  .g-impact__banner { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .g-impact__banner-divider { display: none; }
  .g-impact__banner .g-btn { margin-left: 0; width: 100%; }
}

/* --------------------------------------------------------- emotional block */
.g-emotion {
  position: relative;
  padding-block: clamp(48px, 6vw, 88px);
  background: #f4f3f8;
}
.g-emotion__card {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(44px, 6vw, 96px) clamp(24px, 5vw, 80px);
  text-align: center;
  border-radius: clamp(28px, 3vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 253, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 44px 96px rgba(76, 29, 116, 0.13),
    0 2px 0 rgba(255, 255, 255, 0.85) inset;
}
/* decorative orbit rings (clipped by the card edge) */
.g-emotion__ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(124, 86, 160, 0.16);
  pointer-events: none;
  z-index: 0;
}
.g-emotion__ring--left { top: -190px; left: -170px; width: 470px; height: 470px; }
.g-emotion__ring--right {
  right: -160px; bottom: -200px; width: 440px; height: 440px;
  border-color: rgba(194, 97, 59, 0.16);
}
/* dot fields */
.g-emotion__dots {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(124, 86, 160, 0.5) 1.3px, transparent 1.3px);
  background-size: 16px 16px;
}
.g-emotion__dots--tl { top: 40px; left: 44px; width: 104px; height: 70px; }
.g-emotion__dots--br {
  right: 54px; bottom: 46px; width: 120px; height: 80px;
  background-image: radial-gradient(circle, rgba(194, 97, 59, 0.45) 1.3px, transparent 1.3px);
}
/* warm corner glow */
.g-emotion__glow {
  position: absolute;
  right: -90px; bottom: -130px;
  width: 440px; height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(233, 168, 138, 0.42), transparent 68%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}
.g-emotion__inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin-inline: auto;
}
.g-emotion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px; height: 70px;
  margin-bottom: var(--space-6);
  border-radius: 999px;
  color: var(--purple-500);
  background: #fff;
  border: 1px solid rgba(124, 86, 160, 0.12);
  box-shadow: 0 18px 40px rgba(76, 29, 116, 0.14);
}
.g-emotion__icon svg { width: 32px; height: 32px; stroke-width: 1.7; }
.g-emotion__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy-800);
  text-wrap: balance;
}
.g-emotion__title .g-text-accent { color: var(--purple-500); }
.g-emotion__underline {
  position: relative;
  white-space: nowrap;
}
.g-emotion__underline::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.16em;
  height: 0.34em;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20220%2016'%20preserveAspectRatio='none'%3E%3Cpath%20d='M4%2011%20C%2055%2017,%20165%2017,%20216%205'%20fill='none'%20stroke='%23C2613B'%20stroke-width='3.4'%20stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.g-emotion__text {
  margin: var(--space-5) auto 0;
  max-width: 600px;
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
}
/* trust chips */
.g-emotion__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.g-emotion__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.2rem 0.55rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(124, 86, 160, 0.1);
  box-shadow: 0 14px 32px rgba(76, 29, 116, 0.09);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--navy-800);
}
.g-emotion__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 11px;
}
.g-emotion__chip-icon svg { width: 19px; height: 19px; stroke-width: 1.9; }
.g-emotion__chip-icon--purple { background: var(--lilac-50); color: var(--purple-500); }
.g-emotion__chip-icon--terra { background: var(--terracotta-50); color: var(--terracotta-500); }
.g-emotion__chip-sep {
  width: 5px; height: 5px;
  border-radius: 999px;
  background: rgba(124, 86, 160, 0.3);
}

@media (max-width: 640px) {
  .g-emotion__ring,
  .g-emotion__dots { display: none; }
  .g-emotion__chip-sep { display: none; }
  .g-emotion__chips { gap: var(--space-2); }
}

/* --------------------------------------------------------------- audience */
.g-audience-section {
  position: relative;
  background: #f4f3f8;
  padding-block: var(--section-y);
}
.g-audience-section .g-section__head {
  max-width: 850px;
  margin-bottom: clamp(42px, 5vw, 68px);
}
.g-audience-section .g-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
}
.g-audience-section .g-section__title {
  margin-top: var(--space-4);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.g-audience-section .g-section__lead {
  max-width: 720px;
  margin: var(--space-5) auto 0;
  font-size: 1.125rem;
  line-height: var(--leading-relaxed);
  color: #69627c;
  text-wrap: balance;
}
.g-grid--audience {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  max-width: 1240px;
  margin-inline: auto;
}
.g-audience {
  position: relative;
  display: flex;
  grid-column: span 2;
  align-items: center;
  gap: clamp(16px, 1.7vw, 24px);
  min-height: 162px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(104, 75, 135, 0.16);
  border-radius: 20px;
  padding: clamp(22px, 2vw, 30px);
  box-shadow: 0 16px 40px rgba(76, 42, 100, 0.09);
  backdrop-filter: blur(8px);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-standard);
}
.g-audience:nth-child(4) { grid-column: 2 / span 2; }
.g-audience:nth-child(5) { grid-column: 4 / span 2; }
.g-audience:hover {
  transform: translateY(-5px);
  border-color: rgba(104, 75, 135, 0.28);
  box-shadow: 0 22px 52px rgba(76, 42, 100, 0.14);
}
.g-audience__bar {
  position: absolute;
  left: 27px;
  top: 34px;
  bottom: 34px;
  flex: none;
  width: 4px;
  border-radius: var(--radius-pill);
  background: linear-gradient(var(--purple-400), var(--terracotta-400));
}
.g-audience__icon {
  flex: none;
  width: 76px;
  height: 76px;
  margin-left: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--purple-400);
  background: rgba(250, 248, 252, 0.94);
  border: 1px solid rgba(104, 75, 135, 0.09);
  box-shadow: inset 0 0 22px rgba(91, 54, 122, 0.035);
}
.g-audience__icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.65;
}
.g-audience p {
  margin: 0;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  color: var(--text-body);
  line-height: 1.48;
  text-wrap: pretty;
}
.g-audience strong { color: var(--text-strong); font-weight: var(--weight-semibold); }

/* --------------------------------------------------------------- services */
.g-services-section {
  background: #f4f3f8;
  padding-block: var(--section-y);
}
.g-services__head {
  max-width: 760px;
  margin-bottom: var(--space-6);
}
.g-services__head .g-section__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.g-services__head .g-section__lead {
  max-width: 600px;
  font-size: 1.125rem;
}
.g-services__hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 var(--space-5);
  color: var(--text-muted);
  font-size: var(--text-md);
}
.g-services__hint svg {
  width: 26px;
  height: 26px;
  color: var(--terracotta-400);
}
.g-services__hint strong {
  color: var(--terracotta-500);
  font-weight: var(--weight-semibold);
}
.g-services__tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.g-service-tab {
  position: relative;
  min-width: 0;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 12px;
  border: 1px solid rgba(82, 57, 101, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(67, 38, 86, 0.07);
  color: var(--text-strong);
  font: inherit;
  cursor: pointer;
  transition: transform 220ms var(--ease-out),
              border-color 220ms var(--ease-standard),
              box-shadow 220ms var(--ease-out),
              color 220ms var(--ease-standard);
}
.g-service-tab:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 97, 59, 0.42);
  box-shadow: 0 18px 38px rgba(109, 60, 50, 0.11);
}
.g-service-tab:focus-visible {
  outline: 3px solid rgba(194, 97, 59, 0.28);
  outline-offset: 3px;
}
.g-service-tab.is-active {
  border-color: var(--terracotta-400);
  color: var(--terracotta-500);
  background: rgba(255, 249, 245, 0.9);
  box-shadow: 0 18px 42px rgba(194, 97, 59, 0.13);
}
.g-service-tab.is-active::after {
  content: "";
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--terracotta-400);
}
.g-service-tab img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}
.g-service-tab > span:last-child {
  font-size: clamp(0.88rem, 1vw, 1.05rem);
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  text-align: center;
}
.g-service-tab__check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta-400);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(194, 97, 59, 0.22);
}
.g-service-tab.is-active .g-service-tab__check { display: grid; }

.g-service-panel {
  display: grid;
  grid-template-columns: 1.05fr 1.55fr 1.05fr 1fr;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  height: 380px;
  margin-top: 20px;
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid rgba(194, 97, 59, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 50px rgba(93, 48, 57, 0.08);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.g-service-panel.is-switching {
  animation: g-service-panel-in 340ms var(--ease-out);
}
@keyframes g-service-panel-in {
  from { opacity: 0.35; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.g-service-panel__visual {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
}
.g-service-panel__shape {
  position: absolute;
  inset: 12% 0;
  border-radius: 44% 56% 62% 38% / 51% 35% 65% 49%;
  background: rgba(194, 97, 59, 0.08);
  transform: rotate(-8deg);
}
.g-service-panel__visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 220px);
  aspect-ratio: 1;
  object-fit: contain;
}
.g-service-panel__copy,
.g-service-panel__list,
.g-service-panel__action {
  min-width: 0;
  overflow: hidden;
}
.g-service-panel__copy,
.g-service-panel__list {
  padding-right: clamp(20px, 2.6vw, 38px);
  border-right: 1px solid rgba(194, 97, 59, 0.2);
}
.g-service-panel__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--terracotta-500);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.g-service-panel__copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.g-service-panel__copy p {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.g-service-panel__list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 16px;
}
.g-service-panel__list li {
  position: relative;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding-left: 46px;
  color: var(--text-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}
.g-service-panel__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta-50);
  color: var(--terracotta-500);
  font-weight: var(--weight-bold);
}
.g-service-panel__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.g-service-panel__action-icon {
  color: var(--terracotta-500);
}
.g-service-panel__action-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.6;
}
.g-service-panel__action p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.g-service-panel__action .g-btn {
  width: 100%;
  margin-top: 4px;
}

/* ----------------------------------------------------------------- method */
.g-bg-section-05 {
  background: #f4f3f8;
}
.g-method {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 5vw, 80px);
  align-items: start;
}
.g-method__intro {
  position: sticky;
  top: 100px;
  padding-right: clamp(16px, 2vw, 40px);
}

/* eyebrow + line */
.g-method__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.g-method__line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--terracotta-400);
  border-radius: 2px;
  position: relative;
}
.g-method__line::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta-400);
}

/* title */
.g-method__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: var(--space-5) 0 0;
  text-wrap: balance;
}

/* lead */
.g-method__lead {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin: var(--space-5) 0 0;
  max-width: 420px;
}

/* cta button */
.g-method__cta {
  margin-top: var(--space-7);
}

/* feature chips row */
.g-method__chips {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(6px);
  overflow-x: auto;
}
.g-method__chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-body);
  line-height: 1.35;
  font-weight: var(--weight-medium);
  white-space: nowrap;
  flex-shrink: 0;
}
.g-method__chip img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.g-method__chip + .g-method__chip {
  padding-left: var(--space-4);
  border-left: 1px solid var(--border-subtle);
}

/* timeline */
.g-method__timeline {
  position: relative;
}
.g-method__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* each step row */
.g-method__step {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  position: relative;
  padding-bottom: clamp(16px, 2vw, 24px);
}
.g-method__step:last-child { padding-bottom: 0; }

/* connecting vertical line — spans this circle's center to the next, sits
   behind the solid number circles (z-index 1) so only the gap shows */
.g-method__step::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  height: 100%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(var(--purple-200), var(--purple-100));
  z-index: 0;
}
.g-method__step:last-child::before { display: none; }

/* number circle */
.g-method__step-num {
  flex: none;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--purple-500);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: var(--text-lg);
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(76, 29, 116, 0.25);
}

/* card */
.g-method__step-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 22px);
  padding: clamp(18px, 2vw, 26px) clamp(18px, 2vw, 28px);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(104, 75, 135, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(76, 42, 100, 0.06);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-standard);
}
.g-method__step-card:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 36px rgba(76, 42, 100, 0.10);
  border-color: rgba(194, 97, 59, 0.25);
}

/* icon circle inside card */
.g-method__step-icon {
  flex: none;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
}
.g-method__step-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* text */
.g-method__step-content {
  flex: 1;
  min-width: 0;
}
.g-method__step-title {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-strong);
  line-height: 1.2;
}
.g-method__step-text {
  margin: 6px 0 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

/* arrow */
.g-method__step-arrow {
  flex: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  color: var(--text-muted);
  font-size: 1.3rem;
  font-weight: 300;
  transition: background var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard);
}
.g-method__step-card:hover .g-method__step-arrow {
  background: var(--terracotta-400);
  border-color: var(--terracotta-400);
  color: #fff;
}

/* ------------------------------------------------------ statement (dark) */
.g-statement {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  color: var(--neutral-100);
  padding-block: clamp(80px, 9vw, 120px);
}
.g-statement.g-bg-section-06 {
  background: #f4f3f8;
  color: var(--text-strong);
}
.g-bg-section-06 .g-statement__quote { color: var(--text-strong); }
.g-bg-section-06 .g-statement__support { color: var(--text-muted); }
.g-bg-section-06 .g-text-lilac { color: var(--purple-500); }

/* sparkles */
.g-statement__sparkle {
  position: absolute;
  font-size: 2.5rem;
  color: var(--purple-200);
  opacity: 0.5;
  pointer-events: none;
}
.g-statement__sparkle--left { left: 6%; top: 60%; }
.g-statement__sparkle--right { right: 6%; top: 22%; }

.g-statement__inner {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

/* badge */
.g-statement__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-strong);
}
.g-statement__badge svg {
  width: 18px;
  height: 18px;
  color: var(--purple-400);
}

/* quote */
.g-statement__quote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: var(--space-6) 0 0;
  text-wrap: balance;
}
.g-statement__quote .g-text-warm {
  color: var(--terracotta-400);
}
.g-statement__quote .g-text-strong {
  color: var(--purple-500);
}

/* divider with icon */
.g-statement__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin: var(--space-7) auto;
  max-width: 320px;
}
.g-statement__divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}
.g-statement__divider-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  color: var(--purple-400);
}
.g-statement__divider-icon svg {
  width: 20px;
  height: 20px;
}

/* support text */
.g-statement__support {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}
.g-statement__support strong {
  color: var(--text-strong);
  font-weight: var(--weight-bold);
}

/* pillars card */
.g-statement__pillars {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: var(--space-8);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.g-statement__pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-5);
  text-align: center;
}
.g-statement__pillar + .g-statement__pillar {
  border-left: 1px solid var(--border-subtle);
}
.g-statement__pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
}
.g-statement__pillar-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.6;
}
.g-statement__pillar-label {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--terracotta-400);
}
.g-statement__pillar-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------- benefits */
.g-bg-section-07 {
  background: #f4f3f8;
}
.g-benefits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-9);
  align-items: center;
}
.g-benefits__head { max-width: 420px; }
.g-benefits__list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.g-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  font-size: var(--text-md);
  font-weight: var(--weight-medium);
  color: var(--text-strong);
  box-shadow: var(--shadow-xs);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.g-benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.g-benefit__ico {
  flex: none;
  width: 28px; height: 28px;
  padding: 5px;
  border-radius: var(--radius-pill);
  background: var(--purple-50);
  color: var(--purple-500);
  stroke-width: 2.4;
}

/* ------------------------------------------------------------------ about */
.g-bg-section-08 {
  background: #f4f3f8;
}
.g-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}
.g-about__text { font-size: var(--text-lg); color: var(--text-body); line-height: var(--leading-relaxed); margin: var(--space-4) 0 0; }
.g-about__pillars { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-7); }
.g-pillar {
  position: relative;
  padding-left: var(--space-5);
  font-size: var(--text-md);
  color: var(--text-muted);
}
.g-pillar::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta-400);
}
.g-pillar strong { color: var(--text-strong); font-weight: var(--weight-semibold); margin-right: 6px; }

.g-about__visual {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------- placeholders */
.g-placeholder {
  position: relative;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(76,29,116,0.03) 22px 24px),
    var(--purple-50);
  overflow: hidden;
}
.g-placeholder--soft {
  border-style: dashed;
  border-color: var(--border-default);
  background: var(--neutral-50);
}
.g-placeholder__motif { height: 56%; opacity: 0.28; }
.g-placeholder__label {
  position: absolute;
  left: 50%; bottom: var(--space-5);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-500);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
}
.g-placeholder__label svg { width: 15px; height: 15px; }
.g-placeholder__label span { color: var(--text-subtle); text-transform: none; letter-spacing: 0; font-weight: var(--weight-regular); }

/* ----------------------------------------------------- proof / authority */
.g-bg-section-09 {
  background: #f4f3f8;
  color: var(--text-body);
}
.g-bg-section-09 .g-section__title { color: var(--text-strong); }
.g-bg-section-09 .g-section__lead { color: var(--text-muted); }
.g-bg-section-09 .g-eyebrow { color: var(--text-accent); }
.g-bg-section-09 .g-placeholder--soft {
  background: var(--neutral-50);
  border-color: var(--border-default);
}
.g-proof__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-7);
  min-height: 230px;
}
.g-proof__quote-mark {
  font-family: var(--font-display);
  font-size: 3rem; line-height: 0.5;
  color: var(--purple-200);
}
.g-proof__text { font-size: var(--text-md); color: var(--text-muted); margin: 0; line-height: var(--leading-relaxed); }
.g-proof__text--top { margin-bottom: var(--space-2); }
.g-proof__person { display: flex; align-items: center; gap: var(--space-3); margin-top: auto; }
.g-proof__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(var(--lilac-200), var(--purple-200));
  border: 1px solid var(--border-default);
}
.g-proof__meta { display: flex; flex-direction: column; font-size: var(--text-sm); }
.g-proof__meta strong { color: var(--text-strong); }
.g-proof__meta span { color: var(--text-subtle); }
.g-proof__tag {
  align-self: flex-start;
  font-family: var(--font-label);
  font-size: var(--text-xs); font-weight: var(--weight-semibold);
  text-transform: uppercase; letter-spacing: var(--tracking-label);
  color: var(--terracotta-500);
  background: var(--terracotta-50);
  border-radius: var(--radius-pill);
  padding: var(--space-1) var(--space-3);
}
.g-proof__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: var(--weight-semibold); font-size: var(--text-sm);
  color: var(--purple-400);
}
.g-logo-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-2); }
.g-logo-chip { height: 38px; border-radius: var(--radius-sm); background: var(--neutral-200); }

/* -------------------------------------------------------------- cta final */
.g-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 80% 120%, var(--purple-700), transparent 60%),
    var(--navy-800);
  color: var(--neutral-100);
  padding-block: clamp(72px, 8vw, 112px);
}
.g-cta__motif { position: absolute; right: -100px; top: -80px; height: 420px; opacity: 0.08; pointer-events: none; }
.g-cta__inner { position: relative; max-width: 720px; text-align: center; margin-inline: auto; }
.g-cta__title { font-size: clamp(2rem, 4.4vw, 2.875rem); color: #fff; margin: var(--space-4) 0 0; line-height: 1.1; }
.g-cta__text { font-size: var(--text-lg); color: rgba(244,243,248,0.78); max-width: 520px; margin: var(--space-5) auto 0; line-height: var(--leading-relaxed); }
.g-cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-8); }

/* CTA — "como funciona o diagnóstico inicial" */
.g-cta__process {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
}
.g-cta__process-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-6);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--terracotta-300);
}
.g-cta__process-title svg { width: 18px; height: 18px; stroke-width: 1.9; }
.g-cta__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  counter-reset: cta-step;
}
.g-cta__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  padding-right: var(--space-4);
}
.g-cta__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 6px;
  width: calc(100% - 52px);
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 143, 104, 0.5), rgba(216, 143, 104, 0.08));
}
.g-cta__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  flex: none;
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--neutral-100);
  background: rgba(216, 143, 104, 0.18);
  border: 1px solid rgba(216, 143, 104, 0.55);
}
.g-cta__step-text {
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
  color: rgba(244, 243, 248, 0.86);
}

@media (max-width: 760px) {
  .g-cta__steps { grid-template-columns: 1fr; gap: var(--space-4); }
  .g-cta__step {
    flex-direction: row;
    align-items: center;
    padding-right: 0;
  }
  .g-cta__step:not(:last-child)::after { display: none; }
}

/* ----------------------------------------------------------------- footer */
.g-footer { background: var(--navy-900); color: rgba(244, 243, 248, 0.66); }
.g-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-7);
  padding-block: var(--space-10) var(--space-8);
}
.g-footer__logo { height: 28px; margin-bottom: var(--space-4); }
.g-footer__tagline { font-size: var(--text-sm); line-height: var(--leading-relaxed); max-width: 260px; margin: 0; }
.g-footer__col { display: flex; flex-direction: column; gap: var(--space-3); }
.g-footer__h {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--lilac-300);
  margin: 0 0 var(--space-2);
}
.g-footer__col a { font-size: var(--text-sm); color: rgba(244,243,248,0.66); }
.g-footer__col a:hover { color: var(--terracotta-300); }
.g-footer__plain { font-size: var(--text-sm); }
.g-footer__social { display: flex; gap: var(--space-3); margin-top: var(--space-2); }
.g-footer__social a,
.g-footer__social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06); color: var(--neutral-100);
}
.g-footer__social a:hover { background: var(--terracotta-400); color: #fff; }
.g-footer__social-link { opacity: 0.58; }
.g-footer__social svg { width: 18px; height: 18px; }

/* footer WhatsApp button (no number shown) */
.g-footer__wa { align-self: flex-start; margin-top: var(--space-1); }


.g-footer__bar { border-top: 1px solid rgba(255,255,255,0.08); }
.g-footer__bar-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2);
  padding-block: var(--space-5);
  font-size: var(--text-xs);
  color: var(--text-subtle);
}
.g-footer__credit {
  flex-basis: 100%;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: var(--space-3);
  color: rgba(244,243,248,0.62); text-decoration: none;
  opacity: .85; transition: opacity .15s ease;
}
.g-footer__credit:hover { opacity: 1; }
.g-footer__credit img { height: 24px; width: auto; display: block; }

/* ----------------------------------------------------- scroll reveal anim
   Hidden state is gated behind .g-js (added by site.js). Without JS — or if the
   script fails — every section stays fully visible. Progressive enhancement. */
.g-js .g-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  will-change: opacity, transform;
}
.g-js .g-reveal.is-in { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .g-services__tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .g-service-panel {
    grid-template-columns: 0.8fr 1.2fr;
    height: auto;
    min-height: 380px;
  }
  .g-service-panel__copy {
    border-right: 0;
    padding-right: 0;
  }
  .g-service-panel__list {
    border-right: 1px solid rgba(194, 97, 59, 0.2);
  }
  .g-grid--audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .g-audience,
  .g-audience:nth-child(4) {
    grid-column: auto;
  }
  .g-audience:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }
  .g-net { aspect-ratio: 16 / 10; max-height: 360px; }
  .g-method { grid-template-columns: 1fr; gap: var(--space-7); }
  .g-method__intro { position: static; padding-right: 0; }
  .g-method__title { font-size: clamp(2.2rem, 7vw, 3rem); }
  .g-method__chips { flex-wrap: wrap; }
  .g-benefits { grid-template-columns: 1fr; gap: var(--space-7); }
  .g-about { grid-template-columns: 1fr; }
  .g-about__visual { aspect-ratio: 16 / 11; }
  .g-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .g-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .g-section__title {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }
  /* placeholder caption: wrap instead of overflowing the figure on phones */
  .g-placeholder__label {
    left: var(--space-4);
    right: var(--space-4);
    transform: none;
    max-width: none;
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
    padding: var(--space-2) var(--space-4);
  }
  /* stack feature chips into an even vertical list (avoids 2+1 wrap) */
  .g-method__chips {
    flex-direction: column;
    align-items: stretch;
  }
  .g-method__chip + .g-method__chip {
    padding-left: 0;
    padding-top: var(--space-3);
    border-left: 0;
    border-top: 1px solid var(--border-subtle);
  }
  /* timeline steps: shrink icon/number/padding so cards fit with symmetric
     gutters instead of clipping past the right edge on phones */
  .g-method__step { gap: 14px; }
  .g-method__step::before { left: 24px; }
  .g-method__step-num {
    width: 48px;
    height: 48px;
    font-size: var(--text-md);
  }
  .g-method__step-card {
    min-width: 0;
    gap: 12px;
    padding: 16px 14px;
  }
  .g-method__step-icon { width: 54px; height: 54px; }
  .g-method__step-icon img { width: 32px; height: 32px; }
  .g-method__step-title { font-size: var(--text-lg); }
  .g-section__lead,
  .g-audience-section .g-section__lead,
  .g-services__head .g-section__lead {
    font-size: 1rem;
  }
  .g-services-section {
    padding-block: var(--section-y);
  }
  .g-services__head .g-section__title {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }
  .g-services__hint {
    align-items: flex-start;
    font-size: var(--text-sm);
  }
  .g-services__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .g-service-tab {
    min-height: 158px;
    padding: 16px 8px;
  }
  .g-service-tab img {
    width: 68px;
    height: 68px;
  }
  .g-service-panel {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 22px;
    height: auto;
    min-height: 0;
  }
  .g-service-panel__visual {
    min-height: 180px;
  }
  .g-service-panel__visual img {
    width: 180px;
  }
  .g-service-panel__copy,
  .g-service-panel__list {
    border-right: 0;
    padding-right: 0;
  }
  .g-service-panel__list,
  .g-service-panel__action {
    padding-top: 24px;
    border-top: 1px solid rgba(194, 97, 59, 0.2);
  }

  .g-hero::after {
    background: rgba(244, 243, 248, 0.76);
  }
  .g-hero {
    min-height: 100dvh;
    align-items: flex-start;
    padding: calc(82px + clamp(44px, 12vw, 72px)) 0 clamp(64px, 14vw, 96px);
  }
  .g-hero__background {
    object-position: 62% center;
  }
  .g-hero__copy {
    width: min(100%, 580px);
  }
  .g-hero__title {
    font-size: clamp(2.25rem, 10.8vw, 3.45rem);
  }

  /* mobile nav */
  .g-burger { display: flex; }
  .g-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
    padding: var(--space-5) var(--gutter) var(--space-7);
    background: var(--neutral-100);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--duration-base) var(--ease-out),
                opacity var(--duration-base) var(--ease-standard),
                visibility var(--duration-base);
  }
  .g-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .g-nav > a { padding: var(--space-3) var(--space-2); font-size: var(--text-lg); border-bottom: 1px solid var(--border-subtle); }
  .g-nav__cta { margin-top: var(--space-3); border-bottom: none !important; justify-content: center; }

  .g-grid--3, .g-grid--4, .g-grid--audience { grid-template-columns: 1fr; }
  .g-audience,
  .g-audience:nth-child(4),
  .g-audience:nth-child(5) {
    grid-column: auto;
    width: 100%;
  }
  .g-audience-section .g-section__title {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }
  .g-audience {
    min-height: 142px;
  }
  .g-audience__icon {
    width: 64px;
    height: 64px;
  }
  .g-benefits__list { grid-template-columns: 1fr; }
  .g-statement__pillars { flex-direction: column; }
  .g-statement__pillar + .g-statement__pillar { border-left: 0; border-top: 1px solid var(--border-subtle); }
  .g-footer__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .g-footer__bar-inner { flex-direction: column; }
  .g-section__head { margin-bottom: var(--space-7); }
}

@media (max-width: 420px) {
  .g-btn { width: 100%; }
  .g-hero__actions .g-btn {
    min-height: 3.35rem;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
    padding-inline: 1rem;
  }
  .g-hero__actions .g-btn .g-ico {
    flex: none;
  }
  .g-hero__actions, .g-cta__actions { width: 100%; }
}

/* ----------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  .g-reveal { opacity: 1; transform: none; transition: none; }
  .g-btn, .g-value, .g-service, .g-audience, .g-benefit { transition: none; }
  * { scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

/* ===========================================================================
   ENHANCEMENTS — specialist section, refined motion, page transitions,
   and the Sobre Nós page. Built on the same tokens; reduced-motion safe.
   =========================================================================== */

/* -------------------------------------------- directional reveal variants */
.g-js .g-reveal[data-reveal="left"]  { transform: translateX(-34px); }
.g-js .g-reveal[data-reveal="right"] { transform: translateX(34px); }
.g-js .g-reveal[data-reveal="scale"] {
  transform: scale(0.94);
  filter: blur(6px);
  transition: opacity 700ms var(--ease-out),
              transform 700ms var(--ease-soft),
              filter 700ms var(--ease-out);
}
.g-js .g-reveal[data-reveal].is-in { transform: none; filter: none; }

@media (max-width: 760px) {
  .g-js .g-reveal[data-reveal="left"],
  .g-js .g-reveal[data-reveal="right"] {
    transform: translateY(18px);
  }
}

/* ------------------------------------------------- page enter / leave fade */
.g-js body { animation: gPageIn 540ms var(--ease-out) both; }
@keyframes gPageIn { from { opacity: 0; } to { opacity: 1; } }
.g-js body.g-leaving { opacity: 0; transition: opacity 260ms var(--ease-standard); }

/* parallax elements get GPU transforms set inline by JS */
[data-parallax] { will-change: transform; }

/* =========================================================== specialist */
.g-specialist {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 3.8vw, 4.8rem);
  background: #f4f3f8;
}
.g-specialist__watermark {
  position: absolute;
  right: -44px;
  bottom: -74px;
  width: clamp(180px, 22vw, 340px);
  opacity: 0.065;
  pointer-events: none;
  user-select: none;
}
.g-specialist__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(460px, 1.14fr);
  gap: clamp(56px, 6vw, 104px);
  align-items: center;
}
.g-specialist .g-reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

/* photo + accent halo */
.g-specialist__visual {
  position: relative;
  width: 100%;
  max-width: 410px;
  justify-self: center;
  padding: clamp(18px, 2.1vw, 30px);
  border: 1px solid rgba(216, 143, 104, 0.42);
  border-radius: clamp(34px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 34px 90px rgba(76, 29, 116, 0.08);
}
.g-specialist__halo {
  position: absolute;
  inset: 10% -6% -5% 12%;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(76, 29, 116, 0.10), rgba(194, 97, 59, 0.16));
  opacity: 0.75;
  z-index: 0;
}
.g-specialist__dots {
  position: absolute;
  left: -42px;
  bottom: 72px;
  width: 92px;
  height: 128px;
  opacity: 0.55;
  background-image: radial-gradient(circle, rgba(216, 143, 104, 0.5) 1.35px, transparent 1.35px);
  background-size: 18px 18px;
  z-index: 0;
}
.g-specialist__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(410px, 48vh, 500px);
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  object-position: center 18%;
  border-radius: clamp(24px, 2.8vw, 38px);
  border: 0;
  box-shadow: 0 24px 64px rgba(28, 24, 56, 0.16);
  background: var(--neutral-100);
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out);
}
.g-specialist__visual:hover .g-specialist__photo {
  transform: translateY(-4px);
  box-shadow: 0 30px 76px rgba(28, 24, 56, 0.18);
}
.g-specialist__tagline {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(16px, 2vw, 28px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-label);
  font-size: clamp(0.75rem, 1vw, 0.92rem);
  font-weight: var(--weight-semibold);
  color: var(--purple-600);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 143, 104, 0.18);
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 38px rgba(28, 24, 56, 0.14);
  backdrop-filter: blur(10px);
}
.g-specialist__tagline img { width: 22px; height: 22px; display: block; }

/* quote body */
.g-specialist__body {
  position: relative;
  max-width: 760px;
}
.g-specialist__body .g-eyebrow {
  color: var(--terracotta-500);
  letter-spacing: 0.24em;
}
.g-specialist__eyebrow-line {
  display: block;
  width: 38px;
  height: 1px;
  margin-top: var(--space-4);
  background: var(--terracotta-300);
}
.g-specialist__quote-mark {
  width: 54px;
  height: 54px;
  color: var(--terracotta-300);
  margin: var(--space-4) 0 var(--space-3);
  stroke-width: 1.25;
}
.g-specialist__quote-mark--close {
  display: block;
  width: 44px;
  height: 44px;
  margin: -0.2rem 0 0 auto;
  transform: rotate(180deg);
}
.g-specialist__quote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 2.75vw, 3.25rem);
  line-height: 1.14;
  letter-spacing: -0.018em;
  font-weight: 500;
  color: var(--text-strong);
}
.g-specialist__rule {
  position: relative;
  display: block;
  height: 1px;
  margin: var(--space-4) 0 var(--space-5);
  background: linear-gradient(90deg, rgba(216, 143, 104, 0.48), rgba(216, 143, 104, 0.18));
}
.g-specialist__rule::after {
  content: "";
  position: absolute;
  left: 14%;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--terracotta-400);
}
.g-specialist__author {
  margin-top: 0;
  padding-left: 0;
  border-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.g-specialist__author-name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  color: var(--text-strong);
}
.g-specialist__author-role {
  font-family: var(--font-label);
  font-size: clamp(0.9rem, 1.1vw, 1.08rem);
  color: var(--text-muted);
}
.g-specialist__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
  font-family: var(--font-label);
  font-weight: var(--weight-semibold);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  color: var(--purple-500);
  transition: color var(--duration-base) var(--ease-standard);
}
.g-specialist__link:hover { color: var(--terracotta-500); }
.g-specialist__link .g-ico {
  width: 38px;
  height: 38px;
  padding: 10px;
  border: 1px solid rgba(194, 97, 59, 0.55);
  border-radius: 999px;
  color: var(--terracotta-500);
  transition: transform var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-standard);
}
.g-specialist__link:hover .g-ico { background: var(--terracotta-50); }
.g-specialist__link:hover .g-ico { transform: translateX(3px); }

/* ---------------------------------------------- founder (stronger authority) */
.g-specialist--founder .g-specialist__inner {
  grid-template-columns: minmax(320px, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(48px, 5vw, 92px);
}
.g-specialist--founder .g-specialist__visual {
  max-width: 460px;
}
.g-specialist--founder .g-specialist__photo {
  height: clamp(440px, 52vh, 560px);
  object-position: center 16%;
}
.g-specialist__name {
  margin: var(--space-4) 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.g-specialist__role {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--font-label);
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  font-weight: var(--weight-semibold);
  color: var(--terracotta-500);
}
.g-specialist__lead {
  margin: var(--space-4) 0 0;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
}
.g-specialist__role + .g-specialist__lead {
  margin-top: var(--space-5);
}
.g-specialist__impact {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-6) 0 0;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(216, 143, 104, 0.28);
  box-shadow: 0 18px 44px rgba(76, 29, 116, 0.07);
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  line-height: 1.35;
  color: var(--text-strong);
}
.g-specialist__impact svg {
  flex: none;
  width: 30px; height: 30px;
  padding: 6px;
  border-radius: 999px;
  color: var(--terracotta-500);
  background: var(--terracotta-50);
  border: 1px solid var(--terracotta-100);
  stroke-width: 1.8;
}
.g-specialist__impact strong { color: var(--purple-600); font-weight: var(--weight-bold); }

/* ----------------------------------------------- proof / credibility numbers */
.g-stats-section { position: relative; overflow: hidden; background: #f4f3f8; }
.g-stats-section .g-container { position: relative; z-index: 1; }
.g-stats__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--navy-800);
}
.g-stats__title .g-text-warm { color: var(--terracotta-500); }

/* decorative concentric rings */
.g-stats__rings {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.g-stats__rings--tl {
  top: -70px; left: -90px; width: 440px; height: 400px;
  background: repeating-radial-gradient(circle at 20% 24%, transparent 0 53px, rgba(124, 86, 160, 0.16) 53px 54px, transparent 54px 55px);
}
.g-stats__rings--br {
  right: -120px; bottom: -90px; width: 480px; height: 440px;
  background: repeating-radial-gradient(circle at 84% 80%, transparent 0 58px, rgba(194, 97, 59, 0.14) 58px 59px, transparent 59px 60px);
}

.g-stats { margin-top: var(--space-2); }
.g-stat {
  --stat-accent: var(--purple-500);
  --stat-soft: var(--lilac-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: clamp(30px, 3.2vw, 46px) var(--space-5);
  background: var(--neutral-0);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 48px rgba(28, 24, 56, 0.07);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-standard);
}
.g-stat--terra {
  --stat-accent: var(--terracotta-500);
  --stat-soft: var(--terracotta-50);
}
.g-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-brand);
}
.g-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px; height: 62px;
  margin-bottom: var(--space-1);
  border-radius: 999px;
  background: var(--stat-soft);
  color: var(--stat-accent);
}
.g-stat__icon svg { width: 26px; height: 26px; stroke-width: 1.8; }
.g-stat__num {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(2.85rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--stat-accent);
}
.g-stat__rule {
  width: 34px; height: 3px;
  border-radius: var(--radius-pill);
  background: var(--stat-accent);
  opacity: 0.85;
}
.g-stat__label {
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  color: var(--text-strong);
  max-width: 220px;
}
.g-stat__text {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-muted);
  max-width: 230px;
}

/* trust bar */
.g-stats__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4) clamp(20px, 3vw, 40px);
  margin-top: clamp(28px, 3.6vw, 48px);
  padding: var(--space-4) clamp(20px, 3vw, 40px);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 36px rgba(28, 24, 56, 0.05);
}
.g-stats__trust-main {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-strong);
}
.g-stats__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  flex: none;
  border-radius: 999px;
  background: var(--purple-50);
  color: var(--purple-500);
}
.g-stats__trust-icon svg { width: 19px; height: 19px; stroke-width: 1.9; }
.g-stats__trust-sep { width: 1px; height: 22px; background: var(--border-default); }
.g-stats__trust-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.g-stats__stars { display: inline-flex; gap: 3px; color: var(--terracotta-400); }
.g-stats__stars svg { width: 16px; height: 16px; fill: currentColor; stroke: currentColor; }

@media (max-width: 760px) {
  .g-stats__trust-sep { display: none; }
  .g-stats__trust { flex-direction: column; gap: var(--space-3); text-align: center; }
}

@media (max-width: 860px) {
  .g-specialist--founder .g-specialist__inner { grid-template-columns: 1fr; }
  .g-specialist--founder .g-specialist__photo { height: auto; }
  .g-specialist__impact { gap: var(--space-3); }
}

@media (max-width: 860px) {
  .g-specialist {
    padding-block: var(--space-9);
  }
  .g-specialist__inner {
    grid-template-columns: 1fr;
    gap: var(--space-9);
  }
  .g-specialist__visual {
    max-width: 420px;
    padding: 18px;
    border-radius: 34px;
  }
  .g-specialist__photo {
    height: auto;
    aspect-ratio: 4 / 4.9;
    object-position: center top;
  }
  .g-specialist__dots {
    left: -20px;
    bottom: 52px;
  }
  .g-specialist__quote {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .g-specialist__quote-mark { margin-top: var(--space-4); }
  .g-specialist__watermark {
    right: -70px;
    bottom: -52px;
  }
}

/* =============================================================== Sobre page */
/* page hero */
.g-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding-top: calc(82px + clamp(70px, 8vw, 120px));
  padding-bottom: clamp(70px, 8vw, 120px);
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(250, 240, 234, 0.85) 0%, transparent 52%),
    radial-gradient(90% 90% at 0% 100%, rgba(244, 239, 249, 0.88) 0%, transparent 54%),
    linear-gradient(90deg, #fffefd 0%, #fbf8fc 100%);
}
.g-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-left: clamp(120px, 18vw, 352px);
}
.g-page-hero__mark {
  position: absolute;
  right: clamp(64px, 12vw, 210px);
  top: 84px;
  width: clamp(300px, 34vw, 520px);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}
.g-page-hero__dots {
  position: absolute;
  right: clamp(28px, 7vw, 120px);
  bottom: clamp(48px, 8vw, 96px);
  width: 92px;
  height: 92px;
  opacity: 0.72;
  background-image: radial-gradient(circle, rgba(194, 97, 59, 0.62) 1.35px, transparent 1.35px);
  background-size: 14px 14px;
}
.g-page-hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.4vw, 5.1rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-strong);
  margin: var(--space-7) 0 0;
}
.g-page-hero__title .g-text-accent { color: var(--purple-500); }
.g-page-hero__rule {
  display: block;
  width: 96px;
  height: 2px;
  margin-top: var(--space-8);
  background: var(--terracotta-400);
}
.g-page-hero__lead {
  margin: var(--space-7) 0 0;
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--text-muted);
  max-width: 520px;
}
.g-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.g-breadcrumb a { color: var(--text-accent); }
.g-breadcrumb a:hover { color: var(--terracotta-500); }
.g-breadcrumb svg { width: 14px; height: 14px; }

/* story: text + figure */
.g-story-section {
  position: relative;
  background:
    radial-gradient(70% 90% at 50% 24%, rgba(250, 240, 234, 0.78) 0%, transparent 50%),
    radial-gradient(80% 110% at 100% 35%, rgba(250, 240, 234, 0.64) 0%, transparent 56%),
    radial-gradient(80% 90% at 0% 70%, rgba(244, 239, 249, 0.72) 0%, transparent 52%),
    var(--neutral-0);
  padding-top: clamp(30px, 3.4vw, 54px);
  padding-bottom: clamp(34px, 4vw, 62px);
}
.g-story__inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(250px, 0.62fr) minmax(340px, 0.82fr);
  grid-template-areas:
    "copy figure quote"
    "copy metrics metrics";
  column-gap: clamp(28px, 3.4vw, 54px);
  row-gap: clamp(18px, 2.2vw, 30px);
  align-items: start;
}
.g-story__copy {
  grid-area: copy;
  align-self: start;
}
.g-story__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 3.8vw, 4.15rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--text-strong);
  margin: var(--space-4) 0 0;
  text-wrap: balance;
}
.g-story__copy .g-eyebrow::after,
.g-section__head--center .g-eyebrow::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: var(--space-4) auto 0;
  background: var(--terracotta-400);
}
.g-story__copy .g-eyebrow::after {
  margin-left: 0;
}
.g-story__text {
  margin: var(--space-5) 0 0;
  color: var(--text-body);
  line-height: 1.55;
  font-size: 0.88rem;
  max-width: 520px;
}
.g-story__text + .g-story__text { margin-top: var(--space-3); }
.g-story__pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(24px, 2.8vw, 38px);
  max-width: 100%;
}
.g-story-pillar {
  position: relative;
  min-width: 0;
  padding-inline: clamp(8px, 0.8vw, 14px);
  text-align: center;
}
.g-story-pillar:first-child { padding-left: 0; }
.g-story-pillar:last-child { padding-right: 0; }
.g-story-pillar:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 56px;
  right: 0;
  width: 1px;
  height: 38px;
  background: rgba(194, 97, 59, 0.22);
}
.g-story-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: var(--space-2);
  color: var(--purple-500);
}
.g-story-pillar__icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.65;
}
.g-story-pillar h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-label);
  font-size: clamp(0.56rem, 0.58vw, 0.66rem);
  font-weight: var(--weight-bold);
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: normal;
  text-wrap: balance;
  min-height: 2.7em;
}
.g-story-pillar p {
  margin: 0.32rem 0 0;
  color: var(--text-body);
  font-size: clamp(0.62rem, 0.64vw, 0.7rem);
  line-height: 1.34;
  text-wrap: balance;
  min-height: 2.68em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.g-story__figure {
  grid-area: figure;
  position: relative;
  overflow: visible;
  padding: 0;
  margin-top: clamp(46px, 5.2vw, 92px);
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}
.g-story__photo-halo {
  position: absolute;
  inset: -22px -42px -28px -52px;
  z-index: 0;
  border: 1.5px solid rgba(76, 29, 116, 0.72);
  border-left-color: rgba(194, 97, 59, 0.72);
  border-bottom-color: transparent;
  border-radius: 52% 44% 52% 46%;
  transform: rotate(-12deg);
}
.g-story__figure > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(310px, 31vw, 390px);
  object-fit: cover;
  object-position: center 18%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(28, 24, 56, 0.18);
}
.g-story__badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  min-width: min(94%, 280px);
  padding: 0.72rem 1rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: var(--weight-semibold);
  color: var(--purple-600);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(216, 143, 104, 0.18);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(28, 24, 56, 0.14);
  backdrop-filter: blur(10px);
}
.g-story__badge img { width: 21px; height: 21px; }
.g-story__quote {
  grid-area: quote;
  align-self: center;
  padding-top: clamp(10px, 1.8vw, 28px);
}
.g-story__quote-mark {
  width: 44px;
  height: 44px;
  color: var(--terracotta-300);
  stroke-width: 1.4;
  margin-bottom: var(--space-4);
}
.g-story__quote blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.05vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  text-wrap: balance;
}
.g-story__quote-rule {
  display: block;
  width: 70px;
  height: 2px;
  margin: var(--space-4) 0;
  background: var(--terracotta-400);
}
.g-story__quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.g-story__quote figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  color: var(--purple-500);
}
.g-story__quote figcaption span {
  font-family: var(--font-label);
  color: var(--text-muted);
  font-size: var(--text-sm);
}
.g-story__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--purple-500);
}
.g-story__link .g-ico {
  width: 30px;
  height: 30px;
  padding: 8px;
  border: 1px solid rgba(194, 97, 59, 0.55);
  border-radius: 999px;
  color: var(--terracotta-500);
}
.g-story__metrics {
  grid-area: metrics;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-self: end;
  justify-self: end;
  width: 100%;
  margin-top: -18px;
  padding: clamp(15px, 1.6vw, 21px) clamp(16px, 2vw, 26px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(76, 29, 116, 0.09);
  backdrop-filter: blur(12px);
}
.g-story-metric {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  min-width: 0;
  padding-inline: clamp(12px, 1.4vw, 20px);
  text-align: center;
}
.g-story-metric:first-child { padding-left: 0; }
.g-story-metric:last-child { padding-right: 0; }
.g-story-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 82%;
  background: rgba(194, 97, 59, 0.2);
}
.g-story-metric__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 999px;
  color: #fff;
  background: var(--purple-500);
  box-shadow: 0 12px 24px rgba(76, 29, 116, 0.18);
}
.g-story-metric__icon--accent {
  background: var(--terracotta-400);
  box-shadow: 0 12px 24px rgba(194, 97, 59, 0.18);
}
.g-story-metric__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}
.g-story-metric strong {
  display: block;
  color: var(--text-strong);
  font-size: clamp(0.98rem, 1.12vw, 1.16rem);
  line-height: 1.08;
  font-weight: var(--weight-bold);
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.g-story-metric p {
  margin: 0.36rem 0 0;
  color: var(--text-body);
  font-size: clamp(0.64rem, 0.68vw, 0.74rem);
  line-height: 1.34;
  text-wrap: balance;
  min-height: 2.68em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.g-story-metric strong { min-height: 1.08em; }

.g-about-band {
  padding-block: clamp(70px, 7vw, 112px);
}
.g-about-band .g-section__head {
  margin-bottom: clamp(34px, 4vw, 56px);
}
.g-about-band .g-section__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.g-values-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(72% 90% at 50% 7%, rgba(250, 240, 234, 0.78) 0%, transparent 56%),
    radial-gradient(70% 86% at 0% 55%, rgba(244, 239, 249, 0.62) 0%, transparent 48%),
    radial-gradient(62% 70% at 100% 58%, rgba(244, 239, 249, 0.58) 0%, transparent 52%),
    var(--neutral-0);
  padding-block: clamp(70px, 7vw, 112px);
}
.g-values-section > .g-container {
  position: relative;
  z-index: 1;
}
.g-values__head {
  max-width: 640px;
}
.g-values__head .g-eyebrow {
  position: relative;
  color: var(--terracotta-500);
}
.g-values__head .g-eyebrow::after {
  position: relative;
  width: 70px;
  margin-top: var(--space-4);
}
.g-values__head .g-eyebrow::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: calc(100% + var(--space-4) - 3px);
  z-index: 1;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--terracotta-400);
}
.g-values__head .g-section__title {
  max-width: 640px;
  margin-inline: auto;
  font-size: clamp(2.65rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.g-values__head .g-section__lead {
  max-width: 610px;
  margin-top: var(--space-5);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.5;
  color: var(--text-muted);
}
.g-values__head .g-section__title::after {
  content: "";
  display: inline-block;
  width: 0.12em;
  height: 0.12em;
  margin-left: 0.06em;
  border-radius: 999px;
  background: var(--terracotta-400);
  vertical-align: 0.08em;
}
.g-values__orb,
.g-values__dots {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.g-values__orb {
  border: 1px solid rgba(91, 54, 122, 0.22);
  border-radius: 999px;
}
.g-values__orb--left {
  left: -190px;
  top: -310px;
  width: 520px;
  height: 520px;
}
.g-values__orb--right {
  right: -95px;
  top: 154px;
  width: 320px;
  height: 520px;
  border-left-color: rgba(91, 54, 122, 0.14);
  border-bottom-color: transparent;
  transform: rotate(11deg);
}
.g-values__orb--right::before {
  content: "";
  position: absolute;
  left: 64px;
  top: 42px;
  width: 110px;
  height: 110px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(91, 54, 122, 0.08);
  box-shadow: inset 0 0 30px rgba(91, 54, 122, 0.04);
}
.g-values__dots {
  width: 126px;
  height: 78px;
  opacity: 0.52;
  background-image: radial-gradient(circle, rgba(91, 54, 122, 0.58) 1.35px, transparent 1.35px);
  background-size: 18px 18px;
}
.g-values__dots--left {
  left: -2px;
  top: 218px;
}
.g-values__dots--right {
  right: 74px;
  bottom: 140px;
}

/* mission / vision / values cards */
.g-mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 36px);
}
.g-mvv__card {
  position: relative;
  min-height: 230px;
  padding: clamp(30px, 3vw, 44px);
  background: var(--neutral-0);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(28, 24, 56, 0.07);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-standard);
}
.g-mvv__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-brand);
}
.g-mvv__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  color: var(--purple-500);
  margin-bottom: var(--space-4);
}
.g-mvv__icon svg { width: 26px; height: 26px; }
.g-mvv__card--accent .g-mvv__icon { background: var(--terracotta-50); border-color: var(--terracotta-100); color: var(--terracotta-500); }
.g-mvv__title { margin: 0; font-size: var(--text-xl); color: var(--text-strong); font-weight: var(--weight-bold); }
.g-mvv__text { margin: var(--space-3) 0 0; color: var(--text-muted); line-height: var(--leading-relaxed); font-size: var(--text-sm); }
.g-mvv--values .g-mvv__card {
  display: flex;
  flex-direction: column;
  min-height: clamp(238px, 18vw, 284px);
  padding: clamp(34px, 3.4vw, 48px);
}
.g-values-card__head {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.5vw, 22px);
}
.g-mvv--values .g-mvv__icon {
  flex: none;
  margin-bottom: 0;
}
.g-values-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 253, 251, 0.84));
  border-color: rgba(216, 143, 104, 0.16);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(76, 29, 116, 0.08), 0 1px 0 rgba(255,255,255,0.82) inset;
}
.g-values-card .g-mvv__icon {
  width: 72px;
  height: 72px;
  background: rgba(244, 232, 249, 0.72);
  border-color: rgba(91, 54, 122, 0.12);
  box-shadow: 0 14px 28px rgba(91, 54, 122, 0.08);
}
.g-values-card.g-mvv__card--accent .g-mvv__icon {
  background: rgba(250, 240, 234, 0.88);
  border-color: rgba(194, 97, 59, 0.14);
}
.g-values-card .g-mvv__icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.65;
}
.g-values-card .g-mvv__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 1.9vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.g-values-card .g-mvv__text {
  max-width: none;
  margin-top: clamp(20px, 1.8vw, 26px);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.55;
  color: var(--text-muted);
}
.g-values-card__rule { margin-top: auto; }
.g-values-card__rule {
  display: block;
  width: 68px;
  height: 2px;
  margin-top: clamp(24px, 2.2vw, 34px);
  background: var(--purple-500);
}
.g-values-card__rule--accent {
  background: var(--terracotta-400);
}

/* condensed method strip */
.g-about-method-section {
  background: linear-gradient(90deg, #fffefd 0%, #fbf8fc 100%);
}
.g-mini-method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 42px);
  counter-reset: step;
  position: relative;
}
.g-mini-method__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-standard);
}
.g-mini-method__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-default);
}
.g-mini-method__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 52px;
  height: 2px;
  background: var(--terracotta-300);
  z-index: 1;
}
.g-mini-method__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta-400);
  transform: translateY(-50%);
  z-index: 2;
}
.g-mini-method__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--purple-50);
  color: var(--purple-500);
  border: 1px solid var(--purple-100);
  margin-bottom: var(--space-5);
}
.g-mini-method__icon--accent {
  background: var(--terracotta-50);
  color: var(--terracotta-500);
  border-color: var(--terracotta-100);
}
.g-mini-method__icon svg { width: 28px; height: 28px; }
.g-mini-method__num {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--terracotta-400);
  line-height: 1;
}
.g-mini-method__name {
  margin: var(--space-3) 0;
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text-strong);
}
.g-mini-method__text {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
}

.g-about-cta .g-cta__inner {
  display: grid;
  grid-template-columns: auto minmax(280px, 620px);
  column-gap: clamp(36px, 5vw, 82px);
  align-items: center;
  max-width: 980px;
  text-align: left;
}
.g-about-cta .g-cta__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.g-about-cta__icon {
  grid-row: 1 / span 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(110px, 12vw, 150px);
  height: clamp(110px, 12vw, 150px);
  border-radius: 999px;
  color: var(--terracotta-300);
  background: radial-gradient(circle at 50% 50%, rgba(194,97,59,0.35), rgba(255,255,255,0.06) 58%, transparent 59%);
  border: 1px solid rgba(194, 97, 59, 0.48);
}
.g-about-cta__icon svg {
  width: 52px;
  height: 52px;
}
.g-about-cta .g-cta__text {
  margin-left: 0;
}
.g-about-cta .g-cta__actions {
  justify-content: flex-start;
}

@media (max-width: 980px) {
  .g-page-hero__inner {
    margin-left: clamp(48px, 8vw, 110px);
  }
  .g-story__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    grid-template-areas:
      "copy figure"
      "quote quote"
      "metrics metrics";
  }
  .g-story__quote {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: var(--space-5);
    align-items: start;
    padding-top: 0;
  }
  .g-story__quote blockquote,
  .g-story__quote figcaption,
  .g-story__quote .g-story__link {
    grid-column: 2;
  }
  .g-story__quote-rule {
    grid-column: 2;
  }
  .g-story__quote-mark {
    grid-row: 1 / span 4;
    margin-bottom: 0;
  }
  .g-story__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: var(--space-6);
    width: 100%;
  }
  .g-story-metric:nth-child(2)::after {
    display: none;
  }
  .g-story-metric:nth-child(odd) {
    padding-left: 0;
  }
  .g-story-metric:nth-child(even) {
    padding-right: 0;
  }
  .g-mini-method {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
  .g-mini-method__item::before,
  .g-mini-method__item::after {
    display: none;
  }
}
@media (max-width: 860px) {
  .g-page-hero {
    min-height: auto;
  }
  .g-page-hero__inner {
    margin-left: 0;
  }
  .g-page-hero__mark {
    right: -80px;
    top: 110px;
    width: 360px;
  }
  .g-page-hero__dots {
    right: 24px;
    bottom: 32px;
  }
  .g-story__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "figure"
      "quote"
      "metrics";
    gap: var(--space-8);
  }
  .g-story__figure {
    max-width: 480px;
    margin-inline: auto;
    margin-top: 0;
  }
  .g-story__quote {
    display: block;
  }
  .g-story__quote-mark {
    margin-bottom: var(--space-4);
  }
  .g-story__metrics {
    margin-top: 0;
  }
  .g-mvv { grid-template-columns: 1fr; }
  .g-values__head .g-section__title {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }
  .g-values__orb--left {
    left: -260px;
    top: -300px;
  }
  .g-values__orb--right,
  .g-values__dots {
    display: none;
  }
  .g-about-cta .g-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .g-about-cta__icon {
    grid-row: auto;
    margin-inline: auto;
    margin-bottom: var(--space-5);
  }
  .g-about-cta .g-cta__text {
    margin-inline: auto;
  }
  .g-about-cta .g-cta__actions {
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .g-mini-method {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .g-mini-method__item {
    padding: var(--space-6) var(--space-5);
  }
  .g-page-hero__dots {
    display: none;
  }
  .g-page-hero__title {
    font-size: clamp(2.7rem, 13vw, 3.6rem);
  }
  .g-story__title {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }
  .g-values__head .g-section__title {
    font-size: clamp(2.85rem, 13vw, 3.75rem);
  }
  .g-values__head .g-section__lead {
    font-size: 1rem;
  }
  .g-mvv--values .g-mvv__card {
    min-height: auto;
    padding: var(--space-7);
  }
  .g-values-card .g-mvv__icon {
    width: 62px;
    height: 62px;
  }
  .g-values-card .g-mvv__text {
    margin-top: var(--space-4);
  }
  .g-story__pillars,
  .g-story__metrics {
    grid-template-columns: 1fr 1fr;
  }
  .g-story-pillar:nth-child(2)::after {
    display: none;
  }
  .g-story-pillar {
    padding-block: var(--space-3);
  }
  .g-story-pillar:first-child,
  .g-story-pillar:last-child {
    padding-inline: clamp(10px, 1.1vw, 18px);
  }
  .g-story__figure {
    padding: 0;
  }
  .g-story__badge {
    max-width: calc(100% - 28px);
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
  .g-story__metrics {
    padding: var(--space-5);
  }
  .g-story-metric,
  .g-story-metric:nth-child(odd),
  .g-story-metric:nth-child(even) {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-inline: var(--space-3);
  }
  .g-story-metric:not(:last-child)::after {
    display: none;
  }
}

/* ---------------------------------------- reduced motion: kill new motion */
@media (prefers-reduced-motion: reduce) {
  .g-js body { animation: none; }
  .g-js body.g-leaving { opacity: 1; transition: none; }
  [data-parallax] { transform: none !important; }
  .g-specialist__photo, .g-mvv__card, .g-mini-method__item, .g-specialist__link, .g-stat { transition: none; }
}
