/* ================================================================
   HAUSMEESTER — Editorial-Industrial Redesign
   ================================================================ */

:root {
  --ink:       #000362;
  --paper:     #f5f1e8;
  --paper-alt: #ede9df;
  --signal:    #f0f208;
  --rule:      rgba(0, 3, 98, 0.10);
  --ink-pale:  rgba(0, 3, 98, 0.04);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);

  /* Legacy aliases for sub-pages */
  --accent-color:       #000362;
  --accent-color-hover: rgba(0, 3, 98, 0.7);
  --highlight-color:    #f0f208;
  --white:              #f5f1e8;

  --font-display: 'Playfair Display', serif;
  --font-body:    'Manrope', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; }
a { color: inherit; }

/* COOKIE CONSENT
   ================================================================ */
.cc-window {
  border-top: 1px solid var(--ink) !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
}
.cc-btn.cc-dismiss {
  background: var(--ink) !important;
  color: var(--paper) !important;
  border-radius: 3px !important;
  font-family: var(--font-body) !important;
}

/* NAVBAR
   ================================================================ */
.navbar {
  background: rgba(245, 241, 232, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0;
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.35s var(--ease-out);
}
.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0, 3, 98, 0.08);
}

.navbar-brand img { height: 50px; display: block; }

.navbar-toggler {
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 5px 8px;
  background: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0%2C3%2C98%2C1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 20px; height: 20px;
}

.nav-link-section {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink) !important;
  text-decoration: none;
  padding: 8px 10px;
  opacity: 0.65;
  position: relative;
  white-space: nowrap;
  transition: opacity 0.18s;
}
.nav-link-section::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 10px; right: 10px;
  height: 1.5px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease-out);
}
.nav-link-section:hover { opacity: 1; color: var(--ink) !important; }
.nav-link-section:hover::after { transform: scaleX(1); }

.nav-divider {
  width: 1px;
  height: 18px;
  background: var(--rule);
  align-self: center;
  flex-shrink: 0;
}

.nav-link-contact {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink) !important;
  text-decoration: none;
  padding: 8px 12px;
  position: relative;
}
.nav-link-contact::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease-out);
}
.nav-link-contact:hover { color: var(--ink) !important; }
.nav-link-contact:hover::after { transform: scaleX(1); }

.nav-link-phone {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink) !important;
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
}
.nav-link-phone:hover {
  background: var(--ink);
  color: var(--paper) !important;
  border-color: var(--ink);
}

.navbar-nav .nav-item + .nav-item { margin-left: 2px; }

@media (max-width: 1199px) {
  .nav-link-section { padding: 8px 7px; font-size: 0.78rem; }
}

@media (max-width: 991px) {
  .navbar.open { background: rgba(245, 241, 232, 0.98) !important; }
  .navbar-nav { padding: 8px 0 16px; gap: 2px; }
  .nav-link-section,
  .nav-link-phone,
  .nav-link-contact { display: block; text-align: left; opacity: 1; }
  .nav-link-section { border-bottom: 1px solid var(--rule); border-radius: 0; padding: 12px 4px; }
  .nav-link-section:last-of-type { border-bottom: none; }
  .nav-divider { display: none; }
  .navbar-nav .nav-item + .nav-item { margin-left: 0; }
  .nav-link-phone { margin-top: 8px; display: inline-block; }
}

/* HERO
   ================================================================ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 54% 46%;
  background: var(--paper);
  overflow: hidden;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 120px 56px 80px 48px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.45;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;}
.hero-headline em {
  font-style: italic;  display: block;
  color: var(--ink);
  opacity: 0.5;
  font-size: 0.88em;
  margin-top: 4px;
}

.hero-sub {
  font-size: 0.97rem;
  color: var(--ink);
  opacity: 0.6;
  max-width: 360px;
  line-height: 1.65;
  margin: 0;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-hours {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  opacity: 0.38;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  width: fit-content;
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right::before,
.hero-right::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border-style: solid;
  border-color: rgba(240, 242, 8, 0.6);
  z-index: 3;
  pointer-events: none;
}
.hero-right::before {
  top: 28px; right: 28px;
  border-width: 1px 1px 0 0;
}
.hero-right::after {
  bottom: 28px; left: 28px;
  border-width: 0 0 1px 1px;
}

.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) contrast(1.05);
  transition: transform 9s ease;
  will-change: transform;
  display: block;
}
/* Gradient so linker Rand weich in paper-Hintergrund übergeht */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245,241,232,0.45) 0%, transparent 30%);
  pointer-events: none;
}
.hero:hover .hero-image img { transform: scale(1.04); }

@media (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }
  .hero-left {
    padding: 96px 24px 40px;
    order: 1;
    gap: 20px;
  }
  .hero-right {
    height: 42vw;
    min-height: 260px;
    order: 2;
  }
}
@media (max-width: 575px) {
  .hero-right { height: 56vw; min-height: 220px; }
  .hero-left { padding-top: 88px; }
}

/* BUTTONS
   ================================================================ */
.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 3px;
  border: 1.5px solid var(--ink);
  transition: background 0.22s var(--ease-out),
              color 0.22s var(--ease-out);
  letter-spacing: 0.01em;
  cursor: pointer;
}
.btn-ink::after { content: '→'; transition: transform 0.18s; }
.btn-ink:hover { background: transparent; color: var(--ink); }
.btn-ink:hover::after { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 3px;
  border: 1.5px solid var(--rule);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* Bootstrap override */
.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background-color: var(--ink) !important;
  border: 1.5px solid var(--ink) !important;
  border-radius: 3px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  transition: all 0.22s var(--ease-out) !important;
  box-shadow: none !important;
}
.btn-primary:hover {
  background-color: transparent !important;
  color: var(--ink) !important;
  transform: none !important;
}

/* ABOUT SECTION
   ================================================================ */
.about-section {
  padding: 96px 0;
  background: var(--ink);
  color: var(--paper);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.35;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.about-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0;  hyphens: auto;
  -webkit-hyphens: auto;
}
.about-headline em {
  font-style: italic;  color: var(--paper);
  opacity: 0.55;
}

.about-text {
  font-size: 0.93rem;
  color: var(--paper);
  opacity: 0.7;
  line-height: 1.78;
  margin-top: 24px;
  margin-bottom: 0;
}

.about-cta {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--signal);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(240, 242, 8, 0.35);
  transition: border-color 0.2s;
}
.about-cta:hover { color: var(--signal); border-bottom-color: var(--signal); }

.about-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 3px;
  overflow: hidden;
}
.about-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(245, 241, 232, 0.04);
  transition: background 0.18s;
}
.about-badge:hover { background: rgba(245, 241, 232, 0.08); }
.about-badge-label {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.35;
}
.about-badge-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--paper);}

.about-verbs {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  padding-top: 28px;
  flex-wrap: wrap;
}
.about-verb {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  opacity: 0.5;  line-height: 1.3;
  transition: opacity 0.18s;
}
.about-verb:hover { opacity: 1; }
.about-verb-sep {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--signal);
  opacity: 0.6;
  align-self: center;
  padding: 0 10px;
  line-height: 1;
}

@media (max-width: 991px) {
  .about-section { padding: 64px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* SERVICES INDEX
   ================================================================ */
.services-index {
  padding: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.services-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
}
.services-list li {
  flex: 1;
  border-right: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out);
}
.services-list li:last-child { border-right: none; }
.services-list.is-visible li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.services-list.is-visible li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.07s; }
.services-list.is-visible li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.14s; }
.services-list.is-visible li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.21s; }

.services-list a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 36px 32px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.services-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.services-list a:hover { background: var(--ink-pale); }
.services-list a:hover::after { transform: scaleX(1); }

.svc-num {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  opacity: 0.35;
}
.svc-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1;  transition: opacity 0.2s;
}
.services-list a:hover .svc-name {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .services-list { flex-direction: column; }
  .services-list li {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .services-list li:last-child { border-bottom: none; }
  .services-list a { padding: 24px 20px; }
}

/* SERVICE SECTIONS
   ================================================================ */
.service-section {
  padding: 96px 0;
  background: var(--paper);
}
.service-section.alt { background: var(--paper-alt); }

.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.s-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.35;
}
.s-rule {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--rule);
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;  hyphens: auto;
  -webkit-hyphens: auto;
}

.service-text p {
  font-size: 0.93rem;
  opacity: 0.78;
  line-height: 1.78;
  margin-bottom: 16px;
}

.service-text ul {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
  border-top: 1px solid var(--rule);
}
.service-text ul li {
  padding: 11px 0 11px 18px;
  font-size: 0.88rem;
  opacity: 0.82;
  border-bottom: 1px solid var(--rule);
  position: relative;
  line-height: 1.5;
}
.service-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--signal);
  border-radius: 1px;
  flex-shrink: 0;
}

.service-media {
  position: relative;
}
.service-media::before,
.service-media::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-style: solid;
  border-color: var(--rule);
  z-index: 2;
  pointer-events: none;
}
.service-media::before {
  top: -10px; right: -10px;
  border-width: 1px 1px 0 0;
}
.service-media::after {
  bottom: -10px; left: -10px;
  border-width: 0 0 1px 1px;
}

.cover-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: block;
}
.cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%) contrast(1.04) brightness(0.97);
  display: block;
}
.cover-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: 0.07;
  pointer-events: none;
}

@media (max-width: 991px) {
  .service-section { padding: 60px 0; }
  .service-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-media { order: -1; }
  .cover-image { aspect-ratio: 16 / 9; }
  .service-media::before,
  .service-media::after { display: none; }
}

/* CONTACT
   ================================================================ */
#section7 {
  padding: 96px 0;
  background: var(--ink);
  color: var(--paper);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.35;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-label::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.contact-phone-link {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 500;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -0.015em;
  display: block;
  margin-bottom: 10px;
  line-height: 1.1;
  width: fit-content;
  position: relative;
}
.contact-phone-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease-out);
}
.contact-phone-link:hover { color: var(--signal); }
.contact-phone-link:hover::after { transform: scaleX(1); }

.contact-email-link {
  display: block;
  font-size: 0.88rem;
  color: var(--paper);
  opacity: 0.5;
  text-decoration: none;
  margin-bottom: 48px;
  transition: opacity 0.2s, color 0.2s;
}
.contact-email-link:hover { opacity: 1; color: var(--signal); }

.contact-hours-block {
  border-top: 1px solid rgba(245, 241, 232, 0.14);
  padding-top: 24px;
}
.contact-hours-title {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.3;
  font-weight: 400;
  margin-bottom: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  color: var(--paper);
  opacity: 0.68;
  padding: 6px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.07);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; }
.hours-row .time {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

/* Form */
.form-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 28px;}

.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.38;
  margin-bottom: 5px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(245, 241, 232, 0.07);
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 3px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select { cursor: pointer; }
.form-field select option { background: var(--ink); color: var(--paper); }
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 241, 232, 0.22);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--signal);
  background: rgba(245, 241, 232, 0.11);
}
.form-field textarea { resize: vertical; min-height: 88px; }

.form-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 4px;
}
.form-check-row input[type="checkbox"] {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--signal);
  cursor: pointer;
}
.form-check-row label {
  font-size: 0.76rem;
  color: var(--paper);
  opacity: 0.48;
  line-height: 1.6;
  cursor: pointer;
}
.form-check-row a { color: var(--signal); }

.btn-submit {
  width: 100%;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 16px 32px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit::after { content: '→'; transition: transform 0.18s; }
.btn-submit:hover { background: var(--paper); transform: translateY(-1px); }
.btn-submit:hover::after { transform: translateX(4px); }
.btn-submit:disabled { opacity: 0.5; cursor: wait; transform: none; }

/* Honeypot — unsichtbar, aber nicht display:none (sonst überspringen manche Bots) */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-message {
  margin-top: 18px;
  font-size: 0.88rem;
  line-height: 1.5;
  min-height: 1.5em;
  opacity: 0;
  transition: opacity 0.2s;
}
.form-message.is-success,
.form-message.is-error {
  opacity: 1;
  padding: 12px 14px;
  border-left: 2px solid currentColor;
  background: rgba(245, 241, 232, 0.05);
}
.form-message.is-success { color: var(--signal); }
.form-message.is-error { color: #ff9a8c; }

@media (max-width: 991px) {
  #section7 { padding: 64px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* FOOTER
   ================================================================ */
footer {
  background: var(--ink);
  border-top: 3px solid var(--signal);
  padding: 28px 0 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--paper);
  opacity: 0.35;
}
.footer-nav {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 24px;
}
.footer-nav a {
  font-size: 0.8rem;
  color: var(--paper);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.18s, color 0.18s;
}
.footer-nav a:hover { opacity: 1; color: var(--signal); }

/* REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out),
              transform 0.65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Hero stagger */
.hero-left > * {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.75s var(--ease-out) forwards;
}
.hero-left > *:nth-child(1) { animation-delay: 0.15s; }
.hero-left > *:nth-child(2) { animation-delay: 0.25s; }
.hero-left > *:nth-child(3) { animation-delay: 0.35s; }
.hero-left > *:nth-child(4) { animation-delay: 0.45s; }
.hero-left > *:nth-child(5) { animation-delay: 0.55s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
