* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #f0e6d8;
  --paper: #3b2a1c;
  --paper-dark: #332316;
  --accent: #e8b87a;
  --accent-dark: #daa660;
  --muted: #d9cfc3;
  --border: rgba(240, 230, 216, 0.12);
  --shadow: rgba(29, 27, 24, 0.08);
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: var(--paper) url('Filmstreifen.png') center/cover fixed;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

body.intro-active header,
body.intro-active main,
body.intro-active footer {
  opacity: 0;
  pointer-events: none;
}

.intro {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #1e1211 0%, #0c0908 55%, #050403 100%);
  color: #f0e6d6;
  display: grid;
  place-items: center;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.9s ease;
  overflow: hidden;
}

.intro.hide {
  opacity: 0;
  pointer-events: none;
}

.intro-sun {
  position: absolute;
  top: 18%;
  left: -20%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe7a6, #f3c24f 55%, #b86a2c 100%);
  box-shadow: 0 0 40px rgba(243, 194, 79, 0.5),
    0 0 120px rgba(243, 194, 79, 0.25);
  animation: sunTraverse 6.8s ease-in-out forwards;
  opacity: 0.9;
  z-index: 0;
}

@keyframes sunTraverse {
  0% {
    transform: translateX(0) translateY(0) scale(0.9);
    opacity: 0.8;
  }
  70% {
    transform: translateX(55vw) translateY(6vh) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(55vw) translateY(6vh) scale(1);
    opacity: 1;
  }
}

.intro-center {
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: introFloat 3.2s ease-in-out forwards;
}

.intro-lines {
  width: min(320px, 70vw);
  height: 12px;
  margin: 0 auto 24px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
}

.intro-lines .line-svg {
  width: 100%;
  height: 12px;
  overflow: visible;
}

.intro-lines .line-path {
  fill: none;
  stroke: rgba(240, 230, 214, 0.8);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  filter: drop-shadow(0 0 6px rgba(240, 230, 214, 0.35));
}

.intro-lines .left .line-path {
  transform-origin: left center;
  animation: introWavyLeft 2.4s ease-in-out forwards;
}

.intro-lines .right .line-path {
  transform-origin: right center;
  animation: introWavyRight 2.4s ease-in-out forwards;
  animation-delay: 0.35s;
}

.intro-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 10px;
}

.intro-sub {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 18px;
}

.intro-skip {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(240, 230, 214, 0.4);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 150px;
  transition: background 0.4s ease, border-color 0.4s ease,
    border-radius 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.intro-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(76px + 2cm);
  height: calc(76px + 2cm);
  border-radius: 50%;
  background: rgba(243, 194, 79, 0.9);
  color: #3a2719;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: screen;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35),
    inset 0 0 18px rgba(255, 255, 255, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.2s ease;
  z-index: 12;
}

.intro:hover .intro-cursor {
  opacity: 1;
}
.intro-skip::before {
  content: "☺";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 6px;
  height: 6px;
  background: #3a2719;
  border-radius: 50%;
  box-shadow: 16px 0 0 #3a2719;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.intro-skip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  width: 18px;
  height: 8px;
  border-bottom: 3px solid #3a2719;
  border-radius: 0 0 16px 16px;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.intro-skip:hover {
  background: #f3c24f;
  border-color: #f3c24f;
  border-radius: 40px 70px 46px 78px / 54px 66px 44px 60px;
  color: transparent;
  transform: translateY(-3px) rotate(-1.5deg);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2),
    inset 0 0 18px rgba(255, 255, 255, 0.35);
}

.intro-skip:hover::before,
.intro-skip:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

@keyframes introLineLeft {
  0% {
    transform: translateX(18%) scaleX(0);
    opacity: 0.3;
  }
  35% {
    transform: translateX(0) scaleX(1);
    opacity: 1;
  }
  65% {
    transform: translateX(6%) scaleX(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(18%) scaleX(0);
    opacity: 0.3;
  }
}

@keyframes introLineRight {
  0% {
    transform: translateX(-18%) scaleX(0);
    opacity: 0.3;
  }
  35% {
    transform: translateX(0) scaleX(1);
    opacity: 1;
  }
  65% {
    transform: translateX(-6%) scaleX(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-18%) scaleX(0);
    opacity: 0.3;
  }
}

@keyframes introWavyLeft {
  0% {
    stroke-dashoffset: 260;
    opacity: 0.3;
    transform: translateX(18%) scaleX(0);
  }
  35% {
    stroke-dashoffset: 0;
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
  55% {
    transform: translateX(2%) scaleX(0.95) skewX(-2deg);
  }
  70% {
    stroke-dashoffset: 90;
    opacity: 0.7;
    transform: translateX(6%) scaleX(0.7);
  }
  100% {
    stroke-dashoffset: 260;
    opacity: 0.3;
    transform: translateX(18%) scaleX(0);
  }
}

@keyframes introWavyRight {
  0% {
    stroke-dashoffset: 260;
    opacity: 0.3;
    transform: translateX(-18%) scaleX(0);
  }
  35% {
    stroke-dashoffset: 0;
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
  55% {
    transform: translateX(-2%) scaleX(0.95) skewX(2deg);
  }
  70% {
    stroke-dashoffset: 90;
    opacity: 0.7;
    transform: translateX(-6%) scaleX(0.7);
  }
  100% {
    stroke-dashoffset: 260;
    opacity: 0.3;
    transform: translateX(-18%) scaleX(0);
  }
}

@keyframes introFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.25),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(0, 0, 0, 0.08),
      transparent 55%
    );
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
  animation: backgroundFlicker 2.6s steps(6) infinite;
  z-index: 0;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.25;
  animation: grain 1.6s steps(6) infinite;
  z-index: 3;
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.35;
  }
  20% {
    transform: translate(-4%, -2%);
    opacity: 0.5;
  }
  40% {
    transform: translate(3%, 1%);
    opacity: 0.3;
  }
  60% {
    transform: translate(-2%, 3%);
    opacity: 0.55;
  }
  80% {
    transform: translate(2%, -3%);
    opacity: 0.4;
  }
}

@keyframes backgroundFlicker {
  0%,
  100% {
    opacity: 0.14;
  }
  18% {
    opacity: 0.06;
  }
  36% {
    opacity: 0.26;
  }
  48% {
    opacity: 0.08;
  }
  62% {
    opacity: 0.3;
  }
  76% {
    opacity: 0.1;
  }
  90% {
    opacity: 0.22;
  }
}

main,
header,
footer {
  position: relative;
  z-index: 2;
}

header,
main,
footer {
}

.hero {
  padding: 48px 8vw 96px;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: "Playfair Display", serif;
  position: relative;
  z-index: 2;
}

.logo {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero-content {
  max-width: 620px;
  margin-top: 60px;
  animation: fadeInUp 1s ease both;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 20px;
  color: pink;
}

.lead {
  font-size: 1.4rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  border: 1px solid var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--paper-dark);
  box-shadow: 0 4px 16px rgba(232, 184, 122, 0.3);
  border: 1px solid rgba(232, 184, 122, 0.4);
}

.btn.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(240, 230, 216, 0.25);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(232, 184, 122, 0.3);
  opacity: 0;
  transform: scale(0.85) rotate(-2deg);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 184, 122, 0.3);
}

.btn:hover::before {
  width: 320%;
  height: 320%;
  opacity: 0.55;
}

.btn:hover::after {
  opacity: 0;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #f0c88a 0%, var(--accent) 100%);
  box-shadow: 0 8px 28px rgba(232, 184, 122, 0.45);
}

.btn.ghost:hover {
  color: var(--accent);
  border-color: rgba(232, 184, 122, 0.4);
  background: rgba(232, 184, 122, 0.1);
}

.hero-lower {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.hero-left {
  max-width: 620px;
}

.hero-right {
  display: flex;
  align-items: flex-end;
}

.hero-frame {
  position: relative;
  z-index: 2;
  width: 11cm;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 20px;
}

.film-strip {
  display: none;
}

.beetle {
  font-size: 2.5rem;
  z-index: 5;
  position: relative;
  filter: grayscale(1) brightness(0.6) sepia(1) hue-rotate(180deg) saturate(5) brightness(1.2);
  animation: beetleWalk 12s ease-in-out forwards;
  pointer-events: none;
  width: fit-content;
}

@keyframes beetleWalk {
  0% {
    left: 0;
    top: 0;
    transform: rotate(90deg);
  }
  70% {
    left: 85%;
    top: 0;
    transform: rotate(90deg);
  }
  75% {
    left: 85%;
    top: 0;
    transform: rotate(180deg);
  }
  100% {
    left: 85%;
    top: 60px;
    transform: rotate(180deg);
  }
}

.hero-filmstrip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.film-strip::before,
.film-strip::after,
.film-frames {
  display: none;
}

.frame-inner {
  border: 1px dashed var(--accent-dark);
  padding: 16px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.frame-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes flicker {
  0%,
  100% {
    opacity: 0.9;
  }
  30% {
    opacity: 0.7;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0.8;
  }
}

.section {
  padding: 100px 8vw;
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.work {
  background: transparent;
}

.philosophy {
  background: transparent;
}

.section-header {
  max-width: 600px;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: pink;
}

.section-header p {
  color: var(--muted);
  font-size: 1.2rem;
}

.work-grid,
.philosophy-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.work-card {
  background: pink;
  color: #3a2719;
  border: 1px solid rgba(60, 40, 25, 0.15);
  padding: 14px;
  box-shadow: 0 12px 26px rgba(29, 27, 24, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.work-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  color: #2c1a0e;
}

.work-card p {
  color: #4a3020;
  font-size: 1.2rem;
}

.work-card .work-badge {
  background: rgba(60, 40, 25, 0.85);
  color: #f0e6d8;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(29, 27, 24, 0.1);
}

.work-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: linear-gradient(140deg, #5a4530, #3d2c1e);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.work-thumb:has(.work-video) {
  height: auto;
  background: none;
  aspect-ratio: auto;
}

.work-video {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.work-thumb.alt {
  background: none;
}

.work-thumb.dark {
  background: none;
}

.work-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.work-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(29, 27, 24, 0.75);
  color: #fff;
  padding: 6px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
}



.work-fallback {
  margin-top: 8px;
  font-size: 1rem;
}

.work-fallback a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(143, 107, 66, 0.4);
}

.philosophy-item {
  padding: 20px;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 12px;
}

.philosophy-item h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
  color: pink;
}

.services-list {
  margin: 16px 0 40px 2em;
  list-style: disc;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.services-list li {
  margin-bottom: 6px;
}

.service-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.dot {
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

/* ── Kontakt-Sektion ── */
.contact {
  background: transparent;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-deco {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}

.contact-deco-top {
  top: 5cm;
  background: linear-gradient(180deg, rgba(232, 184, 122, 0.06) 0%, transparent 100%);
  border-top: 1px solid rgba(232, 184, 122, 0.15);
}

.contact-deco-bottom {
  bottom: 0;
  background: linear-gradient(0deg, rgba(232, 184, 122, 0.04) 0%, transparent 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: pink;
}

.contact-lead {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--muted);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 184, 122, 0.1);
  border: 1px solid rgba(232, 184, 122, 0.2);
  font-size: 1.1rem;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 184, 122, 0.12);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(232, 184, 122, 0.08);
}

.contact-right {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-left: -38px;
}

.flower {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  flex-shrink: 0;
}

.flower-stem {
  width: 40px;
  height: 0;
  transform-origin: bottom;
}

.flower-stem svg {
  width: 80px;
  height: 220px;
}

.leaf {
  opacity: 0;
  transform-origin: center;
}

.contact.visible .leaf-1 {
  animation: leafGrow 0.8s ease-out 1.2s forwards;
}

.contact.visible .leaf-2 {
  animation: leafGrow 0.8s ease-out 1.8s forwards;
}

.contact.visible .leaf-3 {
  animation: leafGrow 0.8s ease-out 2.3s forwards;
}

@keyframes leafGrow {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

.flower-head {
  font-size: 7rem;
  opacity: 0;
  transform: scale(0);
  order: 1;
  margin-bottom: -38px;
}

.stem-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}

.contact.visible .stem-path {
  animation: stemDraw 3s ease-out forwards;
}

.contact.visible .flower-stem {
  height: 220px;
}

.contact.visible .flower-head {
  animation: flowerBloom 1.5s ease-out 3s forwards;
}

@keyframes stemDraw {
  0% {
    stroke-dashoffset: 300;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes flowerBloom {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-30deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.label-text {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(232, 184, 122, 0.15);
  background: rgba(74, 54, 36, 0.6);
  padding: 14px 18px;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(217, 207, 195, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(74, 54, 36, 0.8);
  box-shadow: 0 0 0 3px rgba(232, 184, 122, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  margin-top: 8px;
  padding: 16px 32px;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 184, 122, 0.25);
}

.form-note {
  font-size: 0.85rem;
  color: rgba(217, 207, 195, 0.5);
  text-align: center;
  margin-top: 4px;
}

/* Über mich */
.about-hero {
  min-height: 50vh;
}

.about-content {
  max-width: 680px;
}

.about-text p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.about-intro {
  background: transparent;
}

.about-journey {
  background: transparent;
}

.about-return {
  background: transparent;
}

.about-today {
  background: transparent;
}

.nav-active {
  color: var(--accent-dark) !important;
}

.logo {
  text-decoration: none;
  color: var(--ink);
}

.footer {
  padding: 28px 8vw 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1rem;
  color: var(--muted);
  background: transparent;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-hamburger {
    display: block;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    padding: 20px 0;
    font-size: 1.1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-lower {
    flex-direction: column;
  }

  .hero-frame {
    width: 100%;
  }

  .hero-filmstrip {
    width: 90%;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 36px 6vw 72px;
  }

  .section {
    padding: 70px 6vw;
  }

  .service-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-filmstrip {
    width: 100%;
    top: 5px;
    left: 0;
  }

  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact-form-wrapper {
    padding: 24px;
    border-radius: 12px;
  }

  .contact-text h2 {
    font-size: 2rem;
  }

  .contact-right {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .flower-head {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .intro-sun {
    width: 100px;
    height: 100px;
    top: 12%;
    left: -15%;
  }

  .intro-center {
    padding: 0 20px;
  }

  .intro-title {
    font-size: 1.5rem;
  }

  .intro-sub {
    font-size: 0.65rem;
  }

  .intro-cursor {
    display: none;
  }

  .intro-lines {
    width: 60vw;
  }

  .hero-filmstrip {
    width: 100%;
    top: 0;
    left: 0;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-frame {
    width: 100%;
    margin-top: 16px;
  }

  .hero-cta {
    margin-top: 40px !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    font-size: 1.1rem;
    margin-top: 20px !important;
  }

  .lead {
    font-size: 0.95rem;
    margin-top: 5mm;
  }
}
