@charset "UTF-8";
/* CSS Document */

/* ============================================================
   SnapIT Productions – One Pager
   Primär #df4925 · BG #0b0b0b · Text #ffffff · Schrift Open Sans
   ============================================================ */

/* open-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v44-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v44-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
  --brand:      #df4925;
  --brand-dim:  rgba(223, 73, 37, .14);
  --bg:         #0b0b0b;
  --bg-alt:     #101010;
  --card:       #141414;
  --fg:         #ffffff;
  --fg-muted:   rgba(255, 255, 255, .55);
  --rule:       rgba(255, 255, 255, .09);
  --maxw:       1180px;
  --ease:       cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(4.5rem, 11vh, 7rem) clamp(1.25rem, 5vw, 3rem);
  overflow: hidden;
  isolation: isolate;
}

/* driftender Farbschimmer im Hintergrund */
.glow {
  position: absolute;
  z-index: -2;
  top: 30%; left: 50%;
  width: min(160vw, 1300px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--brand-dim) 0%, transparent 60%);
  animation: drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  0%   { transform: translate(-50%, -50%) scale(1)    translateX(-3%); }
  100% { transform: translate(-50%, -50%) scale(1.18) translateX(4%);  }
}

/* Lichtkegel folgt der Maus (nur Desktop) */
.spot {
  position: absolute;
  z-index: -1;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223,73,37,.13) 0%, transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .hero:hover .spot { opacity: 1; }
}

/* feines Raster als Textur */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse at 50% 45%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 45%, #000 25%, transparent 78%);
  pointer-events: none;
}

/* ---- Logo-Lockup: Bildmarke + Wortmarke nebeneinander ---- */

.lockup {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.1rem);
}

.logo {
    width: 300px;
    height: auto;
    display: block;
}

@keyframes shutter {
  0%   { opacity: 0; transform: rotate(-75deg) scale(.55); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes wipe {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0);    }
}

/* ---- Slogan ---- */

.slogan {
  margin: clamp(2.2rem, 5.5vw, 3.4rem) 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .1em .55em;
  font-size: clamp(1.15rem, 3.7vw, 2.15rem);
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: center;
}

.word { display: inline-block; overflow: hidden; padding-bottom: .1em; }
.word > span {
  display: inline-block;
  transform: translateY(115%);
  animation: rise .95s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise { to { transform: translateY(0); } }

/* animierte Chevrons */
.chev {
  display: inline-flex;
  gap: .04em;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0;
  animation: fade-in .6s ease forwards;
  animation-delay: var(--d, 0s);
}
.chev i {
  font-style: normal;
  animation: chev-pulse 1.9s ease-in-out infinite;
}
.chev i:nth-child(2) { animation-delay: .16s; }
@keyframes chev-pulse {
  0%, 100% { opacity: .32; transform: translateX(-.06em); }
  45%      { opacity: 1;   transform: translateX(.06em);  }
}
@keyframes fade-in { to { opacity: 1; } }

/* ---- Tätigkeiten als Zeilen-Liste ---- */

.services {
  margin: clamp(2.6rem, 6vw, 4rem) 0 0;
  padding: 20px 0;
  width: 100%;
  max-width: 880px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
	text-align: center;
}

.row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(.9rem, 2.6vw, 2rem);
  padding: clamp(.85rem, 1.9vw, 1.15rem) clamp(.6rem, 1.6vw, 1.1rem);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  cursor: default;
}

/* orangefarbene Füllung */
.row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}
.row:hover::before { transform: scaleX(1); }

.row > * { position: relative; z-index: 1; }


.row-label {
  font-size: clamp(.95rem, 2.3vw, 1.2rem);
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.25;
  transition: color .35s var(--ease) .1s, transform .55s var(--ease);
}
.subtitle {
	font-size: clamp(.90rem, 2.2vw, 1.1rem);
	padding-bottom: 12px;
	font-weight: 500;
}
.uppercase {
	text-transform: uppercase;
}

/* ── CTA ── */
    .cta {
      display: inline-flex; align-items: center; gap: .8rem;
      background: var(--brand); color: var(--dark);
      text-decoration: none; padding: 1rem 2.2rem;
      font-family: var(--f); font-size: .8rem;
      font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      cursor: pointer; transition: gap .3s, transform .2s;
		margin: 60px 0;
    }
    .cta:hover { gap: 1.4rem; }
    .cta .arr { transition: transform .3s; }
    .cta:hover .arr { transform: translateX(4px); }


/* ---- Scroll-Reveal ---- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* Scroll-Hinweis */
.scroll-cue {
  position: absolute;
  bottom: clamp(1.4rem, 4vh, 2.4rem);
  left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.35));
  overflow: hidden;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand);
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue {
  0%       { transform: translateY(-100%); }
  60%,100% { transform: translateY(100%);  }
}

/* ================= KONTAKT ================= */

.contact {
  position: relative;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 5vw, 3rem) clamp(2rem, 5vw, 3rem);
}
.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
}
.contact h2 {
  margin: 0 0 1.1rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brand);
}
.contact p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--fg-muted);
}
.contact strong { display: block; color: var(--fg); font-weight: 600; }

.mail {
  position: relative;
  display: inline-block;
  color: var(--fg);
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 4px;
  word-break: break-word;
  transition: color .3s var(--ease);
}
.mail::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--brand);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.mail:hover { color: var(--brand); }
.mail:hover::after { transform: scaleX(0); transform-origin: left; }

/* ================= FOOTER ================= */

footer { background: var(--bg-alt); padding: 0 clamp(1.25rem, 5vw, 3rem) clamp(2rem, 5vw, 3rem); }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: clamp(1.6rem, 4vw, 2.4rem);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem 1.5rem;
  font-size: .78rem;
  letter-spacing: .07em;
  color: rgba(255, 255, 255, .35);
}

.content {
	max-width: var(--maxw);
	padding: 50px 0;
}

.footer-inner a {
	text-decoration: none;
	cursor: pointer;
}
.footer-inner a:hover {
	color: #fff;
}

/* ================= Barrierefreiheit ================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
  .mark, .wordmark { opacity: 1; clip-path: none; transform: none; }
  .word > span { transform: none; }
  .chev { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
  .glow, .spot, .scroll-cue { display: none; }
}

@media (max-width: 520px) {
  .lockup { gap: .8rem; }
}