/* =========================================================
   CAPACO GROUP — HOMEPAGE
   People first. Strong systems. Forward movement.
========================================================= */


/* =========================================================
   DESIGN SYSTEM
========================================================= */

:root {
  --navy: #10213f;
  --navy-medium: #18345e;
  --navy-dark: #091426;

  --cream: #f4eee5;
  --cream-light: #fbf8f2;
  --cream-deep: #ebe2d5;

  --gold: #b8904f;
  --gold-deep: #a87932;
  --gold-soft: #d7bd85;

  --white: #ffffff;
  --ink: #1d2430;
  --slate: #536075;
  --muted: #687386;

  --line:
    rgba(16, 33, 63, 0.14);

  --line-strong:
    rgba(16, 33, 63, 0.24);

  --line-light:
    rgba(255, 255, 255, 0.16);

  --shadow-soft:
    0 24px 70px rgba(16, 33, 63, 0.11);

  --shadow-deep:
    0 38px 100px rgba(9, 20, 38, 0.18);

  --display:
  "Manrope",
  system-ui,
  -apple-system,
  BlinkMacSystemFont,
  "Segoe UI",
  sans-serif;

--sans:
  "Manrope",
  system-ui,
  -apple-system,
  BlinkMacSystemFont,
  "Segoe UI",
  sans-serif;

--brand-font:
  "Cormorant Garamond",
  Georgia,
  serif;

  --content-width: 1240px;
  --wide-width: 1440px;

  --page-gutter:
    clamp(24px, 6vw, 100px);

  --section-space:
    clamp(76px, 8.5vw, 130px);

  --section-space-small:
    clamp(72px, 8vw, 120px);

  --ease:
    cubic-bezier(0.2, 0.8, 0.2, 1);
}


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  overflow-x: hidden;

  background: var(--cream-light);
  color: var(--ink);

  font-family: var(--sans);
  line-height: 1.65;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main,
section,
header,
footer,
nav,
article,
aside,
div {
  min-width: 0;
}

img {
  display: block;

  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
}

p,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;

  color: var(--navy);
}

h1,
h2 {
  font-family: var(--display);

  font-weight: 600;

  letter-spacing: -0.05em;
}

h3 {
  font-family: var(--display);

  font-weight: 600;

  letter-spacing: -0.035em;
  line-height: 1.08;
}

::selection {
  background: var(--gold-soft);
  color: var(--navy-dark);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 1000;

  padding: 12px 18px;

  background: var(--navy);
  color: var(--white);

  font-size: 0.9rem;
  font-weight: 800;

  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}


/* =========================================================
   SHARED TYPOGRAPHY
========================================================= */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 24px;

  color: var(--gold-deep);

  font-size:
    clamp(0.86rem, 1vw, 1rem);

  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label::before {
  content: "";

  display: block;

  width: clamp(34px, 4vw, 62px);
  height: 2px;

  background: var(--gold);

  transform-origin: left;

  transition:
    transform 0.7s var(--ease);
}

[data-reveal].is-visible.section-label::before {
  transform: scaleX(1);
}

.section-label:not(.is-visible)::before {
  transform: scaleX(0.3);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 30px;
  padding-bottom: 7px;

  color: var(--navy);

  font-size: 0.94rem;
  font-weight: 800;
}

.text-link::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background: var(--gold);

  transform: scaleX(0.28);
  transform-origin: left;

  transition:
    transform 0.3s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}


/* =========================================================
   SHARED BUTTON SYSTEM
========================================================= */

.button,
.nav-cta {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 52px;
  padding: 0 1.45rem;

  border: 1px solid transparent;
  border-radius: 4px;

  overflow: hidden;

  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}


/* Remove the old sweeping overlay */

.button::before,
.nav-cta::before {
  display: none;
}


/* Shared hover movement */

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}


/* Primary navy button */

.button-primary,
.nav-cta {
  background: var(--navy);
  color: var(--white);

  box-shadow:
    0 12px 28px rgba(16, 33, 63, 0.14);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--navy-dark);
  color: var(--white);

  box-shadow:
    0 16px 34px rgba(16, 33, 63, 0.18);
}


/* Secondary light button */

.button-secondary {
  border-color:
    rgba(16, 33, 63, 0.28);

  background: var(--white);
  color: var(--navy);

  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--navy);
  background: #f6f7f9;
  color: var(--navy);
}


/* Gold button for selected dark-background CTAs */

.button-gold {
  background: var(--gold);
  color: var(--navy-dark);

  box-shadow: none;
}

.button-gold:hover {
  background: var(--gold-soft);
  color: var(--navy-dark);
}


/* White outline button on navy backgrounds */

.button-outline {
  border-color:
    rgba(255, 255, 255, 0.46);

  background: transparent;
  color: var(--white);

  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--white);
  background:
    rgba(255, 255, 255, 0.08);

  color: var(--white);
}

/* Header CTA uses the same design at a compact size */

.nav-cta {
  min-height: 46px;
  padding: 0 1.25rem;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;

  padding: 26px 40px;

  background:
    rgba(251, 248, 242, 0.20);

  backdrop-filter:
    blur(5px);

  -webkit-backdrop-filter:
    blur(5px);

  border-bottom:
    1px solid rgba(16, 33, 63, 0.030);

  transition:
    padding 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  padding: 14px 40px;

  background:
    rgba(251, 248, 242, 0.93);

  box-shadow:
    0 14px 46px
    rgba(16, 33, 63, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1280px, 100%);
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand-text {
  position: relative;
  z-index: 102;

  display: grid;
  gap: 5px;

  color: var(--navy);
}

.brand-name {
  display: flex;
  align-items: baseline;
}

.brand-capaco,
.brand-group {
  font-family: var(--brand-font);

  font-weight: 700;

  letter-spacing: 0.065em;
  line-height: 0.9;
}

.brand-capaco {
  color: var(--navy);

  font-size:
    clamp(1.8rem, 3vw, 2.3rem);
}

.brand-group {
  margin-left: 0.2em;

  color: var(--gold-deep);

  font-size:
    clamp(1.1rem, 2vw, 1.7rem);
}

.brand-line {
  color: var(--slate);

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);

  color: var(--navy);

  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;

  transition:
    color 0.25s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--gold-deep);
}

.main-nav a:not(.nav-cta)::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;

  height: 1px;

  background: var(--gold);

  transform: scaleX(0);
  transform-origin: left;

  transition:
    transform 0.25s ease;
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.main-nav,
.main-nav a,
.nav-cta,
.button,
.text-link,
.section-label,
.site-footer,
.footer-links {
  font-family: var(--sans);
}

.menu-toggle {
  position: relative;
  z-index: 102;

  display: none;

  width: 48px;
  height: 48px;
  padding: 10px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 25px;
  height: 2px;
  margin: 6px auto;

  background: var(--navy);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform:
    translateY(8px)
    rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform:
    translateY(-8px)
    rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      105deg,
      var(--cream-light) 0%,
      var(--cream-light) 54%,
      var(--cream) 100%
    );
}

.hero-visual {
  position: absolute;
  inset: 0;

  overflow: hidden;

  pointer-events: none;
}

.hero-image {
  position: absolute;

  top: -8%;
  right: -4%;
  bottom: -8%;

  width: 57%;

  background-image:
    linear-gradient(
      90deg,
      rgba(251, 248, 242, 0.98) 0%,
      rgba(251, 248, 242, 0.86) 12%,
      rgba(251, 248, 242, 0.56) 28%,
      rgba(251, 248, 242, 0.2) 50%,
      rgba(251, 248, 242, 0.05) 70%,
      rgba(16, 33, 63, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(251, 248, 242, 0.18),
      rgba(9, 20, 38, 0.14)
    ),
    url("/images/hero-main.jpg");

  background-position: center;
  background-size: cover;

  opacity: 0.88;

  filter:
    saturate(0.72)
    contrast(0.96)
    brightness(1.02);

  transform: scale(1.045);

  animation:
    heroImageEnter
    3.2s
    var(--ease)
    forwards;
}

.hero-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(246, 240, 231, 0.04),
      rgba(16, 33, 63, 0.08)
    );
}

.hero-line {
  position: absolute;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(184, 144, 79, 0.24),
      transparent
    );

  transform-origin: left;
}

.hero-line-one {
  width: 58vw;
  right: -8vw;
  top: 30%;

  transform:
    rotate(-13deg)
    scaleX(0);

  animation:
    heroLineOne
    1.7s
    ease
    1s
    forwards;
}

.hero-line-two {
  width: 45vw;
  right: -5vw;
  bottom: 25%;

  transform:
    rotate(11deg)
    scaleX(0);

  animation:
    heroLineTwo
    1.7s
    ease
    1.2s
    forwards;
}

.hero-content {
  position: relative;
  z-index: 4;

  width: min(
    960px,
    calc(100% - (var(--page-gutter) * 2))
  );

  margin-left:
    max(
      var(--page-gutter),
      calc((100vw - var(--content-width)) / 2)
    );

  padding:
    clamp(190px, 18vw, 250px)
    0
    clamp(90px, 9vw, 125px);
}

.hero-label {
  margin-bottom: 36px;

  opacity: 0;

  transform:
    translateX(-24px);
}

.hero-title {
  max-width: 1020px;

  font-size:
    clamp(3.15rem, 4.9vw, 5.65rem);

  line-height: 0.93;
}

.hero-title span {
  display: block;

  opacity: 0;

  transform:
    translateY(34px);
}

.hero-title span + span {
  margin-top: 0.14em;
}

.hero-title-accent {
  color: var(--gold-deep);
}

.hero-summary {
  max-width: 620px;

  margin-top: 38px;

  color: var(--navy);

  font-family: var(--display);
  font-size:
    clamp(1.4rem, 2.1vw, 2rem);

  font-weight: 600;
  line-height: 1.32;

  opacity: 0;

  transform:
    translateY(20px);
}

.hero-summary-secondary {
  max-width: 610px;

  margin-top: 20px;

  color: var(--slate);

  font-size:
    clamp(0.98rem, 1.25vw, 1.08rem);

  line-height: 1.78;

  opacity: 0;

  transform:
    translateY(20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 38px;

  opacity: 0;

  transform:
    translateY(20px);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;

  width: 1px;
  height: 55px;

  overflow: hidden;

  background:
    rgba(16, 33, 63, 0.13);
}

.hero-scroll-cue span {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      transparent,
      var(--gold),
      transparent
    );

  transform:
    translateY(-100%);

  animation:
    scrollCue
    2.1s
    ease-in-out
    infinite;
}

@keyframes heroImageEnter {
  to {
    transform: scale(1);
  }
}

@keyframes heroLineOne {
  to {
    transform:
      rotate(-13deg)
      scaleX(1);
  }
}

@keyframes heroLineTwo {
  to {
    transform:
      rotate(11deg)
      scaleX(1);
  }
}

@keyframes scrollCue {
  0% {
    transform:
      translateY(-100%);
  }

  55% {
    transform:
      translateY(100%);
  }

  100% {
    transform:
      translateY(100%);
  }
}


/* =========================================================
   OPENING CONVERSATION
========================================================= */

.opening-conversation {
  position: relative;

  overflow: hidden;

  background: var(--white);
}

.opening-conversation::before {
  content: "";

  position: absolute;
  left: -12vw;
  top: 32%;

  width: 44vw;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(184, 144, 79, 0.3),
      transparent
    );

  transform: rotate(-10deg);
}

.opening-inner {
  position: relative;
  z-index: 2;

  width: min(
    var(--content-width),
    calc(100% - (var(--page-gutter) * 2))
  );

  margin-inline: auto;

  padding-block: var(--section-space);

  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  gap:
    clamp(55px, 9vw, 140px);

  align-items: start;
}

.opening-heading {
  position: sticky;
  top: 145px;
}

.opening-heading h2 {
  max-width: 760px;
}

.opening-copy {
  padding-top:
    clamp(45px, 8vw, 110px);
}

.opening-copy p {
  max-width: 650px;

  color: var(--muted);

  font-size: 1.04rem;
  line-height: 1.85;
}

.opening-copy p + p {
  margin-top: 38px;
}

.opening-copy .opening-lead {
  color: var(--navy);

  font-family: var(--display);
  font-size:
    clamp(1.7rem, 2.7vw, 2.65rem);

  font-weight: 600;
  line-height: 1.18;
}


/* =========================================================
   RECOGNITION
========================================================= */

.recognition {
  position: relative;

  min-height: 1100px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      var(--cream),
      var(--cream-light)
    );
}

.recognition-backdrop {
  position: absolute;
  inset: 0;

  overflow: hidden;

  pointer-events: none;
}

.recognition-image {
  position: absolute;

  top: -10%;
  right: -5%;
  bottom: -10%;

  width: 52%;

  background-image:
    linear-gradient(
      90deg,
      rgba(246, 240, 231, 1) 0%,
      rgba(246, 240, 231, 0.93) 18%,
      rgba(246, 240, 231, 0.68) 40%,
      rgba(246, 240, 231, 0.48) 64%,
      rgba(246, 240, 231, 0.4) 100%
    ),
    url("/images/business.jpg");

  background-position: center;
  background-size: cover;

  opacity: 0.32;

  filter:
    grayscale(0.35)
    saturate(0.45)
    contrast(0.85)
    brightness(1.12);
}

.recognition-inner {
  position: relative;
  z-index: 2;

  width: min(
    var(--content-width),
    calc(100% - (var(--page-gutter) * 2))
  );

  margin-inline: auto;

  padding:
  var(--section-space)
  0
  clamp(120px, 13vw, 160px);
}

.recognition-statement {
  max-width: 930px;

  margin-bottom:
    clamp(80px, 10vw, 145px);
}

.recognition-statement h2 {
  max-width: 900px;
}

.recognition-flow {
  position: relative;

  display: flex;
  flex-direction: column;
  gap:
    clamp(46px, 7vw, 88px);
}

.recognition-flow::before {
  content: "";

  position: absolute;
  left: 50%;
  top: -40px;
  bottom: -40px;

  width: 1px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(184, 144, 79, 0.28),
      transparent
    );
}

.recognition-point {
  position: relative;

  width: min(570px, 48%);

  padding:
    8px
    0
    20px
    clamp(24px, 3vw, 42px);

  border-left: 1px solid rgba(184, 144, 79, 0.75);

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0)
    );

   transition:
     transform 0.4s var(--ease),
     background 0.4s ease;
}

.recognition-point:hover {
  transform: translateY(-4px);

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0)
    );
}

.recognition-point-left {
  align-self: flex-start;
}

.recognition-point-right {
  align-self: flex-end;

  margin-right: 4vw;
}

.recognition-point-offset {
  align-self: flex-start;

  margin-left: 8vw;
}

.recognition-point h3 {
  max-width: 500px;

  margin-bottom: 16px;

  font-family: var(--display);
  font-size:
    clamp(1.9rem, 3vw, 3rem);

  font-weight: 700;
}

.recognition-point p {
  max-width: 500px;

  color: var(--muted);

  font-size: 0.98rem;
  line-height: 1.78;
}


/* =========================================================
   THE SHIFT
========================================================= */

.shift {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      var(--navy),
      var(--navy-dark)
    );

  color: var(--white);
}

.shift::before {
  content: "";

  position: absolute;
  right: -16vw;
  top: -24vw;

  width: 50vw;
  height: 50vw;

  border:
    1px solid
    rgba(215, 189, 133, 0.11);

  border-radius: 50%;
}

.shift::after {
  content: "";

  position: absolute;
  left: -24vw;
  bottom: -35vw;

  width: 55vw;
  height: 55vw;

  border:
    1px solid
    rgba(215, 189, 133, 0.09);

  border-radius: 50%;
}

.shift-inner {
  position: relative;
  z-index: 2;

  width: min(
    var(--content-width),
    calc(100% - (var(--page-gutter) * 2))
  );

  margin-inline: auto;

  padding-block: var(--section-space);
}

.shift-heading {
  max-width: 970px;

  margin-bottom:
    clamp(70px, 9vw, 125px);
}

.shift-heading h2 {
  max-width: 950px;

  color: var(--white);
}

.shift .section-label {
  color: var(--gold-soft);
}

.shift-path {
  position: relative;
}

.shift-line {
  position: relative;

  height: 2px;
  width: 100%;

  margin-bottom:
    clamp(52px, 7vw, 90px);

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.12);
}

.shift-line span {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--gold-soft)
    );

  transform:
    scaleX(0);

  transform-origin: left;

  transition:
    transform
    1.5s
    var(--ease);
}

.shift-line.is-visible span {
  transform:
    scaleX(1);
}

.shift-movement {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  gap:
    clamp(30px, 6vw, 90px);

  align-items: start;
}

.shift-before,
.shift-after {
  max-width: 510px;
}

.shift-before > span,
.shift-after > span {
  display: block;

  margin-bottom: 34px;

  color: var(--gold-soft);

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shift-before p,
.shift-after p {
  position: relative;

  padding:
    20px
    0;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.13);

  color: #d1d8e3;

  font-family: var(--display);
  font-size:
    clamp(1.45rem, 2.2vw, 2.15rem);

  line-height: 1.25;
}

.shift-before p:last-child,
.shift-after p:last-child {
  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.13);
}

.shift-before p {
  color: #aeb9c8;
}

.shift-after p {
  color: var(--white);
}

.shift-center {
  align-self: center;

  color: var(--gold-soft);

  font-size:
    clamp(2rem, 4vw, 4rem);
}

.shift-closing {
  max-width: 810px;

  margin:
    clamp(65px, 9vw, 120px)
    auto
    0;

  color: #d3dbe6;

  font-family: var(--display);
  font-size:
    clamp(1.8rem, 3vw, 3rem);

  line-height: 1.24;
  text-align: center;
}


/* =========================================================
   SUPPORT / SERVICES
========================================================= */

.support {
  position: relative;

  overflow: hidden;

  background: var(--cream-light);
}

.support-inner {
  width: min(
    var(--content-width),
    calc(100% - (var(--page-gutter) * 2))
  );

  margin-inline: auto;

  padding-block: var(--section-space);
}

.support-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(300px, 0.65fr);

  column-gap:
    clamp(55px, 9vw, 130px);

  align-items: end;

  margin-bottom:
    clamp(75px, 9vw, 130px);
}

.support-heading .section-label {
  grid-column: 1 / -1;
}

.support-heading h2 {
  max-width: 760px;
}

.support-intro {
  max-width: 510px;

  padding-bottom: 8px;

  color: var(--muted);

  font-size: 1.04rem;
  line-height: 1.82;
}

.support-list {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 0;
}

.support-list::before {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: 46%;

  width: 1px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(16, 33, 63, 0.14),
      transparent
    );
}

.support-row {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(220px, 0.78fr)
    minmax(350px, 1.22fr)
    40px;

  gap:
    clamp(30px, 5vw, 75px);

  align-items: center;

  width: 94%;

  padding:
    clamp(38px, 5vw, 64px)
    0;

  border-top:
    1px solid var(--line);

  transition:
    transform 0.35s var(--ease),
    padding 0.35s var(--ease);
}

.support-row:last-child {
  border-bottom:
    1px solid var(--line);
}

.support-row-offset {
  align-self: flex-end;

  transform:
    translateX(4%);
}

.support-row::before {
  content: "";

  position: absolute;
  inset:
    10px
    -24px;

  z-index: -1;

  background:
    rgba(255, 255, 255, 0.74);

  opacity: 0;

  transform:
    scaleY(0.93);

  box-shadow:
    0 22px 60px
    rgba(16, 33, 63, 0.08);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.support-row:hover {
  padding-left: 16px;
  padding-right: 16px;

  transform:
    translateX(1.5%);
}

.support-row-offset:hover {
  transform:
    translateX(2.5%);
}

.support-row:hover::before {
  opacity: 1;

  transform:
    scaleY(1);
}

.support-title h3 {
  font-family: var(--display);
  font-size:
    clamp(2.15rem, 3.5vw, 3.8rem);

  font-weight: 700;
}

.support-description p {
  max-width: 620px;

  color: var(--muted);

  font-size: 0.98rem;
  line-height: 1.78;
}

.support-description span {
  display: block;

  margin-top: 18px;

  color: var(--gold-deep);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.support-row b {
  color: var(--gold);

  font-size: 1.7rem;
  font-weight: 500;

  transition:
    transform 0.3s ease;
}

.support-row:hover b {
  transform:
    translate(5px, -5px);
}


/* =========================================================
   APPROACH
========================================================= */

.approach {
  position: relative;

  overflow: hidden;

  background: var(--white);
}

.approach::before {
  content: "";

  position: absolute;
  right: -12vw;
  top: 22%;

  width: 48vw;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(184, 144, 79, 0.25),
      transparent
    );

  transform: rotate(11deg);
}

.approach-inner {
  position: relative;
  z-index: 2;

  width: min(
    var(--content-width),
    calc(100% - (var(--page-gutter) * 2))
  );

  margin-inline: auto;

  padding-block: var(--section-space);
}

.approach-heading {
  max-width: 960px;

  margin-bottom:
    clamp(80px, 10vw, 145px);
}

.approach-heading h2 {
  max-width: 900px;
}

.approach-flow {
  display: flex;
  flex-direction: column;
  gap:
    clamp(55px, 8vw, 105px);
}

.approach-step {
  position: relative;

  width: min(650px, 58%);

  padding:
    0
    0
    25px
    clamp(26px, 4vw, 50px);

  border-left:
    2px solid var(--gold);
}

.approach-step-left {
  align-self: flex-start;
}

.approach-step-right {
  align-self: flex-end;

  margin-right: 6vw;
}

.approach-step h3 {
  max-width: 590px;

  margin-bottom: 18px;

  font-family: var(--display);
  font-size:
    clamp(2rem, 3.3vw, 3.4rem);

  font-weight: 700;
}

.approach-step p {
  max-width: 580px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.82;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      130deg,
      var(--cream),
      var(--cream-light)
    );
}

.experience-inner {
  width: min(
    var(--content-width),
    calc(100% - (var(--page-gutter) * 2))
  );

  margin-inline: auto;

  padding-block: var(--section-space);
}

.experience-heading {
  max-width: 1000px;

  margin-bottom:
    clamp(75px, 9vw, 130px);
}

.experience-heading h2 {
  max-width: 950px;
}

.experience-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap:
    clamp(65px, 10vw, 150px);

  align-items: start;
}

.experience-copy {
  padding-top: 22px;
}

.experience-copy p {
  max-width: 550px;

  color: var(--muted);

  font-size: 1.02rem;
  line-height: 1.85;
}

.experience-copy p + p {
  margin-top: 25px;
}

.experience-copy .experience-lead {
  color: var(--navy);

  font-family: var(--display);
  font-size:
    clamp(1.7rem, 2.7vw, 2.6rem);

  font-weight: 600;
  line-height: 1.26;
}

.experience-measures {
  position: relative;

  padding-left:
    clamp(0px, 2vw, 30px);

  border-top:
    1px solid var(--line);
}

.experience-measure {
  display: grid;
  grid-template-columns:
    minmax(190px, 0.65fr)
    minmax(0, 1.35fr);

  gap:
    clamp(25px, 4vw, 55px);

  align-items: center;

  padding:
    clamp(30px, 4vw, 48px)
    0;

  border-bottom:
    1px solid var(--line);
}

.experience-measure strong {
  color: var(--gold-deep);

  font-family: var(--display);
  font-size:
    clamp(3.8rem, 6vw, 6.7rem);

  font-weight: 700;
  line-height: 0.88;
}

.experience-measure span {
  max-width: 490px;

  color: var(--muted);

  font-size: 0.96rem;
  line-height: 1.72;
}

.experience-measure-text strong {
  color: var(--navy);

  font-size:
    clamp(2rem, 3.4vw, 3.5rem);

  line-height: 1.03;
}


/* =========================================================
   FOUNDER PERSPECTIVE
========================================================= */

.founder-perspective {
  position: relative;

  overflow: hidden;

  background: var(--white);
}

.founder-inner {
  width: min(
    1120px,
    calc(100% - (var(--page-gutter) * 2))
  );

  margin-inline: auto;

  padding-block:
    clamp(90px, 10vw, 145px);

  display: grid;
  grid-template-columns:
    minmax(190px, 280px)
    minmax(0, 1fr);

  gap:
    clamp(55px, 8vw, 115px);

  align-items: start;
}

.founder-image {
  position: relative;

  width: 100%;
  max-width: 250px;

  margin-top: 65px;
}

.founder-image::before {
  content: "";

  position: absolute;
  left: -18px;
  top: -18px;

  width: 70%;
  height: 70%;

  border-top:
    1px solid var(--gold);

  border-left:
    1px solid var(--gold);

  opacity: 0.7;
}

.founder-image img {
  position: relative;

  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center top;

  filter:
    saturate(0.86)
    contrast(0.98);

  box-shadow: var(--shadow-soft);
}

.founder-copy {
  max-width: 760px;
}

.founder-copy h2 {
  max-width: 760px;

  font-size:
    clamp(2.6rem, 4.5vw, 4.8rem);
}

.founder-copy > p {
  max-width: 690px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.82;
}

.founder-copy > p + p {
  margin-top: 22px;
}

.founder-copy h2 + p {
  margin-top: 34px;
}

.founder-copy .founder-closing {
  color: var(--navy);

  font-family: var(--display);
  font-size:
    clamp(1.55rem, 2.4vw, 2.2rem);

  font-weight: 600;
  line-height: 1.28;
}


/* =========================================================
   FINAL CONVERSATION
========================================================= */

.final-conversation {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      var(--navy),
      var(--navy-dark)
    );

  color: var(--white);
}

.final-background {
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.final-line {
  position: absolute;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(215, 189, 133, 0.35),
      transparent
    );
}

.final-line-one {
  width: 66vw;
  right: -12vw;
  top: 28%;

  transform: rotate(-12deg);
}

.final-line-two {
  width: 48vw;
  left: -10vw;
  bottom: 25%;

  transform: rotate(14deg);
}

.final-inner {
  position: relative;
  z-index: 2;

  width: min(
    980px,
    calc(100% - (var(--page-gutter) * 2))
  );

  margin-inline: auto;

  padding-block:
    clamp(115px, 14vw, 190px);

  text-align: center;
}

.final-conversation .section-label {
  color: var(--gold-soft);
}

.final-conversation .section-label::before {
  background: var(--gold-soft);
}

.final-inner h2 {
  color: var(--white);

  font-size:
    clamp(3rem, 6vw, 6.1rem);
}

.final-inner > p:not(.section-label) {
  max-width: 670px;

  margin:
    30px
    auto
    0;

  color: #ccd5e2;

  font-size: 1.07rem;
  line-height: 1.8;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;

  margin-top: 42px;
}

/* =========================================================
   CURRENT FINAL CTA SYSTEM
========================================================= */

.contact-callout,
.conversation {
  background: var(--navy-dark);
  color: var(--white);
}


/* Eyebrow */

.contact-callout .section-label,
.conversation .eyebrow {
  color: var(--gold-soft);
}

.contact-callout .section-label::before {
  background: var(--gold-soft);
}


/* Heading */

.contact-callout h2,
.conversation h2 {
  color: var(--white);
}


/* Supporting copy */

.contact-callout p:not(.section-label),
.conversation p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}


/* Gold CTA button */

.contact-callout .button-gold,
.conversation .button-gold {
  border-color: transparent;

  background: var(--gold);
  color: var(--navy-dark);

  box-shadow: none;
}

.contact-callout .button-gold:hover,
.conversation .button-gold:hover {
  border-color: transparent;

  background: var(--gold-soft);
  color: var(--navy-dark);

  box-shadow: none;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding:
    82px
    var(--page-gutter)
    28px;

  background: #070f1d;
  color: #b8c2d1;
}

.footer-top {
  width: min(
    var(--content-width),
    100%
  );

  margin-inline: auto;

  display: grid;
  grid-template-columns:
    minmax(280px, 1.15fr)
    minmax(0, 1.85fr);

  gap:
    clamp(60px, 10vw, 140px);
}

.footer-brand {
  max-width: 440px;
}

.footer-brand-text {
  display: inline-grid;
  gap: 7px;
}

.footer-brand-name {
  display: flex;
  align-items: baseline;
}

.footer-capaco,
.footer-group {
  font-family: var(--brand-font);

  font-weight: 700;

  letter-spacing: 0.065em;
  line-height: 0.9;
}

.footer-capaco {
  color: var(--white);

  font-size: 2.4rem;
}

.footer-group {
  margin-left: 0.2em;

  color: var(--gold-soft);

  font-size: 1.7rem;
}

.footer-brand-line {
  color: #8e9caf;

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-brand > p {
  max-width: 410px;

  margin-top: 30px;

  color: #9ca8b9;

  font-size: 0.94rem;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(130px, 1fr));

  gap:
    clamp(30px, 5vw, 75px);
}

.footer-links h3 {
  margin-bottom: 22px;

  color: var(--white);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;

  margin: 12px 0;

  color: #aeb9c8;

  font-size: 0.9rem;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold-soft);

  transform:
    translateX(4px);
}

.footer-bottom {
  width: min(
    var(--content-width),
    100%
  );

  margin:
    65px
    auto
    0;

  padding-top: 24px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.11);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  color: #7f8b9c;

  font-size: 0.76rem;
}


/* =========================================================
   REVEAL MOTION
========================================================= */

[data-reveal] {
  opacity: 0;

  transition:
    opacity
    0.9s
    var(--ease),

    transform
    0.9s
    var(--ease);
}

[data-reveal="up"] {
  transform:
    translateY(42px);
}

[data-reveal="down"] {
  transform:
    translateY(-42px);
}

[data-reveal="left"] {
  transform:
    translateX(-52px);
}

[data-reveal="right"] {
  transform:
    translateX(52px);
}

[data-reveal].is-visible {
  opacity: 1;

  transform:
    translate(0, 0);
}


/* =========================================================
   LARGE TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1180px) {

  .main-nav {
    gap: 19px;
  }

  .hero-image {
    width: 54%;

    opacity: 0.64;
  }

  .hero-title {
    font-size:
      clamp(3.6rem, 6vw, 6.55rem);
  }

  .recognition-point {
    width: min(560px, 52%);
  }

  .support-row {
    width: 96%;
  }

  .support-list::before {
    display: none;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 960px) {

  :root {
    --section-space:
      clamp(68px, 9vw, 96px);
  }

/* =========================================================
   MOBILE / TABLET HEADER AND NAVIGATION
========================================================= */

.site-header {
  padding:
    16px
    22px;

  overflow: visible;
}

.site-header.is-scrolled {
  padding:
    10px
    22px;
}


/* Keep the header stable while the menu is open */

body.menu-open .site-header,
body.menu-open .site-header.is-scrolled {
  background: var(--cream-light);

  box-shadow: none;

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* Keep the logo and menu control above the open navigation */

.brand-text {
  position: relative;
  z-index: 103;
}

.menu-toggle {
  position: relative;
  z-index: 103;

  display: block;

  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}


/* Closed mobile navigation */

.main-nav {
  position: fixed;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: 101;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  gap: 12px;

  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;

  padding:
    120px
    9vw
    70px;

  overflow-x: hidden;
  overflow-y: auto;

  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;

  background:
    linear-gradient(
      135deg,
      var(--cream-light),
      var(--cream)
    );

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform:
    translateX(100%);

  transition:
    opacity 0.3s ease,
    transform 0.4s var(--ease),
    visibility 0s linear 0.4s;
}


/* Open mobile navigation */

.main-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform:
    translateX(0);

  transition:
    opacity 0.3s ease,
    transform 0.4s var(--ease),
    visibility 0s;
}


/* Lock the page behind the open menu */

body.menu-open {
  overflow: hidden;

  touch-action: none;
}


/* Mobile navigation links */

.main-nav a {
  position: relative;

  display: block;

  font-family: var(--display);

  font-size:
    clamp(1.75rem, 6vw, 2.75rem);

  font-weight: 600;

  letter-spacing: -0.04em;
  line-height: 1.05;

  pointer-events: auto;

  -webkit-tap-highlight-color: transparent;
}

.main-nav a:not(.nav-cta)::after {
  bottom: 1px;
}


/* Mobile navigation call-to-action */

.nav-cta {
  width: 100%;
  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 20px;
  padding: 0 1.45rem;

  border: 1px solid transparent;
  border-radius: 4px;

  background: var(--navy);
  color: var(--white);

  text-align: center;

  box-shadow:
    0 12px 28px rgba(16, 33, 63, 0.14);
}

.nav-cta:hover {
  background: var(--navy-dark);
  color: var(--white);

  transform: translateY(-2px);
}
   
  .hero {
    min-height: auto;

    padding-bottom: 0;
  }

  .hero-content {
    width: auto;
    margin: 0;

    padding:
      145px
      7vw
      100px;
  }

  .hero-title {
    max-width: 830px;

    font-size:
      clamp(3.7rem, 11vw, 6.8rem);
  }

  .hero-image {
    position: relative;

    top: auto;
    right: auto;
    bottom: auto;

    width: 100%;
    height: 520px;

    margin-top: 650px;

    opacity: 0.5;

    background-image:
      linear-gradient(
        180deg,
        rgba(251, 248, 242, 0.96) 0%,
        rgba(251, 248, 242, 0.58) 22%,
        rgba(16, 33, 63, 0.1) 100%
      ),
      url("/images/hero-main.jpg");
  }

  .hero-scroll-cue {
    display: none;
  }

  .opening-inner {
    grid-template-columns: 1fr;
  }

  .opening-heading {
    position: static;
  }

  .opening-copy {
    max-width: 720px;
    margin-left: auto;

    padding-top: 0;
  }

  .recognition {
    min-height: auto;
  }

  .recognition-image {
    width: 70%;

    opacity: 0.18;
  }

  .recognition-flow::before {
    left: 30px;
  }

  .recognition-point,
  .recognition-point-left,
  .recognition-point-right,
  .recognition-point-offset {
    width: min(680px, calc(100% - 70px));

    align-self: flex-end;

    margin:
      0
      0
      0
      70px;
  }

  .shift-movement {
    grid-template-columns: 1fr;
  }

  .shift-center {
    transform: rotate(90deg);

    justify-self: center;
  }

  .shift-before,
  .shift-after {
    max-width: none;
  }

  .support-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .support-row,
  .support-row-offset {
    width: 100%;

    align-self: auto;

    transform: none;
  }

  .support-row {
    grid-template-columns:
      minmax(190px, 0.7fr)
      minmax(0, 1.3fr)
      35px;
  }

  .support-row:hover,
  .support-row-offset:hover {
    transform:
      translateX(0);
  }

  .approach-step,
  .approach-step-left,
  .approach-step-right {
    width: min(680px, 82%);

    margin-right: 0;
  }

  .experience-layout {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    max-width: 700px;
  }

  .founder-inner {
    grid-template-columns:
      minmax(160px, 220px)
      minmax(0, 1fr);
  }

  .founder-image {
    margin-top: 50px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 680px) {

  :root {
    --page-gutter: 22px;
  }

  /* =========================================================
   PHONE NAVIGATION REFINEMENTS
========================================================= */

.site-header {
  padding:
    14px
    18px;
}

.site-header.is-scrolled {
  padding:
    9px
    18px;
}

.main-nav {
  justify-content: flex-start;

  gap: 8px;

  padding:
    max(112px, calc(env(safe-area-inset-top) + 92px))
    22px
    max(44px, calc(env(safe-area-inset-bottom) + 28px));
}

.main-nav a {
  font-size:
    clamp(1.65rem, 7.5vw, 2.35rem);

  line-height: 1.08;
}

  h2 {
    font-size:
      clamp(2.55rem, 13vw, 4.35rem);
  }

  .section-label {
    gap: 11px;

    margin-bottom: 20px;

    font-size: 0.8rem;
    letter-spacing: 0.11em;
  }

  .section-label::before {
    width: 30px;
  }

  .brand-capaco {
    font-size: 1.65rem;
  }

  .brand-group {
    font-size: 1.05rem;
  }

  .brand-line {
    font-size: 0.52rem;
    letter-spacing: 0.17em;
  }

  .hero-content {
    padding:
      130px
      22px
      86px;
  }

  .hero-title {
    font-size:
      clamp(3.15rem, 15.5vw, 5.05rem);
  }

  .hero-summary {
    margin-top: 30px;

    font-size:
      clamp(1.35rem, 6vw, 1.75rem);
  }

  .hero-summary-secondary {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;

    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-image {
    height: 420px;
    margin-top: 700px;
  }

  .opening-copy .opening-lead {
    font-size:
      clamp(1.55rem, 7vw, 2.15rem);
  }

  .recognition-image {
    width: 100%;

    opacity: 0.13;
  }

  .recognition-flow::before {
    left: 0;
  }

  .recognition-point,
  .recognition-point-left,
  .recognition-point-right,
  .recognition-point-offset {
    width: calc(100% - 22px);

    margin-left: 22px;

    padding-left: 22px;
  }

  .recognition-point h3 {
    font-size:
      clamp(1.75rem, 8vw, 2.45rem);
  }

  .shift-before p,
  .shift-after p {
    font-size:
      clamp(1.35rem, 6vw, 1.85rem);
  }

  .shift-closing {
    font-size:
      clamp(1.55rem, 7vw, 2.25rem);
  }

  .support-row {
    grid-template-columns:
      minmax(0, 1fr)
      30px;

    gap: 18px;
  }

  .support-title,
  .support-description {
    grid-column: 1;
  }

  .support-description {
    margin-top: 14px;
  }

  .support-row b {
    grid-column: 2;
    grid-row: 1;

    align-self: center;
  }

  .support-row::before {
    inset:
      8px
      -10px;
  }

  .support-title h3 {
    font-size:
      clamp(2rem, 10vw, 3rem);
  }

  .approach-step,
  .approach-step-left,
  .approach-step-right {
    width: calc(100% - 10px);

    align-self: flex-end;

    padding-left: 22px;
  }

  .experience-measure {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .experience-measure strong {
    font-size:
      clamp(4rem, 18vw, 5.5rem);
  }

  .experience-measure-text strong {
    font-size:
      clamp(2rem, 10vw, 3rem);
  }

  .founder-inner {
    grid-template-columns: 1fr;
  }

  .founder-image {
    max-width: 180px;

    margin:
      0
      0
      10px;
  }

  .founder-copy h2 {
    font-size:
      clamp(2.4rem, 11vw, 3.8rem);
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

  .hero-title {
    font-size:
      clamp(2.95rem, 15vw, 4.05rem);
  }

  .hero-image {
    margin-top: 735px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links > div:last-child {
    grid-column: auto;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    scroll-behavior:
      auto !important;

    transition-duration:
      0.01ms !important;
  }

  [data-reveal],
  [data-hero-item],
  [data-hero-line] {
    opacity: 1 !important;

    transform: none !important;
  }

  .hero-image {
    transform: none !important;
  }

  .hero-scroll-cue {
    display: none;
  }

}
