:root {
  --red-800: #9f1118;
  --red-700: #c51620;
  --red-600: #e11825;
  --red-500: #f02a34;
  --black: #050505;
  --gray-900: #1a1a1a;
  --gray-800: #2d2d2d;
  --gray-700: #4a4a4a;
  --gray-600: #666666;
  --gray-300: #d8d8d8;
  --neutral-100: #ffffff;
  --neutral-200: #f3f3f3;
  --neutral-900: #161616;

  --site-max: 1200px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--neutral-900);
  background: var(--neutral-100);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2000;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  background: var(--neutral-100);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-150%);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-3);
  font-family: "house-of-cards", Helvetica, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.35rem;
}

h2 {
  font-size: 1.85rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

h5,
h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 var(--space-3);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

a {
  color: var(--red-700);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--red-500);
  outline-offset: 2px;
}

.container {
  width: min(100% - 2rem, var(--site-max));
  margin-inline: auto;
}

.section {
  padding: var(--space-6) 0;
  scroll-margin-top: 5.5rem;
}

.section .container {
  text-align: center;
}

.section h2 {
  margin-bottom: var(--space-4);
  text-align: center;
}

.section h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 3px;
  margin: var(--space-2) auto 0;
  background: var(--red-700);
}

.section .container > p {
  max-width: 70ch;
  margin-inline: auto;
}

.section-alt {
  background: var(--neutral-200);
}

.section-dark {
  background: var(--gray-900);
  color: var(--neutral-100);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.content-narrow {
  max-width: 820px;
}

.breadcrumbs {
  padding-block: var(--space-2);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--gray-600);
}

.about-layout {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.about-copy p {
  max-width: 70ch;
  margin-inline: auto;
}

.project-carousel {
  width: 100%;
  min-width: 0;
}

.project-carousel__viewport {
  display: grid;
  overflow: hidden;
  border-radius: 10px;
  background: var(--black);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.project-carousel__slide {
  margin: 0;
  background: var(--black);
  color: var(--neutral-100);
}

.project-carousel__slide + .project-carousel__slide {
  margin-top: var(--space-3);
}

html.js .project-carousel__slide {
  grid-area: 1 / 1;
  margin-top: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
}

html.js .project-carousel__slide.is-active {
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

html.js .project-carousel__slide.is-entering-right {
  z-index: 2;
  animation: project-slide-in-from-right 450ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

html.js .project-carousel__slide.is-entering-left {
  z-index: 2;
  animation: project-slide-in-from-left 450ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

html.js .project-carousel__slide.is-exiting-left,
html.js .project-carousel__slide.is-exiting-right {
  z-index: 1;
  visibility: visible;
}

html.js .project-carousel__slide.is-exiting-left {
  transform: translateX(-100%);
  animation: project-slide-out-to-left 450ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

html.js .project-carousel__slide.is-exiting-right {
  transform: translateX(100%);
  animation: project-slide-out-to-right 450ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.project-carousel__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 30rem;
  object-fit: cover;
}

.project-carousel__slide figcaption {
  padding: 0.75rem var(--space-3);
  border-top: 3px solid var(--red-700);
  font-weight: 700;
  text-align: left;
}

.project-carousel__controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

html.js .project-carousel__controls {
  display: flex;
}

.project-carousel__arrow,
.project-carousel__toggle,
.project-carousel__dot {
  border: 0;
  cursor: pointer;
}

.project-carousel__arrow {
  display: inline-grid;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red-700);
  color: var(--neutral-100);
}

.project-carousel__arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-carousel__arrow:hover {
  background: var(--red-800);
}

.project-carousel__toggle {
  min-height: 2.75rem;
  padding: 0.45rem 0.8rem;
  border: 2px solid var(--red-700);
  border-radius: 6px;
  background: var(--neutral-100);
  color: var(--red-800);
  font-weight: 700;
}

.project-carousel__toggle:hover {
  background: var(--neutral-200);
}

.project-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.project-carousel__dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border-radius: 50%;
  background: var(--gray-300);
}

.project-carousel__dot.is-active {
  background: var(--red-700);
}

.project-carousel__status {
  margin: var(--space-1) 0 0;
  color: var(--gray-700);
  font-size: 0.9rem;
  text-align: center;
}

@keyframes project-slide-in-from-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes project-slide-in-from-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes project-slide-out-to-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes project-slide-out-to-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes ctaShimmer {
  0% {
    transform: translateX(-125%);
  }
  60%,
  100% {
    transform: translateX(155%);
  }
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--black), var(--gray-900));
  color: var(--neutral-100);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 3px solid var(--red-700);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

.site-banner-slot {
  width: 100%;
  padding: 0;
  background: #000;
  display: flex;
  justify-content: center;
}

.site-banner-image {
  display: block;
  width: min(100%, 576px);
  height: auto;
  max-width: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.55rem, 1vw, 0.8rem) 0;
}

.brand {
  color: var(--neutral-100);
  text-decoration: none;
  font-weight: 700;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  background: transparent;
  color: var(--neutral-100);
  padding: 0.4rem 0.7rem;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-inline: auto;
  gap: clamp(0.65rem, 1.8vw, 1.6rem);
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(6.5rem, 9vw, 7.3rem);
  min-height: 44px;
  padding: 0.42rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--gray-800), var(--gray-900));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 1px 2px rgba(0, 0, 0, 0.2);
  color: var(--neutral-100);
  text-decoration: none;
  font-weight: 700;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--neutral-100);
  background: linear-gradient(180deg, var(--red-600), var(--red-800));
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 3px 8px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(10rem, 20vw, 14rem);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--black);
  color: var(--neutral-100);
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.46));
}

.page-hero-content {
  padding: var(--space-6) 0;
  text-align: center;
}

.page-hero h1 {
  max-width: 22ch;
  margin-inline: auto;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.page-hero p {
  max-width: 62ch;
  margin-inline: auto;
  font-size: 1.1rem;
}

.split-layout {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.content-copy,
.content-copy h2 {
  text-align: left;
}

.content-copy h2::after {
  margin-left: 0;
}

.feature-image {
  display: block;
  width: 100%;
  max-height: 34rem;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.feature-grid {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--neutral-100);
  isolation: isolate;
  min-height: calc(100svh - 4.2rem);
}

.hero.section {
  padding: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  background: rgba(0, 0, 0, 0.58);
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.8rem, 4vw, 3.5rem) 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: clamp(0.75rem, 1.2vw, 1.1rem);
  margin-inline: auto;
  max-width: 24ch;
  font-size: 2.55rem;
  line-height: 1.08;
}

.hero p:last-of-type {
  max-width: 65ch;
  margin-inline: auto;
}

.hero-seal {
  display: block;
  width: clamp(8rem, 18vw, 11rem);
  height: auto;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.38));
}

.hero-seal-outer {
  fill: rgba(5, 5, 5, 0.9);
  stroke: var(--red-700);
  stroke-width: 5;
}

.hero-seal-ring {
  fill: none;
  stroke: var(--gray-300);
  stroke-width: 2;
}

.hero-seal-center {
  fill: var(--red-700);
  stroke: var(--neutral-100);
  stroke-width: 3;
}

.hero-seal-bolt {
  fill: var(--neutral-100);
}

.hero-seal-text {
  fill: var(--neutral-100);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-seal-text-bottom {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms ease;
}

.btn-primary {
  z-index: 0;
  background: var(--red-700);
  color: var(--neutral-100);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.35) 52%, transparent 78%);
  transform: translateX(-125%);
  animation: ctaShimmer 3.9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--red-800);
  color: var(--neutral-100);
}

.btn-secondary {
  border: 2px solid currentColor;
  background: transparent;
  color: inherit;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
}

.btn-secondary--dark {
  color: var(--gray-900);
}

.services-grid,
.reviews-grid {
  display: grid;
  gap: var(--space-3);
}

.card {
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: var(--space-4);
  background: var(--neutral-100);
  text-align: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.service-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--red-700);
  border-color: var(--red-800);
  color: var(--neutral-100);
  box-shadow: 0 14px 28px rgba(159, 17, 24, 0.24);
}

.service-card:hover,
.service-card:focus-within {
  background: var(--red-800);
  box-shadow: 0 18px 34px rgba(159, 17, 24, 0.3);
}

.service-card h3,
.service-card p {
  color: inherit;
}

.service-card p {
  margin-bottom: 0;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: var(--space-3);
  color: var(--neutral-100);
  font-weight: 700;
}

.service-capabilities {
  display: grid;
  max-width: 42rem;
  gap: var(--space-2);
  margin: 0 auto;
  padding-left: 1.35rem;
  text-align: left;
}

.service-project-gallery {
  max-width: 54rem;
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: var(--space-2);
  text-align: left;
}

.faq-item {
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--neutral-100);
}

.section-dark .faq-item {
  color: var(--gray-900);
}

.faq-item summary {
  min-height: 44px;
  padding: 0.85rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.faq-categories {
  display: grid;
  gap: var(--space-5);
}

.faq-category {
  scroll-margin-top: 6rem;
}

.faq-category h3 a {
  color: inherit;
}

.section-link {
  margin-top: var(--space-4);
}

.service-icon {
  display: block;
  width: 4.75rem;
  height: 4.75rem;
  flex: 0 0 auto;
  margin-bottom: var(--space-3);
  border-radius: 8px;
  object-fit: cover;
}

.project-gallery {
  display: grid;
  gap: var(--space-3);
  width: 100%;
  margin-top: var(--space-3);
}

.project-card {
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background: var(--black);
  color: var(--neutral-100);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
}

.project-card figcaption {
  padding: 0.75rem var(--space-3);
  border-top: 3px solid var(--red-700);
  font-weight: 700;
}

.reviewer {
  margin-bottom: 0;
  font-weight: 700;
}

.review-card {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.review-stars {
  margin-bottom: var(--space-2);
  color: #d99a00;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.review-quote {
  margin: 0 0 var(--space-4);
}

.review-quote p {
  margin: 0;
}

.review-rating-only {
  margin: auto 0 var(--space-4);
  font-size: 1.1rem;
  font-weight: 700;
}

.review-card .reviewer {
  margin-top: auto;
}

.review-source {
  margin: var(--space-1) 0 0;
  color: var(--gray-700);
  font-size: 0.875rem;
}

.review-actions {
  flex-wrap: wrap;
  gap: var(--space-2);
}

.contact-shell {
  max-width: 680px;
  margin-inline: auto;
  text-align: left;
}

.contact-shell .btn {
  display: flex;
  width: max-content;
  margin-inline: auto;
}

.field-row {
  display: grid;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

input {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem;
  border: 1px solid #b6b6b6;
  border-radius: 6px;
  font: inherit;
}

select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem;
  border: 1px solid #b6b6b6;
  border-radius: 6px;
  background: var(--neutral-100);
  font: inherit;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-row--honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-status {
  max-width: 680px;
  margin: 0 auto var(--space-3);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  text-align: left;
  font-weight: 700;
}

.contact-status--success {
  border: 1px solid #2d7d46;
  background: #e9f7ee;
  color: #145c2c;
}

.contact-status--error {
  border: 1px solid var(--red-700);
  background: #fff0f1;
  color: var(--red-800);
}

.site-footer {
  background: var(--black);
  color: var(--neutral-100);
  padding: var(--space-4) 0;
  border-top: 3px solid var(--red-700);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
}

.site-footer a {
  color: var(--red-500);
}

.footer-links {
  width: 100%;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-version {
  color: var(--gray-300);
}

.legal-page .container {
  text-align: left;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  text-align: left;
}

.legal-content h1::after {
  margin-left: 0;
}

.legal-content h2 {
  margin-top: var(--space-5);
  text-align: left;
}

.legal-content h2::after {
  margin-left: 0;
}

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

  .btn-primary::before {
    animation: none;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .card {
    transition: none;
  }

  .hero-slide {
    transition: none;
  }

  html.js .project-carousel__slide {
    animation: none;
  }
}

@media (min-width: 480px) {
  .services-grid,
  .reviews-grid,
  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023.98px) {
  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  html.js .nav-toggle {
    display: inline-flex;
  }

  html.js .nav-menu {
    display: none;
    order: 4;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-inline: 0;
    gap: var(--space-2);
    padding: var(--space-2) 0;
  }

  html.js .nav-menu a {
    min-width: 10rem;
    justify-content: center;
    margin-inline: auto;
  }

  html.js .nav-menu[aria-hidden="false"] {
    display: flex;
  }

}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-content {
    max-width: 760px;
  }

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

  .project-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  }

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

  .feature-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
    text-align: left;
  }

}

@media (max-width: 767.98px) {
  .hero {
    min-height: auto;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .section {
    padding: 4rem 0;
  }

}

@media (min-width: 1280px) {
  :root {
    --site-max: 1280px;
  }
}
