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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  touch-action: pan-y;
}

:root {
  color-scheme: light;
  --collective-logo-size: 1500px;
  --bg: #efefef;
  --text: #111111;
  --muted: #6f6f6f;
  --accent: #3bb8ff;
  --card: #f7f7f7;
  --border: rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain-base,
.grain-spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='black' fill-opacity='0.18'%3E%3Ccircle cx='12' cy='18' r='1'/%3E%3Ccircle cx='44' cy='26' r='1'/%3E%3Ccircle cx='77' cy='14' r='1'/%3E%3Ccircle cx='103' cy='31' r='1'/%3E%3Ccircle cx='146' cy='20' r='1'/%3E%3Ccircle cx='166' cy='38' r='1'/%3E%3Ccircle cx='22' cy='56' r='1'/%3E%3Ccircle cx='58' cy='48' r='1'/%3E%3Ccircle cx='89' cy='63' r='1'/%3E%3Ccircle cx='132' cy='54' r='1'/%3E%3Ccircle cx='158' cy='68' r='1'/%3E%3Ccircle cx='16' cy='92' r='1'/%3E%3Ccircle cx='47' cy='84' r='1'/%3E%3Ccircle cx='71' cy='102' r='1'/%3E%3Ccircle cx='109' cy='88' r='1'/%3E%3Ccircle cx='141' cy='104' r='1'/%3E%3Ccircle cx='170' cy='94' r='1'/%3E%3Ccircle cx='27' cy='128' r='1'/%3E%3Ccircle cx='63' cy='121' r='1'/%3E%3Ccircle cx='95' cy='138' r='1'/%3E%3Ccircle cx='126' cy='124' r='1'/%3E%3Ccircle cx='155' cy='142' r='1'/%3E%3Ccircle cx='18' cy='160' r='1'/%3E%3Ccircle cx='52' cy='170' r='1'/%3E%3Ccircle cx='86' cy='158' r='1'/%3E%3Ccircle cx='118' cy='168' r='1'/%3E%3Ccircle cx='149' cy='160' r='1'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: grainMove 10s steps(8) infinite;
}

.grain-base {
  opacity: 0.6;
}

.grain-spotlight {
  opacity: 1;
  clip-path: circle(0px at 50% 50%);
  transition: clip-path 0.12s linear;
}

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

.site-header {
  width: 100%;
  padding: 28px 34px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1000;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.burger {
  width: 54px;
  height: 40px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 34px;
  height: 4px;
  background: var(--text);
  border-radius: 20px;
  margin-left: auto;
  transition: 0.3s ease;
}

.burger.active span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.burger.active span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 80px;
  right: 34px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 18px 22px;
  display: none;
  flex-direction: column;
  gap: 14px;
  min-width: 180px;
  z-index: 1001;
}
.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
}

main {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.hero {
  position: relative;
  padding: 10px 0 30px;
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-kicker {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 700;
  text-align: center;
}

.accent {
  color: var(--accent);
  display: inline-block;
  animation: accentFloat 3s ease-in-out infinite;
}

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

.dot {
  color: var(--accent);
}

.hero-image-card {
  margin: 48px auto 0;
  width: min(100%, 1120px);
  height: 550px;
  border-radius: 34px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("Bilder/Hauptbild.png") center/cover no-repeat;
}

.hero-image-label {
  position: absolute;
  top: 28px;
  left: 28px;
  color: white;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0.9;
}


.hero-image-claim span {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 8;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.hero-shape-top {
  width: 260px;
  height: 260px;
  top: 110px;
  right: 40px;
  animation: floatTop 7s ease-in-out infinite;
  z-index: 9;
}

.hero-shape-bottom {
  width: 150px;
  height: 150px;
  left: 120px;
  bottom: -30px;
  animation: floatBottom 9s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.226);
}

.hero-ring {
  position: absolute;
  right: 90px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  border: 2px solid rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: rotateRing 18s linear infinite;
}

.hero-ring-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-ring-text {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: lowercase;
  fill: rgba(0, 0, 0, 0.75);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 100px;
  
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-image {
  height: 240px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.45s ease;
  will-change: transform;
}

.service-card:hover .service-image {
  transform: scale(1.06);
}

.service-image-1 {
  background-image: url("https://images.unsplash.com/photo-1492619375914-88005aa9e8fb?auto=format&fit=crop&w=900&q=80");
}

.service-image-2 {
  background-image: url("Bilder/Bild2.png");
}

.service-image-3 {
  background-image: url("Bilder/Bild3.png");
}

.service-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: #2d2d2d;
}

.service-link {
  font-size: 2rem;
  line-height: 1;
  width: fit-content;
  transition: transform 0.2s ease;
}

.service-link:hover {
  transform: translateX(6px);
}

.music-trigger {
  position: relative;
  cursor: pointer;
}

.music-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  z-index: 5;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.music-trigger:hover .music-badge {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.7);
}

.music-icon,
.music-text {
  line-height: 1;
}

.music-icon {
  font-size: 0.8rem;
}

.collective-section {
  margin-top: 140px;
  padding: 40px 0 20px;
}

.collective-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.collective-copy {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 2s ease, transform 3s ease;
}

.collective-visual {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 2s ease, transform 3s ease;
}

.reveal-section.is-visible .collective-copy,
.reveal-section.is-visible .collective-visual {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.collective-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 16px;
}

.collective-copy h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: lowercase;
}

.collective-copy h2 span {
  color: var(--accent);
}

.collective-text {
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #2a2a2a;
  margin-bottom: 26px;
}

.collective-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collective-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 0px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}

.collective-panel {
  position: relative;
  min-height: 520px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collective-panel-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1500px;
  max-width: none;
  height: auto;
  display: block;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

.collective-core {
  position: absolute;
  inset: 50%;
  width: 270px;
  height: 270px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px;
  z-index: 3;
  animation: collectiveFloat 7s ease-in-out infinite;
  
}

.collective-core-small {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.collective-core-name {
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: var(--text);
}

.collective-orbit {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.09);
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 360px;
  height: 360px;
  animation: orbitRotate 24s linear infinite;
}

.orbit-2 {
  width: 470px;
  height: 470px;
  animation: orbitRotateReverse 30s linear infinite;
}

.orbit-1::before,
.orbit-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.orbit-2::before {
  width: 12px;
  height: 12px;
  left: auto;
  right: 26px;
  top: 14%;
}

.collective-float {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

.collective-float-1 {
  width: 140px;
  height: 140px;
  top: 36px;
  right: 34px;
  animation: floatBlobA 8s ease-in-out infinite;
}

.collective-float-2 {
  width: 92px;
  height: 92px;
  bottom: 44px;
  left: 30px;
  animation: floatBlobB 9s ease-in-out infinite;
}

.collective-float-3 {
  width: 54px;
  height: 54px;
  top: 90px;
  left: 60px;
  animation: floatBlobC 6s ease-in-out infinite;
}

.contact-preview {
  margin-top: 100px;
  padding: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 16px;
}

.contact-preview h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: lowercase;
}

.contact-text {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2c2c2c;
  margin-bottom: 28px;
}

.contact-button {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  font-weight: 600;
  transition: 0.25s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  margin-top: 34px;
}

.contact-info-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.contact-info-card {
  padding: 30px;
}

.contact-info-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-info-card h3 {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 26px;
}

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

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

.contact-info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.contact-info-item a,
.contact-info-item p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
}

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

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-preview {
  margin-top: 100px;
  padding: 48px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center; /* DAS ist der wichtigste Punkt */
}

.contact-label,
.contact-preview h2,
.contact-text {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-text {
  margin-bottom: 40px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 160px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(59, 184, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(59, 184, 255, 0.12);
}

.contact-submit-button {
  margin-top: 20px;
  border: none;
  border-radius: 999px;
  padding: 16px 24px;
  background: var(--text);
  color: white;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-submit-button:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

.site-footer {
  position: relative;
  margin-top: 120px;
  padding: 90px 28px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.footer-brand h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 18px;
}

.footer-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer-text {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #2b2b2b;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer-column a,
.footer-column p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.footer-column a {
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  opacity: 0.7;
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-glow,
.footer-orbit {
  position: absolute;
  pointer-events: none;
}

.footer-glow {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(2px);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.06);
}

.footer-glow-1 {
  width: 220px;
  height: 220px;
  top: 30px;
  right: 8%;
  animation: footerFloatA 9s ease-in-out infinite;
}

.footer-glow-2 {
  width: 140px;
  height: 140px;
  bottom: 40px;
  left: 6%;
  animation: footerFloatB 11s ease-in-out infinite;
}

.footer-orbit {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-orbit-1 {
  width: 320px;
  height: 320px;
  top: -90px;
  right: -60px;
  animation: footerRotate 24s linear infinite;
}

.footer-orbit-2 {
  width: 180px;
  height: 180px;
  bottom: 10px;
  left: -40px;
  animation: footerRotateReverse 18s linear infinite;
}

.footer-orbit-1::before,
.footer-orbit-2::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
}

.footer-orbit-1::before {
  top: 20%;
  right: 18px;
}

.footer-orbit-2::before {
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
}

.hero-showcase {
  position: relative;
  width: min(100%, 1120px);
  height: 550px;
  margin: 48px auto 0;
}

.hero-slide-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 3;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              width 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-side-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-40px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-side-panel-inner {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-side-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-side-panel h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.hero-side-panel p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2a2a2a;
  margin-bottom: 14px;
}

.hero-hover-hint {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-showcase:hover .hero-slide-card {
  width: 58%;
  transform: translateX(-6%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.hero-showcase:hover .hero-side-panel {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-showcase:hover .hero-hover-hint {
  opacity: 0;
  transform: translateY(4px);
}

.hero-mobile-panel {
  display: none;
}

.hero-mobile-panel-inner {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  padding: 26px 22px;
}

.hero-mobile-panel .hero-side-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-mobile-panel h2 {
  font-size: clamp(1.8rem, 7vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.hero-mobile-panel p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.hero-mobile-panel.show {
  display: block;
}

.contact-form-wrap {
  position: relative;
  width: 100%;
}

.contact-form-card,
.contact-success {
  width: 100%;
}

.contact-form-card {
  transition: opacity 1s ease, transform 1s ease;
}

.contact-form-card.is-hiding {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.contact-success {
  display: none;
  min-height: 100%;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.contact-success.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.contact-success-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-success h3 {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.contact-success p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2a2a2a;
}

@keyframes clickHintPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

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

@keyframes footerFloatB {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
}

@keyframes footerRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes footerRotateReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

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

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

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes grainMove {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-8px, 6px);
  }
  40% {
    transform: translate(6px, -10px);
  }
  60% {
    transform: translate(-4px, 8px);
  }
  80% {
    transform: translate(8px, 4px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes collectiveFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes orbitRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitRotateReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

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

@keyframes floatBlobB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

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

@media (max-width: 1100px) {
  .services {
    grid-template-columns: 1fr;
  }

  .collective-grid {
    grid-template-columns: 1fr;
  }

  .collective-panel {
    min-height: 420px;
  }

  .hero-image-card {
    height: 480px;
  }

  .hero-ring {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 700px) {
  :root {
    --collective-logo-size: 700px;
  }

  .collective-panel-bg {
  width: 800px;
}

.collective-tags {
  display: flex;
  flex-wrap: nowrap;
  gap:8px;
  padding: 20px;
}

.collective-tags span {
  padding: 8px 10px;
  font-size: 0.76rem;
  white-space: nowrap;
}

  .site-header {
    padding: 20px;
  }

  .mobile-menu {
    right: 20px;
    top: 72px;
  }

  main {
    padding: 0 12px 60px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 56px;
  }

  .hero-text,
  .services,
  .service-card,
  .collective-visual {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 19vw, 6.5rem);
  }

  .hero-showcase {
    position: relative;
    width: 100%;
    height: auto;
    margin: 32px auto 0;
  }

  .hero-slide-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 330px;
    margin: 0;
    transform: none;
    box-shadow: none;
  }

  .hero-image-card {
    height: 330px;
    border-radius: 24px;
  }

  .hero-side-panel {
    display: none;
  }

  .hero-showcase:hover .hero-slide-card {
    width: 100%;
    transform: none;
    box-shadow: none;
  }

  .hero-hover-hint {
    right: 18px;
    bottom: 16px;
    font-size: 0.68rem;
  }

  .hero-mobile-panel {
    display: none;
    width: 100%;
    margin-top: 18px;
  }

  .hero-mobile-panel.show {
    display: block;
  }

  .hero-showcase.is-mobile-open {
    margin-bottom: 0;
  }

  .hero-shape-top {
    width: 120px;
    height: 120px;
    top: 70px;
    right: -60px;
  }

  .hero-shape-bottom {
    left: -50px;
    bottom: -20px;
    transition: none;
  }

  .hero-ring {
    right: -50px;
    bottom: -30px;
    transition: none;
  }

  .hero-ring-text {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 48px;
  }

  .service-image {
    height: 210px;
    background-position: center center;
  }

  .service-card {
    align-items: stretch;
  }

  .service-card p,
  .service-link {
    width: 100%;
  }

  .collective-section {
    margin-top: 110px;
    padding: 10px 0 0;
  }

  .collective-copy h2 {
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
    overflow-wrap: anywhere;
  }

  .collective-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .collective-panel {
    width: 100%;
    min-height: 320px;
    border-radius: 24px;
  }

  .collective-core {
    width: 180px;
    height: 180px;
    padding: 18px;
  }

  .collective-core-small {
    font-size: 0.68rem;
    margin-bottom: 8px;
  }

  .collective-core-name {
    font-size: 1.1rem;
  }

  .orbit-1 {
    width: 240px;
    height: 240px;
  }

  .orbit-2 {
    width: 300px;
    height: 300px;
  }

  .collective-float-1 {
    width: 90px;
    height: 90px;
    top: 18px;
    right: 18px;
  }

  .collective-float-2 {
    width: 64px;
    height: 64px;
    left: 18px;
    bottom: 18px;
  }

  .collective-float-3 {
    width: 38px;
    height: 38px;
    left: 28px;
    top: 58px;
  }

  .contact-preview {
    padding: 36px 10px 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 22px;
    border-radius: 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card h3 {
    font-size: 1.6rem;
  }

  .site-footer {
    margin-top: 90px;
    padding: 70px 16px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .footer-text {
    font-size: 1rem;
  }

  .footer-bottom {
    margin-top: 36px;
    padding-top: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-glow-1 {
    width: 140px;
    height: 140px;
    top: 20px;
    right: -20px;
  }

  .footer-glow-2 {
    width: 90px;
    height: 90px;
    left: -10px;
    bottom: 30px;
  }

  .footer-orbit-1 {
    width: 180px;
    height: 180px;
    top: -30px;
    right: -50px;
  }

  .footer-orbit-2 {
    width: 110px;
    height: 110px;
    left: -30px;
    bottom: 20px;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card {
  align-items: stretch;
}

.service-card p,
.service-link {
  width: 100%;
}

.collective-panel {
  width: 100%;
}


.contact-info-item a {
  text-decoration: none;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.contact-info-item a:hover {
  border-color: var(--accent);
  opacity: 0.7;
}



