:root {
  --green-950: #092a20;
  --green-900: #123b2d;
  --green-800: #18523b;
  --grass: #83db26;
  --grass-deep: #62b915;
  --cream: #f5efdf;
  --cream-deep: #e7ddc4;
  --ink: #14221b;
  --white: #fffdf7;
  --line: rgba(245, 239, 223, 0.24);
  --radius: 14px;
  --shadow: 0 18px 44px rgba(2, 24, 17, 0.22);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--green-950);
  background: var(--grass);
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--grass);
  outline-offset: 4px;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--green-950);
  background: var(--cream);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 64px);
  color: var(--cream);
  background: var(--green-950);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
}

.brand__type {
  display: grid;
  line-height: 0.92;
}

.brand__type strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.33rem;
  letter-spacing: -0.025em;
}

.brand__type span {
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.header-call {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.header-call svg,
.mobile-call > svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 78px;
  color: var(--cream);
  background: var(--green-950);
}

.hero__media {
  position: relative;
  min-height: 42svh;
  overflow: hidden;
  background: var(--green-800);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(9, 42, 32, 0.05) 42%, rgba(9, 42, 32, 0.42) 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 56%;
}

.hero__image-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  padding: 7px 10px;
  color: var(--cream);
  background: rgba(9, 42, 32, 0.82);
  border: 1px solid rgba(245, 239, 223, 0.28);
  border-radius: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 46px 20px 128px;
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: -8px 0 28px;
  color: #d6e7da;
  font-size: 0.94rem;
  font-weight: 600;
}

.location-line svg {
  width: 18px;
  fill: none;
  stroke: var(--grass);
  stroke-width: 1.8;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Archivo Black", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 15vw, 5.85rem);
}

.hero__intro {
  max-width: 36rem;
  margin-bottom: 22px;
  color: #d6e7da;
  font-size: clamp(1.03rem, 2.2vw, 1.18rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 24px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-out);
}

.button svg,
.reputation__link svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  min-width: min(100%, 238px);
  color: var(--green-950);
  background: var(--grass);
  box-shadow: var(--shadow);
}

.button--primary:hover {
  background: #9bea42;
}

.text-link {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
}

.field-line {
  position: absolute;
  z-index: 2;
  right: -20%;
  bottom: -84px;
  width: 128%;
  height: 290px;
  opacity: 0.76;
  pointer-events: none;
}

.field-line path,
.quote-path__arc path {
  fill: none;
  stroke: var(--grass);
  stroke-linecap: round;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.quote-path {
  position: relative;
  display: grid;
  gap: 34px;
  overflow: hidden;
  padding: 80px 20px;
  background: var(--cream);
}

.quote-path h2,
.reputation h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 8vw, 4.9rem);
}

.quote-path__heading {
  max-width: 760px;
}

.quote-path__body {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.quote-path__body p {
  margin-bottom: 28px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.button--dark {
  color: var(--cream);
  background: var(--green-900);
  box-shadow: 0 14px 34px rgba(9, 42, 32, 0.18);
}

.button--dark:hover {
  background: var(--green-800);
}

.quote-path__arc {
  position: absolute;
  right: -38px;
  bottom: -8px;
  width: 230px;
  opacity: 0.54;
}

.reputation {
  display: grid;
  gap: 26px;
  padding: 68px 20px 144px;
  color: var(--cream);
  background: var(--green-800);
}

.reputation__score {
  color: var(--grass);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(6rem, 26vw, 12rem);
  line-height: 0.78;
  letter-spacing: -0.04em;
}

.reputation h2 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 7.4vw, 4.3rem);
}

.reputation__copy p {
  max-width: 34rem;
  margin-bottom: 0;
  color: #d6e7da;
  font-size: 1.05rem;
}

.reviews-list {
  max-width: 44rem;
  margin-top: 42px;
  border-top: 1px solid rgba(245, 239, 223, 0.24);
}

.review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  margin: 0;
  padding: 27px 0;
  border-bottom: 1px solid rgba(245, 239, 223, 0.24);
}

.review blockquote {
  margin: 0;
}

.review blockquote p {
  max-width: 40rem;
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  font-weight: 600;
  line-height: 1.55;
}

.review figcaption {
  display: grid;
  align-content: end;
  gap: 3px;
  min-width: 110px;
  color: #d6e7da;
  font-size: 0.78rem;
  text-align: right;
}

.review figcaption strong {
  color: var(--grass);
  font-size: 0.84rem;
}

.reputation__link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  align-self: end;
  font-weight: 800;
}

.closing {
  position: relative;
  overflow: hidden;
  padding: 88px 20px 112px;
  color: var(--cream);
  background: var(--green-950);
}

.closing__inner {
  position: relative;
  z-index: 2;
}

.closing h2 {
  max-width: 11ch;
  margin-bottom: 24px;
}

.closing p {
  max-width: 33rem;
  margin-bottom: 32px;
  color: #bcd1c4;
  font-size: 1.08rem;
}

.button--cream {
  color: var(--green-950);
  background: var(--cream);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.button--cream:hover {
  background: var(--grass);
}

.closing__logo {
  position: absolute;
  right: -56px;
  bottom: -72px;
  width: min(62vw, 260px);
  height: auto;
  opacity: 0.52;
  filter: saturate(0.72);
  mix-blend-mode: screen;
  pointer-events: none;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 42px 20px 114px;
  color: var(--ink);
  background: var(--cream-deep);
}

.brand--footer {
  width: fit-content;
}

.site-footer p {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer__preview-note {
  max-width: 46rem;
  color: rgba(20, 34, 27, 0.72);
  font-size: 0.78rem;
  line-height: 1.5;
}

.mobile-call {
  position: fixed;
  z-index: 50;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px 18px;
  color: var(--green-950);
  background: var(--grass);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(3, 25, 17, 0.34);
  text-decoration: none;
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
  transition: opacity 200ms ease, transform 300ms var(--ease-out);
}

.mobile-call > svg {
  width: 24px;
}

.mobile-call span {
  display: grid;
  line-height: 1.2;
}

.mobile-call small {
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: 600;
}

.mobile-call.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.motion-ready .field-line path {
  stroke-dasharray: 980;
  stroke-dashoffset: 980;
}

.motion-ready.is-loaded .field-line path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1500ms var(--ease-out) 180ms;
}

@media (min-width: 740px) {
  .site-header {
    min-height: 88px;
  }

  .hero {
    padding-top: 88px;
  }

  .hero__content,
  .quote-path,
  .reputation,
  .closing,
  .site-footer {
    padding-right: clamp(40px, 6vw, 92px);
    padding-left: clamp(40px, 6vw, 92px);
  }

  .quote-path {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: end;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .reputation {
    grid-template-columns: auto minmax(320px, 1fr) auto;
    align-items: start;
    gap: clamp(34px, 6vw, 88px);
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
    align-items: end;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .site-footer__preview-note {
    grid-column: 1 / -1;
    margin-top: 4px;
  }
}

@media (min-width: 960px) {
  .site-header {
    background: linear-gradient(90deg, var(--green-950) 0 51%, rgba(9, 42, 32, 0.82) 51%, rgba(9, 42, 32, 0.32) 100%);
  }

  .hero {
    display: block;
    min-height: 760px;
    padding-top: 88px;
  }

  .hero__media {
    position: absolute;
    inset: 88px 0 0 51%;
    min-height: 0;
  }

  .hero__media::before {
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    width: 22%;
    content: "";
    background: linear-gradient(90deg, var(--green-950), transparent);
  }

  .hero__image-label {
    right: 30px;
    bottom: 28px;
  }

  .hero__content {
    width: 56%;
    min-height: calc(100svh - 88px);
    padding: clamp(64px, 8vh, 104px) clamp(44px, 5vw, 76px) 58px clamp(40px, 6vw, 92px);
  }

  .hero__copy {
    max-width: 680px;
  }

  h1 {
    font-size: clamp(4.1rem, 6.1vw, 5.85rem);
  }

  .field-line {
    right: -8%;
    bottom: 18px;
    width: 104%;
    height: 330px;
  }

  .closing {
    padding-top: 132px;
    padding-bottom: 140px;
  }

  .mobile-call {
    display: none;
  }

  .closing__logo {
    right: clamp(54px, 8vw, 132px);
    bottom: 50%;
    width: clamp(250px, 25vw, 380px);
    opacity: 0.58;
    transform: translateY(50%);
  }
}

@media (max-width: 420px) {
  .header-call span {
    display: none;
  }

  .header-call {
    width: 44px;
    justify-content: center;
  }

  .hero__content {
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(2.9rem, 14.6vw, 4rem);
  }

  .review {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review figcaption {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready .field-line path {
    stroke-dashoffset: 0;
  }
}

@supports (scrollbar-color: auto) {
  html {
    scrollbar-color: var(--grass) var(--green-950);
    scrollbar-width: thin;
  }
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--green-950);
}

::-webkit-scrollbar-thumb {
  background: var(--grass-deep);
  border: 3px solid var(--green-950);
  border-radius: 8px;
}
