@font-face {
  font-family: "Luckiest Guy";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/luckiest-guy-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/nunito-sans-latin-variable.woff2") format("woff2");
}

:root {
  --cream: #fcf7ef;
  --sand: #f7efe3;
  --navy: #143b63;
  --navy-deep: #0d2d4c;
  --sky: #4fc4ff;
  --sea: #1489d4;
  --sea-deep: #0d5fa4;
  --yellow: #ffd11a;
  --yellow-deep: #f1b700;
  --shadow: 0 8px 16px rgba(20, 59, 99, 0.08);
  --headline-font: "Luckiest Guy", Impact, sans-serif;
  --wavy-line: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='144' height='12' viewBox='0 0 144 12'%3E%3Cpath d='M0 6c6 0 6-4 12-4s6 4 12 4 6-4 12-4 6 4 12 4 6-4 12-4 6 4 12 4 6-4 12-4 6 4 12 4 6-4 12-4 6 4 12 4 6-4 12-4 6 4 12 4' fill='none' stroke='%23143b63' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", Arial, sans-serif;
  color: var(--navy-deep);
  background: #fffcf7;
}

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 48px 0 64px;
}

.section__intro {
  text-align: center;
  margin-bottom: 28px;
  margin-top: 28px;
}

.section__intro h2,
.gallery h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--headline-font);
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.96;
  text-transform: uppercase;
}

.section__intro p,
.manifesto__lead {
  max-width: 700px;
  margin: 12px auto 0;
  font-size: 1.15rem;
  line-height: 1.65;
}

.features {
  padding: 48px 0 0;
}

.features .section__intro {
  margin-bottom: 60px;
}

.features .section__intro h2 {
  font-size: clamp(3.4rem, 5.5vw, 6rem);
}

.features .section__intro h2 span {
  color: var(--yellow);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 0px solid rgba(20, 59, 99, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  position: relative;
  align-self: stretch;
  width: 150px;
  z-index: 2;
}

.brand img {
  position: absolute;
  top: -10px;
  left: 0;
  width: 150px;
  max-width: none;
  filter: drop-shadow(0 8px 12px rgba(13, 45, 76, 0.2));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a,
.header-contact {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after,
.header-contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.header-contact:hover::after {
  background: var(--yellow);
}

.header-contact {
  justify-self: end;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 6px;
  border: none;
  background: var(--yellow);
  box-shadow: 0 4px 10px rgba(20, 59, 99, 0.1);
  color: var(--navy-deep);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(20, 59, 99, 0.14);
}

.button svg {
  width: 20px;
  height: 20px;
}

.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__picture {
  display: block;
  width: 100%;
}

.hero__image {
  width: 100%;
  height: auto;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(13, 45, 76, 0.42) 0%,
    rgba(13, 45, 76, 0.22) 42%,
    transparent 68%
  );
}

.hero__copy {
  position: absolute;
  top: 50%;
  right: clamp(28px, 6vw, 115px);
  left: 55%;
  max-width: 640px;
  transform: translateY(-50%);
  color: #ffffff;
  text-align: left;
  filter: drop-shadow(0 3px 9px rgba(5, 24, 39, 0.58));
}

.kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: var(--headline-font);
  font-size: clamp(3.3rem, 6vw, 7.4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero h1 .hero__highlight {
  color: var(--yellow);
}

.hero__claim {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
}

.hero__claim span {
  display: block;
}

.hero__claim span:last-child {
  color: var(--yellow);
}

.story__spark svg,
.gallery__headline-decoration svg {
  display: block;
  width: 100%;
  height: auto;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8px 0;
}

.section-divider img {
  width: 100%;
  max-width: 900px;
  height: auto;
}

.feature-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy-deep);
}

.feature-visual__picture {
  display: block;
  width: 100%;
}

.feature-visual__image {
  width: 100%;
  height: auto;
}

.feature-visual__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(13, 45, 76, 0.38) 0%,
    rgba(13, 45, 76, 0.16) 30%,
    transparent 56%
  );
}

.feature-visual__copy {
  position: absolute;
  top: 50%;
  right: clamp(28px, 6vw, 115px);
  width: min(34vw, 500px);
  transform: translateY(-50%);
  color: #ffffff;
  filter: drop-shadow(0 3px 9px rgba(5, 24, 39, 0.58));
}

.feature-visual__copy p {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
}

.feature-visual__copy strong {
  margin-top: 0.7em;
  font-weight: 800;
  line-height: 1.4;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
  padding: clamp(85px, 10vw, 160px) clamp(24px, 8vw, 150px);
}

.manifesto h2 {
  margin: 25px 0 0;
  color: var(--navy);
  font-family: var(--headline-font);
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}

.manifesto h2 span {
  color: var(--yellow);
}

.manifesto__copy {
  padding-bottom: 8px;
}

.manifesto__lead {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.55;
}

.check-list {
  padding: 0;
  margin: 24px 0 34px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 700;
}

.check-list svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
  flex: 0 0 auto;
}

.sun-band {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  min-height: 560px;
  background: var(--yellow);
}

.sun-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 110px);
}

.sun-band h2 {
  margin: 24px 0 0;
  color: var(--navy);
  font-family: var(--headline-font);
  font-size: clamp(3.8rem, 6.2vw, 7rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.sun-band img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}


.section__intro--narrow {
  position: relative;
  max-width: 820px;
}

.gallery .section__intro {
  max-width: 1040px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.gallery__inline-logo {
  display: inline-flex;
  align-items: center;
  height: 0.98em;
  margin-inline: 0.08em;
  vertical-align: -0.14em;
}

.gallery__inline-logo img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  filter: drop-shadow(0 3px 4px rgba(13, 45, 76, 0.12));
}

.moments-reel {
  --moments-reel-duration: 58s;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 18px;
}

.moments-reel__track {
  display: flex;
  width: max-content;
}

.moments-reel__group {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(16px, 1.8vw, 28px);
  padding-right: clamp(16px, 1.8vw, 28px);
  animation: moments-scroll var(--moments-reel-duration) linear infinite;
  will-change: transform;
}

.gallery-card {
  flex: 0 0 auto;
  margin: 0;
  height: clamp(260px, 29vw, 430px);
  border-radius: 6px;
  background: linear-gradient(180deg, #eef6fc 0%, #dceaf5 100%);
  box-shadow: 0 8px 16px rgba(20, 59, 99, 0.08);
  overflow: hidden;
}

.gallery-card img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.gallery__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 46px);
}

.button--instagram {
  padding-inline: 22px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(20, 59, 99, 0.12);
}

.button--instagram span {
  white-space: nowrap;
}

.button--instagram__logo {
  width: 112px;
  height: auto;
  flex: 0 0 auto;
}

.button--instagram svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

@keyframes moments-scroll {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (hover: hover) {
  .moments-reel:hover .moments-reel__group {
    animation-play-state: paused;
  }
}

@media (max-width: 1000px) and (hover: none) {
  .moments-reel {
    --moments-reel-duration: 36s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .moments-reel {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .moments-reel__group {
    animation: none;
  }

  .moments-reel__group[aria-hidden="true"] {
    display: none;
  }
}

.events {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 8vw;
  align-items: start;
  padding: 100px clamp(24px, 8vw, 150px) 140px;
}

.events h2 {
  margin: 25px 0 0;
  color: var(--navy);
  font-family: var(--headline-font);
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}

.events__kicker {
  display: flex;
  align-items: center;
  gap: 0.6em;
  flex-wrap: wrap;
}

.events__inline-logo {
  display: inline-flex;
  align-items: center;
  height: 1.8em;
}

.events__inline-logo img {
  width: auto;
  max-width: none;
  height: 100%;
}

.events__list {
  min-width: 0;
}

.event-card {
  align-self: start;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 35px;
  align-items: center;
  padding: 32px 0;
  border-top: 2px solid var(--navy-deep);
  border-bottom: 1px solid rgba(20, 59, 99, 0.1);
}

.event-card + .event-card {
  border-top: 0;
}

.event-card__date {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-card__date strong {
  color: var(--yellow);
  font-family: var(--headline-font);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
}

.event-card__date span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 12px 0 0;
  color: var(--navy);
  font-family: var(--headline-font);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.event-card__status {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(20, 59, 99, 0.08);
  color: rgba(13, 45, 76, 0.66);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.event-card--past {
  border-color: rgba(20, 59, 99, 0.18);
}

.event-card--past .event-card__date strong {
  color: rgba(20, 59, 99, 0.34);
}

.event-card--past .event-card__date span,
.event-card--past .kicker,
.event-card--past > a {
  color: rgba(13, 45, 76, 0.48);
}

.event-card--past h3 {
  color: rgba(20, 59, 99, 0.5);
}

.event-card > a {
  font-size: 2rem;
}

.kontakt__cta-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

#email-btn {
  background: #ffffff;
}

.kontakt {
  position: relative;
  min-height: 620px;
  padding-top: 88px;
  padding-bottom: 240px;
  background-image: url("images/finals/Lady_Yellow_Produkt_393-3.jpg");
  background-position: center center;
  background-size: cover;
}

.kontakt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 35, 57, 0.152) 0%,
    rgba(8, 35, 57, 0.096) 52%,
    rgba(8, 35, 57, 0.032) 100%
  );
  pointer-events: none;
}

.kontakt > .container {
  position: relative;
  z-index: 1;
}

.kontakt .section__intro {
  margin-top: 0;
  color: #ffffff;
  filter: drop-shadow(0 3px 9px rgba(5, 24, 39, 0.58));
}

.kontakt .section__intro h2,
.kontakt .section__intro p {
  color: #ffffff;
}

.kontakt__cta-wrap {
  filter: drop-shadow(0 3px 9px rgba(5, 24, 39, 0.58));
}

.kontakt .button--outline {
  color: #ffffff;
  border-color: #ffffff;
}

.kontakt .button--outline:hover {
  color: var(--navy-deep);
  background: #ffffff;
}

main:has(> .kontakt:last-child) + .site-footer {
  z-index: 1;
  margin-top: min(-190px, -12vw);
}

.button--outline {
  background: transparent;
  border: 2.5px solid var(--navy);
  box-shadow: none;
}

.button--outline:hover {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(20, 59, 99, 0.15);
}

.impressum-page {
  padding-top: 160px;
}

.impressum-page h1 {
  margin: 0 0 32px;
  color: var(--navy);
  font-family: var(--headline-font);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
}

.impressum-page h2 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
}

.impressum-page h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
}

.impressum-page p {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
}

.impressum-page a {
  color: var(--sea);
  text-decoration: underline;
}

.site-footer {
  position: relative;
  margin-top: 96px;
  padding: 92px 0 30px;
  color: #ffffff;
}

.site-footer::before {
  content: none;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.footer__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: end;
}

.footer__brand {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-width: 0;
}

.footer__brand img {
  width: min(100%, 320px);
  min-width: 200px;
  margin-top: -90px;
  margin-left: 8px;
  filter: drop-shadow(0 12px 18px rgba(13, 45, 76, 0.28));
}

.footer__content {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  gap: clamp(20px, 2vw, 30px);
  align-items: end;
  padding-top: 36px;
}

.footer__copy p {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 900;
  white-space: nowrap;
}

.footer__copy small {
  color: rgba(255, 255, 255, 0.68);
}

.footer__menu {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  justify-content: flex-end;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(13px);
}

.footer__menu a {
  color: rgba(255, 255, 255, 0.94);
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 2px;
}

.footer__instagram svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1100px) {
  .footer__layout {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }

  .footer__brand {
    justify-content: center;
  }

  .footer__brand img {
    width: min(100%, 280px);
    margin-top: -66px;
    margin-left: 0;
  }

  .footer__content {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 8px;
  }

  .footer__menu {
    order: -1;
    justify-content: center;
    white-space: normal;
    flex-wrap: wrap;
    transform: none;
  }

  .site-footer {
    margin-top: 84px;
    padding-top: 108px;
    padding-bottom: 52px;
  }

  main:has(> .kontakt:last-child) + .site-footer {
    margin-top: -170px;
  }
}


@media (max-width: 1000px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 14px 0;
  }

  .brand {
    display: flex;
    justify-content: center;
    position: static;
    align-self: auto;
    width: auto;
  }

  .brand img {
    position: static;
    width: 132px;
    max-width: 100%;
    filter: none;
  }

  .site-nav {
    font-size: 0.88rem;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-header__inner > .header-contact {
    display: none;
  }

  .manifesto,
  .events {
    grid-template-columns: 1fr;
  }

  .sun-band {
    grid-template-columns: 1fr;
  }

  .sun-band img {
    min-height: 440px;
  }

}

@media (max-width: 760px) {
  .hero__copy {
    top: 50%;
    right: 16px;
    left: 52%;
    max-width: none;
    transform: translateY(-50%);
    text-align: left;
  }

  .hero h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 8.4vw, 3.5rem);
  }

  .hero__claim {
    font-size: clamp(0.72rem, 3.2vw, 1rem);
    white-space: nowrap;
  }

  .hero__shade {
    background: linear-gradient(
      270deg,
      rgba(13, 45, 76, 0.46) 0%,
      rgba(13, 45, 76, 0.24) 48%,
      transparent 78%
    );
  }

  .feature-visual__copy {
    right: 12px;
    left: 52%;
    width: auto;
  }

  .feature-visual__copy p {
    font-size: clamp(0.62rem, 2.7vw, 0.82rem);
    line-height: 1.28;
  }

  .feature-visual__shade {
    background: linear-gradient(
      270deg,
      rgba(13, 45, 76, 0.46) 0%,
      rgba(13, 45, 76, 0.22) 36%,
      transparent 62%
    );
  }
}

@media (max-width: 480px) {
  .container,
  .section-divider {
    width: min(calc(100% - 28px), 1180px);
  }

  .section {
    padding: 38px 0 52px;
  }

  .button--instagram {
    gap: 6px;
    padding-inline: 10px;
    font-size: 0.64rem;
  }

  .button--instagram__logo {
    width: 72px;
  }

  .button--instagram svg {
    width: 22px;
    height: 22px;
  }

  .kontakt {
    min-height: 570px;
    padding-top: 64px;
    padding-bottom: 210px;
    background-position: 52% center;
  }

  .section__intro p,
  .manifesto__lead {
    font-size: 1rem;
  }

  .gallery-card {
    height: 250px;
  }

  .events {
    padding: 80px 22px 100px;
  }

  .events h2 {
    font-size: 3.5rem;
  }

  .event-card {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .event-card__date {
    grid-column: 1 / 3;
  }

  .manifesto {
    padding: 80px 22px;
  }

  .manifesto h2 {
    font-size: 3.5rem;
  }

  .sun-band__copy {
    padding: 70px 22px;
  }

  .sun-band h2 {
    font-size: 3.8rem;
  }

  .sun-band img {
    min-height: 330px;
  }

  .site-footer {
    margin-top: 72px;
    padding-top: 92px;
    padding-bottom: 40px;
  }

  main:has(> .kontakt:last-child) + .site-footer {
    margin-top: -150px;
  }

  .footer__layout {
    gap: 18px;
  }

  .footer__brand img {
    width: min(100%, 240px);
    min-width: 0;
    margin-top: -56px;
  }

  .footer__content {
    justify-items: center;
    text-align: center;
    gap: 18px;
    padding-top: 0;
  }

  .footer__copy {
    width: 100%;
    min-width: 0;
  }

  .footer__copy p {
    font-size: 1.4rem;
    white-space: normal;
  }

  .footer__menu {
    justify-content: center;
  }
}
