:root {
  --brand: #e5322d;
  --brand-hover: #c52521;
  --brand-soft: #fff1f0;
  --ink: #14161a;
  --muted: #666a73;
  --line: #e5e6e9;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --dark: #121419;
  --dark-soft: #1c1f26;
  --container: 1240px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 12px 35px rgb(20 22 26 / 7%);
  --shadow-lg: 0 30px 90px rgb(20 22 26 / 15%);
  --transition: 240ms cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

body.menu-open {
  overflow: hidden;
}

body,
button,
input,
textarea,
select {
  font: inherit;
}

main {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: white;
  background: var(--brand);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 82%);
  backdrop-filter: blur(18px);
  transition:
    min-height var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.site-header.is-scrolled {
  border-color: rgb(20 22 26 / 8%);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 12px 40px rgb(20 22 26 / 6%);
}

.header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  transition: min-height var(--transition);
}

.site-header.is-scrolled .header__inner {
  min-height: 76px;
}

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

.brand__symbol {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--brand);
  border-radius: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgb(229 50 45 / 22%);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.brand__description {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: #393c43;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color var(--transition);
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

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

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  width: 17px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition);
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle__icon::before {
  top: -5px;
}

.nav-toggle__icon::after {
  top: 5px;
}

.nav-toggle.is-open .nav-toggle__icon {
  background: transparent;
}

.nav-toggle.is-open .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 23px;
  border: 1px solid var(--brand);
  color: white;
  background: var(--brand);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgb(229 50 45 / 16%);
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.button span {
  font-size: 1.05rem;
  transition: transform var(--transition);
}

.button:hover,
.button:focus-visible {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
  box-shadow: 0 18px 35px rgb(229 50 45 / 25%);
  transform: translateY(-2px);
}

.button:hover span,
.button:focus-visible span {
  transform: translate(2px, -1px);
}

.button--small {
  min-height: 43px;
  padding: 9px 17px;
}

.button--outline {
  color: var(--ink);
  border-color: var(--line);
  background: white;
  box-shadow: none;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--ink);
  border-color: #cacdd2;
  background: var(--soft);
  box-shadow: none;
}

.button--light {
  color: var(--ink);
  border-color: white;
  background: white;
  box-shadow: none;
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--ink);
  border-color: #f0f0f0;
  background: #f0f0f0;
  box-shadow: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow__dot,
.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(229 50 45 / 10%);
}

.eyebrow--light {
  color: #ffb6bd;
}

.eyebrow--light .eyebrow__dot {
  background: #ff7e8a;
  box-shadow: 0 0 0 5px rgb(255 126 138 / 12%);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 155px 0 90px;
  background:
    radial-gradient(
      circle at 6% 15%,
      rgb(229 50 45 / 8%),
      transparent 25%
    ),
    linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.75fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.hero h1,
.page-hero h1,
.error-page h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 6.3rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 span {
  color: var(--brand);
}

.hero__text {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 52px 0 0;
}

.hero__facts div {
  padding: 17px 18px;
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 68%);
  border-radius: var(--radius-sm);
}

.hero__facts dt {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 4px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero__panel {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 45px);
  overflow: hidden;
  color: white;
  background:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(145deg, #242832 0%, #111318 70%);
  background-size: 48px 48px, 48px 48px, auto;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero__panel::before {
  position: absolute;
  right: -110px;
  bottom: -130px;
  z-index: -1;
  width: 370px;
  height: 370px;
  background: var(--brand);
  border-radius: 50%;
  filter: blur(20px);
  content: "";
  opacity: 0.75;
}

.hero__panel::after {
  position: absolute;
  top: 32%;
  right: -25%;
  z-index: -1;
  width: 400px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff8a95);
  content: "";
  transform: rotate(-38deg);
}

.hero__panel-top {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__panel-top .status-dot {
  background: #65e093;
  box-shadow: 0 0 0 5px rgb(101 224 147 / 11%);
}

.hero__panel-center {
  display: flex;
  flex-direction: column;
}

.hero__panel-center span {
  color: #aeb2bd;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__panel-center strong {
  margin-top: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 9vw, 8.7rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.hero__panel-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

.hero__panel-bottom p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero__panel-bottom span {
  max-width: 210px;
  color: #c5c8d0;
  font-size: 0.72rem;
  text-align: right;
}

.section {
  padding: clamp(90px, 10vw, 145px) 0;
}

.section--dark {
  position: relative;
  color: white;
  background:
    radial-gradient(
      circle at 90% 15%,
      rgb(229 50 45 / 18%),
      transparent 27%
    ),
    var(--dark);
}

.section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.section h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.text-link span {
  color: var(--brand);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.service-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(25px, 3vw, 34px);
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.service-card:hover {
  border-color: rgb(229 50 45 / 25%);
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__number {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card__arrow {
  color: #a1a4ab;
  font-size: 1.15rem;
  transition:
    color var(--transition),
    transform var(--transition);
}

.service-card:hover .service-card__arrow {
  color: var(--brand);
  transform: translate(2px, -2px);
}

.service-card h2,
.service-card h3 {
  margin: 70px 0 14px;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(60px, 9vw, 135px);
  align-items: start;
}

.split-section__content > p {
  margin: 0 0 32px;
  color: #b8bbc3;
  font-size: 1.04rem;
}

.feature-list {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  color: #e4e5e8;
  font-size: 0.88rem;
  font-weight: 600;
}

.feature-list li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  content: "";
}

.callout {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(42px, 7vw, 85px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(
      circle at 90% 100%,
      rgb(255 255 255 / 15%),
      transparent 30%
    ),
    linear-gradient(135deg, var(--brand), #a91d1a);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgb(229 50 45 / 20%);
}

.callout__content {
  position: relative;
  z-index: 1;
}

.callout h2 {
  max-width: 730px;
}

.callout__content > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: #ffd7da;
}

.page-hero {
  position: relative;
  padding: 190px 0 115px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 25%,
      rgb(229 50 45 / 11%),
      transparent 25%
    ),
    linear-gradient(180deg, #f7f7f8, #ffffff);
}

.page-hero::after {
  position: absolute;
  top: 145px;
  right: 9%;
  width: 110px;
  height: 110px;
  border: 24px solid rgb(229 50 45 / 8%);
  border-radius: 28px;
  content: "";
  transform: rotate(22deg);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__content > p:last-child {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.prose {
  max-width: 880px;
  color: #3f4249;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.8;
}

.prose p {
  margin: 0 0 28px;
}

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

.contact-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 4vw, 43px);
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.contact-card:hover {
  border-color: rgb(229 50 45 / 25%);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.empty-state {
  max-width: 850px;
  padding: clamp(38px, 6vw, 75px);
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: var(--radius-lg);
}

.empty-state h2 {
  margin-bottom: 20px;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .75, .2, 1);
}

.project-card > a {
  display: block;
  overflow: hidden;
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-card__content {
  padding: 29px;
}

.project-card__content span {
  color: var(--brand);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card__content h2 {
  margin: 9px 0 26px;
  font-size: 1.55rem;
}

.project-card__content a {
  display: inline-flex;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.project-details dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.project-details dl div {
  padding: 31px;
  border-right: 1px solid var(--line);
}

.project-details dl div:last-child {
  border-right: 0;
}

.project-details dt {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-details dd {
  margin: 8px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  background: var(--soft);
}

.error-page .button {
  margin-top: 40px;
}

.site-footer {
  padding: 90px 0 28px;
  color: #aeb1b8;
  background: #101216;
}

.footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footer__brand {
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.footer__introduction p {
  margin: 17px 0 0;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  color: white;
  border-bottom: 1px solid var(--brand);
  font-size: 0.86rem;
  font-weight: 800;
}

.footer__cta span {
  color: #ff7783;
}

.footer__grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.25fr 1fr;
  gap: 55px;
  padding-top: 55px;
}

.site-footer h2 {
  margin: 0 0 23px;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: white;
}

.site-footer address {
  font-style: normal;
}

.site-footer p {
  margin-top: 0;
}

.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 65px;
  padding-top: 25px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.7rem;
}

:focus-visible {
  outline: 3px solid rgb(229 50 45 / 40%);
  outline-offset: 4px;
}

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

@media (max-width: 940px) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }

  .js .site-nav.is-open {
    display: flex;
  }

  .site-nav > a {
    padding: 14px 16px;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero__grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    min-height: 440px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header__inner {
    min-height: 78px;
  }

  .site-header.is-scrolled .header__inner {
    min-height: 70px;
  }

  .brand__symbol {
    width: 39px;
    height: 39px;
  }

  .brand__description {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .hero h1,
  .page-hero h1,
  .error-page h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

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

  .hero__panel {
    min-height: 390px;
  }

  .hero__panel-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__panel-bottom span {
    text-align: left;
  }

  .section__heading,
  .callout,
  .footer__top,
  .footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-grid,
  .contact-grid,
  .project-grid,
  .project-gallery,
  .footer__grid,
  .project-details dl {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
  }

  .project-details dl div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-details dl div:last-child {
    border-bottom: 0;
  }

  .page-hero {
    padding: 145px 0 80px;
  }

  .page-hero::after {
    display: none;
  }

  .footer__grid {
    gap: 42px;
  }
}

@media (max-width: 460px) {
  .hero__facts {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__panel-center strong {
    font-size: 5rem;
  }
}

/* Tipografia global */
body,
button,
input,
textarea,
select,
p,
a,
li,
dt,
dd,
address,
span {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
.brand__symbol,
.brand__name,
.hero__facts dd,
.hero__panel-center strong,
.hero__panel-bottom p,
.contact-card a,
.contact-card strong,
.project-details dd,
.footer__brand {
  font-family: "Space Grotesk", "Inter", sans-serif;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 24px;
}

.form-shell {
  padding: clamp(28px, 5vw, 55px);
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.form-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.form-heading > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.form-status {
  margin-bottom: 25px;
  padding: 18px 20px;
  border: 1px solid;
  border-radius: var(--radius-sm);
}

.form-status strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.form-status p {
  margin: 0;
  font-size: 0.86rem;
}

.form-status--success {
  color: #175d36;
  border-color: #bce4cd;
  background: #edf9f2;
}

.form-status--error {
  color: #8a1c28;
  border-color: #f0bec4;
  background: #fff1f2;
}

.form-development-note {
  margin-bottom: 25px;
  padding: 13px 16px;
  color: #65520c;
  border: 1px solid #eadb9d;
  background: #fffbea;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field__heading label {
  display: block;
  margin-bottom: 9px;
  color: #30333a;
  font-size: 0.78rem;
  font-weight: 800;
}

.field label > span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d9dbe0;
  color: var(--ink);
  background: #fbfbfc;
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.field input,
.field select {
  min-height: 55px;
  padding: 0 16px;
}

.field textarea {
  min-height: 175px;
  padding: 15px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 4px rgb(229 50 45 / 9%);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #999ca3;
}

.field__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.field__heading > span {
  color: var(--muted);
  font-size: 0.7rem;
}

.field-error {
  display: block;
  margin-top: 7px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
}

.checkbox-field {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  margin: 0 !important;
  cursor: pointer;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: auto;
  flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.checkbox-field span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.76rem !important;
  line-height: 1.55;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.form-footer p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-footer button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.contact-sidebar {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 15px;
}

.contact-sidebar__card {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 25px;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
}

.contact-sidebar__card > span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-sidebar__card a,
.contact-sidebar__card strong {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.contact-sidebar__card--dark {
  padding: 31px;
  color: white;
  background:
    radial-gradient(
      circle at 100% 100%,
      rgb(229 50 45 / 35%),
      transparent 35%
    ),
    var(--dark);
  border-color: var(--dark);
}

.contact-sidebar__card--dark h2 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.05;
}

.contact-sidebar__card--dark > p:not(.eyebrow) {
  margin: 0;
  color: #b9bcc4;
  font-size: 0.82rem;
}

.contact-sidebar__card--dark .button {
  margin-top: 10px;
}

@media (max-width: 950px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-sidebar__card--dark {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .form-heading,
  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-grid,
  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .contact-sidebar__card--dark {
    grid-column: auto;
  }

  .form-footer .button {
    width: 100%;
  }
}

.brand__mark {
  display: grid;
  width: 52px;
  height: 48px;
  flex: 0 0 52px;
  place-items: center;
  overflow: visible;
}

.brand__logo {
  display: block;
  width: 52px;
  height: 48px;
  max-width: none;
  object-fit: contain;
}

.language-switch {
  display: inline-flex;
  min-width: 40px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em;
}

.language-switch::after {
  display: none !important;
}

.service-card__priority {
  color: var(--brand);
  font-size: 0.72rem;
}

.coverage-section,
.company-commitments,
.client-section,
.privacy-section {
  background: var(--soft);
}

.split-section--centered {
  align-items: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: #40434a;
  background: white;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.tag-list--large {
  gap: 13px;
}

.tag-list--large li {
  padding: 14px 19px;
  font-size: 0.88rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 9vw, 135px);
  align-items: start;
}

.editorial-grid h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

.prose--compact {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: clamp(65px, 8vw, 105px);
}

.fact-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: var(--radius-md);
}

.fact-card strong {
  color: var(--brand);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
}

.fact-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section__summary {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

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

.commitment-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
}

.commitment-card > span {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.commitment-card h3 {
  max-width: 520px;
  margin: 45px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.equipment-section {
  background: white;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  position: relative;
  padding: 17px 17px 17px 44px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 650;
}

.check-grid li::before {
  position: absolute;
  top: 18px;
  left: 17px;
  color: var(--brand);
  content: "✓";
  font-weight: 900;
}

.technical-notice {
  max-width: 850px;
  margin: 45px 0 0;
  padding: 19px 22px;
  border-left: 3px solid var(--brand);
  color: var(--muted);
  background: white;
  font-size: 0.82rem;
}

.page-hero--compact {
  padding-bottom: 90px;
}

.policy-updated {
  display: inline-flex;
  margin-top: 30px;
  padding: 8px 12px;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
  overflow-wrap: anywhere;
}

.privacy-summary strong {
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.privacy-summary span,
.privacy-summary a {
  color: var(--muted);
  font-size: 0.76rem;
}

.policy-content {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-lg);
}

.policy-content section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
}

.policy-content p {
  margin: 0 0 14px;
  color: #4e5159;
}

.checkbox-field a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-sidebar__card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.sidebar-link {
  color: var(--brand);
  font-size: 0.76rem !important;
  font-weight: 800;
}

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

@media (max-width: 940px) {
  .editorial-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .brand__mark,
  .brand__logo {
    width: 44px;
    height: 42px;
  }

  .brand__mark {
    flex-basis: 44px;
  }

  .fact-grid,
  .commitment-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .fact-card {
    min-height: 150px;
  }
}
