:root {
  --red: #a91f2c;
  --red-dark: #821722;
  --ink: #111111;
  --ink-soft: #1a1a1a;
  --paper: #f7f7f5;
  --white: #ffffff;
  --muted: #686868;
  --line: #dcdcd7;
  --font: "Archivo", "Segoe UI", sans-serif;
  --display: "Archivo", "Segoe UI", sans-serif;
  --shell: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  color: var(--ink);
  background: var(--paper);
  font: 400 1rem/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

#service,
#web,
#standort,
#kontakt {
  scroll-margin-top: 82px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* CSS arrow — avoids iOS emoji rendering of ↗ */
.ico-arrow {
  display: inline-block;
  width: .5em;
  height: .5em;
  border-block-start: 1.6px solid currentColor;
  border-inline-end: 1.6px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
  translate: 0 .04em;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: clamp(80px, 10vw, 144px) 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  color: var(--ink);
  background: rgba(247, 247, 245, .84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background .35s var(--ease), border-color .35s var(--ease);
  max-width: 100%;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(17, 17, 17, .1);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  width: max-content;
  max-width: min(100%, 260px);
  display: flex;
  align-items: center;
  margin-right: auto;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: clamp(168px, 18vw, 220px);
  height: auto;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  position: relative;
  color: #424242;
  font-size: .86rem;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  font-size: .82rem;
  font-weight: 700;
  transition: background .25s var(--ease);
}

.header-contact:hover {
  background: var(--red);
}

.header-contact .ico-arrow {
  width: .48em;
  height: .48em;
  border-width: 1.5px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 82px 0 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 82% 46%, rgba(169, 31, 44, .07), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f5f5f2 58%, #ecece8 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 82px 0 56px;
  opacity: .6;
  background-image:
    linear-gradient(rgba(17, 17, 17, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 32%, transparent 68%, #000 100%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(169, 31, 44, .12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: min(62vw, 780px);
  aspect-ratio: 1;
  right: 1%;
  top: 5%;
}

.hero-orbit-two {
  width: min(48vw, 580px);
  aspect-ratio: 1;
  right: 6%;
  top: 16%;
}

.hero-layout {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: center;
  padding-block: clamp(52px, 7vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kicker span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 650px;
  font-family: var(--display);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0;
  color: #505050;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: .86rem;
  font-weight: 700;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  background: var(--red);
}

.button-primary .ico-arrow {
  width: .52em;
  height: .52em;
  border-width: 1.7px;
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(17, 17, 17, .23);
  background: rgba(255, 255, 255, .35);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--white);
}

.hero-facts {
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(38px, 6vw, 70px);
  border-top: 1px solid rgba(17, 17, 17, .18);
}

.hero-facts div {
  padding: 15px 16px 0 0;
  border-right: 1px solid rgba(17, 17, 17, .13);
}

.hero-facts div:not(:first-child) {
  padding-left: 16px;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-facts dd {
  font-size: .78rem;
  font-weight: 600;
}

/* Custom phone artwork */
.hero-art {
  position: relative;
  min-height: min(68vh, 700px);
  perspective: 1400px;
}

.art-glow {
  position: absolute;
  width: min(430px, 88%);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: rgba(169, 31, 44, .13);
  filter: blur(70px);
  transform: translate(-50%, -50%);
}

.phone-shadow {
  position: absolute;
  z-index: 0;
  width: 54%;
  height: 22%;
  left: 25%;
  bottom: 8%;
  border-radius: 50%;
  background: rgba(0, 0, 0, .3);
  filter: blur(35px);
  transform: rotate(-10deg);
}

.phone {
  position: absolute;
  z-index: 2;
  width: min(55%, 330px);
  aspect-ratio: .505;
  top: 48%;
  left: 52%;
  padding: 10px;
  border-radius: 46px;
  background: linear-gradient(120deg, #303030 0%, #050505 44%, #303030 100%);
  box-shadow:
    -22px 30px 50px rgba(0, 0, 0, .26),
    inset 0 0 0 2px #4c4c4c,
    inset 0 0 0 5px #101010;
  transform: translate(-50%, -50%) rotate(8deg) rotateY(-17deg) rotateX(3deg);
  transform-style: preserve-3d;
  animation: phone-float 7s var(--ease) infinite alternate;
}

@keyframes phone-float {
  from { transform: translate(-50%, -50%) rotate(8deg) rotateY(-17deg) rotateX(3deg) translateY(5px); }
  to { transform: translate(-50%, -50%) rotate(6deg) rotateY(-12deg) rotateX(2deg) translateY(-10px); }
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 34%;
  height: 26px;
  top: 15px;
  left: 33%;
  border-radius: 18px;
  background: #090909;
}

.phone-edge {
  position: absolute;
  width: 4px;
  border-radius: 4px;
  background: #0a0a0a;
}

.phone-edge-left {
  height: 78px;
  left: -3px;
  top: 115px;
}

.phone-edge-right {
  height: 48px;
  right: -3px;
  top: 148px;
}

.phone-screen {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 38px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .96), rgba(239, 239, 235, .98)),
    var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(rgba(17, 17, 17, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .055) 1px, transparent 1px);
  background-size: 34px 34px;
}

.phone-status {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 17px 20px 0;
  font-size: 9px;
  font-weight: 700;
}

.screen-brand {
  position: relative;
  z-index: 1;
  margin: auto 20px;
  padding: 0;
  background: transparent;
}

.screen-brand img {
  width: 100%;
}

.screen-brand p {
  margin: 4px 0 2px;
  text-align: center;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.screen-ui {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 6px;
  margin: 0 20px 22px;
}

.screen-ui span {
  height: 62px;
  background: var(--ink);
}

.screen-ui span:nth-child(2) {
  background: var(--red);
}

.screen-ui span:nth-child(3) {
  background: #d8d8d3;
}

.screen-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.screen-bottom .screen-cta {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
}

.screen-bottom .ico-arrow {
  width: 8px;
  height: 8px;
  border-width: 1.5px;
  translate: 0 0;
}

.art-label {
  position: absolute;
  z-index: 5;
  min-width: 155px;
  padding: 13px 15px;
  color: var(--white);
  background: rgba(17, 17, 17, .94);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
}

.art-label span {
  display: block;
  color: #d45d68;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -.02em;
}

.art-label small {
  color: rgba(255, 255, 255, .7);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.art-label-top {
  top: 13%;
  right: 2%;
}

.art-label-bottom {
  bottom: 12%;
  left: 0;
}

.hero-marquee {
  height: 56px;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  border-block: 1px solid rgba(0, 0, 0, .09);
}

.hero-marquee-track {
  width: max-content;
  min-width: 200vw;
  height: 100%;
  display: flex;
  align-items: center;
  animation: marquee 22s linear infinite;
  transform: translate3d(0, 0, 0);
}

.marquee-group {
  flex: none;
  width: max-content;
  min-width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  padding-inline: 20px;
}

.hero-marquee span {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .03em;
}

.hero-marquee i {
  font-size: .65rem;
  font-style: normal;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Headings */
.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.3fr;
  column-gap: 50px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.web-intro h2,
.location-copy h2,
.contact-heading h2 {
  font-family: var(--display);
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 360px;
  justify-self: end;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Service */
.services {
  background: var(--paper);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list article {
  position: relative;
  display: grid;
  grid-template-columns: 60px 90px 1fr 48px;
  gap: 22px;
  align-items: center;
  min-height: 180px;
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease), background .35s var(--ease);
}

.service-list article:hover {
  padding-inline: 18px;
  background: var(--white);
}

.service-index {
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.service-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.service-icon svg {
  width: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.service-copy {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) 1.2fr;
  gap: 28px;
  align-items: center;
  min-width: 0;
}

.service-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.service-copy p {
  max-width: 500px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.service-list article > a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 1.1rem;
  transition: color .25s var(--ease), background .25s var(--ease);
}

.service-list article > a:hover {
  color: var(--white);
  background: var(--red);
}

/* Web */
.web-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(169, 31, 44, .22), transparent 30%),
    var(--ink);
  overflow: hidden;
}

.web-section::after {
  content: "WEB";
  position: absolute;
  right: -30px;
  bottom: -120px;
  color: rgba(255, 255, 255, .025);
  font-family: var(--display);
  font-size: 30vw;
  line-height: 1;
  pointer-events: none;
}

.web-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(70px, 10vw, 140px);
  align-items: start;
}

.eyebrow-light {
  color: #d45d68;
}

.web-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin: 28px 0;
  color: rgba(255, 255, 255, .65);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-size: .82rem;
  font-weight: 700;
}

.text-link:hover {
  color: #d45d68;
  border-color: #d45d68;
}

.spectrum-head {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .45);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.spectrum-line {
  position: relative;
  height: 2px;
  margin: 14px 0 36px;
  background: rgba(255, 255, 255, .15);
}

.spectrum-line i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--red), #ce626c);
  transform: scaleX(.72);
  transform-origin: left;
}

.spectrum-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.spectrum-items article {
  min-height: 230px;
  padding: 24px 20px;
  background: var(--ink-soft);
}

.spectrum-items strong {
  display: block;
  margin-bottom: 52px;
  color: #d45d68;
  font-size: .65rem;
  letter-spacing: .1em;
}

.spectrum-items h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.spectrum-items p {
  color: rgba(255, 255, 255, .55);
  font-size: .82rem;
  line-height: 1.55;
}

.tech-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(255, 255, 255, .12);
}

.tech-line span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 6px;
  color: rgba(255, 255, 255, .62);
  background: var(--ink-soft);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

/* Location */
.location {
  background: var(--white);
}

.location-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.location-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #dfe3e6;
  border: 1px solid var(--line);
}

.location-map > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(.55) contrast(1.04) brightness(.98);
}

.map-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, .04), transparent 45%),
    linear-gradient(0deg, rgba(17, 17, 17, .68), transparent 45%);
  pointer-events: none;
}

.map-address {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding-left: 15px;
  color: var(--white);
  border-left: 3px solid var(--red);
}

.map-address span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .64);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.map-address strong {
  font-size: 1rem;
  line-height: 1.35;
}

.map-link {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(17, 17, 17, .88);
  font-size: .68rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.map-link:hover {
  background: var(--red);
}

.location-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 45px;
  color: var(--muted);
  font-size: 1.05rem;
}

.location-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.location-details span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location-details strong {
  font-size: .9rem;
}

/* Contact */
.contact {
  color: var(--white);
  background: var(--red);
}

.contact .shell {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, .7);
}

.contact-heading > p:last-child {
  max-width: 430px;
  margin-top: 25px;
  color: rgba(255, 255, 255, .72);
}

.contact-panel {
  display: grid;
  gap: 36px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(0, 0, 0, .14);
  border: 1px solid rgba(255, 255, 255, .22);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-row label span {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  opacity: .7;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid transparent;
  font: inherit;
  font-size: .92rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(255, 255, 255, .55);
  outline-offset: 2px;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  line-height: 1.5;
}

.form-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  justify-self: start;
  background: var(--ink);
}

.form-submit:hover {
  background: #000;
}

.form-status {
  margin: 0;
  font-size: .84rem;
  font-weight: 600;
}

.form-status.is-ok {
  color: #e8ffe8;
}

.form-status.is-err {
  color: #ffe0e0;
}

.contact-form.is-busy .form-submit {
  opacity: .7;
  pointer-events: none;
}

.contact-options {
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.contact-options a {
  display: grid;
  grid-template-columns: 100px 1fr 30px;
  gap: 20px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: padding .3s var(--ease), background .3s var(--ease);
}

.contact-options a:hover {
  padding-inline: 16px;
  background: rgba(0, 0, 0, .1);
}

.contact-options span {
  color: rgba(255, 255, 255, .62);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-options strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.contact-options .ico-arrow {
  width: .55em;
  height: .55em;
  border-width: 1.6px;
  justify-self: end;
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  min-height: 170px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  grid-template-areas:
    "logo claim nav"
    "logo copy copy";
  gap: 14px 35px;
  align-items: center;
}

.footer img {
  grid-area: logo;
  width: 125px;
}

.footer p {
  grid-area: claim;
  color: rgba(255, 255, 255, .58);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer nav {
  grid-area: nav;
  display: flex;
  gap: 22px;
  font-size: .78rem;
}

.footer nav a:hover {
  color: #d45d68;
}

.footer small {
  grid-area: copy;
  padding-top: 18px;
  color: rgba(255, 255, 255, .4);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .7rem;
}

/* Legal pages retain shared styling */
.page {
  min-height: 100vh;
  background: var(--paper);
}

.header {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 max(24px, calc((100vw - var(--shell)) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}

.header .logo {
  width: max-content;
  max-width: min(100%, 280px);
  margin-right: auto;
}

.header .logo.brand {
  display: flex;
  align-items: center;
}

.header .nav {
  display: flex;
  gap: 28px;
}

.header .nav a,
.header-cta {
  font-size: .82rem;
  font-weight: 700;
}

.menu-btn {
  display: none;
}

.legal-hero,
.legal-body,
.page > .footer {
  width: min(calc(100% - 48px), 760px);
  margin-inline: auto;
}

.legal-hero {
  padding: 90px 0 38px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.legal-body {
  padding: 48px 0 90px;
}

.legal-body h2 {
  margin: 32px 0 8px;
  font-size: 1rem;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  margin-bottom: 10px;
}

.legal-body ul {
  padding-left: 18px;
}

.legal-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page > .footer {
  min-height: auto;
  padding: 28px 0 42px;
  display: flex;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
}

.page > .footer img {
  width: 110px;
  padding: 0;
  background: transparent;
  filter: none;
}

.page > .footer p {
  margin-right: auto;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: .76rem;
}

/* Privacy */
.privacy-note {
  position: fixed;
  z-index: 200;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  max-width: 440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.privacy-note[hidden] {
  display: none;
}

.privacy-note p {
  flex: 1;
  color: var(--ink-soft);
  font-size: .8rem;
  line-height: 1.45;
}

.privacy-note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-note button {
  flex: 0 0 auto;
  min-width: 96px;
  height: 40px;
  padding: 0 14px;
  border: 0;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-size: .74rem;
  font-weight: 700;
}

.privacy-note button:hover {
  background: var(--red);
}

@media (min-width: 720px) {
  .privacy-note {
    left: auto;
    right: max(24px, env(safe-area-inset-right));
    margin-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 55px 35px;
  }

  .hero-art {
    width: min(100%, 420px);
    min-height: 420px;
    margin-inline: auto;
    overflow: hidden;
  }

  .art-label {
    display: none;
  }

  .phone {
    width: min(52%, 240px);
    animation: none;
    transform: translate(-50%, -50%) rotate(6deg);
  }

  .phone-shadow {
    bottom: 12%;
    opacity: .7;
  }

  .section-heading,
  .web-layout,
  .contact .shell {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    justify-self: start;
    margin-top: 22px;
  }

  .service-copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .location-layout {
    gap: 70px;
  }

  .contact-options {
    margin-top: 10px;
  }

  .contact-form {
    padding: 18px;
  }

  .header .nav,
  .header .header-cta {
    display: none;
  }

  .header .menu-btn {
    display: block;
    width: 44px;
    height: 44px;
    border: 0;
    color: var(--white);
    background: var(--ink);
  }

  .header .menu-btn i {
    display: block;
    width: 17px;
    height: 1.5px;
    margin: 5px auto;
    background: currentColor;
  }

  .header .nav.is-open {
    position: absolute;
    z-index: 20;
    top: 82px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .header .nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding: 78px 0;
  }

  .brand {
    max-width: min(100%, 180px);
  }

  .brand-logo {
    width: 156px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.35rem);
    letter-spacing: -.055em;
  }

  .hero-lead {
    margin: 24px 0;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .hero-facts div:not(:first-child) {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, .13);
  }

  .hero-art {
    min-height: 380px;
    overflow: hidden;
  }

  .hero-orbit {
    display: none;
  }

  .phone {
    width: min(56%, 220px);
  }

  .art-label {
    display: none;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .service-list article {
    grid-template-columns: 32px 58px 1fr;
    gap: 13px;
    min-height: 155px;
    padding: 22px 0;
  }

  .service-icon {
    width: 52px;
    height: 52px;
  }

  .service-icon svg {
    width: 28px;
  }

  .service-list article > a {
    display: none;
  }

  .service-copy h3 {
    font-size: 1.25rem;
  }

  .service-copy p {
    font-size: .86rem;
  }

  .spectrum-items {
    grid-template-columns: 1fr;
  }

  .spectrum-items article {
    min-height: auto;
  }

  .spectrum-items strong {
    margin-bottom: 25px;
  }

  .tech-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-line span:last-child {
    grid-column: 1 / -1;
  }

  .location-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .location-map {
    min-height: 390px;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  .contact-options a {
    grid-template-columns: 70px 1fr 20px;
    gap: 10px;
  }

  .contact-options strong {
    font-size: .95rem;
    overflow-wrap: anywhere;
  }

  .footer-inner {
    padding-block: 34px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "claim"
      "nav"
      "copy";
  }

  .footer small {
    width: 100%;
  }

  .page > .footer {
    width: min(calc(100% - 32px), 760px);
    flex-direction: column;
    align-items: flex-start;
  }

  .page > .footer p {
    margin-right: 0;
  }
}

@media (max-width: 400px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .service-list article {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 9px;
    min-height: auto;
    padding: 20px 0;
  }

  .service-icon {
    display: none;
  }

  .service-copy {
    gap: 7px;
  }

  .service-copy h3 {
    font-size: .98rem;
    line-height: 1.08;
  }

  .service-copy p {
    font-size: .76rem;
    line-height: 1.45;
  }
}
