/* ======================================================
   KLEO — styles.css (fresh consolidated)
   ====================================================== */

/* ======================================================
   0) Cookie consent banner
   ====================================================== */

.cookieBanner{
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(560px, calc(100vw - 32px));
  background: var(--ink, #101957);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
}
.cookieBanner.is-visible{
  display: flex;
}

.cookieText{
  flex: 1 1 200px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}

.cookieText a{
  color: #ee6266;
  text-decoration: underline;
}

.cookieActions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookieAccept{
  padding: 9px 20px;
  background: #ee6266;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s ease;
}
.cookieAccept:hover{ opacity: .85; }

.cookieDecline{
  padding: 9px 20px;
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s ease;
}
.cookieDecline:hover{ opacity: .7; }

/* ======================================================
   1) Design tokens / globals
   ====================================================== */

:root{
  --bg: #F9F8F8;
  --fg: #111111;
  --muted: rgba(16, 25, 87, .70);
  --hairline: rgba(16, 25, 87, .14);

  --accent: #EE6266;
  --ink: #101957;

  --max: 1160px;

  --gutter: clamp(18px, 5vw, 54px);
  --bandPadY: clamp(56px, 7vw, 120px);
  --heroPadY: clamp(68px, 9vw, 140px);

  --radius: 16px;
  --shadow: 0 18px 55px rgba(16,25,87,.10);
  --ease: cubic-bezier(.2,.9,.2,1);
}

*{ box-sizing:border-box; }
html, body { height:100%; }
html {
  scroll-behavior: smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.35;
  text-rendering: geometricPrecision;
}

/* Media / type defaults */
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

/* Focus ring */
a:focus-visible, button:focus-visible{
  outline: 3px solid rgba(238, 98, 102, .55);
  outline-offset: 3px;
  border-radius: 12px;
}

.container{
  width:min(var(--max), 100% - (var(--gutter) * 2));
  margin-inline:auto;
}

/* Accessibility: skip link */
.skip{
  position:absolute; left:-999px; top:0;
  padding:10px 12px;
  background:var(--ink);
  color:#fff;
  border-radius:12px;
  z-index: 9999;
}
.skip:focus{ left: var(--gutter); top: var(--gutter); }

/* Page spacing safety */
body{ padding-top: 0 !important; }
main{ padding-top: 0 !important; }

/* ======================================================
   2) Header (transparent over hero → black on scroll)
   ====================================================== */

.siteHeader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(0,0,0,0); /* fully transparent */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}

.siteHeader.isScrolled{
  background: rgba(238,98,102,0.92);   /* slightly opaque */
  backdrop-filter: blur(8px);     /* subtle glass effect */
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

.siteHeader.isBlue {
  background: rgba(16,25,87,0.95); /* your ink blue */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.siteHeader.isScrolled {
  background: rgba(238,98,102,0.92); /* coral */
}

.bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 20px 0;
  transition: padding .25s ease;
}
.siteHeader.isScrolled .bar{ padding: 14px 0; }

.brand{ display:flex; align-items:center; }

.brandLogo{
  height: 28px;
  width:auto;
  display:block;
  opacity:.95;
  transition: transform .2s ease, opacity .2s ease;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
}
.brand:hover .brandLogo{ transform: scale(1.04); opacity:1; }

@media (min-width: 920px){
  .brandLogo{ height: 32px; }
}

.headerRight{
  display:flex;
  align-items:center;
  gap:24px;
}

.navConsultBtn{
  display: inline-block;
  padding: 9px 18px;
  background: #ee6266;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity .2s ease, transform .2s ease;
}
.navConsultBtn:hover{
  opacity: .85;
  transform: translateY(-1px);
}

/* Hide on small screens to avoid crowding the nav */
@media (max-width: 640px){
  .navConsultBtn{ display: none; }
}

.socialIcons{
  display:flex;
  align-items:center;
  gap:18px;
}
.socialIcons a{
  color:#fff;
  width:22px; height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: opacity .2s ease, transform .2s ease;
}
.socialIcons svg{ width:100%; height:100%; }
.socialIcons a:hover{ opacity:.6; transform: translateY(-2px); }

.menuBtn{
  background:transparent;
  border:none;
  padding:10px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.burger{
  width:34px;
  height:24px;
  position:relative;
}
.burger span{
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background:#fff;
  border-radius:3px;
  transition: all .3s ease;
}
.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:10px; }
.burger span:nth-child(3){ bottom:0; }
.siteHeader.isScrolled .burger span{ background:#fff !important; }

/* Prevent any inner background bar appearing */
.siteHeader .container,
.siteHeader .bar{
  background: transparent !important;
}

/* ======================================================
   3) Overlay menu (full-screen + slide-in panel)
   ====================================================== */

.overlay{
  position: fixed;
  inset:0;
  z-index:2000;
  background: rgba(0,0,0,.4);
  opacity:0;
  pointer-events:none;
  transition: opacity .3s ease;
}
.overlay.open{
  opacity:1;
  pointer-events:auto;
}

.panel{
  position:absolute;
  top:0; right:0;
  height:100%;
  width:min(420px, 90vw);

  background:#101957;
  color:#fff;
  padding: 60px 40px;

  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.77,0,.18,1);

  display:flex;
  flex-direction:column;
  gap:30px;
}
.overlay.open .panel{ transform: translateX(0); }

.panelTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.panelLabel{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: #EE6266
}

.closeBtn{
  background:none;
  border:none;
  color:#fff;
  font-size:48px;
  line-height:1;
  cursor:pointer;
  padding:0;
  margin:0;
  transition: opacity .2s ease, transform .2s ease;
}
.closeBtn:hover{ opacity:.6; transform: scale(1.05); }

.menuGrid{
  display:flex;
  flex-direction:column;
  gap:28px;
}
.menuGrid a{
  display:flex;
  justify-content:space-between;
  align-items:baseline;

  color:#fff;
  font-size:28px;
  font-weight:600;
  transition: opacity .2s ease, transform .2s ease;
}
.menuGrid a:hover{ opacity:.6; transform: translateX(6px); }

.menuGrid .meta{
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.70);
}

/* ======================================================
   4) Hero (full-frame photo)
   ====================================================== */

.heroPhoto{
  position:relative;
  height:100vh;
  width:100%;
  overflow:hidden;
}

.heroPhotoImg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.heroPhotoOverlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.25);
}

.heroPhotoContent{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.heroLogo{
  width: min(80vw, 900px);
  height:auto;
  display:block;
}

.scrollCue{
  position:absolute;
  left:50%;
  bottom: clamp(18px, 4vw, 34px);
  transform: translateX(-50%);
  z-index:3;
  width:40px;
  height:52px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}
.scrollCue span{
  width:6px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.75);
  animation: cue 1.4s ease-in-out infinite;
}
@keyframes cue{
  0%,100%{ transform: translateY(-6px); opacity:.65; }
  50%{ transform: translateY(6px); opacity:1; }
}

/* ======================================================
   5) Sections / bands / typography helpers
   ====================================================== */

.pill{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(16,25,87,.70);
  font-weight:800;
}

.band{
  padding: var(--bandPadY) 0;
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}

.bandAlt{
  background:
    radial-gradient(900px 240px at 12% 30%, rgba(238,98,102,.10), transparent 60%),
    rgba(16,25,87,.03);
}

.bandInk{
  background: var(--ink);
  color:#fff;
}
.bandInk .bandNum,
.bandInk .pill,
.bandInk .bandTitle p,
.bandInk .cardBody p{ color: rgba(255,255,255,.78); }
.bandInk .bandTitle h2,
.bandInk .cardBody h3,
.bandInk a{ color:#fff; }
.bandInk .card{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.bandInk .cardMedia{ background: rgba(255,255,255,.10); }
.bandInk .quietLink{ border-bottom-color: rgba(255,255,255,.25); }
.bandInk .quietLink:hover{ border-bottom-color: rgba(255,255,255,.55); }

.bandAccent{
  background: var(--accent);
  color: var(--ink);
}
.bandAccent .bandNum,
.bandAccent .pill,
.bandAccent .bandTitle p,
.bandAccent .cardBody p{ color: rgba(16,25,87,.78); }
.bandAccent .card{
  background: rgba(255,255,255,.66);
  border-color: rgba(16,25,87,.18);
}

.bandHead{
  display:grid;
  gap:14px;
  padding-bottom: clamp(18px, 3vw, 28px);
  border-bottom: 0;
}

.bandNum{
  font-size:12px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color: var(--muted);
}

.bandTitle h2{ margin:0; }
.bandTitle p{
  margin: 10px 0 0;
  max-width: 70ch;
  color: var(--muted);
  font-size:16px;
  line-height:1.7;
}

.bandTitle > h2{
  font-size: clamp(34px, 4.2vw, 64px);
  line-height:1.02;
  letter-spacing:-.03em;
  color: var(--ink);
}
.bandTitle > h2 + h2{
  margin-top:12px;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height:1.25;
  letter-spacing:-.02em;
  color: var(--muted);
}

/* ======================================================
   6) Cards / grids / links
   ====================================================== */

.grid{
  display:grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.card{
  border:1px solid var(--hairline);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.70);
}

.cardMedia{
  aspect-ratio: 16 / 10;
  background: rgba(16,25,87,.06);
}
.cardMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(.95) contrast(1.02);
}

.cardBody{
  padding: 20px 20px 22px;
  display:grid;
  gap:10px;
}
.cardBody h3{
  margin:0;
  font-size:18px;
  letter-spacing:-.01em;
  color: var(--ink);
}
.cardBody p{
  margin:0;
  color: var(--muted);
  line-height:1.65;
}

.textCard .cardBody{ padding:26px; }

.linkRow{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-weight:800;
  color: var(--ink);
}

.quietLink{
  color:inherit;
  border-bottom: 1px solid rgba(16,25,87,.22);
}
.quietLink:hover{ border-bottom-color: rgba(238,98,102,.85); }

/* ======================================================
   7) Horizontal strips (Services/Testimonial carousels)
   ====================================================== */

.strip{
  display:flex;
  gap: clamp(16px, 2.2vw, 24px);
  overflow:auto;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.strip::-webkit-scrollbar{ height:10px; }
.strip::-webkit-scrollbar-thumb{ background: rgba(16,25,87,.20); border-radius:999px; }

.shot{
  flex: 0 0 min(84vw, 560px);
  scroll-snap-align:start;
  border:1px solid var(--hairline);
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.70);
}

/* ======================================================
   8) About-you “serve” blocks
   ====================================================== */

.serveBig{
  margin-top:22px;
  display:grid;
  gap:0;
  border-top: 1px solid rgba(16,25,87,.14);
}
.serveBigItem{
  display:grid;
  grid-template-columns: 60px 1fr;
  gap:22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(16,25,87,.14);
}
.serveBigNum{
  font-size:12px;
  font-weight:800;
  letter-spacing:.22em;
  color: var(--accent);
  padding-top:12px;
}
.serveBigText{
  font-size: clamp(20px, 2vw, 30px);
  font-weight:700;
  letter-spacing:-.02em;
  line-height:1.15;
  color: var(--ink);
  max-width:34ch;
}

/* ======================================================
   9) Image divider (full-bleed ~ 1 inch)
   ====================================================== */

.imageDivider{
  width:100%;
  height:96px;
  overflow:hidden;
  margin:0;
}
.imageDivider img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* ======================================================
   10) Services: pill tags + split layout
   ====================================================== */

.pillList{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.pillTag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
  line-height:1;
  border:1px solid rgba(238,98,102,.55);
  background: rgba(255,255,255,.55);
  color: var(--ink);
  white-space: nowrap;
}
.pillTag:hover{ border-color: rgba(16,25,87,.16); }

@media (max-width: 640px){
  .pillTag{
    white-space: normal;
    line-height:1.3;
    text-align:center;
  }
}

.servicesSplit{
  display:grid;
  gap:28px;
  align-items:start;
  margin-top:18px;
}

/* Mobile: stack */
@media (max-width: 899px){
  .servicesSplit{ grid-template-columns: 1fr; }
  .servicesLeft{ position: static; }
}

/* Desktop: 1/3 + 2/3 */
@media (min-width: 900px){
  .servicesSplit{
    grid-template-columns: 1fr 2fr;
    gap:34px;
  }
  .servicesLeft{
    position: sticky;
    top:110px;
    align-self:start;
  }
}
.servicesTitle{
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

/* Services: stop carousel once split layout begins */
@media (min-width: 900px){
  #what-we-do .strip{
    overflow: visible;
    scroll-snap-type: none;
  }
  #what-we-do .strip .shot{
    flex: 1 1 0;
    min-width: 0;
  }
}

/* ======================================================
   11) Founder card
   ====================================================== */

.founderCard{
  border:1px solid var(--hairline);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.70);
  display:grid;
}

.founderMedia{
  aspect-ratio: 4 / 3;
  background: rgba(16,25,87,.06);
}
.founderMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.founderBody{
  padding:26px;
  display:grid;
  gap:12px;
}
.founderName{
  margin:0;
  font-size:22px;
  letter-spacing:-.02em;
  color: var(--ink);
}
.founderBio{
  margin:0;
  color: var(--muted);
  line-height:1.7;
  max-width:70ch;
}
.founderPills{ margin-top:4px; }
.founderLinks{
  margin-top:8px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  font-weight:800;
  color: var(--ink);
}

/* Desktop: media left, text right */
@media (min-width: 920px){
  .founderCard{
    grid-template-columns: 1fr 1.3fr;
    align-items:stretch;
  }
  .founderMedia{ aspect-ratio: auto; min-height: 100%; }
}

/* ======================================================
   12) Testimonials (responsive + arrows)
   ====================================================== */

#testimonials{
  background: var(--ink);
}
#testimonials .bandNum,
#testimonials h2{
  color: var(--accent);
}
#testimonials .bandTitle p{
  color: rgba(255,255,255,.78);
}

/* Card styling in dark section */
.tCard{ background: rgba(255,255,255,.92); }
.tQuote{
  margin:0;
  font-size:18px;
  line-height:1.7;
  color: rgba(16,25,87,.82);
}
.tMeta{
  margin-top:10px;
  padding-top:12px;
  border-top: 1px solid rgba(16,25,87,.12);
  display:grid;
  gap:2px;
}

.tCta{
  margin-top: 32px;
  text-align: center;
}
.tCtaBtn{
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}
.tCtaBtn:hover{
  opacity: .85;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.8);
}
.tName{
  font-weight:800;
  letter-spacing:-.01em;
  color: var(--ink);
}
.tRole{
  font-size:14px;
  color: var(--muted);
}

/* Wrapper with arrows */
.stripWrap{
  position:relative;
  display:grid;
  grid-template-columns: auto 1fr auto;
  gap:12px;
  align-items:center;
}

/* Buttons */
.stripBtn{
  width:44px;
  height:44px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.stripBtn span{
  font-size:28px;
  line-height:1;
  color: #fff;
  transform: translateY(-1px);
}
.stripBtn:hover{ opacity:.88; }

/* Mobile arrows slightly smaller */
@media (max-width: 640px){
  .stripWrap{ grid-template-columns: 40px 1fr 40px; gap:8px; }
  .stripBtn{ width:40px; height:40px; }
}

/* Responsive width control for the testimonial carousel itself */
#testimonials .strip{
  overflow: hidden;              /* arrows are primary nav; swipe still works on touch */
  scroll-snap-type: x mandatory;
  padding: 6px 2px 14px;
}
#testimonials .shot{
  scroll-snap-align: start;
  flex: 0 0 100%;
  max-width: 100%;
}

/* Tablet: 2 per view */
@media (min-width: 640px){
  #testimonials .shot{
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

/* Desktop: 3 per view */
@media (min-width: 920px){
  #testimonials .shot{
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

/* ======================================================
   13) Footer (Astra-like panel + Mailchimp)
   ====================================================== */

.siteFooterNew{
  padding: 56px 0 70px;
  background: var(--accent);
  border-top: 1px solid var(--hairline);
}

.footerShell{
  background: var(--ink);
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  overflow:hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}

.footerTop{
  padding: clamp(28px, 4vw, 44px);
  display:grid;
  gap:26px;
}

.footerMark{
  font-weight:900;
  letter-spacing:-.03em;
  font-size: clamp(26px, 3.2vw, 42px);
  color:#fff;
}

.footerAbout{
  margin:10px 0 0;
  max-width:44ch;
  line-height:1.65;
}

/* Social pills */
.footerSocial{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footerSocial a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  padding:0 14px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  font-weight:800;
  letter-spacing:.06em;
  font-size:12px;
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}
.footerSocial a:hover{
  opacity:.85;
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.26);
}

.footerConsultBtn{
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ee6266;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: opacity .2s ease, transform .2s ease;
}
.footerConsultBtn:hover{
  opacity: .85;
  transform: translateY(-2px);
}

.footerCols{
  display:grid;
  gap:18px;
}
.footerCol{
  display:grid;
  gap:10px;
  align-content:start;
}
.footerColTitle{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:800;
}
.footerCol a{
  font-weight:650;
  letter-spacing:-.01em;
  padding:2px 0;
  transition: opacity .2s ease, transform .2s ease;
}
.footerCol a:hover{
  opacity:.70;
  transform: translateX(3px);
}

/* Newsletter box in footer */
.footerNewsletter{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: 18px;
}

/* In the light newsletter box, treat these as dark text */
.footerNewsletter .footerColTitle{ color: var(--ink); }
.footerNewsletter .footerAbout{ color: var(--muted); }

/* Mailchimp embed containment */
.footerNewsletter .newsletterEmbed{
  margin-top:14px;
}

/* Neutralize Mailchimp layout quirks inside footer */
.footerNewsletter #mc_embed_shell{ all: unset; }
.footerNewsletter #mc_embed_signup{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  background: transparent !important;
  clear: none !important;
  font: inherit !important;
}
.footerNewsletter form{
  margin:0 !important;
}

/* Hide Mailchimp “required” helper + referral badge (optional) */
.footerNewsletter .indicates-required{ display:none; }
.footerNewsletter .refferal_badge{ display:none; }

/* Labels */
.footerNewsletter label{
  display:block;
  margin: 10px 0 6px;
  font-weight: 700;
  color: var(--ink);
}

/* Inputs */
.footerNewsletter input[type="email"],
.footerNewsletter input[type="text"],
.footerNewsletter input[type="name"]{
  width:100% !important;
  max-width:100% !important;
  box-sizing:border-box;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(16,25,87,.18) !important;
  background: rgba(255,255,255,.90) !important;
  font: inherit !important;
  color: var(--ink) !important;
}

/* Submit */
.footerNewsletter input[type="submit"],
.footerNewsletter button{
  margin-top:10px !important;
  padding: 12px 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(16,25,87,.18) !important;
  background: var(--ink) !important;
  color: #fff !important;
  font-weight: 900 !important;
  text-align: center !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  display: block !important;
  width: 100% !important;
  cursor:pointer;
}
.footerNewsletter input[type="submit"]:hover,
.footerNewsletter button:hover{ opacity:.90; }

/* Ensure Mailchimp response text is visible */
.footerNewsletter #mce-error-response,
.footerNewsletter #mce-success-response{
  color: var(--ink) !important;
}

/* Bottom bar */
.footerBottom{
  padding: 18px clamp(22px, 3.5vw, 34px);
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);

  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
  justify-content:space-between;

  font-size:13px;
  color: rgba(255,255,255,.66);
}
.footerBottomLinks{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.footerBottomLinks a{
  color: rgba(255,255,255,.74);
  font-weight:750;
}
.footerBottomLinks a:hover{ opacity:.78; }

/* Footer responsive grid */
@media (min-width: 920px){
  .footerTop{
    grid-template-columns: 1.15fr 1.35fr 1fr;
    align-items:start;
    gap:34px;
  }
  .footerCols{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:26px;
  }
}

/* ======================================================
   14) Responsive layout upgrades (site-wide)
   ====================================================== */

@media (min-width: 920px){
  .bandHead{
    grid-template-columns: 140px 1fr;
    align-items:start;
    gap:22px;
  }
  .bandNum{
    font-size:13px;
    padding-top:6px;
  }

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

  /* On desktop, strips become a clean row by default,
     EXCEPT testimonial carousel (#tStrip). */
  .strip:not(#tStrip){
    overflow: visible;
    scroll-snap-type: none;
  }
  .strip:not(#tStrip) .shot{
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 640px){
  .serveBigItem{
    grid-template-columns: 42px 1fr;
    gap:14px;
    padding: 22px 0;
  }
  .serveBigText{
    font-size:20px;
    max-width:100%;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior:auto !important;
    transition:none !important;
    animation:none !important;
  }
  .scrollCue span{ animation:none !important; }
}

/* ======================================================
   15) Per-section overrides (IDs)
   ====================================================== */

/* Who we are: accent background */
#who-we-are{ background: var(--accent); }
#who-we-are .bandNum{ color: var(--ink); }

/* About you: darker band number */
#about-you .bandNum{ color: var(--ink); }

/* What we do: ink background + accent number/title */
#what-we-do{ background: var(--ink); }
#what-we-do .servicesTitle,
#what-we-do .bandNum{ color: var(--accent); }
#what-we-do .bandTitle > h2{ color: var(--accent); }

/* ======================================================
   What we do: responsive 3-column grid (not a carousel)
   ====================================================== */

#what-we-do .strip{
  display: grid;
  grid-template-columns: 1fr;     /* mobile: 1 column */
  gap: clamp(16px, 2.2vw, 24px);

  overflow: visible;             /* kill horizontal scroll */
  scroll-snap-type: none;
  padding: 0;                    /* optional: cleaner spacing */
}

/* Make cards behave like normal grid items */
#what-we-do .shot{
  flex: initial;
  width: 100%;
  min-width: 0;
}

/* tablet: 2 columns */
@media (min-width: 640px){
  #what-we-do .strip{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* desktop: 3 columns */
@media (min-width: 920px){
  #what-we-do .strip{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ======================================================
   What we do: center the cards (remove split offset)
   ====================================================== */

/* Let the right side span full width for this section */
#what-we-do .servicesRight{
  grid-column: 1 / -1;
}

/* Hide the empty left spacer column in this section */
#what-we-do .servicesLeft{
  display: none;
}

/* Keep the split wrapper from forcing awkward spacing */
#what-we-do .servicesSplit{
  grid-template-columns: 1fr;   /* single column */
}

#what-we-do .strip{
  max-width: 1160px;  /* or 980px if you want tighter */
  margin: 0 auto;
}
/* ======================================================
   Trusted / Client Logos (improved sizing)
   ====================================================== */

.trustedBlock{
  margin-top: clamp(50px, 7vw, 90px);
  padding-top: 36px;
  border-top: 0;
  position: relative;
}

/* Coral fade line */
.trustedBlock::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:2px;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(238,98,102,.65) 20%,
    rgba(238,98,102,.9) 50%,
    rgba(238,98,102,.65) 80%,
    transparent 100%
  );
}

.trustedTitle{
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 42px;
}

/* Grid layout */
.trustedGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  align-items: center;
}

/* Logo wrapper behavior */
.trustedGrid img{
  width: 100%;
  max-height: 70px;        /* INCREASED from 42px */
  object-fit: contain;
  margin: 0 auto;

  filter: grayscale(100%) contrast(1.05);
  opacity: .85;

  transition: transform .25s ease, opacity .25s ease;
}

.trustedGrid img:hover{
  opacity: 1;
  transform: scale(1.06);
}

/* Tablet */
@media (min-width: 640px){
  .trustedGrid{
    grid-template-columns: repeat(3, 1fr);
  }

  .trustedGrid img{
    max-height: 80px;
  }
}

/* Desktop */
@media (min-width: 920px){
  .trustedGrid{
    grid-template-columns: repeat(4, 1fr);  /* 4 instead of 7 → bigger presence */
  }

  .trustedGrid img{
    max-height: 90px;
  }
}

section {
  scroll-margin-top: 50px; /* match header height */
}

/* ======================================================
   Policies: top-down stack (Privacy / Terms / DE&I)
   ====================================================== */
/* ======================================================
   Policy pages: standard top-down typography
   ====================================================== */

.policyPage{
  max-width: 78ch;
  margin: 18px auto 0;   /* centers horizontally */
  color: var(--ink);
}

.policyMeta{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.policyPage h3{
  margin: 26px 0 10px;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.policyPage p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.policyPage ul{
  margin: 10px 0 14px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.policyPage li{
  margin: 6px 0;
}

/* Optional TOC */
.policyToc{
  margin: 18px 0 22px;
  padding: 16px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255,255,255,.70);
}

.policyToc ul{
  margin: 10px 0 0;
  padding-left: 18px;
}

.policyToc li{
  margin: 6px 0;
}

/* ======================================================
   Legal pages: force blue header at top
   ====================================================== */

body.legalPage .siteHeader{
  background: rgba(16,25,87,0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

/* Ensure burger + icons stay white */
body.legalPage .burger span{
  background:#fff;
}

/* Ensure burger + icons stay white */
body.legalPage .bandHead{
  padding-top: 20px;
}

/* ======================================================
   Overlay Menu – Legal Links
   ====================================================== */

.menuConsultBtn{
  display: block;
  margin-top: 32px;
  padding: 14px 24px;
  background: #ee6266;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
  transition: opacity .2s ease;
}
.menuConsultBtn:hover{ opacity: .85; }

.menuLegal{
  margin-top: auto;             /* pushes to bottom */
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);

  display: flex;
  gap: 18px;
  flex-wrap: wrap;

  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menuLegal a{
  color: rgba(255,255,255,.65);
  transition: opacity .2s ease, transform .2s ease;
}

/* ── Timeline (Our process) ─────────────────────────────── */

.timeline{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* vertical rule */
.timeline::before{
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 23px;
  width: 2px;
  background: rgba(0,0,0,.1);
}

.timelineStep{
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}

.timelineStep + .timelineStep{
  border-top: 1px solid rgba(0,0,0,.07);
}

.timelineMarker{
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  position: relative;
  z-index: 1;
}

.timelineTitle{
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}

.timelineLabel{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ee6266;
}

.timelineDesc{
  margin: 0 0 10px;
  color: rgba(0,0,0,.6);
  line-height: 1.6;
}

.timelineDesc:last-child{
  margin-bottom: 0;
}

.bandSubtitle{
  font-size: 20px !important;
}

.timelineCta{
  margin-top: 48px;
  text-align: center;
}

.btn{
  display: inline-block;
  padding: 14px 32px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: opacity .2s ease, transform .2s ease;
}

.btn:hover{
  opacity: .85;
  transform: translateY(-2px);
}

/* ── end Timeline ───────────────────────────────────────── */

.menuLegal a:hover{
  opacity: .85;
  transform: translateX(3px);
}