/*
  HAUPTFARBEN
  Du kannst die Farbcodes hier ändern und damit die gesamte Website anpassen.
*/

:root {
  --ink: #101014;
  --ink-soft: #18181e;
  --paper: #f3f1e9;
  --paper-muted: #dedbd0;
  --acid: #c8ff4d;
  --blue: #7b9cff;
  --coral: #ff765d;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(16, 16, 20, 0.18);
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
body::selection { color: var(--ink); background: var(--acid); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; }
a, button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 5px; }

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: white;
}
.cursor-ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(255,255,255,.7);
  transition: transform .12s ease-out, width .2s, height .2s;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.25,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 clamp(22px, 4vw, 72px);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.055) 50%, transparent 50.1%),
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 100% 100%, 100% 88px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background-image: radial-gradient(rgba(255,255,255,.45) .7px, transparent .7px);
  background-size: 5px 5px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  left: calc(var(--pointer-x) - 130px);
  top: calc(var(--pointer-y) - 130px);
  background: radial-gradient(circle, rgba(200,255,77,.08), transparent 68%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .15;
  z-index: -1;
}
.hero-glow-one { background: var(--blue); right: -14%; top: -22%; }
.hero-glow-two { background: var(--acid); left: -25%; bottom: -48%; }

.nav {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.brand { display: inline-flex; align-items: center; gap: 14px; font-weight: 700; }
.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark img { width: 76%; height: 76%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > a:not(.nav-contact) { position: relative; }
.nav-links > a:not(.nav-contact)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--paper); transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.nav-links > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-contact { border: 1px solid var(--line); border-radius: 99px; padding: 12px 18px; transition: color .25s, background .25s; }
.nav-contact:hover { color: var(--ink); background: var(--paper); }

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .35s ease;
}

.menu-toggle.open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10;
  padding: 118px 18px 24px;
  color: var(--ink);
  background: var(--acid);
  flex-direction: column;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform .8s cubic-bezier(.77, 0, .18, 1), visibility 0s linear .8s;
}

.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu-label,
.mobile-menu-footer {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(16, 16, 20, .55);
}

.mobile-menu-label {
  margin-bottom: 42px;
}

.mobile-menu > a {
  position: relative;
  width: max-content;
  max-width: calc(100vw - 70px);
  font-size: clamp(50px, 15vw, 82px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.mobile-menu > a::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  content: attr(data-index);
  color: rgba(16, 16, 20, .45);
  font-size: 9px;
  letter-spacing: .12em;
}

.mobile-menu > a + a {
  margin-top: 8px;
}

.mobile-menu > a:focus-visible {
  outline-color: var(--ink);
}

.mobile-menu-footer {
  margin-top: auto;
}

body.mobile-menu-open {
  overflow: hidden;
}

.hero-grid {
  min-height: calc(100svh - 178px);
  display: grid;
  grid-template-columns: 1.13fr .87fr;
  align-items: center;
  gap: clamp(30px, 6vw, 110px);
  padding: 46px 0 58px;
}
.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(243,241,233,.62);
}
.eyebrow span { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 18px var(--acid); animation: blink 2.4s infinite; }
h1, h2, h3, p { text-wrap: pretty; }
h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(68px, 9.5vw, 154px);
  line-height: .79;
  letter-spacing: -.078em;
  font-weight: 700;
}
.headline-accent { display: block; color: var(--acid); font-style: italic; font-weight: 500; }
.hero-intro {
  max-width: 590px;
  margin: 36px 0 0;
  color: rgba(243,241,233,.68);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; border: 0; border-radius: 99px; padding: 18px 24px; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .3s, box-shadow .3s; }
.button-primary { background: var(--acid); color: var(--ink); box-shadow: 0 0 0 0 rgba(200,255,77,0); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 38px rgba(200,255,77,.2); }
.button-primary span { font-size: 18px; }
.text-link { font-size: 11px; text-transform: uppercase; letter-spacing: .13em; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 7px; }

.hero-enter { opacity: 0; animation: enter .8s .08s forwards cubic-bezier(.2,.75,.25,1); }
.hero-enter-delay { animation-delay: .2s; }
.hero-enter-late { animation-delay: .36s; }
.hero-enter-latest { animation-delay: .5s; }

.hero-object { position: relative; aspect-ratio: 1; display: grid; place-items: center; animation: enter-object 1s .35s both cubic-bezier(.2,.75,.25,1); }
.logo-stage {
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 0 0 18px rgba(255,255,255,.025), 0 40px 120px rgba(0,0,0,.6);
  animation: breathe 6s ease-in-out infinite;
}
.logo-stage img { width: 78%; height: 78%; object-fit: contain; }
.orbit { position: absolute; inset: 9%; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); }
.orbit-one::before, .orbit-two::before { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--acid); top: 16%; left: 13%; box-shadow: 0 0 18px var(--acid); }
.orbit-one { animation: spin 18s linear infinite; }
.orbit-two { inset: 20%; border-style: dashed; animation: spin-reverse 13s linear infinite; }
.orbit-two::before { background: var(--coral); top: auto; left: auto; bottom: 3%; right: 20%; box-shadow: 0 0 18px var(--coral); }
.floating-label { position: absolute; padding: 10px 14px; border: 1px solid var(--line); background: rgba(16,16,20,.72); backdrop-filter: blur(14px); font-size: 9px; letter-spacing: .2em; }
.label-top { top: 9%; right: 3%; transform: rotate(5deg); animation: float 5s ease-in-out infinite; }
.label-bottom { bottom: 13%; left: 1%; transform: rotate(-7deg); animation: float 5s 1.5s ease-in-out infinite; }

.hero-footer {
  height: 74px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(243,241,233,.48);
}
.scroll-cue { display: flex; align-items: center; gap: 10px; }
.scroll-cue i { width: 6px; height: 6px; border-radius: 50%; background: var(--paper); }

.marquee { overflow: hidden; background: var(--acid); color: var(--ink); position: relative; z-index: 2; }
.marquee-track { width: max-content; height: 74px; display: flex; align-items: center; gap: 34px; font-weight: 800; font-size: 22px; letter-spacing: -.04em; animation: marquee 15s linear infinite; }
.marquee-track i { font-size: 18px; font-style: normal; }

.section-light { background: var(--paper); color: var(--ink); }
.about, .services { padding: 148px clamp(22px, 5.5vw, 105px); }
.section-index { padding-bottom: 24px; border-bottom: 1px solid var(--dark-line); display: flex; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; }
.about-layout { display: grid; grid-template-columns: 1.14fr .86fr; gap: clamp(50px, 10vw, 180px); padding: 98px 0 122px; }
.kicker { margin: 0 0 24px; color: rgba(16,16,20,.48); text-transform: uppercase; font-size: 10px; letter-spacing: .2em; }
.about h2, .services h2 {
  margin: 0;
  font-size: clamp(55px, 7.3vw, 118px);
  line-height: .88;
  letter-spacing: -.072em;
  font-weight: 650;
}
.about h2 em, .services h2 em { color: var(--blue); font-weight: 500; }
.about-copy { align-self: end; max-width: 610px; }
.about-copy > p { margin: 0; color: rgba(16,16,20,.62); font-size: 16px; line-height: 1.7; }
.about-copy .lead { margin-bottom: 32px; color: var(--ink); font-size: clamp(21px, 2vw, 30px); line-height: 1.38; letter-spacing: -.025em; }
.signature-row { margin-top: 54px; padding-top: 28px; border-top: 1px solid var(--dark-line); display: flex; align-items: center; gap: 18px; color: rgba(16,16,20,.5); font-size: 9px; line-height: 1.55; text-transform: uppercase; letter-spacing: .14em; }
.signature-logo { width: 54px; height: 54px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; overflow: hidden; }
.signature-logo img { width: 72%; height: 72%; object-fit: contain; filter: invert(1); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-card { position: relative; min-height: 360px; padding: 30px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; transition: transform .4s cubic-bezier(.2,.75,.25,1); }
.value-card:hover { transform: translateY(-9px); }
.value-card-blue { background: var(--blue); }
.value-card-dark { background: var(--ink); color: var(--paper); }
.value-card-coral { background: var(--coral); }
.card-kicker { font-size: 9px; letter-spacing: .2em; }
.value-card strong { position: relative; z-index: 1; font-size: clamp(39px, 4vw, 66px); line-height: .88; letter-spacing: -.06em; font-weight: 650; }
.card-symbol { position: absolute; top: 48%; right: -3%; font-size: 180px; line-height: 0; color: rgba(16,16,20,.15); animation: spin 16s linear infinite; }
.card-rings { position: absolute; inset: 22% 4% auto auto; width: 170px; aspect-ratio: 1; }
.card-rings i { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; animation: rings 4s infinite; }
.card-rings i:nth-child(2) { inset: 18%; animation-delay: .6s; }
.card-rings i:nth-child(3) { inset: 36%; animation-delay: 1.2s; background: var(--acid); border: 0; }

.manifesto { position: relative; isolation: isolate; overflow: hidden; padding: 150px clamp(22px, 5.5vw, 105px); background: var(--ink); }
.manifesto::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: radial-gradient(rgba(255,255,255,.28) .7px, transparent .7px); background-size: 6px 6px; opacity: .16; }
.manifesto-glow { position: absolute; z-index: -1; right: -12vw; top: 18%; width: 45vw; height: 45vw; background: var(--blue); border-radius: 50%; filter: blur(170px); opacity: .18; }
.manifesto-label { margin: 0 0 62px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(243,241,233,.48); }
.manifesto-line { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); font-size: clamp(72px, 12.2vw, 196px); line-height: .85; letter-spacing: -.075em; font-weight: 700; padding: 12px 0 18px; }
.manifesto-line i { font-size: .18em; font-style: normal; letter-spacing: 0; color: rgba(243,241,233,.3); }
.manifesto-line.outline span { color: transparent; -webkit-text-stroke: 1px var(--paper); }
.manifesto-line.acid span { color: var(--acid); }
.manifesto-line.result span { font-style: italic; font-weight: 500; color: var(--coral); }
.manifesto-line.result { border-bottom: 1px solid var(--line); }

.services { padding-top: 150px; }
.services-header { padding: 100px 0 110px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; }
.services-header h2 { font-size: clamp(54px, 6.8vw, 108px); }
.services-header h2 em { color: var(--coral); }
.services-header p { max-width: 450px; margin: 0 0 6px; color: rgba(16,16,20,.57); font-size: 17px; line-height: 1.65; }
.service-list { border-bottom: 1px solid var(--dark-line); }
.service-row { min-height: 160px; border-top: 1px solid var(--dark-line); display: grid; grid-template-columns: .18fr 1fr .7fr 40px; gap: 24px; align-items: center; transition: padding .35s, background .35s; }
.service-row:hover { padding: 0 24px; background: rgba(123,156,255,.09); }
.service-number { color: rgba(16,16,20,.4); font-size: 10px; letter-spacing: .18em; }
.service-row h3 { margin: 0; font-size: clamp(25px, 2.6vw, 42px); letter-spacing: -.045em; font-weight: 600; }
.service-row p { margin: 0; max-width: 400px; color: rgba(16,16,20,.55); font-size: 14px; line-height: 1.55; }
.service-icon { width: 38px; height: 38px; border: 1px solid var(--dark-line); border-radius: 50%; display: grid; place-items: center; font-size: 16px; transition: transform .35s, background .35s; }
.service-row:hover .service-icon { transform: rotate(45deg); background: var(--ink); color: var(--paper); }

.contact { position: relative; isolation: isolate; overflow: hidden; padding: 140px clamp(22px, 5.5vw, 105px) 0; background: var(--ink); }
.contact::before { content: ""; position: absolute; z-index: -1; width: 70vw; height: 70vw; left: -32vw; top: 12%; border-radius: 50%; background: var(--coral); filter: blur(200px); opacity: .1; }
.contact-noise { position: absolute; inset: 0; z-index: -1; opacity: .18; background-image: radial-gradient(rgba(255,255,255,.38) .65px, transparent .65px); background-size: 5px 5px; mask-image: linear-gradient(black, transparent 90%); }
.section-index-dark { border-color: var(--line); }
.contact-head { padding: 78px 0 92px; }
.contact-head > p { margin: 0 0 20px; color: rgba(243,241,233,.48); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }
.contact-head h2 { margin: 0; font-size: clamp(90px, 18vw, 282px); line-height: .67; letter-spacing: -.09em; }
.contact-head h2 em { color: var(--acid); font-weight: 500; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 10vw, 180px); padding: 96px 0 120px; border-top: 1px solid var(--line); }
.contact-direct > p { max-width: 430px; margin: 0 0 54px; color: rgba(243,241,233,.62); font-size: 18px; line-height: 1.6; }
.mail-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 16px; font-size: clamp(19px, 2vw, 30px); letter-spacing: -.035em; }
.mail-link i { font-style: normal; color: var(--acid); }
.availability { margin-top: 30px; display: flex; align-items: center; gap: 12px; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: rgba(243,241,233,.45); }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 14px var(--acid); animation: blink 2.4s infinite; }
.contact-form { display: grid; gap: 36px; }
.contact-form label { display: grid; gap: 13px; }
.contact-form label > span { color: rgba(243,241,233,.48); font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.24); border-radius: 0; padding: 0 0 16px; color: var(--paper); background: transparent; outline: 0; font-size: clamp(19px, 2vw, 28px); letter-spacing: -.02em; resize: vertical; transition: border-color .25s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(243,241,233,.24); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--acid); }
.submit-button { justify-self: start; min-width: 250px; margin-top: 8px; }
footer { min-height: 110px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; color: rgba(243,241,233,.42); font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--paper); font-weight: 700; }
.footer-brand .brand-mark { width: 32px; height: 32px; flex-basis: 32px; }
footer > span { text-align: center; }
footer > a:last-child { text-align: right; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
@keyframes breathe { 50% { transform: scale(1.04); box-shadow: 0 0 0 26px rgba(200,255,77,.05), 0 40px 130px rgba(0,0,0,.65); } }
@keyframes blink { 50% { opacity: .25; transform: scale(.75); } }
@keyframes float { 50% { translate: 0 -12px; } }
@keyframes enter { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes enter-object { from { opacity: 0; transform: scale(.82) rotate(-4deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes rings { 50% { transform: scale(1.08); opacity: .45; } }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr .68fr; gap: 24px; }
  h1 { font-size: clamp(66px, 10vw, 105px); }
  .about-layout { grid-template-columns: 1fr; padding-bottom: 90px; }
  .about-copy { max-width: 700px; }
  .services-header { grid-template-columns: 1fr; gap: 38px; }
  .services-header p { max-width: 620px; }
  .service-row { grid-template-columns: .14fr 1fr .75fr 40px; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 65px; }
}

@media (max-width: 760px) {
  .cursor-dot, .cursor-ring { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-object { width: min(100%, 470px); justify-self: center; }
  .hero-footer { margin-top: 10px; }
  .about, .services { padding-top: 110px; padding-bottom: 110px; }
  .about-layout { gap: 54px; padding: 72px 0 80px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 310px; }
  .manifesto { padding-top: 110px; padding-bottom: 110px; }
  .manifesto-line { font-size: clamp(58px, 19vw, 116px); }
  .services-header { padding: 72px 0 78px; }
  .service-row { padding: 28px 0; min-height: auto; grid-template-columns: 42px 1fr 36px; }
  .service-row p { grid-column: 2 / 4; }
  .service-row:hover { padding: 28px 14px; }
  .contact { padding-top: 110px; }
  .contact-grid { grid-template-columns: 1fr; padding-top: 72px; }
  footer { grid-template-columns: 1fr 1fr; gap: 20px; padding: 30px 0; }
  footer > span { display: none; }
}

@media (max-width: 560px) {
  .hero { padding: 0 18px; }
  .nav { height: 82px; position: relative; z-index: 20; }
  .nav-links a:not(.nav-contact), .brand > span:last-child { display: none; }
  .nav-links { gap: 10px; }
  .menu-toggle { display: block; }
  .mobile-menu { display: flex; }
  body.mobile-menu-open .menu-toggle { color: var(--ink); border-color: rgba(16, 16, 20, .35); }
  body.mobile-menu-open .nav-contact { color: var(--ink); border-color: rgba(16, 16, 20, .35); }
  .hero-grid { min-height: auto; gap: 36px; padding: 58px 0 42px; }
  h1 { font-size: clamp(62px, 20vw, 92px); }
  .hero-intro { margin-top: 28px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-object { width: 100%; }
  .hero-footer span:nth-child(2) { display: none; }
  .hero-footer { height: 62px; }
  .marquee-track { height: 62px; font-size: 18px; gap: 24px; }
  .about, .services, .manifesto { padding-left: 18px; padding-right: 18px; }
  .about h2, .services h2 { font-size: 16vw; }
  .about-copy .lead { font-size: 20px; }
  .value-card { min-height: 275px; }
  .manifesto-line { font-size: 18.5vw; }
  .contact { padding: 98px 18px 0; }
  .contact-head { padding: 66px 0 72px; }
  .contact-head h2 { font-size: 27vw; }
  .contact-grid { gap: 70px; padding-bottom: 90px; }
  .mail-link { font-size: 17px; }
  .contact-form { gap: 30px; }
  .contact-form input, .contact-form textarea { font-size: 19px; }
  .submit-button { width: 100%; }
  footer { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
