body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1;
}

main {
  overflow: clip;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-actions {
  margin-top: var(--space-8);
}

.section-header {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.eyebrow {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-title,
.page-title,
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-title,
.page-title {
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.section-copy,
.page-copy,
.hero-copy {
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.45;
  max-width: 64ch;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  gap: var(--space-2);
  letter-spacing: 0.04em;
  padding: 14px 26px;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: var(--shadow-soft);
  outline: none;
  transform: translateY(-2px);
}

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

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.btn-light {
  background: var(--accent);
  color: var(--brand-deep);
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid rgba(14, 109, 40, 0.2);
  left: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: var(--space-6);
  height: var(--header-height);
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__logo {
  display: block;
  height: 62px;
  object-fit: cover;
  object-position: center 36%;
  overflow: hidden;
  width: 50px;
}

.brand__name {
  display: none;
}

.brand__tag {
  color: var(--text-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  background: transparent;
  border: 0;
  color: var(--brand);
  cursor: pointer;
  display: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle span:not(.sr-only) {
  background: currentColor;
  display: block;
  height: 4px;
  width: 27px;
}

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

.site-nav ul {
  align-items: center;
  display: flex;
  gap: var(--space-5);
}

.site-nav a {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding-bottom: 6px;
  position: relative;
  text-transform: uppercase;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
  outline: none;
}

.site-nav a.is-active::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  background: var(--accent);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.hero {
  padding: 0;
}

.hero__card,
.cta-panel,
.contact-panel,
.story-panel,
.detail-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hero__card {
  background:
    linear-gradient(
      90deg,
      rgba(8, 22, 10, 0.88) 0%,
      rgba(8, 22, 10, 0.74) 38%,
      rgba(8, 22, 10, 0.1) 100%
    ),
    url("../images/hero-home-228688.png") center/cover no-repeat;
  border-radius: 0;
  box-shadow: none;
  min-height: 680px;
  padding: clamp(72px, 7vw, 116px)
    max(64px, calc((100vw - var(--container)) / 2));
}

.hero__content {
  display: grid;
  gap: var(--space-6);
  max-width: 620px;
  min-width: 0;
}

.hero__content > *,
.page-hero__content > *,
.feature-panel__body > *,
.cta-panel__body > *,
.contact-panel__body > * {
  max-width: 100%;
  min-width: 0;
}

.hero-title,
.page-title,
.section-title,
.cta-panel__title,
.contact-panel__title {
  overflow-wrap: break-word;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(4.4rem, 6.4vw, 7.2rem);
  letter-spacing: 0;
  line-height: 0.82;
}

.hero-title mark {
  background: transparent;
  color: var(--accent);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 560px;
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.metrics-grid,
.services-grid,
.testimonials-grid,
.projects-grid,
.objections-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  padding: var(--space-8);
}

.metric-card {
  align-content: center;
  border-color: var(--brand);
  color: var(--brand);
  min-height: 176px;
}

.metric-value {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: var(--space-3);
}

.metric-mobile-text {
  display: none;
}

.metric-title,
.service-card__title,
.project-card__title,
.testimonial-card__name,
.objection-list__title,
.detail-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split-layout {
  align-items: stretch;
  display: grid;
  gap: var(--space-8);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-layout--reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.feature-panel {
  background: var(--accent);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.feature-panel__image {
  min-height: 100%;
}

.feature-panel__image img,
.project-card__image img,
.detail-gallery__image img,
.detail-gallery__thumb img,
.story-hero__image img,
.cta-panel__media img,
.contact-panel__media img,
.page-hero img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-panel__body,
.cta-panel__body,
.contact-panel__body,
.story-panel__body,
.detail-panel__body {
  display: grid;
  gap: var(--space-5);
  padding: clamp(48px, 6vw, 88px);
}

.feature-points,
.contact-list,
.detail-list {
  display: grid;
  gap: var(--space-4);
}

.feature-point,
.objection-list li,
.contact-list li,
.detail-list li {
  align-items: start;
  display: flex;
  gap: var(--space-3);
}

.badge {
  align-items: center;
  background: rgba(14, 109, 40, 0.12);
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  text-transform: uppercase;
}

.dot,
.check,
.cross {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 28px;
  font-family: var(--font-display);
  font-weight: 800;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.check,
.dot {
  background: var(--brand);
  color: var(--accent);
}

.cross {
  background: rgba(199, 0, 0, 0.1);
  color: var(--danger);
}

.project-card,
.testimonial-card {
  overflow: hidden;
  padding: 0;
}

.project-card__image {
  aspect-ratio: 1 / 0.7;
}

.project-card__body,
.testimonial-card__body {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-6);
}

.project-card__meta {
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__link {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card {
  background: var(--brand);
  color: #ffffff;
}

.stars {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
}

.testimonial-card__quote {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
}

.cta-panel,
.contact-panel,
.detail-panel {
  background: var(--brand);
  color: #ffffff;
}

.cta-panel,
.contact-panel {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.cta-panel__media,
.contact-panel__media {
  min-height: 460px;
}

.contact-panel__media img {
  height: 100%;
}

.cta-panel__title,
.contact-panel__title,
.detail-panel__title {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

.cta-panel__title mark,
.contact-panel__title mark {
  background: transparent;
  color: var(--accent);
}

.cta-panel__copy,
.contact-panel__copy,
.detail-panel__copy {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  background: var(--brand);
  margin-top: 0;
}

.site-footer__inner {
  align-items: center;
  color: #ffffff;
  display: flex;
  gap: var(--space-4);
  justify-content: space-between;
  height: 68px;
  padding: var(--space-4) 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.site-footer__links a {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-link {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

@media (min-width: 761px) {
  .site-footer {
    background: var(--brand);
    border-radius: 0;
    margin: 0;
    max-width: none;
    width: 100%;
  }

  .site-footer__inner {
    align-items: center;
    display: flex;
    height: 68px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: none;
    min-height: 68px;
    padding: 0 clamp(1.5rem, 5vw, 7.5rem);
    position: static;
    width: 100%;
  }

  .site-footer__inner p {
    color: #ffffff;
    font-size: clamp(1rem, 1.7vw, 1.75rem);
    font-weight: 500;
    line-height: 1;
    max-width: none;
    position: static;
    white-space: nowrap;
  }

  .site-footer__links {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: clamp(1.125rem, 2.2vw, 1.75rem);
    position: static;
    transform: none;
  }

  .social-link {
    border: 0;
    color: var(--accent);
    font-size: clamp(1.875rem, 3.2vw, 3rem);
    height: clamp(2rem, 3.35vw, 3rem);
    width: clamp(2rem, 3.35vw, 3rem);
  }
}

.mobile-figma-strip,
.mobile-figma-benefits,
.mobile-figma-project,
.mobile-figma-hands,
.mobile-figma-problem {
  display: none;
}

@media (min-width: 761px) {
  .hero > .container,
  .cta-panel.container {
    width: 100%;
  }

  .hero .eyebrow {
    color: var(--brand);
    letter-spacing: 0.24em;
  }

  .hero__content {
    max-width: 840px;
  }

  .hero-title {
    font-size: clamp(4rem, 5.2vw, 5.8rem);
    line-height: 0.88;
    max-width: 820px;
  }

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

  .metrics-grid {
    gap: 24px;
  }

  .metric-title {
    color: var(--brand);
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    line-height: 0.9;
  }

  .metric-card .section-copy {
    color: var(--brand);
    font-size: 1rem;
    line-height: 1.05;
  }

  .home-feature-section {
    padding: 0;
  }

  .home-feature-section .split-layout {
    gap: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    max-width: none;
    width: 100%;
  }

  .home-feature-section .feature-panel__image {
    height: 620px;
  }

  .home-feature-section .feature-panel__body {
    min-height: 620px;
  }

  .home-feature-section .section-title {
    font-size: clamp(4rem, 5vw, 6rem);
    letter-spacing: 0;
    line-height: 0.78;
    max-width: 520px;
  }

  .feature-points {
    max-width: 520px;
  }

  .feature-point {
    color: #000000;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.35;
  }

  .home-projects-section {
    padding: 104px 0;
  }

  .home-projects-section .section-header {
    margin-left: auto;
    margin-right: auto;
    width: min(calc(100% - 40px), var(--container));
  }

  .home-projects-section .projects-grid {
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: auto;
    margin-right: auto;
    width: min(calc(100% - 40px), var(--container));
  }

  .home-projects-section .project-card {
    border: 0;
    border-radius: 0;
    position: relative;
  }

  .home-projects-section .project-card__image {
    aspect-ratio: auto;
    height: 360px;
  }

  .home-projects-section .project-card__body {
    align-items: center;
    background: var(--brand);
    color: var(--accent);
    display: flex;
    height: 52px;
    justify-content: center;
    padding: 0 16px;
    text-align: center;
  }

  .home-projects-section .project-card__meta,
  .home-projects-section .project-card__body p {
    display: none;
  }

  .home-projects-section .project-card__title {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 0.08em;
  }

  .home-projects-section .project-card__link {
    font-size: 0;
    inset: 0;
    position: absolute;
  }

  .section-actions {
    justify-content: center;
  }

  .testimonials-grid {
    gap: 24px;
  }

  .testimonial-card {
    border: 0;
    border-radius: 12px;
  }

  .testimonial-card__quote {
    color: var(--accent);
    font-family: var(--font-body);
  }

  .cta-panel {
    border-radius: 0;
    gap: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .cta-panel__media {
    order: 2;
  }

  .cta-panel__body {
    order: 1;
    padding-left: max(64px, calc((100vw - var(--container)) / 2));
  }

  .cta-panel__copy {
    font-family: var(--font-body);
    line-height: 1.45;
    max-width: 520px;
  }

  .cta-panel .btn {
    width: min(100%, 440px);
  }

  .mobile-figma-problem {
    display: block;
    height: 520px;
    overflow: hidden;
    position: relative;
  }

  .mobile-figma-problem > img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .mobile-figma-problem > div {
    background: var(--bg);
    border-radius: 0;
    left: max(64px, calc((100vw - var(--container)) / 2));
    padding: 56px;
    position: absolute;
    top: 72px;
    width: min(420px, calc(100% - 128px));
  }

  .mobile-figma-problem h2 {
    color: var(--brand);
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.82;
    margin-bottom: 28px;
    text-transform: uppercase;
  }

  .mobile-figma-problem li {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .mobile-figma-problem li::before {
    color: var(--danger);
    content: "x ";
    font-weight: 900;
  }
}

.reveal {
  animation: rise 700ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .metrics-grid,
  .services-grid,
  .testimonials-grid,
  .projects-grid,
  .objections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .split-layout--reverse,
  .cta-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) {
  html {
    scrollbar-gutter: stable;
  }

  body {
    --site-gutter: clamp(1.5rem, 5vw, 7.5rem);
    --site-content: calc(100% - (var(--site-gutter) * 2));
  }

  body[data-page="home"] {
    background: var(--bg);
    --home-gutter: var(--site-gutter);
    --home-content: calc(100% - (var(--home-gutter) * 2));
  }

  body[data-page="home"] main,
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-footer {
    background: var(--bg);
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
  }

  body[data-page="home"] .container {
    width: var(--home-content);
  }

  .site-header {
    background: var(--bg);
    border: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    position: relative;
    width: 100%;
  }

  .site-header__inner.container {
    gap: clamp(1.5rem, 4vw, 4rem);
    height: clamp(7rem, 8.5vw, 11.5rem);
    padding: 0;
    width: var(--site-content);
  }

  body[data-page] .site-header__inner.container {
    padding-left: clamp(16px, 2vw, 26px);
    width: min(var(--site-content), 1254px);
  }

  .brand {
    height: clamp(69px, 9.1vw, 114px);
    justify-content: center;
    overflow: visible;
    width: clamp(96px, 12.7vw, 159px);
  }

  .brand__logo {
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.32);
    transform-origin: center;
    width: 100%;
  }

  .brand__tag {
    display: none;
  }

  .site-nav ul {
    gap: clamp(1.125rem, 3.6vw, 3.125rem);
  }

  .site-nav a {
    font-size: clamp(0.875rem, 0.95vw, 1.25rem);
    font-weight: 800;
    letter-spacing: clamp(0.16em, 0.32vw, 0.34em);
    padding-bottom: 0;
  }

  .site-nav a::after,
  .site-nav a.is-active::after,
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    display: none;
  }

  body[data-page="home"] .hero > .container {
    width: 100%;
  }

  body[data-page="home"] .hero__card {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.74) 0%,
        rgba(0, 0, 0, 0.58) 44%,
        rgba(0, 0, 0, 0.4) 100%
      ),
      url("../images/hero-home-228688.png") center / cover no-repeat;
    align-items: center;
    display: grid;
    grid-template-columns:
      minmax(38vw, 1fr)
      minmax(22rem, 40rem)
      minmax(var(--home-gutter), 1fr);
    min-height: clamp(28rem, 40vw, 42rem);
    padding: 0;
  }

  body[data-page="home"] .hero__content {
    gap: clamp(0.75rem, 1.3vw, 1rem);
    grid-column: 2;
    left: auto;
    max-width: 40rem;
    position: static;
    top: auto;
    transform: translateY(clamp(-1.25rem, -1vw, -0.5rem));
  }

  body[data-page="home"] .hero .eyebrow {
    display: none;
  }

  body[data-page="home"] .hero-title {
    font-size: clamp(2.125rem, 3.25vw, 4.25rem);
    letter-spacing: 0;
    line-height: clamp(1.875rem, 2.6vw, 3.55rem);
    max-width: 44rem;
  }

  body[data-page="home"] .hero-copy {
    color: #ffffff;
    font-size: clamp(0.875rem, 1.2vw, 1.25rem);
    font-weight: 500;
    line-height: clamp(1rem, 1.25vw, 1.45rem);
    max-width: 34rem;
    text-align: justify;
  }

  body[data-page="home"] .hero .btn-row {
    gap: 0;
    margin-top: clamp(0.5rem, 1vw, 0.875rem);
  }

  body[data-page="home"] .btn {
    border-radius: 999px;
    font-size: clamp(1rem, 1.05vw, 1.125rem);
    height: clamp(2.5rem, 3.6vw, 3.25rem);
    letter-spacing: 0;
    line-height: 1;
    padding: 0 clamp(1.125rem, 1.65vw, 1.75rem);
    text-transform: none;
  }

  body[data-page="home"] .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
    justify-content: flex-start;
    min-width: clamp(8rem, 10.5vw, 9.25rem);
    padding-right: clamp(2.75rem, 4vw, 3.75rem);
  }

  body[data-page="home"] .btn-primary,
  body[data-page="home"] .btn-light {
    background: var(--brand);
    color: var(--accent);
  }

  body[data-page="home"] .hero .btn-primary {
    font-weight: 800;
    justify-content: center;
    margin-left: clamp(-3rem, -3vw, -2.25rem);
    min-width: clamp(10.75rem, 13.5vw, 12.25rem);
    position: relative;
    z-index: 1;
  }

  body[data-page="home"] .hero + .section {
    padding: clamp(2.25rem, 4.8vw, 3.75rem) 0 clamp(2.375rem, 5vw, 3.875rem);
  }

  body[data-page="home"] .metrics-grid {
    gap: clamp(0.375rem, 1vw, 0.875rem);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body[data-page="home"] .metric-card {
    align-items: center;
    border: 1px solid var(--brand);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: clamp(8.625rem, 12.5vw, 17.5rem);
    justify-content: center;
    min-height: 0;
    padding: clamp(1rem, 2vw, 1.375rem) clamp(0.75rem, 1.8vw, 1.25rem);
    text-align: center;
  }

  body[data-page="home"] .metric-value {
    font-size: clamp(3.25rem, 5vw, 6.5rem);
    line-height: clamp(2.75rem, 4.2vw, 5.6rem);
    margin: 0 0 clamp(0.5rem, 1vw, 0.75rem);
  }

  body[data-page="home"] .metric-title {
    color: var(--brand);
    font-size: clamp(1.375rem, 2vw, 2.75rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: clamp(1.25rem, 1.75vw, 2.35rem);
    text-transform: none;
  }

  body[data-page="home"] .metric-card .section-copy {
    display: none;
  }

  body[data-page="home"] .metric-card:nth-child(n + 3) .metric-title {
    display: none;
  }

  body[data-page="home"] .metric-card:nth-child(n + 3) .metric-mobile-text {
    color: var(--brand);
    display: block;
    font-size: clamp(1.375rem, 2.05vw, 2.9rem);
    font-weight: 500;
    line-height: clamp(1.25rem, 1.75vw, 2.45rem);
  }

  body[data-page="home"]
    .metric-card:nth-child(n + 3)
    .metric-mobile-text
    strong {
    font-weight: 800;
  }

  body[data-page="home"] .home-feature-section {
    background: var(--accent);
    padding: clamp(1.5rem, 2.4vw, 2.125rem) 0;
  }

  body[data-page="home"] .home-feature-section .split-layout {
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.375rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .home-feature-section .feature-panel {
    background: transparent;
  }

  body[data-page="home"] .home-feature-section .feature-panel__image {
    height: clamp(16.25rem, 22vw, 32rem);
  }

  body[data-page="home"] .home-feature-section .feature-panel__body {
    display: block;
    min-height: 0;
    padding: 0;
  }

  body[data-page="home"] .home-feature-section .badge,
  body[data-page="home"] .home-feature-section .section-title {
    display: none;
  }

  body[data-page="home"] .feature-points {
    gap: clamp(0.375rem, 0.65vw, 0.5625rem);
    max-width: 44rem;
  }

  body[data-page="home"] .feature-point {
    align-items: center;
    color: #000000;
    display: flex;
    font-family: var(--font-display);
    font-size: clamp(0.875rem, 1.05vw, 1.25rem);
    font-weight: 800;
    gap: 0.5rem;
    line-height: clamp(0.875rem, 0.95vw, 1.125rem);
  }

  body[data-page="home"] .feature-point strong {
    font-weight: 900;
  }

  body[data-page="home"] .check {
    background: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
    flex-basis: 1.25rem;
    font-size: 0.875rem;
    height: 1.25rem;
    width: 1.25rem;
  }

  body[data-page="home"] .home-projects-section {
    background:
      linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
      url("../images/figma/processo.png") center / cover no-repeat;
    padding: clamp(1.875rem, 3vw, 2.4375rem) 0;
  }

  body[data-page="home"] .home-projects-section .section-header {
    display: none;
  }

  body[data-page="home"] .home-projects-section .projects-grid {
    gap: clamp(0.875rem, 2vw, 1.5rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    width: calc(100% - (var(--home-gutter) * 2));
  }

  body[data-page="home"] .projects-showcase {
    align-items: center;
    display: flex;
    gap: clamp(0.875rem, 1.75vw, 1.5rem);
    margin: 0 auto;
    width: calc(100% - (var(--home-gutter) * 2));
  }

  body[data-page="home"] .projects-showcase .projects-grid {
    flex: 1;
    margin: 0;
    width: auto;
  }

  body[data-page="home"] .projects-showcase__previous,
  body[data-page="home"] .projects-showcase__next {
    align-items: center;
    background: transparent;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-family: Arial, sans-serif;
    font-size: clamp(3rem, 4vw, 4.75rem);
    font-weight: 300;
    height: clamp(3.5rem, 5vw, 4.5rem);
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: clamp(1.5rem, 2.4vw, 2.75rem);
  }

  body[data-page="home"] .projects-showcase__previous:hover,
  body[data-page="home"] .projects-showcase__previous:focus-visible,
  body[data-page="home"] .projects-showcase__next:hover,
  body[data-page="home"] .projects-showcase__next:focus-visible {
    color: var(--accent);
    outline: none;
  }

  body[data-page="home"] .projects-showcase__previous:hover,
  body[data-page="home"] .projects-showcase__previous:focus-visible {
    transform: translateX(-4px);
  }

  body[data-page="home"] .projects-showcase__next:hover,
  body[data-page="home"] .projects-showcase__next:focus-visible {
    transform: translateX(4px);
  }

  body[data-page="home"] .project-card--carousel {
    animation: project-carousel-in 420ms ease both;
  }

  body[data-page="home"] .home-projects-section .project-card {
    border: 0;
    border-radius: 0;
    padding: 0;
  }

  body[data-page="home"] .home-projects-section .project-card__image {
    aspect-ratio: auto;
    height: clamp(15.625rem, 24vw, 34rem);
  }

  body[data-page="home"] .home-projects-section .project-card__body {
    display: none;
  }

  @keyframes project-carousel-in {
    from {
      opacity: 0;
      transform: translateX(18px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  body[data-page="home"] .home-projects-section .section-actions {
    margin-top: clamp(1.5rem, 2.8vw, 2.125rem);
  }

  body[data-page="home"] .home-projects-section .btn {
    height: clamp(2.5rem, 4vw, 3.0625rem);
    text-transform: uppercase;
  }

  body[data-page="home"] .home-testimonials-section {
    padding: clamp(2.375rem, 4vw, 3.0625rem) 0 clamp(2.625rem, 5vw, 3.875rem);
  }

  body[data-page="home"] .home-testimonials-section .section-header {
    margin-bottom: clamp(1.375rem, 2.4vw, 1.875rem);
    text-align: center;
  }

  body[data-page="home"] .home-testimonials-section .eyebrow {
    display: none;
  }

  body[data-page="home"] .home-testimonials-section .section-title {
    color: var(--brand);
    display: block;
    font-size: clamp(1.75rem, 3vw, 3.25rem);
    font-weight: 800;
    letter-spacing: clamp(0.16em, 1.1vw, 0.32em);
    line-height: clamp(1.625rem, 2.7vw, 2.9rem);
  }

  body[data-page="home"] .testimonials-grid {
    gap: clamp(0.625rem, 1vw, 0.75rem);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body[data-page="home"] .testimonial-card {
    background: var(--brand);
    border: 0;
    border-radius: 10px;
    aspect-ratio: 1 / 0.95;
    height: auto;
  }

  body[data-page="home"] .testimonial-card__body {
    align-content: center;
    gap: clamp(0.75rem, 1.4vw, 1.125rem);
    height: 100%;
    padding: 0 clamp(1.125rem, 2.2vw, 1.75rem);
  }

  body[data-page="home"] .stars {
    color: var(--accent);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    letter-spacing: 0;
    line-height: clamp(1.125rem, 1.35vw, 1.5rem);
  }

  body[data-page="home"] .testimonial-card__quote {
    color: var(--accent);
    font-size: clamp(1rem, 1.25vw, 1.75rem);
    line-height: clamp(1.0625rem, 1.25vw, 1.75rem);
  }

  body[data-page="home"] .home-cta-section {
    background: var(--brand);
    padding: clamp(1.875rem, 3.5vw, 2.75rem) 0;
  }

  body[data-page="home"] .home-cta-section .container {
    width: var(--home-content);
  }

  body[data-page="home"] .cta-panel {
    background: transparent;
    display: grid;
    gap: clamp(1.5rem, 3.2vw, 2.5rem);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  body[data-page="home"] .cta-panel__body {
    align-content: center;
    gap: clamp(1.375rem, 2.7vw, 2.125rem);
    order: 1;
    padding: 0;
  }

  body[data-page="home"] .cta-panel__media {
    display: block;
    height: clamp(12.5rem, 17vw, 23rem);
    min-height: 0;
    order: 2;
  }

  body[data-page="home"] .cta-panel__title {
    color: #ffffff;
    font-size: clamp(1.75rem, 2.8vw, 3.25rem);
    letter-spacing: 0;
    line-height: clamp(1.75rem, 2.65vw, 3.1rem);
    max-width: 42rem;
  }

  body[data-page="home"] .cta-panel__copy {
    color: #ffffff;
    font-size: clamp(0.8125rem, 1vw, 1.0625rem);
    line-height: clamp(1rem, 1.2vw, 1.3rem);
    max-width: 36rem;
    text-align: justify;
  }

  body[data-page="home"] .cta-panel .btn {
    display: none;
  }

  body[data-page="home"] .mobile-figma-problem {
    display: block;
    height: clamp(22.5rem, 35vw, 34rem);
  }

  body[data-page="home"] .mobile-figma-problem > img {
    height: 100%;
    object-fit: cover;
    object-position: center 14%;
    width: 100%;
  }

  body[data-page="home"] .mobile-figma-problem > div {
    background: var(--bg);
    border-radius: 20px;
    left: var(--home-gutter);
    min-height: clamp(13.25rem, 18vw, 17rem);
    padding: clamp(1.625rem, 2.4vw, 2rem) clamp(1.5rem, 2.25vw, 1.875rem);
    position: absolute;
    top: clamp(3rem, 5.5vw, 4.25rem);
    width: clamp(17.5rem, 23vw, 22rem);
  }

  body[data-page="home"] .mobile-figma-problem h2 {
    color: var(--brand);
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: clamp(0.9375rem, 1.1vw, 1.2rem);
    margin-bottom: clamp(0.875rem, 1.5vw, 1.25rem);
    text-transform: uppercase;
  }

  body[data-page="home"] .mobile-figma-problem li {
    color: #000000;
    font-size: clamp(0.875rem, 1.1vw, 1.125rem);
    line-height: clamp(1.125rem, 1.45vw, 1.5rem);
  }

  body[data-page="home"] .mobile-figma-problem li::before {
    color: var(--danger);
    content: "x ";
    font-weight: 900;
  }
}

@media (min-width: 761px) {
  body[data-page] .site-footer {
    background: var(--brand);
    border-radius: 0;
    margin: 0;
    max-width: none;
    width: 100%;
  }

  body .site-footer__inner.container {
    width: 100%;
    padding: 0 clamp(1.5rem, 5vw, 7.5rem);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .site-header__inner.container {
    gap: 1.5rem;
    width: calc(100% - 3rem);
  }

  .site-nav ul {
    gap: clamp(1.125rem, 3vw, 1.75rem);
  }

  .site-nav a {
    font-size: 14px;
    letter-spacing: 0.18em;
  }

  body[data-page="home"] .container {
    width: calc(100% - 3rem);
  }

  body[data-page="home"] .hero__card {
    grid-template-columns:
      minmax(260px, 38vw)
      minmax(0, 430px)
      minmax(1.5rem, 1fr);
  }

  body[data-page="home"] .hero__content {
    max-width: 26.875rem;
  }

  body[data-page="home"] .hero-title {
    font-size: 2.375rem;
    line-height: 2rem;
    max-width: 26.875rem;
  }

  body[data-page="home"] .hero-copy {
    max-width: 22.5rem;
  }

  body[data-page="home"] .home-feature-section .split-layout {
    gap: 1.75rem;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  }

  body[data-page="home"] .feature-point {
    font-size: 1.0625rem;
    line-height: 0.9375rem;
  }

  body[data-page="home"] .home-projects-section .projects-grid {
    width: calc(100% - 4.5rem);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 112px;
  }

  body {
    background: #d9d9d9;
    font-family: var(--font-display);
    line-height: 1;
  }

  main,
  .site-header,
  .site-footer {
    background: var(--bg);
    margin-left: auto;
    margin-right: auto;
    max-width: 462px;
    width: 100%;
  }

  .container {
    width: 100%;
  }

  .site-header {
    backdrop-filter: none;
    border: 0;
    position: relative;
  }

  .site-header__inner {
    height: var(--header-height);
    padding: 29px 35px 14px 29px;
  }

  .brand {
    display: block;
    height: 60px;
    overflow: hidden;
    width: 84px;
  }

  .brand__logo {
    display: block;
    height: 105px;
    object-fit: cover;
    object-position: center 36%;
    transform: translateY(-21px);
    width: 84px;
  }

  .brand__name,
  .brand__tag {
    display: none;
  }

  .nav-toggle {
    align-items: center;
    color: var(--brand);
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr;
    height: 30px;
    justify-content: center;
    letter-spacing: 0;
    padding: 0;
    width: 30px;
  }

  .site-nav {
    background: var(--brand);
    border-bottom: 0;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: translateY(-12px);
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      transform 220ms ease;
    width: 100%;
  }

  .site-nav.is-open {
    max-height: 750px;
  }

  .site-nav ul {
    align-items: center;
    flex-direction: column;
    gap: 26px;
    padding: 38px 20px 48px;
  }

  .site-nav a {
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 0.08em;
    padding: 0;
  }

  .site-nav a.is-active,
  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--accent);
  }

  .site-nav a::after,
  .site-nav a.is-active::after,
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    display: none;
  }

  body.has-menu-open {
    overflow: hidden;
  }

  .site-header.is-menu-open {
    bottom: 0;
    left: 0;
    margin: 0 auto;
    max-width: 462px;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
  }

  .site-header.is-menu-open .nav-toggle {
    border: 4px solid var(--brand);
    border-radius: 50%;
    display: block;
    height: 44px;
    position: relative;
    width: 44px;
  }

  .site-header.is-menu-open .nav-toggle span:not(.sr-only) {
    height: 4px;
    left: 8px;
    position: absolute;
    top: 16px;
    width: 20px;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(2) {
    display: none;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-header.is-menu-open .site-nav,
  .site-nav.is-open {
    background: var(--bg);
    height: calc(100dvh - var(--header-height));
    max-height: none;
    opacity: 1;
    overflow: hidden;
    pointer-events: auto;
    top: var(--header-height);
    transform: translateY(0);
  }

  .site-header.is-menu-open .site-nav ul {
    gap: 67px;
    padding: 67px 20px 48px;
  }

  .site-header.is-menu-open .site-nav a {
    color: #111111;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.3em;
    line-height: 1;
  }

  .site-header.is-menu-open .site-nav a.is-active,
  .site-header.is-menu-open .site-nav a:hover,
  .site-header.is-menu-open .site-nav a:focus-visible {
    color: var(--brand);
  }

  .site-header.is-menu-open .site-nav a.is-active::after,
  .site-header.is-menu-open .site-nav a:hover::after,
  .site-header.is-menu-open .site-nav a:focus-visible::after {
    background: currentColor;
    bottom: -6px;
    display: block;
    height: 1px;
    left: 0;
    width: calc(100% - 0.3em);
  }

  .metrics-grid,
  .services-grid,
  .testimonials-grid,
  .projects-grid,
  .objections-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 0;
  }

  .hero__card {
    background:
      linear-gradient(
        90deg,
        rgba(8, 22, 10, 0.82) 0%,
        rgba(8, 22, 10, 0.55) 48%,
        rgba(8, 22, 10, 0.08) 100%
      ),
      url("../images/figma/home-hero.png") center bottom / cover no-repeat;
    border-radius: 0;
    box-shadow: none;
    height: min(301px, 65.15vw);
    min-height: 0;
    padding: clamp(25px, 7.79vw, 36px) clamp(34px, 9.74vw, 45px)
      clamp(24px, 6.5vw, 30px) clamp(37px, 11.26vw, 52px);
  }

  .hero {
    padding: 0;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero__content {
    gap: 0;
    height: 100%;
    max-width: none;
    position: relative;
  }

  .hero-title {
    font-size: clamp(19px, 5.2vw, 24px);
    letter-spacing: 0;
    line-height: clamp(22px, 6.06vw, 28px);
    width: 100%;
  }

  .hero-copy {
    bottom: clamp(45px, 11.9vw, 55px);
    color: #ffffff;
    font-size: clamp(10px, 2.82vw, 13px);
    font-weight: 500;
    left: 0;
    line-height: clamp(9px, 3.6vw, 16px);
    max-width: none;
    position: absolute;
    text-align: justify;
    width: 100%;
  }

  .btn {
    border-radius: 31px;
    font-size: clamp(9px, 2.39vw, 11px);
    height: min(36px, 7.8vw);
    justify-content: center;
    letter-spacing: 0;
    line-height: 20px;
    padding: 0 12px;
    width: min(148px, 32vw);
  }

  .hero .btn-row {
    bottom: 0;
    flex-wrap: nowrap;
    gap: 0;
    left: 0;
    position: absolute;
  }

  .hero .btn {
    text-transform: none;
    white-space: nowrap;
  }

  .hero .btn-secondary {
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
    width: min(148px, 32vw);
  }

  .hero .btn-primary {
    font-weight: 800;
    margin-left: clamp(12px, 3.68vw, 17px);
    position: relative;
    width: min(148px, 32vw);
    z-index: 1;
  }

  .btn-secondary {
    border-color: #ffffff;
  }

  .metrics-grid {
    display: grid;
    gap: 12px 17px;
    grid-template-columns: repeat(2, 138px);
    justify-content: center;
    padding: 17px 0 20px;
  }

  .card {
    box-shadow: none;
  }

  .metric-card {
    align-items: center;
    background: transparent;
    border: 1px solid var(--brand);
    border-radius: 9px;
    color: var(--brand);
    display: flex;
    flex-direction: column;
    height: 79px;
    justify-content: center;
    min-height: 0;
    padding: 8px 10px;
    text-align: center;
  }

  .metric-value {
    font-size: 40px;
    line-height: 20px;
    margin: 0 0 8px;
  }

  .metric-title {
    color: var(--brand);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 13px;
    text-transform: none;
  }

  .metric-card .section-copy {
    display: none;
  }

  .metric-mobile-text {
    color: var(--brand);
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: 14px;
  }

  .metric-card:nth-child(n + 3) .metric-title {
    display: none;
  }

  .home-feature-section,
  .home-projects-section {
    display: none;
  }

  .mobile-figma-strip,
  .mobile-figma-benefits,
  .mobile-figma-project,
  .mobile-figma-hands,
  .mobile-figma-problem {
    display: block;
  }

  .mobile-figma-strip,
  .mobile-figma-hands {
    height: 154px;
    overflow: hidden;
  }

  .mobile-figma-strip img,
  .mobile-figma-hands img,
  .mobile-figma-project img,
  .mobile-figma-problem > img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .mobile-process-strip img {
    object-position: center 42%;
  }

  .mobile-figma-benefits {
    align-items: center;
    background: var(--accent);
    display: flex;
    min-height: 267px;
    padding: 25px 27px 24px;
  }

  .mobile-figma-benefits ul {
    display: grid;
    gap: 6px;
    width: 100%;
  }

  .mobile-figma-benefits li {
    font-size: 14px;
    font-weight: 700;
    line-height: 12px;
    padding-left: 28px;
    position: relative;
  }

  .mobile-figma-benefits li::before {
    background: url("../images/figma/check.png") center / cover no-repeat;
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    top: -3px;
    width: 23px;
  }

  .mobile-figma-project {
    height: 204px;
    overflow: hidden;
    position: relative;
  }

  .mobile-figma-project a {
    align-items: center;
    background: var(--brand);
    bottom: 0;
    color: var(--accent);
    display: flex;
    font-size: 11px;
    font-weight: 700;
    height: 29px;
    justify-content: center;
    left: 0;
    letter-spacing: 0;
    position: absolute;
    text-transform: uppercase;
    width: 100%;
  }

  .testimonials-grid {
    gap: 8px;
    justify-items: center;
    padding: 0 0 34px;
  }

  .testimonials-grid .testimonial-card {
    background: var(--brand);
    border: 0;
    border-radius: 12px;
    height: auto;
    min-height: 95px;
    width: 291px;
  }

  .testimonials-grid .testimonial-card__body {
    gap: 8px;
    padding: 18px 32px;
  }

  .testimonial-card__quote {
    color: var(--accent);
    font-size: 16px;
    line-height: 17px;
  }

  .stars {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 14px;
  }

  body[data-page="home"] .section-header {
    margin: 0;
    padding: 22px 0 14px;
    text-align: center;
  }

  body[data-page="home"] .section-header .eyebrow,
  body[data-page="home"] .section-header .section-title {
    color: var(--brand);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 6.2px;
    line-height: 12px;
    text-transform: uppercase;
  }

  body[data-page="home"] .section-header .section-title {
    display: none;
  }

  .cta-panel {
    background: var(--brand);
    border-radius: 0;
    display: block;
    min-height: 224px;
  }

  .cta-panel__media {
    display: none;
  }

  .cta-panel__body {
    gap: 18px;
    padding: 27px 39px 0 50px;
  }

  .cta-panel__title {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 24px;
    width: 257px;
  }

  .cta-panel__copy {
    color: #ffffff;
    font-size: 16px;
    line-height: 17px;
    width: 304px;
  }

  .cta-panel .btn {
    display: none;
  }

  .mobile-figma-problem {
    height: 269px;
    overflow: hidden;
    position: relative;
  }

  .mobile-figma-problem > img {
    height: 290px;
    left: 50%;
    object-position: center 14%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 513px;
  }

  .mobile-figma-problem > div {
    background: var(--bg);
    border-radius: 20px;
    left: 50px;
    min-height: 204px;
    padding: 27px 30px;
    position: absolute;
    top: 32px;
    width: 217px;
  }

  .mobile-figma-problem h2 {
    color: var(--brand);
    font-size: 16px;
    font-weight: 800;
    line-height: 13px;
    margin-bottom: 22px;
    text-transform: uppercase;
  }

  .mobile-figma-problem li {
    font-size: 16px;
    line-height: 21px;
  }

  .mobile-figma-problem li::before {
    color: var(--danger);
    content: "x ";
    font-weight: 900;
  }

  .site-footer {
    background: var(--brand);
    margin-top: 0;
  }

  .site-footer__inner {
    align-items: center;
    color: #ffffff;
    flex-direction: row;
    min-height: 68px;
    padding: 0 50px;
  }

  .site-footer__inner p {
    font-size: 16px;
    line-height: 13px;
    width: 151px;
  }

  .site-footer__links {
    gap: 19px;
  }

  .site-footer__links a {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 0;
  }

  .social-link {
    border: 0;
    height: 22px;
    width: 22px;
  }
}
