:root {
  --green: #00c776;
  --green-bright: #22e696;
  --green-ink: #007c49;
  --forest: #062f27;
  --forest-mid: #0a4438;
  --ink: #111814;
  --ink-soft: #435049;
  --bone: #f4f1e9;
  --paper: #fbfaf6;
  --sand: #d8cfbf;
  --line: rgba(17, 24, 20, 0.16);
  --white-line: rgba(255, 255, 255, 0.18);
  --display: "Bodoni Moda", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  color: var(--ink);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--green);
  color: var(--forest);
}

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

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

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

img,
svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--green);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1001;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 28px;
  color: var(--forest-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--green);
  content: "";
}

.eyebrow-light {
  color: var(--green);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 0.98;
}

h2 em,
h1 em {
  color: var(--green-ink);
  font-weight: 400;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    height 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 12px 40px rgba(8, 28, 23, 0.07);
  color: var(--ink);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.brand {
  width: fit-content;
  display: inline-flex;
  gap: 11px;
  align-items: center;
  line-height: 1;
}

.brand-mark {
  width: 44px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: #fff;
  transition: border-color 0.35s ease;
}

.is-scrolled .brand-mark {
  border-color: var(--line);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.brand-name b {
  font-weight: 700;
}

.brand-name > span,
.mini-brand > span {
  color: var(--green);
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.header-cta span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--forest);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.header-cta:hover span {
  background: var(--green-bright);
  transform: translate(2px, -2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  max-height: 1040px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    url("assets/audit-hotelier-hero.jpg") center center / cover no-repeat;
  transform: scale(1.025);
  animation: hero-in 1.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 24, 20, 0.98) 0%, rgba(3, 24, 20, 0.93) 26%, rgba(3, 24, 20, 0.42) 60%, rgba(3, 24, 20, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 17, 14, 0.6) 0%, transparent 40%);
}

.hero-grid {
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: calc(100vw / 8) 100%, calc(100vw / 8) 100%;
  mask-image: linear-gradient(90deg, #000 0%, transparent 66%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 132px;
}

.hero-eyebrow {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(4.3rem, 7vw, 7rem);
  line-height: 0.91;
}

.hero h1 em,
.process h2 em,
.contact h2 em {
  color: var(--green);
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  font-size: 0.58em;
  font-style: italic;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 650px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 38px;
  align-items: center;
  margin-top: 42px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 8px 9px 8px 24px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.button-primary {
  background: var(--green);
  color: var(--forest);
}

.button-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
}

.button-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 47, 39, 0.25);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition:
    border-color 0.25s ease,
    gap 0.25s ease;
}

.text-link:hover {
  gap: 32px;
  border-color: var(--green);
}

.hero-rail {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  min-height: 112px;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 28, 23, 0.78);
  backdrop-filter: blur(18px);
}

.hero-rail-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
}

.hero-rail-grid > div {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-rail-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.rail-intro {
  gap: 13px;
  padding: 24px 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 199, 118, 0.6);
  animation: pulse 2.2s infinite;
}

.rail-item {
  gap: 12px;
  padding: 24px 26px;
}

.rail-item strong {
  font-family: var(--display);
  color: var(--green);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.rail-item span {
  max-width: 95px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.intro {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(17, 24, 20, 0.07) 50%, transparent calc(50% + 1px)),
    var(--paper);
}

.intro-heading {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 80px;
  align-items: start;
}

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

.intro-heading h2 em {
  display: block;
  color: var(--forest-mid);
}

.intro-copy {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin: 90px 0 100px 30%;
}

.intro-lead {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.5;
}

.intro-note {
  display: grid;
  grid-template-columns: 1px 1fr;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 14px;
}

.intro-note p {
  margin-bottom: 0;
}

.note-line {
  background: var(--green);
}

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.scope {
  overflow: hidden;
  background: var(--bone);
}

.scope::before {
  position: absolute;
  top: -300px;
  right: -280px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(0, 199, 118, 0.18);
  border-radius: 50%;
  content: "";
}

.section-kicker-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 76px;
}

.section-kicker-row h2 {
  font-size: clamp(3.2rem, 5.2vw, 4.8rem);
}

.section-aside {
  max-width: 420px;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.scope-card {
  position: relative;
  min-height: 460px;
  padding: 46px 50px 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.scope-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.scope-card:hover {
  background: var(--forest);
  color: #fff;
}

.scope-card:hover::after {
  transform: scaleX(1);
}

.scope-card:hover p,
.scope-card:hover li,
.scope-card:hover .scope-topline span {
  color: rgba(255, 255, 255, 0.68);
}

.scope-card:hover svg {
  stroke: var(--green);
}

.scope-topline {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 72px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.scope-topline svg {
  width: 43px;
  fill: none;
  stroke: var(--forest-mid);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.3;
  transition: stroke 0.35s ease;
}

.scope-card h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.scope-card > p {
  max-width: 460px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: 14px;
}

.scope-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-card li {
  padding: 7px 10px;
  border: 1px solid currentColor;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.2;
}

.process {
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.process::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}

.process-orbit {
  position: absolute;
  border: 1px solid rgba(0, 199, 118, 0.17);
  border-radius: 50%;
}

.process-orbit-one {
  top: 10%;
  right: -240px;
  width: 660px;
  height: 660px;
}

.process-orbit-two {
  top: 28%;
  right: -90px;
  width: 360px;
  height: 360px;
}

.process-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.process-intro {
  position: sticky;
  top: 125px;
  height: fit-content;
}

.process-intro h2 {
  margin-bottom: 38px;
  font-size: clamp(3.2rem, 5.2vw, 5rem);
}

.process-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

.text-link-light {
  color: var(--green);
  border-color: rgba(0, 199, 118, 0.4);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--white-line);
  list-style: none;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  min-height: 190px;
  padding: 38px 0;
  border-bottom: 1px solid var(--white-line);
}

.step-time {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.process-step p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.step-time {
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.46);
  text-align: right;
}

.report {
  background: var(--paper);
}

.report-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 110px;
  align-items: center;
}

.report-preview {
  position: relative;
  padding: 60px 0 30px 50px;
}

.report-preview::before {
  position: absolute;
  inset: 0 14% 13% 0;
  background: var(--green);
  content: "";
}

.report-preview::after {
  position: absolute;
  top: 32px;
  left: 19px;
  width: 90px;
  height: 90px;
  border-top: 1px solid var(--forest);
  border-left: 1px solid var(--forest);
  content: "";
}

.report-paper {
  position: relative;
  z-index: 2;
  min-height: 645px;
  padding: 34px 36px 30px;
  background: #fff;
  box-shadow: 0 40px 90px rgba(18, 38, 30, 0.2);
  transform: rotate(-1.1deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.report-preview:hover .report-paper {
  transform: rotate(0deg) translateY(-7px);
}

.paper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  color: #829087;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-brand {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: -0.04em;
  text-transform: none;
}

.paper-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 33px 0;
}

.paper-title-row > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.paper-title-row > div:first-child span,
.paper-priorities > span {
  color: #839087;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.paper-title-row > div:first-child strong {
  max-width: 270px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.score-ring {
  width: 84px;
  height: 84px;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  align-items: baseline;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 78%, #e8ebe8 78%);
  box-shadow: inset 0 0 0 8px white;
}

.score-ring span {
  font-family: var(--display);
  font-size: 24px;
}

.score-ring small {
  color: #718078;
  font-size: 7px;
}

.score-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.score-bars > div {
  display: grid;
  grid-template-columns: 112px 1fr 22px;
  gap: 14px;
  align-items: center;
  color: #647168;
  font-size: 7px;
  font-weight: 600;
}

.score-bars i {
  height: 4px;
  overflow: hidden;
  background: #e8ebe8;
}

.score-bars i::before {
  width: var(--score);
  height: 100%;
  display: block;
  background: var(--green);
  content: "";
}

.score-bars b {
  color: var(--ink);
  font-size: 8px;
}

.paper-priorities {
  padding-top: 26px;
}

.paper-priorities > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.paper-priorities p,
.paper-priorities b {
  margin: 0;
  font-size: 7px;
}

.paper-priorities b {
  color: var(--forest-mid);
  font-weight: 700;
}

.report-caption {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  max-width: 335px;
  margin: 28px 0 0 70px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.report-caption p {
  margin: 0;
}

.report-content h2 {
  margin-bottom: 35px;
  font-size: clamp(3.3rem, 5vw, 4.8rem);
}

.report-lead {
  max-width: 540px;
  margin-bottom: 46px;
  color: var(--ink-soft);
  font-size: 14px;
}

.deliverables {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.deliverables li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.deliverables h3 {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.deliverables p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.fit {
  background: var(--bone);
}

.fit-heading-row {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 90px;
}

.fit-heading-row h2 {
  font-size: clamp(3.3rem, 5.6vw, 5.2rem);
}

.fit-heading-row > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.fit-list article {
  min-height: 300px;
  padding: 31px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fit-list article::before {
  width: 28px;
  height: 1px;
  display: block;
  margin-bottom: 75px;
  background: var(--green);
  content: "";
}

.fit-list h3 {
  margin-bottom: 17px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.fit-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 120px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.faq-intro h2 {
  margin-bottom: 34px;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
}

.accordion summary i::before,
.accordion summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.accordion summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary i {
  background: var(--green);
  border-color: var(--green);
}

.accordion details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details > p {
  max-width: 640px;
  margin: -8px 60px 30px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.contact {
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.contact::after {
  position: absolute;
  right: -240px;
  bottom: -380px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(0, 199, 118, 0.2);
  border-radius: 50%;
  content: "";
}

.contact-gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 80px 80px;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 130px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 38px;
  color: #fff;
  font-size: clamp(3.5rem, 5.5vw, 5rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 14px;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 450px;
  padding: 18px 0;
  border-bottom: 1px solid var(--white-line);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.contact-email span {
  font-size: 18px;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

.contact-trust span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding: 46px;
  border: 1px solid var(--white-line);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label:not(.consent) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span:first-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  outline: 0;
  padding: 8px 0 12px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 5px) 50%,
    100% 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form select option {
  background: var(--forest);
  color: #fff;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.consent span {
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.6;
  text-transform: none !important;
}

.consent a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 3px;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.66;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: -12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  text-align: center;
}

.form-status {
  display: none;
  margin: -5px 0 0;
  border-left: 2px solid var(--green);
  padding-left: 12px;
  color: var(--green);
  font-size: 12px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-left-color: #ff9d8f;
  color: #ffd2cb;
}

.form-status.is-success {
  border-left-color: var(--green);
  color: var(--green);
}

.site-footer {
  background: #021b16;
  color: #fff;
}

.footer-main {
  min-height: 185px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 60px;
  align-items: center;
}

.brand-footer .brand-mark {
  border-color: var(--white-line);
}

.footer-main > p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-up {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--white-line);
  color: var(--green);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.footer-up:hover {
  background: var(--green);
  color: var(--forest);
}

.footer-bottom {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom > div {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.footer-credit {
  justify-self: end;
  text-align: right;
  transition: color 0.2s ease;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from {
    opacity: 0.5;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 199, 118, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(0, 199, 118, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 199, 118, 0);
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 1040px);
  }

  .desktop-nav {
    gap: 22px;
  }

  .header-inner {
    grid-template-columns: 0.9fr auto 0.9fr;
  }

  .hero {
    min-height: 820px;
  }

  .hero h1 {
    max-width: 740px;
    font-size: clamp(4rem, 7.7vw, 6.2rem);
  }

  .hero-rail-grid {
    grid-template-columns: 1.35fr repeat(3, 1fr);
  }

  .rail-item {
    padding-inline: 18px;
  }

  .intro-heading {
    grid-template-columns: 0.5fr 2fr;
    gap: 35px;
  }

  .intro-copy {
    margin-left: 20%;
  }

  .process-shell,
  .report-grid,
  .faq-grid,
  .contact-grid {
    gap: 65px;
  }

  .report-preview {
    padding-left: 25px;
  }

  .fit-heading-row {
    gap: 60px;
  }

  .fit-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  .section {
    padding: 90px 0;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .is-scrolled .menu-toggle {
    border-color: var(--line);
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 11px;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

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

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

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

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

  .mobile-menu {
    position: fixed;
    inset: 70px 0 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 45px 20px;
    background: var(--forest);
    color: #fff;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--white-line);
    font-family: var(--display);
    font-size: 28px;
  }

  .mobile-menu .mobile-menu-cta {
    margin-top: auto;
    border: 0;
    padding: 18px 20px;
    background: var(--green);
    color: var(--forest);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
  }

  .hero {
    min-height: 820px;
    height: 100svh;
    max-height: none;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 24, 20, 0.94) 0%, rgba(3, 24, 20, 0.69) 72%, rgba(3, 24, 20, 0.45) 100%),
      linear-gradient(0deg, rgba(2, 17, 14, 0.8) 0%, transparent 55%);
  }

  .hero-content {
    padding-bottom: 130px;
  }

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

  .hero-lead {
    max-width: 560px;
  }

  .hero-rail {
    min-height: 92px;
  }

  .hero-rail-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rail-intro {
    display: none !important;
  }

  .rail-item {
    justify-content: center;
  }

  .intro-heading,
  .section-kicker-row,
  .fit-heading-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-heading .eyebrow {
    margin-bottom: 0;
  }

  .intro-copy {
    grid-template-columns: 1fr;
    gap: 38px;
    margin: 62px 0 70px 15%;
  }

  .signal-strip {
    flex-wrap: wrap;
    gap: 22px;
    justify-content: flex-start;
  }

  .signal-strip i {
    margin: 0 6px;
  }

  .scope-card {
    padding: 38px 34px;
  }

  .process-shell,
  .report-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .faq-intro {
    position: relative;
    top: auto;
  }

  .report-preview {
    width: min(100%, 610px);
    margin-inline: auto;
    order: 2;
  }

  .report-content {
    order: 1;
  }

  .fit-heading-row > p {
    max-width: 550px;
  }

  .contact-copy {
    max-width: 620px;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .section {
    padding: 76px 0;
  }

  .brand-mark {
    width: 40px;
    height: 34px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 112px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .hero h1 span {
    margin-top: 8px;
    font-size: 0.52em;
    line-height: 1.04;
  }

  .hero-lead {
    margin-top: 27px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-eyebrow {
    margin-bottom: 22px;
  }

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

  .button {
    width: 100%;
  }

  .hero-rail {
    min-height: 82px;
  }

  .hero-rail-grid {
    width: 100%;
  }

  .rail-item {
    flex-direction: column;
    gap: 3px;
    padding: 12px 5px;
    text-align: center;
  }

  .rail-item strong {
    font-size: 22px;
  }

  .rail-item span {
    max-width: 82px;
    font-size: 8px;
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .intro {
    background: var(--paper);
  }

  .intro-heading {
    gap: 25px;
  }

  .intro-copy {
    margin: 48px 0 55px;
  }

  .intro-lead {
    font-size: 22px;
  }

  .signal-strip {
    display: grid;
    grid-template-columns: 1fr 7px 1fr;
    row-gap: 18px;
    font-size: 9px;
  }

  .signal-strip i:nth-of-type(2) {
    display: none;
  }

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

  .scope-card {
    min-height: 0;
    padding: 31px 26px 35px;
  }

  .scope-topline {
    margin-bottom: 50px;
  }

  .scope-card h3 {
    font-size: 30px;
  }

  .process-shell,
  .report-grid,
  .faq-grid,
  .contact-grid {
    gap: 55px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .step-time {
    display: none;
  }

  .process-step h3 {
    font-size: 26px;
  }

  .report-preview {
    padding: 37px 0 18px 12px;
  }

  .report-preview::before {
    inset: 0 7% 9% 0;
  }

  .report-paper {
    min-height: 525px;
    padding: 24px 19px 24px;
  }

  .paper-header {
    padding-bottom: 18px;
  }

  .paper-title-row {
    padding: 23px 0;
  }

  .paper-title-row > div:first-child strong {
    font-size: 18px;
  }

  .score-ring {
    width: 68px;
    height: 68px;
  }

  .score-ring span {
    font-size: 20px;
  }

  .score-bars {
    gap: 14px;
    padding: 20px 0;
  }

  .score-bars > div {
    grid-template-columns: 88px 1fr 18px;
    gap: 8px;
    font-size: 6px;
  }

  .paper-priorities b {
    display: none;
  }

  .report-caption {
    margin-left: 30px;
  }

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

  .fit-list article {
    min-height: 250px;
  }

  .fit-list article::before {
    margin-bottom: 54px;
  }

  .accordion summary {
    min-height: 86px;
    font-size: 20px;
  }

  .contact-form {
    gap: 24px;
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-trust {
    gap: 8px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding: 46px 0;
  }

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .footer-bottom > div {
    justify-content: flex-end;
  }

  .footer-credit {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 8px;
    text-align: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
