/* ============================================================
   Rosie's People — site.css
   Single source of truth. Replaces normalize.css + webflow.css +
   rosies-people-d5b13d.webflow.css.
   ============================================================ */

/* ── Fonts ────────────────────────────────────────────────── */
@font-face {
  font-family: 'Polysans Median';
  src: url('/fonts/PolySans-Median.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Polysans Neutral';
  src: url('/fonts/PolySans-Neutral.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Polysans Slim';
  src: url('/fonts/PolySans-Slim.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Souvenir';
  src: url('/fonts/Souvenir-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Souvenir';
  src: url('/fonts/Souvenir-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Souvenir';
  src: url('/fonts/Souvenir-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Souvenir';
  src: url('/fonts/Souvenir-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Souvenir Demi';
  src: url('/fonts/Souvenir-Demi.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Souvenir Demi';
  src: url('/fonts/Souvenir-DemiItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  /* Brand colours — names match what they actually are */
  --ink:        #190c39;   /* deep navy, primary text */
  --ink-soft:   #4a565d;   /* secondary copy */
  --ink-mute:   #6b7780;   /* captions, footnotes */
  --ink-faint:  #8a949c;   /* hints, placeholders */

  --teal:       #184952;   /* primary CTA + dark sections */
  --teal-deep:  #0f343b;   /* hover */
  --teal-soft:  #bcd0d4;

  --lime:       #9fc45d;   /* accent + secondary CTA (was --orange) */
  --lime-deep:  #88b236;   /* hover */
  --lime-soft:  #e8f1e4;   /* tints, sector pills */

  --paper:        #ffffff;
  --paper-warm:   #f8faf6;  /* warm sand for banded sections */
  --paper-warmer: #f4faec;  /* selected card bg */
  --paper-cool:   #f5f5f7;  /* legacy body bg, kept for warmth */

  --line:        #eaefe5;
  --line-soft:   #eef1f3;
  --line-strong: #d7dde0;

  --shadow-sm: 0 4px 12px rgba(24, 73, 82, 0.05);
  --shadow-md: 0 14px 34px rgba(24, 73, 82, 0.08);
  --shadow-lg: 0 20px 60px rgba(24, 73, 82, 0.10);

  /* Type scale — fluid, semantic.
     Use rem not vw — vw made the body type rubbery on resize. */
  --text-2xs:  0.72rem;
  --text-xs:   0.82rem;
  --text-sm:   0.93rem;
  --text-base: 1rem;
  --text-lg:   1.15rem;
  --text-xl:   1.45rem;
  --text-2xl:  clamp(1.5rem, 1.2rem + 1.4vw, 1.95rem);
  --text-3xl:  clamp(2rem,   1.4rem + 2.8vw, 2.8rem);
  --text-4xl:  clamp(2.4rem, 1.6rem + 4.2vw, 4rem);

  --leading-tight:  1.15;
  --leading-snug:   1.3;
  --leading-normal: 1.5;
  --leading-loose:  1.65;

  /* Font stacks. Polysans + Souvenir local files; system fallbacks. */
  --font-display: 'Souvenir', Georgia, 'Times New Roman', serif;
  --font-display-bold: 'Souvenir Demi', 'Souvenir', Georgia, serif;
  --font-body: 'Polysans Slim', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body-medium: 'Polysans Neutral', system-ui, -apple-system, sans-serif;
  --font-body-bold: 'Polysans Median', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs:  12px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  72px;
  --space-2xl: 120px;

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   18px;
  --radius-xl:   22px;
  --radius-pill: 999px;

  /* Layout */
  --container-max: 1180px;
  --container-pad: clamp(20px, 4vw, 64px);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  /* Clip horizontal overflow from the off-screen mobile menu drawer
     (position: fixed + translateX(100%)) without creating a scroll
     container — `clip` differs from `hidden` in that it does NOT break
     vue-router's window.scrollTo on navigation. */
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--paper-cool);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--text-base);
  line-height: var(--leading-snug);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

a { color: inherit; }

input, textarea, select {
  font: inherit;
  color: inherit;
}

ul, ol { padding-left: 1.4em; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 500;
  line-height: var(--leading-tight);
  color: var(--ink);
}

p { margin: 0 0 var(--space-2xs); }

[hidden] { display: none !important; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Layout primitives ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Legacy compat: many existing sections use `.padding` as a vertical
   spacer div. Map it to spacing tokens. */
.padding         { height: var(--space-xl); }
.padding.small   { height: var(--space-md); }
.padding.medium  { height: var(--space-lg); }
.padding.large   { height: var(--space-2xl); }
.padding.var     { height: var(--space-md); }
.padding.mobile  { height: var(--space-md); }

@media (max-width: 767px) {
  .padding         { height: var(--space-lg); }
  .padding.large   { height: var(--space-xl); }
}

/* Generic section padding — use on <section> */
.section { padding-block: var(--space-xl); }
.section--sm { padding-block: var(--space-lg); }
.section--lg { padding-block: var(--space-2xl); }
.section--dark { background: var(--teal); color: #fff; }
.section--warm { background: var(--paper-warm); }

/* w-layout-grid kept as an opt-in grid wrapper. We don't override; pages
   define their own template-columns/rows. */
.w-layout-grid {
  display: grid;
  grid-row-gap: var(--space-sm);
  grid-column-gap: var(--space-sm);
  grid-template-columns: 1fr 1fr;
}

.w-inline-block { display: inline-block; max-width: 100%; }
.w-richtext > *:first-child { margin-top: 0; }

/* ── Typography ──────────────────────────────────────────── */
.h1-heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: var(--leading-tight);
  color: var(--ink);
  margin: 0;
}
.h1-heading.large    { font-size: var(--text-4xl); }
.h1-heading.white    { color: #fff; }

/* Legacy variant modifiers — kept narrow, mapped to scale.
   Anything finer goes in the page's scoped style. */
.h1-heading.about,
.h1-heading.our-clients { font-size: var(--text-2xl); }
.h1-heading.x-large     { font-size: var(--text-4xl); }

.h2-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: var(--leading-tight);
  color: var(--ink);
  margin: 0;
}
.h2-heading.green { color: var(--ink); } /* legacy alias — colour is inherited */
.h2-heading.medium { font-size: var(--text-xl); }
.h2-heading.white  { color: #fff; }

.h2-heading-2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.h2-heading-2.white { color: #fff; }

.h3-heading {
  font-family: var(--font-body-bold);
  font-size: var(--text-lg);
  color: var(--ink);
  margin: 0 0 var(--space-2xs);
}

.body-paragraph {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: var(--ink-soft);
  margin: 0 0 var(--space-2xs);
}
.body-paragraph.medium  { font-size: var(--text-base); }
.body-paragraph.small,
.body-paragraph.small-hero { font-size: var(--text-sm); line-height: var(--leading-snug); }
.body-paragraph.dark    { color: var(--ink); }
.body-paragraph.white   { color: #fff; }
.body-paragraph.bold    { font-family: var(--font-display-bold); color: var(--teal); }
.body-paragraph.bold.large { font-size: var(--text-xl); line-height: var(--leading-tight); }
.body-paragraph.bold.large.white {
  font-family: var(--font-display-bold);
  font-size: var(--text-xl);
  color: #fff;
}

.bold {
  font-family: var(--font-display-bold);
  color: var(--teal);
}
.bold.white { color: #fff; }

/* Eyebrow — small all-caps lockup. Replaces five inline duplicates. */
.eyebrow,
.hero-eyebrow {
  display: block;
  font-family: var(--font-body-bold);
  font-size: var(--text-2xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: var(--space-xs);
}

.orange { color: var(--lime); }
.orange-2 { color: var(--lime-deep); }

.tag {
  display: inline-block;
  font-family: var(--font-display-bold);
  font-size: var(--text-sm);
  color: var(--ink);
}

.tm { font-size: 0.4em; }

/* Privacy / policy rich text */
.privacy p,
.privacy li {
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: var(--leading-loose);
  color: var(--ink);
}
.privacy li { margin-bottom: var(--space-xs); }
.privacy strong { color: var(--ink); font-weight: 700; }

/* ── Buttons ─────────────────────────────────────────────── */
.button-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-body-bold);
  font-size: var(--text-sm);
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.18s ease,
              box-shadow 0.18s ease,
              border-color 0.18s ease;
  white-space: nowrap;
}
.button-links:hover {
  transform: translateY(-1px);
  background: var(--teal-deep);
  box-shadow: 0 8px 22px rgba(24, 73, 82, 0.22);
}

/* Lime variant (was .orange — colour was always lime) */
.button-links.orange,
.button-links.lime {
  background: var(--lime);
  color: var(--ink);
}
.button-links.orange:hover,
.button-links.lime:hover { background: var(--lime-deep); }

.button-links.white {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.button-links.white:hover { background: var(--paper-warm); }

.button-links.full-width {
  width: 100%;
  justify-content: center;
}
.button-links.nav { font-size: var(--text-xs); padding: 10px 18px; }
.button-links.hide { display: none; }

.arrow-button {
  width: 18px;
  height: auto;
  display: inline-block;
}
.arrow-button.down { width: 14px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section { position: relative; }
.hero-section.hide-about { display: none; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5.6rem);
  align-items: center;
}
.hero-grid.vertical { display: flex; flex-direction: column; }
.hero-grid.single   { grid-template-columns: 1fr; }
.hero-grid.single.center { text-align: center; }

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}
.hero-content.right-padding { padding-right: clamp(0px, 4vw, 4rem); }
.hero-content.center-mobile,
.hero-content.articles,
.hero-content.pricing {
  align-items: center;
  text-align: center;
}
.hero-content.privacy { gap: var(--space-2xs); }

.hero-bg-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-lg);
  height: clamp(280px, 40vw, 470px);
  background-image: url('/images/Frame-74.png');
}
.hero-bg-image.others {
  background-image: linear-gradient(rgba(0,0,0,0.03), rgba(0,0,0,0.03)),
                    url('/images/pexels-katerina-holmes-5905713-compressed.jpg');
  height: clamp(260px, 36vw, 400px);
}
.hero-bg-image.others.services {
  background-image: url('/images/pexels-fauxels-3184430-compressed.jpg');
}
.hero-bg-image.others.about-us {
  background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                    url('/images/pexels-fauxels-3184339.jpg');
}
.hero-bg-image.about,
.hero-bg-image.clients {
  background-image: url('/images/pexels-tima-miroshnichenko-5686103.jpg');
}
.hero-bg-image.our-clients {
  background-image: url('/images/pexels-kampus-8441780.jpg');
}
.hero-bg-image.meet-rosie {
  background-image: url('/images/R-Hewat-2026-Headshot.jpg');
  background-position: 50% 0;
}

.hero-bg-text {
  position: absolute;
  inset: auto auto 16px 16px;
  background: #fff;
  border-radius: var(--radius-md);
  width: clamp(220px, 22vw, 280px);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.hero-image-style {
  position: absolute;
  width: 40px;
  inset: 40px auto auto 32px;
}
.hero-image-style._2 {
  width: 30px;
  inset: auto 16px 60px auto;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.heading-style {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  position: relative;
}
.heading-style.left-align { text-align: left; }
.heading-style.left-align.var { gap: var(--space-2xs); }

.header-style-image {
  position: absolute;
  width: 200px;
  top: -36px;
  right: 40px;
  opacity: 0.9;
  pointer-events: none;
}
.header-style-image._2 { width: 170px; top: -32px; right: 180px; }
.header-style-image.careers { width: 140px; top: -16px; right: 290px; }
.header-style-image.services { display: none; }

.header-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.header-wrapper.center { text-align: center; position: relative; }
.header-wrapper.about-us {
  align-items: flex-start;
  gap: var(--space-sm);
}

.paragraph-wrapper {
  width: 100%;
}
.paragraph-wrapper.width,
.paragraph-wrapper.x-width,
.paragraph-wrapper.center.x-width,
.paragraph-wrapper.left-allign.x-width {
  max-width: 600px;
}
.paragraph-wrapper.center { text-align: center; }
.paragraph-wrapper.left-allign { text-align: left; }
.paragraph-wrapper.left-allign.left-paddig { padding-right: var(--space-lg); }
.paragraph-wrapper.left-allign.left-paddig.center-text { text-align: center; }

.button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button-wrapper.top-margin  { margin-top: var(--space-md); }
.button-wrapper.more-margin { margin-top: var(--space-lg); }
.button-wrapper.center-buttons { justify-content: center; }

@media (max-width: 767px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bg-image { height: clamp(220px, 56vw, 340px); }
  .hero-content { align-items: center; text-align: center; }
  .hero-content.right-padding { padding-right: 0; }
  .header-style-image, .header-style-image._2, .header-style-image.careers {
    display: none;
  }
}

/* ── Section header (centred title + sub) ─────────────────── */
/* Used by services-v2, approach, real-cost, why-us, engagement-options.
   Replaces ad-hoc per-page versions. */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}
.section-header > .body-paragraph { margin: 0 auto; max-width: 600px; }

/* ── Cards & tile grids ──────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Navbar lives in /app/components/SiteNav.vue (vanilla, no webflow.js) */

/* ── Footer ──────────────────────────────────────────────── */
.footer { padding-bottom: var(--space-lg); }

.footer-wrapper {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 64px) clamp(28px, 4vw, 64px) 32px;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

.footer-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo-parent { display: flex; flex-direction: column; gap: 6px; }
.footer-logo { width: 56px; }
.footer-logo-text {
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.3;
}

.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
@media (max-width: 767px) {
  .footer-links-wrapper { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}

.footer-links-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-header {
  color: #fff;
  font-family: var(--font-body-bold);
  font-size: var(--text-sm);
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.f-links {
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-decoration: none;
}
.f-links:hover { color: var(--lime); }
.f-links.hde { display: none; }

.footer-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: var(--space-lg);
  padding: 28px 0;
}

.f-logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.f-1-logo { border-radius: 10px; width: clamp(120px, 20vw, 220px); }
.f-1-logo._3 { width: 140px; }
.f-1-logo._4 { width: 80px; }
.f-1-logo.awards { width: clamp(120px, 20vw, 200px); }
.f-1-logo.awards._3 {
  width: 120px;
  border: 1px solid rgba(0, 0, 0, 0.27);
  border-radius: 10px;
  object-fit: cover;
}
.f-1-logo.awards._4 { width: 140px; }

.copyright {
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-align: center;
  margin-top: var(--space-md);
}

/* ── About-us / Meet-Rosie shared blocks ─────────────────── */
.who-section {
  background: #fff;
  padding: var(--space-xl) 0;
}

.header-split {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
}
.header-split.var {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: var(--space-xl);
}
.header-split.award {
  flex-direction: column;
  margin-top: var(--space-lg);
  gap: var(--space-md);
}
@media (max-width: 767px) {
  .header-split { flex-direction: column; gap: var(--space-md); }
}

.a-about-wrap { max-width: 540px; }
.a-about-wrap.variant { display: flex; flex-direction: column; gap: 9px; }

.about-paragraph-wrapper { max-width: 540px; }
.about-paragraph-wrapper.variant { max-width: 400px; }

@media (max-width: 767px) {
  .a-about-wrap, .about-paragraph-wrapper { max-width: 100%; }
}

/* Pillbar grid for the "what we do" capability list on /about-us */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.grid.our-client { grid-template-columns: repeat(4, 1fr); margin-top: var(--space-lg); }
.grid.variant   { margin-top: var(--space-lg); }
.grid.variant.flex     { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.grid.variant.flex-var { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md); margin-top: var(--space-md); }

@media (max-width: 991px) {
  .grid, .grid.our-client { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .grid, .grid.our-client { grid-template-columns: 1fr; }
}

.about-block {
  background: var(--paper-cool);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  display: flex;
  align-items: center;
}
.about-block.white {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  justify-content: center;
}

/* Mid-page banner image with overlay copy */
.sub-block {
  display: flex;
  margin-top: var(--space-xl);
}
.sub-block.var { margin-top: var(--space-lg); }

.team-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: var(--radius-lg);
  background-image: linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.32)),
                    url('/images/pexels-fauxels-3184339.jpg');
  background-position: center;
  background-size: cover;
  padding: clamp(32px, 5vw, 80px);
}
.team-bg.var {
  background-image: linear-gradient(rgba(0,0,0,0.16), rgba(0,0,0,0.16)),
                    url('/images/pexels-rebrand-cities-581004-1367272.jpg');
  height: 480px;
  margin-top: var(--space-xl);
}
.team-bg.vertical {
  flex-direction: column;
  background-image: linear-gradient(#fff, #fff),
                    linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.32)),
                    url('/images/pexels-fauxels-3184339.jpg');
}

.ab-content-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: min(100%, 640px);
  gap: var(--space-sm);
}
.ab-content-wrapper.center {
  align-items: center;
  gap: var(--space-md);
}

/* Mission / vision twin cards (legacy hide block, but keep classes wired) */
.mission-vision-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
@media (max-width: 767px) {
  .mission-vision-wrapper { grid-template-columns: 1fr; }
}
.mission-wrapper,
.vision-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
  width: 100%;
  position: relative;
  overflow: hidden;
  gap: var(--space-md);
}
.mission-wrapper { background: var(--lime); color: var(--ink); }
.vision-wrapper  { background: var(--teal); color: #fff; }

.mission-statement {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
  color: var(--ink);
  margin: 0;
  padding-right: var(--space-md);
}
.mission-statement.white { color: #fff; }

.mission-title-wrapper {
  border-top: 1px solid rgba(25, 12, 57, 0.22);
  padding-top: var(--space-sm);
  width: 100%;
}
.mission-title-wrapper.white { border-top-color: rgba(255, 255, 255, 0.22); }

.text-block { padding-top: 0; }
.text-block.white { color: #fff; }

.pattern { width: 250px; position: absolute; inset: auto -32px 0% auto; }
.pattern.left { inset: auto auto 0% -150px; transform: rotate(7deg); }
.pattern.vision { width: 190px; }

.image-wrapper {
  background-image: linear-gradient(rgba(0,0,0,0.29), rgba(0,0,0,0.29)),
                    url('/images/pexels-heyho-7511750-compressed.jpg');
  background-position: center;
  background-size: cover;
  height: 480px;
}

/* ── FAQ accordions (homepage intro + standalone) ─────────── */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.question-wrapper-f99 {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid rgba(25, 12, 57, 0.19);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  max-width: 800px;
  margin: 0 auto;
}
.question-f99 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 8px 19px 16px;
  font-family: var(--font-body-bold);
  font-size: var(--text-base);
  color: var(--ink);
  text-decoration: none;
}
.icon-wrapper-f99 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  border-radius: var(--radius-pill);
  width: 26px;
  height: 26px;
  margin-right: 10px;
  padding: 8px;
}
.plus-icon-f99 { z-index: 1; }
.faq-icon-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.faq-icon { width: 18px; }
.faq-icon._2 { width: 20px; }
.faq-icon._3 { width: 18px; }

.faq-header {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink);
  line-height: var(--leading-tight);
}
.faq-header.small { font-size: var(--text-base); }

.answer-f99 {
  padding: 0 16px;
  font-size: var(--text-base);
  overflow: hidden;
}
.answer-text-f99 { margin-top: 10px; padding-left: 10px; }
.border-line-bottom-f99 { display: none; }

/* ── Image patterns (small decorative bits) ───────────────── */
.services-pattern {
  position: absolute;
  inset: 154px auto auto 0%;
  width: 96px;
  pointer-events: none;
}

/* ── Approach / pillar grid ───────────────────────────────── */
/* Used by /about-us — defined globally so it doesn't duplicate per page */
.approach { background: var(--paper-cool); padding-block: var(--space-xl); }
.approach-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: var(--space-lg);
}
@media (max-width: 991px) { .approach-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .approach-pillars { grid-template-columns: 1fr; } }

.approach-pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.2s ease;
}
.approach-pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.approach-pillar-icon { font-size: 1.7rem; margin-bottom: 4px; }
.approach-pillar-title {
  font-family: var(--font-body-bold);
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0;
}
.approach-pillar-body {
  color: var(--ink-mute);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  margin: 0;
}

/* TICK values block — was a brittle Webflow grid; standardise */
.tick-grid,
.approach .grid.variant:has(.tick-block) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  align-items: stretch;
}
.tick-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.tick-block .no-tick {
  font-family: var(--font-display);
  font-size: 1.5em;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}
.tick-block .tick-details .body-paragraph { margin: 0; line-height: var(--leading-normal); }

@media (max-width: 991px) {
  .tick-grid,
  .approach .grid.variant:has(.tick-block) { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .tick-grid,
  .approach .grid.variant:has(.tick-block) { grid-template-columns: 1fr; }
}

/* ── Articles cards (/blog, homepage) ─────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: var(--space-md);
}
@media (max-width: 767px) { .blog-grid { grid-template-columns: 1fr; } }

.articles-link {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(25, 12, 57, 0.10);
  border-radius: var(--radius-md);
  padding: 14px 14px 32px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.articles-link:hover {
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.articles-image {
  background-image: url('/images/pexels-startup-stock-photos-7070-compressed.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--radius-sm);
  height: 200px;
}
.articles-image._2 {
  background-image: url('/images/pexels-pavel-danilyuk-8152735-1-compressed.jpg');
}

.blog-p-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: var(--space-md);
  flex: 1;
}

.articles-heading {
  font-family: var(--font-body-medium);
  font-size: var(--text-xl);
  line-height: var(--leading-tight);
  color: var(--ink);
  margin: 0;
}
.articles-heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.articles-heading-featured {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
  color: #fff;
  margin: 0;
}

.read-more-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-sm);
  color: var(--ink);
}
.read-more-wrapper.full-width { width: 100%; }
.read-more {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body-bold);
  font-size: var(--text-sm);
}
.read-more.white { color: #fff; }
.date-time {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-mute);
}
.date-time.white { color: #fff; }
.date-time.dark  { color: var(--ink); }

/* Featured blog card with overlay */
.blog-featured-collection { width: 100%; }
.link-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 767px) { .link-block { grid-template-columns: 1fr; } }

.blog-featured-image {
  position: relative;
  display: flex;
  align-items: flex-start;
  background-color: var(--lime);
  background-image: url('/images/webflow-background-image.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 320px;
  padding: var(--space-md);
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 12, 57, 0.36);
}
.featured-tag {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: var(--font-body-bold);
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
}
.blog-details {
  background: var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-lg);
  text-align: left;
  gap: var(--space-md);
}
.blog-featured-details-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* ── Services rich-text list ──────────────────────────────── */
.services-rich-text { font-family: var(--font-body); }
.services-rich-text li {
  color: var(--ink-soft);
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  padding-left: 4px;
  margin-left: 0.1em;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: var(--space-sm);
  padding-left: 19px;
}

.services-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-inline: clamp(0px, 4vw, 5.4em);
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 8rem);
  align-items: center;
}
.who-we-are-grid.services { gap: var(--space-xl); }
.who-we-are-grid.services.flip.top,
.who-we-are-grid.services.top { align-items: start; }

@media (max-width: 767px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .who-we-are-grid.services.flip { display: flex; flex-direction: column-reverse; }
}

._w-image {
  background-image: url('/images/Frame-94.png');
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-lg);
  height: clamp(280px, 36vw, 480px);
  position: relative;
}
._w-image.services    { background-image: url('/images/pexels-sora-shimazaki-5668517-compressed.jpg'); height: clamp(220px, 28vw, 340px); }
._w-image.services._2 { background-image: url('/images/pexels-mikhail-nilov-6930435-1.jpg'); }
._w-image.services._3 { background-image: url('/images/pexels-kindelmedia-7688460-compressed.jpg'); }
._w-image.services._4 {
  background-image: linear-gradient(rgba(0,0,0,0.09), rgba(0,0,0,0.09)),
                    url('/images/pexels-sora-shimazaki-5673488-compressed.jpg');
}
._w-image.services._5 {
  background-image: linear-gradient(rgba(0,0,0,0.09), rgba(0,0,0,0.09)),
                    url('/images/pexels-artempodrez-5716025.jpg');
}
._w-image.services._6 { background-image: url('/images/pexels-mikhail-nilov-8297478.jpg'); height: clamp(220px, 28vw, 340px); }

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}
.content-wrapper.center { justify-content: center; }

.top-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}
.top-content.center-mobile { align-items: flex-start; }

@media (max-width: 767px) {
  .content-wrapper { align-items: center; text-align: left; }
  .top-content.center-mobile { align-items: center; text-align: center; }
}

/* ── CTA card (legacy) ────────────────────────────────────── */
.cta-wrapper {
  background: var(--lime);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 10rem);
  align-items: center;
}
@media (max-width: 767px) {
  .cta-wrapper { padding: 32px 24px; }
  .cta-grid { grid-template-columns: 1fr; gap: var(--space-md); text-align: center; }
}
.cta-header.center { text-align: center; }
.p-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}
.p-button.less-spacing { gap: var(--space-sm); }
.p-button.center-mobile { gap: var(--space-md); }
@media (max-width: 767px) {
  .p-button { align-items: center; text-align: center; }
}

.heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}
.heading-wrapper.split {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: clamp(2rem, 6vw, 8rem);
}
.heading-wrapper.split .header-wrapper { text-align: left; }
.heading-wrapper.split.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 8rem);
}
.heading-wrapper.split.story {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: clamp(2rem, 6vw, 8rem);
}
@media (max-width: 767px) {
  .heading-wrapper.split,
  .heading-wrapper.split.services,
  .heading-wrapper.split.story {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
  }
}

/* ── Calendly modal (kept since markup exists, off by default) ── */
.calendly {
  z-index: 9;
  display: none;
  position: fixed;
  inset: 0;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background: var(--teal);
}
.calendly-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.embed {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  width: 70%;
  height: 70vh;
  overflow: hidden;
}
.html-embed {
  display: flex;
  align-items: flex-start;
  background: #fff;
  width: 100%;
  height: 100%;
}
.c-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0% 0% auto auto;
  width: 6em;
  height: 6em;
}
.c-cancel-image { width: 18px; }

/* ── Logo strip (carousel hooks) ──────────────────────────── */
.logo-wrap, .logo-container, .logo-icon { /* legacy hooks; layout via component */ }

/* ── Misc utilities ──────────────────────────────────────── */
.hide { display: none !important; }
.who-we-are.hide,
.careers-wrapper.hide,
.f-form-wrapper.hide,
.lightbox-link { display: none; }
