/* Cortex Láser — paleta inspirada en sitios de reformas locales (azul profundo + acento cálido) + verde oliva de marca */
:root {
  --ink: #1a2744;
  --ink-soft: #243552;
  --slate: #33363b;
  --muted: #5c6575;
  --cream: #f6f7f9;
  --white: #ffffff;
  --accent: #c7511f;
  --accent-hover: #a84318;
  --olive: #5b6735;
  --olive-light: #7a8a4a;
  --line: rgba(26, 39, 68, 0.08);
  --shadow: 0 24px 60px rgba(26, 39, 68, 0.12);
  --shadow-card-hover: 0 20px 50px rgba(26, 39, 68, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 72px;
  --nav-top: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-padding-top: var(--header-h);
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate);
  background: var(--cream);
  line-height: 1.62;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(91, 103, 53, 0.22);
  color: var(--ink);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

@media (max-width: 899px) {
  body.nav-drawer-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
  overflow: visible;
}

.site-header.is-open {
  z-index: 10050;
}

.nav-menu-cb:focus-visible + .nav-toggle {
  outline: 2px solid var(--olive-light);
  outline-offset: 2px;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(26, 39, 68, 0.04), 0 12px 40px rgba(26, 39, 68, 0.06);
}

.site-header__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 10px;
  transition: opacity 0.2s var(--ease-out);
}

.site-logo:hover {
  opacity: 0.92;
}

.site-logo:focus-visible {
  outline: 2px solid var(--olive-light);
  outline-offset: 4px;
}

.site-logo img {
  height: 44px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border-radius: 10px;
  color: var(--ink);
  transition: background 0.2s var(--ease-out);
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  user-select: none;
}

.nav-toggle:hover {
  background: rgba(26, 39, 68, 0.06);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--olive-light);
  outline-offset: 2px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease-out);
}

#nav-menu-cb:checked + .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#nav-menu-cb:checked + .nav-toggle span:nth-child(2) {
  opacity: 0;
}

#nav-menu-cb:checked + .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Móvil: fixed bajo la barra (por encima del hero; --nav-top lo ajusta site.js) */
.nav {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-top, 72px);
  z-index: 10040;
  width: 100%;
  max-height: min(calc(100vh - var(--nav-top, 72px)), 520px);
  max-height: min(calc(100dvh - var(--nav-top, 72px)), 520px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.35rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: var(--shadow);
}

#nav-menu-cb:checked ~ .nav {
  display: flex !important;
  opacity: 1;
}

.nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--cream);
  color: var(--accent);
}

.nav a:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(199, 81, 31, 0.35);
}

.nav__cta {
  margin-top: 0.5rem;
  text-align: center;
  padding: 0.75rem 1rem !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out) !important;
}

.nav__cta:hover {
  background: var(--accent-hover) !important;
  color: var(--white) !important;
}

.nav__cta:focus-visible {
  outline: 2px solid var(--white) !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    z-index: auto;
    width: auto;
    max-height: none;
    overflow: visible;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
  }

  .nav a {
    padding: 0.5rem 0.85rem;
    font-size: 0.92rem;
  }

  .nav__cta {
    margin-top: 0;
    margin-left: 0.5rem;
  }

  .nav-menu-cb {
    display: none !important;
  }
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.header-phone a {
  transition: color 0.2s var(--ease-out);
}

.header-phone a:hover {
  color: var(--accent);
}

.header-phone a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (min-width: 900px) {
  .header-phone {
    display: flex;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(26, 39, 68, 0.92) 0%, rgba(26, 39, 68, 0.75) 45%, rgba(51, 54, 59, 0.85) 100%),
    var(
        --hero-bg-image,
        url("https://images.unsplash.com/photo-1590674899484-d5640e854abe?auto=format&fit=crop&w=2000&q=80")
      )
      center / cover no-repeat;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero__laser {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 55%;
  max-width: 520px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--olive-light), rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(-18deg);
  filter: blur(0.5px);
  opacity: 0.85;
  animation: laser-pulse 4s ease-in-out infinite;
}

.hero__laser::before {
  content: "";
  position: absolute;
  inset: -8px -20%;
  background: linear-gradient(90deg, transparent, rgba(122, 138, 74, 0.35), transparent);
  filter: blur(12px);
}

@keyframes laser-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.95;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem 4rem;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__badge svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.hero__lead {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: background 0.22s var(--ease-out), transform 0.18s var(--ease-out), box-shadow 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out), color 0.22s var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--olive-light);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.985);
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(199, 81, 31, 0.32), 0 2px 6px rgba(199, 81, 31, 0.18);
}

.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 10px 28px rgba(199, 81, 31, 0.38), 0 2px 8px rgba(199, 81, 31, 0.2);
}

.hero .btn--primary:focus-visible,
.hero .btn--ghost:focus-visible {
  outline-color: rgba(255, 255, 255, 0.92);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero__meta strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

/* —— Sections common —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem;
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  margin-bottom: 2.75rem;
  max-width: 42rem;
}

.section__eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.55rem;
}

.section__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.section__intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 38rem;
}

/* —— Services —— */
.section--services {
  background: var(--white);
}

.services-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(26, 39, 68, 0.08);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 39, 68, 0.15) 40%, rgba(26, 39, 68, 0.92) 100%);
  z-index: -1;
}

.service-card__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

/* —— Why laser —— */
.section--why {
  background: linear-gradient(180deg, var(--cream) 0%, #eef0f4 100%);
}

.why-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(26, 39, 68, 0.04);
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.why-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(91, 103, 53, 0.28);
  transform: translateY(-2px);
}

.why-card__num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--olive);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* —— Clients strip —— */
.section--clients {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white);
  padding: clamp(2.25rem, 5vw, 3rem) 1.25rem;
  text-align: center;
  position: relative;
}

.section--clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(122, 138, 74, 0.12), transparent 55%);
  pointer-events: none;
}

.section--clients p {
  position: relative;
  margin: 0 auto;
  max-width: 48rem;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.9);
}

.section--clients strong {
  color: var(--white);
}

/* —— Technical memory —— */
.section--tech {
  background: var(--white);
}

.tech-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 2px 16px rgba(26, 39, 68, 0.04);
}

.tech-summary {
  padding: 1.2rem 1.35rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.tech-summary:hover {
  background: rgba(246, 247, 249, 0.85);
}

.tech-summary:focus-visible {
  outline: none;
  background: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(91, 103, 53, 0.35);
}

.tech-summary::-webkit-details-marker {
  display: none;
}

.tech-summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.28s var(--ease), margin-top 0.2s var(--ease-out);
  flex-shrink: 0;
}

details[open] .tech-summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.tech-body {
  padding: 1.5rem 1.35rem 1.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.tech-body h4 {
  margin: 1.5rem 0 0.5rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.tech-body h4:first-child {
  margin-top: 0;
}

.tech-body ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.tech-body li {
  margin-bottom: 0.35rem;
}

.tech-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 520px;
}

.tech-table th,
.tech-table td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.tech-table th {
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.tech-table tr:last-child td {
  border-bottom: none;
}

.tech-footnote {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
}

/* —— CTA band —— */
.section--cta {
  background: linear-gradient(135deg, var(--olive) 0%, #3d4a28 100%);
  color: var(--white);
  text-align: center;
}

.section--cta .section__title {
  color: var(--white);
}

.section--cta .section__intro {
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.section--cta .btn--primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.section--cta .btn--primary:hover {
  background: var(--cream);
}

.section--cta .btn--primary:focus-visible {
  outline-color: var(--olive);
  outline-offset: 3px;
}

/* —— Contact —— */
.section--contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: 0 8px 40px rgba(26, 39, 68, 0.07), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.contact-card h3 {
  margin: 0 0 1.1rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid transparent;
  transition: border-color 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}

.contact-method:hover {
  border-color: rgba(199, 81, 31, 0.22);
  box-shadow: 0 2px 12px rgba(26, 39, 68, 0.04);
}

.contact-method svg {
  flex-shrink: 0;
  color: var(--accent);
}

.contact-method strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-method a {
  font-weight: 700;
  color: var(--ink);
  border-radius: 2px;
  transition: color 0.2s var(--ease-out);
}

.contact-method a:hover {
  color: var(--accent);
}

.contact-method a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: 11px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--slate);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(92, 101, 117, 0.55);
}

.form input:hover,
.form textarea:hover {
  border-color: rgba(26, 39, 68, 0.18);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--olive-light);
  box-shadow: 0 0 0 3px rgba(91, 103, 53, 0.18);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form .btn--primary {
  width: 100%;
  margin-top: 0.25rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 2.25rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 720px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s var(--ease-out), text-decoration-color 0.2s var(--ease-out);
}

.site-footer a:hover {
  color: #ffe0d5;
  text-decoration-color: rgba(255, 224, 213, 0.6);
}

.site-footer a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
  border-radius: 2px;
}

/* —— Utilities —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .hero__laser {
    animation: none;
  }

  .service-card:hover .service-card__img {
    transform: none;
  }

  .service-card:hover {
    transform: none;
  }

  .why-card:hover {
    transform: none;
  }

  .btn,
  .nav-toggle span,
  .tech-summary::after {
    transition-duration: 0.01ms !important;
  }
}

.form-status {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-status--ok {
  color: var(--olive);
}

.form-status--err {
  color: #b71c1c;
}
