:root {
  --bg: #f4f1eb;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.56);
  --panel-strong: rgba(255, 255, 255, 0.76);
  --line: rgba(12, 18, 28, 0.08);
  --line-strong: rgba(12, 18, 28, 0.14);
  --text: #0e131a;
  --muted: #5e6672;
  --accent: #2d7cff;
  --accent-soft: rgba(45, 124, 255, 0.12);
  --accent-2: #0e131a;
  --shadow: 0 18px 38px rgba(17, 24, 39, 0.06);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --corner-lg: 0 0 24px 0;
  --corner-md: 0 0 18px 0;
  --corner-sm: 0 0 12px 0;
  --container: min(1120px, calc(100vw - 2rem));
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.js-ready {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  display: none;
}

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

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

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

#background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.bg-aurora {
  display: none;
}

.has-webgl-bg .bg-aurora {
  display: none;
}

.bg-noise {
  display: none;
}

.has-webgl-bg .bg-noise {
  display: none;
}

.background-controls {
  display: none;
}

.site-shell {
  position: relative;
  isolation: isolate;
  z-index: 3;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: var(--corner-sm);
  background: #ffffff;
  color: #000000;
}

.skip-link:focus {
  top: 1rem;
}

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

.section {
  padding: 5rem 0;
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(12, 18, 28, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: clamp(2.5rem, 4vw, 3.5rem);
  object-fit: contain;
  filter: none;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: var(--corner-sm);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.18rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.18rem) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 1rem;
  right: 1rem;
  z-index: 24;
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: var(--corner-md);
  background: #ffffff;
  box-shadow: var(--shadow);
  backdrop-filter: none;
  transform: translateY(-0.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  position: relative;
  padding: 0.85rem 1rem;
  border-radius: var(--corner-sm);
  box-shadow: inset 0 0 0 1px transparent;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.5rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(45, 124, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(45, 124, 255, 0.18);
  color: var(--text);
  transform: translateY(-1px);
}

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

.site-nav a.is-active {
  color: var(--text);
  background: rgba(45, 124, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(45, 124, 255, 0.18);
}

.nav-cta {
  background: rgba(45, 124, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(45, 124, 255, 0.22);
  color: var(--accent) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent) !important;
  box-shadow: inset 0 0 0 1px var(--accent);
  color: #ffffff !important;
}

.nav-cta::after {
  display: none;
}

.hero {
  padding-top: 3.5rem;
}

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

.hero-copy,
.hero-visual,
.service-card,
.process-card,
.portfolio-card,
.contact-form,
.contact-success,
.contact-card,
.metric {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 1.8rem;
  border-radius: var(--corner-lg);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 13.5ch;
  font-size: clamp(1.95rem, 5.3vw, 3.85rem);
  line-height: 1.06;
}

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

.lead {
  max-width: 36rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.lead,
.section-heading p,
.portfolio-copy p,
.service-card p,
.process-card p,
.contact-copy p,
.form-footer p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--corner-sm);
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(45, 124, 255, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: #1f69df;
  background: #1f69df;
  color: #ffffff;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  background: rgba(45, 124, 255, 0.12);
  color: var(--text);
}

.button-secondary {
  border-color: rgba(12, 18, 28, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.hero-metrics {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.metric {
  padding: 1rem 1.1rem;
  border-radius: var(--corner-sm);
}

.metric strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 0 0 28px 0;
  min-height: 100%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto auto -1.5rem -2.5rem;
  width: 16rem;
  height: 9rem;
  border-radius: var(--corner-lg);
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
  transform: rotate(-14deg);
}

.section-heading > .eyebrow,
.section-heading > h2,
.section-heading > p,
.contact-copy > .eyebrow,
.contact-copy > h2,
.contact-copy > p,
.footer-inner {
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.52);
}

.visual-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--corner-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.06);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-panel picture {
  display: block;
  height: 100%;
}

.visual-panel-hero {
  min-height: clamp(20rem, 44vw, 34rem);
}

.visual-panel-hero img {
  min-height: clamp(20rem, 44vw, 34rem);
  object-position: center center;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.support-overview {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.support-visual {
  display: grid;
}

.visual-panel-support {
  height: 11.2rem;
}

.visual-panel-support img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.service-grid,
.support-grid,
.portfolio-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.process-card,
.portfolio-card,
.contact-form,
.contact-success,
.contact-card {
  border-radius: var(--corner-md);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

#leistungen .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 58% auto;
  opacity: 0.42;
  pointer-events: none;
  mix-blend-mode: normal;
  filter: saturate(0.92);
  -webkit-mask-image: linear-gradient(135deg, transparent 37%, rgba(0, 0, 0, 0.92) 72%);
  mask-image: linear-gradient(135deg, transparent 37%, rgba(0, 0, 0, 0.92) 72%);
}

#leistungen .service-card > * {
  position: relative;
  z-index: 1;
}

.service-card--web::after {
  background-image: url("/assets/images/service/web-corner.webp");
}

.service-card--apps::after {
  background-image: url("/assets/images/service/apps-corner.webp");
}

.service-card--commerce::after {
  background-image: url("/assets/images/service/commerce-corner.webp");
}

.service-card--ai::after {
  background-image: url("/assets/images/service/ai-corner.webp");
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1.2rem;
  border-radius: var(--corner-sm);
  background: rgba(45, 124, 255, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3,
.portfolio-copy h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.process-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: -4rem 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent),
    radial-gradient(circle at 80% 20%, rgba(45, 124, 255, 0.08), transparent 30%),
    radial-gradient(circle at 22% 74%, rgba(12, 18, 28, 0.05), transparent 24%);
  mask-image: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95) 14%, rgba(255, 255, 255, 0.95) 86%, transparent);
  pointer-events: none;
}

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

.process-mood {
  width: 100%;
  max-width: 100%;
  margin-top: 1rem;
  height: 6.25rem;
}

.process-mood img {
  height: 100%;
  object-position: center center;
  object-fit: cover;
  filter: none;
  opacity: 1;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-card {
  padding: 1.3rem;
}

.process-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent-2);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.service-card:hover,
.service-card:focus-within,
.process-card:hover,
.process-card:focus-within,
.portfolio-card:hover,
.portfolio-card:focus-within,
.contact-card:hover,
.contact-card:focus-within {
  transform: translateY(-1px);
  border-color: rgba(45, 124, 255, 0.18);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.07);
}

.portfolio-copy {
  padding: 1.25rem;
}

.portfolio-type {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-points {
  display: grid;
  gap: 0.45rem;
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.portfolio-points li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.portfolio-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--accent);
}

.portfolio-copy a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.portfolio-copy a:hover,
.portfolio-copy a:focus-visible {
  color: var(--text);
  transform: translateX(0.18rem);
}

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

.contact-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
}

.contact-card[href] {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.contact-card[href] span,
.contact-card[href] strong {
  transition: color 0.2s ease;
}

.contact-card[href]:hover,
.contact-card[href]:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(45, 124, 255, 0.32);
  background: rgba(45, 124, 255, 0.14);
  box-shadow: 0 22px 42px rgba(17, 24, 39, 0.1);
}

.contact-card[href]:hover span,
.contact-card[href]:focus-visible span {
  color: rgba(14, 19, 26, 0.72);
}

.contact-card[href]:hover strong,
.contact-card[href]:focus-visible strong {
  color: var(--accent);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card strong {
  font-size: 1rem;
}

.contact-form {
  padding: 1.2rem;
}

.contact-form-shell {
  display: grid;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.contact-form-shell > * {
  min-height: 100%;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 18, 28, 0.1);
  border-radius: var(--corner-sm);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(45, 124, 255, 0.45);
  background: rgba(255, 255, 255, 0.98);
}

.contact-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.contact-form option {
  color: #0b1320;
}

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

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-footer {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.form-footer .button {
  width: fit-content;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.form-status.is-success {
  color: var(--accent-2);
}

.form-status.is-error {
  color: #ff8c8c;
}

.contact-success {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
  padding: 2rem 1.8rem;
  align-content: center;
}

.contact-success[hidden] {
  display: none;
}

.contact-success-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-success h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.02;
}

.contact-success p {
  margin: 0;
  color: var(--muted);
}

.contact-success-visual {
  position: relative;
  width: 7.25rem;
  height: 7.25rem;
  margin-bottom: 0.35rem;
}

.success-core {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(45, 124, 255, 0.14);
  border: 1px solid rgba(45, 124, 255, 0.24);
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 0.8rem rgba(45, 124, 255, 0.08),
    0 16px 28px rgba(45, 124, 255, 0.12);
  animation: successPulse 2.8s ease-in-out infinite;
}

.success-spark {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  background: rgba(45, 124, 255, 0.18);
  border: 1px solid rgba(45, 124, 255, 0.26);
  border-radius: 50%;
}

.success-spark-a {
  top: 0.7rem;
  left: 1rem;
  animation: successFloatA 4.2s ease-in-out infinite;
}

.success-spark-b {
  top: 0.4rem;
  right: 0.9rem;
  width: 0.65rem;
  height: 0.65rem;
  animation: successFloatB 3.8s ease-in-out infinite;
}

.success-spark-c {
  right: 0.25rem;
  bottom: 1.1rem;
  width: 0.95rem;
  height: 0.95rem;
  animation: successFloatC 4.6s ease-in-out infinite;
}

.success-spark-d {
  left: 0.45rem;
  bottom: 0.55rem;
  width: 0.6rem;
  height: 0.6rem;
  animation: successFloatD 3.9s ease-in-out infinite;
}

@keyframes successPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes successFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.35rem, -0.45rem, 0);
  }
}

@keyframes successFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-0.45rem, -0.2rem, 0);
  }
}

@keyframes successFloatC {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-0.35rem, 0.3rem, 0);
  }
}

@keyframes successFloatD {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.3rem, 0.35rem, 0);
  }
}

.site-footer {
  padding: 0 0 4.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(12, 18, 28, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-whatsapp {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(1.35rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes auroraFloat {
  0% {
    transform: translate3d(-2%, 0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate3d(2%, -1.5%, 0) scale(1.06) rotate(2deg);
  }
  100% {
    transform: translate3d(-1%, 2%, 0) scale(1.03) rotate(-2deg);
  }
}

@media (min-width: 720px) {
  .section {
    padding: 6.5rem 0;
  }

  .support-overview {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: end;
    gap: 1.25rem;
  }

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

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

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

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

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

  .form-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  :root {
    --container: min(896px, calc(100vw - 2rem));
    --header-h: 61px;
  }

  .section {
    padding: 5.2rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .brand-logo {
    height: clamp(2rem, 3.2vw, 2.8rem);
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 0.68rem 0.8rem;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
    gap: 1.6rem;
  }

  .hero-copy {
    padding: 1.45rem;
  }

  .eyebrow {
    margin-bottom: 0.8rem;
    font-size: 0.66rem;
  }

  .hero h1 {
    font-size: clamp(1.56rem, 4.24vw, 3.08rem);
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 1.92rem;
  }

  .lead {
    max-width: 28.8rem;
    font-size: clamp(0.8rem, 1.2vw, 0.88rem);
  }

  .section-heading p,
  .portfolio-copy p,
  .service-card p,
  .process-card p,
  .contact-copy p,
  .form-footer p,
  .portfolio-points li,
  .contact-card strong,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.68rem;
    margin-top: 1.4rem;
  }

  .button {
    min-height: 2.56rem;
    padding: 0.72rem 1rem;
    font-size: 0.8rem;
  }

  .hero-metrics {
    gap: 0.68rem;
    margin-top: 1.6rem;
  }

  .metric {
    padding: 0.8rem 0.88rem;
  }

  .metric strong {
    margin-bottom: 0.28rem;
    font-size: 0.8rem;
  }

  .metric span {
    font-size: 0.76rem;
  }

  .hero-visual {
    padding: 0.88rem;
  }

  .hero-visual::before {
    inset: auto auto -1.2rem -2rem;
    width: 12.8rem;
    height: 7.2rem;
  }

  .visual-panel-hero {
    min-height: clamp(16rem, 35.2vw, 27.2rem);
  }

  .visual-panel-hero img {
    min-height: clamp(16rem, 35.2vw, 27.2rem);
  }

  .section-heading {
    max-width: 38.4rem;
    margin-bottom: 1.6rem;
  }

  .support-overview {
    gap: 1rem;
    margin-bottom: 0.8rem;
  }

  .visual-panel-support {
    height: 10rem;
  }

  .visual-panel-support img {
    height: 100%;
  }

  .service-grid,
  .support-grid,
  .portfolio-grid {
    gap: 0.8rem;
  }

  .process-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 1rem;
  }

  .process-mood {
    width: 100%;
    max-width: 100%;
    margin-top: 0.8rem;
    height: 6.25rem;
  }

  .process-mood img {
    height: 100%;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

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

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

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

  .service-card {
    padding: 1.2rem;
  }

  .service-index {
    width: 1.88rem;
    height: 1.88rem;
    margin-bottom: 0.96rem;
    font-size: 0.64rem;
  }

  .service-card h3,
  .portfolio-copy h3 {
    margin-bottom: 0.44rem;
    font-size: 0.96rem;
  }

  .process-card {
    padding: 1.04rem;
  }

  .process-card strong {
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
  }

  .portfolio-copy {
    padding: 1rem;
  }

  .portfolio-type,
  .contact-card span,
  .contact-form span,
  .contact-success-kicker {
    font-size: 0.68rem;
  }

  .portfolio-points {
    gap: 0.36rem;
    margin-top: 0.76rem;
  }

  .portfolio-copy a {
    margin-top: 0.8rem;
    font-size: 0.8rem;
  }

  .contact-grid {
    gap: 1rem;
  }

  .contact-cards {
    gap: 0.68rem;
    margin-top: 1.2rem;
  }

  .contact-card {
    gap: 0.28rem;
    padding: 0.8rem 0.88rem;
  }

  .contact-form {
    padding: 0.96rem;
  }

  .form-grid {
    gap: 0.8rem;
  }

  .contact-form label {
    gap: 0.36rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.76rem 0.8rem;
  }

  .contact-form textarea {
    min-height: 7.2rem;
  }

  .form-footer {
    gap: 0.8rem;
    margin-top: 0.8rem;
  }

  .form-status {
    min-height: 1.2rem;
    margin-top: 0.8rem;
    font-size: 0.8rem;
  }

  .contact-success {
    gap: 0.72rem;
    padding: 1.6rem 1.44rem;
  }

  .contact-success h3 {
    font-size: 1.6rem;
  }

  .contact-success-visual {
    width: 5.8rem;
    height: 5.8rem;
  }

  .success-core {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.44rem;
  }
}

@media (max-width: 719px) {
  .hero-visual {
    gap: 0.625rem;
    padding: 0.625rem;
  }

  .hero-copy {
    padding: 1.5rem;
  }

  .visual-panel-hero {
    min-height: 0;
    aspect-ratio: 1.9 / 1;
  }

  .visual-panel-hero picture,
  .visual-panel-hero img {
    height: 100%;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .portfolio-card img,
  .button,
  .site-nav,
  .menu-toggle span,
  .success-core,
  .success-spark {
    transition: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .bg-aurora {
    animation-duration: 28s;
  }
}
