*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
.acme-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
}
@keyframes lov-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes lov-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes lov-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.lov-anim-fade-in {
  animation: lov-fade-in 320ms ease-out both;
}
.lov-anim-slide-up {
  animation: lov-slide-up 360ms ease-out both;
}
@media (prefers-reduced-motion: reduce) {
  .lov-anim-fade-in,
  .lov-anim-slide-up,
  [class*="lov-anim-"] {
    animation: none !important;
    transition: none !important;
  }
}
.acme-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FBF8F3;
  border-bottom: 1px solid rgba(10, 34, 64, 0.07);
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-header[data-scrolled="true"] {
  background: #FBF8F3;
  border-bottom-color: rgba(10, 34, 64, 0.1);
  box-shadow: 0 8px 24px -22px rgba(10, 34, 64, 0.45);
}
.acme-nav {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  height: 68px;
  min-height: 68px;
  position: relative;
}
.acme-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #0A2240;
  margin-left: auto;
}
.acme-nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 0.125rem;
  align-items: center;
}
.acme-nav-item {
  margin: 0;
  position: relative;
}
.acme-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0A2240;
  text-decoration: none;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.18s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-nav-link > span {
  position: relative;
  z-index: 1;
}
.acme-nav-link:hover,
.acme-nav-link:focus-visible {
  color: #8E6531;
  background: transparent;
  outline: none;
}
.acme-nav-link[data-active="true"] {
  color: #8E6531;
}
.acme-nav-caret {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.7;
  margin-left: 0.1rem;
}
.acme-nav-item-has-menu[data-open="true"] > .acme-nav-link-trigger .acme-nav-caret {
  transform: rotate(180deg);
  opacity: 1;
}
.acme-nav-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translate(-50%, -6px);
  min-width: 17rem;
  background: #FFFFFF;
  border: 1px solid #E6DCC6;
  border-radius: 12px;
  box-shadow: 0 24px 60px -28px rgba(10, 34, 64, 0.35);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 60;
}
.acme-nav-item-has-menu[data-open="true"] > .acme-nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.acme-nav-menu-inner {
  display: block;
}
.acme-nav-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.acme-nav-menu-list > li > a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  color: #0A2240;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.2s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-nav-menu-list > li > a:hover,
.acme-nav-menu-list > li > a:focus-visible {
  background: rgba(10, 34, 64, 0.06);
  color: #8E6531;
  outline: none;
}
.acme-nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 11.2px 62px 11.2px 24px;
  background: #0A2240;
  color: #FBF8F3;
  border: 1px solid transparent;
  border-radius: 100px;
  text-decoration: none;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 24px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 24px -14px rgba(10, 34, 64, 0.55);
  transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-nav-cta-label {
  display: inline-block;
}
.acme-nav-cta-badge {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #B8894A;
  color: #0A2240;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}
.acme-nav-cta-badge svg {
  width: 14px;
  height: 14px;
  display: block;
}
.acme-nav-cta:hover {
  background: #17335A;
  box-shadow: 0 14px 36px -14px rgba(10, 34, 64, 0.55), 0 0 0 4px rgba(184, 137, 74, 0.18);
}
.acme-nav-cta:hover .acme-nav-cta-badge {
  background: #D4A968;
  transform: translateY(-50%) rotate(360deg);
}
.acme-nav-cta:active {
  transform: translateY(1px);
}
.acme-nav-cta:focus-visible {
  outline: 2px solid #B8894A;
  outline-offset: 3px;
}
.acme-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: 0;
  color: #0A2240;
  text-decoration: none;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}
.acme-brand-logo {
  display: block;
  height: 46px;
  max-height: 46px;
  width: auto;
  max-width: clamp(138px, 14vw, 178px);
  aspect-ratio: 1884 / 1338;
  object-fit: contain;
  object-position: center left;
  flex: 0 0 auto;
  background: transparent;
}
@media (max-width: 960px) {
  .acme-nav {
    height: 64px;
    min-height: 64px;
    gap: 1rem;
  }
  .acme-brand-logo {
    height: 42px;
    max-height: 42px;
    max-width: 154px;
  }
  .acme-nav-toggle {
    display: inline-flex;
  }
  .acme-nav-cta {
    margin-left: 0;
    padding: 0.35rem 3.25rem 0.35rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.35;
  }
  .acme-nav-cta-badge {
    width: 2.5rem;
    height: 2.5rem;
    right: 0;
  }
  .acme-nav-list {
    display: none;
    position: absolute;
    inset: calc(100% + 0.75rem) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    background: #FFFFFF;
    border: 1px solid #E6DCC6;
    border-radius: 12px;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  }
  .acme-nav-link {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    width: 100%;
    justify-content: space-between;
  }
  .acme-nav-link::before {
    display: none;
  }
  .acme-nav-link:hover,
  .acme-nav-link[data-active="true"] {
    background: rgba(10, 34, 64, 0.06);
  }
  .acme-nav[data-open="true"] .acme-nav-list {
    display: flex;
  }
  .acme-nav[data-open="true"] .acme-nav-toggle-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .acme-nav[data-open="true"] .acme-nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .acme-nav[data-open="true"] .acme-nav-toggle-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .acme-nav-item-has-menu {
    flex-direction: column;
    align-items: stretch;
  }
  .acme-nav-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    box-shadow: none;
    padding: 0 0.5rem;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: grid-template-rows 0.3s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .acme-nav-menu-inner {
    overflow: hidden;
    min-height: 0;
  }
  .acme-nav-item-has-menu[data-open="true"] > .acme-nav-menu {
    grid-template-rows: 1fr;
    padding: 0 0.5rem 0.5rem;
  }
}
@media (max-width: 520px) {
  .acme-nav {
    height: 58px;
    min-height: 58px;
  }
  .acme-brand-logo {
    height: 38px;
    max-height: 38px;
    max-width: 132px;
  }
  .acme-brand-word {
    display: none;
  }
  .acme-nav-cta .acme-nav-cta-label {
    display: none;
  }
  .acme-nav-cta {
    padding: 0.35rem;
  }
}
.acme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-btn:hover {
  transform: translateY(-1px);
}
.acme-btn:active {
  transform: translateY(0);
}
.acme-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.45);
}
.acme-btn[disabled],
.acme-btn.acme-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.acme-btn-primary {
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  background: #0A2240;
  color: #FBF8F3;
  border-color: #0A2240;
}
.acme-btn-primary .acme-btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #B8894A;
  color: #0A2240;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-btn-primary:hover {
  background: #17335A;
  color: #FBF8F3;
  border-color: #17335A;
  box-shadow: 0 14px 40px -18px rgba(10, 34, 64, 0.55), 0 0 0 4px rgba(184, 137, 74, 0.18);
}
.acme-btn-primary:hover .acme-btn-badge {
  transform: rotate(-45deg);
  background: #D4A968;
  color: #0A2240;
}
.acme-btn-ghost {
  background: transparent;
  color: #0A2240;
  border-color: #D6C9AC;
}
.acme-btn-ghost:hover {
  background: rgba(10, 34, 64, 0.06);
  border-color: #0A2240;
  color: #0A2240;
}
/* dark-bg-gr adaptation for About Hero (mirrors Home > Our Approach) */
.acme-block-about-hero {
  position: relative;
  background: #04060F;
  color: #F2ECDD;
  overflow: hidden;
  isolation: isolate;
}
/* Layer 1: obsidian base + dual-scale blueprint grid + ambient radial mesh.
   All stacked in a single pseudo so a shared elliptical mask can fade the
   entire background field toward the vignette for premium depth. */
.acme-block-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(42% 34% at 12% 8%, rgba(201, 168, 106, 0.16), transparent 68%), radial-gradient(40% 38% at 92% 14%, rgba(62, 107, 168, 0.14), transparent 70%), radial-gradient(55% 45% at 60% 55%, rgba(27, 43, 92, 0.55), transparent 72%), radial-gradient(50% 34% at 82% 100%, rgba(184, 137, 74, 0.12), transparent 72%), radial-gradient(45% 32% at 12% 96%, rgba(42, 106, 130, 0.1), transparent 74%), /* Major grid: 480px squares, structural anchor */ linear-gradient(to right, rgba(90, 130, 188, 0.068) 1px, transparent 1px) 0 0 / 480px 480px, linear-gradient(to bottom, rgba(90, 130, 188, 0.068) 1px, transparent 1px) 0 0 / 480px 480px, /* Minor grid: 96px squares, whisper-thin scaffold (H/V balanced) */ linear-gradient(to right, rgba(58, 95, 146, 0.038) 1px, transparent 1px) 0 0 / 96px 96px, linear-gradient(to bottom, rgba(58, 95, 146, 0.038) 1px, transparent 1px) 0 0 / 96px 96px, /* Obsidian base tone */ linear-gradient(168deg, #0C1730 0%, #070C1A 50%, #04060F 100%);
  /* Composite mask: narrower horizontal falloff + soft fade around the light beam */
  -webkit-mask-image: radial-gradient(60% 55% at 50% 42%, transparent 0%, rgba(0, 0, 0, 0.35) 28%, #000 62%), linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%), radial-gradient(115% 100% at 50% 45%, #000 38%, rgba(0, 0, 0, 0.5) 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: radial-gradient(60% 55% at 50% 42%, transparent 0%, rgba(0, 0, 0, 0.35) 28%, #000 62%), linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%), radial-gradient(115% 100% at 50% 45%, #000 38%, rgba(0, 0, 0, 0.5) 78%, transparent 100%);
  mask-composite: intersect;
  will-change: transform, opacity;
  animation: acme-about-hero-drift 32s ease-in-out infinite alternate, acme-about-hero-breathe 28s ease-in-out infinite;
}
/* Layer 2: aurora sweep + edge vignette + fine grain */
.acme-block-about-hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0) 38%, rgba(184, 137, 74, 0.05) 47%, rgba(255, 255, 255, 0.07) 50%, rgba(74, 123, 200, 0.05) 53%, rgba(255, 255, 255, 0) 62%, transparent 100%), radial-gradient(140% 100% at 50% 50%, transparent 48%, rgba(0, 0, 0, 0.55) 100%), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 3px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.006) 0 1px, transparent 1px 3px);
  mix-blend-mode: screen;
  filter: blur(1px);
  opacity: 0.9;
  will-change: transform, opacity;
  animation: acme-about-hero-float 26s ease-in-out infinite, acme-about-hero-shimmer 24s ease-in-out infinite;
}
@keyframes acme-about-hero-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-0.5%, 0.35%, 0) scale(1.006);
  }
  100% {
    transform: translate3d(0.4%, -0.25%, 0) scale(1.003);
  }
}
@keyframes acme-about-hero-breathe {
  0%,
  100% {
    opacity: 0.95;
  }
  50% {
    opacity: 1;
  }
}
@keyframes acme-about-hero-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(4px, -3px, 0);
  }
}
@keyframes acme-about-hero-shimmer {
  0%,
  100% {
    opacity: 0.84;
  }
  50% {
    opacity: 0.92;
  }
}
@media (prefers-reduced-motion: reduce) {
  .acme-block-about-hero::before,
  .acme-block-about-hero::after {
    animation: none;
  }
}
/* Lighten the aurora blur on small screens to preserve 60fps */
@media (max-width: 1024px) {
  .acme-block-about-hero::after {
    filter: none;
    opacity: 0.75;
  }
}
.acme-block-about-hero > * {
  position: relative;
  z-index: 1;
}
.acme-about-hero-inner {
  min-height: 560px;
  display: flex;
  align-items: center;
  /* Laptop (~1025–1599px): 80px */
  padding-block: 80px;
}
/* Desktop (≥1600px): 90px */
@media (min-width: 1600px) {
  .acme-about-hero-inner {
    padding-block: 90px;
  }
}
.acme-about-hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}
/* Left column */
.acme-about-hero-left {
  max-width: 720px;
}
.acme-about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8894A;
  margin: 0 0 1.5rem;
  text-align: left;
}
.acme-about-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #B8894A;
  box-shadow: 0 0 0 4px rgba(184, 137, 74, 0.15);
}
.acme-about-hero-title {
  font-family: "Manrope", system-ui, -apple-system, sans-serif, "Figtree", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 clamp(18px, 1.6vw, 24px);
  max-width: 24ch;
  letter-spacing: -0.02em;
  text-align: left;
  text-wrap: balance;
  /* Laptop (~1025–1599px): 50px / 60px */
  font-size: 50px;
  line-height: 60px;
}
/* Desktop (≥1600px): 60px / 70px */
@media (min-width: 1600px) {
  .acme-about-hero-title {
    font-size: 60px;
    line-height: 70px;
  }
}
.acme-about-hero-lede {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
  max-width: 68ch;
  text-align: left;
  text-wrap: pretty;
}
/* Right column figure with arrow mask */
.acme-about-hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.acme-about-hero-figure {
  --acme-parallax-x: 0px;
  --acme-parallax-y: 0px;
  --acme-hover-y: 0px;
  --acme-hover-rot: 0deg;
  --acme-hover-scale: 1;
  position: relative;
  margin: 0 0 0 auto;
  width: 220px;
  max-width: 220px;
  height: 220px;
  aspect-ratio: 1 / 1;
  transform: translate3d(var(--acme-parallax-x), calc(var(--acme-parallax-y) + var(--acme-hover-y)), 0) rotate(var(--acme-hover-rot)) scale(var(--acme-hover-scale));
  transform-origin: center center;
  will-change: transform;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-about-hero-figure:hover {
  --acme-hover-y: -4px;
  --acme-hover-rot: 0.6deg;
  --acme-hover-scale: 1.02;
}
@media (prefers-reduced-motion: reduce) {
  .acme-about-hero-figure {
    transition: none;
    --acme-parallax-x: 0px;
    --acme-parallax-y: 0px;
  }
  .acme-about-hero-figure:hover {
    --acme-hover-y: 0px;
    --acme-hover-rot: 0deg;
    --acme-hover-scale: 1;
  }
}
.acme-about-hero-figure-svg {
  width: 100%;
  height: 100%;
  display: block;
  shape-rendering: geometricPrecision;
  filter: drop-shadow(0 2px 3px rgba(10, 34, 64, 0.14)) drop-shadow(0 18px 28px rgba(10, 34, 64, 0.12));
  transition: filter 620ms cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-about-hero-figure:hover .acme-about-hero-figure-svg {
  filter: drop-shadow(0 3px 5px rgba(10, 34, 64, 0.2)) drop-shadow(0 26px 40px rgba(10, 34, 64, 0.2));
}
.acme-about-hero-figure-img {
  /* Default: premium timeless grayscale with a subtle warm highlight
     (light sepia + gentle warm hue rotation) so the image never feels flat */
  filter: grayscale(0.92) sepia(0.14) hue-rotate(-8deg) contrast(1.14) brightness(0.97) saturate(0.9);
  transition: filter 640ms ease-in-out;
}
.acme-about-hero-figure:hover .acme-about-hero-figure-img {
  /* Hover: restore original colors, preserve shadows & clarity */
  filter: grayscale(0) sepia(0) hue-rotate(0deg) contrast(1.06) brightness(1) saturate(1.02);
}
@media (prefers-reduced-motion: reduce) {
  .acme-about-hero-figure-svg,
  .acme-about-hero-figure-img {
    transition: none;
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .acme-about-hero-inner {
    min-height: 0;
    padding-block: 70px;
  }
  .acme-about-hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 48px);
  }
  .acme-about-hero-left {
    max-width: none;
  }
  .acme-about-hero-title {
    max-width: 80%;
    width: 80%;
    font-size: 40px;
    line-height: 50px;
    text-wrap: pretty;
  }
  .acme-about-hero-lede {
    max-width: 80%;
    width: 80%;
  }
  .acme-about-hero-right {
    justify-content: flex-start;
  }
  .acme-about-hero-figure {
    width: 220px;
    max-width: 220px;
    height: 220px;
    margin-inline: 0 auto 0 0;
    margin-left: 0;
    margin-right: auto;
  }
}
@media (max-width: 720px) {
  .acme-about-hero-inner {
    padding-block: 60px;
  }
  .acme-about-hero-right {
    justify-content: flex-start;
  }
  .acme-about-hero-figure {
    width: 160px;
    max-width: 160px;
    height: 160px;
    margin-left: 0;
    margin-right: auto;
  }
  .acme-about-hero-title {
    max-width: 100%;
    width: 100%;
    font-size: 35px;
    line-height: 45px;
  }
  .acme-about-hero-lede {
    max-width: 100%;
    width: 100%;
  }
}
/* Minimal decorations around the arrow mask figure */
.acme-about-hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.acme-about-hero-deco-dot {
  top: -6px;
  right: 8%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #B8894A;
  opacity: 0.14;
  box-shadow: 0 0 0 6px rgba(184, 137, 74, 0.06);
}
.acme-about-hero-deco-glow {
  bottom: -4%;
  left: -6%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 169, 104, 0.12) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.85;
}
.acme-about-hero-deco-arc {
  top: 18%;
  right: -34px;
  width: 92px;
  height: 92px;
  opacity: 0.12;
  transform: rotate(18deg);
}
.acme-block-what-we-do {
  background: #FBF8F3;
  color: #0A2240;
  padding-block: 100px;
}
.acme-what-we-do-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
}
.acme-what-we-do-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.acme-what-we-do-left {
  position: relative;
  min-height: 620px;
}
.acme-what-we-do-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 32px 28px;
  position: relative;
}
.acme-what-we-do-card {
  background: #FFFFFF;
  border: 1px solid #E6DCC6;
  border-radius: 18px;
  padding: 32px 28px 30px;
  box-shadow: 0 1px 0 rgba(10, 34, 64, 0.02), 0 24px 44px -32px rgba(10, 34, 64, 0.22);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-what-we-do-card:hover {
  transform: translateY(-4px);
  border-color: #D6C9AC;
  box-shadow: 0 1px 0 rgba(10, 34, 64, 0.03), 0 34px 60px -30px rgba(10, 34, 64, 0.28);
}
.acme-what-we-do-card-a {
  transform: translateY(-28px);
}
.acme-what-we-do-card-b {
  transform: translateY(28px);
}
.acme-what-we-do-card-c {
  transform: translateY(-4px);
}
.acme-what-we-do-card-d {
  transform: translateY(56px);
}
.acme-what-we-do-card-a:hover {
  transform: translateY(-32px);
}
.acme-what-we-do-card-b:hover {
  transform: translateY(24px);
}
.acme-what-we-do-card-c:hover {
  transform: translateY(-8px);
}
.acme-what-we-do-card-d:hover {
  transform: translateY(52px);
}
.acme-what-we-do-card-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  margin-bottom: 26px;
  color: #FFFFFF;
  box-shadow: 0 12px 24px -14px rgba(10, 34, 64, 0.4);
}
.acme-what-we-do-card-icon svg {
  width: 26px;
  height: 26px;
}
.acme-what-we-do-card-icon-gold {
  background: linear-gradient(140deg, #D4A968 0%, #B8894A 60%, #8E6531 100%);
}
.acme-what-we-do-card-icon-navy {
  background: linear-gradient(140deg, #17335A 0%, #0A2240 60%, #061634 100%);
}
.acme-what-we-do-card-title {
  margin: 0 0 10px;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0A2240;
}
.acme-what-we-do-card-text {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #4A5A75;
}
.acme-what-we-do-right {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.acme-what-we-do-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin: 0 0 22px;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #B8894A;
}
.acme-what-we-do-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #B8894A;
  box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.16);
}
.acme-what-we-do-title {
  margin: 0;
  max-width: 520px;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 44px;
  line-height: 54px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0A2240;
  text-wrap: balance;
}
.acme-what-we-do-lede {
  margin: 22px 0 0;
  max-width: 520px;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #4A5A75;
}
.acme-what-we-do-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 260px);
  gap: 36px;
  align-items: center;
  margin-top: 34px;
}
.acme-what-we-do-help {
  min-width: 0;
}
.acme-what-we-do-help-title {
  margin: 0 0 16px;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #0A2240;
}
.acme-what-we-do-help-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.acme-what-we-do-help-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #0A2240;
  font-weight: 500;
}
.acme-what-we-do-tick {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #B8894A;
  color: #FFFFFF;
  flex: 0 0 22px;
  box-shadow: 0 4px 10px -4px rgba(184, 137, 74, 0.6);
}
.acme-what-we-do-tick svg {
  width: 12px;
  height: 12px;
}
.acme-what-we-do-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.acme-what-we-do-media-primary {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10, 34, 64, 0.35);
  border: 1px solid #E6DCC6;
}
.acme-what-we-do-media-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.acme-what-we-do-media-circle {
  position: absolute;
  right: -16px;
  bottom: -32px;
  width: 130px;
  height: 130px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FBF8F3;
  box-shadow: 0 18px 34px -14px rgba(10, 34, 64, 0.4);
}
.acme-what-we-do-media-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.acme-what-we-do-cta {
  margin-top: 60px;
}
.acme-what-we-do-cta-btn {
  min-width: 168px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .acme-block-what-we-do {
    padding-block: 80px;
  }
  .acme-what-we-do-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
  }
  .acme-what-we-do-left {
    min-height: 0;
  }
  .acme-what-we-do-card-a,
  .acme-what-we-do-card-b,
  .acme-what-we-do-card-c,
  .acme-what-we-do-card-d {
    transform: none;
  }
  .acme-what-we-do-card-a:hover,
  .acme-what-we-do-card-b:hover,
  .acme-what-we-do-card-c:hover,
  .acme-what-we-do-card-d:hover {
    transform: translateY(-4px);
  }
  .acme-what-we-do-title {
    font-size: 38px;
    line-height: 46px;
  }
  .acme-what-we-do-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .acme-what-we-do-media {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 720px) {
  .acme-block-what-we-do {
    padding-block: 60px;
  }
  .acme-what-we-do-cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  .acme-what-we-do-card {
    padding: 26px 22px 24px;
  }
  .acme-what-we-do-title {
    font-size: 30px;
    line-height: 38px;
  }
  .acme-what-we-do-lede {
    font-size: 15px;
    line-height: 26px;
  }
  .acme-what-we-do-media {
    aspect-ratio: 4 / 3;
  }
  .acme-what-we-do-media-circle {
    width: 96px;
    height: 96px;
    right: -8px;
    bottom: -20px;
  }
  .acme-what-we-do-cta {
    margin-top: 44px;
  }
  .acme-what-we-do-cta-btn {
    width: 100%;
  }
}
.acme-site-footer {
  position: relative;
  background: #FBF8F3;
  color: #0A2240;
  padding-block: 6rem 1.5rem;
  border-top: 1px solid #E6DCC6;
  overflow: hidden;
}
.acme-site-footer::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 60vmin;
  height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 137, 74, 0.22) 0%, rgba(184, 137, 74, 0.08) 40%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.acme-site-footer-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 4rem;
  padding-bottom: 4rem;
  z-index: 1;
}
.acme-site-footer-lede {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.acme-site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #0A2240;
  text-decoration: none;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.acme-site-footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #B8894A 0%, #8E6531 100%);
  color: #FBF8F3;
  box-shadow: 0 6px 20px -8px rgba(184, 137, 74, 0.6);
}
.acme-site-footer-tag {
  max-width: 26rem;
  margin: 0;
  color: #4A5A75;
  font-size: 0.95rem;
  line-height: 1.55;
}
.acme-site-footer-mail {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  border: 1px solid #E6DCC6;
  border-radius: 999px;
  color: #0A2240;
  text-decoration: none;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-site-footer-mail-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #F3ECDE;
  color: #B8894A;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-site-footer-mail:hover {
  border-color: rgba(184, 137, 74, 0.45);
  color: #D4A968;
}
.acme-site-footer-mail:hover .acme-site-footer-mail-arrow {
  transform: rotate(-45deg);
  background: #B8894A;
  color: #FBF8F3;
}
.acme-site-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.acme-site-footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.acme-site-footer-col-title {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7A879C;
}
.acme-site-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.acme-site-footer-col ul li a {
  display: inline-flex;
  align-items: center;
  color: #4A5A75;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  transition: color 0.2s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.acme-site-footer-col ul li a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 1px;
  background: #B8894A;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-site-footer-col ul li a:hover {
  color: #0A2240;
}
.acme-site-footer-col ul li a:hover::after {
  width: 14px;
}
.acme-site-footer-col-plain li {
  color: #4A5A75;
  font-size: 0.95rem;
}
.acme-site-footer-base {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  padding-top: 1.5rem;
  border-top: 1px solid #E6DCC6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.acme-site-footer-copy {
  color: #7A879C;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.acme-site-footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
.acme-site-footer-legal a {
  color: #4A5A75;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-site-footer-legal a:hover {
  color: #0A2240;
}
.acme-site-footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
.acme-site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #E6DCC6;
  border-radius: 50%;
  color: #4A5A75;
  transition: color 0.2s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-site-footer-social a:hover {
  color: #FBF8F3;
  border-color: #B8894A;
  background: #B8894A;
}
@media (max-width: 900px) {
  .acme-site-footer {
    padding-block: 4rem 1.5rem;
  }
  .acme-site-footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .acme-site-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .acme-site-footer-base {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }
  .acme-site-footer-legal {
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .acme-site-footer-cols {
    grid-template-columns: 1fr;
  }
}
.acme-block-hero {
  padding-block: 120px;
}
@media (max-width: 1024px) {
  .acme-block-hero {
    padding-block: 100px;
  }
}
@media (max-width: 720px) {
  .acme-block-hero {
    padding-block: 60px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-style: normal;
  color: #0A2240;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.5rem, 1.75rem + 3.75vw, 4rem);
  line-height: 1.125;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 35px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (max-width: 1279px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 1024px) {
  h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 720px) {
  h2 {
    font-size: 25px;
    line-height: 34px;
  }
}
h3 {
  font-size: clamp(1.375rem, 1.2rem + 0.9vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
}
p {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.55;
  font-weight: 400;
  margin: 0 0 1rem;
}
body {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  background: #FBF8F3;
  color: #0A2240;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.55;
  font-weight: 400;
}
