/* ==========================================================================
   Growth Firstly — Design System
   Additive token + primitive layer. Enqueue before ogf-redesign.
   Do not rename ACF-driven markup or Slick/tab hook classes.
   ========================================================================== */

:root {
  /* Ink & surfaces */
  --gf-black: #08080a;
  --gf-obsidian: #050507;
  --gf-dark-surface: #101014;
  --gf-dark-card: #15161c;
  --gf-dark-hover: #1c1d26;
  --gf-dark-border: rgba(255, 255, 255, 0.1);
  --gf-dark-border-strong: rgba(255, 255, 255, 0.18);

  --gf-yellow: #ffcc00;
  --gf-yellow-bright: #ffd600;
  --gf-yellow-hover: #e6b800;
  --gf-yellow-deep: #9a7b00;
  --gf-yellow-glow: rgba(255, 204, 0, 0.35);
  --gf-yellow-subtle: rgba(255, 204, 0, 0.08);

  --gf-white: #ffffff;
  --gf-mist: #f7f8fa;
  --gf-surface: #ffffff;
  --gf-surface-subtle: #f1f5f9;
  --gf-paper: #f7f8fa;

  --gf-ink: #08080a;
  --gf-ink-muted: #5c6570;
  --gf-ink-light: #94a3b8;
  --gf-border: rgba(12, 12, 14, 0.1);

  /* Type */
  --font-display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Space scale */
  --gf-space-1: 0.25rem;
  --gf-space-2: 0.5rem;
  --gf-space-3: 0.75rem;
  --gf-space-4: 1rem;
  --gf-space-5: 1.5rem;
  --gf-space-6: 2rem;
  --gf-space-7: 3rem;
  --gf-space-8: 4.5rem;
  --gf-section: clamp(3.5rem, 7vw, 6.5rem);

  /* Editorial radius — sharp, not pill-default */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  /* Elevation — restrained */
  --shadow-sm: 0 1px 0 rgba(8, 8, 10, 0.04);
  --shadow-md: 0 12px 32px -16px rgba(8, 8, 10, 0.18);
  --shadow-lg: 0 24px 48px -20px rgba(8, 8, 10, 0.28);
  --shadow-glow: 0 10px 28px rgba(255, 204, 0, 0.28);

  /* Motion */
  --gf-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-app: var(--gf-ease);
  --transition: 0.35s var(--gf-ease);

  --container-width: 1360px;
}

/* Skip link */
.gf-skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10000;
  padding: 0.7rem 1.1rem;
  background: var(--gf-yellow);
  color: var(--gf-black);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.gf-skip:focus {
  top: 1rem;
  outline: 2px solid var(--gf-ink);
  outline-offset: 2px;
}

/* Focus */
:where(a, button, input, textarea, select, .gf-btn, .call__schedule--btn):focus-visible {
  outline: 2px solid var(--gf-yellow);
  outline-offset: 3px;
}

/* Eyebrow / index / section head primitives */
.gf-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gf-yellow-deep);
}

.gf-index {
  flex: 0 0 auto;
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gf-ink);
  background: var(--gf-yellow);
  padding: 0.4rem 0.6rem;
  line-height: 1;
  border-radius: var(--radius-sm);
}

.gf-section-head,
.gf-band__intro {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.gf-lede,
.gf-band__lede {
  margin: 0.55rem 0 0;
  max-width: 46ch;
  color: var(--gf-ink-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 500;
}

.gf-band {
  position: relative;
  padding: var(--gf-section) 0;
}

/* Buttons */
.gf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.35s var(--gf-ease),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.gf-btn--primary,
.gf-btn--appinventiv {
  background: var(--gf-yellow);
  color: var(--gf-ink) !important;
  box-shadow: var(--shadow-glow);
}

.gf-btn--primary:hover,
.gf-btn--appinventiv:hover {
  background: var(--gf-yellow-bright);
  transform: translateY(-2px);
}

.gf-btn--dark {
  background: var(--gf-ink);
  color: #fff !important;
}

.gf-btn--dark:hover {
  background: var(--gf-yellow);
  color: var(--gf-ink) !important;
}

.gf-btn--ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28);
}

.gf-btn--ghost:hover {
  border-color: #fff;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
