/* ==========================================================================
   SPANLY — HOMEPAGE STYLES
   Brand fonts: Helvetica Now (headings), Nourd (body) — drop @font-face later
   ========================================================================== */

:root {
  /* Brand colours */
  --c-purple: #280F91;
  --c-blue:   #5170FF;
  --c-green:  #C5FFBC;
  --c-mist:   #F1F3F5;
  --c-white:  #FFFFFF;
  --c-ink:    #1a0a5a; /* deeper text on light bg */

  /* Typography */
  --f-head: 'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --f-body: 'Nourd', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --radius: 18px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-purple);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1,h2,h3,h4 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
p { margin: 0 0 1em; }

/* ---------- HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--c-purple);
  margin-bottom: 1.25em;
}

/* Logo style — "Spanly" with strikethrough or accent on the L */
.logo-text {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -.02em;
}
.logo-img {
  display: block;
  width: auto;
  height: 1.75rem;
}
.logo-img--nav { height: 2.625rem; }
.logo-img--how { height: clamp(2rem, 3.5vw, 3rem); }
.logo-img--contact { height: 2.25rem; }
.logo-accent {
  position: relative;
  display: inline-block;
}
.logo-accent::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

/* Pill highlight (e.g. "Remote", "Works") */
.pill {
  display: inline-block;
  padding: .05em .35em;
  border-radius: 999px;
  line-height: 1;
}
.pill--green { background: var(--c-green); color: var(--c-purple); }
.pill--purple { background: var(--c-purple); color: var(--c-white); }
.pill--blue { background: var(--c-blue); color: var(--c-purple); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--c-blue); color: var(--c-white); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(81,112,255,.55); }
.btn--green { background: var(--c-green); color: var(--c-purple); }
.btn--green:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(197,255,188,.7); }
.btn--small { padding: .65rem 1.2rem; font-size: .9rem; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-purple);
  color: var(--c-white);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.nav__logo { color: var(--c-white); }
.nav__menu ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}
.nav__menu a {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: .95rem;
  transition: opacity .2s;
}
.nav__menu a:hover { opacity: .75; }
.nav__menu .btn { color: var(--c-white); }

/* Active page indicator — blue underline on the nav link matching the current page */
.nav__menu a.is-active {
  position: relative;
}
.nav__menu a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: #002eff;
  border-radius: 2px;
}
/* The .btn variant (Book a demo) should not get the underline */
.nav__menu .btn.is-active::after { display: none; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-left: auto; /* push to right on mobile */
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: var(--c-purple);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

/* Africa silhouette decoration — sits behind the hero text on the right */
.hero__africa {
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translateY(-50%);
  width: clamp(280px, 36vw, 520px);
  height: auto;
  opacity: .6;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

/* Hero media: just the image, no decorative shapes */
.hero__media {
  position: relative;
  max-width: 560px;
}
.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Centered text content */
.hero__content {
  text-align: center;
}
.hero__title {
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  margin-bottom: .7em;
}
.hero__lede {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  max-width: 42ch;
  margin: 0 auto 2rem;
  opacity: .95;
  line-height: 1.55;
}

/* Strap line */
.hero__strap {
  position: relative;
  z-index: 2;
  background: var(--c-blue);
  color: var(--c-white);
  padding: .85rem var(--gutter);
  text-align: center;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(.75rem, 1.4vw, .95rem);
  letter-spacing: .04em;
}
.hero__strap p { margin: 0; }
.hero__strap .dot { opacity: .65; margin: 0 .3em; }

/* ==========================================================================
   WHY SOUTH AFRICA
   ========================================================================== */
.why {
  background: var(--c-green);
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.why .section-title { text-align: center; }

/* Stage = relative wrapper. Image is the backdrop, stat boxes overlay corners. */
.why__stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.why__media {
  width: 95%;
  max-width: 1100px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.why__stat {
  position: absolute;
  z-index: 2;
  background: var(--c-purple);
  color: var(--c-white);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2.2vw, 1.75rem);
  width: clamp(180px, 22%, 260px);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .3s var(--ease);
}
.why__stat:hover { transform: translateY(-4px); }
.why__stat h3 {
  font-size: clamp(.95rem, 1.25vw, 1.15rem);
  margin: 0;
  line-height: 1.3;
}

/* Four corner positions */
.why__stat--tl { top: 18%;  left: 0; }
.why__stat--tr { top: 18%;  right: 0; }
.why__stat--bl { bottom: 8%; left: 0; }
.why__stat--br { bottom: 8%; right: 0; }

/* ==========================================================================
   ACCESS SKILLED TALENT
   ========================================================================== */
.access {
  background: var(--c-mist);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}
.access__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.access__heading {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem);
  isolation: isolate;
}
.access__heading::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/section6-2.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.access__heading h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  color: var(--c-purple);
  position: relative;
  margin: 0;
}
.access__body {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem);
  isolation: isolate;
}
.access__body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/section2-1.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.access__kicker {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--c-purple);
  letter-spacing: .01em;
  margin-bottom: 1.5em;
  text-transform: uppercase;
}
.access__body p { color: var(--c-purple); font-size: 1rem; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how {
  background: var(--c-blue);
  color: var(--c-white);
  padding: clamp(3rem, 8vw, 6rem) 0 0;
  position: relative;
  overflow: hidden;
  min-height: 750px;
}
.how .container {
  position: relative;
  z-index: 1;
}
.how__header {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.how__brand {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}
.how__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin: 0;
}
.how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: end;
  position: relative;
}
.how__steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: clamp(3rem, 8vw, 6rem);
  position: relative;
  z-index: 2; /* sits above the oversized image */
}

/* Background image - absolutely positioned, spans large area, sits behind everything.
   Aspect ratio is preserved by letting height follow width (auto). */
.how__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 95%;
  max-height: 900px;
  max-width: 90%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* On tablet/mobile the section stacks tall — switch to width-based sizing
   so the portrait shrinks proportionally instead of stretching. */
@media (max-width: 880px) {
  .how__bg {
    height: auto;
    width: 70%;
    max-width: 360px;
    max-height: none;
    opacity: 0.35; /* fade behind the stacked text for legibility */
  }
}
.how__media-spacer {
  /* Placeholder to keep the 3-column grid intact */
}

/* Step icons — purple circle with white arrow */
.step__icon {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-purple);
  margin-bottom: .85rem;
  color: var(--c-white);
}
.step__icon svg { width: 18px; height: 18px; }
.step h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--c-white);
  margin-bottom: .5em;
  font-weight: 600;
}
.step p {
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
  color: var(--c-white);
  opacity: .95;
}

/* ==========================================================================
   FAQS
   ========================================================================== */
.faqs {
  background: var(--c-mist);
  padding: clamp(3rem, 8vw, 6rem) 0 0; /* zero bottom so next section is flush with portrait */
  position: relative;
  overflow: hidden;
}
.faqs__bg {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  width: 38%;
  max-width: 520px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.faqs .container {
  position: relative;
  z-index: 1;
}
.faqs .section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: .7em;
}
.faqs__row {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.faqs__row--four { grid-template-columns: repeat(4, 1fr); }
.faqs__row--two { grid-template-columns: repeat(2, 1fr); }

.faq-card {
  background: var(--c-green);
  color: var(--c-purple);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -18px rgba(40,15,145,.35);
}
.faq-card__icon {
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--c-purple);
  margin-bottom: 1rem;
  color: var(--c-purple);
}
.faq-card__icon svg { width: 16px; height: 16px; }
.faq-card h3 {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin-bottom: .65em;
  line-height: 1.2;
}
.faq-card p {
  font-size: .9rem;
  line-height: 1.55;
  margin: 0;
}

.faqs__split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.faqs__portrait {
  position: relative;
  width: 100%;
}
.faqs__portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   GET IN TOUCH
   ========================================================================== */
.contact {
  background: var(--c-blue);
  color: var(--c-white);
  padding: clamp(3rem, 8vw, 5rem) 0 0; /* zero bottom padding so team photo sits flush */
  overflow: hidden;
}
.contact__brand { margin-bottom: 1.5rem; }
.contact__logo { font-size: 2rem; }

.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end; /* anchor children to the bottom of the row */
}
.contact__media {
  overflow: hidden;
  background: transparent;
}
.contact__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.contact__pitch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: clamp(2rem, 5vw, 3.5rem); /* breathing room above section bottom */
}
.contact__bubble {
  background-image: url('images/section6-2.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--c-purple);
  padding: clamp(3.5rem, 6vw, 5rem) clamp(4rem, 7vw, 6rem) clamp(4.5rem, 8vw, 6.5rem) clamp(2.5rem, 4vw, 3.5rem);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  width: 100%;
  min-height: clamp(340px, 30vw, 420px);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.contact__bubble p { margin: 0; }
.contact__cta {
  margin-top: .25rem;
  background: var(--c-green);
  color: var(--c-purple);
}
.contact__cta:hover { box-shadow: 0 12px 24px -10px rgba(197,255,188,.7); }
.contact__cta svg {
  background: var(--c-purple);
  color: var(--c-white);
  width: 1.6em;
  height: 1.6em;
  padding: .4em;
  border-radius: 50%;
  box-sizing: border-box;
}
.contact__url {
  text-decoration: underline;
  font-size: .95rem;
  opacity: .85;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--c-purple);
  color: var(--c-white);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.footer__col h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: .5em;
}
.footer__col h4 {
  font-size: 1.05rem;
  margin-bottom: 1em;
}
.footer__col p { font-size: .95rem; opacity: .92; margin: 0; }
.footer__col--center { display: flex; flex-direction: column; align-items: center; gap: .85rem; text-align: center; }
.footer__sub { font-size: .85rem; opacity: .8; }

.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
}
.footer__contact svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer__contact a { transition: opacity .2s; }
.footer__contact a:hover { opacity: .75; }

.footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: .8rem;
  opacity: .65;
}
.footer__legal p { margin: 0; }

/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 480px; margin: 0 auto; }
  .hero__africa { opacity: .35; right: -10%; }

  .why__stage { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 600px; }
  .why__media { grid-column: 1 / -1; width: 100%; max-width: 100%; }
  .why__stat { position: static; width: auto; }

  .access__grid { grid-template-columns: 1fr; gap: 2rem; }

  .how__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .how__media { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; order: -1; }

  .faqs__row--four { grid-template-columns: repeat(2, 1fr); }
  .faqs__split { grid-template-columns: 1fr; }
  .faqs__portrait { max-width: 420px; margin: 0 auto; }
  .faqs__bg { width: 45%; right: -8%; opacity: .6; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__media { max-width: 520px; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer__col--center { align-items: center; }
  .footer__contact { align-items: center; }
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 640px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-purple);
    border-top: 1px solid rgba(255,255,255,.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
  }
  .nav__menu.is-open { max-height: 360px; }
  .nav__menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter);
  }
  .nav__menu li { padding: .65rem 0; }
  .nav__menu .btn { align-self: flex-start; }

  .why__stage { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .how__header { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .faqs__row--four { grid-template-columns: 1fr; }
  .faqs__row--two { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   FONT-FACE STUBS (uncomment & point to real files when licensed)
   ==========================================================================
@font-face {
  font-family: 'Helvetica Now';
  src: url('fonts/HelveticaNowDisplay.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'Nourd';
  src: url('fonts/Nourd-Regular.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
*/

/* ==========================================================================
   WHY-US PAGE STYLES
   All classes prefixed .wu- to scope them to this page and avoid collisions.
   ========================================================================== */

/* ---------- SECTION 1: HERO ---------- */
.wu-hero {
  background: var(--c-purple);
  color: var(--c-white);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 0; /* tight top, zero bottom — image extends to edge */
  position: relative;
  overflow: hidden;
}
.wu-hero__shapes {
  position: absolute;
  left: -4%;
  top: 10%;
  width: 45%;
  max-width: 600px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.wu-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 600px;
}
.wu-hero__media {
  position: relative;
  align-self: stretch;
}
.wu-hero__image {
  position: absolute;
  bottom: 0;
  left: 0; /* anchor to left edge, not centered */
  transform: none;
  display: block;
  width: 100%;
  height: auto;
  max-width: 816px;
}
.wu-hero__content {
  align-self: center;
  padding: clamp(1rem, 2vw, 2rem) 0;
}
.wu-hero__title {
  font-size: 2.5rem;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .35em;
}
.wu-hero__accent { color: var(--c-green); }
.wu-hero__lede {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 60ch;
  opacity: .95;
}
.wu-hero__cta {
  background: var(--c-blue);
  color: var(--c-white);
  padding: 1rem 2.5rem;
}

/* ---------- SECTION 2: SMARTER HIRING ---------- */
.wu-smarter {
  background: #DDF5DD; /* light green from screenshot */
  padding: clamp(3rem, 7vw, 5.5rem) 0 0; /* zero bottom padding so image sits flush */
}
.wu-smarter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end; /* anchor children to bottom of row */
}
.wu-smarter__left {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.wu-smarter__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--c-purple);
  display: flex;
  flex-direction: column;
}
.wu-smarter__accent { color: #8BD68B; }
.wu-smarter__lede {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-purple);
  margin: 0 0 2rem;
  max-width: 42ch;
}
.wu-smarter__image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: auto; /* push image to bottom of flex column */
}
.wu-smarter__right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem); /* keep right column off the section bottom */
}

.wu-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 18px -8px rgba(40, 15, 145, .15);
}
.wu-feature__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}
.wu-feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.wu-feature__icon svg { width: 24px; height: 24px; }
.wu-feature__body h3 {
  font-size: 1.1rem;
  color: var(--c-purple);
  margin: 0 0 .25em;
  font-weight: 700;
}
.wu-feature__body p {
  font-size: .9rem;
  line-height: 1.5;
  color: var(--c-purple);
  margin: 0;
  opacity: .85;
}

/* ---------- SECTION 3: WHAT WE DO ---------- */
.wu-what {
  background: var(--c-mist);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.wu-what__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.wu-what .container { position: relative; z-index: 1; }
.wu-what__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--c-purple);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.wu-what__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.wu-do {
  display: flex;
  align-items: stretch;
  background: var(--c-purple);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px -10px rgba(40, 15, 145, .25);
}
.wu-do__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  padding: .85rem;
  background: #B5F0B5; /* light green tile */
  border-radius: var(--radius) 0 0 var(--radius); /* rounded only on the outer (left) side */
  margin: .5rem 0 .5rem .5rem; /* inset so the tile shows the card's purple edge */
  border-radius: 14px;
}
.wu-do__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.wu-do__icon svg { width: 28px; height: 28px; }
.wu-do__body {
  padding: 1.1rem 1.25rem;
  color: var(--c-white);
}
.wu-do__body h3 {
  font-size: 1.5rem;
  margin: 0 0 .35em;
  font-weight: 700;
}
.wu-do__body p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  opacity: .9;
}

/* ---------- SECTION 4: MEET THE TEAM ---------- */
.wu-team {
  background: var(--c-mist);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.wu-team__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.wu-team__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--c-purple);
  margin: 0 0 1.25rem;
  line-height: 1.15;
}
.pill--mint { background: #6FE3B5; color: var(--c-purple); }
.wu-team__lede {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--c-purple);
  margin: 0 0 1.75rem;
}
.wu-team__cta {
  background: var(--c-purple);
  color: var(--c-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .85rem;
  max-width: 280px;
}
.wu-team__btn {
  background: var(--c-blue);
  color: var(--c-white);
}
.wu-team__btn svg {
  background: var(--c-purple);
  color: var(--c-white);
  width: 1.6em;
  height: 1.6em;
  padding: .4em;
  border-radius: 50%;
  box-sizing: border-box;
}
.wu-team__url {
  color: var(--c-white);
  text-decoration: underline;
  font-size: .9rem;
  opacity: .9;
}

.wu-team__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.7rem, 1.6vw, 1rem);
}
.wu-member {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px -10px rgba(40, 15, 145, .2);
  display: flex;
  flex-direction: column;
}
.wu-member__photo {
  aspect-ratio: 1 / 1;
  background: var(--c-blue);
}
.wu-member__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wu-member__photo--blue { background: var(--c-blue); }
.wu-member__photo--green { background: #B5F0B5; }
.wu-member__info {
  padding: .85rem 1rem 1.15rem;
}
.wu-member__info h3 {
  font-size: 1rem;
  color: var(--c-purple);
  margin: 0 0 .25em;
  font-weight: 700;
}
.wu-member__info p {
  font-size: .82rem;
  color: #2E8B2E;
  margin: 0;
  font-weight: 700;
}

/* ---------- WHY-US RESPONSIVE — TABLET ---------- */
@media (max-width: 960px) {
  .wu-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  /* On mobile the text comes first, the image sits at the bottom of the section */
  .wu-hero__content {
    order: 1;
    align-self: start;
  }
  .wu-hero__media {
    order: 2;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    min-height: auto;
    position: static; /* image becomes inline rather than anchored */
  }
  .wu-hero__image {
    position: static;
    transform: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: block;
  }
  .wu-hero__shapes { opacity: .4; width: 70%; left: -15%; }
  .wu-hero {
    padding-bottom: 0;
  }

  .wu-smarter__grid { grid-template-columns: 1fr; }

  .wu-what__grid { grid-template-columns: 1fr; }
  .wu-what__bg { width: 80%; opacity: .5; }

  .wu-team__grid { grid-template-columns: 1fr; }
  .wu-team__cards { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- WHY-US RESPONSIVE — MOBILE ---------- */
@media (max-width: 640px) {
  .wu-team__cards { grid-template-columns: 1fr; }
  .wu-team__cta { max-width: 100%; align-self: stretch; }

  .wu-do__icon { width: 72px; padding: .65rem; }
  .wu-do__icon svg { width: 24px; height: 24px; }
}

/* ==========================================================================
   TALENT PAGE STYLES
   All classes prefixed .tl- to scope them to this page.
   ========================================================================== */

/* ---------- SECTION 1: HERO ---------- */
.tl-hero {
  background: var(--c-purple);
  color: var(--c-white);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 0; /* tight top, zero bottom — image extends to edge */
  position: relative;
  overflow: hidden;
}
.tl-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  position: relative;
  min-height: 520px;
}
.tl-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 2vw, 2rem) 0;
}
.tl-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25em;
  font-weight: 700;
}
.tl-hero__accent { color: var(--c-green); }
.tl-hero__lede {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 50ch;
  opacity: .95;
}
.tl-hero__cta {
  background: var(--c-green);
  color: var(--c-purple);
  padding: 1rem 2rem;
  font-weight: 600;
}
.tl-hero__cta svg { width: 1.1em; height: 1.1em; }
.tl-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(197,255,188,.7);
}

.tl-hero__media {
  position: relative;
  align-self: stretch;
  min-height: 480px;
}
.tl-hero__shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.tl-hero__image {
  position: absolute;
  bottom: 0;
  left: 28%;
  transform: translateX(-50%);
  z-index: 1;
  display: block;
  width: 85%;
  max-width: 460px;
  height: auto;
}
.tl-hero__cards {
  position: absolute;
  top: 50%;
  right: -8%;
  z-index: 3;
  width: 45%;
  max-width: 240px;
  height: auto;
  pointer-events: none;
  user-select: none;
  /* Smooth up/down float. translateY(-50%) keeps it vertically centred. */
  animation: tl-cards-float 4s ease-in-out infinite;
}

/* Gentle float — offsets are added on top of the -50% centring */
@keyframes tl-cards-float {
  0%, 100% { transform: translateY(calc(-50% - 10px)); }
  50%      { transform: translateY(calc(-50% + 10px)); }
}

@media (prefers-reduced-motion: reduce) {
  .tl-hero__cards {
    animation: none;
    transform: translateY(-50%);
  }
}

/* ---------- SECTION 4: COMPLIANT. SECURE. STRESS-FREE. ---------- */
.tl-compliant {
  background: var(--c-mist);
  padding: clamp(2rem, 5vw, 4rem) 0 0; /* zero bottom padding so block meets footer flush */
}
.tl-compliant__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr;
  gap: 0;
  align-items: stretch;
  /* Full-bleed: this element also has .container, so cancel its
     max-width / auto-centring / gutter padding to span the viewport edge-to-edge */
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}
.tl-compliant__left {
  position: relative;
  background: var(--c-blue);
  color: var(--c-white);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(9rem, 16vw, 14rem) clamp(2rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tl-compliant__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .15em;
  font-weight: 700;
}
.tl-compliant__accent { color: var(--c-green); }
.tl-compliant__lede {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
  opacity: .95;
}
.tl-compliant__shield {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 3vw, 2.5rem);
  transform: translateY(-50%);
  width: clamp(80px, 14vw, 160px);
  height: auto;
  pointer-events: none;
}

.tl-compliant__panel {
  background: var(--c-white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0; /* dividers handled by item borders */
}
.tl-pt {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(.85rem, 1.75vw, 1.5rem);
  position: relative;
}
/* Right border on left-column items (creates vertical divider) */
.tl-pt:nth-child(odd) {
  border-right: 1px solid var(--c-blue);
}
/* Bottom border on top-row items (creates horizontal divider) */
.tl-pt:nth-child(-n+2) {
  border-bottom: 1px solid var(--c-blue);
}
.tl-pt__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.tl-pt__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tl-pt__body h3 {
  font-size: .95rem;
  color: var(--c-purple);
  margin: 0 0 .25em;
  font-weight: 700;
}
.tl-pt__body p {
  font-size: .85rem;
  color: var(--c-purple);
  margin: 0;
  line-height: 1.5;
  opacity: .8;
}

/* ---------- SECTION 3: HOW IT WORKS ---------- */
.tl-how {
  background: var(--c-mist);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.tl-how__title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--c-purple);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}
.tl-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(.5rem, 1vw, 1rem);
}
.tl-step {
  text-align: center;
  position: relative;
}
.tl-step__top {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: .75rem;
}
.tl-step__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(70px, 10vw, 100px);
  height: clamp(70px, 10vw, 100px);
}
.tl-step__circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tl-step__arrow {
  position: absolute;
  bottom: 70%;
  left: 65%;
  width: 70%;
  height: auto;
  pointer-events: none;
}
.tl-step__num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-purple);
  margin: 0 0 .35em;
}
.tl-step h3 {
  font-size: .95rem;
  color: var(--c-purple);
  margin: 0 0 .5em;
  font-weight: 700;
  line-height: 1.25;
}
.tl-step > p:last-child {
  font-size: .8rem;
  color: var(--c-purple);
  margin: 0;
  line-height: 1.5;
  opacity: .85;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- SECTION 4: WHY BUSINESSES CHOOSE SPANLY ---------- */
.tl-why {
  background: #DDF5DD; /* same light green as why-us smarter section */
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.tl-why__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.tl-why__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  color: var(--c-purple);
  margin: 0 0 1rem;
  font-weight: 700;
}
.tl-why__lede {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-purple);
  margin: 0 0 2rem;
  max-width: 40ch;
}
.tl-why__cta {
  background: var(--c-purple);
  color: var(--c-white);
  padding: .9rem 2rem;
}
.tl-why__cta:hover { box-shadow: 0 12px 24px -10px rgba(40,15,145,.55); }

.tl-why__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.tl-perk {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tl-perk__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 8vw, 84px);
  height: clamp(64px, 8vw, 84px);
  margin-bottom: 1rem;
}
.tl-perk__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tl-perk h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-purple);
  margin: 0 0 .5em;
}
.tl-perk p {
  font-size: .85rem;
  color: var(--c-purple);
  margin: 0;
  line-height: 1.5;
  opacity: .85;
  max-width: 22ch;
}

/* ---------- TALENT PAGE RESPONSIVE — TABLET ---------- */
@media (max-width: 960px) {
  .tl-hero {
    padding-bottom: 0;
  }
  .tl-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }
  /* On mobile the text comes first, the image sits at the bottom of the section */
  .tl-hero__content {
    order: 1;
    padding-bottom: 0;
  }
  .tl-hero__media {
    order: 2;
    position: relative;
    align-self: auto;
    min-height: 0;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
  .tl-hero__shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
  }
  .tl-hero__image {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: block;
    margin: 0 auto;
    width: 85%;
    max-width: 460px;
  }
  .tl-hero__cards {
    position: absolute;
    top: 50%;
    right: -2%;
    width: 40%;
    max-width: 220px;
  }

  .tl-compliant__grid { grid-template-columns: 1fr; }
  .tl-compliant__shield { width: 100px; }

  .tl-how__steps { grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2rem); }
  .tl-step__arrow { display: none; }

  .tl-why__grid { grid-template-columns: 1fr; }
  .tl-why__features { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- TALENT PAGE RESPONSIVE — MOBILE ---------- */
@media (max-width: 640px) {
  .tl-compliant__panel { grid-template-columns: 1fr; }
  .tl-pt:nth-child(odd) { border-right: none; }
  .tl-pt:nth-child(-n+3) { border-bottom: 1px solid var(--c-blue); }
  .tl-pt:last-child { border-bottom: none; }

  .tl-how__steps { grid-template-columns: 1fr; }

  .tl-why__features { grid-template-columns: 1fr; gap: 2rem; }
}

/* ==========================================================================
   SOCIALS PAGE STYLES
   All classes prefixed .sc- to scope them to this page.
   ========================================================================== */

/* ---------- SECTION 1: HERO ---------- */
.sc-hero {
  background: var(--c-purple);
  color: var(--c-white);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  position: relative;
  overflow: hidden;
}
.sc-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  min-height: 540px;
}
.sc-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 2vw, 2rem) 0;
}
.sc-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .15em;
  font-weight: 700;
}
.sc-hero__accent { color: var(--c-green); }
.sc-hero__lede {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 48ch;
  opacity: .95;
}
.sc-hero__cta {
  background: var(--c-green);
  color: var(--c-purple);
  padding: 1rem 2rem;
  font-weight: 600;
}
.sc-hero__cta svg { width: 1.1em; height: 1.1em; }
.sc-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(197,255,188,.7);
}

.sc-hero__media {
  position: relative;
  align-self: stretch;
  min-height: 640px;
}
.sc-hero__shapes {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 420px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.sc-hero__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: block;
  width: 126%;
  max-width: 648px;
  height: auto;
}

/* Floating social icons over the hero photo */
.sc-icon {
  position: absolute;
  z-index: 3;
  width: clamp(48px, 6vw, 72px);
  height: clamp(48px, 6vw, 72px);
  display: block;
  pointer-events: none;
  animation: sc-float 6s ease-in-out infinite;
  will-change: transform;
}
.sc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sc-icon--fb { top: 18%; left: 2%;  animation-duration: 6.5s; animation-delay: 0s; }
.sc-icon--ig { top: 18%; right: 12%; animation-duration: 5.5s; animation-delay: -1.2s; }
.sc-icon--tk { bottom: 12%; left: 5%;  animation-duration: 7s;   animation-delay: -2.5s; }
.sc-icon--x  { bottom: 18%; right: 18%; animation-duration: 6s;   animation-delay: -3.8s; }

@keyframes sc-float {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(6px, -8px) rotate(2deg); }
  50%  { transform: translate(-4px, -4px) rotate(-2deg); }
  75%  { transform: translate(-6px, 6px) rotate(1.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sc-icon { animation: none; }
}

/* ---------- SECTION 2: FOLLOW US ---------- */
.sc-follow {
  background: var(--c-blue);
  color: var(--c-white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}
.sc-follow__deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(120px, 18vw, 240px);
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: .55;
}
.sc-follow__deco--left { left: -3%; }
.sc-follow__deco--right { right: -3%; transform: translateY(-50%) scaleX(-1); }
.sc-follow .container {
  position: relative;
  z-index: 1;
}
.sc-follow__heading {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.sc-follow__heading h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 .35em;
  font-weight: 700;
}
.sc-follow__heading p {
  font-size: 1rem;
  margin: 0;
  opacity: .95;
}
.sc-follow__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.75rem, 2vw, 1.25rem);
}
.sc-pill {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--c-purple);
  color: var(--c-white);
  padding: 1rem 1.5rem;
  border-radius: 14px;
  border: 3px solid var(--c-white);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.sc-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(0,0,0,.35);
}
.sc-pill__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: block;
}
.sc-pill__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sc-pill__info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sc-pill__name {
  font-size: 1.05rem;
  font-weight: 700;
}
.sc-pill__handle {
  font-size: .85rem;
  opacity: .85;
  margin-top: .15em;
}

/* ---------- SECTION 3: WHAT'S NEW + LATEST BLOGS ---------- */
.sc-feed {
  background: var(--c-mist);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.sc-feed__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.sc-feed__row + .sc-feed__row {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.sc-feed__intro h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--c-purple);
  margin: 0 0 .75em;
  line-height: 1.15;
  font-weight: 700;
}
.sc-feed__intro p {
  font-size: .95rem;
  color: var(--c-purple);
  margin: 0 0 1.5rem;
  line-height: 1.55;
  max-width: 38ch;
}
.sc-feed__cta {
  background: var(--c-purple);
  color: var(--c-white);
  padding: .85rem 1.75rem;
}
.sc-feed__cta:hover {
  box-shadow: 0 12px 24px -10px rgba(40,15,145,.55);
}
.sc-feed__cta svg { width: 1.1em; height: 1.1em; }
.sc-feed__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* "What's New" placeholder posts */
.sc-post {
  background: var(--c-blue);
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.sc-post__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
}
.sc-post__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sc-post__btn {
  align-self: flex-start;
  background: var(--c-white);
  color: #000;
  font-weight: 600;
  font-size: .95rem;
  padding: .65rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.sc-post__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -6px rgba(0,0,0,.3);
}

/* "Latest Blogs" blog cards */
.sc-blog-link {
  display: flex; /* fill the grid cell and stretch the card to equal height */
}
.sc-blog {
  background: #B5F0B5; /* mint border frame */
  border-radius: var(--radius);
  padding: .5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1; /* fill the link's width */
  height: 100%; /* match the tallest card in the row */
}
.sc-blog__image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-mist);
}
.sc-blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sc-blog__title {
  background: var(--c-white);
  border-radius: 8px;
  padding: .85rem 1rem;
  font-size: .9rem;
  color: var(--c-purple);
  font-weight: 600;
  min-height: 48px;
  flex: 1; /* grow to absorb the difference in title length so all cards match */
  display: flex;
  align-items: center;
}

/* ---------- SOCIALS RESPONSIVE — TABLET ---------- */
@media (max-width: 960px) {
  .sc-hero {
    padding-bottom: 0;
  }
  .sc-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }
  .sc-hero__content { order: 1; padding-bottom: 0; }
  .sc-hero__media {
    order: 2;
    min-height: 0;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
  .sc-hero__shapes { top: 5%; }
  .sc-hero__image { bottom: 0; }

  .sc-follow__cards { grid-template-columns: repeat(2, 1fr); }

  .sc-feed__row { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- SOCIALS RESPONSIVE — MOBILE ---------- */
@media (max-width: 640px) {
  .sc-icon { width: 44px; height: 44px; }

  .sc-follow__cards { grid-template-columns: 1fr; }

  .sc-feed__cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   All classes prefixed .ct- to scope them to this page.
   ========================================================================== */

/* Accessibility helper for visually hidden form labels */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- SECTION 1: HERO ---------- */
.ct-hero {
  background: var(--c-purple);
  color: var(--c-white);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  position: relative;
  overflow: hidden;
}
.ct-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  min-height: 420px;
  position: relative;
}
.ct-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 2vw, 2rem) 0;
}
.ct-hero__title {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25em;
  font-weight: 700;
}
.ct-hero__accent { color: var(--c-green); }
.ct-hero__lede {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 50ch;
  opacity: .95;
}
.ct-hero__cta {
  background: var(--c-green);
  color: var(--c-purple);
  padding: 1rem 2rem;
  font-weight: 600;
}
.ct-hero__cta svg { width: 1.1em; height: 1.1em; }
.ct-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(197,255,188,.7);
}

.ct-hero__media {
  position: relative;
  align-self: stretch;
  min-height: 460px;
}
.ct-hero__shapes {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 480px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.ct-hero__image {
  position: absolute;
  bottom: 0;
  /* Push left edge to viewport edge by canceling the .container's gutter padding */
  left: calc(-1 * var(--gutter));
  transform: none;
  z-index: 1;
  display: block;
  width: calc(117% + var(--gutter));
  max-width: 598px; /* 460px × 1.3 = 598px (30% larger) */
  height: auto;
}

/* ---------- SECTION 2: SEND MESSAGE + GET IN TOUCH ---------- */
.ct-form-section {
  background: var(--c-mist);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ct-form-section__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* --- Left: form --- */
.ct-form-wrap__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--c-purple);
  margin: 0 0 .5em;
  font-weight: 700;
}
.ct-form-wrap__lede {
  font-size: 1rem;
  color: var(--c-purple);
  margin: 0 0 2rem;
  line-height: 1.5;
  max-width: 38ch;
}
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ct-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ct-form__row--two {
  grid-template-columns: 1fr 1fr;
}
.ct-field input,
.ct-field textarea {
  width: 100%;
  background: var(--c-white);
  border: none;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: .95rem;
  color: var(--c-purple);
  box-shadow: 0 2px 8px -4px rgba(40,15,145,.12);
  transition: box-shadow .2s var(--ease);
  resize: vertical;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: var(--c-purple);
  opacity: .7;
}
.ct-field input:focus,
.ct-field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--c-blue), 0 4px 14px -4px rgba(81,112,255,.3);
}
.ct-field textarea {
  min-height: 130px;
  line-height: 1.5;
}
.ct-form__submit {
  margin-top: .5rem;
  background: var(--c-purple);
  color: var(--c-white);
  border: none;
  padding: 1.1rem 1.5rem;
  border-radius: 10px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.ct-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(40,15,145,.55);
}
.ct-form__submit svg { width: 1em; height: 1em; }

/* --- Right: contact cards --- */
.ct-touch {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ct-touch__title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--c-purple);
  margin: 0 0 1rem;
  font-weight: 700;
}
.ct-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--c-white);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--c-purple);
  box-shadow: 0 4px 14px -8px rgba(40,15,145,.15);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.ct-card:not(.ct-card--static):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(40,15,145,.3);
}
.ct-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
}
.ct-card__icon svg { width: 22px; height: 22px; }
.ct-card__icon--blue { background: var(--c-blue); }
.ct-card__icon--green { background: #4ECB71; }
.ct-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 .2em;
  color: var(--c-purple);
}
.ct-card__body p {
  font-size: .9rem;
  margin: 0;
  color: var(--c-purple);
  opacity: .85;
  line-height: 1.4;
}

/* ---------- CONTACT RESPONSIVE — TABLET ---------- */
@media (max-width: 960px) {
  .ct-hero {
    padding-bottom: 0;
  }
  .ct-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }
  .ct-hero__content { order: 1; padding-bottom: 0; }
  .ct-hero__media {
    order: 2;
    min-height: 0;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
  .ct-hero__shapes { top: 5%; }
  .ct-hero__image { bottom: 0; }

  .ct-form-section__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---------- CONTACT RESPONSIVE — MOBILE ---------- */
@media (max-width: 640px) {
  .ct-form__row--two { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BOOKINGS PAGE — additional form styles
   Reuses .ct-* contact page styles; adds field labels + radio pills.
   ========================================================================== */

/* Visible field label (used on the booking form's date/time/meeting fields) */
.ct-field__label {
  display: block;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--c-purple);
  margin-bottom: .5rem;
  letter-spacing: .01em;
}

/* Native date/time inputs — match the visual style of text fields */
.ct-field input[type="date"],
.ct-field input[type="time"] {
  font-family: inherit;
  color: var(--c-purple);
}

/* Radio group — visible pill-style selectable buttons */
.ct-radio-group {
  border: none;
  padding: 0;
  margin: 0;
}
.ct-radio-group__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.ct-radio {
  position: relative;
  cursor: pointer;
}
.ct-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ct-radio__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  background: var(--c-white);
  color: var(--c-purple);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 2px 8px -4px rgba(40,15,145,.12);
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.ct-radio__pill svg {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}
.ct-radio:hover .ct-radio__pill {
  transform: translateY(-1px);
  border-color: rgba(81,112,255,.4);
}
.ct-radio input:checked + .ct-radio__pill {
  border-color: var(--c-blue);
  background: rgba(81,112,255,.08);
}
.ct-radio input:focus-visible + .ct-radio__pill {
  outline: 2px solid var(--c-blue);
  outline-offset: 2px;
}

/* Mobile: radio pills stack */
@media (max-width: 480px) {
  .ct-radio-group__options { grid-template-columns: 1fr; }
}

/* ---------- Contact form status banner + honeypot ---------- */

/* Honeypot: hidden from sighted users and screen readers, visible to bots */
.ct-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Status banner shown above the form after submit redirect */
.ct-status {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: .95rem;
  line-height: 1.5;
  font-weight: 500;
}
.ct-status--ok {
  background: #E8F8E2;
  color: #1f5a14;
  border: 1px solid #B5F0B5;
}
.ct-status--error {
  background: #FFEBEB;
  color: #8a1f1f;
  border: 1px solid #F5C6C6;
}

/* ---------- Contact form sending state + spinner ---------- */
.ct-form__submit.is-sending {
  opacity: .85;
  cursor: not-allowed;
}
.ct-form__submit:disabled {
  cursor: not-allowed;
}
.ct-spinner {
  width: 1.15em;
  height: 1.15em;
  animation: ct-spinner-rotate 0.9s linear infinite;
  transform-origin: center;
}
@keyframes ct-spinner-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .ct-spinner { animation-duration: 2.5s; }
}
