@font-face
{
  font-family: "Recoleta Alt";
  src: url("../fonts/RecoletaAlt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face
{
  font-family: "Recoleta Alt";
  src: url("../fonts/RecoletaAlt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face
{
  font-family: "Maitree";
  src: url("../fonts/Maitree-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face
{
  font-family: "Maitree";
  src: url("../fonts/Maitree-Regular.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face
{
  font-family: "Maitree";
  src: url("../fonts/Maitree-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root
{
  /* Authoritative palette (Figma: Rectangle 16–22) */
  --palette-16: #e6d5c3;
  --palette-17: #bbc79a;
  --palette-18: #5b6145;
  --palette-19: #b09d7b;
  --palette-21: #cda972;
  --palette-22: #8b543d;

  --font-display: "Recoleta Alt", "Recoleta", "Iowan Old Style", "Times New Roman", serif;
  --font-body: "Maitree", serif;
  --olive-dark: var(--palette-18);
  --olive-mid: var(--palette-19);
  --olive-soft: var(--palette-17);
  --cream: var(--palette-16);
  --sand: var(--palette-21);
  --marron: var(--palette-22);
  --text-dark: var(--palette-18);
  --section-muted: var(--palette-16);
  --border-separator: rgba(176, 157, 123, 0.42);
  --border-olive-line: rgba(187, 199, 154, 0.55);
  --text-muted-on-light: rgba(91, 97, 69, 0.78);
  --text-muted-on-light-strong: rgba(91, 97, 69, 0.7);
  --text-muted-on-light-soft: rgba(91, 97, 69, 0.55);
  --text-on-olive-pale: rgba(187, 199, 154, 0.92);
  /* split-light (Figma 2.svg: base #F2F6EF, right = #C8D8C0 @ 30% over base) */
  --split-bg-left: #f2f6ef;
  --split-bg-right: #e5ede1;
  /* featured (Figma 3.svg: frame bg = cream #F2F6EF) */
  --featured-bg: var(--split-bg-left);
  --layout-two-col: 1fr 1fr;
  /* Hero (Figma 7.svg): hairline #C8D8C0; accent #8B543D; soft #BBC79A */
  --hero-rule: #c8d8c0;
  /* Services stack (same surface as .transformation-block) */
  --services-label-color: #5b6145;
  --services-row-body: #4a4a4a;
  /* Sage pill buttons: text + arrow (design) */
  --btn-pill-sage-text: #8c9568;
  --section-y: 108px;
}

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

html
{
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce)
{
  html
  {
    scroll-behavior: auto;
  }
}

body
{
  margin: 0;
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.4;
}

.container
{
  width: min(1280px, calc(100% - 60px));
  margin-inline: auto;
}

h1,
h2,
h3
{
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
}

p
{
  margin: 0;
}

.section
{
  padding: var(--section-y) 0;
}

.hero
{
  position: relative;
  display: grid;
  grid-template-columns: var(--layout-two-col);
  min-height: 821px;
  overflow: hidden;
  border-top: 0.5px solid var(--hero-rule);
}

.hero-left
{
  background: var(--olive-dark);
  color: #fff;
}

.topbar
{
  position: absolute;
  z-index: 3;
  inset: 0 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
}

.primary-menu
{
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo
{
  width: 200px;
  height: auto;
  display: block;
}

.nav-link
{
  color: var(--olive-soft);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.site-header--front .nav-link
{
  color: #fff;
}

.site-header--front .nav-link:hover
{
  color: rgba(255, 255, 255, 0.88);
}

.hero-content
{
  box-sizing: border-box;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 72px;
  padding-left: calc((100vw - min(1280px, calc(100vw - 60px))) / 2);
  padding-right: 30px;
}

.avatar
{
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--olive-soft);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  margin-bottom: 18px;
}

.hero-content h1
{
  max-width: 560px;
  font-size: clamp(44px, 3.3vw, 60px);
  line-height: 0.93;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.hero-content p
{
  max-width: 525px;
  font-size: 21px;
  line-height: 1.4;
}

.hero-content p + p
{
  margin-top: 16px;
  color: #ffffff;
}

.btn-pill
{
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 24px 36px;
  border-radius: 999px;
  background: var(--olive-soft);
  color: var(--olive-dark);
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  transition: color 0.2s ease;
}

.btn-pill:hover
{
  color: var(--btn-pill-sage-text);
}

.btn-pill:active
{
  color: color-mix(in srgb, var(--btn-pill-sage-text) 82%, #000);
}

.hero-cta
{
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 66px;
  transform: translateX(-50%);
  min-width: 356px;
  justify-content: center;
  margin-top: 0;
  white-space: nowrap;
}

.btn-pill span
{
  font-size: 30px;
}

.featured h2 .featured-marron
{
  color: var(--marron);
}

.hero-image
{
  position: relative;
  z-index: 1;
  background: linear-gradient(
      rgba(91, 97, 69, 0.45),
      rgba(91, 97, 69, 0.45)),
    url("../img/hero-background.jpg") center/cover no-repeat;
}

.split-light.section
{
  padding: 0;
  border-bottom: 0.5px solid var(--olive-soft);
  background: transparent;
}

.split-bi
{
  display: grid;
  grid-template-columns: var(--layout-two-col);
  align-items: stretch;
}

.split-bi__col
{
  box-sizing: border-box;
}

.split-bi__col--left
{
  background: var(--split-bg-left);
  padding: var(--section-y) 36px var(--section-y) calc((100vw - min(1280px, calc(100vw - 60px))) / 2);
}

.split-bi__col--right
{
  background: var(--split-bg-right);
  background: color-mix(in srgb, #c8d8c0 30%, var(--split-bg-left) 70%);
  padding: var(--section-y) calc((100vw - min(1280px, calc(100vw - 60px))) / 2) var(--section-y) 36px;
}

.split-bi__col--left .eyebrow
{
  color: var(--olive-dark);
}

.eyebrow
{
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.split-light h2
{
  max-width: 560px;
  font-size: clamp(34px, 2.7vw, 42px);
  line-height: 1.08;
  color: var(--olive-dark);
}

.split-light h2 .split-marron
{
  color: var(--marron);
}

.split-light .split-copy p
{
  font-size: 21px;
  line-height: 1.45;
  color: var(--olive-dark);
}

.split-copy p + p
{
  margin-top: 1.1em;
}

.featured
{
  background: var(--featured-bg);
}

.featured .center-text h2
{
  color: var(--olive-dark);
  font-size: clamp(42px, 3.4vw, 60px);
}

.featured .center-text > p
{
  color: var(--olive-dark);
  max-width: 800px;
  margin-inline: auto;
}

.featured .center-text > p + p
{
  margin-top: 1.15em;
}

.featured-footer
{
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.featured-divider
{
  width: 1px;
  height: 56px;
  background: var(--olive-dark);
}

.featured-tagline
{
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.cta-strip
{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  height: 128px;
  padding: 0 16px;
  background: var(--sand);
  color: var(--olive-dark);
  text-align: center;
}

.cta-strip p
{
  margin: 0;
  max-width: min(1100px, calc(100% - 32px));
  margin-inline: auto;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--olive-dark);
}

.transformation-block
{
  background: var(--featured-bg);
  padding: var(--section-y) 0;
}

.transformation-head
{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 94px;
}

.transformation-head-logo
{
  margin: 0 auto 58px;
  display: flex;
  justify-content: center;
}

.transformation-logo-img
{
  width: min(470px, calc(100% - 32px));
  height: auto;
  display: block;
}

.transformation-eyebrow
{
  margin: 0 0 66px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.transformation-title
{
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.14;
  color: var(--olive-dark);
}

.transformation-title .transformation-marron
{
  color: var(--marron);
}

.transformation-outcomes
{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 82px;
  text-align: left;
}

.transformation-outcomes article
{
  padding: 0;
  text-align: left;
}

.transformation-outcomes span
{
  display: block;
  font-family: var(--font-body);
  color: var(--olive-soft);
  font-size: clamp(44px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 42px;
}

.transformation-outcomes h3
{
  font-family: var(--font-display);
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 400;
  line-height: 1.22;
  margin-bottom: 14px;
  color: var(--olive-dark);
}

.transformation-outcomes p
{
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
  color: var(--olive-dark);
}

.process-block
{
  background: var(--palette-16);
  color: var(--marron);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.process-top
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 94px;
  align-items: start;
  margin-bottom: 104px;
}

.process-eyebrow
{
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.process-left .process-eyebrow
{
  margin-bottom: 44px;
}

.process-left h2
{
  font-size: clamp(42px, 3.6vw, 60px);
  line-height: 1.08;
  color: var(--marron);
  max-width: 560px;
}

.process-right p
{
  font-size: 22px;
  line-height: 1.45;
}

.process-right p + p
{
  margin-top: 22px;
}

.process-cards
{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
}

.process-cards article span
{
  display: block;
  width: 28px;
  height: 1px;
  background: var(--marron);
  margin-bottom: 54px;
}

.process-cards h3
{
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 42px;
  color: var(--marron);
}

.process-cards p
{
  font-size: 18px;
  line-height: 1.45;
  color: var(--marron);
}

.services-stack
{
  background: var(--featured-bg);
  color: var(--services-row-body);
  overflow: hidden;
}

.services-stack.section
{
  padding-top: 0;
  padding-bottom: 108px;
}

.services-stack-intro
{
  width: 100%;
  box-sizing: border-box;
  background-color: var(--featured-bg);
  color: var(--olive-dark);
  padding-top: var(--section-y);
  padding-bottom: 64px;
}

.services-stack-head .process-eyebrow
{
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  color: var(--olive-dark);
}

.services-stack .service-label
{
  color: var(--services-label-color);
  font-family: var(--font-body);
  font-weight: 600;
}

.services-stack-head
{
  max-width: none;
}

.services-stack-head h2
{
  font-family: var(--font-display);
  font-size: clamp(42px, 3.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 14px;
  font-weight: 300;
  color: var(--olive-dark);
}

.services-stack-title-lead
{
  color: var(--olive-dark);
}

.services-stack-title-accent
{
  color: var(--marron);
}

.services-stack-head > p:last-child
{
  max-width: 740px;
  font-size: 21px;
  line-height: 1.45;
  color: var(--text-muted-on-light);
}

.services-stack-list
{
  margin-top: 14px;
}

.service-row
{
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  padding: 45px 0;
  border-top: 0;
}

.service-row::before
{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(91, 97, 69, 0.18);
}

.service-row:first-child::before
{
  display: none;
}

.service-row-left
{
  color: var(--services-row-body);
}

.service-icon
{
  display: inline-block;
  line-height: 0;
  margin-bottom: 12px;
}

.service-icon img
{
  display: block;
  width: 30px;
  height: auto;
}

.service-label
{
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.service-row-left p
{
  font-size: 17px;
  line-height: 1.4;
  color: var(--services-row-body);
}

.service-row-right h3
{
  font-family: var(--font-display);
  font-size: clamp(34px, 2.7vw, 42px);
  line-height: 1.1;
  margin-bottom: 12px;
  font-weight: 300;
  color: var(--marron);
}

.service-row-right p
{
  max-width: 760px;
  font-size: 20px;
  line-height: 1.45;
  color: var(--services-row-body);
}

.center-text
{
  text-align: center;
  max-width: 900px;
}

.center-text h2
{
  font-size: clamp(42px, 3.8vw, 64px);
  margin-bottom: 22px;
  line-height: 1.08;
}

.center-text p
{
  font-size: 21px;
  line-height: 1.45;
}

.center-text .eyebrow
{
  margin-top: 16px;
  color: var(--olive-mid);
}

.section-olive
{
  background: var(--olive-dark);
}

.section.section-olive.bordered
{
  padding-bottom: 0;
}

.bordered
{
  border-top: 1px solid var(--border-olive-line);
  border-bottom: 1px solid var(--border-olive-line);
}

.section-olive-footer
{
  margin-top: 34px;
  padding: 34px 0;
  border-top: 1px solid rgba(187, 199, 154, 0.35);
}

.section.section-olive.bordered .section-olive-footer p
{
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--text-on-olive-pale);
}

.about-grid
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.section-olive.bordered .about-grid
{
  gap: 50px;
}

.light
{
  color: #fff;
}

.accent
{
  color: var(--olive-soft);
}

.portrait
{
  width: 100%;
  max-width: 570px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.portrait-second
{
  max-width: 482px;
  margin-top: 70px;
}

.about-grid h2
{
  font-size: clamp(34px, 2.8vw, 42px);
  line-height: 1.08;
}

.section-olive.bordered .about-grid h2
{
  font-size: clamp(42px, 3.4vw, 56px);
}

.copy p
{
  font-size: 21px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.stats
{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 570px;
}

.stats article
{
  background: var(--olive-soft);
  color: var(--olive-dark);
  border: 1px solid var(--border-olive-line);
  border-radius: 6px;
  padding: 26px 20px;
  height: 300px;
}

.stats strong
{
  display: block;
  font-size: 60px;
  font-weight: 300;
  line-height: 1.1;
}

.stats p
{
  font-size: 21px;
  line-height: 1.35;
}

.services h2
{
  font-size: clamp(40px, 3.4vw, 58px);
  margin-bottom: 10px;
  line-height: 1.1;
}

.services
{
  background: var(--section-muted);
  color: var(--marron);
}

.services .eyebrow,
.services h2,
.services p,
.services-list h3
{
  color: var(--marron);
}

.services-intro
{
  max-width: 900px;
  font-size: 21px;
  line-height: 1.45;
}

.services-list
{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-list article
{
  border-top: 1px solid rgba(139, 84, 61, 0.28);
  padding-top: 18px;
}

.services-list h3
{
  font-size: 32px;
  line-height: 1.18;
}

.service-detail
{
  background: var(--section-muted);
  color: var(--marron);
  padding-top: 24px;
}

.detail-list
{
  display: grid;
  gap: 0;
}

.detail-list article
{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid rgba(139, 84, 61, 0.28);
}

.detail-label
{
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--marron);
  margin-bottom: 8px;
}

.detail-list h3
{
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--marron);
}

.detail-list p
{
  grid-column: 2;
  font-size: 20px;
  line-height: 1.45;
  color: var(--marron);
}

.testimonials
{
  background: #f2f6ef;
  border-top: 1px solid var(--border-separator);
  border-bottom: 1px solid var(--border-separator);
  padding: var(--section-y) 0;
  overflow: hidden;
}

.testimonials h2
{
  font-size: clamp(40px, 3.2vw, 56px);
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--olive-dark);
}

.testimonials .eyebrow
{
  color: var(--olive-mid);
}

.testimonials-head
{
  max-width: 760px;
}

.testimonials-carousel
{
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(560px, 760px));
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.testimonial-card
{
  position: relative;
  opacity: 0.22;
  filter: saturate(0.75);
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
}

.testimonial-card.is-active
{
  opacity: 1;
  filter: none;
}

.testimonial-card.is-prev
{
  transform: translateX(-14px);
}

.testimonial-card.is-next
{
  transform: translateX(14px);
}

.testimonial-inner
{
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(91, 97, 69, 0.1);
  border-radius: 8px;
  padding: 28px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
}

.testimonial-card.is-active .testimonial-inner
{
  background: #fff;
  box-shadow: 0 22px 44px rgba(91, 97, 69, 0.1);
}

.testimonial-inner img
{
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.35s ease;
}

.testimonials-carousel.is-swapping .testimonial-inner img
{
  opacity: 0;
}

@media (prefers-reduced-motion: reduce)
{
  .testimonial-card,
  .testimonial-inner img
  {
    transition: none;
  }

  .testimonials-carousel.is-swapping .testimonial-inner img
  {
    opacity: 1;
  }
}

.testimonial-copy p
{
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 10px;
  color: var(--olive-dark);
}

.testimonial-copy strong
{
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--olive-dark);
}

.testimonial-copy span
{
  color: var(--olive-mid);
  font-size: 13px;
}

.testimonial-quotes
{
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(91, 97, 69, 0.22);
  pointer-events: none;
}

.testimonial-quotes.right
{
  left: auto;
  right: 12px;
}

.testimonials-footer
{
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.testimonials-arrow
{
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted-on-light-soft);
  font-size: 44px;
  line-height: 1;
  padding: 12px 14px;
  cursor: pointer;
}

.testimonials-dots
{
  display: flex;
  gap: 14px;
  align-items: center;
}

.testimonials-dots .dot
{
  appearance: none;
  border: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(91, 97, 69, 0.25);
  cursor: pointer;
  padding: 0;
}

.testimonials-dots .dot.is-active
{
  background: rgba(91, 97, 69, 0.75);
}

.footer
{
  background: var(--featured-bg);
  color: var(--olive-dark);
  border-top: 1px solid var(--border-separator);
}

.footer-main
{
  padding: 148px 0 116px;
}

.footer-main-inner
{
  text-align: center;
}

.footer-brand-mark
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.footer-brand-logo-img
{
  display: block;
  width: min(280px, 62vw);
  height: auto;
  flex-shrink: 0;
}

.footer-tagline
{
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.7vw, 42px);
  color: var(--marron);
}

.footer-services
{
  margin: 24px auto 0;
  max-width: 980px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--text-muted-on-light);
}

.footer-message
{
  margin: 22px auto 0;
  max-width: 920px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--text-muted-on-light);
}

.footer-legal
{
  border-top: 1px solid var(--border-separator);
  padding: 18px 0 16px;
}

.footer-legal-inner
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-legal p
{
  font-size: 14px;
  color: var(--text-muted-on-light-strong);
}

.footer-legal p a
{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal p a:hover
{
  color: var(--olive-dark);
}

.footer-legal-links
{
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-legal-links a
{
  color: var(--text-muted-on-light);
  text-decoration: none;
  font-size: 14px;
}

.footer-legal-links a:first-child
{
  font-weight: 600;
  letter-spacing: 0.02em;
}

.final-cta
{
  background: var(--featured-bg);
  border-top: 1px solid var(--border-separator);
  padding: var(--section-y) 0 0;
}

.final-cta .center-text h2
{
  max-width: 1120px;
  margin-inline: auto;
  margin-top: 34px;
  color: var(--olive-dark);
}

.final-cta .center-text p
{
  max-width: 980px;
  margin: 18px auto 0;
  color: rgba(91, 97, 69, 0.86);
}

.final-cta-mark
{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: rgba(187, 199, 154, 0.95);
}

.final-cta-mark-line
{
  width: 1px;
  height: 220px;
  background: rgba(187, 199, 154, 0.85);
}

.final-cta-symbol
{
  display: block;
  width: min(160px, 42vw);
  height: auto;
  flex-shrink: 0;
}

.final-cta-accent
{
  display: inline;
  color: var(--marron);
}

.final-cta-band
{
  margin-top: 142px;
  background: var(--marron);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.final-cta-band-inner
{
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta-band p
{
  color: rgba(230, 213, 195, 0.96);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.7vw, 42px);
  font-weight: 300;
  line-height: 1.1;
}

.final-cta-band-btn
{
  margin-top: 0;
  background: var(--cream);
  color: var(--marron);
  font-size: clamp(16px, 1.2vw, 22px);
  min-width: 330px;
  justify-content: center;
  padding: 20px 38px;
  white-space: nowrap;
}

.final-cta-band-btn:hover
{
  background: var(--cream);
  color: color-mix(in srgb, var(--marron) 60%, #ffffff);
}

.final-cta-band-btn:active
{
  background: var(--cream);
  color: color-mix(in srgb, var(--marron) 40%, #ffffff);
}

.btn-pill .btn-arrow-icon
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 14px;
}

.btn-pill .btn-arrow-icon img
{
  display: block;
  width: 100%;
  height: 100%;
  transition: filter 0.2s ease;
}

/* Sage pills: flecha oscura por defecto, más clara al hover (misma lógica que el texto) */
.btn-pill:not(.final-cta-band-btn) .btn-arrow-icon img
{
  filter: none;
}

.btn-pill:not(.final-cta-band-btn):hover .btn-arrow-icon img
{
  filter: brightness(1.38) saturate(1.05);
}

.btn-pill:not(.final-cta-band-btn):active .btn-arrow-icon img
{
  filter: brightness(1.15) saturate(1.02);
}

/* CTA band (crema / marrón): misma lectura — flecha que acompaña al texto al hover */
.final-cta-band-btn .btn-arrow-icon img
{
  filter: none;
}

.final-cta-band-btn:hover .btn-arrow-icon img
{
  filter: brightness(1.32) saturate(1.08);
}

.final-cta-band-btn:active .btn-arrow-icon img
{
  filter: brightness(1.12) saturate(1.04);
}

@media (max-width: 1024px)
{
  :root
  {
    --section-y: 92px;
  }

  .hero
  {
    grid-template-columns: 1fr;
  }

  .hero-image
  {
    min-height: 340px;
  }

  .topbar
  {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 3;
    padding-top: 18px;
  }

  .hero-content
  {
    padding-top: 110px;
    padding-bottom: 44px;
  }

  .hero-cta
  {
    position: static;
    transform: none;
    min-width: 0;
    margin: 50px auto 0;
    display: flex;
    width: fit-content;
    max-width: calc(100% - 32px);
  }

  .split-bi,
  .about-grid,
  .testimonial-track,
  .transformation-outcomes,
  .process-top,
  .process-cards,
  .service-row
  {
    grid-template-columns: 1fr;
  }

  .split-bi__col--left,
  .split-bi__col--right
  {
    padding-left: calc((100vw - min(1280px, calc(100vw - 60px))) / 2);
    padding-right: calc((100vw - min(1280px, calc(100vw - 60px))) / 2);
  }

  .split-bi__col--left
  {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .split-bi__col--right
  {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .services-list
  {
    grid-template-columns: 1fr;
  }

  .final-cta-band-inner
  {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 24px 0;
  }

  .final-cta-accent
  {
    display: block;
  }

  .final-cta-band-btn
  {
    font-size: 18px;
  }

  .footer-main
  {
    padding: 116px 0 92px;
  }

  .footer-legal-inner
  {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-carousel
  {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 680px;
    margin-inline: auto;
    touch-action: pan-y;
    user-select: none;
  }

  .testimonial-card.is-prev,
  .testimonial-card.is-next
  {
    display: none;
  }

  .testimonial-inner
  {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px;
  }

  .testimonial-inner img
  {
    max-width: 280px;
    width: 100%;
    margin-inline: auto;
  }

  .detail-list article
  {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-list p
  {
    grid-column: auto;
  }

  .hero-content h1
  {
    font-size: clamp(40px, 8vw, 60px);
  }

  .transformation-block,
  .process-block
  {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .transformation-head,
  .process-top
  {
    margin-bottom: 74px;
  }

  .process-top,
  .process-cards
  {
    gap: 54px;
  }

  .service-row
  {
    padding: 38px 0;
  }

  .hero-content p,
  .split-light .split-copy p,
  .center-text p,
  .copy p,
  .services-intro,
  .process-right p,
  .services-stack-head > p:last-child,
  .service-row-right p
  {
    font-size: 20px;
  }
}

@media (max-width: 640px)
{
  :root
  {
    --section-y: 84px;
  }

  .container
  {
    width: min(1280px, calc(100% - 24px));
  }

  .split-bi__col--left,
  .split-bi__col--right
  {
    padding-left: calc((100vw - min(1280px, calc(100vw - 24px))) / 2);
    padding-right: 12px;
  }

  .split-bi__col--left
  {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .split-bi__col--right
  {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .topbar
  {
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 16px;
  }

  .primary-menu
  {
    justify-content: flex-end;
  }

  .logo
  {
    width: 160px;
  }

  .nav-link
  {
    font-size: 12px;
  }

  .hero-content
  {
    padding-top: 136px;
    padding-bottom: 36px;
    padding-left: calc((100vw - min(1280px, calc(100vw - 24px))) / 2);
    padding-right: 12px;
  }

  .avatar
  {
    margin-bottom: 16px;
  }

  .btn-pill
  {
    font-size: 18px;
    padding: 20px 22px;
  }

  .btn-pill span
  {
    font-size: 20px;
  }

  .hero-content h1
  {
    font-size: clamp(36px, 11vw, 48px);
  }

  .split-light h2,
  .services h2,
  .testimonials h2,
  .transformation-title
  {
    font-size: clamp(34px, 9vw, 40px);
  }

  .about-grid h2,
  .section-olive.bordered .about-grid h2,
  .cta-strip p,
  .section.section-olive.bordered .section-olive-footer p,
  .final-cta-band p
  {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .eyebrow
  {
    font-size: 15px;
  }

  .cta-strip
  {
    height: auto;
    min-height: 112px;
    padding: 20px 12px;
  }

  .transformation-outcomes h3
  {
    font-size: 24px;
  }

  .process-left h2
  {
    font-size: clamp(36px, 9vw, 40px);
  }

  .process-cards h3
  {
    font-size: 34px;
  }

  .service-row-right h3
  {
    font-size: clamp(30px, 8vw, 34px);
  }

  .services-stack-head h2
  {
    font-size: clamp(36px, 9vw, 40px);
  }

  .process-left .process-eyebrow
  {
    margin-bottom: 24px;
  }

  .process-right p + p
  {
    margin-top: 30px;
  }

  .process-cards article span
  {
    margin-bottom: 30px;
  }

  .process-cards h3
  {
    margin-bottom: 24px;
  }

  .services-stack-list
  {
    margin-top: 0;
  }

  .service-row
  {
    padding: 32px 0;
  }

  .final-cta
  {
    padding-top: var(--section-y);
  }

  .final-cta-band
  {
    margin-top: 92px;
  }

  .final-cta-band-btn
  {
    min-width: 0;
    width: 100%;
    max-width: 330px;
  }

  .transformation-outcomes p
  {
    font-size: 16px;
  }

  .detail-list h3
  {
    font-size: 34px;
  }

  .final-cta
  {
    padding-top: var(--section-y);
  }

  .final-cta-mark-line
  {
    height: 160px;
  }

  .final-cta-band
  {
    margin-top: 56px;
  }

  .final-cta-band p
  {
    font-size: 32px;
  }

  .final-cta-band-btn
  {
    font-size: 16px;
    padding: 20px 24px;
  }

  .footer-tagline
  {
    font-size: 34px;
  }

  .footer-services,
  .footer-message
  {
    font-size: 16px;
  }
}

/* --- Legal / privacy policy (Figma node 1:62) --- */
body.legal-page
{
  background: var(--split-bg-left);
  color: var(--olive-dark);
}

.legal-topbar
{
  border-bottom: 1px solid var(--hero-rule);
  background: var(--split-bg-left);
}

.legal-topbar-inner
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  max-width: min(1280px, calc(100% - 60px));
  margin-inline: auto;
}

.legal-logo-wrap
{
  display: block;
  flex-shrink: 0;
}

.legal-logo
{
  width: min(200px, 42vw);
  height: auto;
  display: block;
}

.legal-nav-link
{
  color: var(--olive-dark);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}

.legal-nav-link:hover
{
  opacity: 0.85;
}

.legal-main
{
  padding: 150px 0 100px;
}

.legal-content
{
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: min(920px, 100%);
  margin-inline: auto;
}

.legal-page-title
{
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--olive-dark);
}

.legal-intro,
.legal-block
{
  font-size: 21px;
  line-height: 1.4;
  color: var(--olive-dark);
}

.legal-section-title
{
  font-family: var(--font-body);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--olive-dark);
  margin: 0 0 0.5em;
}

.legal-block p
{
  margin: 0;
}

.legal-block p + p,
.legal-block ul + p,
.legal-block p + ul
{
  margin-top: 1.4em;
}

.legal-subheading
{
  margin-top: 1.4em;
  margin-bottom: 0;
  font-weight: 600;
}

.legal-list
{
  margin: 0.5em 0 0;
  padding-left: 1.35em;
  list-style-type: disc;
}

.legal-list li + li
{
  margin-top: 0.35em;
}

.legal-block a
{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-block a:hover
{
  opacity: 0.88;
}

.legal-footer .footer-main
{
  padding: 116px 0 100px;
  border-top: 1px solid var(--hero-rule);
}

.legal-footer-tagline
{
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--marron);
}

.legal-footer-message
{
  margin-top: 24px;
  max-width: 920px;
  margin-inline: auto;
  font-size: 22px;
  line-height: 1.4;
  color: var(--marron);
}

.legal-footer-message p + p
{
  margin-top: 0.35em;
}

.legal-footer-bar
{
  border-top-color: var(--hero-rule);
  padding: 20px 0;
}

.legal-footer-bar .footer-legal p
{
  font-size: 18px;
  color: var(--olive-dark);
}

.legal-footer-links a
{
  font-size: 18px;
  color: var(--olive-dark);
}

@media (max-width: 720px)
{
  .legal-main
  {
    padding: 92px 0 76px;
  }

  .legal-topbar-inner
  {
    flex-wrap: wrap;
    padding: 20px 0;
  }

  .legal-nav-link
  {
    font-size: 14px;
    white-space: normal;
    text-align: left;
    width: 100%;
  }

  .legal-intro,
  .legal-block
  {
    font-size: 18px;
  }

  .legal-footer-tagline
  {
    font-size: 24px;
  }

  .legal-footer-message
  {
    font-size: 18px;
  }
}

/* --- Cookie consent banner --- */
#cookie-consent-root
{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.cookie-banner
{
  pointer-events: none;
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom, 0));
  background: var(--split-bg-left);
  border-top: 1px solid var(--hero-rule);
  box-shadow: 0 -6px 28px rgba(91, 97, 69, 0.1);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.cookie-banner.is-visible
{
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-inner
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}

.cookie-banner-text
{
  margin: 0;
  flex: 1 1 240px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--olive-dark);
}

.cookie-banner-actions
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.cookie-banner-link
{
  font-size: 14px;
  color: var(--marron);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-link:hover
{
  opacity: 0.88;
}

.cookie-banner-btn
{
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.3;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.cookie-banner-btn--ghost
{
  background: transparent;
  color: var(--olive-dark);
  border: 1px solid rgba(91, 97, 69, 0.35);
}

.cookie-banner-btn--ghost:hover
{
  background: rgba(91, 97, 69, 0.06);
}

.cookie-banner-btn--primary
{
  background: var(--olive-dark);
  color: #fff;
}

.cookie-banner-btn--primary:hover
{
  opacity: 0.92;
}

@media (prefers-reduced-motion: reduce)
{
  .cookie-banner
  {
    transition: opacity 0.2s ease;
    transform: none;
  }

  .cookie-banner:not(.is-visible)
  {
    transform: none;
  }
}

@media (max-width: 640px)
{
  .cookie-banner-actions
  {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-banner-btn--primary
  {
    margin-left: auto;
  }
}
