@font-face {
  font-family: "Benzin";
  src: url("./assets/fonts/Benzin-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("./assets/fonts/Benzin-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("./assets/fonts/Benzin-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("./assets/fonts/Benzin-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #183428;
  --green-2: #21493a;
  --green-3: #2d5a48;
  --cream: #eee7dd;
  --cream-2: #f7f2ea;
  --ink: #30322d;
  --muted: #8e9487;
  --line: #d6d2ca;
  --accent: #91d83e;
  --accent-2: #c7ff18;
  --white: #ffffff;
  --radius: 8px;
  --shell: 1380px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Benzin", Arial, sans-serif;
  line-height: 1.35;
  overflow-x: hidden;
}

.js .animate-in {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(8px);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out),
    filter 760ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform, filter;
}

.js .animate-in.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.js .fx-title .char {
  display: inline-block;
  color: inherit;
  opacity: 0.16;
  transform: translate3d(0, 0.58em, 0) rotate(1.2deg);
  transition:
    opacity 520ms var(--ease-out),
    transform 620ms var(--ease-out);
  transition-delay: calc(var(--char-index) * 18ms);
  will-change: opacity, transform;
}

.js .fx-title .word {
  display: inline-block;
  white-space: nowrap;
}

.js .fx-title.is-visible .char {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

body,
button,
input {
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: 8px;
}

.header-shell {
  width: min(var(--shell), calc(100% - 48px));
  min-height: 56px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 8px 0 24px;
  color: var(--cream-2);
  background: var(--green);
  border-radius: 0 0 6px 6px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 172px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.96;
}

.nav a:hover {
  color: var(--accent);
}

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 6px;
  color: var(--cream-2);
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream-2);
  background:
    radial-gradient(ellipse at 50% 46%, rgba(63, 122, 94, 0.34), transparent 38%),
    radial-gradient(ellipse at 82% 18%, rgba(199, 255, 24, 0.08), transparent 32%),
    radial-gradient(ellipse at 16% 84%, rgba(238, 231, 221, 0.06), transparent 34%),
    linear-gradient(180deg, #102d22 0%, var(--green) 100%);
}

.hero::before,
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(238, 231, 221, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 231, 221, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(238, 231, 221, 0.08), transparent 34%);
  background-position: center;
  background-size: 72px 72px, 72px 72px, 100% 100%;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0 46%, transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background:
    url("data:image/svg+xml,%3Csvg width='1600' height='1000' viewBox='0 0 1600 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23eee7dd' stroke-linecap='round'%3E%3Cpath d='M-80 728 C173 664 339 727 536 612 C760 481 834 338 1070 278 C1262 230 1431 230 1685 108' stroke-width='2' opacity='.22'/%3E%3Cpath d='M-110 792 C177 759 348 806 575 679 C808 548 846 439 1086 389 C1293 346 1449 336 1668 232' stroke-width='2' opacity='.16'/%3E%3Cpath d='M-88 188 C164 250 349 188 565 279 C779 370 870 428 1100 394 C1306 363 1432 300 1678 302' stroke-width='1.5' opacity='.1'/%3E%3C/g%3E%3Ccircle cx='805' cy='501' r='268' fill='none' stroke='%23c7ff18' stroke-width='1' opacity='.08'/%3E%3Ccircle cx='805' cy='501' r='386' fill='none' stroke='%23eee7dd' stroke-width='1' opacity='.06'/%3E%3C/svg%3E") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 34px;
  font-size: 16px;
  color: var(--cream-2);
}

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

h1 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
}

h1 .accent-line {
  color: var(--accent);
}

h1 .hero-dash {
  color: var(--cream-2);
}

mark {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 9px 5px;
  color: var(--green);
  background: transparent;
  white-space: nowrap;
}

.hero-copy {
  max-width: 640px;
  margin: 24px auto 0;
  color: rgba(247, 242, 234, 0.74);
  font-size: 16px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 54px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 38px;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 14px 42px rgba(199, 255, 24, 0.2);
}

.btn-secondary:hover,
.header-cta:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-primary {
  color: var(--green);
  background: var(--accent-2);
}

.btn-secondary {
  color: var(--cream-2);
  background: rgba(255, 255, 255, 0.1);
}

.hero-benefits {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  border-top: 1px solid rgba(238, 231, 221, 0.22);
}

.benefit-line {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--cream);
  font-size: 14px;
}

.benefit-line span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 3px;
  background: var(--accent-2);
  vertical-align: -1px;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 88px;
}

.light-section,
.services,
.packages,
.faq {
  background: var(--cream-2);
}

.section-tag {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-tag.light {
  color: var(--cream);
}

.split-heading {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 46px;
}

h2 {
  max-width: 850px;
  margin: 0;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 500;
}

h2 mark {
  transform: rotate(-0.8deg) translateY(2px);
}

mark::before {
  content: "";
  position: absolute;
  inset: 10% -4% 4% -4%;
  z-index: -1;
  background: #19d995;
  clip-path: polygon(0 18%, 98% 0, 100% 78%, 13% 100%, 0 86%);
}

.split-heading:nth-of-type(even) mark::before,
.faq mark::before {
  clip-path: polygon(2% 4%, 100% 18%, 94% 100%, 0 84%);
}

.proof-grid,
.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid article,
.service-grid article,
.package-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.proof-grid article:hover,
.service-grid article:hover,
.package-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 52, 40, 0.3);
  box-shadow: 0 20px 54px rgba(24, 52, 40, 0.08);
}

.proof-grid strong,
.service-grid span,
.package-grid span,
.problem-list span,
.product-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.proof-grid h3,
.service-grid h3,
.package-grid h3,
.problem-list h3,
.product-list h3 {
  margin: 54px 0 16px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 500;
}

.proof-grid p,
.service-grid p,
.package-grid p,
.problem-list p,
.product-list p,
.case-content p,
.faq-list p,
.contact p,
.lead-form p {
  margin-bottom: 0;
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--cream-2);
  background: var(--green);
}

.dark-section > * {
  position: relative;
  z-index: 2;
}

.problems-grid,
.products-layout,
.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 80px;
}

.dark-section h2 {
  color: var(--cream-2);
}

.problem-list,
.product-list,
.faq-list {
  display: grid;
  gap: 0;
}

.problem-list article,
.product-list article,
.faq-list details {
  padding: 28px 0;
  border-top: 1px solid rgba(238, 231, 221, 0.22);
}

.problem-list h3,
.product-list h3 {
  margin-top: 16px;
  color: var(--cream-2);
}

.problem-list p,
.product-list p {
  color: rgba(247, 242, 234, 0.72);
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  min-height: 330px;
}

.cases {
  background: var(--cream);
}

.case-grid {
  display: grid;
  gap: 14px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 16px;
  align-items: stretch;
  transition: transform 280ms ease;
}

.case-card:hover {
  transform: translateX(4px);
}

.case-image {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 360ms ease;
}

.case-image:hover img {
  transform: scale(1.03);
}

.case-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
}

.case-content span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.case-content h3 {
  margin: 30px 0 18px;
  font-size: 46px;
  line-height: 1;
  font-weight: 600;
}

.case-link {
  width: fit-content;
  margin-top: 28px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-link::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-left: 12px;
  background: var(--accent-2);
  vertical-align: 4px;
  transition: width 220ms ease;
}

.case-link:hover::after {
  width: 54px;
}

.case-page {
  background: var(--cream-2);
}

.case-hero {
  position: relative;
  overflow: hidden;
  padding: 142px 0 86px;
  color: var(--cream-2);
  background:
    radial-gradient(ellipse at 78% 14%, rgba(199, 255, 24, 0.08), transparent 30%),
    radial-gradient(ellipse at 34% 54%, rgba(63, 122, 94, 0.28), transparent 38%),
    linear-gradient(180deg, #102d22 0%, var(--green) 100%);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 380px;
  gap: 54px;
  align-items: end;
}

.case-back {
  display: inline-flex;
  margin-bottom: 48px;
  color: rgba(247, 242, 234, 0.76);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-hero h1 {
  max-width: 100%;
  margin: 0;
  text-align: left;
  font-size: clamp(48px, 4vw, 72px);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.case-lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(247, 242, 234, 0.72);
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1.35;
}

.case-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.case-meta-card {
  display: grid;
  gap: 0;
  border: 1px solid rgba(238, 231, 221, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
}

.case-meta-card div {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-top: 1px solid rgba(238, 231, 221, 0.16);
}

.case-meta-card div:first-child {
  border-top: 0;
}

.case-meta-card span {
  color: rgba(238, 231, 221, 0.58);
  font-size: 11px;
  text-transform: uppercase;
}

.case-meta-card strong {
  color: var(--cream-2);
  font-size: 16px;
  line-height: 1.22;
}

.case-hero-media {
  position: relative;
  z-index: 2;
  width: min(var(--shell), calc(100% - 48px));
  height: min(56vw, 690px);
  min-height: 420px;
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(238, 231, 221, 0.2);
  border-radius: var(--radius);
  background: var(--green);
}

.case-hero-media img,
.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-section {
  padding: 96px 0;
  scroll-margin-top: 88px;
}

.case-section.dark-section {
  background:
    radial-gradient(ellipse at 16% 20%, rgba(199, 255, 24, 0.07), transparent 28%),
    linear-gradient(180deg, var(--green) 0%, #102d22 100%);
}

.case-intro-grid,
.case-work-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 74px;
  align-items: start;
}

.case-text {
  display: grid;
  gap: 20px;
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.42;
}

.case-text p {
  margin: 0;
}

.case-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-fact {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.case-fact strong {
  color: var(--green);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.95;
  font-weight: 800;
}

.case-fact span {
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
}

.case-gallery figure {
  min-height: 430px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  overflow: visible;
  border-radius: var(--radius);
  background: transparent;
}

.case-gallery figure:nth-child(2) {
  min-height: 250px;
}

.case-gallery figure:nth-child(3) {
  min-height: 250px;
}

.case-gallery figcaption {
  padding: 14px 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.case-gallery img {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
}

.case-work-list {
  display: grid;
  gap: 0;
}

.case-work-list article {
  padding: 26px 0;
  border-top: 1px solid rgba(238, 231, 221, 0.22);
}

.case-work-list span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
}

.case-work-list h3 {
  margin: 14px 0 12px;
  color: var(--cream-2);
  font-size: 25px;
  font-weight: 500;
}

.case-work-list p {
  margin: 0;
  color: rgba(247, 242, 234, 0.72);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.36;
}

.case-next {
  background: var(--cream);
}

.case-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-next a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
}

.case-next span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.case-next strong {
  color: var(--green);
  font-size: 24px;
  line-height: 1.1;
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.case-story-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.case-story-card h3 {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 600;
}

.case-story-card p,
.case-story-card li,
.case-result-list li,
.case-cta-panel p {
  color: #62675d;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.42;
}

.case-story-card p {
  margin: 0 0 16px;
}

.case-story-card ul,
.case-result-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-story-card li,
.case-result-list li {
  position: relative;
  padding-left: 22px;
}

.case-story-card li::before,
.case-result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent-2);
}

.case-result-panel,
.case-cta-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.case-result-panel h2,
.case-cta-panel h2 {
  max-width: 760px;
  margin-bottom: 26px;
}

.case-result-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
}

.case-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  color: var(--cream-2);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(199, 255, 24, 0.12), transparent 30%),
    linear-gradient(180deg, var(--green) 0%, #102d22 100%);
  border-color: rgba(238, 231, 221, 0.16);
}

.case-cta-panel h2 {
  color: var(--cream-2);
}

.case-cta-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(247, 242, 234, 0.72);
}

.package-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.package-featured {
  color: var(--cream-2);
  background: var(--green) !important;
  border-color: var(--green) !important;
}

.package-featured p {
  color: rgba(247, 242, 234, 0.72);
}

.package-grid a {
  margin-top: auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.package-featured a {
  color: var(--accent-2);
}

summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
}

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

.faq-list details {
  border-color: var(--line);
}

.faq-list p {
  padding-top: 14px;
}

.contact {
  background:
    radial-gradient(ellipse at 26% 20%, rgba(199, 255, 24, 0.07), transparent 30%),
    radial-gradient(ellipse at 82% 70%, rgba(238, 231, 221, 0.06), transparent 32%),
    linear-gradient(180deg, var(--green) 0%, #102d22 100%);
  padding-bottom: 118px;
}

.contact-shape {
  display: none;
}

.contact h2 {
  margin-bottom: 28px;
}

.contact p {
  max-width: 620px;
  color: rgba(247, 242, 234, 0.72);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--accent-2);
  font-size: 15px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(238, 231, 221, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--cream);
  font-size: 13px;
  text-transform: uppercase;
}

.lead-form input {
  min-height: 56px;
  border: 1px solid rgba(238, 231, 221, 0.2);
  border-radius: 6px;
  padding: 0 16px;
  color: var(--cream-2);
  background: rgba(0, 0, 0, 0.16);
  outline: none;
}

.lead-form input:focus {
  border-color: var(--accent-2);
}

.lead-form p {
  color: rgba(247, 242, 234, 0.58);
  font-size: 13px;
}

.footer {
  color: var(--cream-2);
  background: var(--green);
  border-top: 1px solid rgba(238, 231, 221, 0.18);
}

.footer-inner {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding: 42px 0 28px;
}

.footer-logo {
  width: min(560px, 100%);
  height: auto;
}

.footer-nav {
  display: grid;
  gap: 12px;
  font-size: 13px;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .animate-in,
  .fx-title .char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

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

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .mobile-menu {
    width: min(var(--shell), calc(100% - 48px));
    margin: 8px auto 0;
    padding: 18px;
    border-radius: 8px;
    color: var(--cream-2);
    background: rgba(24, 52, 40, 0.98);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 16px;
  }

  h1 {
    font-size: 48px;
    text-align: left;
  }

  .hero-inner {
    text-align: left;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .benefit-line {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 16px 0;
  }

  .split-heading,
  .problems-grid,
  .products-layout,
  .contact-layout,
  .faq-layout,
  .case-hero-grid,
  .case-intro-grid,
  .case-work-grid,
  .case-cta-panel,
  .case-card {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .proof-grid,
  .case-fact-grid,
  .case-next-grid,
  .case-story-grid,
  .case-result-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-hero {
    padding-top: 124px;
  }

  .case-hero-media {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .shell,
  .header-shell,
  .mobile-menu {
    width: calc(100% - 32px);
  }

  .header-shell {
    min-height: 64px;
    padding-left: 16px;
  }

  .brand img {
    width: 154px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 74px;
    align-items: start;
  }

  .hero-inner {
    padding-top: 38px;
  }

  .hero-kicker {
    max-width: 330px;
    margin-bottom: 24px;
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.18;
  }

  h1 .hero-dash {
    display: none;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    margin-top: 36px;
  }

  .btn {
    width: 100%;
  }

  .hero-benefits {
    position: relative;
    margin-top: 22px;
  }

  .benefit-line {
    display: grid;
    min-height: auto;
  }

  .section {
    padding: 70px 0;
  }

  .split-heading {
    gap: 12px;
  }

  h2 {
    font-size: 34px;
    line-height: 1.14;
  }

  h2 mark {
    white-space: normal;
  }

  mark {
    max-width: 100%;
    padding-right: 4px;
    padding-left: 4px;
  }

  mark::before {
    right: 0;
    left: 0;
  }

  .js h2.fx-title .word,
  .js .case-hero h1.fx-title .word {
    white-space: normal;
  }

  .proof-grid,
  .service-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .service-grid article,
  .package-grid article {
    min-height: auto;
    padding: 22px;
  }

  .proof-grid h3,
  .service-grid h3,
  .package-grid h3 {
    margin-top: 34px;
  }

  .problems-grid,
  .products-layout,
  .contact-layout,
  .faq-layout {
    gap: 32px;
  }

  .case-image {
    min-height: 245px;
  }

  .case-content {
    padding: 24px;
  }

  .case-content h3 {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .case-card > * {
    min-width: 0;
  }

  .case-hero {
    padding: 108px 0 58px;
  }

  .case-back {
    margin-bottom: 30px;
  }

  .case-hero h1 {
    font-size: clamp(30px, 9.5vw, 38px);
    line-height: 1.02;
  }

  .case-hero h1 .word {
    white-space: normal;
  }

  .case-lead {
    font-size: 18px;
  }

  .case-meta-card div {
    padding: 18px;
  }

  .case-meta-card strong,
  .section-tag {
    overflow-wrap: anywhere;
  }

  .case-meta-card strong {
    font-size: 14px;
  }

  .case-hero-media {
    width: calc(100% - 32px);
    height: 62vw;
    min-height: 260px;
    margin-top: -22px;
  }

  .case-section {
    padding: 70px 0;
  }

  .case-text {
    font-size: 18px;
  }

  .case-fact-grid,
  .case-gallery,
  .case-story-grid,
  .case-result-list,
  .case-next-grid {
    grid-template-columns: 1fr;
  }

  .case-fact {
    min-height: 180px;
    padding: 22px;
  }

  .case-gallery figure,
  .case-gallery figure:nth-child(2),
  .case-gallery figure:nth-child(3) {
    min-height: 250px;
  }

  .case-story-card,
  .case-result-panel,
  .case-cta-panel {
    padding: 22px;
  }

  .case-story-card {
    min-height: auto;
  }

  .case-story-card h3 {
    font-size: 23px;
  }

  .case-story-card p,
  .case-story-card li,
  .case-result-list li,
  .case-cta-panel p {
    font-size: 17px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    min-height: 220px;
  }

  .footer-logo {
    width: 280px;
  }
}
