/* ============================================================
   A LITTLE BIRD — Global Stylesheet
   Fonts: Proxima Nova (sans), Galaxie Copernicus (serif) — self-hosted
   Colors: --pink #D93188 | --yellow #FAEA4C | --sky #CEFBF3 | --navy #21274E | --black #111111
   ============================================================ */

/* ── Self-hosted fonts ────────────────────────────────────── */
@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/ProximaNova-Regular.woff2') format('woff2'),
       url('../fonts/ProximaNova-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/ProximaNova-Light.woff2') format('woff2'),
       url('../fonts/ProximaNova-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Galaxie Copernicus';
  src: url('../fonts/GC2GalaxieCopernicusSemibold.woff2') format('woff2'),
       url('../fonts/GC2GalaxieCopernicusSemibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --pink:       #D93188;
  --yellow:     #FAEA4C;
  --sky:        #CEFBF3;
  --navy:       #21274E;
  --black:      #111111;
  --off-white:  #f8f8f8;
  --white:      #ffffff;
  --gray:       #D6D7D9;
  --gray-mid:   #6e728c;
  --container:  1140px;
  --container-wide: 1600px;
  --font-sans:  'Proxima Nova', sans-serif;
  --font-serif: 'Galaxie Copernicus', serif;
  --transition: 0.3s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: clip;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p { font-size: 1rem; line-height: 1.75; }

/* ── Containers ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .container, .container-wide { padding: 0 20px; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-primary:hover {
  background: transparent;
  color: var(--pink);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { opacity: 0.4; }
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover { opacity: 0.5; }

/* ── Section Shared ───────────────────────────────────────── */
.sec-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}
.sec-heading.white { color: var(--white); }
.heading-line {
  width: 60px;
  height: 3px;
  background: var(--pink);
  margin: 20px auto 36px;
}
.heading-line.white { background: var(--white); }
#gallery-heading + .heading-line,
#whatwedid-heading + .heading-line {
  margin-left: 0;
}
.sec-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
  color: #444;
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 30px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.is-fixed {
  position: fixed;
  background: var(--off-white);
  padding: 18px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  transition: filter var(--transition), opacity var(--transition);
}
.site-header--solid {
  background: var(--off-white);
}
/* Always-navy header that sits in normal document flow (hero starts below it,
   rather than the header floating transparently over the hero photo) */
.site-header--navy {
  position: relative;
  background: var(--navy);
}
.site-header--navy.is-fixed {
  background: var(--navy);
}
.site-header--navy .site-logo img,
.site-header--navy.is-fixed .site-logo img {
  filter: invert(1) brightness(100);
}
.site-header--navy .hamburger-line,
.site-header--navy.is-fixed .hamburger-line {
  background: var(--white);
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-divider {
  width: 1px;
  height: 28px;
  background: rgba(17,17,17,0.15);
  flex-shrink: 0;
}
.header-client-logo {
  width: auto;
  display: block;
  flex-shrink: 0;
}
body.nav-on-dark .site-header:not(.is-fixed) .header-divider {
  background: rgba(255,255,255,0.3);
}

/* Transparent state (over dark hero — homepage) */
body.transparent-nav .site-header:not(.is-fixed) .site-logo img {
  filter: invert(1) brightness(100);
}
body.transparent-nav .site-header:not(.is-fixed) .hamburger-line {
  background: var(--white);
}

/* Interior pages: header sits over navy page-hero before scrolling */
body.nav-on-dark .site-header:not(.is-fixed) .site-logo img {
  filter: invert(1) brightness(100);
}
body.nav-on-dark .site-header:not(.is-fixed) .hamburger-line {
  background: var(--white);
}


/* ── Hamburger ────────────────────────────────────────────── */
.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.hamburger-line {
  display: block;
  height: 2px;
  background: var(--black);
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform-origin: right center;
}
.hamburger-line:first-child { width: 40px; }
.hamburger-line:last-child  { width: 28px; }
.hamburger:hover .hamburger-line:first-child { transform: scaleX(0.7); }
.hamburger:hover .hamburger-line:last-child  { transform: scaleX(1.3); }
.nav-open .hamburger-line { background: var(--white); }
.nav-open .hamburger-line:first-child { transform: scaleX(0.7); }
.nav-open .hamburger-line:last-child  { transform: scaleX(1.3); }

@media (max-width: 767px) {
  .site-logo img { height: 28px; }
  .header-client-logo { height: 28px; }
  .header-brand { gap: 12px; }
  .hamburger { width: 34px; height: 34px; gap: 4px; }
  .hamburger-line:first-child { width: 30px; }
  .hamburger-line:last-child  { width: 21px; }
}

/* ── Nav Overlay ──────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px 80px 100px;
}
.nav-overlay-right {
  width: 45%;
  position: relative;
  overflow: hidden;
}
.nav-overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
  transform: scale(1.05);
}
.nav-overlay-img.is-active {
  opacity: 0.55;
  transform: scale(1);
}
.nav-links { display: flex; flex-direction: column; gap: 0; }
.nav-link {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: opacity var(--transition), color var(--transition);
  letter-spacing: -0.01em;
}
.nav-link:last-child { border-bottom: none; }
.nav-link:hover, .nav-link.is-current { color: var(--pink); opacity: 1; }
.nav-links:hover .nav-link:not(:hover) { opacity: 0.35; }
.nav-overlay-address {
  margin-top: 40px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}
.nav-overlay-address strong { color: rgba(255,255,255,0.8); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; }

/* Close button */
.nav-close {
  position: absolute;
  top: 32px;
  right: 40px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.nav-close:hover { opacity: 1; }

@media (max-width: 991px) {
  .nav-overlay { flex-direction: column; }
  .nav-overlay-left { width: 100%; padding: 80px 40px 40px; }
  .nav-overlay-right { display: none; }
  .nav-link { font-size: clamp(1.8rem, 6vw, 2.5rem); padding: 12px 0; }
}
@media (max-width: 767px) {
  .nav-overlay-left { padding: 80px 24px 40px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
/* Background video */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* Subtle top vignette so headline stays readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.38) 0%,
    rgba(0,0,0,0.12) 55%,
    rgba(0,0,0,0) 75%
  );
  pointer-events: none;
}

/* Bottom navy bar — fades into the photo above */
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 58vh;
  background: linear-gradient(to top,
    rgba(33,39,78,0.7)   0%,
    rgba(33,39,78,0.7)  50%,
    rgba(33,39,78,0)    100%
  );
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10vh;
}
.hero-bar .container-wide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 100%;
}
.hero-bar-heading {
  color: var(--white);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.hero-bar-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-desc {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  line-height: 1.4;
  margin: 0;
  max-width: 58%;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .hero-bar { height: 65vh; padding-bottom: 28vh; }
  .hero-bar-bottom { gap: 14px; }
  .hero-desc { max-width: 100%; }
}
@media (max-width: 767px) {
  .hero-bar-heading { font-size: 1.5rem; }
  .hero-desc { font-size: clamp(1rem, 3.5vw, 1.2rem); }
}

/* ═══════════════════════════════════════════════════════════
   APPROACH SECTION
   ═══════════════════════════════════════════════════════════ */
.approach-sec {
  padding: 100px 0;
  background: var(--white);
}
.approach-inner { max-width: 800px; }
.approach-inner .sec-heading { font-size: clamp(1.8rem, 3vw, 2.6rem); }
@media (max-width: 767px) { .approach-sec { padding: 70px 0; } }

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION (homepage cards)
   ═══════════════════════════════════════════════════════════ */
/* ── Services: circle orbit ───────────────────────────────── */
.services-sec {
  background: var(--navy);
  padding: 100px 0 0;
  overflow: hidden;
}
.services-header { margin-bottom: 0; text-align: center; }
.services-intro {
  color: rgba(255,255,255,0.82);
  font-size: 1.575rem;
  line-height: 1.6;
  margin-top: 20px;
}

.services-orbit {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: -50px;
}

/* Bird-print SVG path spans full orbit */
.services-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── Flip circles ─────────────────────────────────────────── */
.service-circle {
  position: absolute;
  width: 310px;
  height: 310px;
  perspective: 900px;
  cursor: pointer;
}

/* Positions along the wave */
.service-circle--pink   { left: 5%;                top: 160px; }
.service-circle--yellow { left: calc(50% - 155px); top: 80px; }
.service-circle--sky    { right: 5%;               top: 110px; }

.service-circle-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-circle:hover .service-circle-inner,
.service-circle.is-flipped .service-circle-inner {
  transform: rotateY(180deg);
}

.service-circle-front,
.service-circle-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px;
}
.service-circle-back { transform: rotateY(180deg); }

/* Colors */
.service-circle--pink   .service-circle-front,
.service-circle--pink   .service-circle-back  {
  background: radial-gradient(circle at 35% 32%, #f07ab8, #D93188 55%, #861050);
}
.service-circle--yellow .service-circle-front,
.service-circle--yellow .service-circle-back  {
  background: radial-gradient(circle at 35% 32%, #fffcb8, #FAEA4C 55%, #b8a600);
}
.service-circle--sky    .service-circle-front,
.service-circle--sky    .service-circle-back  {
  background: radial-gradient(circle at 35% 32%, #ffffff, #CEFBF3 55%, #5abfb0);
}

/* Front: heading */
.service-circle-front h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: white;
}
.service-circle--yellow .service-circle-front h3,
.service-circle--sky    .service-circle-front h3 { color: var(--navy); }

/* Back: description + link */
.service-circle-back p {
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0 0 16px;
  color: white;
}
.service-circle--yellow .service-circle-back p,
.service-circle--sky    .service-circle-back p   { color: var(--navy); }

.svc-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
}
.service-circle--yellow .svc-link,
.service-circle--sky    .svc-link { color: var(--navy); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-intro { font-size: 1.15rem; }
  .services-orbit {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 90px 0 60px;
  }
  .services-path { display: none; }
  .service-circle {
    position: static;
    width: 280px;
    height: 280px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CLIENT LOGOS
   ═══════════════════════════════════════════════════════════ */
.client-sec {
  padding: 80px 0;
  background: var(--off-white);
  overflow: hidden;
}
.client-sec .sec-heading { margin-bottom: 12px; }
.client-marquee-wrap {
  overflow: hidden;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.client-marquee {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.client-marquee:hover { animation-play-state: paused; }
.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item img {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter var(--transition);
}
.logo-item img:hover { filter: grayscale(0) opacity(1); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 767px) {
  .client-sec { padding: 60px 0; }
  .logo-item img { height: 44px; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG / NEWS SECTION (homepage)
   ═══════════════════════════════════════════════════════════ */
.blog-sec {
  background: var(--white);
  padding: 100px 0 50px;
}
.blog-header { margin-bottom: 50px; text-align: center; }
.blog-carousel {
  position: relative;
  overflow: hidden;
}
.blog-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.blog-carousel-track .blog-card {
  flex: 0 0 calc((100% - 48px) / 3);
}
@media (max-width: 991px) {
  .blog-carousel-track .blog-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 767px) {
  .blog-carousel-track .blog-card { flex: 0 0 100%; }
}
.blog-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.blog-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(33,39,78,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot:hover { background: rgba(33,39,78,0.35); }
.carousel-dot.active {
  background: var(--pink);
  transform: scale(1.4);
}
.blog-carousel-arrows { display: flex; gap: 12px; }
.carousel-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(33,39,78,0.2);
  background: transparent;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.carousel-arrow:hover:not(:disabled) {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
.blog-cta { text-align: center; margin-top: 40px; }
.blog-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover img { transform: scale(1.04); }
.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: background var(--transition);
}
.blog-card:hover .blog-card-overlay {
  background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.2) 70%);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.blog-card-cat {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.blog-card-read {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
}
.blog-card h3 {
  color: var(--white);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.35;
  font-weight: 600;
}
/* ═══════════════════════════════════════════════════════════
   VIDEO
   ═══════════════════════════════════════════════════════════ */
.video-sec {
  background: var(--black);
  padding: 0;
  line-height: 0;
}
.video-overlay-header {
  line-height: 1;
  text-align: center;
  padding: 64px 24px 48px;
  background: var(--white);
}
.video-overlay-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.video-overlay-header .heading-line {
  margin: 16px auto 0;
}
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.video-embed-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--black);
}

/* ═══════════════════════════════════════════════════════════
   CASE STUDIES
   ═══════════════════════════════════════════════════════════ */
.casestudy-sec {
  background: var(--white);
  padding: 80px 0 60px;
}
.casestudy-sec .heading-line { margin-bottom: 48px; }
.cs-slider-wrap {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 40px;
}
.cs-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}
.cs-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 56fr 44fr;
  align-items: stretch;
}
.cs-img-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 8px;
}
.cs-img-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.cs-img-slide.is-active  { transform: translateX(0); }
.cs-img-slide.is-exiting { transform: translateX(-100%); }
.cs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-content {
  padding: 20px 52px 0;
  display: flex;
  flex-direction: column;
}
.cs-open-quote {
  display: block;
  font-size: 6rem;
  line-height: 0.75;
  color: rgba(33, 39, 78, 0.12);
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 12px;
}
.cs-quote {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--navy);
  margin: 0 0 28px;
  font-style: normal;
}
.cs-attr { display: flex; flex-direction: column; gap: 4px; }
.cs-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink);
  margin: 0;
}
.cs-role {
  font-size: 0.9rem;
  color: var(--navy);
  margin: 0 0 16px;
}
.cs-logo {
  height: 100px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-top: auto;
  padding-top: 20px;
}
.cs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 36px 0 0;
}
.cs-arrow {
  background: none;
  border: 2px solid var(--navy);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.cs-arrow:hover { background: var(--navy); color: white; }
.cs-dots { display: flex; gap: 8px; align-items: center; }
.cs-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(33, 39, 78, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.cs-dot.active { background: var(--pink); }
.cs-cta-wrap {
  text-align: center;
  padding: 40px 0 0;
}
.cs-cta-btn {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.cs-cta-btn:hover { background: var(--pink); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — bento grid
   ═══════════════════════════════════════════════════════════ */
.testi-sec {
  padding: 100px 0;
  background: var(--white);
}
.testi-sec > .container { margin-bottom: 48px; text-align: center; }
.testi-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ── Shared card base ── */
.tbc {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
}
a.tbc { transition: transform var(--transition), box-shadow var(--transition); }
a.tbc:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.tbc--span2 { grid-column: span 2; }

/* ── Image placeholder cards ── */
.tbc--img {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}
.tbc--navy    { background-image: url('https://cdn.alittle-bird.com/images/testimonials/line39.webp'); }
.tbc--yellow  { background-image: url('https://cdn.alittle-bird.com/images/testimonials/yasso.webp'); }
.tbc--celsius { background-image: url('https://cdn.alittle-bird.com/images/testimonials/celsius.webp'); }
.tbc--wine    { background-image: url('https://cdn.alittle-bird.com/images/testimonials/franciscan.webp'); }
.tbc--pink    { background-image: url('https://cdn.alittle-bird.com/images/testimonials/skinny-dipped.webp'); }
.tbc--sky     { background-image: url('https://cdn.alittle-bird.com/images/testimonials/jbl-harman.webp'); }
.tbc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 20px 16px;
  transition: background var(--transition);
}
.tbc--img:hover .tbc-overlay {
  background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.2) 70%);
}
.tbc-brand {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.tbc-type {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Quote cards ── */
.tbc--quote {
  background: var(--navy);
  padding: 26px 28px 22px;
  display: flex;
  flex-direction: column;
}
.tbc-q-mark {
  font-size: 2.6rem;
  line-height: 0.8;
  color: var(--pink);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 10px;
}
.tbc-quote {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-style: normal;
  flex: 1;
}
.tbc-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.tbc-logo {
  height: 32px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.tbc-name {
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
}
.tbc-role {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  margin: 3px 0 0;
}
@media (max-width: 900px) {
  .testi-bento { grid-template-columns: repeat(2, 1fr); }
  .tbc--span2  { grid-column: span 2; }
}
@media (max-width: 560px) {
  .testi-bento { grid-template-columns: 1fr; }
  .tbc--span2  { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════════
   PARTNERSHIP PROFILE — "Bumble profile" phone cards
   ═══════════════════════════════════════════════════════════ */
.alb-phones-section {
  background: var(--navy);
  padding: 72px 0 24px;
}
.alb-phones-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.alb-phones-heading {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px;
}
.alb-phones-sub {
  color: var(--white);
  font-size: 1.375rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.alb-phones-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}
.alb-phone-card { width: 280px; }
.alb-phone-frame {
  background: var(--white);
  border-radius: 36px;
  padding: 16px 12px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 5.625px solid #3A4E7A;
}
.alb-phone-notch {
  background: #0D1B3E;
  width: 80px;
  height: 20px;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 12px;
}
.alb-phone-screen {
  background: var(--yellow);
  border-radius: 20px;
  padding: 20px 16px;
}
.alb-phone-icon {
  height: 160px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
}
.alb-phone-tag {
  display: inline-block;
  background: #E05A8A;
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.alb-phone-title {
  color: #1A2744;
  font-size: 0.94rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}
.alb-phone-body {
  color: #555;
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 0 0 16px;
}
.alb-phone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.alb-phone-pill {
  background: #F0F4FF;
  color: #1A2744;
  font-size: 0.69rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.alb-phone-label {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
.alb-phone-label-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-align: center;
  margin-top: 4px;
}
@media (max-width: 991px) {
  .alb-phones-section { padding: 60px 0 32px; }
  .alb-phones-grid { margin-top: 36px; }
}
@media (max-width: 600px) {
  .alb-phones-grid { flex-direction: column; align-items: center; }
  .alb-phones-wrap { padding: 0 32px 0 24px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.contact-sec {
  position: relative;
  padding: 24px 0 100px;
  background: var(--navy);
}
.contact-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) {
  .contact-path { display: none; }
}
.contact-left .heading-line {
  margin-left: 0;
  margin-top: 0;
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.contact-left {
  flex: 1 1 0;
  text-align: left;
}
.contact-inner h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-left-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}
.contact-form-wrap {
  flex: 1 1 0;
  min-width: 0;
}
.contact-form-wrap iframe {
  width: 100%;
  border: none;
  overflow: hidden;
  min-height: 400px;
  background: transparent;
}
.contact-form-wrap--page iframe { min-height: 300px; }
@media (max-width: 900px) {
  .contact-inner { flex-direction: column; align-items: stretch; gap: 32px; }
  .contact-left-sub { max-width: none; }
}
@media (max-width: 767px) {
  .contact-sec { padding: 70px 0; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}
.footer-col-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.footer-col-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--pink);
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}
.footer-links a:hover { color: var(--white); }
.footer-address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.footer-btns { display: flex; flex-direction: column; gap: 14px; }
.footer-btns .btn {
  font-size: 0.78rem;
  padding: 12px 24px;
  text-align: center;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.social-links {
  display: flex;
  gap: 18px;
}
.social-links a {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: color var(--transition);
}
.social-links a:hover { color: var(--white); }
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .site-footer { padding-top: 60px; }
}

/* ═══════════════════════════════════════════════════════════
   INTERIOR PAGE HERO (shared across About, Services, etc.)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, var(--pink) 200%);
  opacity: 0.07;
}

/* Work page: photo behind the hero */
.page-hero--photo {
  background: none;
}
.page-hero--photo .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero--photo .page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(33, 39, 78, 0.88);
}
.page-hero--photo::after { display: none; }
.page-hero--photo .container { position: relative; z-index: 1; }
.page-hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 16px;
}
.page-hero h1 {
  color: var(--white);
  max-width: 100%;
}
.page-hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 100%;
  margin-top: 20px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   INTERIOR CONTENT LAYOUT (Elevate-style)
   Used for About, Services
   ═══════════════════════════════════════════════════════════ */
.content-section { padding: 90px 0; }
.content-section + .content-section { padding-top: 0; }
.content-section.bg-light { background: var(--off-white); }
.content-section.bg-dark { background: var(--navy); }
.content-section.bg-dark h2,
.content-section.bg-dark h3,
.content-section.bg-dark p { color: var(--white); }
.content-section.bg-dark .sec-desc { color: rgba(255,255,255,0.75); }
.cta-section h2 { margin-bottom: 32px; }
.cta-section--navy { background: var(--navy); }
.cta-section--navy h2 { color: var(--white); }

/* ALB Leadership grid (about.html) — one column on mobile so each
   person is featured in sequence instead of squeezed side by side */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .leadership-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* "From the Road" case-study gallery — column count varies per page
   (matches actual photo count) via --gallery-cols; one column on
   mobile so photos stack in sequence instead of cramming side by side */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(var(--gallery-cols, 4), 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Two-column content + image */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.split-text { max-width: 520px; }
.split-text h2 { margin-bottom: 20px; }
.service-section-head { margin-bottom: 24px; }
.service-section-head .heading-line { margin-left: 0; }
.split-text p { margin-bottom: 16px; color: #555; }
.split-text ul { list-style: disc; margin: 0 0 16px 22px; }
.split-text li { margin-bottom: 8px; color: #555; }
.split-text li::marker { color: var(--pink); }

/* Case study "Results" list: items flow side by side, separated by a pink dot */
.results-list--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.results-list--inline li { color: #555; }
.results-list--inline li:not(:first-child)::before {
  content: '\2022';
  color: var(--pink);
  font-size: 1.1rem;
  margin: 0 16px;
}
.split-text .btn { margin-top: 24px; }
.split-image {
  overflow: hidden;
  position: relative;
}
.split-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-layout.reverse { direction: ltr; }
  .split-image img { height: 320px; }
}

/* Three-column feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.feature-card {
  padding: 0;
  border: 1px solid var(--gray);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
}
.feature-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.feature-card-photo[src="[image-placeholder]"] {
  background: var(--off-white);
  border-bottom: 2px dashed var(--gray);
  color: var(--gray-mid);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
}
.feature-card-body { padding: 32px 32px 40px; }
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}
.bg-dark .feature-card { border-color: rgba(255,255,255,0.12); }
.bg-dark .feature-card:hover { border-color: var(--pink); }
.bg-dark .feature-card h3 { color: var(--white); }
.bg-dark .feature-card p { color: rgba(255,255,255,0.6); }
@media (max-width: 991px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .content-section { padding: 60px 0; }
}

/* Service list in feature card */
.service-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: 0.88rem;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}
.bg-dark .service-list li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); }

/* Services Include — pill tags (reuses .work-card-tag's pink pill treatment) */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  background: var(--pink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 9999px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE IMMERSIVE PICKER (services.html: full-bleed photo +
   numbered list + floating detail card)
   ═══════════════════════════════════════════════════════════ */
.service-immersive {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: hidden;
}
.content-section + .service-immersive { padding-top: 100px; }
.service-immersive--solid {
  background-image: none !important;
  background-color: var(--navy);
}
.service-immersive--light {
  background-image: none !important;
  background-color: var(--white);
}
.service-immersive.service-immersive--light h2 { color: var(--navy); }
.service-immersive.service-immersive--light .lede { color: #444; }
.service-immersive--light .service-picker-card:not(.service-picker-card--photo) { border: 1px solid var(--gray); }
.service-immersive::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(26,39,68,0.95) 0%, rgba(26,39,68,0.82) 40%, rgba(26,39,68,0.62) 100%);
  z-index: 1;
}
.service-immersive--solid::before,
.service-immersive--light::before { content: none; }
.service-immersive > .container { position: relative; z-index: 2; }
.service-immersive .service-section-head { margin-bottom: 40px; }
.service-immersive .work-card-tag { color: var(--white); }
.service-immersive h2 { color: var(--white); }
.service-immersive .heading-line { background: var(--pink); }
.service-immersive .lede {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0;
}

.service-picker {
  display: grid;
  grid-template-columns: minmax(0,380px) minmax(0,1fr);
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.service-picker-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-picker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  background: var(--navy);
  border: none;
  padding: 26px 28px;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.service-picker-num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.service-picker-label {
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s ease;
}
.service-picker-item .fa-chevron-right {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--pink);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-picker-item.is-active {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.service-picker-item.is-active .service-picker-num { color: rgba(0,0,0,0.3); }
.service-picker-item.is-active .service-picker-label { color: var(--navy); }
.service-picker-item.is-active .fa-chevron-right { opacity: 1; transform: translateX(0); }

.service-picker-card-wrap { display: grid; }
.service-picker-card {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  background: var(--white);
  border-radius: 4px;
  padding: 44px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.service-picker-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.service-picker-card-icon {
  width: 56px;
  height: 56px;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.service-picker-card-num {
  position: absolute;
  top: 28px;
  right: 36px;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: rgba(0,0,0,0.07);
  line-height: 1;
}
.service-picker-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-right: 60px;
}
.service-picker-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* Photo-backed card variant */
.service-picker-card--photo {
  background-size: cover;
  background-position: center;
}
.service-picker-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,39,68,0.92) 0%, rgba(26,39,68,0.7) 100%);
  border-radius: inherit;
  z-index: 0;
}
.service-picker-card--photo > * { position: relative; z-index: 1; }
.service-picker-card--photo h3 { color: var(--white); }
.service-picker-card--photo p { color: rgba(255,255,255,0.85); }
.service-picker-card--photo .service-picker-card-num { color: rgba(255,255,255,0.25); }
@media (prefers-reduced-motion: reduce) {
  .service-picker-card { transition: opacity 0.15s ease; transform: none; }
}
@media (max-width: 900px) {
  .service-picker { grid-template-columns: 1fr; gap: 32px; }
  .service-picker-card { padding: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   WORK PAGE
   ═══════════════════════════════════════════════════════════ */
/* ── Work page filters ───────────────────────────────────── */
.work-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.work-filter-btn {
  padding: 9px 22px;
  border: 1.5px solid #d0d0d8;
  border-radius: 9999px;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.work-filter-btn:hover,
.work-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Work grid + cards ───────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 28px;
}
.work-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.work-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 4px;
}
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.work-card:hover .work-card-img img { transform: scale(1.04); }
.work-card-info {
  padding: 14px 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.work-card-title {
  flex: 1 1 auto;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.work-card-tag {
  flex: 0 0 auto;
  background: var(--pink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.work-card[hidden] { display: none; }
@media (max-width: 991px) {
  .work-grid { gap: 28px 20px; }
}
@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; gap: 24px; }
  .work-filters { flex-direction: column; align-items: stretch; gap: 8px; }
  .work-filter-btn { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   NEWS / BLOG LISTING PAGE
   ═══════════════════════════════════════════════════════════ */
.news-page { background: var(--off-white); }
.news-controls {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray);
}
.news-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.news-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.news-cat-btn {
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gray);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.news-cat-btn:hover, .news-cat-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.news-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray);
  background: var(--white);
  overflow: hidden;
}
.news-search input {
  border: none;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  width: 220px;
  color: var(--black);
}
.news-search input::placeholder { color: #aaa; }
.news-search button {
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.news-search button:hover { background: var(--pink); }
.news-grid-wrap { padding: 60px 0 100px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-article-card {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.news-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-article-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.news-card-img-overlay h3 {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
}
.news-card-body {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.news-card-cat {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  background: var(--pink);
  padding: 5px 12px;
  border-radius: 9999px;
}
.news-card-read {
  font-size: 0.72rem;
  color: var(--gray-mid);
}
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 56px;
}
.news-page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border: 1px solid var(--gray);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.news-page-btn:hover:not(:disabled),
.news-page-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.news-page-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
@media (max-width: 991px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-controls-inner { flex-direction: column; align-items: flex-start; }
  .news-grid-wrap { padding: 40px 0 60px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-section { padding: 0; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
  padding: 20px 0 24px;
  align-items: start;
}
.contact-page-info h2 { margin-bottom: 24px; }
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.contact-info-item p {
  font-size: 0.95rem;
  color: #555;
}
.contact-info-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; padding: 15px 0 18px; }
}

/* Dark variant: navy background, white type, so the white form stays visible */
.contact-section--dark { background: var(--navy); }
.contact-section--dark .contact-page-info h2 { color: var(--white); }
.contact-section--dark .contact-page-info > p { color: rgba(255,255,255,0.75); font-size: 2rem; line-height: 1.4; margin-bottom: 8px; }
.contact-section--dark .contact-info-item address { color: rgba(255,255,255,0.85); }
.contact-section--dark .contact-info-item a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.contact-section--dark .contact-info-item a:hover { color: var(--pink); }

/* ═══════════════════════════════════════════════════════════
   BLOG POST INTERIOR PAGE
   ═══════════════════════════════════════════════════════════ */
.post-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.post-hero--photo { background: none; }
.post-hero--photo .post-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.post-hero--photo .post-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(33, 39, 78, 0.88);
}
.post-hero--photo .container { position: relative; z-index: 1; }

/* Split layout: image left, dark info panel right (same total height as other hero variants) */
.post-hero--split {
  padding: 0;
  height: clamp(560px, 62vh, 620px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.post-hero--split .post-hero-media {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.post-hero--split .post-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-hero--split .post-hero-info {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
  gap: 22px;
}
.post-hero--split .post-meta { margin-bottom: 0; justify-content: center; }
.post-hero--split .post-hero-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}
.post-hero.post-hero--split h1 {
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.28;
  max-width: 480px;
}
.post-hero--split .post-hero-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 6px;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.post-hero--split .post-author { color: rgba(255,255,255,0.75); }
.post-hero--split .post-hero-share {
  position: relative;
  display: inline-block;
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin-top: 6px;
  transition: color var(--transition);
}
.post-hero--split .post-hero-share:hover { color: var(--white); }

/* Toast confirmation shown after copying the share link */
.share-toast {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  background: var(--white);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.share-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 900px) {
  .post-hero--split {
    grid-template-columns: 1fr;
    height: auto;
  }
  .post-hero--split .post-hero-media { height: 280px; }
  .post-hero--split .post-hero-info { padding: 40px 28px; }
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.post-cat {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  background: var(--pink);
  padding: 6px 14px;
  border-radius: 9999px;
}
.post-date, .post-read {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.post-hero h1 {
  color: var(--white);
  max-width: 820px;
  font-size: clamp(1.65rem, 3.75vw, 3rem);
}
.post-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 70px 40px 100px;
}
.post-body h2 { margin: 48px 0 16px; font-size: clamp(1.2rem, 2.3vw, 1.85rem); }
.post-body h2[id], .post-body h3[id] { scroll-margin-top: 100px; }
.post-body h3 { margin: 36px 0 12px; color: var(--navy); font-size: clamp(1.15rem, 2.2vw, 1.6rem); }
.post-body h4 { margin: 28px 0 14px; color: var(--navy); }
.post-body p { margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; color: #333; }
.post-body ul { margin: 0 0 20px 24px; list-style: disc; }
.post-body ol { margin: 0 0 20px 24px; list-style: decimal; }
.post-body li { font-size: 1.05rem; line-height: 1.75; color: #333; margin-bottom: 8px; padding-left: 4px; }
.post-body li::marker { color: var(--pink); }
.post-body p a, .post-body li a, .post-body blockquote a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-body p a:hover, .post-body li a:hover, .post-body blockquote a:hover { color: var(--navy); }
.post-body img { margin: 32px 0; width: 100%; border-radius: 0; }
.post-body img[src="[image-placeholder]"] {
  aspect-ratio: 16 / 9;
  height: auto;
  background: var(--off-white);
  border: 2px dashed var(--gray);
  object-fit: none;
  font-size: 0.9rem;
  color: var(--gray-mid);
  font-style: italic;
  text-align: center;
}
.post-body blockquote {
  border-left: 4px solid var(--pink);
  margin: 32px 0;
  padding: 16px 24px;
  background: var(--off-white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #444;
  font-style: italic;
}
@media (max-width: 767px) {
  .post-body { padding: 50px 20px 70px; }
}

/* ── Back to News link (post hero) ───────────────────────── */
.post-back-link {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 14px;
  transition: color var(--transition);
}
.post-back-link:hover { color: var(--white); }

/* ── Read Previous / Read Next post navigation ───────────── */
.post-nav {
  border-top: 1px solid #eee;
  padding: 48px 0;
}
.post-nav-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
}
.post-nav-link--next { text-align: right; margin-left: auto; align-items: flex-end; }
.post-nav-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
}
.post-nav-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
  transition: color var(--transition);
}
.post-nav-link:hover .post-nav-title { color: var(--pink); }
@media (max-width: 600px) {
  .post-nav-inner { flex-direction: column; }
  .post-nav-link--next { text-align: left; margin-left: 0; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   ENTRANCE ANIMATIONS
   body.js-anim added by JS — no animation without JS.
   ═══════════════════════════════════════════════════════════ */

/* Initial hidden state for scroll-triggered elements */
body.js-anim [data-anim] {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
body.js-anim [data-anim="fade-up"]  { transform: translateY(48px); }
body.js-anim [data-anim="fade-in"]  { transform: none; }
/* Line expands from left — opacity stays 1 so only transform animates */
body.js-anim [data-anim="line"] {
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 1;
}
/* Triggered state — higher specificity wins over type-specific rules */
body.js-anim [data-anim].is-visible { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE REFINEMENTS
   These rules come last so they override per-component
   breakpoints above. Order: largest → smallest.
   Breakpoints: 1280 | 1100 | 991 | 767 | 480
   ═══════════════════════════════════════════════════════════ */

/* ── Smaller desktop (1280px) ────────────────────────────── */
@media (max-width: 1280px) {
  .split-layout { gap: 60px; }
  .split-image img { height: 440px; }
}

/* ── Mid-range container padding (1100px) ────────────────── */
@media (max-width: 1100px) {
  .container,
  .container-wide { padding: 0 32px; }
}

/* ── Tablet (991px) ──────────────────────────────────────── */
@media (max-width: 991px) {
  /* Services: go straight to 1-col to avoid the orphan card
     that appears when 3 items fall into a 2-col grid */
  .services-grid { grid-template-columns: 1fr; }

  /* Interior page and post hero: reduce top padding */
  .page-hero { padding: 130px 0 60px; }
  .post-hero { padding: 130px 0 60px; }

  /* Section vertical spacing */
  .services-sec,
  .testi-sec,
  .approach-sec,
  .contact-sec { padding: 80px 0; }
  .contact-sec { padding-top: 32px; }
  .blog-sec { padding: 80px 0 40px; }
  .content-section { padding: 70px 0; }
  .news-grid-wrap { padding: 50px 0 70px; }
  .contact-page-grid { padding: 15px 0 18px; }
}

/* ── Mobile (767px) ──────────────────────────────────────── */
@media (max-width: 767px) {
  /* Restore 20px container padding — overrides 1100px rule */
  .container,
  .container-wide { padding: 0 20px; }

  /* Interior hero */
  .page-hero { padding: 110px 0 50px; }
  .post-hero { padding: 110px 0 50px; }

  /* Blog homepage cards: 16:9 is less tall in single-col */
  .blog-card { aspect-ratio: 16 / 9; }

  /* Split image height in 1-col layout */
  .split-image img { height: 260px; }

  /* Section padding */
  .services-sec,
  .testi-sec,
  .approach-sec,
  .contact-sec { padding: 60px 0; }
  .contact-sec { padding-top: 24px; padding-bottom: 30px; }
  .blog-sec { padding: 60px 0 30px; }

  /* News search: full width inside the stacked column */
  .news-search { width: 100%; }
  .news-search input { flex: 1; width: 0; }

  /* Footer */
  .site-footer { padding-top: 30px; }
}

/* ── Small mobile (480px) ────────────────────────────────── */
@media (max-width: 480px) {
  /* Hero heading */
  .hero-content h1 { font-size: 2.2rem; letter-spacing: -0.01em; }

  /* Interior hero */
  .page-hero { padding: 130px 0 40px; }
  .post-hero { padding: 130px 0 40px; }
  .page-hero h1, .post-hero h1 { font-size: 2rem; }

  /* Content sections */
  .content-section { padding: 50px 0; }
  .news-grid-wrap { padding: 30px 0 50px; }
  .contact-page-grid { padding: 12px 0 16px; gap: 32px; }

  /* Work cards: 3:2 less tall than 4:3 in single col */
  .work-card-img { aspect-ratio: 3 / 2; }

  /* Card padding reductions */
  .testi-card { padding: 24px 20px; }
  .service-card { padding: 32px 24px; }
  .feature-card-body { padding: 28px 24px 32px; }
  .news-card-body { padding: 14px 16px; }

  /* Footer */
  .footer-grid { gap: 24px; }
  .footer-bottom { padding: 20px 0; }
}

/* ═══════════════════════════════════════════════════════════
   BIRD MASCOT
   ═══════════════════════════════════════════════════════════ */
.bird-mascot {
  position: fixed;
  width: 100px;
  z-index: 9000;
  pointer-events: none;
  opacity: 0;
}

@keyframes birdSwoop {
  0%   { transform: translateX(calc(-100vw + 35px)) translateY(calc(-100vh + 19px)) rotate(-30deg); opacity: 0; }
  5%   { opacity: 1; }
  55%  { transform: translateX(calc(-48vw + 60px)) translateY(calc(-38vh + 50px)) rotate(-10deg); }
  85%  { transform: translateX(20px) translateY(-18px) rotate(5deg); }
  100% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 1; }
}

.bird-mascot.is-swooping {
  animation: birdSwoop 3.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wingFlap {
  0%   { transform: rotate(15deg); }
  40%  { transform: rotate(-45deg); }
  65%  { transform: rotate(-45deg); }
  100% { transform: rotate(15deg); }
}

.bird-mascot.is-flying #bird-wing {
  transform-box: fill-box;
  transform-origin: 97% 48%;
  animation: wingFlap 0.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

/* ── Perch branches ── */
.bird-perch {
  position: fixed;
  bottom: 0;
  z-index: 8999;
  pointer-events: none;
}
.bird-perch--right { right: 0; }
.bird-perch--left  { left: 0; }

/* ── "Scroll for more" hint ── */
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
.scroll-hint {
  position: fixed;
  bottom: 32px;
  right: 40px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 9001;
}
.scroll-hint.is-visible {
  opacity: 1;
  animation: scrollBounce 1.4s ease-in-out 0.6s infinite;
}

@media (max-width: 767px) {
  .bird-mascot { width: 56px; }
  .scroll-hint { display: none; }
  .bird-perch  { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   RFP / GOOGLE ADS LANDING PAGES (ads-only, not in main nav)
   ═══════════════════════════════════════════════════════════ */
.rfp-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
}
.rfp-hero .container { max-width: 780px; }
.rfp-hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 16px;
}
.rfp-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
.rfp-hero-desc { color: rgba(255,255,255,0.8); font-size: 1.15rem; line-height: 1.7; max-width: 640px; margin: 24px auto 0; }
.rfp-hero-note { color: rgba(255,255,255,0.6); font-size: 1rem; margin-top: 12px; }
.rfp-hero-ctas { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 36px; }
.rfp-hero-ctas .rfp-link { color: rgba(255,255,255,0.7); font-size: 0.9rem; text-decoration: underline; }
.rfp-hero-ctas .rfp-link:hover { color: var(--white); }

.rfp-intro { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.rfp-intro p { color: #555; font-size: 1.1rem; line-height: 1.75; margin-top: 16px; }

.rfp-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 920px; margin: 0 auto; }
.rfp-compare-col { padding: 32px; border-radius: 16px; }
.rfp-compare-col--old { background: #f5f5f5; }
.rfp-compare-col--new { background: var(--navy); color: var(--white); }
.rfp-compare-col h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; color: inherit; }
.rfp-compare-col--old h3 { color: #888; }
.rfp-compare-col--new h3 { color: rgba(255,255,255,0.6); }
.rfp-compare-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.rfp-compare-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; line-height: 1.5; }
.rfp-compare-mark { flex-shrink: 0; font-weight: 700; }
.rfp-compare-col--old .rfp-compare-mark { color: #c0392b; }
.rfp-compare-col--new .rfp-compare-mark { color: var(--pink); }
.rfp-compare-col--old li { color: #555; }
.rfp-compare-col--new li { color: rgba(255,255,255,0.9); }

.rfp-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.rfp-pillar h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 12px; }
.rfp-pillar p { color: #555; line-height: 1.7; margin-bottom: 16px; }
.rfp-pillar-stat { background: var(--off-white); border-left: 3px solid var(--pink); padding: 14px 18px; font-size: 0.9rem; color: var(--navy); font-weight: 600; line-height: 1.4; }

.rfp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.rfp-step { text-align: center; }
.rfp-step-num { font-family: var(--font-serif); font-size: 2.5rem; color: var(--pink); margin-bottom: 12px; }
.rfp-step h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 10px; }
.rfp-step p { color: #555; font-size: 0.95rem; line-height: 1.6; }

.rfp-why-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.rfp-why-list li { color: #333; font-size: 1.02rem; line-height: 1.6; padding-left: 28px; position: relative; }
.rfp-why-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--pink); font-weight: 700; }

.rfp-testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.rfp-testi-card { background: var(--off-white); border-radius: 16px; padding: 32px; }
.rfp-testi-card p.rfp-quote { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); line-height: 1.6; margin-bottom: 16px; }
.rfp-testi-card p.rfp-attribution { color: var(--pink); font-weight: 700; font-size: 0.9rem; margin: 0; }

.rfp-faq-item { border-bottom: 1px solid #e5e5e5; padding: 24px 0; }
.rfp-faq-item h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }
.rfp-faq-item p { color: #555; line-height: 1.7; margin: 0; }
.rfp-faq-item ul { margin: 10px 0 0 20px; color: #555; }

@media (max-width: 900px) {
  .rfp-compare, .rfp-pillars, .rfp-steps, .rfp-testi-grid { grid-template-columns: 1fr; }
  .rfp-hero { padding: 130px 0 60px; }
}
