/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  border: 0;
  background: none;
}
svg {
  display: block;
}
::selection {
  background: #00d5e840;
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 6px;
}
/* VARIABLES */
:root {
  --bg-primary: #03090f;
  --bg-secondary: #071019;
  --text-primary: #f7f7f7;
  --text-secondary: #bfc8d2;
  --orange: #ff7900;
  --cyan: #00d5e8;
  --border: #1b2933;
  --gradient: linear-gradient(100deg, #ff7900 0%, #ff9a00 46%, #00d5e8 78%);
  --max-width: 1280px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.container {
  width: 90.5%;
  max-width: var(--max-width);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 12px;
  background: var(--cyan);
  color: var(--bg-primary);
  z-index: 100;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 500;
  color: var(--text-secondary);
}
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms ease,
    border-color 280ms ease,
    color 280ms ease,
    background-color 280ms ease;
}
.button-primary {
  background: linear-gradient(110deg, #ff7900, #ff880a);
  color: #080d10;
  border-color: #ff7900;
}
.button-outline {
  border-color: #70808a;
  background: #070d1280;
}
.button-primary::before,
.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transform: translateX(-101%);
  transition: transform 500ms var(--ease-out);
}
.button-primary::before {
  background: linear-gradient(105deg, #ff790000, #ff9a0080 65%, #00d5e824);
}
.header-cta::before {
  background: linear-gradient(90deg, #00d5e80f, #00d5e829);
  transition-duration: 280ms;
}
.button [data-icon="arrow"],
.text-link [data-icon="arrow"],
.project-meta > [data-icon="arrow"] {
  transition: transform 250ms ease;
}
.button [data-icon="whatsapp"] {
  transition: transform 280ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px) scale(1.01);
  }
  .button-primary:hover {
    border-color: #ff9a00;
    box-shadow: 0 8px 24px #ff79002e;
  }
  .button-primary:hover::before,
  .header-cta:hover::before {
    transform: translateX(0);
  }
  .button-outline:hover {
    background-color: #111c25;
    border-color: #00d5e8b3;
    box-shadow: 0 8px 24px #00d5e814;
  }
  .header-cta:hover {
    border-color: #6ee5ef;
    box-shadow: 0 8px 24px #00d5e814;
  }
  .button:hover [data-icon="arrow"],
  .text-link:hover [data-icon="arrow"],
  .project-link:hover .project-meta > [data-icon="arrow"] {
    transform: translateX(4px);
  }
  .button-outline:hover [data-icon="whatsapp"] {
    transform: scale(1.08) rotate(-3deg);
  }
  .header-instagram:hover,
  .navigation > .header-instagram:hover {
    color: var(--cyan);
  }
}
.button:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 140ms;
}
@media (hover: none), (pointer: coarse) {
  .button {
    transition-duration: 160ms;
  }
  .button:active {
    transform: scale(0.97);
  }
}
[data-icon] {
  display: inline-flex;
  flex-shrink: 0;
}
[data-icon] svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.section-heading h2 {
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.2;
  letter-spacing: -1px;
  font-weight: 700;
}
.section-heading p,
.text-link {
  color: var(--text-secondary);
  font-size: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--text-primary);
}
/* HEADER */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  transition:
    transform 320ms var(--ease-out),
    background-color 220ms ease,
    border-color 220ms ease;
  border-bottom: 1px solid transparent;
}
.header.is-hidden {
  transform: translateY(-100%);
}
.header:has(:focus-visible),
.header.menu-open {
  transform: translateY(0);
}
.header-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: color 280ms ease;
}
.instagram-desktop {
  margin-inline: -10px;
}
.mobile-header-actions {
  display: none;
}
.header.scrolled,
.header.menu-open {
  background: #03090feb;
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  line-height: 1;
}
.brand img {
  width: 57px;
  height: 54px;
}
.brand strong {
  display: block;
  font-size: 34px;
  letter-spacing: 1px;
  font-weight: 800;
}
.brand small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 9px;
  margin-top: 5px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 34px;
}
.navigation > a:not(.button):not(.header-instagram) {
  font-size: 13px;
  color: var(--text-secondary);
  position: relative;
  padding-block: 14px;
}
.navigation > a[href^="#"] .nav-label {
  position: relative;
  display: inline-block;
}
.navigation > a[href^="#"] .nav-label::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 26px;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition:
    transform 260ms var(--ease-out),
    opacity 260ms var(--ease-out);
}
.navigation > a:hover,
.navigation > a.active {
  color: #fff;
}
.navigation > a[href^="#"].active .nav-label::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .navigation > a[href^="#"]:not(.active):hover .nav-label::after {
    transform: translateX(-50%) scaleX(0.65);
    opacity: 0.5;
  }
}
.header-cta {
  border-color: var(--cyan);
  min-height: 44px;
  margin-left: 10px;
  padding: 10px 24px;
}
.menu-toggle {
  display: none;
}
/* HERO */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  padding-top: 84px;
  min-height: clamp(450px, 39vw, 575px);
  padding-bottom: 16px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  margin-bottom: 21px;
  font-size: clamp(9px, 0.8vw, 11px);
}
h1 {
  font-size: clamp(38px, 4.16vw, 59px);
  font-weight: 800;
  line-height: 1.075;
  letter-spacing: -1.8px;
}
h1 > span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.hero-description {
  margin-top: 21px;
  font-size: clamp(16px, 1.52vw, 21px);
  color: var(--text-secondary);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 27px;
}
.hero-art {
  position: relative;
  width: 110%;
  aspect-ratio: 597/384;
  overflow: hidden;
  margin-left: -1.5%;
  isolation: isolate;
}
.hero-art img {
  position: absolute;
  max-width: none;
  width: 187.9397%;
  height: auto;
  left: -87.9397%;
  top: -17.1875%;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--bg-primary),
      transparent 4%,
      transparent 96%,
      var(--bg-primary)
    ),
    linear-gradient(
      0deg,
      var(--bg-primary),
      transparent 7%,
      transparent 96%,
      var(--bg-primary)
    );
}
/* PROJECTS */
.projects {
  padding-top: 4px;
  padding-bottom: 40px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.project-link {
  width: 100%;
  text-align: left;
  padding: 0;
  display: block;
  border-radius: 7px;
}
.project-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 330/232;
  border-radius: 7px;
  border: 1px solid #334048;
  background: #0a141c;
}
.project-image img {
  position: absolute;
  max-width: none;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
  transform-origin: center;
}
.project-link:hover .project-image img {
  transform: scale(1.025);
}
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5px 0;
}
.project-meta small {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
}
.project-meta strong {
  display: block;
  font-weight: 600;
  font-size: 18px;
}
.project-meta > [data-icon] {
  transition: transform 250ms ease;
}
/* SERVICES */
.services {
  padding-top: 4px;
  padding-bottom: 16px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service {
  display: flex;
  align-items: flex-start;
  gap: 27px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 29px 28px;
  background: #050c12;
  min-height: 143px;
}
.service-icon {
  color: var(--orange);
  margin-top: 4px;
}
.service-icon svg {
  width: 43px;
  height: 43px;
  stroke-width: 1.4;
}
.service-icon.cyan {
  color: var(--cyan);
}
.service h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.service p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  max-width: 260px;
}
/* ABOUT */
.closing {
  position: relative;
  isolation: isolate;
}
.closing::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 20%;
  opacity: 0.42;
  background-image:
    linear-gradient(
      180deg,
      var(--bg-primary),
      #03090f26 40%,
      var(--bg-primary) 90%
    ),
    url("../assets/img/referencia-pulse.png");
  background-size:
    100% 100%,
    430% auto;
  background-position:
    center,
    right 80%;
  background-repeat: no-repeat;
}
.about {
  text-align: center;
  padding: 65px 0 39px;
}
.about .eyebrow {
  font-size: 10px;
  margin-bottom: 18px;
}
.about h2 {
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.28;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: -0.7px;
}
.about h2 strong {
  color: var(--text-primary);
  font-weight: 750;
}
/* CTA */
.cta {
  border: 1px solid transparent;
  border-radius: 13px;
  background:
    linear-gradient(#071019, #071019) padding-box,
    linear-gradient(115deg, #ad4d08, #193b47 52%, #067686) border-box;
  overflow: hidden;
}
.cta-inner {
  padding: 34px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(ellipse at 0% 0%, #af400226, transparent 45%),
    radial-gradient(ellipse at 100% 0%, #00d5e81c, transparent 46%);
}
.cta h2 {
  font-size: clamp(23px, 2.45vw, 34px);
  letter-spacing: -0.8px;
  line-height: 1.3;
  font-weight: 700;
}
.cta p {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 15px;
}
.cta .button {
  flex-shrink: 0;
}
/* FOOTER */
.footer {
  padding-top: 34px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer .brand img {
  width: 43px;
  height: 42px;
}
.footer .brand strong {
  font-size: 25px;
}
.footer .brand small {
  font-size: 8px;
  letter-spacing: 7px;
}
.footer-brand p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.footer nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
}
.footer nav a:hover {
  color: var(--cyan);
}
.socials {
  display: flex;
  gap: 4px;
  padding-left: 25px;
  border-left: 1px solid var(--border);
}
.socials a {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #d4dbe2;
  transition: color 0.2s;
}
.socials a:hover {
  color: var(--cyan);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0 30px;
  color: var(--text-secondary);
  font-size: 11px;
}
.footer-bottom p:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brazil {
  width: 18px;
  height: 13px;
}
/* MOTION & DIALOG */
.reveal.pending {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.pending.visible {
  opacity: 1;
  transform: none;
}
.project-dialog {
  color: var(--text-primary);
  background: #071019;
  border: 1px solid #293944;
  border-radius: 14px;
  padding: 38px;
  max-width: 1000px;
  width: 90%;
  max-height: 88dvh;
  overflow: auto;
}
.project-dialog::backdrop {
  background: #000b;
  backdrop-filter: blur(7px);
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #14212b;
}
.project-dialog h2 {
  font-size: 30px;
  margin: 12px 35px 10px 0;
}
.project-dialog > p:not(.eyebrow) {
  color: var(--text-secondary);
  max-width: 740px;
  font-size: 14px;
}
.dialog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 25px;
}
.dialog-single {
  max-width: 730px;
  margin: 25px auto 0;
}
.dialog-caption {
  font-size: 13px;
  margin-top: 12px;
  color: var(--text-secondary);
}
body.modal-open {
  overflow: hidden;
}
.noscript-note {
  padding: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}
/* RESPONSIVE */
@media (min-width: 1024px) {
  .container {
    width: calc(100% - 64px);
    max-width: 1440px;
  }
  .hero-art {
    width: calc(100% + 32px);
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 610px;
  }
  .projects {
    padding-bottom: 55px;
  }
  .about {
    padding-block: 75px 45px;
  }
}
@media (max-width: 1199px) {
  .header-inner {
    height: 76px;
  }
  .brand strong {
    font-size: 29px;
  }
  .brand img {
    width: 50px;
    height: 48px;
  }
  .brand small {
    font-size: 10px;
    letter-spacing: 8px;
  }
  .navigation {
    gap: 27px;
  }
  .header-cta {
    padding: 10px 20px;
    font-size: 12px;
  }
  .hero {
    padding-top: 78px;
    min-height: 450px;
    padding-bottom: 16px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 12px 22px;
    min-height: 44px;
  }
  .hero .eyebrow {
    letter-spacing: 2.7px;
  }
  .service {
    padding: 25px 24px;
    gap: 24px;
    min-height: 114px;
  }
  .service h3 {
    font-size: 16px;
  }
  .service p {
    font-size: 13px;
  }
  .service-icon svg {
    width: 36px;
    height: 36px;
  }
  .section-heading {
    margin-bottom: 19px;
  }
  .footer-brand {
    gap: 17px;
  }
  .footer nav {
    gap: 25px;
  }
  .socials {
    padding-left: 18px;
  }
  .cta-inner {
    padding: 28px 52px;
  }
  .about {
    padding-top: 35px;
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .container {
    width: 91%;
  }
  .navigation {
    gap: 18px;
  }
  .navigation > a:not(.button) {
    font-size: 12px;
  }
  .header-cta {
    padding: 9px 12px;
    margin-left: 0;
    font-size: 11px;
    gap: 6px;
  }
  .brand {
    gap: 6px;
  }
  .brand strong {
    font-size: 25px;
  }
  .brand img {
    width: 42px;
  }
  .brand small {
    letter-spacing: 6.5px;
  }
  .hero {
    min-height: 405px;
  }
  .hero h1 {
    font-size: 3.95vw;
    letter-spacing: -1px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.8px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 10px 12px;
    gap: 8px;
  }
  .hero-art {
    width: 108%;
  }
  .desktop-break {
    display: none;
  }
  .project-grid,
  .service-grid {
    gap: 14px;
  }
  .service {
    padding: 22px 17px;
    gap: 14px;
  }
  .service h3 {
    font-size: 14px;
  }
  .service p {
    font-size: 12px;
  }
  .service-icon svg {
    width: 30px;
    height: 30px;
  }
  .section-heading h2 {
    font-size: 27px;
  }
  .section-heading p {
    font-size: 12px;
  }
  .cta-inner {
    padding: 28px;
  }
  .cta h2 {
    font-size: 24px;
  }
  .cta p {
    font-size: 13px;
  }
  .cta .button {
    font-size: 12px;
    padding: 12px 18px;
  }
  .footer-main {
    flex-wrap: wrap;
  }
  .footer-brand p {
    font-size: 11px;
  }
  .footer nav {
    gap: 19px;
  }
  .socials {
    margin-left: auto;
    border: 0;
  }
  .footer-main {
    row-gap: 12px;
  }
}
@media (max-width: 767px) {
  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }
  .navigation .instagram-desktop {
    display: none;
  }
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 76px;
  }
  .brand strong {
    font-size: 27px;
  }
  .brand small {
    font-size: 9px;
    letter-spacing: 7px;
  }
  .brand img {
    width: 46px;
    height: 44px;
  }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  .menu-toggle span {
    height: 2px;
    width: 23px;
    background: #fff;
    transition:
      transform 0.2s,
      opacity 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .navigation {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 16px 20px 24px;
    background: #050d14;
    border-bottom: 1px solid var(--border);
    gap: 3px;
  }
  .navigation.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .navigation > a:not(.button) {
    font-size: 15px;
    padding: 12px;
  }
  .navigation > a::after {
    display: none;
  }
  .navigation .header-cta {
    margin: 12px 0 0;
    min-height: 48px;
    font-size: 14px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 112px;
    padding-bottom: 28px;
    min-height: auto;
  }
  .hero-copy {
    width: 100%;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(30px, 7.65vw, 55px);
    letter-spacing: -1.25px;
    line-height: 1.12;
  }
  .hero-description {
    font-size: 16px;
    max-width: 420px;
    margin-top: 20px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    padding: 13px 16px;
    font-size: 12px;
    min-height: 48px;
    gap: 10px;
  }
  .hero-art {
    width: calc(100% + 20px);
    margin: 28px -10px 0;
    aspect-ratio: 597/384;
  }
  .projects {
    padding-top: 12px;
    padding-bottom: 45px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
  }
  .section-heading h2 {
    font-size: 27px;
    letter-spacing: -0.7px;
  }
  .projects .section-heading {
    flex-wrap: wrap;
    align-items: center;
  }
  .text-link {
    font-size: 12px;
    min-height: 36px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .project-meta {
    padding-top: 11px;
  }
  .project-meta strong {
    font-size: 19px;
  }
  .project-meta small {
    font-size: 13px;
  }
  .services {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .services .section-heading {
    flex-direction: column;
    gap: 12px;
  }
  .section-heading p {
    font-size: 14px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service {
    padding: 27px;
    gap: 26px;
    min-height: 132px;
    align-items: center;
  }
  .service h3 {
    font-size: 18px;
  }
  .service p {
    font-size: 14px;
    max-width: 340px;
  }
  .service-icon svg {
    width: 40px;
    height: 40px;
  }
  .about {
    padding: 65px 0 40px;
  }
  .about .eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .about h2 {
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: -0.65px;
  }
  .closing::before {
    background-size:
      100% 100%,
      auto 3100px;
    background-position:
      center,
      right 80%;
    opacity: 0.22;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 29px 25px;
    gap: 24px;
  }
  .cta h2 {
    font-size: 27px;
    line-height: 1.25;
  }
  .cta p {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.7;
  }
  .cta .button {
    width: 100%;
    font-size: 14px;
  }
  .footer {
    padding-top: 36px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
    padding-bottom: 26px;
  }
  .footer-brand {
    gap: 23px;
  }
  .footer-brand p {
    font-size: 12px;
  }
  .footer nav {
    flex-wrap: wrap;
    gap: 10px 24px;
    font-size: 13px;
  }
  .footer nav a {
    padding-block: 9px;
  }
  .socials {
    border: 0;
    padding-left: 0;
    gap: 10px;
    margin-left: -8px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    font-size: 10px;
    padding-top: 22px;
  }
  .dialog-grid {
    grid-template-columns: 1fr;
  }
  .project-dialog {
    padding: 28px 20px;
  }
  .project-dialog h2 {
    font-size: 26px;
  }
  .project-dialog .eyebrow {
    font-size: 9px;
    letter-spacing: 1.8px;
  }
}
@media (max-width: 359px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero-actions .button {
    width: 100%;
    font-size: 13px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.6px;
  }
  .hero h1 {
    font-size: 29px;
  }
  .footer-brand {
    gap: 15px;
  }
  .footer-brand p {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .button:hover,
  .button:active,
  .button [data-icon],
  .text-link [data-icon="arrow"],
  .project-link .project-meta > [data-icon="arrow"] {
    transform: none !important;
  }
  .button-primary::before,
  .header-cta::before {
    transform: none;
    opacity: 0;
  }
  .button-primary:hover::before,
  .header-cta:hover::before {
    opacity: 1;
  }
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal.pending {
    opacity: 1;
    transform: none;
  }
}
