:root {
  --sand: #f4f2ed;
  --paper: #fffdf9;
  --ink: #173a3e;
  --teal: #155d64;
  --teal-deep: #0f4247;
  --orange: #e96d45;
  --orange-deep: #c85535;
  --sage: #ceddde;
  --line: rgba(23, 58, 62, 0.18);
  --shadow: 0 16px 45px rgba(23, 58, 62, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--teal);
  border-radius: 4px 14px 4px 14px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-icon {
  font-size: 18px;
  line-height: 1;
}

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

main {
  min-height: 100vh;
}

.site-header {
  width: min(1440px, calc(100% - 80px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px 16px 10px 14px;
  background: var(--teal);
  color: var(--paper);
  font-size: 12px;
  transform: rotate(-4deg);
  box-shadow: 4px 4px 0 rgba(233, 109, 69, 0.35);
}

nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
}

nav a,
.header-cta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

nav a:hover,
.header-cta:hover {
  color: var(--orange-deep);
}

.header-cta {
  padding: 12px 16px;
  border: 1px solid var(--teal);
  border-radius: 4px 16px 4px 16px;
}

.hero {
  width: min(1440px, calc(100% - 80px));
  min-height: 670px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  align-items: center;
  gap: 30px;
  padding: 64px 0 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: rise-in 650ms ease-out both;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(62px, 6.3vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.065em;
  font-weight: 700;
}

h1 em {
  display: block;
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
}

.hero-intro {
  max-width: 650px;
  margin: 34px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(23, 58, 62, 0.78);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px 18px 6px 18px;
  font-size: 13px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--teal);
  color: var(--paper);
  box-shadow: 5px 6px 0 rgba(23, 58, 62, 0.16);
}

.button-primary:hover {
  background: var(--teal-deep);
  box-shadow: 7px 9px 0 rgba(233, 109, 69, 0.26);
}

.text-link {
  padding: 9px 0 5px;
  border-bottom: 2px solid var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.hero-proof {
  display: flex;
  gap: 26px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof strong {
  font-family: Georgia, serif;
  font-size: 25px;
}

.hero-proof span {
  max-width: 80px;
  color: rgba(23, 58, 62, 0.66);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 580px;
  position: relative;
  isolation: isolate;
  animation: rise-in 750ms 120ms ease-out both;
}

.hero-shape {
  position: absolute;
  z-index: -2;
}

.shape-one {
  width: 94%;
  height: 62%;
  top: 52px;
  right: 0;
  border-radius: 48% 52% 42% 58% / 62% 37% 63% 38%;
  background: var(--teal);
  transform: rotate(-5deg);
  box-shadow: var(--shadow);
}

.shape-two {
  width: 54%;
  height: 40%;
  bottom: 22px;
  left: 0;
  border-radius: 59% 41% 63% 37% / 45% 55% 45% 55%;
  background: var(--sage);
  transform: rotate(9deg);
}

.avatar {
  height: 590px;
  width: auto;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -8px;
  transform: translateX(-49%);
  filter: drop-shadow(0 24px 24px rgba(15, 42, 45, 0.22));
}

.intro-card {
  width: 230px;
  padding: 22px 24px;
  position: absolute;
  z-index: 4;
  top: 90px;
  right: -8px;
  background: var(--paper);
  border-radius: 10px 28px 10px 28px;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.intro-card span {
  color: var(--orange-deep);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-card strong {
  display: block;
  margin: 12px 0 8px;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
}

.intro-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(23, 58, 62, 0.72);
}

.orbit-label {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 34px;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--paper);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.stack-band {
  padding: 18px max(24px, calc((100% - 1440px) / 2));
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.stack-band ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  list-style: none;
}

.stack-band li {
  min-width: 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 14px;
  border-right: 1px solid rgba(255, 253, 249, 0.15);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stack-band li:last-child {
  border-right: 0;
}

.stack-band img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 7px;
  border-radius: 11px 5px 11px 5px;
  background: rgba(255, 253, 249, 0.96);
  object-fit: contain;
}

.section {
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading .kicker,
.services-intro .kicker,
.about-copy .kicker,
.contact-section .kicker {
  margin-bottom: 12px;
}

.section-heading h2,
.services-intro h2,
.about-copy h2,
.contact-section h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 300px;
  margin: 0;
  text-align: right;
  color: rgba(23, 58, 62, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(23, 58, 62, 0.14);
  border-radius: 22px 8px 22px 8px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  box-shadow: var(--shadow);
}

.project-forja {
  background: #171717;
  color: #fff8e8;
}
.project-zapei {
  background: var(--orange);
  color: #fffdf9;
}
.project-rota {
  background: var(--sage);
}
.project-aluno {
  background: var(--teal);
  color: #fffdf9;
}

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-topline strong {
  font-family: Georgia, serif;
  font-size: 34px;
  font-style: italic;
  opacity: 0.35;
}

.project-logo-wrap {
  /* height: 210px; */
  display: grid;
  place-items: center;
  margin: 12px 0 20px;
  /* padding: 22px; */
  background: rgba(255, 253, 249, 0.92);
  border-radius: 18px 6px 18px 6px;
  overflow: hidden;
}

.project-forja .project-logo-wrap {
  background: #080808;
}

.project-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-copy {
  margin-top: auto;
}

.project-copy h3 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.project-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  opacity: 0.78;
}

.services-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}

.services-intro {
  position: sticky;
  top: 36px;
  align-self: start;
}

.services-intro h2 {
  font-size: clamp(44px, 4.4vw, 66px);
}

.services-intro > p:last-child,
.about-copy > p {
  margin: 26px 0 0;
  color: rgba(23, 58, 62, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

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

.service-item {
  display: grid;
  grid-template-columns: 52px 1fr 30px;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--orange-deep);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.service-item h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.service-item p {
  max-width: 640px;
  margin: 0;
  color: rgba(23, 58, 62, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.service-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-item li,
.skill-cloud span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-arrow {
  font-size: 24px;
  transition: transform 180ms ease;
}

.service-item:hover .service-arrow {
  transform: translate(3px, -3px);
  color: var(--orange-deep);
}

.about-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 100px;
  padding: 120px max(40px, calc((100% - 1440px) / 2));
  background: var(--paper);
}

.about-quote {
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 50px;
  position: relative;
  background: var(--teal);
  color: var(--paper);
  border-radius: 12px 80px 12px 80px;
  overflow: hidden;
}

.about-quote::after {
  content: "";
  width: 240px;
  height: 240px;
  position: absolute;
  top: -80px;
  right: -50px;
  border: 34px solid var(--orange);
  border-radius: 50%;
  opacity: 0.9;
}

.quote-mark {
  position: absolute;
  top: 24px;
  left: 42px;
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
}

.about-quote blockquote {
  max-width: 650px;
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: clamp(39px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.testimonials-section {
  border-top: 1px solid var(--line);
}

.testimonials-heading > p {
  max-width: 340px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 18px;
}

.testimonial-card {
  min-width: 0;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px 8px 26px 8px;
  background: rgba(255, 253, 249, 0.7);
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  width: 130px;
  height: 130px;
  position: absolute;
  right: -65px;
  bottom: -70px;
  border: 20px solid rgba(233, 109, 69, 0.16);
  border-radius: 50%;
}

.testimonial-card-featured {
  background: var(--teal);
  color: var(--paper);
  border-color: transparent;
  transform: rotate(-0.7deg);
}

.testimonial-card-featured::after {
  border-color: rgba(206, 221, 222, 0.24);
}

.testimonial-mark {
  height: 62px;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 88px;
  line-height: 0.9;
}

.testimonial-card blockquote {
  max-width: 520px;
  margin: 26px 0 36px;
  position: relative;
  z-index: 1;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.testimonial-author div {
  min-width: 0;
}

.testimonial-author strong,
.testimonial-author div > span {
  display: block;
}

.testimonial-author strong {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.testimonial-author div > span {
  margin-top: 4px;
  font-size: 10px;
  opacity: 0.68;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  font-size: clamp(40px, 4vw, 64px);
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.skill-cloud span:nth-child(3n + 1) {
  border-color: var(--orange);
  background: rgba(233, 109, 69, 0.08);
}

.compact {
  margin-bottom: 30px;
}

.process-section {
  padding-bottom: 140px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px 8px 26px 8px;
  background: rgba(255, 253, 249, 0.35);
}

.process-grid article:nth-child(2) {
  transform: translateY(20px);
  background: var(--sage);
}

.process-grid span {
  color: var(--orange-deep);
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.process-grid h3 {
  margin: 62px 0 12px;
  font-size: 30px;
}

.process-grid p {
  margin: 0;
  color: rgba(23, 58, 62, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.contact-section {
  width: min(1440px, calc(100% - 80px));
  min-height: 530px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 9%;
  position: relative;
  isolation: isolate;
  background: var(--orange-deep);
  color: var(--paper);
  border-radius: 16px 100px 16px 100px;
  overflow: hidden;
}

.contact-section .kicker {
  color: var(--sage);
}

.contact-section h2 {
  max-width: 900px;
  font-size: clamp(54px, 6.6vw, 96px);
}

.contact-section > p:not(.kicker) {
  max-width: 720px;
  margin: 28px 0;
  color: rgba(255, 253, 249, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.contact-shape {
  width: 480px;
  height: 480px;
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -190px;
  border: 75px solid rgba(206, 221, 222, 0.62);
  border-radius: 50%;
}

.button-light {
  background: var(--paper);
  color: var(--teal);
}

.button-light:hover {
  box-shadow: 7px 9px 0 rgba(15, 66, 71, 0.3);
}

.site-footer {
  width: min(1440px, calc(100% - 80px));
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.site-footer p {
  color: rgba(23, 58, 62, 0.6);
}

.site-footer > a:last-child {
  font-weight: 900;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .section,
  .contact-section,
  .site-footer {
    width: min(100% - 48px, 960px);
  }

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

  .stack-band li:nth-child(4) {
    border-right: 0;
  }

  .stack-band li:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 253, 249, 0.15);
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  nav {
    display: none;
    width: 230px;
    padding: 20px;
    position: absolute;
    top: 76px;
    right: 0;
    flex-direction: column;
    gap: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px 22px 8px 22px;
    box-shadow: var(--shadow);
  }

  nav.is-open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 900px;
  }
  .hero-visual {
    min-height: 620px;
  }
  .avatar {
    height: 630px;
  }
  .shape-one {
    width: 72%;
    right: 5%;
  }
  .shape-two {
    width: 43%;
    left: 12%;
  }
  .intro-card {
    right: 8%;
  }
  .orbit-label {
    right: 12%;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .services-intro {
    position: static;
    max-width: 760px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-inline: 24px;
  }
  .about-copy {
    max-width: 820px;
  }

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

  .testimonial-card-featured {
    grid-column: 1 / -1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .site-header,
  .hero,
  .section,
  .contact-section,
  .site-footer {
    width: calc(100% - 32px);
  }

  .site-header {
    height: 76px;
  }
  .brand > span:last-child {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .menu-label {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 10px;
  }
  h1 {
    font-size: clamp(50px, 15vw, 72px);
  }
  .hero-intro {
    font-size: 15px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .hero-proof {
    flex-wrap: wrap;
  }
  .hero-visual {
    min-height: 500px;
    margin-top: 12px;
  }
  .avatar {
    height: 480px;
  }
  .shape-one {
    width: 95%;
    height: 59%;
    top: 60px;
    right: 3px;
  }
  .shape-two {
    width: 55%;
    left: -6%;
    bottom: 35px;
  }
  .intro-card {
    width: 176px;
    top: 42px;
    right: -3px;
    padding: 15px;
  }
  .intro-card strong {
    font-size: 19px;
  }
  .orbit-label {
    right: 0;
    bottom: 28px;
  }

  .stack-band {
    padding: 14px 16px;
  }
  .stack-band ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stack-band li {
    justify-content: flex-start;
    padding: 8px 12px;
    border-right: 1px solid rgba(255, 253, 249, 0.15);
    border-bottom: 1px solid rgba(255, 253, 249, 0.15);
  }
  .stack-band li:nth-child(even) {
    border-right: 0;
  }
  .stack-band li:nth-child(7) {
    grid-column: 1 / -1;
    justify-content: center;
    border-right: 0;
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-heading > p {
    text-align: left;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    min-height: 430px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card-featured {
    grid-column: auto;
  }
  .testimonial-card {
    min-height: 340px;
    padding: 26px;
  }
  .testimonial-card blockquote {
    font-size: 26px;
  }

  .services-section {
    gap: 35px;
  }
  .service-item {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  .service-arrow {
    display: none;
  }

  .about-section {
    padding-block: 78px;
  }
  .about-quote {
    min-height: 410px;
    padding: 30px;
    border-radius: 10px 48px 10px 48px;
  }
  .about-quote blockquote {
    font-size: 39px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid article:nth-child(2) {
    transform: none;
  }

  .contact-section {
    min-height: 560px;
    margin-bottom: 40px;
    padding: 54px 30px;
    border-radius: 12px 52px 12px 52px;
  }
  .contact-section h2 {
    font-size: clamp(48px, 14vw, 68px);
  }
  .site-footer {
    min-height: 170px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
  .site-footer p {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
