/*
Theme Name: Slonky
Theme URI: https://slonky.com
Author: Slonky, LLC
Author URI: https://slonky.com
Description: Custom WordPress theme for Slonky — Webcraft for World-Changers. A neon-punk editorial design featuring bold Bebas Neue headlines, DM Sans body text, and a pink/yellow/black color palette.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: Private — All Rights Reserved
License URI: https://slonky.com
Text Domain: slonky
Tags: custom-logo, one-column, portfolio, custom-menu
*/
/* ============================================================
   SLONKY.COM — Neon-Punk Editorial Design System
   ============================================================ */

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --pink:     #EE2C82;
  --yellow:   #DFFF00;
  --black:    #000000;
  --off-white: #FAFAFA;
  --cream:    #FCFBE3;
  --charcoal: #333333;
  --mid-gray: #888888;
  --light-gray: #E8E8E8;

  --font-headline: 'Bebas Neue', 'Anton', Impact, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;

  --nav-height: 72px;
  --max-width: 1280px;
  --section-pad: clamp(60px, 8vw, 120px);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight {
  display: inline;
  padding: 0 4px 2px;
  line-height: 1.2;
}
.highlight--pink  { background: var(--pink); color: #fff; }
.highlight--yellow { background: var(--yellow); color: var(--black); }
.highlight--black { background: var(--black); color: #fff; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border: 3px solid currentColor;
  transition: background 0.18s, color 0.18s, transform 0.14s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn--pink  { background: var(--pink); color: #fff; border-color: var(--pink); }
.btn--pink:hover  { background: #d01e6e; border-color: #d01e6e; }
.btn--black { background: var(--black); color: #fff; border-color: var(--black); }
.btn--black:hover { background: #222; border-color: #222; }
.btn--outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline:hover { background: var(--black); color: #fff; }
.btn--full { width: 100%; text-align: center; }

/* ── SITE HEADER ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--pink);
  transition: background 0.3s;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 38px;
  width: auto;
  /* Logo has yellow+pink brand colors — show as-is on dark nav */
  filter: none;
  border-radius: 2px;
}

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── FULLSCREEN MENU OVERLAY ─────────────────────────────── */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  z-index: 950;
  background: var(--pink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(40px, 8vw, 100px);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.menu-overlay.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  z-index: 960;
  padding: 8px;
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.3s 0.3s, transform 0.3s 0.3s;
}
.menu-overlay.open .menu-close {
  opacity: 1;
  transform: rotate(0deg);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-link {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateX(-40px);
  transition: transform 0.4s, opacity 0.4s, color 0.15s;
  display: block;
}
.menu-overlay.open .menu-link:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.menu-overlay.open .menu-link:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
.menu-overlay.open .menu-link:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
.menu-overlay.open .menu-link:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }
.menu-overlay.open .menu-link:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
.menu-link:hover { color: var(--yellow); }

.menu-footer-info {
  position: absolute;
  bottom: 40px;
  left: clamp(40px, 8vw, 100px);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s 0.4s;
}
.menu-overlay.open .menu-footer-info { opacity: 1; }

/* ── MAIN / PAGES ────────────────────────────────────────── */
#app { padding-top: var(--nav-height); }

.page { display: block; }
.page[hidden] { display: none !important; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 24px;
}
.section--white  { background: var(--off-white); }
.section--black  { background: var(--black); color: #fff; }
.section--cream  { background: var(--cream); }
.section--pink   { background: var(--pink); color: #fff; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #111;
  overflow: hidden;
}

/* Grain texture via SVG data URI */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.hero__pink-border {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 6px;
  background: var(--pink);
  z-index: 5;
}

.hero__yellow-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
  z-index: 5;
}

/* GIF background image for hero */
.hero__bg-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.45;
  filter: contrast(1.1) brightness(0.9);
}

/* Dark overlay on top of GIF so text is legible */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.65) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(238,44,130,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(223,255,0,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* HOME HERO */
.hero--home {
  background: #0a0a0a;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(32px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
}

.hero__eyebrow {
  color: var(--yellow);
  margin-bottom: 16px;
}

.hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.92;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

/* INNER PAGE HERO */
.hero--inner {
  min-height: 52vh;
  justify-content: flex-end;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(238,44,130,0.15) 0%, transparent 50%),
    #0a0a0a;
}

.hero__inner-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 6vw, 80px) 60px;
}

.hero__subtext {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  max-width: 540px;
  font-weight: 300;
}

/* PODCAST BOX */
.hero__podcast-box {
  background: rgba(238,44,130,0.12);
  border: 1.5px solid var(--pink);
  padding: 28px 28px 24px;
  width: 260px;
  flex-shrink: 0;
  position: relative;
}
.podcast-box__label {
  color: var(--pink);
  font-size: 0.65rem;
  margin-bottom: 12px;
}
.podcast-box__title {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}


/* PODCAST PLAYER */
.podcast-box__player {
  display: flex;
  align-items: center;
  gap: 12px;
}
.podcast-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  padding: 0;
  line-height: 1;
}
.podcast-play-btn:hover {
  background: var(--yellow);
  color: var(--black);
}
.podcast-progress-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.podcast-progress-bar {
  height: 100%;
  background: var(--yellow);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.podcast-time {
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  min-width: 32px;
  text-align: right;
}

/* SCROLL CTA */
.hero__scroll-cta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ── IMPACT SECTION ──────────────────────────────────────── */
.impact-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.impact__headline {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.impact__body {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.75;
}

/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 2px solid var(--black);
}

.value-item {
  padding: 24px 20px;
  border: 1px solid var(--light-gray);
  background: var(--off-white);
  transition: background 0.2s;
  position: relative;
}
.value-item:hover { background: var(--cream); }
.value-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--pink);
  transition: height 0.3s;
}
.value-item:hover::before { height: 100%; }

.value-item__number {
  color: var(--pink);
  font-size: 0.7rem;
  margin-bottom: 8px;
}
.value-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--charcoal);
}

/* ── TESTIMONIAL SECTION ─────────────────────────────────── */
.testimonial-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
}

.testimonial__photo-wrap {
  flex-shrink: 0;
}
.testimonial__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--pink);
  filter: grayscale(20%);
}

.testimonial__content {
  position: relative;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--pink);
  margin-bottom: 16px;
  display: block;
}
.testimonial__quote {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}
.testimonial__attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial__name {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
}
.testimonial__title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ── RIPPLE SECTION ──────────────────────────────────────── */
.ripple-section__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.ripple-section__label {
  color: var(--pink);
  margin-bottom: 16px;
  display: block;
}
.ripple__headline {
  font-family: var(--font-headline);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--black);
  margin-bottom: 0;
}
.ripple__body {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--charcoal);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}
/* Pink butterfly in ripple section — positioned left of headline */
.ripple__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.ripple__pink-butterfly {
  flex-shrink: 0;
}
.ripple__pink-butterfly img {
  width: 140px;
  filter: drop-shadow(0 4px 24px rgba(238,44,130,0.25));
}



/* ── LOGO TICKER ─────────────────────────────────────────── */
.ticker-section__header {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0;
}
.ticker__headline {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--black);
  line-height: 1;
}
.ticker__subhead {
  color: var(--mid-gray);
  margin-top: 6px;
}

.ticker-section {
  background: #FF6BA9;
}
.ticker__headline {
  color: #fff;
}
.ticker__subhead {
  color: rgba(255,255,255,0.7);
}
.ticker-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  border-top: 2px solid rgba(255,255,255,0.25);
  border-bottom: 2px solid rgba(255,255,255,0.25);
  padding: 20px 0;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, #FF6BA9, transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, #FF6BA9, transparent); }

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker-item img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.ticker-section__cta {
  max-width: var(--max-width);
  margin: 40px auto 0;
}
.ticker-section__cta .btn--outline {
  color: #fff;
  border-color: #fff;
}
.ticker-section__cta .btn--outline:hover {
  background: #fff;
  color: var(--pink);
}

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 2px solid var(--black);
}

.service-card {
  padding: clamp(24px, 3vw, 40px);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { background: #fff; }
.service-card:hover::after { transform: scaleX(1); }

.service-card__number {
  color: var(--pink);
  font-size: 0.7rem;
  margin-bottom: 12px;
}
.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--black);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.65;
}

/* ── PROCESS SECTION ─────────────────────────────────────── */
.process-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.process__label {
  color: var(--pink);
  display: block;
  margin-bottom: 12px;
}
.process__headline {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 7vw, 6rem);
  color: #fff;
  line-height: 0.95;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.process-step {
  padding: 32px 24px;
  border-left: 3px solid #222;
  position: relative;
  transition: border-color 0.3s;
}
.process-step:hover { border-color: var(--pink); }
.process-step:first-child { border-left-color: var(--pink); }

.process-step__num {
  font-family: var(--font-headline);
  font-size: 4rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.process-step:hover .process-step__num { color: rgba(238,44,130,0.2); }

.process-step__content h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.process-step__content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band__inner h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about__headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 28px;
}
.about-section__left p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 2px solid var(--black);
  position: sticky;
  top: 100px;
}
.stat-item {
  padding: 32px 24px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
}
.stat-num {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--pink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--mid-gray);
  letter-spacing: 0.08em;
}

/* ── DIFFERENTIATORS ─────────────────────────────────────── */
.diff-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.diff__label {
  color: var(--pink);
  display: block;
  margin-bottom: 12px;
}
.diff__headline {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--black);
  line-height: 0.95;
  margin-bottom: 60px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.diff-card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--light-gray);
  position: relative;
}
.diff-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--pink);
}
.diff-card__accent--yellow { background: var(--yellow); }

.diff-card__title {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  margin-top: 8px;
}
.diff-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
}

/* ── CULTURE SECTION ─────────────────────────────────────── */
.culture-section__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.culture-quote__mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  color: var(--pink);
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
}
.culture-quote__text {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}
.culture-quote__bar {
  width: 60px;
  height: 4px;
  background: var(--yellow);
  margin: 0 auto;
}

/* ── PARTNERS GRID ───────────────────────────────────────── */
.partners-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.partners-section__intro {
  max-width: 640px;
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  border: 2px solid var(--black);
}

.partner-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.partner-card:hover { background: #fff; transform: translateY(-2px); }

.partner-card__logo {
  width: 110px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.partner-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.25s;
}
.partner-card:hover .partner-card__logo img { filter: grayscale(0%); }

.partner-card__info h3 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.partner-card__info p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.4;
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact__headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--black);
  line-height: 1;
  margin-bottom: 40px;
}

/* FORM STYLES */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.req { color: var(--pink); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  background: #fff;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 14px 20px;
  font-size: 0.95rem;
  border-left: 4px solid #28a745;
}

/* CONTACT INFO SIDE */
.contact-info {
  padding-top: 8px;
}
.contact-info__block {
  margin-bottom: 36px;
}
.contact-info__label {
  color: var(--pink);
  margin-bottom: 8px;
  display: block;
}
.contact-info__value {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.5;
}
a.contact-info__value:hover { color: var(--pink); }
.contact-info__tagline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--black);
  line-height: 1;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 4px solid var(--pink);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: #fff;
  padding: 64px 24px 32px;
  border-top: 4px solid var(--pink);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #222;
}

.footer__logo {
  height: 38px;
  width: auto;
  /* Show logo brand colors on black footer background */
  filter: none;
  margin-bottom: 20px;
  border-radius: 2px;
}
.footer__tagline {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--yellow);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.footer-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--pink); }

.footer__contact {
  padding-top: 8px;
}
.footer__contact-label {
  color: var(--pink);
  margin-bottom: 10px;
  display: block;
}
.footer__email {
  font-size: 1rem;
  color: var(--yellow);
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer__email:hover { color: #fff; }
.footer__location {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}



.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__built {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

/* ── SCROLL REVEAL ANIMATIONS ────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .diff-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .impact-section__inner { grid-template-columns: 1fr; }
  .about-section__inner  { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__content {
    grid-template-columns: 1fr;
  }
  .hero__podcast-box { width: 100%; max-width: 340px; }
  .testimonial-section__inner { flex-direction: column; }
  .about-stats { position: static; }
}

@media (max-width: 640px) {
  :root { --section-pad: 48px; }

  .services-grid { grid-template-columns: 1fr; border: none; gap: 0; }
  .service-card { border-left: 3px solid var(--pink); border-right: none; border-top: none; }
  .service-card:first-child { border-top: 1px solid var(--light-gray); }

  .process-steps { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }

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

  .form-row { grid-template-columns: 1fr; }

  .partners-grid { grid-template-columns: 1fr; }

  .hero__content { padding: 0 24px; }
  .hero__headline { font-size: clamp(3rem, 14vw, 6rem); }
}

/* ── PAGE TRANSITION ─────────────────────────────────────── */
.page {
  animation: page-in 0.35s ease forwards;
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TRUST STATS BAR ────────────────────────────────────── */
.trust-stats-bar {
  padding: 40px 24px;
  background: var(--black);
  border-bottom: 3px solid var(--pink);
}
.trust-stats-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-stat__num {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--pink);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-stat__label {
  font-size: 0.78rem;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── VERTICALS / WHO WE SERVE ───────────────────────────── */
.verticals-section {
  border-top: 3px solid var(--yellow);
}
.verticals-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.verticals__label {
  color: var(--pink);
  margin-bottom: 12px;
}
.verticals__headline {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 20px;
}
.verticals__intro {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 48px;
}
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
}
.vertical-card {
  text-align: center;
  padding: 32px 16px;
  border: 2px solid var(--light-gray);
  transition: border-color 0.2s, transform 0.2s;
}
.vertical-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
}
.vertical-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--pink);
}
.vertical-card h3 {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.vertical-card p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.55;
}

/* ── FEATURED WORK ──────────────────────────────────────── */
.featured-work-section {
  background: var(--black);
}
.featured-work__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.featured-work__label {
  color: var(--pink);
  margin-bottom: 12px;
}
.featured-work__headline {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 48px;
}
.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}
.work-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px;
  position: relative;
  transition: background 0.2s;
}
.work-card:hover {
  background: rgba(255,255,255,0.07);
}
.work-card__accent {
  width: 40px;
  height: 4px;
  background: var(--pink);
  margin-bottom: 20px;
}
.work-card__accent--yellow {
  background: var(--yellow);
}
.work-card__partner {
  color: var(--pink);
  margin-bottom: 10px;
  font-size: 0.7rem;
}
.work-card__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.work-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}
.work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  border-radius: 2px;
}
.featured-work__cta {
  margin-top: 48px;
  text-align: center;
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

/* ── RESPONSIVE: NEW SECTIONS ───────────────────────────── */
@media (max-width: 768px) {
  .trust-stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .verticals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .featured-work-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }
}

/* Work card links — equal height */
.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  align-items: stretch;
}
.work-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.work-card-link .work-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card-link:hover .work-card {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(238, 44, 130, 0.15);
}
.work-card__desc {
  flex: 1 1 auto;
}
/* ── GRAVITY FORMS THEME OVERRIDES ──────────────────────── */
.contact-form-wrap .gform_wrapper {
  margin: 0;
}
.contact-form-wrap .gform_wrapper input[type="text"],
.contact-form-wrap .gform_wrapper input[type="email"],
.contact-form-wrap .gform_wrapper input[type="tel"],
.contact-form-wrap .gform_wrapper select,
.contact-form-wrap .gform_wrapper textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  background: #fff;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  width: 100%;
}
.contact-form-wrap .gform_wrapper input:focus,
.contact-form-wrap .gform_wrapper select:focus,
.contact-form-wrap .gform_wrapper textarea:focus {
  border-color: var(--pink);
}
.contact-form-wrap .gform_wrapper textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form-wrap .gform_wrapper .gfield_label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.contact-form-wrap .gform_wrapper .gfield_required {
  color: var(--pink);
}
.contact-form-wrap .gform_wrapper .gform_button,
.contact-form-wrap .gform_wrapper input[type="submit"] {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border: 3px solid var(--pink);
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background 0.18s, transform 0.14s;
  border-radius: 0;
}
.contact-form-wrap .gform_wrapper .gform_button:hover,
.contact-form-wrap .gform_wrapper input[type="submit"]:hover {
  background: #d01e6e;
  border-color: #d01e6e;
  transform: translateY(-2px);
}
.contact-form-wrap .gform_wrapper .gform_confirmation_message {
  background: #d4edda;
  color: #155724;
  padding: 14px 20px;
  font-size: 0.95rem;
  border-left: 4px solid #28a745;
}
