    :root {
      /* Brand colours */
      --brand-blue: #35B6E9; /* buttons / accents */
      --brand-orange: #F79A2C; /* secondary CTA */
      --brand-pink: #ED3B88; /* hero background accent */
      --ink-dark: #254553; /* default text colour */
      --ink-mid: #456A75; /* subtle text */
      --ink-light: #8AA3AA; /* meta text */

      /* Layout */
      --wrap-max: 1350px; /* default wrap */
      --gutter: 20px;

      /* Type scale */
      --font-body: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      --fs-100: 0.875rem;
      --fs-200: 1rem;
      --fs-300: 1.125rem;
      --fs-400: 1.25rem;
      --fs-700: clamp(2.2rem, 4vw + 1rem, 4rem); /* hero heading */

      /* Effects */
      --radius-lg: 16px;
      --shadow-soft: 0 8px 14px rgba(0,0,0,0.2);
        

      --pink-a:#F873B2; /* light */
      --pink-b:#ED3B88; /* brand */
      --pink-c:#C93C7C; /* dark */

      --orange-a: #FFC47A; /* light */
      --orange-b: #F79A2C; /* brand */
      --orange-c: #D6770F; /* dark */

      /* BLUE */
      --blue-a: #7DD6F4;   /* light */
      --blue-b: #35B6E9;   /* brand */
      --blue-c: #1E8FBE;   /* dark */

      /* INK (default text colour) */
      --ink-a: #5A7480;    /* light */
      --ink-b: #254553;    /* brand */
      --ink-c: #152C35;    /* dark */
    }


html, body {
	margin:0; padding:0; background:#FFF; 
	font-family:"proxima-nova", Helvetica, Arial, sans-serif;
	color:#333; font-size:14px; line-height:1.4; font-weight:300;
}


a {
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

a img, a {
	-webkit-transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out; transition: all .5s ease-in-out;
	text-decoration:none; border:none;
}





/* Visually hidden utility (for accessibility links like skip links) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.notice-bar {
  background: var(--brand-blue);
  color: #FFF;
  font-size: 0.9rem;
}

.notice-bar__inner {
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding: 8px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.notice-bar__text {
  margin: auto;
  line-height: 1.4;
}

.notice-bar__text a {
  color: #fff;
  text-decoration: underline;
}

.notice-bar__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-bar__social a img {
  display: block;
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease-in-out;
}

.notice-bar__social a:hover img,
.notice-bar__social a:focus img {
  opacity: 0.7;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .notice-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}










/* Container utility (used by header) */
.container{max-width:var(--wrap-max);margin-inline:auto;padding-inline:var(--gutter);}


/* Header width control so logo/menu don't touch sides */
.site-header{background:#fff;  position:sticky; top:0; z-index:40; box-shadow: var(--shadow-soft); }
.site-header__inner{
  width:96%;
  max-width: var(--wrap-max);
  margin-inline:auto;
  padding-block:12px;
  display:flex; align-items:center; justify-content:space-between;
}

/* Bigger logo */
.brand{display:flex; align-items:center; gap:20px;}
.brand__logo{width:240px; height:auto;}

@media (max-width:540px){ 
    .button--cta-outline { display: none !important; }  
}



/* Base button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}



.button--cta-outline{
  background:transparent;
  color:var(--brand-orange);
  border-color:var(--brand-orange);
    text-transform: uppercase;
}
.button--cta-outline:hover,
.button--cta-outline:focus{
  background:var(--brand-orange);
  color:#fff;
}


.header-cta-group {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Primary CTA */
.button--cta {
  background: transparent;
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.button--cta:hover,
.button--cta:focus {
  background: var(--brand-orange);
  color: #fff;
}

/* Burger */
.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #e9eef1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger:hover { background: #e9eef1; }


.hamburger__bar {
  width: 20px;
  height: 2px;
  background: var(--ink-dark);
  position: relative;
  transition: transform .25s ease, background .25s ease;
}

.hamburger__bar::before, .hamburger__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink-dark);
  transition: transform .25s ease, top .25s ease, opacity .2s;
}

.hamburger__bar::before { top: -6px; }
.hamburger__bar::after { top: 6px; }

.hamburger.is-active .hamburger__bar { background: transparent; }
.hamburger.is-active .hamburger__bar::before { top: 0; transform: rotate(45deg); }
.hamburger.is-active .hamburger__bar::after { top: 0; transform: rotate(-45deg); }


/* ---------- Drawer ---------- */
.drawer{
    
  height: 100vh;     /* fallback */
  height: 100dvh;    /* modern dynamic viewport */
  height: 100svh;    /* small viewport on mobile */
  overflow: hidden;  /* contain internal scroll */
    
  position:fixed; inset:0 0 0 auto; width:min(88vw, 360px); background:#fff; color:var(--ink-dark);
  transform:translateX(100%); transition:transform .3s ease; box-shadow:-10px 0 30px rgba(0,0,0,.12);
  display:flex; flex-direction:column; z-index:60;
}
.drawer.is-open{transform:translateX(0);}

.drawer__header{padding:18px 20px; border-bottom:1px solid #eef2f3;}
.drawer__title{font-weight:900;}

.drawer__list{
      flex: 1 1 auto;
  min-height: 0;                     /* allow flex child to shrink */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* smooth iOS momentum */
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    list-style:none; margin:0; padding:14px 0;
}
.drawer__list > li > a{display:block; padding:12px 20px; color:var(--ink-dark); text-decoration:none; font-weight:700;}
.drawer__list > li > a:hover,.drawer__list > li > a:focus{background:#f6fbfe; color:var(--brand-blue);}

.drawer__group{padding:6px 0;}
.drawer__group-title{display:block; padding:12px 20px; font-weight:900; color:var(--brand-blue);}
.drawer__group-title a { color:var(--brand-blue);}
.drawer__sublist{list-style:none; margin:0; padding:0 0 8px;}
.drawer__sublist a{display:block; padding:10px 28px; color:var(--ink-dark); text-decoration:none;}
.drawer__sublist a:hover,.drawer__sublist a:focus{background:#f6fbfe; color:var(--brand-blue);}

.drawer__footer{
      position: sticky;
  bottom: 0;
  background: #fff;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
    margin-top:auto; padding:18px 20px; border-top:1px solid #eef2f3;}
.drawer__phone{display:inline-block; font-weight:900; color:var(--brand-blue); text-decoration:none; margin-bottom:10px;}
.drawer__social{display:flex; gap:12px;}
.drawer__social svg{fill:var(--ink-dark);}
.drawer__social a:hover svg,.drawer__social a:focus svg{fill:var(--brand-blue);}

/* Backdrop */
.drawer-backdrop{
  position:fixed; inset:0; background:rgba(0,0,0,.28); z-index:50; opacity:0; transition:opacity .3s ease;
}
.drawer-backdrop.is-visible{opacity:1;}


/* Drawer header layout */
.drawer__header{ 
      position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
    display:flex; align-items:center; justify-content:space-between; }

/* Close button (X) */
.drawer__close{
  width:44px; height:44px; flex:0 0 auto;
  border-radius:10px; border:1px solid #e9eef1; background:#fff;
  position:relative; cursor:pointer;
}
.drawer__close::before,
.drawer__close::after{
  content:""; position:absolute; top:50%; left:50%;
  width:20px; height:2px; background:var(--ink-dark);
  margin-left:-10px; margin-top:-1px; transform-origin:center;
}
.drawer__close::before{ transform:rotate(45deg); }
.drawer__close::after { transform:rotate(-45deg); }
.drawer__close:hover{ background:#f6fbfe; border-color:#dbe7ee; }
.drawer__close:focus-visible{ outline:2px solid var(--brand-blue); outline-offset:2px; }








.video-banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: calc(100vh - 95px); /* full height */
  overflow: hidden;
}

.video-banner__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills area nicely */
  z-index: 1;
}



/* Responsive: stack steps on small screens */
@media (max-width: 500px) {

.video-banner { min-height: 450px; height: 450px; }
    .notice-bar { display: none; }


}





/* Scroll cue over the banner */
.scroll-cue{
  position:absolute; left:50%; bottom:30px; transform:translateX(-50%);
  width:48px; height:48px; display:grid; place-items:center;
  border-radius:999px; border:2px solid rgba(255,255,255,.9);
  color:#fff; background:rgba(0,0,0,.18);
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  z-index: 5;
  transition: opacity .25s ease, background .2s ease, border-color .2s ease;
}
.scroll-cue:hover, .scroll-cue:focus-visible{
  background:rgba(0,0,0,.28); border-color:#fff;
  outline: none;
}

.scroll-cue__icon{ width:22px; height:22px; display:block; }
.scroll-cue__inner{ animation: cue-bounce 1.6s ease-in-out infinite; }

@keyframes cue-bounce{
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Hide once user starts scrolling */
.scroll-cue.is-hidden{ opacity:0; pointer-events:none; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .scroll-cue__inner{ animation: none; }
}













/* ===== Our Process ===== */
.process {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 6vw, 80px) 0;
  overflow: hidden;
}

/* Animated brand background */
.process__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue) 50%, var(--brand-pink) 50%, var(--brand-pink) 100%);
  background-size: 200% 200%;
  animation: processSweep 6s ease-in-out infinite alternate;
}
@keyframes processSweep {
  0%   { background-position: 20% 20%; }
  100% { background-position: 80% 80%; }
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .process__bg { animation: none; }
}

.process__wrap { max-width: var(--wrap-max); margin: 0 auto; padding: 0 var(--gutter); }

.process__heading {
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.8rem, 2.8vw + 1rem, 3rem);
  margin: 0 0 50px;
    text-align: center;
}

/* Glassy card */
.process-card {
  background: rgba(255,255,255,0.80);
  backdrop-filter: saturate(1.2) blur(4px);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
  padding: clamp(18px, 3vw, 28px);
}

/* Steps layout: 3 columns with thin dividers; arrows sit between */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr; /* step, arrow, step, arrow, step */
  align-items: center;
  gap: clamp(10px, 2.2vw, 22px);
}

/* Step */
.process-step {
  position: relative;
  text-align: center;
  min-height: 240px;
  max-width: 200px;
  margin: auto;
}


.process-steps img { width: 100%; }


/* Number badge (half in/out) */
.step-badge {
  will-change: top;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  color: #FFF;
  font-weight: 900;
  display: grid; place-items: center;
  box-shadow: 0 0px 12px rgba(0,0,0,.30);
  font-size: 23px;
}



.step-badge-orange { background: var(--brand-orange); }
.step-badge-pink { background: var(--brand-pink); }
.step-badge-blue{ background: var(--brand-blue); }




.process-steps .process-step .step-badge{
  will-change: top;
  animation: badge-one-bounce 6s ease-in-out infinite both;
}

/* bounce shape occurs at the start of the 6s cycle, then rests */
@keyframes badge-one-bounce{
  0%   { top: 0; }
  12%  { top: -14px; }
  20%  { top: -6px; }
  28%  { top: 0; }
  100% { top: 0; }
}

/* desktop structure: steps are children 1, 3, 5 (arrows are 2, 4) */
.process-steps > li:nth-child(1).process-step .step-badge { animation-delay: 0s; }
.process-steps > li:nth-child(3).process-step .step-badge { animation-delay: 2s; }
.process-steps > li:nth-child(5).process-step .step-badge { animation-delay: 4s; }

/* if arrows are removed in your markup, use these instead when supported */
@supports selector(:nth-child(1 of .process-step)){
  .process-steps > li:nth-child(1 of .process-step) .step-badge { animation-delay: 0s; }
  .process-steps > li:nth-child(2 of .process-step) .step-badge { animation-delay: 2s; }
  .process-steps > li:nth-child(3 of .process-step) .step-badge { animation-delay: 4s; }
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .process-steps .process-step .step-badge{ animation: none !important; }
}





.step-icon { margin: 18px auto 12px; width: 120px; height: 120px; display: grid; place-items: center; }
.step-title { margin: 6px 0 8px; font-size: 1.25rem; color: var(--ink-dark); font-weight: 900; }
.step-copy { margin: 0; color: var(--ink-mid); font-size: 1rem; }

/* Arrow slot between steps */
.process-arrow { display: grid; place-items: center; opacity: .9; }

/* CTA below card */
.process__cta {
  display: grid;
  place-items: center;
  margin-top: clamp(18px, 3vw, 28px);
}

/* Responsive: stack steps on small screens */
@media (max-width: 750px) {

  .process-arrow { display: none; }
 .process-steps { grid-template-columns: 1fr 1fr 1fr; }


}


/* Responsive: stack steps on small screens */
@media (max-width: 640px) {
    .process-steps { grid-template-columns: 1fr; }

    
  .step-badge {
      left: -80px !important;
      top: 90px !important;
      transform: translate(0, -50%);
    }
    
      .process-arrow { display: none; }
      .step-icon { margin: 26px auto; }
      .step-badge { left: 32px; transform: translate(0, -50%); }

    
    .process-card {
 
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 24px;
        padding-bottom: 30px;
    }
    
}




.process__cta .button--cta { border: 2px solid #FFF; color: #FFF; }









/* ===== Case Results – auto marquee ===== */
.case-results { padding: clamp(42px, 6vw, 72px) 0; background:#f5f7f8; }
.case-results__heading {
  text-align:center; margin:0 0 22px; color:var(--ink-dark);
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem); font-weight: 900;
}

.case-carousel{ position:relative; overflow:hidden; }

.case-track{
  display:flex;
  gap:16px;
  padding:8px;
  /* CSS marquee animation; JS sets --marquee-duration */
  animation: case-marquee var(--marquee-duration, 30s) linear infinite;
  will-change: transform;
}

/* Hide any scrollbar artifacts (defensive) */
.case-track{ scrollbar-width:none; -ms-overflow-style:none; }
.case-track::-webkit-scrollbar{ display:none; }

@keyframes case-marquee{
  to { transform: translateX(-50%); } /* because we duplicate once */
}

/* Cards */
.case-card{
  flex:0 0 clamp(220px, 25vw, 220px);
  position:relative; background:#fff; border-radius:18px; box-shadow: var(--shadow-soft);
  padding:20px 18px 22px; border:1px solid #eef2f3;
    list-style: none;
}

.case-card{
  position: relative;
  transform: translateZ(0) scale(1);
  transition: transform .5s ease, box-shadow .5s ease;
  will-change: transform; transition: opacity .6s ease; 

    -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out;

}

.why-card:hover,
.why-card:focus-within{
  opacity: 1; 
}



.case-card:hover,
.case-card:focus-within{
  transform: scale(1.2);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

/* Optional: add a touch of extra padding so scaling isn't clipped at edges */
.case-carousel .case-track{ padding: 16px; }

/* Respect devices without hover + reduced motion */
@media (hover: none){
  .case-card{ transition: box-shadow .18s ease; }
  .case-card:hover{ transform: none; }
}
@media (prefers-reduced-motion: reduce){
  .case-card{ transition: box-shadow .18s ease; }
  .case-card:hover,
  .case-card:focus-within{ transform: none; }
}






.case-card__cap{
  position:absolute; left:0; right:0; top:0; height:30px; border-radius:18px 18px 0 0;
  background: var(--brand-orange);
}
/* colour cycle 1=orange, 2=pink, 3=blue */
.case-card:nth-child(3n+1) .case-card__cap { background: var(--brand-orange); }
.case-card:nth-child(3n+2) .case-card__cap { background: var(--brand-pink); }
.case-card:nth-child(3n)   .case-card__cap { background: var(--brand-blue); }

.case-card__amount{ margin:30px 0 6px; font-weight:900; font-size:2.5rem; }


.case-card:nth-child(3n+1) .case-card__amount { color: var(--brand-orange); }
.case-card:nth-child(3n+2) .case-card__amount { color: var(--brand-pink); }
.case-card:nth-child(3n)   .case-card__amount { color: var(--brand-blue); }


.case-card__title{ margin:0 0 8px; font-size:1.5rem; color:var(--ink-dark); font-weight:900; }
.case-card__copy { margin:0; color:var(--ink-mid); font-size:0.98rem; }

/* Pause for motion-sensitive users */
@media (prefers-reduced-motion: reduce){
  .case-track{ animation:none; }
}






/* Testimonials */


/* Reset default figure margins so gap is true */
.testimonials__grid .testimonial { 
  margin: 0; 
}

/* Keep the grid gap tight */
.testimonials__grid { 
  gap: 10px;          /* already there */
  column-gap: 10px;   /* explicit, defensive */
  row-gap: 10px; 
}

/* Optional: tidy last-child spacing inside cards */
.testimonial__quote { margin: 0 0 8px; }
.testimonial__cite  { margin: 0; }


.testimonials { margin-top: clamp(22px, 4vw, 36px); text-align: center; }
.testimonials__grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:20px; }
.testimonial { background:#193944; color:#fff; border-radius:16px; padding:20px; box-shadow: var(--shadow-soft); }
.testimonial__stars { color: var(--brand-orange); font-size: 1.8rem; margin-bottom: 20px; letter-spacing: 5px; }
.testimonial__quote { margin: 0 0 10px; }
.testimonial__cite { font-weight: 900; opacity:.95; margin-top: 20px; }

@media (max-width: 900px){
  .testimonials__grid { gap:20px; }
.testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px){
  .testimonials__grid { grid-template-columns: 1fr; gap:20px; }
  .testimonials__grid .testimonial:last-child(-n + 2) { display: none !important; }
}





/* Animated shimmer for testimonial stars */
.testimonial__stars{
  position: relative;
  font-weight: 900;
  letter-spacing: 2px;
  /* gradient clipped to the text */
  background: linear-gradient(90deg,
    #ffdba3 0%,
    var(--brand-orange) 20%,
    var(--brand-orange) 50%,
    #ffdba3 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  animation: starShimmer 3.2s linear infinite;
  will-change: background-position;
}

@keyframes starShimmer{
  0%   { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}

/* Stagger across your three cards */
.testimonials__grid .testimonial:nth-child(2) .testimonial__stars{ animation-delay: .35s; }
.testimonials__grid .testimonial:nth-child(3) .testimonial__stars{ animation-delay: .7s; }

/* Optional: speed up when hovering a card */
@media (hover: hover){
  .testimonial:hover .testimonial__stars{ animation-duration: 1.2s; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .testimonial__stars{
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--brand-orange);
            color: var(--brand-orange);
  }
}









/* Radial gradient: lighter centre → darker orange edges */
.cta-band{
  position: relative;
  color:#fff;
  background:
    radial-gradient(circle at 50% 50%,
      #f9bf6a 0%,
      #F79A2C 45%,
      #d88421 78%,
      #b86e1a 100%);
    border-bottom: 10px solid white;
    border-top: 10px solid white;
    box-shadow: var(--shadow-soft);
}
.cta-band__inner{
  position: relative;
  width:96%;
  max-width:var(--wrap-max);
  margin-inline:auto;
  padding-block: clamp(28px, 6vw, 64px);
}

/* Logo pinned to the left, vertically centred */
.cta-band__brand{
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color:#fff;
}
.cta-band__logo{ width:220px; height:auto; display:block; opacity: .5 }

/* Centre content is truly centred in the container */
.cta-band__center{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  text-align:center;
}
.cta-band__title{
  margin:0;
  font-weight:900;
  font-size: clamp(1.4rem, 2.6vw + .5rem, 3rem);
}

/* White pill with orange text; invert on hover */
.button--cta-invert{
  font-size: clamp(1rem, 2vw + .3rem, 2rem);
  background:#fff;
  color:var(--brand-orange);
  border:5px solid #fff;
  padding: 14px 26px;
  border-radius:999px;
  box-shadow: var(--shadow-soft);
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.button--cta-invert:hover,
.button--cta-invert:focus{
  background:var(--brand-orange);
  color:#fff;
}

/* Responsive logo sizing */
@media (max-width: 900px){
  .cta-band__logo{ width:180px; }
}
@media (max-width: 640px){
  .cta-band__logo{ width:150px; }
  .cta-band__brand{ left:8px; }
  .cta-band__logo{  display: none; }
}















/* section wrapper */
.why{
  position: relative;
  display: grid;
  place-items: center;          /* centers the container both ways */
  width: 100%;
  min-height: 800px;            /* your target height */
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0;
  background: #f6f7f8;
}



.why__heading {
  text-align:center; margin:0 0 50px; color:var(--ink-dark);
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem); font-weight: 900;
}




.why__bg{ position:absolute; inset:0; z-index:0; }
#why-orbs{ display:block; width:100%; height:100%; }

/* keep your existing container width rules */
.why__wrap{
  position: relative;
  z-index: 1;                   /* above the canvas */
  max-width: var(--wrap-max);
  margin: 0 auto;
}

/* orbs */
.orb{
  position: absolute;
  left: var(--left, 0); top: var(--top, 0);
  width: var(--size, 400px); height: var(--size, 400px);
  border-radius: 50%;
  transform: translate(0,0) scale(1);
  will-change: transform;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.08));
  animation: orbFloat var(--dur, 30s) ease-in-out var(--delay, 0s) infinite alternate;
  opacity: .9;
}


/* move each orb by custom amounts */
@keyframes orbFloat{
  to { transform: translate(var(--dx, 80px), var(--dy, -80px)) scale(var(--scale, 1.05)); }
}

/* cards */
.why__grid{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.why-card{
  background:#f5f5f5; border-radius: 22px; padding: 22px;
  box-shadow: var(--shadow-soft); 
  text-align:center; color: var(--ink-dark);
    border: 6px solid #FFF; opacity: .9;
    -webkit-transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out;
}
.why-card--pink{ background: var(--brand-pink); color: #FFF !important; }
.why-card--blue{ background: var(--brand-blue); color: #FFF !important; }
.why-card__icon{ margin: 8px auto 40px; width: 90%; }

.why-card__text{ margin:0; font-size:2rem; line-height: 1.1; font-weight:700; }



/* responsive */
@media (max-width: 980px){
  .why__grid{ grid-template-columns: repeat(2, 1fr); }
  .why-card__text{ font-size:1.6rem; line-height: 1.1;  }
}
@media (max-width: 560px){
  .why-card__text{ font-size:1.3rem; line-height: 1.1;  }
}

/* reduced-motion support */
@media (prefers-reduced-motion: reduce){
  .orb{ animation: none; }
}

















/* Our Services */
.services { max-width: 1000px; margin: auto; padding: clamp(40px, 6vw, 80px) 0; background:#fff; }
.services__heading{
  text-align:center; margin:0 0 44px; font-weight:900;
  color: var(--ink-dark);
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
}

.services__grid{
  list-style:none; margin:0; padding:0;
  display:grid; gap: clamp(12px, 2vw, 20px);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px){
  .services__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .services__grid{ grid-template-columns: 1fr; }
}

.service-card{
  /* tone set by modifier */
  --tone: var(--ink-dark);

  position:relative;
  background:#fff;
  border-radius: 22px;
  border: 6px solid var(--tone);
  box-shadow: var(--shadow-soft);
  padding: 24px 22px 20px;
  text-align:center;
    
    -webkit-transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out;
}


.service-card:hover { box-shadow: none; background:#f5f5f5; }



.service-card--pink  { --tone: var(--brand-pink); }
.service-card--blue  { --tone: var(--brand-blue); }
.service-card--orange{ --tone: var(--brand-orange); }

.service-card__icon{ max-width: 200px; margin: 8px auto 14px; }

.service-card__icon img { width: 90%; }

.service-card__title{
  margin: 0 0 8px; color: var(--ink-dark); font-weight:900; font-size:1.8rem; line-height: 1.1;
}
.service-card__copy{ margin:0 0 16px; color: var(--ink-mid); font-size:1rem; }

/* Button inside card uses the card tone */
.button.button--card{
  border:2px solid var(--tone);
  background: var(--tone);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  transition: filter .2s ease, transform .06s ease;
}
.button.button--card:hover,
.button.button--card:focus{ filter: brightness(.95); }
.button.button--card:active{ transform: translateY(1px); }













/* Footer shell */
.site-footer{ background: var(--brand-pink); color:#fff; }
.site-footer__accent{ height:12px; background: var(--brand-blue); }

/* Pink band content */
.site-footer__inner{
  width:96%;
  max-width: var(--wrap-max);
  margin-inline:auto;
  display:grid;
  grid-template-columns: auto 1px 1fr auto; /* logo | divider | contact | CTA */
  align-items:center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(14px, 3vw, 18px) 0;
}

.footer-brand__logo{ display:block; width:150px; height:auto; }

.footer-divider{
  width:1px; height: 96px;
  background: rgba(255,255,255,.92);
  border-radius: 1px;
}

.footer-title{
  margin:0 0 8px; color:#fff; font-weight:900;
  font-size: clamp(1.1rem, 1.2vw + .6rem, 1.6rem);
}
.footer-row{ margin:2px 0; font-size:1rem; }
.footer-row strong{ margin-right:6px; }
.footer-contact a{ color:#fff; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.25); }
.footer-contact a:hover{ border-bottom-color: rgba(255,255,255,.6); }

.footer-social{ display:flex; gap:12px; margin-top:10px; }
.footer-social a{ display:inline-flex; }

/* CTA right */
.footer-cta{ justify-self:end; text-align:center; }
.footer-button{
  background: transparent;
  color: #fff;
  border: 3px solid #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
    margin-bottom: 12px;
}
.footer-button:hover,
.footer-button:focus{ background:#fff; color: var(--brand-pink); }

.footer-legal{ margin:2px 0 0; font-size: .7rem; line-height: 1.2; }
.footer-legal a{ color:#fff; text-decoration:none; font-size: 1rem;  }
.footer-legal a:hover{ text-decoration: underline; }

/* Link columns under the band */
.footer-links{
  background: var(--brand-pink);
  color:#fff;
  border-top: 1px solid rgba(255,255,255,.25);
}
.footer-links__wrap{
  width:96%;
  max-width: var(--wrap-max);
  margin-inline:auto;
  padding: 14px 0 26px;
  display:grid;
  grid-template-columns: 1fr 2fr 1fr; /* Pages | Services | Legal */
  gap: clamp(16px, 3vw, 36px);
}
.footer-links__title{
  margin:0 0 8px;
  font-size: 1rem;
  font-weight: 900;
  color:#fff;
}
.footer-links__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 2px;
}
.footer-links a{
  color:#fff;
  text-decoration:none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease; font-size: 11px;
}
.footer-links a:hover,
.footer-links a:focus{ border-bottom-color: rgba(255,255,255,.6); }




/* If your link area now has 2 columns total (Pages | Services) */
.footer-links__wrap{
  grid-template-columns: 1fr minmax(420px, 2fr);
}

/* Make the Services list itself multi-column using grid (keeps DOM/read order) */
.footer-links__col--services .footer-links__list{
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  column-gap: 24px;
  row-gap: 6px;
}
@media (min-width: 900px){
  .footer-links__col--services .footer-links__list{
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}
@media (max-width: 700px){
  .footer-links__col--services .footer-links__list{ grid-template-columns: 1fr; }
}

@media (max-width: 500px){
  .footer-links__wrap{ grid-template-columns: 1fr; }
}

/* tidy list items */
.footer-links__col--services .footer-links__list li{ margin:0; }
.footer-links__col--services .footer-links__list a{ display:block; }





/* Responsive */
@media (max-width: 780px){
  .site-footer__inner{ grid-template-columns: 1fr; text-align:center; }
  .footer-divider{ display:none; }
  .footer-cta{ justify-self:center; text-align:center; }
  .footer-brand__logo{ margin-inline:auto; }
    .footer-social { display: block; }


}















/* --- Stack order: results (0) < blobs (2) < copy (3) --- */
.about-hero{ position: relative; overflow: hidden; height: 40vw;  min-height: 700px; }
.about-hero__results{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 0;                /* behind blobs */
  pointer-events: none;      /* decorative in hero */
}
.about-hero__bg{ position:absolute; inset:0; z-index:2; pointer-events:none; }

.about-hero__inner{            /* remove any z-index you had here */
  width:96%; max-width:var(--wrap-max); margin:0 auto;
  display:grid; grid-template-columns:1.1fr 1fr; align-items:center;
  gap:clamp(16px,3vw,40px); padding-block:clamp(40px,7vw,90px);
}
.about-hero__copy{ position:relative; z-index:3; color:#fff; }

/* trim include spacing inside hero */
.about-hero__results .case-results{ padding:0; background:transparent; }
.about-hero__results .case-results__heading{ display:none; }


/* shared look */
.blob{
  position:absolute;
  mix-blend-mode: multiply;
  opacity:.95;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.18));
  will-change: transform, border-radius;
}

/* five overlapping shapes with larger drift + morph */
.blob--1{
  left:-14%; top:-16%;
  width:min(1080px, 84vw); height:min(860px, 66vw);
  background: var(--pink-b);
  border-radius: 62% 48% 58% 42% / 54% 46% 60% 38%;
  animation: blobMorphA 9s ease-in-out infinite alternate;
}
.blob--2{
  left:-10%; bottom:-18%;
  width:min(920px, 72vw); height:min(520px, 44vw);
  background: var(--pink-c);
  opacity:.8;
  border-radius: 48% 62% 46% 54% / 60% 40% 44% 56%;
  animation: blobMorphB 8s ease-in-out infinite alternate -2s;
}
.blob--3{
  left:30%; top:-12%;
  width:min(420px, 32vw); height:min(380px, 30vw);
  background: var(--pink-a);
  border-radius: 44% 56% 64% 46% / 45% 60% 48% 58%;
  animation: blobMorphC 6s ease-in-out infinite alternate -4s;
}
.blob--4{
  left:12%; top:48%;
  width:min(520px, 40vw); height:min(420px, 34vw);
  background: var(--pink-b);
  opacity:.85;
  border-radius: 70% 30% 55% 45% / 36% 64% 44% 56%;
  animation: blobMorphD 5s ease-in-out infinite alternate -1s;
}
.blob--5{
  left:52%; top:32%;
  width:min(420px, 32vw); height:min(380px, 30vw);
  background: var(--pink-c);
  opacity:.7;
  border-radius: 34% 66% 48% 52% / 66% 34% 58% 42%;
  animation: blobMorphE 8s ease-in-out infinite alternate -5s;
}

/* bigger travel + slight rotate/scale so it feels alive */
@keyframes blobMorphA{
  0%   { transform: translate(0,0)     rotate(0deg)   scale(1);   border-radius:62% 38% 58% 42% / 54% 46% 62% 38%; }
  50%  { transform: translate(32px,-26px) rotate(2.8deg) scale(1.05); border-radius:50% 50% 46% 54% / 60% 40% 54% 46%; }
  100% { transform: translate(0,0)     rotate(0deg)   scale(1); }
}
@keyframes blobMorphB{
  0%   { transform: translate(0,0)     rotate(0deg)   scale(1);   border-radius:38% 62% 46% 54% / 60% 40% 44% 56%; }
  50%  { transform: translate(-40px,22px) rotate(-3.2deg) scale(1.06); border-radius:58% 42% 60% 40% / 44% 56% 38% 62%; }
  100% { transform: translate(0,0)     rotate(0deg)   scale(1); }
}
@keyframes blobMorphC{
  0%   { transform: translate(0,0)     rotate(0deg)   scale(1);   border-radius:44% 56% 64% 36% / 40% 60% 42% 58%; }
  50%  { transform: translate(-28px,18px) rotate(2.4deg) scale(1.05); border-radius:60% 40% 48% 52% / 48% 52% 62% 38%; }
  100% { transform: translate(0,0)     rotate(0deg)   scale(1); }
}
@keyframes blobMorphD{
  0%   { transform: translate(0,0)     rotate(0deg)   scale(1);   border-radius:70% 30% 55% 45% / 36% 64% 44% 56%; }
  50%  { transform: translate(26px,-24px) rotate(-2deg) scale(1.04); border-radius:46% 54% 68% 32% / 58% 42% 52% 48%; }
  100% { transform: translate(0,0)     rotate(0deg)   scale(1); }
}
@keyframes blobMorphE{
  0%   { transform: translate(0,0)     rotate(0deg)   scale(1);   border-radius:34% 66% 48% 52% / 66% 34% 58% 42%; }
  50%  { transform: translate(-22px,28px) rotate(3deg)  scale(1.07); border-radius:62% 38% 56% 44% / 40% 60% 46% 54%; }
  100% { transform: translate(0,0)     rotate(0deg)   scale(1); }
}

/* mobile: results drop below copy (or hide if you prefer) */
@media (max-width:1080px){
  .about-hero__inner{ grid-template-columns:1fr; }
  .about-hero__results{
    position: static; transform:none; width:auto; margin-top:10px; z-index:0;
    pointer-events:auto;
  }
}
@media (prefers-reduced-motion: reduce){
  .blob{ animation:none; }
}




.about-hero__title {
  margin:0 0 22px; font-size: 4.5rem; font-weight: 900; line-height: 1; 
}

.about-hero__title span { display: block;  font-size: 50%; line-height: 1; }
.about-hero__copy p { font-size: 1.4rem; max-width: 450px;   }

.case-track{ animation: none !important; transform: translateX(0); }

.about-hero__inner .button--cta-invert { 

    font-size: 1.1rem;
    padding: 10px 18px;


}




/* results box: was width:100% */
.about-hero__results{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

/* inner grid stays two columns until very small screens */
.about-hero__inner{
  width:96%; max-width:var(--wrap-max); margin:0 auto;
  display:grid; grid-template-columns: 1.1fr 1fr;
  align-items:center;
  gap: clamp(16px,3vw,40px);
  padding-block: clamp(40px,7vw,90px);
}




/* ========= About hero — responsive tweaks (append) ========= */

/* slide the whole blob layer; children keep their morph animations */
.about-hero__bg{
  position:absolute; inset:0; z-index:2; pointer-events:none;
  --blob-shift: 0px;
  transform: translateX(var(--blob-shift));
  transition: transform .6s ease;
}




/* shift amounts + results width tweaks 

@media (max-width: 1300px){
  .about-hero__bg{ --blob-shift: 30px; }
  .about-hero__results{ width: min(780px, 50vw); right: 1.5vw; }
}
@media (max-width: 1150px){
  .about-hero__bg{ --blob-shift: 60px; }
  .about-hero__results{ width: min(740px, 52vw); }
}
@media (max-width: 1000px){
  .about-hero__bg{ --blob-shift: 90px; }
  .about-hero__results{ width: min(700px, 54vw); }
}

*/

@media (max-width: 1400px){
    
  
.blob--1{
  left:-34%; top:-6%;
  width:min(1080px, 84vw); height:min(860px, 66vw);
  background: var(--pink-b);
  border-radius: 62% 38% 58% 42% / 54% 46% 62% 38%;
  animation: blobMorphA 9s ease-in-out infinite alternate;
}
.blob--2{
  left:20%; bottom:-8%;
  width:min(920px, 72vw); height:min(520px, 44vw);
  background: var(--pink-c);
  opacity:.8;
  border-radius: 38% 62% 46% 54% / 60% 40% 44% 56%;
  animation: blobMorphB 8s ease-in-out infinite alternate -2s;
}
.blob--3{
  left:10%; top:-2%;
  width:min(420px, 32vw); height:min(380px, 30vw);
  background: var(--pink-a);
  border-radius: 44% 56% 64% 36% / 40% 60% 42% 58%;
  animation: blobMorphC 6s ease-in-out infinite alternate -4s;
}


}






@media (max-width: 900px){
    
  
.blob--1{
  left:-30%; top:-6%;
  width:min(1080px, 84vw); height:min(860px, 66vw);
  background: var(--pink-b);
  border-radius: 62% 38% 58% 42% / 54% 46% 62% 38%;
  animation: blobMorphA 9s ease-in-out infinite alternate;
}
.blob--2{
  left:30%; bottom:-8%;
  width:min(920px, 72vw); height:min(520px, 44vw);
  background: var(--pink-c);
  opacity:.8;
  border-radius: 38% 62% 46% 54% / 60% 40% 44% 56%;
  animation: blobMorphB 8s ease-in-out infinite alternate -2s;
}
.blob--3{
  left:20%; top:-2%;
  width:min(420px, 32vw); height:min(380px, 30vw);
  background: var(--pink-a);
  border-radius: 44% 56% 64% 36% / 40% 60% 42% 58%;
  animation: blobMorphC 6s ease-in-out infinite alternate -4s;
}


}



/* <= 800px: hide carousel, center copy, center the blob layer */
@media (max-width:800px){
  /* hide the results carousel/include */
  .about-hero__results{ display: none !important; }

  /* one-column, centered copy */
  .about-hero__inner{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }
  .about-hero__copy{
    margin-inline: auto;
      padding: 0 2%;
  }

  /* center the whole blob layer so the pink mass sits behind the copy */
  .about-hero__bg{
    /* pull the bg layer to the horizontal center of the section */
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(1400px, 140vw);  /* generous width to keep coverage */
  }
    
    
    
    
    .blob--1{
      left:20%; top:-6%;
      width:min(1080px, 94vw); height:min(860px, 76vw);
      background: var(--pink-b);
      border-radius: 62% 38% 58% 42% / 54% 46% 62% 38%;
      animation: blobMorphA 9s ease-in-out infinite alternate;
    }
    .blob--2{
      left:20%; bottom:-8%;
      width:min(920px, 92vw); height:min(520px, 74vw);
      background: var(--pink-c);
      opacity:.8;
      border-radius: 38% 62% 46% 54% / 60% 40% 44% 56%;
      animation: blobMorphB 8s ease-in-out infinite alternate -2s;
    }
    .blob--3{
      left:40%; top:-2%;
      width:min(420px, 52vw); height:min(380px, 50vw);
      background: var(--pink-a);
      border-radius: 44% 56% 64% 36% / 40% 60% 42% 58%;
      animation: blobMorphC 6s ease-in-out infinite alternate -4s;
    }


}




@media (max-width:600px){
  /* hide the results carousel/include */
    .about-hero { height: auto; min-height: 0; }
}






/* Values section */
.values{ padding: clamp(36px, 6vw, 80px) 0; background:#fff; }
.values__heading{
  margin: 0 0 18px;
  text-align: left;
  font-weight: 900;
  color: var(--ink-dark);
  font-size: clamp(1.8rem, 2.2vw + 1rem, 3rem);
}

/* Grid */
.values__grid{
  list-style:none; margin:0; padding:0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
@media (max-width: 1024px){
  .values__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .values__grid{ grid-template-columns: 1fr; }
}

/* Card */
.value-card{
  --tone: var(--ink-dark);
  border-radius: 20px;
  background: var(--tone);
  padding: 6px;
  box-shadow: var(--shadow-soft);
  color:#fff;
height: auto; overflow: hidden;
}
.value-card--pink  { --tone: var(--brand-pink); }
.value-card--blue  { --tone: var(--brand-blue); }
.value-card--orange{ --tone: var(--brand-orange); }

.value-card__head{
  padding: 8px 10px 6px;
}
.value-card__head h3{
  margin:0;
  font-weight:900;
  color:#fff;
  font-size: clamp(1.1rem, .7vw + 1rem, 1.7rem);
}

/* Inner white panel with coloured border */
.value-card__body{
    height: calc(100% - 100px);
  margin-top: 12px;
  background:#fff;
  color: var(--ink-dark);
  border: 6px solid var(--tone);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: clamp(1rem, .25vw + .95rem, 1.125rem);
  line-height: 1.2;
    margin: 0;
    font-size: 1.6rem
}

/* Small lift on hover/focus */
.value-card{
  transition: transform .18s ease, box-shadow .18s ease;
  transform: translateZ(0);
}
.value-card:hover,
.value-card:focus-within{
  transform: translateY(-2px);
}











/* Wide CTA band */
.cta-wide{
  padding: clamp(12px, 2vw, 18px) 0;           /* white rails above/below */
    position: relative; z-index: 99;
}
.cta-wide__inner{
  position: relative;
  width:100%;
  margin: 0 auto;
  min-height: 190px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,.14);
  display: grid;
  place-items: center;
  isolation: isolate;                           /* keep overlays tidy */

  /* orange radial + soft diagonal sheen */
  background:
    radial-gradient(140% 120% at 50% 40%,
      #f9b86d 0%, #F79A2C 32%, #e18a25 62%, #c77728 100%),
    repeating-linear-gradient( 120deg,
      rgba(255,255,255,.08) 0 2px,
      rgba(255,255,255,0) 2px 14px);
    border-bottom: 10px solid #FFF;
    border-top: 10px solid #FFF;
}

/* left logo block */
.cta-wide__brand {
  position: absolute;
  left: clamp(16px, 2vw, 26px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 6px;
  text-decoration:none;
  color:#fff;
}
.cta-wide__brand img{ display:block; width: 150px; height: auto; opacity: .5; }


/* centered content */
.cta-wide__content{
  text-align:center;
  color:#fff;
  padding: clamp(22px, 4vw, 34px) clamp(18px, 3vw, 28px);
}
.cta-wide__content h2{
  margin:0 0 18px;
  font-weight:900;
  font-size: clamp(1.6rem, 2.6vw + 1rem, 3rem);
  line-height:1.1;
}

/* white pill button with orange text */
.button--cta-white{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 28px;
  border-radius: 999px;
  background:#fff;
  border: 0;
  color: var(--brand-orange);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .06s ease, filter .2s ease;
    font-size: 2rem;
}
.button--cta-white:hover,
.button--cta-white:focus{
  filter: brightness(.96);
}
.button--cta-white:active{ transform: translateY(1px); }

/* responsive */
@media (max-width: 980px){
  .cta-wide__brand img{ width:180px; }
  .cta-wide__tag{ font-size:.82rem; }
}
@media (max-width: 760px){
  .cta-wide__brand{ left:14px; }
  .cta-wide__brand img{ width:150px; }
  .cta-wide__tag{ display:none; }                /* tighten on small screens */
}
@media (max-width: 560px){
  .cta-wide__brand{ display:none; }              /* keep center truly central */
  .cta-wide__content h2{ font-size: clamp(1.4rem, 5vw, 2rem); }
}









/* Team */
.team{ padding: clamp(36px, 6vw, 80px) 0; background:#fff; }
.team__heading{
  text-align:center; margin:0 0 24px;
  color: var(--ink-dark); font-weight:900;
  font-size: clamp(1.8rem, 2.4vw + 1rem, 3rem);
}

/* Grid */
.team__grid{
  list-style:none; margin:0; padding:0;
  display:grid; gap: clamp(20px, 3vw, 40px);
  grid-template-columns: repeat(3, 1fr);
  align-items:start;
}
@media (max-width: 980px){
  .team__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .team__grid{ grid-template-columns: 1fr; }
}

/* Card */
.team-card{ text-align:center; }
.team-card__figure{ margin:0; display:grid; gap: 14px; justify-items:center; }

/* Round image with coloured ring + inner white ring */
.team-card__avatar{
  --ring: var(--brand-blue);                 /* default; overridden by modifiers */
  width: clamp(180px, 26vw, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 12px;                             /* inner white ring */
  background:#fff;
  box-shadow:
    0 0 0 10px var(--ring),                  /* coloured ring */
    0 10px 26px rgba(0,0,0,.12);
  overflow:hidden;
}
.team-card--blue   .team-card__avatar{ --ring: var(--brand-blue); }
.team-card--pink   .team-card__avatar{ --ring: var(--brand-pink); }
.team-card--orange .team-card__avatar{ --ring: var(--brand-orange); }

/* Ensure the photo is a perfect circle */
.team-card__avatar img{
  width:100%; height:100%;
  object-fit: cover;
  border-radius: 50%;
  display:block;
}

/* Text */
.team-card__name{
  margin:0; color: var(--ink-dark); font-weight:900;
  font-size: clamp(1.2rem, 1.2vw + 1rem, 2rem);
}
.team-card__role{
  margin:2px 0 2px; text-transform: uppercase; letter-spacing:.5px;
  color: var(--ink-mid); font-weight:800; font-size: clamp(.9rem, .4vw + .8rem, 1.05rem);
}
.team-card__focus{
  margin:0; color: var(--ink-dark);
  font-size: clamp(1rem, .3vw + .95rem, 1.2rem);
}

/* Subtle lift on hover/focus */
.team-card__avatar{ transition: transform .18s ease, box-shadow .18s ease; }
.team-card:hover .team-card__avatar,
.team-card:focus-within .team-card__avatar{
  transform: translateY(-4px);
  box-shadow:
    0 0 0 10px var(--ring),
    0 16px 32px rgba(0,0,0,.18);
}


















/* Header layout */
.svc-hero{ padding: clamp(28px, 6vw, 80px) 0; background:#fff; }
.svc-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr;       /* copy | grid */
  align-items:center;
  gap: 10vw;
}

/* Copy */
.svc-hero__title{
  margin:0 0 12px;
  font-weight:900;
  color: var(--ink-dark);
  line-height:1.05;
  font-size: clamp(1.8rem, 2.6vw + 1rem, 3.2rem);
}
.t-pink{ color: var(--brand-pink); }
.t-blue{ color: var(--brand-blue); }
.t-orange{ color: var(--brand-orange); }
.svc-hero__lede{
  margin:0;
  color: var(--ink-dark);
  font-size: clamp(1.05rem, .6vw + 1rem, 1.5rem);
  max-width: 46ch;
}

/* 2×2 grid of coloured squares */
.svc-hero__grid{
  /* two columns that can shrink to 0 without forcing a scroll */
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2.5vw, 24px);
  width: 100%;
  justify-items: stretch;   /* cells own the full column width */
}


/* Tile — square with label bottom-left */
.cat-link{
  width: 100%;              /* fill the grid cell */
  max-width: 100%;
  aspect-ratio: 1 / 1;      /* stay square */
    
  --tone: var(--ink-dark);
  position: relative;
  display: block;
  width: min(260px, 42vw);
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  background: var(--tone);
  color:#fff;
  text-decoration:none;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease, filter .2s ease;
}

/* label sits bottom-left, left-aligned */
.cat-link__label{
  position: absolute;
  left: clamp(12px, 3vw, 18px);
  bottom: clamp(12px, 3vw, 18px);
  word-break: break-word;
  hyphens: auto;
  text-align: left;
  font-weight: 900;
  line-height: 1.1;
  font-size: clamp(1.2rem, 1.5vw + 1rem, 4rem);
  pointer-events: none; /* whole tile is the link */
}



.cat-link--pink  { --tone: var(--brand-pink); }
.cat-link--blue  { --tone: var(--brand-blue); }
.cat-link--orange{ --tone: var(--brand-orange); }
.cat-link--ink   { --tone: var(--ink-dark); }

.cat-link:hover,
.cat-link:focus-visible{
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
  outline: none;
}





/* optional: gentle float */
@media (hover: hover){
  .cat-link{ animation: tileFloat 6s ease-in-out infinite; }
  .cat-link:nth-child(2){ animation-delay: .3s; }
  .cat-link:nth-child(3){ animation-delay: .6s; }
  .cat-link:nth-child(4){ animation-delay: .9s; }
}
@keyframes tileFloat{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }



/* Optional: small nudge animation to hint interactivity */
@media (hover: hover){
  .cat-link{ animation: tileFloat 6s ease-in-out infinite; }
  .cat-link:nth-child(2){ animation-delay: .3s; }
  .cat-link:nth-child(3){ animation-delay: .6s; }
  .cat-link:nth-child(4){ animation-delay: .9s; }
}
@keyframes tileFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}



@media (max-width: 800px){
    
.cat-link__label {
  font-size: clamp(0.95rem, 1rem + 0.9vw, 1.6rem);
    }
}

@media (max-width: 650px){
  .svc-hero__inner{ grid-template-columns: 1fr; }
}



@media (max-width: 500px){
  .svc-hero__grid{ grid-template-columns: 1fr 1fr; }
  .button--cta-white { font-size: 1.4rem }
}




.cat-link{
  container-type: inline-size; /* enables cqi units below */
}













.svc-splits{ background: var(--page-bg); margin-top: -18px; }
.service-section{ scroll-margin-top: 100px; }

/* 2 columns only; no seam column => no gap */
.svc-split{
  --scallop-r:14px;
  --scallop-d:calc(var(--scallop-r)*2);
  --list-pad-y: clamp(18px, 3vw, 30px);

  display:grid;
  grid-template-columns: 1fr 1.1fr;   /* intro | list */
  align-items: stretch;
  gap:0;
  position:relative;
  isolation:isolate;
}

.svc-split + .svc-split{ margin-top:0; }


.svc-split article { padding: 20px 0; }

.svc-split__intro{
  --intro-bg:#f3f6f8;
  background: var(--intro-bg);
  padding: clamp(20px, 3vw, 36px) clamp(18px, 3vw, 40px);
  position:relative;
  z-index:9; /* you added this—keep it */
}
.svc-splits > .svc-split:nth-of-type(even) .svc-split__intro{ --intro-bg:#fff; }

.svc-split__intro h2{
  margin:0; color:var(--ink-dark); font-weight:900;
  font-size: clamp(1.4rem, 2vw + 1rem, 3rem); line-height: 1;
}



.svc-split__intro p { font-size: clamp(.9rem, 1vw + 1rem, 1.2rem); } 


.svc-split__sub{
  margin:0 0 12px; letter-spacing:2px; font-weight:900;
  font-size: clamp(1.4rem, 1.6vw + 1rem, 2.3rem);
}




/* Right coloured panel */
.svc-split__list{
  --tone: var(--ink-dark);
  background: var(--tone);
  color:#fff;
  padding: var(--list-pad-y) clamp(30px, 5vw, 60px);
  display:grid; gap: clamp(12px, 2vw, 20px);
  position:relative;
  z-index:2;
}
.svc-split--pink   .svc-split__list{ --tone: var(--brand-pink); }
.svc-split--blue   .svc-split__list{ --tone: var(--brand-blue); }
.svc-split--orange .svc-split__list{ --tone: var(--brand-orange); }
.svc-split--ink    .svc-split__list{ --tone: var(--ink-dark); }

/* Items + CTA */
.svc-item h3{
  margin:0 0 4px; font-weight:900; color:#fff;
  font-size: clamp(1.2rem, 1vw + 1rem, 2rem);
}
.svc-item p{ margin:0 0 10px; }
.svc-item__cta{
  display:inline-block;
  background:#fff; color: var(--tone);
  border-radius:999px; padding:8px 14px;
  font-weight:800; font-size:.85rem; text-transform:uppercase;
  text-decoration:none;
  transition: filter .2s ease, transform .06s ease;
}
.svc-item__cta:hover, .svc-item__cta:focus{ filter: brightness(.95); }
.svc-item__cta:active{ transform: translateY(1px); }

/* Seam overlay INSIDE the right panel (covers the join) */
.svc-dots{
  position:absolute;
  left:0; top:0; height:100%;
  width: var(--scallop-d);               /* just wide enough for the dot */
  transform: translateX(calc(var(--scallop-r) * -1)); /* hang half over the join */
  pointer-events:none;
  z-index:5;
}

/* Each dot: left half = intro bg, right half = page bg */
.svc-dot{
  position:absolute;
  left:0;
  width: var(--scallop-d);
  height: var(--scallop-d);
  border-radius:50%;
  transform: translateY(-50%);
  background:
    linear-gradient(to right,
      var(--intro-bg, #f3f6f8) 50%,
      var(--page-bg) 50%);
}



/* Dot colour sync */
.svc-split:nth-of-type(odd)  .svc-dots { --intro-bg:#f3f6f8; } /* grey rows */
.svc-split:nth-of-type(even) .svc-dots { --intro-bg:#fff; }    /* white rows */




/* Mobile: stack and hide seam */
@media (max-width: 900px){
  .svc-split{ grid-template-columns: 1fr; text-align: center; }
  .svc-dots{ display:none; }
  .svc-split__list{  }
    .svc-split__intro { padding-bottom: 5px; margin-top: 30px; box-shadow: 5px 0 5px #CCC; }
}














/* section */
.claim-what{
  padding: clamp(28px, 6vw, 80px) 0;
  background:#fff;
}
.claim-what__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr; /* copy | image */
  gap: clamp(20px, 5vw, 60px);
  align-items:start;
}
@media (max-width: 980px){
  .claim-what__inner{ grid-template-columns: 1fr; }
}

/* copy */
.claim-what__copy h2{
  margin:0 0 12px;
  color: var(--ink-dark);
  font-weight: 900;
  line-height:1.1;
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
}
.claim-what__copy p{ margin:0 0 14px; color:var(--ink-dark); }
.claim-what__lead{ font-weight:800; color:#456A75; }
.claim-what__copy ul{ list-style:circle; margin:10px; padding:10px; display:grid; gap:10px; }
.claim-what__copy ul li h3{
  margin:0 0 2px; color:var(--ink-dark); font-weight:900;
  font-size: clamp(1.05rem, .6vw + 1rem, 1.3rem);
}
.claim-what__copy ul li p{ margin:0; }
.claim-what__strapline{
  margin:16px 0 0; color:var(--brand-orange); font-weight:900;
  font-size: clamp(1.1rem, 1.1vw + 1rem, 1.6rem);
}

/* single image */
.claim-what__art{
  margin:0;
  justify-self:center;
  max-width: clamp(280px, 40vw, 640px);
  width: 100%;
}
.claim-what__art img{
  display:block;
  width:100%;
  height:auto;
  border-radius: 16px;      /* drop if your image already has round shapes */
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
@media (max-width: 980px){
  .claim-what__art{ max-width: min(560px, 90vw); }
}









/* container helper if not already present */
.container{max-width:var(--wrap-max,1350px);margin-inline:auto;padding-inline:var(--gutter,20px);}

.claim-benefits{padding: clamp(28px, 6vw, 84px) 0; background:#fff;}
.claim-benefits__head{ text-align:center; margin-bottom: clamp(18px, 3.5vw, 34px); }

.claim-benefits__head h2{
  margin:0 0 8px;
  color:var(--ink-dark,#254553);
  font-weight:900;
  line-height:1.1;
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
}
.claim-benefits__lead{
  margin:0;
  color:#456A75;
  font-size: clamp(1rem, .6vw + .9rem, 1.125rem);
}

/* grid */
.benefit-grid{
  list-style:none; margin:0; padding:0;
  display:grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: clamp(14px, 2.6vw, 26px);
}
@media (max-width: 1100px){
  .benefit-grid{ grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 560px){
  .benefit-grid{ grid-template-columns: 1fr; }
}

/* cards */
.benefit-card{
  background: var(--brand-orange,#F79A2C);
  color:#fff;
  border-radius: 28px;
  padding: clamp(18px, 2.8vw, 26px);
  text-align:center;
  box-shadow:
    0 10px 28px rgba(0,0,0,.14),
    inset 0 0 0 4px #fff;   /* white inner stroke */
  transition: transform .18s ease, box-shadow .18s ease;
}
@media (hover:hover){
  .benefit-card:hover{
    transform: translateY(-3px);
    box-shadow:
      0 16px 34px rgba(0,0,0,.18),
      inset 0 0 0 4px #fff;
  }
}

.benefit-card__art{
  margin:0 0 12px;
  display:grid; place-items:center;
}
.benefit-card__art img{
  width: clamp(70px, 8vw, 120px);
  height: auto;
  display:block;
}

.benefit-card__text{
  margin:0;
  font-weight:800;
  line-height:1.25;
  font-size: clamp(1rem, .6vw + 1rem, 1.25rem);
}





body.blue { }
body.blue .blob--1 { background:var(--blue-a); }
body.blue .blob--2 { background:var(--blue-b); }
body.blue .blob--3 { background:var(--blue-c); }
body.blue .case-card__cap { background:var(--brand-blue)!important; }
body.blue .case-card__amount { color:var(--brand-blue)!important; }
body.blue .button--cta-invert { color:var(--brand-blue)!important; }
body.blue .button--cta-invert:hover,
body.blue .button--cta-invert:focus{ background:var(--brand-blue)!important; color: #fff!important; }
body.blue .benefit-card { background:var(--brand-blue)!important; }
body.blue .faq-item[open]{border-color:var(--brand-blue)!important; }



body.pink { }
body.pink .blob--1 { background:var(--pink-a); }
body.pink .blob--2 { background:var(--pink-b); }
body.pink .blob--3 { background:var(--pink-c); }
body.pink .case-card__cap { background:var(--brand-pink)!important; }
body.pink .case-card__amount { color:var(--brand-pink)!important; }
body.pink .button--cta-invert { color:var(--brand-pink)!important; }
body.pink .button--cta-invert:hover,
body.pink .button--cta-invert:focus{ background:var(--brand-pink)!important; color: #fff!important; }
body.pink .benefit-card { background:var(--brand-pink)!important; }
body.pink .faq-item[open]{border-color:var(--brand-pink)!important; }



body.orange { }
body.orange .blob--1 { background:var(--orange-a); }
body.orange .blob--2 { background:var(--orange-b); }
body.orange .blob--3 { background:var(--orange-c); }
body.orange .case-card__cap { background:var(--brand-orange)!important; }
body.orange .case-card__amount { color:var(--brand-orange)!important; }
body.orange .button--cta-invert { color:var(--brand-orange)!important; }
body.orange .button--cta-invert:hover,
body.orange .button--cta-invert:focus{ background:var(--brand-blue)!important; color: #fff!important; }
body.orange .benefit-card { background:var(--brand-orange)!important; }
body.orange .faq-item[open]{border-color:var(--brand-orange)!important; }



body.ink { }
body.ink .blob--1 { background:var(--ink-a); }
body.ink .blob--2 { background:var(--ink-b); }
body.ink .blob--3 { background:var(--ink-c); }
body.ink .case-card__cap { background:var(--ink-dark)!important; }
body.ink .case-card__amount { color:var(--ink-dark)!important; }
body.ink .button--cta-invert { color:var(--ink-dark)!important; }
body.ink .button--cta-invert:hover,
body.ink .button--cta-invert:focus{ background:var(--ink-dark)!important; color: #fff!important; }
body.ink .benefit-card { background:var(--ink-dark)!important; }
body.ink .faq-item[open]{border-color:var(--ink-dark)!important; }














/* Visually hidden (for labels) */
.vh{
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* Hero */
.contact-hero{ background:var(--brand-pink); color:#fff; padding: clamp(32px,7vw,96px) 0; }
.contact-hero__wrap{
  display:grid; grid-template-columns: .8fr 1fr; gap: clamp(20px,4vw,48px); align-items:start; max-width: 1000px;
}
@media (max-width: 800px){
  .contact-hero__wrap{ grid-template-columns: 1fr; }
}

/* Left copy */
.contact-hero__copy h1{
  margin:0 0 12px; font-weight:900; line-height:1.05;
  font-size: clamp(2rem, 2.8vw + 1rem, 3rem);
}
.contact-hero__intro{ margin:0 0 18px; font-size: clamp(1.05rem, .5vw + 1rem, 1.2rem); }
.contact-hero__strap{ margin: 10px 0 22px; font-weight:900; font-size: clamp(1.2rem, .9vw + 1rem, 1.6rem); }

.contact-hero__num a,
.contact-hero__mail a{
  color:#fff; text-decoration:none;
}
.contact-hero__num{
  margin:0; font-weight:900; font-size: clamp(1.8rem, 2.2vw + 1rem, 2.6rem);
}
.contact-hero__mail{
  margin:.2em 0 16px; font-weight:900; font-size: clamp(1.2rem, 1.2vw + 1rem, 1.8rem);
}
.contact-hero__meta{ margin:0 0 20px 0; opacity:.9; }

/* Card */
.contact-card{
  background:#fff; color:var(--ink-dark);
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(0,0,0,.14);
  overflow:hidden;
}
.contact-card__head{
  background:var(--brand-blue); color:#fff; font-weight:900;
  font-size: clamp(2rem, 2.8vw + 1rem, 3rem);
  padding: clamp(10px,1.6vw,18px) clamp(12px,2vw,24px);
}

/* Form */
.contact-form{ padding: clamp(16px, 2vw, 22px); }
.field{ margin-bottom: 12px; }
.field:last-of-type{ margin-bottom: 16px; }

.contact-form input,
.contact-form textarea{
  width: calc(100% - 30px);
  border:2px solid #e6edf1;
  border-radius: 30px;
  padding: 6px 14px;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
  background:#fff;
}
.contact-form input{ height: 48px; border-radius: 28px; }
.contact-form textarea{ resize: vertical; min-height: 140px; padding-top: 20px; }

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(53,182,233,.18);
}

/* Button */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:900; text-transform:uppercase; cursor:pointer; border:none;
  transition: transform .08s ease, filter .2s ease;
}
.btn--send{
  background:var(--brand-pink)!important; color:#fff!important; border-radius:999px!important;
  height:44px!important; padding: 0 22px!important; letter-spacing:.5px!important;
    margin: auto;
}
.btn--send:hover{ filter: brightness(.95)!important; }
.btn--send:active{ transform: translateY(1px)!important; }

.contact-form__actions{
  display:flex; justify-content:flex-end; padding-top:6px;
}


.contact-card .title { display: none; }




    /* ---------- Hero ---------- */
    .faq-hero{
      background:var(--brand-pink);
      color:#fff;
      padding: clamp(36px,7vw,110px) 0 clamp(28px,5vw,64px);
    }

    .faq h2{
      margin:20px 0;
      color:var(--ink-dark,#254553);
      font-weight:900;
      line-height:1.1;
      font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
        text-align: center;
    }


    .faq-hero__wrap{display:grid;grid-template-columns: 1.1fr 1fr;gap: clamp(16px,4vw,48px);align-items:end;}
    .faq-hero h1{margin:0 0 8px;font-weight:900;line-height:1.05;font-size:clamp(2rem,2.4vw + 1rem,3rem);}
    .faq-hero p{margin:0;color:#fff;opacity:.95;font-size:clamp(1.05rem,.6vw + 1rem,1.2rem);}
    .faq-hero__cta{justify-self:end}
    .faq-hero .button{display:inline-flex;align-items:center;justify-content:center;padding:12px 20px;border-radius:999px;font-weight:800;cursor:pointer;border:2px solid transparent;transition:background .2s,color .2s,border-color .2s;text-transform:uppercase;}
    .faq-hero .button--cta-outline{background:transparent;color:#FFF; border-color:#FFF;}
    .faq-hero .button--cta-outline:hover,.button--cta-outline:focus{background:var(--brand-orange);color:#fff;}

    @media (max-width: 960px){
      .faq-hero__wrap{grid-template-columns:1fr;align-items:start;}
      .faq-hero__cta{justify-self:start}
    }

    /* ---------- Search ---------- */
    .faq-search{padding: clamp(18px,3vw,28px) 0;}
    .faq-search__bar{
      width:100%;max-width:760px; margin: auto; background:#fff;border:2px solid #e9eef1;border-radius:999px;
      padding:12px 16px 12px 48px; font:inherit; box-shadow:0 8px 22px rgba(0,0,0,.06);
      background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="%23456A75" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="7"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>');
      background-repeat:no-repeat;background-position:14px 50%;
    }
    .faq-search__note{margin-top:8px;color:var(--ink-mid);font-size:.95rem}

    /* ---------- Accordion ---------- */
    .faq{padding: 0 0 clamp(36px,6vw,80px);}
    .faq__list{ max-width:980px; margin: auto; }
    .faq-item { background:#fff;border-radius:20px;box-shadow:0 10px 22px rgba(0,0,0,.08);margin:0 0 14px;border:1px solid #eef3f6;overflow:hidden}
    .faq-q{
      width:100%;text-align:left;background:#fff;border:none;cursor:pointer;
      padding:18px 56px 18px 18px; font-weight:900; color:var(--ink-dark);
      font-size: clamp(1.05rem,.6vw + 1rem,1.25rem); position:relative;
    }
    .faq-q:focus-visible{outline:3px solid rgba(53,182,233,.35);outline-offset:3px;border-radius:14px}
    .faq-q .chev{
      position:absolute;right:14px;top:50%;transform:translateY(-50%) rotate(0deg);
      transition: transform .2s ease;
      width:28px;height:28px;border-radius:10px;background:#f6fbfe;
      display:grid;place-items:center;border:1px solid #e4edf2;
    }
    .faq-q .chev svg{display:block}
    .faq-item[open] .faq-q .chev{transform:translateY(-50%) rotate(180deg)}
    .faq-a{
      padding:0 18px 18px 18px;display:grid;grid-template-rows:0fr;transition:grid-template-rows .25s ease;
    }
    .faq-item[open] .faq-a{grid-template-rows:1fr}
    .faq-a__inner{min-height:0}
    .faq-a p{margin:0 0 10px;color:var(--ink-dark)}
    .faq-a ul{margin:0 0 10px 18px}
    .faq-item[open]{border-color:var(--orange-a);box-shadow:0 14px 28px rgba(0,0,0,.1), inset 0 0 0 3px #fff}
    .faq-item[open] .faq-q{background:linear-gradient(#fff,#fff) padding-box, linear-gradient(90deg,var(--orange-a),transparent 60%) border-box}
    .faq-item[open] .faq-q .chev{background:var(--brand-orange);border-color:var(--brand-orange)}
    .faq-item[open] .faq-q .chev svg path{stroke:#fff}

    /* ---------- Bottom CTA ---------- */
    .faq-cta{
      margin-top: clamp(28px,6vw,80px);
      background: radial-gradient(1100px 420px at 10% -20%, var(--orange-a), transparent 60%),
                  radial-gradient(900px 300px at 90% 120%, var(--pink-a), transparent 60%),
                  var(--brand-orange);
      color:#fff; border-radius:24px; padding: clamp(18px,3.5vw,28px);
      display:flex;flex-wrap:wrap;align-items:center;gap:16px;justify-content:space-between;
      box-shadow:0 16px 34px rgba(0,0,0,.14);
    }
    .faq-cta h3{margin:0;font-weight:900;line-height:1.15;font-size: clamp(1.3rem,1.4vw + 1rem,1.8rem)}
    .faq-cta p{margin:0;opacity:.95}
    .faq-cta__actions{display:flex;gap:10px;flex-wrap:wrap}
    .button--light{background:#fff;color:var(--brand-orange);border-color:#fff}
    .button--light:hover,.button--light:focus{background:transparent;color:#fff;border-color:#fff}

    .faq-search .container { text-align: center; }



.faq-q{ list-style: none; }                     /* Firefox/Chromium */
.faq-q::-webkit-details-marker{ display:none; } /* Safari/WebKit */

/* Custom marker with breathing room */
.faq-q::before{
  content: "▸";                 /* closed state arrow */
  display: inline-block;
  margin-right: .8rem;          /* <— the space you asked for */
  color: var(--ink-mid, #456A75);
  font-size: 1.05rem;
  transform: translateY(-1px);
}
.faq-item[open] .faq-q::before{
  content: "▾";                 /* open state arrow */
}











/* ====== Hero ====== */
.sc-hero{
  color:#fff;
  background: var(--brand-pink);
  padding: clamp(36px, 7vw, 110px) 0 clamp(20px, 5vw, 40px);
}
.sc-hero__wrap{display:grid;grid-template-columns:1.2fr 1fr;gap: clamp(16px,4vw,48px);align-items:end}
.sc-hero h1{margin:0 0 8px;font-weight:900;line-height:1.05;font-size:clamp(2rem,2.6vw + 1rem,3rem)}
.sc-hero p{margin:0;opacity:.95;font-size:clamp(1.05rem,.6vw + 1rem,1.2rem)}
.sc-hero__alt{justify-self:end}

.sc-hero__alt strong { display: block; clear: both; font-size: 160%; padding: 0 15px; letter-spacing: 1px; }


@media (max-width: 980px){
  .sc-hero__wrap{grid-template-columns:1fr;align-items:start}
  .sc-hero__alt{justify-self:start}
}

/* ====== Wizard shell ====== */
.sc{padding: clamp(20px,5vw,60px) 0;}
.sc-card{
  background:#fff;border-radius:26px;box-shadow:var(--shadow);overflow:hidden;
  border:1px solid #eef3f6;
}
.sc-progress{
  width:100%;height:6px;background:#f2f6f8;position:relative;overflow:hidden;
}
.sc-progress__bar{height:100%;width:0;background:linear-gradient(90deg,var(--brand-orange),var(--brand-pink));transition:width .3s ease}

/* stepper */
.sc-steps{display:flex;gap:10px;flex-wrap:wrap;padding:14px 16px;border-bottom:1px solid #eef3f6}
.sc-stepchip{display:flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:#f6fbfe;border:1px solid #e4edf2;color:var(--ink-dark);font-weight:800}
.sc-stepchip .badge{width:24px;height:24px;border-radius:50%;display:grid;place-items:center;background:#fff;border:2px solid var(--ink-dark);font-size:.95rem;font-weight:900;line-height:1}
.sc-stepchip.is-active{background:#fff;border-color:var(--brand-blue);box-shadow:0 6px 16px rgba(53,182,233,.18)}
.sc-stepchip.is-active .badge{border-color:var(--brand-blue);color:var(--brand-blue)}
.sc-stepchip.is-done .badge{background:var(--brand-blue);border-color:var(--brand-blue);color:#fff}

/* form body */
.sc-body{padding: clamp(16px,2.5vw,24px)}
.sc-grid{display:grid;grid-template-columns: repeat(2, minmax(260px,1fr));gap: clamp(12px,2.2vw,24px)}
@media (max-width: 880px){ .sc-grid{grid-template-columns:1fr} }

.field{display:flex;flex-direction:column}
.label{font-weight:900;margin:0 0 6px}
.input, .select, .textarea{
  background:#fff;border:2px solid #e6edf1;border-radius:16px;outline:none;
  padding:12px 14px;transition:border-color .18s ease, box-shadow .18s ease;
}
.input{height:48px;border-radius:28px}
.textarea{min-height:120px;resize:vertical}
.input:focus,.select:focus,.textarea:focus{border-color:var(--brand-blue);box-shadow:0 0 0 4px rgba(53,182,233,.18)}
.field.error .input, .field.error .select, .field.error .textarea{border-color:#b00020;box-shadow:0 0 0 3px rgba(176,0,32,.1)}
.field .error-text{color:#b00020;font-size:.95rem;margin-top:6px}

/* chips */
.chips{display:flex;flex-wrap:wrap;gap:10px}
.chip{
  --tone:#e9eef1;
  display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:999px;
  background:#fff;border:2px solid var(--tone);cursor:pointer;font-weight:800;
}
.chip input{accent-color:var(--brand-blue)}
.chip--pink{--tone:var(--pink-b)} .chip--blue{--tone:var(--blue-b)} .chip--orange{--tone:var(--brand-orange)} .chip--ink{--tone:var(--ink-b)}
.chip:has(input:checked){background:var(--tone);color:#fff}

/* evidence */
.uploader{border:2px dashed #dfe8ec;border-radius:16px;background:#f9fbfc;padding:16px;text-align:center}
.uploader input[type=file]{display:none}
.uploader .choose{display:inline-flex;align-items:center;gap:8px}
.upload-list{list-style:none;margin:10px 0 0;padding:0;display:grid;gap:8px}
.upload-item{display:flex;justify-content:space-between;align-items:center;background:#fff;border:1px solid #e9eef1;border-radius:12px;padding:8px 10px}
.upload-item button{background:transparent;border:0;color:var(--ink-a);cursor:pointer;font-weight:900}

/* actions */
.sc-actions{display:flex;flex-wrap:wrap;gap:10px;justify-content:space-between;border-top:1px solid #eef3f6;padding:14px 16px;background:#fff}
.sc-actions__left, .sc-actions__right{display:flex;gap:10px;flex-wrap:wrap}
.sc-muted{font-size:.95rem;color:var(--ink-a)}
.save-indicator{font-size:.95rem;color:var(--ink-a)}

/* error summary */
.sc-errors{display:none;margin:0 0 12px;padding:12px;border:2px solid #b00020;border-radius:12px;background:#fff5f7}
.sc-errors h3{margin:0 0 6px;font-size:1.05rem}
.sc-errors ul{margin:0;padding-left:18px}
.sc-errors.show{display:block}

/* review */
.review{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.review dl{margin:0;background:#f7fafb;border:1px solid #e9eef1;border-radius:14px;padding:12px}
.review dt{font-weight:900}
.review dd{margin:0 0 6px}
@media (max-width:880px){ .review{grid-template-columns:1fr} }







/* ===== Action bar visibility & contrast ===== */
.sc-actions{
  position: sticky;        /* stays in view when a step is long */
  bottom: 0;
  background:#fff;
  border-top:1px solid #e4edf2;
  box-shadow: 0 -6px 18px rgba(0,0,0,.06);
  z-index: 5;
}

/* Ensure the pills are obvious */
.sc-actions .button{
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border-width: 2px;
  font-weight: 900;
  letter-spacing: .3px;
}

/* Primary (Continue / Send) */
.sc-actions .button--cta{
  background: var(--brand-orange) !important;
  color:#fff !important;
  border-color: var(--brand-orange) !important;
  box-shadow: 0 6px 16px rgba(247,154,44,.35);
}
.sc-actions .button--cta:disabled{
  opacity: 1;                 /* keep readable */
  filter: brightness(.92);
  cursor: progress;
}

/* Outline (Save) */
.sc-actions .button--cta-outline{
  background:#fff;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}

/* Ghost (Back) – neutral but visible */
.button--ghost{
  background:#fff;
  color: var(--ink-dark);
  border-color:#cfdbe3;
}
.button--ghost:hover,
.button--ghost:focus{ border-color: var(--ink-b); }

/* Focus ring for all buttons */
.sc-actions .button:focus-visible{
  outline: 3px solid rgba(53,182,233,.35);
  outline-offset: 2px;
}



.sc-hero .button { display: block; text-align: center; line-height: 1; }
.sc-hero .button { }
.sc-hero .button--cta-outline {
  background:transparent;
  color:#FFF;
  border-color:#FFF;
  text-transform: uppercase;
}


.sc-hero .button--cta-outline:hover {
  background:#FFF;
  color:var(--brand-pink);
  border-color:#FFF;
  text-transform: uppercase;
}











.h-entry h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.h-entry h3 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

.h-entry h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    line-height: 1.1;
}

.h-entry h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
    margin-top: 0.5rem;
    line-height: 1.1;
}

.h-entry h6 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
    margin-top: 0.5rem;
    line-height: 1.1;
}







.h-entry h2 strong, .h-entry h3 strong, .h-entry h4 strong, .h-entry h5 strong, .h-entry h6 strong { display: block; } 








.h-entry blockquote {
    border-left: 4px solid #BE1E2D;
    padding-left: 1rem;
    font-style: italic;
    margin: 0;
    margin-left: 2rem;
    margin-top: -1rem;
}


.h-entry p {
    line-height: 1.4;
    margin-bottom: 0.75rem;
}


.h-entry p strong { font-weight:800; }



.h-entry .description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.h-entry .subhead {
    font-size: 1.75rem;
    font-weight: bold;
}

.h-entry .pullquote {
    border-left: 4px solid #ccc;
    padding-left: 1rem;
    font-style: italic;
}

.h-entry .cta-block {
    background: #f0f0f0;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-size: 150%;
}



.h-entry figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.h-entry figure img {
    width: 100%;
    height: auto;
}

.h-entry .two-column-text {
    column-count: 2;
    column-gap: 1.5rem;
}

@media (max-width: 768px) {
    .h-entry .two-column-text {
        column-count: 1;
    }
}

.h-entry .image-text-side {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.h-entry .image-text-side.left img {
    order: -1;
}

@media (max-width: 768px) {
    .h-entry .image-text-side {
        flex-direction: column;
    }
}

.h-entry .image-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.h-entry .image-row img {
    width: calc(50% - 1em);
    height: auto;
}






@media (max-width: 768px) {
    .h-entry .image-row img {
        width: 100%;
    }
}




.h-entry .gallery-grid img { width:100% }


.h-entry .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}






@media (max-width: 1024px) {
    .h-entry .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .h-entry .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}






.h-entry .overlay-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.h-entry .overlay-container img {
    width: 100%;
    height: auto;
}

.h-entry .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.h-entry .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.h-entry .video-container iframe,
.h-entry .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.h-entry .accordion {
    border: 1px solid #ddd;
}

.h-entry .accordion-button {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background: #eee;
    border: none;
    cursor: pointer;
}

.h-entry .accordion-content {
    display: none;
    padding: 1rem;
}

.h-entry .tab-container {
    display: flex;
    flex-direction: column;
}

.h-entry .tab-button {
    padding: 0.5rem;
    background: #ddd;
    border: none;
    cursor: pointer;
}

.h-entry .tab-content {
    display: none;
    padding: 1rem;
    background: #f9f9f9;
}

.h-entry .spacer {
    display: block;
}





.h-entry .image-text-side.left {
    flex-direction: row-reverse;
}

.h-entry .image-text-side.right {
    flex-direction: row;
}

.h-entry .image-text-side img {
    max-width: 55%;
    height: auto;
}

.h-entry .image-text-side .text-content {
    flex: 1;
    width: 40%;
}










@media (max-width: 1024px) {
    .h-entry .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .h-entry .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    .h-entry .image-text-side {
        flex-direction: column;
    }
}


@media (max-width: 768px) {
    .h-entry .two-column-text {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    
    .h-entry .image-text-side {
        flex-direction: column !important;
        text-align: center;
        gap: 1rem;
    }
    .h-entry .image-text-side img {
        max-width: 100%;
        height: auto;
    }
    .h-entry .image-text-side .text-content {
        width: 100%;
    }
    
    
    .h-entry .overlay-text {
        width: 90%;
        padding: 0.5rem; }
    
    .h-entry .overlay-text h2 { font-size: 1.3rem; }
    .h-entry .overlay-text p { line-height: 1.2; margin-top: 0; margin-bottom: 0.2rem; }
    
    
    .h-entry .testimonial-text { font-size: 1.3rem; }
    
    
    .about-hero__title { font-size: 3.5rem; }
}


.syc { background: var(--pink-a) !important; margin-top: 20px; padding: 12px 0;  }
.syc:hover { background: var(--pink-b) !important; margin-top: 20px; padding: 12px 0;  }
.syc a { background: var(--pink-a) !important; color:#fff !important; font-size: 120%; }
.syc a:hover { background: var(--pink-b) !important; color:#fff !important; }





ul.profiles { list-style: none; margin: 50px 0; }
ul.profiles li { list-style: none; padding: 70px 0 5px 0; margin: 5px 0; }

ul.profiles li h3 { font-size: 30px; font-weight: normal; color: var(--brand-blue); margin: 0; padding: 10px 0; }


