@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #352d31;
  --ink-soft: #493d42;
  --paper: #f4f1e9;
  --paper-deep: #e9e4d8;
  --white: #ffffff;
  --green: #f7bb48;
  --green-deep: #e7a72e;
  --blue: #efc56e;
  --muted: #746a6f;
  --line: rgba(53, 45, 49, 0.14);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 48px));
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(53, 45, 49, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-toggle > span:nth-child(2) {
  transform: translateY(-4px);
}

.menu-toggle > span:nth-child(3) {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  background: var(--green);
  color: var(--ink);
  font-size: 14px;
}

.button-primary {
  min-height: 58px;
  padding-inline: 26px 9px;
  background: var(--green);
  color: var(--ink);
}

.button-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green);
  font-size: 18px;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink);
}

.button-light {
  min-height: 58px;
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.orb-one {
  top: 210px;
  left: -280px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(247, 187, 72, 0.14), transparent 68%);
}

.orb-two {
  top: -260px;
  right: -180px;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(247, 187, 72, 0.12), transparent 68%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  min-height: 700px;
  padding-top: 106px;
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.56);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(247, 187, 72, 0.14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: clamp(64px, 6.1vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.accent-line {
  display: block;
  color: var(--green);
}

.hero-lead {
  max-width: 550px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-scale: 1;
  --tilt-speed: 0.5s;
  --glare-x: 50%;
  --glare-y: 50%;
  --glare-opacity: 0;
  position: relative;
  perspective: 1200px;
}

.hero-product-shot {
  position: relative;
  margin: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(247, 187, 72, 0.08) inset;
  transform: rotateY(calc(-4deg + var(--tilt-y))) rotateX(calc(2deg + var(--tilt-x)))
    scale(var(--tilt-scale));
  transform-style: preserve-3d;
  transition: transform var(--tilt-speed) cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.hero-product-shot::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 70px rgba(247, 187, 72, 0.08) inset;
  content: "";
  pointer-events: none;
}

.hero-product-shot::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glare-x) var(--glare-y),
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0) 55%
  );
  opacity: var(--glare-opacity);
  content: "";
  pointer-events: none;
  transition: opacity var(--tilt-speed) ease;
}

.hero-product-shot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 13px;
}

.hero-product-callout {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: -18px;
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 205px;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(53, 45, 49, 0.16);
  border-radius: 14px;
  background: var(--green);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-product-callout:hover,
.hero-product-callout:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38);
}

.hero-product-callout span {
  display: flex;
  flex-direction: column;
}

.hero-product-callout small {
  margin-bottom: 2px;
  color: rgba(53, 45, 49, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-product-callout-logo {
  display: block;
  width: auto;
  height: 22px;
}

.hero-product-callout i {
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green);
  font-size: 16px;
  font-style: normal;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.37);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-list {
  display: flex;
  gap: 42px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}

.trust-list span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-list i {
  color: var(--green);
  font-size: 8px;
  font-style: normal;
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -52px;
}

.section-heading h2,
.approach-copy h2,
.about-copy h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h2 em {
  color: var(--muted);
  font-style: normal;
}

.section-heading > p:last-child {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-5px);
}

.service-card-featured {
  background: var(--white);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 70px;
  place-items: center;
  border-radius: 15px;
  background: var(--ink);
  color: var(--green);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-number {
  position: absolute;
  top: 40px;
  right: 36px;
  color: #9a8d90;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.service-card > p:not(.service-number) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.card-tag {
  position: absolute;
  bottom: 32px;
  left: 36px;
  color: #897d81;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-dark {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 0.65px, transparent 0.65px);
  background-size: 5px 5px;
  mask-image: linear-gradient(90deg, #000, transparent 55%);
}

.approach-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.kicker-green {
  color: var(--green);
}

.approach-copy {
  position: sticky;
  top: 140px;
  align-self: start;
}

.approach-copy h2 {
  margin-bottom: 30px;
}

.approach-copy h2 em {
  color: rgba(255, 255, 255, 0.4);
}

.approach-copy > p:not(.kicker) {
  max-width: 500px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 17px;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  min-height: 190px;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.steps-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.step-number {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.steps-list h3 {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.steps-list p {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.49);
  font-size: 15px;
}

.section-about {
  background: var(--paper-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
  align-items: center;
}

.about-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.about-logo {
  display: block;
  width: min(58%, 220px);
  height: auto;
  margin-bottom: 26px;
}

.about-mark p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 32px;
}

.about-copy .large-copy {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.6;
}

.about-copy > p:not(.kicker):not(.large-copy) {
  color: var(--muted);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 42px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.company-facts div {
  display: flex;
  flex-direction: column;
}

.company-facts dt {
  margin-bottom: 5px;
  color: #897d81;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.contact-section {
  padding: 80px 0;
  background: var(--ink);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 80px;
  align-items: end;
  padding: 70px;
  border-radius: 28px;
  background: var(--green);
}

.contact-card .kicker {
  color: rgba(53, 45, 49, 0.55);
}

.contact-card h2 {
  max-width: 750px;
}

.contact-card h2 em {
  color: rgba(53, 45, 49, 0.46);
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.contact-action p {
  margin: 18px 0 0;
  color: rgba(53, 45, 49, 0.56);
  font-size: 12px;
}

.site-footer {
  padding: 0 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 50px;
  min-height: 110px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-footer {
  margin-right: 20px;
}

.logo-footer img {
  width: 145px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.39);
  font-size: 13px;
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 600;
}

.back-to-top span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-visual {
    --tilt-x: 0deg !important;
    --tilt-y: 0deg !important;
    --tilt-scale: 1 !important;
    --glare-opacity: 0 !important;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

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

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    visibility: hidden;
    opacity: 0;
    background: var(--ink);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a:not(.button) {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.04em;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 74px;
    min-height: auto;
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .hero-copy {
    max-width: 680px;
  }

  h1 {
    max-width: 700px;
  }

  .hero-visual {
    width: min(620px, 95%);
    margin-inline: auto;
  }

  .trust-strip {
    flex-direction: column;
    align-items: start;
    gap: 25px;
    padding: 32px 0;
  }

  .trust-list {
    width: 100%;
    justify-content: space-between;
    gap: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading .kicker {
    margin-bottom: 0;
  }

  .section-heading > p:last-child {
    max-width: 600px;
  }

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

  .service-card {
    min-height: 330px;
  }

  .approach-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .approach-copy {
    position: relative;
    top: auto;
  }

  .about-grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 55px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .logo img {
    width: 108px;
  }

  .hero-inner {
    gap: 60px;
    padding-top: 130px;
    padding-bottom: 82px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-product-shot {
    padding: 5px;
    border-radius: 14px;
    transform: none;
  }

  .hero-product-shot img {
    border-radius: 9px;
  }

  .hero-product-callout {
    right: -6px;
    bottom: -8px;
    gap: 12px;
    min-width: 0;
    padding: 10px 10px 10px 13px;
    border-radius: 11px;
  }

  .hero-product-callout small {
    display: none;
  }

  .hero-product-callout-logo {
    height: 16px;
  }

  .hero-product-callout i {
    flex-basis: 27px;
    height: 27px;
    font-size: 13px;
  }

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

  .section {
    padding: 90px 0;
  }

  .section-heading h2,
  .approach-copy h2,
  .about-copy h2,
  .contact-card h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .service-card {
    min-height: 350px;
    padding: 30px;
  }

  .service-number {
    top: 34px;
    right: 30px;
  }

  .card-tag {
    left: 30px;
  }

  .steps-list li {
    grid-template-columns: 42px 1fr;
    gap: 15px;
  }

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

  .about-mark {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .company-facts {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section {
    padding: 36px 0;
  }

  .contact-card {
    padding: 44px 28px;
  }

  .button-light {
    max-width: 100%;
    font-size: 13px;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 0;
  }

  .logo-footer {
    width: 100%;
  }

  .back-to-top {
    margin-left: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 9px;
  }
}

@media (max-width: 390px) {
  .eyebrow {
    font-size: 10px;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }
}
