/*
Theme Name: Vivid Imagination Partners
Theme URI: https://vividimaginationpartners.com
Author: Soteria Digital
Description: Custom WordPress theme for Vivid Imagination Partners — a boutique strategic communications and public affairs firm.
Version: 1.0.0
Text Domain: vivid-imagination
*/


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  color: #FFFFFF;
  background: #231E1E;
  overflow-x: hidden;
  line-height: 1.3;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ----- DESIGN TOKENS ----- */
:root {
  --yellow: #F4D617;
  --pink: #E64480;
  --dark-1: #231E1E;
  --dark-2: #000000;
  --maroon: #816670;
  --grey: #696667;
  --white: #FFFFFF;
  --body-text: rgba(255, 255, 255, 0.65);

  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --container-max: 1280px;
  --container-padding: var(--space-md);

  --shadow-offset: var(--space-xs);

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 36px;
  --space-lg: 80px;
  --space-xl: 120px;
  --space-2xl: 150px;

  /* Typography scale */
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2.25rem;
  --text-3xl: 3rem;
  --text-4xl: 3.75rem;
  --text-5xl: 5rem;
  --text-hero: 6.5rem;
}

/* ----- TYPOGRAPHY ----- */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.1;
  font-weight: 800;
}

h1 {
  font-size: var(--text-hero);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--text-md);
  font-weight: 500;
}

p {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.25;
}

/* ----- LAYOUT ----- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-lg) 0;
  position: relative;
}

.section-lg {
  padding: var(--space-2xl) 0;
}

/* ----- SECTION TAG ----- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--pink);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

/* ----- SECTION HEADLINE ----- */
.section-headline {
  max-width: 600px;
  margin-bottom: 32px;
}

/* ----- SECTION BODY ----- */
.section-body {
  max-width: 640px;
  font-size: var(--text-base);
  margin-bottom: 32px;
}

/* ----- SECTION LINK ----- */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--white);
  font-weight: 400;
  font-size: 0.9375rem;
  transition: gap 0.3s ease;
}

.section-link:hover {
  gap: 14px;
  color: var(--yellow);
}

/* ----- BUTTONS (BRUTALIST) ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark-1);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--dark-2);
}

.btn-primary:hover {
  transform: translate(var(--shadow-offset), var(--shadow-offset));
  box-shadow: 0 0 0 var(--dark-2);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn i {
  font-size: var(--text-xl);
  transition: transform 0.2s ease;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  transform: translate(var(--shadow-offset), var(--shadow-offset));
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
}

/* Large button — used for hero CTA, about CTA, section CTA, etc. */
.btn-lg {
  font-size: var(--text-lg);
  padding: 18px 48px;
}

.btn-lg i {
  font-size: var(--text-xl);
}

.circle-arrow-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 0;
}

.circle-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ----- FEATURED HEADLINE GROUP ----- */
.about-left .section-headline,
.founder-name,
#testimonials .section-headline {
  font-size: var(--text-4xl);
}


#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-svg {
  width: 271px;
  max-width: 85vw;
  height: auto;
  overflow: visible !important;
}

.preloader-vivid {
  opacity: 0;
  animation: wordReveal 1s ease forwards 0.3s, dissolveLogo 0.3s ease forwards 3.0s;
}

.preloader-imagination {
  opacity: 0;
  animation: wordReveal 1s ease forwards 0.7s, dissolveLogo 0.3s ease forwards 3.0s;
}

.preloader-partners {
  opacity: 0;
  animation: wordReveal 1s ease forwards 1.1s, dissolveLogo 0.3s ease forwards 3.0s;
}

.preloader-arrow {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: arrowSequence 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2.5s;
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dissolveLogo {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes arrowSequence {
  0% {
    opacity: 0;
    transform: translateY(-80px) scale(0.6);
  }

  20% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  35% {
    opacity: 1;
    transform: translateY(0) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(350);
  }
}

#hero {
  position: relative;
  min-height: 100vh;
  background: #EF5790;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-plexus {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  pointer-events: none;
  opacity: 0.4;
}

.plexus-svg {
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='1512' height='821' viewBox='0 0 1512 821' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3220_170)'%3E%3Cpath d='M1209.04 1294.79L-60.948 419.22L1385.07 256.259L1320.78 731.114L1209.04 1294.79Z' stroke='%23F4D617'/%3E%3Cpath d='M787.605 321.916L2119.1 540.222L1033.58 1210.09L908.276 810.043L787.605 321.916Z' stroke='%23F4D617'/%3E%3Cpath d='M1392.18 253.748L333.791 1090.61L570.117 -162.874L933.762 0.0879079L1392.18 253.748Z' stroke='%23F4D617'/%3E%3Cpath d='M835.001 -73.6905L678.36 1266.45L-40.8802 212.998L391.855 63.5098L835.001 -73.6905Z' stroke='%23F4D617'/%3E%3Cpath d='M-143.173 85.2627L1635.94 869.565L-119.974 1413.11L-142.243 753.747L-143.173 85.2627Z' stroke='%23F4D617'/%3E%3Ccircle cx='478.759' cy='356.718' r='11.5' transform='rotate(-143.333 478.759 356.718)' fill='%23F4D617' stroke='%23F4D617'/%3E%3Ccircle cx='67.7904' cy='177.791' r='11.5' transform='rotate(-143.333 67.7904 177.791)' fill='%23F4D617' stroke='%23F4D617'/%3E%3Ccircle cx='541.783' cy='13.7145' r='11.5' transform='rotate(-143.333 541.783 13.7145)' fill='%23F4D617' stroke='%23F4D617'/%3E%3Ccircle cx='867.783' cy='668.714' r='11.5' transform='rotate(-143.333 867.783 668.714)' fill='%23F4D617' stroke='%23F4D617'/%3E%3Ccircle cx='785.759' cy='322.718' r='11.5' transform='rotate(-143.333 785.759 322.718)' fill='%23F4D617' stroke='%23F4D617'/%3E%3Ccircle cx='1384.78' cy='254.714' r='11.5' transform='rotate(-143.333 1384.78 254.714)' fill='%23F4D617' stroke='%23F4D617'/%3E%3Ccircle cx='253.787' cy='634.714' r='11.5' transform='rotate(-143.333 253.787 634.714)' fill='%23F4D617' stroke='%23F4D617'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3220_170'%3E%3Crect width='1512' height='821' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: plexusPulse 10s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes plexusPulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.03);
  }
}

/* ----- NAV ----- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 50px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
  background: rgba(35, 30, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  max-width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-lg);
  color: var(--white);
  position: relative;
  transition: font-weight 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  font-weight: 800;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 20px;
  font-size: var(--text-lg);
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: var(--space-xs);
  box-sizing: content-box;
  cursor: pointer;
  z-index: 1001;
}

.nav-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--dark-1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: right 0.4s ease;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: var(--container-max);
  margin: 0px auto;
  padding: var(--space-2xl) var(--container-padding) var(--space-xl);
  position: relative;
  z-index: 2;
}

.hero-headline {
  color: var(--dark-1);
  margin-bottom: var(--space-sm);
  padding-top: 40px;
}

.hero-subtitle {
  max-width: 750px;
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--dark-1);
  margin-bottom: var(--space-sm);
}

.hero-cta {
  font-size: var(--text-xl);
  padding: 18px 60px;
}

.hero-cta i {
  font-size: 1.75rem;
}

#about-section {
  background: var(--dark-1);
  overflow: hidden;
}

.about-geo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 48%;
  max-width: 733px;
  pointer-events: none;
  opacity: 0.5;
}

.about-geo svg {
  width: 100%;
  height: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-left {
  position: relative;
  z-index: 1;
}

.about-left .section-headline {
  max-width: 450px;
}

.about-right {
  position: relative;
  z-index: 1;
}

.about-body {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.about-highlight {
  font-weight: 700;
  color: var(--pink);
}

.about-cta {
  margin-top: var(--space-sm);
}

#how-we-work {
  background: var(--dark-2);
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px;
}

.brand-card {
  background: var(--dark-1);
  border: 1px solid var(--grey);
  border-radius: 5px;
  padding: 50px 54px 50px 70px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.brand-card-title {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0;
}

.brand-card-body {
  font-size: var(--text-base);
  font-weight: 400;
  color: #FFE4EE;
  line-height: 1.5;
}

.icon-bold-idea {
  position: relative;
  width: 80px;
  height: 80px;
}

.bold-sq {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--yellow);
}

.bold-sq-a {
  animation: boldSqA 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.bold-sq-b {
  animation: boldSqB 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.bold-sq-c {
  animation: boldSqC 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.bold-sq-d {
  animation: boldSqD 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes boldSqA {

  0%,
  5% {
    left: 14.5px;
    top: 14.5px;
  }

  12% {
    left: 0;
    top: 0;
  }

  28% {
    left: 0;
    top: 0;
  }

  36% {
    left: 44px;
    top: 0;
  }

  60% {
    left: 44px;
    top: 0;
  }

  75% {
    left: 29.5px;
    top: 14.5px;
  }

  100% {
    left: 29.5px;
    top: 14.5px;
  }
}

@keyframes boldSqB {

  0%,
  5% {
    left: 29.5px;
    top: 14.5px;
  }

  12% {
    left: 44px;
    top: 0;
  }

  20% {
    left: 44px;
    top: 0;
  }

  28% {
    left: 44px;
    top: 22px;
  }

  52% {
    left: 44px;
    top: 22px;
  }

  60% {
    left: 44px;
    top: 44px;
  }

  75% {
    left: 29.5px;
    top: 29.5px;
  }

  100% {
    left: 29.5px;
    top: 29.5px;
  }
}

@keyframes boldSqC {

  0%,
  5% {
    left: 14.5px;
    top: 29.5px;
  }

  12% {
    left: 0;
    top: 44px;
  }

  36% {
    left: 0;
    top: 44px;
  }

  44% {
    left: 0;
    top: 0;
  }

  60% {
    left: 0;
    top: 0;
  }

  75% {
    left: 14.5px;
    top: 14.5px;
  }

  100% {
    left: 14.5px;
    top: 14.5px;
  }
}

@keyframes boldSqD {

  0%,
  5% {
    left: 29.5px;
    top: 29.5px;
  }

  12% {
    left: 44px;
    top: 44px;
  }

  44% {
    left: 44px;
    top: 44px;
  }

  52% {
    left: 0;
    top: 44px;
  }

  60% {
    left: 0;
    top: 44px;
  }

  75% {
    left: 14.5px;
    top: 29.5px;
  }

  100% {
    left: 14.5px;
    top: 29.5px;
  }
}

.icon-connect-dots .dot-line {
  animation: lineDrawLoop 4.5s ease-in-out infinite;
}

.icon-connect-dots .line-2 {
  animation-delay: 0.5s;
}

.icon-connect-dots .line-3 {
  animation-delay: 1s;
}

.icon-connect-dots .dot {
  animation: dotGlow 4.5s ease-in-out infinite;
}

.icon-connect-dots .dot-y1,
.icon-connect-dots .dot-y2 {
  animation-delay: 0s;
}

.icon-connect-dots .dot-p1,
.icon-connect-dots .dot-p2 {
  animation-delay: 0.5s;
}

.icon-connect-dots .dot-w1,
.icon-connect-dots .dot-w2 {
  animation-delay: 1s;
}

@keyframes lineDrawLoop {

  0%,
  100% {
    stroke-dashoffset: 80;
  }

  30%,
  70% {
    stroke-dashoffset: 0;
  }
}

@keyframes dotGlow {

  0%,
  100% {
    opacity: 0.3;
  }

  30%,
  70% {
    opacity: 1;
  }
}

.icon-transform .morph-shape {
  transform-origin: 51.5px 51.5px;
  animation: shapeMorph 2.5s ease-in-out infinite;
}

@keyframes shapeMorph {

  0%,
  100% {
    d: path("M 51.5,26.5 L 76.5,26.5 L 76.5,76.5 L 51.5,76.5 L 26.5,76.5 L 26.5,26.5 Z");
    transform: rotate(0deg);
  }

  33% {
    d: path("M 51.5,21.5 L 77.5,36.5 L 77.5,66.5 L 51.5,81.5 L 25.5,66.5 L 25.5,36.5 Z");
    transform: rotate(15deg);
  }

  66% {
    d: path("M 51.5,21.5 L 66.5,49 L 81.5,76.5 L 51.5,76.5 L 21.5,76.5 L 36.5,49 Z");
    transform: rotate(-10deg);
  }
}

.holo-card {
  position: relative;
  overflow: hidden;
}

.holo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(244, 214, 23, 0.06),
      rgba(239, 87, 144, 0.03),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.holo-card:hover::before {
  opacity: 1;
}

#sectors {
  background: var(--dark-2);
}

#sectors .section-headline {
  max-width: 800px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.sector-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sector-item i {
  font-size: 2.5rem;
  color: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 50%;
  padding: var(--space-sm);
  flex-shrink: 0;
}

.sector-item span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--white);
}

.section-trust {
  padding: var(--space-lg) 0;
  background: var(--dark-1);
}

.trust-heading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-1), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-1), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.marquee-content img {
  width: auto;
  object-fit: contain;
}

.marquee-content img.logo-wide {
  height: 30px;
}

.marquee-content img.logo-tall {
  height: 60px;
}

.marquee-content img.logo-mid {
  height: 50px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

#services-section {
  background: #100d0d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: var(--dark-1);
  border: 1px solid var(--grey);
  border-radius: 2px;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-icon {
  font-size: 3rem;
  color: var(--pink);
  margin-bottom: var(--space-sm);
  display: block;
  line-height: 1;
}

.service-title {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.service-body {
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--white);
}

.service-divider {
  border: none;
  border-top: 1px solid var(--grey);
  margin: var(--space-md) 0;
  width: 100%;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: rgba(248, 118, 167, 0.3);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--white);
  white-space: nowrap;
}

#case-studies {
  background: #231E1E;
  display: flex;
  flex-direction: column;
  min-height: 830px;
  overflow: visible;
  padding: 60px 0 0;
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  flex-shrink: 0;
}

.work-header-left {
  max-width: 582px;
}

.work-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #EF5790;
  display: block;
  margin-bottom: 0;
}

.work-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-top: var(--space-xs);
}

.case-dots {
  display: flex;
  gap: 19px;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0 var(--space-md);
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.case-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.case-dots .dot.active {
  background: var(--white);
  border-color: var(--white);
}

.case-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 1860px;
  margin: 10px auto 0;
  overflow: visible;
  flex: 1 1 0%;
  min-height: 0;
}

.case-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.case-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.case-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.case-pink-card {
  position: absolute;
  top: 86px;
  left: 0;
  right: 0;
  height: 620px;
  background: #EF5790;
}

.case-slide-image {
  position: absolute;
  top: 0;
  left: 746px;
  width: 754px;
  height: 503px;
  z-index: 2;
  overflow: hidden;
}

.case-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-text-block {
  position: absolute;
  top: calc(86px + 80px);
  left: 137px;
  max-width: 537px;
  z-index: 2;
}

.case-client {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin: 0 0 12px 0;
  max-width: 550px;
}

.case-pill {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-2);
  background: var(--yellow);
  padding: 10px;
  border-radius: 2px;
  line-height: 1.5;
}

.case-body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin-top: var(--space-sm);
}

.case-impact {
  background: #D04277;
  border: solid 1px #F876A7;
  border-radius: 2px;
  padding: 10px 10px;
}

.case-nav-arrows {
  display: flex;
  align-items: center;
  gap: 19px;
  padding-bottom: var(--space-sm);
}

.case-arrow {
  width: 80px;
  height: 80px;
}

.case-prev {
  transform: rotate(180deg);
}

/* #founder needs extra vertical space — uses .section-lg modifier in HTML,
   or keeps its own padding override here for backward-compat */
#founder {
  background: var(--dark-2);
  padding: var(--space-2xl) 0;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.founder-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.founder-image-curtain {
  position: absolute;
  inset: 0;
  background: #231E1E;
  z-index: 2;
  will-change: transform;
  border-radius: 10px;
}

.founder-image img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  min-height: 700px;
  border-radius: 10px;
  margin: 0 auto;
}

.founder-content {
  padding: 0;
  margin: 0 auto;
}


.founder-name {
  margin-bottom: 5px;
}

.founder-title {
  font-size: 1.3125rem;
  font-weight: 400;
  color: #c1b2b8;
  margin-bottom: 30px;
}

.founder-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.stat-card {
  background: var(--dark-1);
  border: 1px solid var(--grey);
  border-radius: 2px;
  padding: var(--space-sm) 21px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  height: 190px;
  flex: 1;
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--body-text);
  display: block;
}

.stat-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1.1;
  white-space: nowrap;
}

.stat-label {
  font-size: var(--text-base);
  color: #c1b2b8;
  line-height: 1.2;
}

.accordion {
  position: relative;
}

.accordion-item {
  position: relative;
}

.accordion .accordion-line {
  display: block;
  height: 1px;
  background: var(--maroon);
  transform-origin: left;
  width: 0;
}

.accordion-panel-inner {
  margin-bottom: 20px;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-label {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: var(--text-md);
}

.accordion-panel {
  height: 0;
  overflow: hidden;
}

.accordion-panel p {
  font-size: var(--text-base);
  line-height: 1.7;
}

.credential-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(248, 118, 167, 0.3);
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 400;
  border-radius: 5px;
}

#testimonials {
  background: var(--dark-1);
}

.testimonial-header {
  text-align: left;
}

.testimonial-slider {
  margin-top: 30px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 110px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  flex: 0 0 30%;
  align-self: center;
}

.testimonial-quote-block {
  text-align: left;
  flex: 0 0 70%;
}

.testimonial-quote-mark {
  margin-bottom: 20px;
}

.testimonial-quote-mark img {
  width: 80px;
  height: auto;
  opacity: 0.5;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  max-width: 680px;
  margin: 0;
  font-style: normal;
}

.testimonial-photo-wrap {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  font-size: var(--text-xl);
}

.testimonial-title {
  display: block;
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--pink);
  line-height: 1;
}

.testimonial-slider-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 60px;
  height: 60px;
}

.testimonial-prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}

.testimonial-next {
  right: 0;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dots .dot.active {
  background: var(--white);
}

.section-cta {
  background: var(--dark-2);
}

.cta-card {
  background: #E64480;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 50px 100px 76px;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-card-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.cta-text {
  flex: 1;
}

.cta-headline {
  font-size: var(--text-5xl);
  margin-bottom: 15px;
  text-align: left;
}

.cta-subtext {
  max-width: 460px;
  font-size: var(--text-lg);
  line-height: 1.35;
  font-weight: 400;
  color: var(--white);
}

.cta-btn {
  flex-shrink: 0;
}

.cta-zigzag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: url('images/zigzag-pattern.svg') repeat-x left bottom;
  background-size: auto 48px;
  opacity: 0.3;
}

#contact-section {
  background: var(--dark-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-heading-block .section-tag {
  margin-bottom: var(--space-sm);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--grey);
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  transition: background 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.02);
}

.contact-method-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-method-info>i {
  font-size: 2.5rem;
  color: var(--pink);
}

.contact-method-label {
  display: block;
  font-weight: 300;
  color: var(--white);
  font-size: var(--text-xl);
  line-height: 1.3;
}

.contact-method-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pink);
}

.contact-method-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--grey);
  color: var(--white);
  font-size: var(--text-lg);
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.contact-method:hover .contact-method-arrow {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.contact-form-wrapper {
  background: var(--dark-1);
  border: 1px solid var(--grey);
  border-radius: 5px;
  padding: 69px 55px 41px 55px;
}

.form-heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: 12px;
}

.form-subtext {
  font-size: var(--text-md);
  font-weight: 300;
  color: rgba(255, 228, 238, 0.89);
  margin-bottom: 39px;
  line-height: 1.4;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #4F4545;
  border: 1px solid var(--maroon);
  border-radius: 0;
  padding: 18px var(--space-sm);
  color: var(--white);
  font-size: 0.9375rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%23696667' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-sm) center;
  background-color: #4F4545;
  padding-right: var(--space-lg);
}

.form-group textarea {
  resize: vertical;
  min-height: 148px;
}

.form-submit {
  align-self: center;
  margin-top: var(--space-sm);
}

#footer {
  background: var(--dark-2);
  padding: 94px 0 60px;
}

.footer-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo svg {
  width: 253px;
  height: auto;
}

.footer-location {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--text-lg);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

.footer-right {
  text-align: right;
}

.footer-copyright {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(129, 120, 124, 0.89);
  text-transform: uppercase;
  line-height: 1;
}

.footer-credit-link {
  color: rgba(129, 120, 124, 0.89);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-credit-link:hover {
  color: #fff;
}

.reveal-text {
  clip-path: inset(0 0 100% 0);
}

.reveal-text.revealed {
  clip-path: inset(0 0 0% 0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-link span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}

/* RESPONSIVE BREAKPOINTS */

/* Large Desktop 1920+ */
@media (min-width: 1920px) {
  :root {
    --container-max: 1400px;
  }
}

/* Desktop 1440px */
@media (max-width: 1440px) {
  h1 {
    font-size: 5.5rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .about-left .section-headline,
  .founder-name,
  #testimonials .section-headline,
  .work-headline {
    font-size: 3.25rem;
  }

  .cta-headline {
    font-size: var(--text-5xl);
  }

  .services-grid {
    gap: var(--space-sm);
  }

  .service-card {
    padding: 28px;
  }

  .service-title {
    font-size: var(--text-xl);
  }

  .case-slide-image {
    left: auto;
    right: 0;
    width: 47%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .case-text-block {
    left: 60px;
    max-width: 46%;
  }

  .case-pink-card {
    min-height: 620px;
    height: auto;
  }

  .case-impact-block {
    left: auto;
    right: 0;
    width: 47%;
  }

  .case-client {
    font-size: 48px;
  }

  .case-body {
    font-size: 16px;
  }

  .brand-cards {
    gap: 24px;
  }

  .brand-card {
    padding: 40px 32px;
  }

  .brand-card-title {
    font-size: 1.25rem;
  }

  .brand-card-body {
    font-size: 0.9rem;
  }

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

  .founder-name {
    font-size: 3rem;
  }

  .founder-stats {
    gap: 12px;
  }

  .stat-card {
    padding: 14px 16px;
    height: auto;
    min-height: 160px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }
}

/* Small Desktop 1024px */
@media (max-width: 1024px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: var(--text-lg);
    margin-bottom: 36px;
  }

  .hero-headline {
    padding-top: 30px;
    margin-bottom: 20px;
  }

  .btn-lg {
    font-size: var(--text-md);
    padding: 16px 40px;
  }

  .hero-cta {
    font-size: var(--text-lg);
    padding: 16px 48px;
  }

  .about-left .section-headline,
  .founder-name,
  #testimonials .section-headline {
    font-size: var(--text-3xl);
  }

  .cta-headline {
    font-size: 3.5rem;
  }

  .cta-subtext {
    font-size: var(--text-md);
  }

  .testimonial-quote {
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.35;
  }

  .testimonial-name {
    font-size: var(--text-lg);
  }

  .testimonial-title {
    font-size: var(--text-lg);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-geo {
    display: none;
  }

  .about-body {
    font-size: 1.15rem;
  }

  .brand-cards {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .brand-card {
    padding: var(--space-lg) 32px;
  }

  .brand-card-title {
    font-size: var(--text-lg);
  }

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

  #work {
    height: auto;
    min-height: 0;
    padding: 60px 0 0;
    overflow: hidden;
  }

  .work-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 0 32px;
  }

  .work-headline {
    font-size: 3.25rem;
  }

  .work-tag {
    font-size: 18px;
  }

  .case-card-wrapper {
    margin-top: var(--space-md);
    overflow: hidden;
  }

  #case-studies {
    height: auto;
    min-height: 0;
  }

  .case-slide,
  .case-slide.active {
    position: relative;
    display: none;
  }

  .case-slide.active {
    display: flex;
    flex-direction: column;
  }

  .case-pink-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
  }

  .case-slide-image {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    z-index: 2;
  }

  .case-text-block {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    padding: 32px;
    z-index: 2;
  }

  .case-impact-block {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .case-client {
    font-size: 2.5rem;
  }

  .case-pill {
    font-size: 14px;
  }

  .case-body {
    font-size: 14px;
    margin-top: 10px;
  }

  .case-impact {
    font-size: 14px;
  }

  .case-arrow {
    width: 64px;
    height: 64px;
  }

  .case-dots {
    padding-right: 32px;
    padding-bottom: var(--space-lg);
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 var(--container-padding);
  }

  .founder-image img {
    min-height: 400px;
    max-height: 500px;
  }

  .founder-content {
    padding: 0;
  }

  .section-tag {
    font-size: var(--text-md);
  }

  .founder-title {
    font-size: var(--text-md);
    margin-bottom: var(--space-md);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    gap: 48px;
  }

  .contact-method-label {
    font-size: var(--text-lg);
  }

  .contact-method-value {
    font-size: 0.9375rem;
  }

  .cta-card {
    padding: 60px 48px 80px;
  }

  .cta-card-content {
    gap: var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .service-card {
    padding: 32px;
  }

  .service-title {
    font-size: 1.75rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-right {
    text-align: center;
  }
}

/* Tablet 768px */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: var(--text-2xl);
  }

  .about-body {
    font-size: var(--text-base);
    margin-bottom: 20px;
  }

  .about-left .section-headline,
  .founder-name,
  #testimonials .section-headline {
    font-size: 2.5rem;
  }

  .cta-headline {
    font-size: var(--text-3xl);
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  .testimonial-name {
    font-size: 1.15rem;
  }

  .testimonial-title {
    font-size: var(--text-md);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero-headline {
    padding-top: 0;
    margin-bottom: var(--space-sm);
  }

  #hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: var(--space-xl) var(--container-padding) var(--space-lg);
  }

  .hero-subtitle {
    font-size: var(--text-md);
    max-width: 100%;
    margin-bottom: 32px;
  }

  .btn-lg {
    font-size: var(--text-base);
    padding: 14px 36px;
  }

  .icon-transform .morph-shape {
    animation: shapeMorphSimple 2.5s ease-in-out infinite;
  }

  @keyframes shapeMorphSimple {

    0%,
    100% {
      transform: rotate(0deg) scale(1);
    }

    33% {
      transform: rotate(15deg) scale(1.05);
    }

    66% {
      transform: rotate(-10deg) scale(0.95);
    }
  }

  .brand-cards {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    gap: 24px;
  }

  .sector-item i {
    font-size: 2rem;
  }

  .sector-item span {
    font-size: 1.15rem;
  }

  .section-tag {
    font-size: var(--text-base);
  }

  .founder-title {
    font-size: var(--text-base);
    margin-bottom: 20px;
  }

  .founder-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-card {
    height: auto;
    min-height: 140px;
  }

  .work-headline {
    font-size: 2rem;
  }

  .case-client {
    font-size: 1.75rem;
  }

  .case-arrow {
    width: 50px;
    height: 50px;
  }

  .case-dots {
    padding-right: 20px;
    padding-bottom: 32px;
  }

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

  .service-card {
    padding: 28px var(--space-md);
  }

  .testimonial-slide {
    flex-direction: column;
    padding: 0 50px;
    gap: 5px;
  }

  .testimonial-quote-block {
    text-align: center;
  }

  .testimonial-quote-mark img {
    margin: 0 auto;
  }

  .testimonial-photo-wrap {
    width: 140px;
    height: 140px;
  }

  .testimonial-arrow {
    width: 50px;
    height: 50px;
  }

  .cta-card {
    padding: 36px 28px 72px;
  }

  .cta-card-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .cta-headline {
    text-align: center;
  }

  .cta-subtext {
    font-size: var(--text-base);
    margin: 0 auto;
  }

  .contact-form-wrapper {
    padding: 32px var(--space-md);
  }

  .contact-method-info>i {
    font-size: 2rem;
  }

  .contact-method-arrow {
    display: none;
  }

  .contact-method {
    padding: 20px 0;
  }

  .contact-method-value {
    word-break: break-all;
  }

  .contact-method-label {
    font-size: 1.125rem;
  }

  #contact-section {
    overflow-x: hidden;
  }

  .contact-form-wrapper {
    max-width: 100%;
    box-sizing: border-box;
    padding: 24px 16px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-heading {
    font-size: 1.75rem;
  }

  .form-subtext {
    font-size: var(--text-base);
  }
}

/* Mobile 375px */
@media (max-width: 375px) {
  :root {
    --container-padding: 16px;
  }

  .section {
    padding: 20px 0;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .about-body {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
  }

  /* Same as 768px — kept for clarity since other rules change at 375 */
  .about-left .section-headline,
  .founder-name,
  #testimonials .section-headline {
    font-size: 2rem;
  }

  .cta-headline {
    font-size: 2.5rem;
  }

  .cta-subtext {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .btn-lg {
    font-size: 0.9rem;
    padding: 12px 28px;
  }

  .testimonial-quote {
    font-size: var(--text-sm);
    line-height: 1.4;
  }

  .testimonial-name {
    font-size: var(--text-base);
  }

  .testimonial-title {
    font-size: var(--text-base);
  }

  .hero-headline {
    padding-top: 20px;
    margin-bottom: 12px;
  }

  .testimonial-arrow {
    width: 40px;
    height: 40px;
  }

  .testimonial-slide {
    padding: 0 56px;
  }

  .hero-content {
    padding: var(--space-xl) var(--container-padding) var(--space-lg);
  }

  .hero-subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
  }

  .section-tag {
    font-size: 0.9rem;
  }

  .founder-title {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
  }

  .founder-stats {
    flex-direction: column;
  }

  .stat-card {
    padding: 14px var(--space-sm);
    height: auto;
    min-height: 120px;
  }

  .service-card {
    padding: var(--space-md) 20px;
  }

  .service-title {
    font-size: 1.375rem;
  }

  .service-icon {
    font-size: 2.75rem;
  }

  .credential-pills {
    flex-direction: column;
  }

  .cta-zigzag {
    height: 32px;
  }
}

/* ----- CONTACT FORM 7 OVERRIDES ----- */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.wpcf7-form .form-group label {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white);
}

.wpcf7-form-control:not(.wpcf7-submit) {
  background: #4F4545;
  border: 1px solid var(--maroon);
  border-radius: 0;
  padding: 18px var(--space-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.3s ease;
  outline: none;
  width: 100%;
}

.wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: var(--yellow);
}

.wpcf7 select.wpcf7-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%23696667' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-sm) center;
  background-color: #4F4545;
  padding-right: var(--space-lg);
}

.wpcf7 textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 148px;
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  background: var(--yellow);
  color: var(--dark-1);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--dark-2);
  align-self: center;
  margin-top: var(--space-sm);
}

.wpcf7-submit:hover {
  transform: translate(var(--shadow-offset), var(--shadow-offset));
  box-shadow: 0 0 0 var(--dark-2);
}

.wpcf7-response-output {
  border: none !important;
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-sm) 0 !important;
  margin: 0 !important;
}

.wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: var(--text-sm);
  font-family: var(--font-body);
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

/* Responsive CF7 overrides */
@media (max-width: 768px) {
  .wpcf7-submit {
    width: 100%;
    justify-content: center;
  }
}

.wpcf7-form fieldset.hidden-fields-container {
    display: none;
}
.form-note {
    font-size: 0.75rem;
    color: #9a9a9a;
    margin-bottom: 16px;
}
