:root {
  --black: #0a0a0a;
  --near-black: #050505;
  --dark-line: #232323;
  --white: #ffffff;
  --muted: #5d5d5d;
  --muted-2: #a5a5a5;
  --line: #e6e6e6;
  --soft: #f3f3f3;
  --orange: #f2500d;
  --container: 1360px;
  --side: clamp(24px, 5vw, 76px);
  --heading: "Anton", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

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

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

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

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

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

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

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--muted);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(var(--container), calc(100% - (var(--side) * 2)));
  margin-inline: auto;
}

.narrow {
  max-width: 1260px;
}

.section {
  padding: 118px 0;
}

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

h1,
h2,
h3,
.stats-label,
.button,
.link-button,
.footer-wordmark,
.stat strong {
  font-family: var(--heading);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  color: var(--black);
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.03;
}

h3 {
  color: var(--black);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.12;
}

.dark-shell {
  color: var(--white);
  background: var(--near-black);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #181818;
  background: var(--near-black);
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 88px;
  gap: 28px;
}

.brand {
  width: clamp(144px, 15vw, 184px);
  height: 52px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  color: #d5d5d5;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--white);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f4f4f4;
  font-size: 13px;
  font-weight: 700;
}

.cart-mark {
  width: 8px;
  height: 8px;
  border: 0;
  background: var(--orange);
  display: inline-block;
  position: relative;
}

.cart-mark::before {
  content: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--dark-line);
  background: transparent;
  appearance: none;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero-section {
  padding: 54px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 28px;
  align-items: stretch;
}

.hero-photo-wrap,
.hero-panel {
  min-height: 690px;
  border: 1px solid #161616;
  background: #0c0c0c;
}

.hero-photo-wrap {
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 44%;
}

.hero-panel {
  position: relative;
  padding: clamp(42px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 3px solid var(--orange);
  opacity: 0.95;
  pointer-events: none;
}

.hero-panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.intro-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  color: #ededed;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 500;
}

.hero-mini-logo {
  width: clamp(52px, 5vw, 72px);
  height: auto;
  flex: 0 0 auto;
}

.hand-icon {
  width: 27px;
  height: 27px;
  border: 2px solid var(--orange);
  border-radius: 50% 50% 46% 46%;
  display: inline-block;
  position: relative;
}

.hand-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 5px;
  width: 10px;
  height: 13px;
  border-right: 2px solid var(--orange);
  transform: rotate(-25deg);
}

.hero-panel h1 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(76px, 8.2vw, 138px);
  line-height: 0.86;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-top: 28px;
  color: #cfcfcf;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
  color: #f2f2f2;
  font-size: 16px;
}

.hero-meta p,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-meta p::before,
.eyebrow span,
.accordion-list summary::before,
.footer h3::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--orange);
  display: inline-block;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  color: #d9d9d9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-proof span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding-left: 13px;
  border-left: 3px solid var(--orange);
}

.button,
.link-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 17px 24px;
  border: 1px solid currentColor;
  font-size: 16px;
  line-height: 1;
}

.button span {
  font-family: var(--body);
  line-height: 1;
}

.button-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-outline-dark {
  color: var(--white);
  background: transparent;
  border-color: #343434;
}

.button-outline-light,
.button-ghost {
  color: var(--black);
  background: transparent;
  border-color: var(--line);
}

.button:hover,
.link-button:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.client-row {
  width: 100%;
  margin-top: 66px;
  border-top: 1px solid #171717;
  border-bottom: 1px solid #171717;
  overflow: hidden;
}

.client-track {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 5vw, 78px);
  color: #5d5d5d;
  font-size: 21px;
  font-weight: 800;
}

.client-track span {
  position: relative;
  white-space: nowrap;
}

.client-track span::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: -5px;
  border: 2px solid currentColor;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.about-section {
  padding-bottom: 88px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(70px, 8vw, 136px);
  align-items: start;
}

.about-left h2 {
  max-width: 555px;
}

.social-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 60px;
  color: var(--black);
  font-weight: 700;
}

.social-strip p {
  margin-right: 10px;
  color: var(--muted);
  font-weight: 600;
}

.social-strip a {
  width: auto;
  min-width: 52px;
  height: 42px;
  padding: 0 12px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.social-strip a:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.about-copy h3 {
  max-width: 680px;
  margin-bottom: 26px;
}

.about-copy p {
  max-width: 680px;
  margin-bottom: 36px;
  color: #5d5d5d;
  font-size: 18px;
}

.stats-section {
  padding: 6px 0 172px;
}

.stats-label {
  margin-bottom: 25px;
  color: var(--black);
  font-size: 17px;
}

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

.stat {
  min-height: 210px;
  padding: 42px 36px 38px;
  border-right: 1px solid var(--line);
}

.stat strong {
  display: block;
  margin-bottom: 22px;
  color: var(--black);
  font-size: clamp(46px, 4.6vw, 78px);
  line-height: 0.95;
}

.stat strong span {
  color: inherit;
  font-size: 0.9em;
}

.stat p {
  max-width: 285px;
  color: #686868;
}

.video-section {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: clamp(480px, 68vw, 920px);
  overflow: hidden;
  background: #111;
}

.work-photo-frame {
  width: min(100%, 1320px);
  height: 100%;
  overflow: hidden;
  transform: scale(0.64);
  transform-origin: center center;
  will-change: transform;
}

.video-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 58px;
}

.service-section {
  padding-top: 116px;
}

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

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(260px, 0.82fr) minmax(320px, 0.98fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.service-main h3 {
  margin-bottom: 20px;
}

.service-main p {
  max-width: 430px;
  margin-bottom: 30px;
}

.link-button {
  min-height: 42px;
  padding: 13px 17px;
  color: var(--black);
  border-color: var(--line);
  font-size: 13px;
}

.service-includes p {
  margin-bottom: 16px;
  color: var(--black);
  font-family: var(--heading);
  text-transform: uppercase;
}

.service-includes ul,
.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-includes li,
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--black);
  font-size: 14px;
}

.service-includes li::before,
.price-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 8px;
  background: var(--orange);
}

.service-image {
  display: block;
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-section {
  padding-top: 72px;
}

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

.work-card {
  display: block;
}

.work-image {
  aspect-ratio: 1.2 / 1;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--soft);
}

.work-image.tall {
  aspect-ratio: 1 / 1.18;
}

.work-image img,
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-card:hover img,
.blog-card:hover img,
.service-image:hover img {
  transform: scale(1.045);
}

.work-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.work-card p {
  color: #6c6c6c;
}

.pricing-section {
  padding-top: 48px;
}

.pricing-section > .container > h2 {
  margin-bottom: 52px;
  max-width: 670px;
}

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

.price-card {
  position: relative;
  min-height: 560px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
}

.plan-top {
  min-height: 118px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.plan-top h3 {
  font-size: 31px;
  margin-bottom: 12px;
}

.price {
  margin: 28px 0 24px;
  color: var(--black);
  font-family: var(--heading);
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1;
  text-transform: uppercase;
}

.price span {
  font-size: 0.5em;
  vertical-align: 0.45em;
}

.price small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.price-card .button {
  width: 100%;
  margin-bottom: 30px;
}

.popular {
  position: absolute;
  right: 34px;
  top: 34px;
  min-width: 90px;
  padding: 8px 15px;
  color: var(--white);
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.custom-plan {
  grid-column: 1 / -1;
  min-height: 150px;
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--soft);
}

.custom-plan h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.custom-plan p {
  max-width: 850px;
}

.testimonial-section {
  padding-top: 54px;
}

.testimonial-section h2 {
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.testimonial-photo {
  min-height: 580px;
  overflow: hidden;
  background: var(--soft);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.testimonial-photo-ilse {
  background: #e5dfd7;
}

.testimonial-photo-ilse img {
  object-position: 50% 20%;
}

.testimonial-copy {
  min-height: 580px;
  padding: clamp(46px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--near-black);
}

.testimonial-kicker {
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-copy p {
  max-width: 560px;
  margin-bottom: 42px;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 45px);
  font-weight: 700;
  line-height: 1.13;
}

.testimonial-copy h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 23px;
}

.testimonial-copy span {
  color: #bdbdbd;
}

.testimonial-link {
  width: fit-content;
  min-height: 48px;
  margin-top: 38px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  border: 1px solid #393939;
  font-family: var(--heading);
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-link:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid #393939;
  color: var(--white);
  background: transparent;
}

.testimonial-controls button:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.faq-section {
  padding-top: 56px;
}

.faq-section h2 {
  margin-bottom: 42px;
}

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

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

summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-family: var(--heading);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  list-style: none;
  cursor: pointer;
}

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

summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  margin-left: auto;
  display: grid;
  place-items: center;
  color: var(--black);
  border: 1px solid var(--line);
  font-family: var(--body);
  font-size: 18px;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 56px 28px 19px;
  color: #646464;
}

.blog-section {
  color: var(--white);
  background: var(--near-black);
}

.blog-section h2 {
  color: var(--white);
}

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

.blog-card {
  display: block;
  overflow: hidden;
  color: var(--white);
  background: #0c0c0c;
}

.blog-card img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.blog-body {
  padding: 24px 0 0;
  background: var(--near-black);
}

.blog-body p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #bdbdbd;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-body p span {
  width: 5px;
  height: 5px;
  background: var(--orange);
}

.blog-body h3 {
  color: var(--white);
  font-size: clamp(21px, 2vw, 31px);
}

.blog-body strong {
  display: inline-block;
  margin-top: 18px;
  color: #cfcfcf;
  font-size: 13px;
  text-transform: uppercase;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.cta-section {
  padding: 94px 0 82px;
  text-align: center;
  background: var(--white);
}

.cta-content {
  display: grid;
  justify-items: center;
}

.cta-section h2 {
  max-width: 820px;
  color: var(--black);
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.96;
}

.cta-section h2 span {
  color: var(--orange);
}

.cta-section p {
  max-width: 640px;
  margin: 22px 0 28px;
  color: #6a6a6a;
  font-size: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer {
  padding: 78px 0 58px;
  color: var(--white);
  background: var(--near-black);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(50px, 7vw, 112px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-content: start;
}

.footer h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 19px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: #a7a7a7;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 26px;
  color: #8a8a8a;
  font-size: 13px;
}

.footer-newsletter {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.footer-newsletter > p {
  max-width: 560px;
  margin-bottom: 24px;
  color: #d7d7d7;
  font-size: 18px;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin-bottom: 52px;
}

.footer-inline-link {
  color: #d7d7d7;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-inline-link:hover {
  color: var(--orange);
}

.footer form {
  display: grid;
  grid-template-columns: 1fr 64px;
  min-height: 64px;
  margin-bottom: 52px;
  border: 1px solid var(--dark-line);
}

.footer input {
  min-width: 0;
  border: 0;
  padding: 0 20px;
  color: var(--white);
  background: transparent;
  outline: 0;
}

.footer button {
  border: 0;
  color: var(--white);
  background: var(--orange);
  font-size: 24px;
}

.footer-wordmark {
  color: #8f8f8f;
  font-size: clamp(76px, 9vw, 145px);
  line-height: 0.9;
}

@media (max-width: 1180px) {
  .hero-grid,
  .about-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-wrap,
  .hero-panel {
    min-height: 620px;
  }

  .service-card {
    grid-template-columns: 1fr 1fr;
  }

  .service-image {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 860px) {
  .section {
    padding: 82px 0;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    min-height: 72px;
    gap: 14px;
    padding-right: 56px;
  }

  .cart-link {
    display: none;
  }

  .brand {
    width: min(184px, calc(100vw - 104px));
  }

  .nav-links {
    grid-column: 1 / -1;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: var(--side);
    display: none;
    padding: 18px;
    justify-content: start;
    align-items: start;
    gap: 4px;
    background: #080808;
    border: 1px solid var(--dark-line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .menu-button {
    position: fixed;
    right: var(--side);
    top: 15px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 42px;
  }

  .hero-section {
    padding-top: 28px;
  }

  .hero-photo-wrap,
  .hero-panel {
    min-height: 520px;
  }

  .hero-panel {
    padding: 32px;
  }

  .client-track {
    justify-content: flex-start;
    width: max-content;
    padding-inline: 24px;
    animation: marquee 22s linear infinite;
  }

  @keyframes marquee {
    to {
      transform: translateX(-45%);
    }
  }

  .section-title-row,
  .custom-plan {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-grid,
  .pricing-grid,
  .work-grid,
  .blog-grid,
  .service-card,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .pricing-grid .custom-plan {
    grid-column: auto;
  }

  .video-section {
    height: 72vw;
    min-height: 360px;
  }

  .testimonial-photo,
  .testimonial-copy {
    min-height: 470px;
  }
}

@media (max-width: 560px) {
  :root {
    --side: 18px;
  }

  body {
    font-size: 15px;
  }

  .hero-panel h1 {
    font-size: clamp(62px, 18vw, 88px);
  }

  .hero-meta,
  .hero-actions,
  .hero-proof,
  .cta-actions {
    display: grid;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .hero-photo-wrap,
  .hero-panel {
    min-height: 430px;
  }

  .stats-section {
    padding-bottom: 86px;
  }

  .stat {
    min-height: auto;
    padding: 30px 24px;
  }

  .service-card {
    gap: 28px;
    padding: 42px 0;
  }

  .testimonial-copy {
    padding: 34px 24px;
  }

  summary {
    min-height: 64px;
    font-size: 19px;
  }

  details p {
    padding-right: 18px;
  }

  .footer {
    padding-top: 58px;
  }

  .footer-grid {
    gap: 42px;
  }
}
