:root {
  --ink: #0e1009;
  --ink-2: #16190f;
  --paper: #f3f0e5;
  --cream: #fbf9f2;
  --sand: #e8e1cf;
  --olive: #4b5320;
  --olive-deep: #2c3113;
  --sage: #a7b268;
  --lime: #d6df8f;
  --text: #1d1f11;
  --muted: #6f6e59;
  --line: rgba(29, 31, 17, 0.14);
  --line-l: rgba(255, 255, 255, 0.14);
  --font-d: 'Space Grotesk', system-ui, sans-serif;
  --font-s: 'Instrument Serif', Georgia, serif;
  --font-b: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --radius: 22px;
  --shadow: 0 20px 50px -24px rgba(14, 16, 9, 0.35);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--olive-2, #5c6430);
  border-radius: 99px;
  border: 2px solid var(--ink);
}
* {
  scrollbar-width: thin;
  scrollbar-color: #5c6430 var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

.preloader {
  display: none;
}
.js .preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
.js .preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.preloader__logo {
  width: 150px;
  filter: grayscale(1) brightness(1.6);
  opacity: 0;
  animation: preIn 0.6s 0.1s var(--ease) forwards;
}
.preloader__name {
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--lime);
  font-size: 0.8rem;
  opacity: 0;
  animation: preIn 0.6s 0.25s var(--ease) forwards;
}
.preloader__bar {
  width: 170px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  opacity: 0;
  animation: preIn 0.6s 0.4s var(--ease) forwards;
}
.preloader__bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 99px;
  background: var(--lime);
  animation: preload 0.9s ease-in-out infinite;
}
@keyframes preIn {
  to {
    opacity: 1;
  }
}
@keyframes preload {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  background: linear-gradient(90deg, var(--olive), var(--lime));
  transform-origin: 0 50%;
  transform: scaleX(0);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
html.js .cursor-dot,
html.js .cursor-ring {
  opacity: 1;
}
@media (pointer: fine) {
  .cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--lime);
    box-shadow: 0 0 12px rgba(214, 223, 143, 0.8);
  }
  .cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(214, 223, 143, 0.55);
  }
  body.cursor-hover .cursor-ring {
    width: 64px;
    height: 64px;
    border-color: var(--lime);
    background: rgba(214, 223, 143, 0.08);
  }
  body.cursor-hover {
    cursor: none;
  }
  body.cursor-hover a,
  body.cursor-hover button {
    cursor: none;
  }
}
@media (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

.wrap {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.wrap-wide {
  width: min(1400px, 94%);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  transition:
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(251, 249, 242, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--line);
  box-shadow: 0 10px 40px -20px rgba(14, 16, 9, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-height: 0;
  box-shadow: none;
  transition: transform 0.3s var(--ease);
}
.logo__chip:hover {
  transform: translateY(-2px) rotate(-1deg);
}
.logo__chip img {
  height: 60px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(14, 16, 9, 0.18));
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 0.96;
  color: #fff;
  text-transform: uppercase;
}
.logo__text strong {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
}
.logo__text small {
  font-family: var(--font-b);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  opacity: 0.8;
}
.site-header.is-scrolled .logo__text {
  color: var(--text);
}
.footer .logo__chip {
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: 0;
  padding: 0;
}
.footer .logo__chip img {
  height: 68px;
  max-width: 250px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}
.footer .logo__text {
  color: #fff;
}
.footer .logo__text small {
  opacity: 0.9;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-desktop a {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.site-header.is-scrolled .nav-desktop a {
  color: var(--text);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: var(--lime);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover::after {
  width: 100%;
}
.site-header.is-scrolled .nav-desktop a:hover {
  color: var(--olive);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 13px 26px;
  border: 1px solid transparent;
  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    color 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  will-change: transform;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(214, 223, 143, 0.55);
}
.btn-primary:hover {
  background: #e4ecac;
  box-shadow: 0 18px 40px -14px rgba(214, 223, 143, 0.75);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-dark {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(75, 83, 32, 0.7);
}
.btn-dark:hover {
  background: #5a6330;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.site-header.is-scrolled .nav-toggle {
  border-color: var(--line);
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s,
    background 0.3s;
}
.site-header.is-scrolled .nav-toggle span {
  background: var(--text);
}
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7vw;
  clip-path: circle(0 at calc(100% - 64px) 38px);
  transition: clip-path 0.65s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 64px) 38px);
  visibility: visible;
}
.mobile-menu a.mm-link {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2rem, 7vw, 3rem);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease),
    color 0.3s;
}
.mobile-menu a.mm-link small {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 1rem;
  color: var(--sage);
}
.mobile-menu.is-open a.mm-link {
  opacity: 1;
  transform: none;
}
.mobile-menu a.mm-link:hover {
  color: var(--lime);
}
.mobile-menu a.mm-link:nth-child(1) {
  transition-delay: 0.15s;
}
.mobile-menu a.mm-link:nth-child(2) {
  transition-delay: 0.22s;
}
.mobile-menu a.mm-link:nth-child(3) {
  transition-delay: 0.29s;
}
.mobile-menu a.mm-link:nth-child(4) {
  transition-delay: 0.36s;
}
.mobile-menu a.mm-link:nth-child(5) {
  transition-delay: 0.43s;
}
.mm-footer {
  position: absolute;
  bottom: 34px;
  left: 7vw;
  right: 7vw;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: -6% -4%;
  transform: translate(var(--px, 0px), var(--py, 0px));
  transition: transform 0.25s ease-out;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  will-change: transform;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 16, 9, 0.62) 0%,
    rgba(14, 16, 9, 0.28) 42%,
    rgba(14, 16, 9, 0.92) 100%
  );
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}
.hero__blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(75, 83, 32, 0.85), transparent 65%);
  top: -10%;
  left: -6%;
  animation: float 16s ease-in-out infinite;
}
.hero__blob--2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(214, 223, 143, 0.4),
    transparent 65%
  );
  bottom: -12%;
  right: -4%;
  animation: float 20s ease-in-out infinite reverse;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -24px) scale(1.08);
  }
}
.hero__watermark {
  position: absolute;
  right: -2%;
  bottom: -6%;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(12rem, 32vw, 30rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}
.hero__content {
  position: relative;
  z-index: 5;
  width: min(1200px, 92%);
  margin-inline: auto;
  padding: 120px 0 180px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(214, 223, 143, 0.4);
  background: rgba(214, 223, 143, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
}
.hero__badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(214, 223, 143, 0.6);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 7px rgba(214, 223, 143, 0);
  }
}
.hero h1 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
.hero h1 em {
  font-family: var(--font-s);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  display: block;
  margin-top: 2px;
}
.hero__lead {
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.meta-pill {
  min-width: 150px;
  border: 1px solid rgba(214, 223, 143, 0.3);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-pill strong {
  font-family: var(--font-d);
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.meta-pill span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.hero__cue {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 96px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-d);
}
.hero__cue::after {
  content: '';
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--lime), transparent);
  animation: cuedrip 1.8s var(--ease) infinite;
}
@keyframes cuedrip {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.js .hero .animate {
  opacity: 0;
  animation: heroUp 0.9s var(--ease) forwards;
}
.js .hero .animate--1 {
  animation-delay: 0.05s;
}
.js .hero .animate--2 {
  animation-delay: 0.18s;
}
.js .hero .animate--3 {
  animation-delay: 0.32s;
}
.js .hero .animate--4 {
  animation-delay: 0.46s;
}
.js .hero .animate--5 {
  animation-delay: 0.6s;
}
.js .hero .animate--6 {
  animation-delay: 0.72s;
}
@media (prefers-reduced-motion: reduce) {
  .js .hero .animate {
    opacity: 1;
    animation: none;
  }
}

.story-intro {
  background: linear-gradient(
    180deg,
    rgba(232, 225, 207, 0.68),
    rgba(251, 249, 242, 1)
  );
}
.story-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.story-intro__copy p {
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
}
.story-intro__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.story-intro__card {
  background: var(--ink);
  color: #fff;
  border-radius: 26px;
  padding: 28px 26px;
  box-shadow: 0 28px 60px -34px rgba(14, 16, 9, 0.55);
  border: 1px solid rgba(214, 223, 143, 0.15);
}
.story-intro__card--muted {
  background: var(--cream);
  color: var(--text);
  border-color: var(--line);
}
.story-intro__card .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.story-intro__card--muted .tag {
  color: var(--olive);
}
.story-intro__card h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 12px;
}
.story-intro__card p {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}
.story-intro__card--muted p {
  color: var(--muted);
}

.marquee-band {
  position: relative;
  background: var(--olive);
  color: var(--lime);
  padding: 16px 0;
  z-index: 6;
}
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
}
.marquee__track {
  display: flex;
  flex-shrink: 0;
  animation: scroll 26s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  padding-right: 2.6rem;
  flex-shrink: 0;
}
.marquee__group span {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__group .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
.marquee--outline .marquee__group span {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  text-transform: none;
  font-family: var(--font-d);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  transition:
    color 0.4s,
    -webkit-text-stroke 0.4s;
}
.marquee--outline .marquee__group span:hover {
  color: var(--lime);
  -webkit-text-stroke: 1px transparent;
}
.marquee--outline .marquee__group .dot {
  background: var(--olive-2, #6b7a2a);
}
@keyframes scroll {
  to {
    transform: translateX(-100%);
  }
}

.stats {
  background: var(--paper);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  border-right: 1px solid var(--line);
  padding: 8px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat:last-child {
  border-right: 0;
}
.stat b {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.stat b .plus {
  color: var(--olive);
}
.stat span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 38px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
}
h2.title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--text);
}
h2.title em {
  font-family: var(--font-s);
  font-style: italic;
  font-weight: 400;
  color: var(--olive);
  display: block;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head p {
  max-width: 420px;
  color: var(--muted);
  font-weight: 300;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--olive);
  white-space: nowrap;
}
.link-more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}
.link-more:hover svg {
  transform: translateX(6px);
}

.why {
  background: var(--paper);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.why-card {
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s,
    background 0.45s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.why-card .ic {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.45s var(--ease);
}
.why-card:hover .ic {
  transform: rotate(-8deg) scale(1.06);
}
.why-card .ic svg {
  width: 27px;
  height: 27px;
}
.why-card h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
}
.why-card p {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--muted);
  flex: 1;
}
.why-card .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 8px;
}
.why-card .meta::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.6;
}
.why-card--dark {
  background: var(--ink);
  color: #fff;
}
.why-card--dark p {
  color: rgba(255, 255, 255, 0.7);
}
.why-card--dark .ic {
  background: rgba(214, 223, 143, 0.14);
  color: var(--lime);
}
.why-card--olive {
  background: var(--olive);
  color: #fff;
}
.why-card--olive p {
  color: rgba(255, 255, 255, 0.8);
}
.why-card--olive .ic {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.why-card--paper {
  background: var(--cream);
  border: 1px solid var(--line);
}
.why-card--paper .ic {
  background: rgba(75, 83, 32, 0.09);
  color: var(--olive);
}
.why-card--sand {
  background: var(--sand);
  border: 1px solid var(--line);
}
.why-card--sand .ic {
  background: rgba(75, 83, 32, 0.1);
  color: var(--olive);
}
.c1 {
  grid-column: span 7;
}
.c2 {
  grid-column: span 5;
}
.c3 {
  grid-column: span 4;
}
.c4 {
  grid-column: span 4;
}
.c5 {
  grid-column: span 4;
}
.why-card--wide {
  grid-column: 1/-1;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.why-card--wide .ic {
  margin: 0;
}
.why-card--wide h3 {
  font-size: 1.5rem;
}
.why-card--wide p {
  max-width: 640px;
}
.why-card--wide .meta {
  margin-left: auto;
  padding-top: 0;
}

.quote {
  position: relative;
  background: var(--olive-deep);
  color: #fff;
  overflow: hidden;
}
.quote::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(214, 223, 143, 0.16),
    transparent 65%
  );
  pointer-events: none;
}
.quote::after {
  content: '\201C';
  position: absolute;
  left: 4%;
  top: 6%;
  font-family: var(--font-s);
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 1;
  color: rgba(214, 223, 143, 0.12);
  pointer-events: none;
}
.quote__inner {
  position: relative;
  z-index: 2;
  width: min(1000px, 90%);
  margin-inline: auto;
  text-align: center;
}
.quote blockquote {
  font-family: var(--font-s);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.4;
  margin-bottom: 34px;
}
.quote blockquote b {
  color: var(--lime);
  font-weight: 400;
}
.quote__meta {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}
.quote__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(214, 223, 143, 0.4);
  background: rgba(214, 223, 143, 0.08);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--lime);
}
.badge svg {
  width: 17px;
  height: 17px;
}

.services {
  background: var(--sand);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.service-card__img {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  filter: saturate(0.92);
}
.service-card:hover .service-card__img img {
  transform: scale(1.08);
}
.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 16, 9, 0.55));
}
.service-card__num {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  background: rgba(251, 249, 242, 0.92);
  color: var(--olive);
  border-radius: 999px;
  padding: 7px 14px;
}
.service-card__body {
  padding: 28px;
}
.service-card h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.service-card h3 .arr {
  color: var(--olive);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}
.service-card h3 .arr svg {
  width: 17px;
  height: 17px;
}
.service-card:hover h3 .arr {
  background: var(--olive);
  color: #fff;
  transform: rotate(-45deg);
}
.service-card p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}

.commitment {
  background: var(--paper);
}
.commitment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.commitment__img {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}
.commitment__img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.commitment__img:hover img {
  transform: scale(1.05);
}
.commitment__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 16, 9, 0.75));
}
.commitment__float {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 22px;
  right: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.commitment__float .chip {
  background: rgba(251, 249, 242, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
}
.commitment__float .chip b {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--olive);
  letter-spacing: -0.02em;
  display: block;
}
.commitment__float .chip span {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.commitment__copy p.lead {
  color: var(--muted);
  font-weight: 300;
  margin: 22px 0 18px;
}
.commitment__copy p.body {
  color: var(--muted);
  font-weight: 300;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.value {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.85rem;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
}
.value:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
}
.value::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
}

.cta {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
}
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 16, 9, 0.9),
    rgba(14, 16, 9, 0.94)
  );
}
.cta__inner {
  position: relative;
  z-index: 2;
  width: min(900px, 90%);
  margin-inline: auto;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.cta .eyebrow {
  color: var(--lime);
  justify-content: center;
}
.cta .eyebrow::before {
  background: var(--lime);
}
.cta h2.title {
  color: #fff;
  margin-bottom: 26px;
}
.cta h2.title em {
  color: var(--lime);
}
.cta__sub {
  max-width: 560px;
  margin: 0 auto 42px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  font-size: 1.05rem;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}
.cta__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-l);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s var(--ease);
}
.chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--sage);
  transform: translateY(-2px);
}
.chip svg {
  width: 16px;
  height: 16px;
  color: var(--lime);
  flex-shrink: 0;
}

.footer {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer__word {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(5rem, 20vw, 17rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  user-select: none;
  pointer-events: none;
  margin-top: -6vw;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer h4 {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 300px;
  margin: 18px 0 22px;
}
.footer a.f-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  font-size: 0.95rem;
  padding: 6px 0;
  transition:
    color 0.25s,
    transform 0.25s var(--ease);
}
.footer a.f-link:hover {
  color: var(--lime);
  transform: translateX(5px);
}
.footer a.f-link svg {
  width: 15px;
  height: 15px;
  color: var(--sage);
  flex-shrink: 0;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}
.footer__bottom a {
  transition: color 0.25s;
}
.footer__bottom a:hover {
  color: var(--lime);
}
.footer__banners {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-left {
  transform: translateX(-44px);
}
.reveal-right {
  transform: translateX(44px);
}
.reveal-scale {
  transform: scale(0.92);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .nav-desktop {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .commitment__grid {
    grid-template-columns: 1fr;
  }
  .commitment__img img {
    height: 420px;
  }
  .values {
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .c1,
  .c2,
  .c3,
  .c4,
  .c5 {
    grid-column: span 12;
  }
}
@media (max-width: 680px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }
  .stat {
    border-right: 0;
    padding: 8px 4px;
  }
  .stat:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 28px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .why-card--wide {
    flex-direction: column;
    align-items: flex-start;
  }
  .why-card--wide .meta {
    margin-left: 0;
  }
  .commitment__float {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-inner {
    height: 68px;
  }
}

.page-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: clamp(8rem, 16vw, 11rem) 0 clamp(4rem, 8vw, 6rem);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.32;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 16, 9, 0.8),
    rgba(14, 16, 9, 0.55) 55%,
    rgba(14, 16, 9, 0.95)
  );
}
.page-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}
.page-hero__blob--1 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(75, 83, 32, 0.9), transparent 65%);
  top: -20%;
  left: -4%;
  animation: float 16s ease-in-out infinite;
}
.page-hero__blob--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(214, 223, 143, 0.35),
    transparent 65%
  );
  bottom: -18%;
  right: -2%;
  animation: float 20s ease-in-out infinite reverse;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin-inline: auto;
}
.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 26px;
}
.crumb a {
  color: var(--lime);
  transition: color 0.25s;
}
.crumb a:hover {
  color: #fff;
}
.crumb .sep {
  opacity: 0.5;
}
.page-hero h1 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 22px;
}
.page-hero h1 em {
  font-family: var(--font-s);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.page-hero p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}
.page-hero__lead {
  margin-top: 0;
}

.sub-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.sub-section--alt {
  background: var(--sand);
}
.sub-section--dark {
  background: var(--ink);
  color: #fff;
}
.sub-section--dark h2.title {
  color: #fff;
}
.sub-section--dark h2.title em {
  color: var(--lime);
}
.sub-section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.media-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.media-frame:hover img {
  transform: scale(1.05);
}
.media-frame--tall img {
  height: 560px;
}
.media-frame--wide img {
  height: 460px;
}
.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 16, 9, 0.5));
}
.media-frame__tag {
  position: absolute;
  z-index: 3;
  left: 20px;
  bottom: 20px;
  background: rgba(251, 249, 242, 0.94);
  border-radius: 12px;
  padding: 10px 16px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}
.media-frame__tag b {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
  color: var(--text);
}

.copy p {
  color: var(--muted);
  font-weight: 300;
  margin: 18px 0;
}
.copy p:first-child {
  margin-top: 0;
}
.copy .drop {
  font-family: var(--font-s);
  font-style: italic;
  color: var(--olive);
  font-size: 1.5em;
  line-height: 1;
  float: left;
  margin: 6px 10px 0 0;
}

.sig {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.sig__mark {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
}
.sig b {
  display: block;
  font-family: var(--font-d);
  font-size: 0.95rem;
}
.sig span {
  font-size: 0.8rem;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.team-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s,
    border-color 0.5s;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(75, 83, 32, 0.35);
}
.team-card__media {
  position: relative;
  height: clamp(280px, 34vw, 380px);
  overflow: hidden;
}
.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.9s var(--ease);
  filter: none;
}
.team-card:hover .team-card__media img {
  transform: scale(1.06);
  filter: none;
}
.team-card__index {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-s);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--lime);
  background: rgba(14, 16, 9, 0.42);
  border: 1px solid rgba(214, 223, 143, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 5px 15px;
  line-height: 1.15;
}
.team-card__body {
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-card__body h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.team-card__role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}
.team-card__role::after {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--sage);
}
.team-card__body p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}
.team-card__body .drop {
  font-family: var(--font-s);
  font-style: italic;
  color: var(--olive);
  font-size: 1.28rem;
  line-height: 1.25;
}
.team-card__quote {
  position: relative;
  margin-top: auto;
  padding: 16px 18px 0;
  font-family: var(--font-s);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
}
.team-card__quote::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  width: 38px;
  height: 2px;
  border-radius: 2px;
  background: var(--sage);
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--olive), var(--sage));
}
.tl-item {
  position: relative;
  padding: 0 0 44px 88px;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-item__dot {
  position: absolute;
  left: 0;
  top: 2px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-weight: 700;
  color: var(--olive);
  font-size: 0.8rem;
}
.tl-item__dot--olive {
  background: var(--olive);
  color: #fff;
}
.tl-item h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.tl-item p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}
.tl-item .tl-year {
  font-family: var(--font-d);
  font-weight: 600;
  color: var(--sage);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.svc-card__img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  filter: saturate(0.92);
}
.svc-card:hover .svc-card__img img {
  transform: scale(1.08);
}
.svc-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 16, 9, 0.5));
}
.svc-card__img .tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  background: rgba(251, 249, 242, 0.92);
  color: var(--olive);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 14px;
}
.svc-card__img .count {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 10px;
  font-family: var(--font-s);
  font-style: italic;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
}
.svc-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.svc-card__body h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.25rem;
}
.svc-card__body p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
  flex: 1;
}
.svc-card__body ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 6px 0 4px;
}
.svc-card__body li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 400;
}
.svc-card__body li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
  margin-top: 8px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.p-step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.p-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.p-step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--font-s);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--sage);
  display: block;
  margin-bottom: 14px;
}
.p-step h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.p-step p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.9rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
  position: relative;
}
.testi:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.testi__stars {
  color: var(--olive);
  font-size: 0.9rem;
  letter-spacing: 3px;
}
.testi p.quote-t {
  font-family: var(--font-s);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}
.testi__who {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi__ava {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.95rem;
}
.testi__who b {
  display: block;
  font-size: 0.92rem;
}
.testi__who span {
  font-size: 0.78rem;
  color: var(--muted);
}
.testi::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: var(--font-s);
  font-size: 4rem;
  color: rgba(75, 83, 32, 0.14);
  line-height: 1;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sector {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.sector:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.sector .s-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(75, 83, 32, 0.1);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.sector .s-ic svg {
  width: 26px;
  height: 26px;
}
.sector h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.sector p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
.info-cards {
  display: grid;
  gap: 16px;
}
.info-card {
  display: flex;
  gap: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.info-card .ic2 {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card .ic2 svg {
  width: 24px;
  height: 24px;
}
.info-card h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.info-card p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}
.info-card a {
  color: var(--olive);
  font-weight: 500;
  font-size: 0.92rem;
}
.info-card a:hover {
  text-decoration: underline;
}

.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(1.8rem, 4vw, 3rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.field label em {
  color: var(--olive);
  font-style: normal;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  appearance: none;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 4px rgba(75, 83, 32, 0.12);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%234b5320' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}
.form-note a {
  color: var(--olive);
}
.form-ok {
  display: none;
  margin-top: 18px;
  background: rgba(75, 83, 32, 0.1);
  border: 1px solid rgba(75, 83, 32, 0.3);
  color: var(--olive);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-ok.show {
  display: block;
}

.map-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 1rem;
}
.faq-item button .plus {
  position: relative;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.faq-item button .plus::before,
.faq-item button .plus::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  background: var(--olive);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.faq-item button .plus::before {
  width: 14px;
  height: 2px;
}
.faq-item button .plus::after {
  width: 2px;
  height: 14px;
}
.faq-item.is-open button .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-item .faq-a div {
  padding: 0 24px 20px;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.93rem;
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.legal-wrap h2 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 36px 0 12px;
}
.legal-wrap h2:first-child {
  margin-top: 0;
}
.legal-wrap p {
  color: var(--muted);
  font-weight: 300;
  margin: 14px 0;
}
.legal-wrap ul {
  padding-left: 22px;
  color: var(--muted);
  font-weight: 300;
  display: grid;
  gap: 8px;
  margin: 14px 0;
}
.legal-wrap li::marker {
  color: var(--olive);
}
.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(75, 83, 32, 0.08);
  border: 1px solid rgba(75, 83, 32, 0.2);
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 30px;
}

@media (max-width: 1020px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sector-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .testi-grid,
  .process,
  .sector-grid {
    grid-template-columns: 1fr;
  }
  .tl-item {
    padding-left: 72px;
  }
}

.nav-desktop a.is-active {
  color: var(--lime);
}
.nav-desktop a.is-active::after {
  width: 100%;
}
.site-header.is-scrolled .nav-desktop a.is-active {
  color: var(--olive);
}
.footer a.f-link.is-active {
  color: var(--lime);
}

/* --- WhatsApp widget (reference: mvmcloud/floating-whatsapp-button) --- */
.wa-widget {
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 26px);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-b);
}
.wa-widget__btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  box-shadow: 1px 2px 10px rgba(60, 60, 60, 0.35);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.wa-widget__btn svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}
.wa-widget__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: waRing 2.4s var(--ease) infinite;
}
@keyframes waRing {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.wa-widget__btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 1px 4px 16px rgba(60, 60, 60, 0.4);
}
.wa-widget__btn:active {
  transform: scale(0.94);
}
.wa-widget__btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.wa-widget__pop {
  width: min(330px, calc(100vw - 32px));
  background: #e5ddd5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 3px 14px rgba(60, 60, 60, 0.3);
  margin-bottom: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transform-origin: bottom right;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    visibility 0.25s;
}
.wa-widget.is-open .wa-widget__pop {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.wa-widget__head {
  background: var(--olive);
  color: #fff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.wa-widget__head .wa-widget__close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  transition:
    background 0.2s,
    transform 0.25s var(--ease);
}
.wa-widget__head .wa-widget__close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(90deg);
}
.wa-widget__chat {
  padding: 14px;
}
.wa-widget__bubble {
  background: #fff;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 10px 13px;
  border-radius: 4px 12px 12px 12px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.12);
  margin-bottom: 12px;
  font-weight: 300;
}
.wa-widget__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-widget__form input,
.wa-widget__form textarea {
  width: 100%;
  border: 1px solid #d5c9bb;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.86rem;
  padding: 9px 12px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.wa-widget__form input:focus,
.wa-widget__form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(167, 178, 104, 0.2);
}
.wa-widget__form textarea {
  resize: none;
}
.wa-widget__form input.error,
.wa-widget__form textarea.error {
  border-color: #c0392b;
}
.wa-widget__error {
  display: none;
  color: #c0392b;
  font-size: 0.76rem;
  font-weight: 600;
  margin: 2px 0 0;
}
.wa-widget__error.show {
  display: block;
}
.wa-widget__send {
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  background: var(--olive);
  color: #fff;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  padding: 11px 14px;
  text-align: center;
  transition:
    background 0.25s,
    transform 0.2s var(--ease),
    box-shadow 0.25s;
}
.wa-widget__send:hover {
  background: #5a6330;
  box-shadow: 0 8px 18px -8px rgba(75, 83, 32, 0.7);
}
.wa-widget__send:active {
  transform: translateY(1px);
}
@media (max-width: 680px) {
  .wa-widget {
    right: 14px;
    bottom: 14px;
  }
  .wa-widget__btn {
    width: 52px;
    height: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-widget__btn::after {
    animation: none;
  }
  .wa-widget__pop,
  .wa-widget__btn {
    transition: none;
  }
}
