/* ============================================================
   CB Connexions — Design tokens
   ============================================================ */
:root{
  --ink:        #1B1A18;
  --ink-soft:   #322F2A;
  --paper:      #F5F3EC;
  --paper-2:    #EDEADF;
  --stone:      #E4DFD0;
  --slate:      #5C574F;
  --slate-2:    #8B8577;

  --maroon:       #7C2734;
  --maroon-deep:  #5E1D27;
  --maroon-tint:  #F3E3E1;

  --lime:       #8FC93F;
  --lime-deep:  #4F7A20;

  --navy:       #16304A;
  --navy-deep:  #0E2233;
  --navy-tint:  #294A69;

  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection{ background: var(--lime); color: var(--ink); }

:focus-visible{
  outline: 2.5px solid var(--maroon);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--maroon);
  display: inline-flex;
  align-items: flex-start;
  gap: .6em;
  margin: 0 0 18px;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 1.5px;
  margin-top: 9px;
  background: var(--maroon);
  display: inline-block;
  flex-shrink: 0;
}
.section--dark .eyebrow, .section--dark .eyebrow::before{ color: var(--lime); background: var(--lime); }

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 .4em;
  letter-spacing: -.01em;
}
h1{ font-size: clamp(2.75rem, 6.4vw, 6.2rem); letter-spacing: -.015em; }
h2{ font-size: clamp(2rem, 4vw, 3.2rem); }
h3{ font-size: clamp(1.35rem, 2vw, 1.7rem); }

em{ font-style: italic; color: var(--maroon); }
.section--dark em{ color: var(--lime); }

p{ margin: 0 0 1em; }
.lede{
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--slate);
  max-width: 46ch;
}
.section--dark .lede{ color: #C9CFD6; }

.mono-num{
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn--primary{ background: var(--maroon); color: var(--paper); }
.btn--primary:hover{ background: var(--maroon-deep); }

.btn--ghost{ background: transparent; color: var(--ink); border-color: rgba(27,26,24,.25); }
.btn--ghost:hover{ border-color: var(--ink); background: rgba(27,26,24,.04); }

.section--dark .btn--ghost{ color: var(--paper); border-color: rgba(245,243,236,.3); }
.section--dark .btn--ghost:hover{ border-color: var(--paper); background: rgba(245,243,236,.08); }

.btn--lime{ background: var(--lime); color: var(--navy-deep); }
.btn--lime:hover{ background: #A2DA57; }

.btn svg{ width: 16px; height: 16px; }

/* ============================================================
   Scroll progress
   ============================================================ */
.scroll-progress{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  z-index: 200;
  background: transparent;
  pointer-events: none;
}
.scroll-progress__fill{
  height: 100%;
  width: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}

/* ============================================================
   Nav
   ============================================================ */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(245,243,236,.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(27,26,24,.08);
  transition: padding .3s var(--ease), background .3s ease;
}
.nav.is-scrolled{ padding: 11px 0; background: rgba(245,243,236,.92); }

.nav__inner{ display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo{ width: 176px; flex-shrink: 0; position: relative; z-index: 95; }
.nav__logo img{ width: 100%; height: auto; }

.nav__links{ display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav__links-cta{ display: none; }
.nav__links a{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after{
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1.5px; background: var(--maroon);
  transition: right .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after{ right: 0; }
.nav__links a.is-active{ color: var(--ink); }

.nav__links-home a{ display: flex; padding: 4px; }
.nav__links-home a::after{ display: none; }
.nav__links-home a.is-active{ color: var(--maroon); }
.nav__links-home svg{ width: 19px; height: 19px; transition: transform .3s var(--ease); }
.nav__links-home a:hover svg{ transform: translateY(-1px); }

.nav__cta{ display: flex; align-items: center; gap: 20px; }
.nav__phone{ display: none; font-family: var(--font-mono); font-size: 13.5px; color: var(--slate); }

.nav__toggle{
  display: none;
  position: relative;
  z-index: 95;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(27,26,24,.2);
  background: none;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav__toggle span{ position: relative; width: 16px; height: 1.5px; background: var(--ink); display:block; transition: background .2s ease .1s; }
.nav__toggle span::before, .nav__toggle span::after{
  content:""; position: absolute; left:0; width:16px; height:1.5px; background: var(--ink);
  transition: top .25s var(--ease) .1s, transform .25s var(--ease);
}
.nav__toggle span::before{ top: -5px; }
.nav__toggle span::after{ top: 5px; }
.nav__toggle.is-open span{ background: transparent; transition: background .1s ease; }
.nav__toggle.is-open span::before,
.nav__toggle.is-open span::after{ transition: top .25s var(--ease), transform .25s var(--ease) .1s; }
.nav__toggle.is-open span::before{ top: 0; transform: rotate(45deg); }
.nav__toggle.is-open span::after{ top: 0; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero{
  position: relative;
  padding: 168px 0 140px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero__ribbon{
  position: absolute;
  top: 50%; right: -6%;
  width: min(760px, 62vw);
  transform: translateY(-46%);
  opacity: .9;
  pointer-events: none;
  z-index: 1;
}
.hero__grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,7.5fr) minmax(0,4.5fr);
  gap: 40px;
  align-items: end;
  width: 100%;
}
.hero__head{ max-width: 700px; }
.hero__head h1{ overflow: hidden; }
.hero__head h1 .line{ display: block; overflow: hidden; }
.hero__head h1 .line span{ display: block; }
.js-ready .hero__head h1 .line span{ transform: translateY(112%); }

.hero__lede{ margin: 28px 0 40px; }
.hero__actions{ display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.hero__stats{
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 32px;
  border-left: 1px solid rgba(27,26,24,.12);
}
.hero__stat b{
  display: block;
  font-family: var(--font-mono);
  font-size: 1.9rem;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat span{ font-size: 13px; color: var(--slate); letter-spacing: .02em; }

.hero__cue{
  position: absolute;
  left: var(--gutter);
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate);
}
.js-ready .hero__cue{ opacity: 0; }
.hero__cue-line{
  width: 1.5px; height: 34px;
  background: rgba(27,26,24,.25);
  position: relative;
  overflow: hidden;
}
.hero__cue-line::after{
  content: "";
  position: absolute; left: 0; top: 0; width: 100%; height: 40%;
  background: var(--maroon);
  animation: cueTravel 2.2s ease-in-out infinite;
}
@keyframes cueTravel{
  0%{ transform: translateY(-100%); }
  100%{ transform: translateY(250%); }
}
.hero__cue-label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@media (prefers-reduced-motion: reduce){ .hero__cue-line::after{ animation: none; top: 40%; } }
@media (max-width: 760px){ .hero__cue{ display: none; } }

/* ============================================================
   Trust bar
   ============================================================ */
.trust{
  padding: 30px 0;
  border-top: 1px solid rgba(27,26,24,.1);
  border-bottom: 1px solid rgba(27,26,24,.1);
}
.trust__row{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 18px;
}
.trust__item{
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 18px;
  border: 1px solid rgba(27,26,24,.14);
  border-radius: 999px;
  background: var(--paper-2);
}
.trust__item svg{ width: 14px; height: 14px; color: var(--maroon); flex-shrink:0; }

/* ============================================================
   Section shells
   ============================================================ */
section{ position: relative; padding: 128px 0; }
.section--dark{ background: var(--navy); color: var(--paper); }
.section--tint{ background: var(--paper-2); }
.section__head{ max-width: 640px; margin-bottom: 68px; }
.section__head.center{ margin-inline: auto; text-align: center; }

/* ============================================================
   Services — editorial index list
   ============================================================ */
.services__index{
  position: relative;
  border-top: 1px solid rgba(27,26,24,.14);
}
.services__rail{
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: rgba(27,26,24,.08);
  display: none;
}
@media (min-width: 981px){
  .services__rail{ display: block; }
  .services__index{ padding-left: 20px; }
  .services__rail{ left: -20px; }
}
.services__rail-fill{
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: top;
}
.service-row{
  position: relative;
  display: grid;
  grid-template-columns: 56px 56px 1fr 36px;
  align-items: center;
  gap: 28px;
  padding: 30px 20px;
  border-bottom: 1px solid rgba(27,26,24,.14);
  transition: background .4s ease, padding-left .4s var(--ease);
  cursor: pointer;
}
.service-row::before{
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease);
}
.service-row.is-active::before{ transform: scaleY(1); }
.service-row.is-active{ background: var(--paper-2); padding-left: 32px; }
.service-row:hover{ background: var(--paper-2); }

.service-row__num{
  font-size: 14px;
  color: var(--slate-2);
  transition: color .4s ease;
}
.service-row.is-active .service-row__num{ color: var(--maroon); }

.service-row__icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--maroon-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon);
  transition: background .4s ease, color .4s ease, transform .4s var(--ease);
}
.service-row__icon svg{ width: 20px; height: 20px; }
.service-row.is-active .service-row__icon,
.service-row:hover .service-row__icon{ background: var(--lime); color: var(--navy-deep); transform: rotate(-6deg) scale(1.06); }

.service-row__body h3{ font-size: 1.3rem; margin-bottom: 6px; }
.service-row__body p{ color: var(--slate); font-size: 14.5px; margin: 0; max-width: 52ch; }

.service-row__arrow{
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .35s ease, transform .35s var(--ease), background .3s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  pointer-events: none;
}
.service-row__arrow svg{ width: 18px; height: 18px; }
.service-row:hover .service-row__arrow{ opacity: 1; transform: translateX(0); pointer-events: auto; }
.service-row__arrow:hover{ background: rgba(27,26,24,.06); }
.service-row__arrow:focus-visible{ opacity: 1; transform: translateX(0); pointer-events: auto; }

/* ============================================================
   Process (infinity loop signature)
   ============================================================ */
.process{ background: var(--navy); color: var(--paper); overflow: hidden; }
.process__layout{
  display: grid;
  grid-template-columns: minmax(0,1fr);
  position: relative;
}
.process__loop{
  position: relative;
  max-width: 980px;
  margin: 40px auto 0;
}
.process__loop svg{ width: 100%; height: auto; }
.process__loop .loop-path{
  fill: none;
  stroke: rgba(245,243,236,.18);
  stroke-width: 2;
}
.process__loop .loop-path--fg{
  stroke: var(--lime);
  stroke-width: 2.5;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}
.process__steps{
  position: absolute; inset: 0;
}
.process__step{
  position: absolute;
  width: 210px;
  transform: translate(-50%, -50%);
  text-align: left;
  opacity: .35;
  transition: opacity .5s ease;
}
.process__step.is-active{ opacity: 1; }
/* Connect and Sustain sit at the loop's left/right tips, level with their
   dot — anchored outward (away from the curve, which only spans between
   the two tips) instead of centered on the point, so they read as
   attached to their node without ever crossing the line. */
.process__step--left{ width: 190px; transform: translate(-100%, -50%); text-align: right; }
.process__step--right{ width: 190px; transform: translateY(-50%); text-align: left; }
.process__step .num{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--lime);
  letter-spacing: .1em;
  display:block;
  margin-bottom: 8px;
}
.process__step h3{ color: var(--paper); margin-bottom: 8px; font-size: 1.35rem; }
.process__step p{ color: #B9C2CB; font-size: 13.5px; margin: 0; }
.process__dot{
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid rgba(245,243,236,.3);
  transform: translate(-50%,-50%);
  transition: background .4s ease, border-color .4s ease;
}
.process__dot.is-active{ background: var(--lime); border-color: var(--lime); }

.process__loopnote{
  text-align: center;
  margin-top: 36px;
  color: #8CA0B2;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================================
   About
   ============================================================ */
.about__grid{
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 72px;
  align-items: center;
}
.about__art{
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(124,39,52,.22), transparent 55%),
    radial-gradient(90% 80% at 85% 90%, rgba(143,201,63,.28), transparent 55%),
    var(--navy);
  position: relative;
  overflow: hidden;
  display:flex; align-items:center; justify-content:center;
  will-change: clip-path;
}
.about__art svg{ width: 62%; opacity: .95; }
.about__badges{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.about__badge{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--stone);
  color: var(--slate);
}
.about__name{ font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--maroon); margin-bottom: 10px; }

/* ============================================================
   Business Value
   ============================================================ */
.value__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(27,26,24,.12);
  border: 1px solid rgba(27,26,24,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-card{
  position: relative;
  background: var(--paper);
  padding: 36px 30px 34px;
}
.value-card__bar{
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}
.value-card__top{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.value-card__icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--maroon-tint);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
}
.value-card__icon svg{ width: 20px; height: 20px; }
.value-card__index{ font-size: 13px; color: var(--slate-2); }
.value-card h3{ margin-bottom: 10px; }
.value-card p{ color: var(--slate); font-size: 14.5px; margin: 0; }

/* ============================================================
   CTA / Contact
   ============================================================ */
.cta{ background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.cta::before{
  content: "";
  position: absolute; inset: -20%;
  background:
    radial-gradient(38% 46% at 12% 20%, rgba(143,201,63,.10), transparent 60%),
    radial-gradient(34% 42% at 88% 82%, rgba(124,39,52,.16), transparent 60%);
  animation: ctaDrift 22s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaDrift{
  from{ transform: translate3d(0,0,0) scale(1); }
  to{ transform: translate3d(-2%,2%,0) scale(1.06); }
}
@media (prefers-reduced-motion: reduce){ .cta::before{ animation: none; } }
.cta__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,.85fr);
  gap: 64px;
}
.cta h2{ color: var(--paper); }
.cta .lede{ color: #C7C2B6; }

.contact-list{ list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list a{
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--paper);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245,243,236,.15);
  transition: color .3s ease, padding-left .3s ease;
}
.contact-list a:hover{ color: var(--lime); padding-left: 6px; }
.contact-list svg{ width: 17px; height: 17px; color: var(--lime); flex-shrink: 0; }

.form{
  background: rgba(245,243,236,.05);
  border: 1px solid rgba(245,243,236,.14);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.field{ margin-bottom: 20px; }
.field label{
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #B4AFA2;
  margin-bottom: 8px;
}
.field input, .field textarea{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(245,243,236,.25);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 2px;
  resize: none;
  transition: border-color .3s ease;
}
.field input:focus, .field textarea:focus{ outline: none; border-color: var(--lime); }
.field input::placeholder, .field textarea::placeholder{ color: #8B8577; }
.form__hp{ position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form .btn{ width: 100%; justify-content: center; margin-top: 6px; position: relative; overflow: hidden; }
.form .btn[disabled]{ opacity: .7; cursor: default; }
.form__note{ font-size: 12.5px; color: #8B8577; margin-top: 14px; text-align: center; transition: color .3s ease; }
.form__note.is-error{ color: #E0A0A0; }
.form__note.is-success{ color: var(--lime); }

/* ============================================================
   Footer
   ============================================================ */
.footer{ padding: 64px 0 36px; background: var(--ink); color: var(--paper); border-top: 1px solid rgba(245,243,236,.1); }
.footer__top{ display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; margin-bottom: 48px; }
.footer__logo{ width: 190px; }
.footer__cols{ display: flex; gap: 72px; flex-wrap: wrap; }
.footer__col h4{ font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #9C9788; margin-bottom: 16px; font-weight: 500;}
.footer__col ul{ list-style: none; margin:0; padding:0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a{ font-size: 14px; color: #D8D4C7; transition: color .25s ease; }
.footer__col a:hover{ color: var(--lime); }
.footer__bottom{
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; border-top: 1px solid rgba(245,243,236,.08);
  font-family: var(--font-mono); font-size: 12px; color: #8B8577; letter-spacing: .02em;
}

/* ============================================================
   Reveal utility (GSAP hooks) — visible by default; JS opts into
   the hidden starting state only once GSAP has actually loaded,
   so content never gets stuck invisible if the script fails.
   ============================================================ */
.js-ready [data-reveal]{ opacity: 0; }
.js-ready .hero__ribbon path{ stroke-dasharray: 900; stroke-dashoffset: 900; }

/* ============================================================
   Responsive
   ============================================================ */
/* The ribbon needs more breathing room than the general tablet
   breakpoint gives it — it still crowds the stats column on iPad
   Pro portrait (1024px), so it gets its own wider cutoff. */
@media (max-width: 1120px){
  .hero__ribbon{ display: none; }
}

@media (max-width: 980px){
  .nav__links{ display: none; }
  .nav__phone, .nav__cta-btn{ display: none; }
  .nav__toggle{ display: flex; }
  .nav__links-cta{ display: block; margin-top: 8px; }
  .nav__links-cta .btn{ width: 100%; justify-content: center; }
  .hero{ min-height: auto; }
  .hero__grid{ grid-template-columns: 1fr; gap: 56px; }
  .value__grid{ grid-template-columns: repeat(2,1fr); }
  .hero__stats{ flex-direction: row; border-left: none; border-top: 1px solid rgba(27,26,24,.12); padding-left: 0; padding-top: 28px; flex-wrap: wrap; }
  .about__grid{ grid-template-columns: 1fr; gap: 44px; }
  .about__art{ aspect-ratio: 16/9; max-width: 520px; }
  .cta__grid{ grid-template-columns: 1fr; gap: 48px; }
  .process__step{ position: static; transform: none; width: auto; opacity: 1 !important; padding: 18px 0; border-bottom: 1px solid rgba(245,243,236,.1); }
  .process__step--left, .process__step--right{ text-align: left; }
  .process__loop svg, .process__dot{ display: none; }
  .process__loop{ margin-top: 8px; }
  .process__steps{ position: static; display: flex; flex-direction: column; }
}

@media (max-width: 760px){
  section{ padding: 88px 0; }
  .hero{ padding-top: 128px; }
  .value__grid{ grid-template-columns: 1fr; }
  .service-row{ grid-template-columns: 40px 44px 1fr; gap: 16px; padding: 22px 4px; }
  .service-row__arrow{ display: none; }
  .trust__row{ justify-content: flex-start; }
  .trust__item{ width: 100%; justify-content: center; text-align: center; }
  .footer__top{ flex-direction: column; }
  .footer__cols{ gap: 40px; }
}

/* ============================================================
   Mobile nav — full-screen menu
   ============================================================ */
html.nav-open{ overflow: hidden; }

.nav__links.is-open{
  display: flex;
  position: fixed;
  /* header.nav has backdrop-filter, which makes it the containing block
     for position:fixed descendants (a CSS quirk) — inset:0 would then
     fill the nav bar's own short box instead of the viewport. vw/vh are
     always relative to the true viewport regardless, so use those. */
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 90;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  background: var(--paper);
  padding: 96px 32px 48px;
  overflow-y: auto;
  counter-reset: navlink;
}
.nav__links.is-open li:not(.nav__links-cta){ border-bottom: 1px solid rgba(27,26,24,.1); }
.nav__links.is-open li:not(.nav__links-cta):not(.nav__links-home){ counter-increment: navlink; }
.nav__links.is-open li:first-child{ border-top: 1px solid rgba(27,26,24,.1); }

.nav__links.is-open a{
  display: flex;
  align-items: baseline;
  gap: 18px;
  width: 100%;
  padding: 20px 2px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
}
.nav__links.is-open li:not(.nav__links-cta):not(.nav__links-home) a::before{
  content: "0" counter(navlink);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--maroon);
}
.nav__links.is-open a::after{ display: none; }
.nav__links.is-open a.is-active{ color: var(--maroon); }

.nav__links.is-open .nav__links-home a{ padding: 16px 2px; color: var(--ink-soft); }
.nav__links.is-open .nav__links-home svg{ width: 24px; height: 24px; }

.nav__links.is-open .nav__links-cta{ margin-top: 32px; }
.nav__links.is-open .nav__links-cta a{ padding: 15px 28px; font-family: var(--font-body); font-size: 15px; }
