:root {
  --bg: #f4f1ec;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.68);
  --line: rgba(17, 17, 17, 0.10);
  --green: #4f9442;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.10);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.25);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(92%, 1440px);
  margin: 0 auto;
  background: #ddd9d4;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.16);
  min-height: 100vh;
}

.container {
  width: min(90%, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 24px 0;
  background: rgba(221, 217, 212, 0.78);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.logo-link {
  justify-self: start;
}

.site-logo {
  height: 84px;
  width: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.14),
    0 6px 18px rgba(0, 0, 0, 0.07);
}

.site-nav a {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 4px;
  transition: color 0.28s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -2px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-divider {
  color: rgba(17, 17, 17, 0.34);
}

.header-meta {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 10px 16px 11px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.header-meta-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
}

.header-meta-times {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(17, 17, 17, 0.60);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #111111;
  transition: 0.25s ease;
}

.hero-section {
  position: relative;
  height: min(86vh, 920px);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.10) 28%, rgba(0, 0, 0, 0.04) 55%, rgba(0, 0, 0, 0.02) 100%);
  pointer-events: none;
}

.hero-date-badge {
  position: absolute;
  top: 56px;
  left: 56px;
  width: 210px;
  height: 210px;
  padding: 22px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.hero-date-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  line-height: 1.02;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-date-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  line-height: 1.18;
  color: #ffffff;
  font-weight: 700;
}

.hero-info-card {
  position: absolute;
  right: 100px;
  bottom: 100px;
  width: min(460px, calc(100% - 200px));
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-strong);
  z-index: 2;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.hero-info-card h1 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 2.7vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-info-card p {
  margin: 0;
  max-width: 40ch;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.88);
}

.section-spacing {
  padding: 72px 0;
}

.intro-section {
  padding-top: 76px;
}

.video-section {
  padding-top: 24px;
}

.cards-section,
.map-section,
.gallery-section,
.quotes-section,
.imprint-section {
  padding-top: 56px;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading-compact {
  max-width: 560px;
  margin-bottom: 22px;
}

.section-heading h2,
.intro-content h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.1vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.section-heading-compact h2 {
  font-size: clamp(1.9rem, 2.2vw, 2.6rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.intro-content p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
}

.intro-visual-mobile {
  display: none;
}

.intro-visual-desktop {
  display: block;
}

.intro-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  background: #000000;
}

.festival-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.feature-card {
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.feature-card-image-bottom {
  display: flex;
  flex-direction: column;
}

.card-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(17, 17, 17, 0.42);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
}

.card-inline-image {
  width: 100%;
  aspect-ratio: 4 / 2.8;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  margin: 0 0 18px;
}

.card-inline-image-bottom {
  margin: 18px 0 0;
}

.feature-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.map-wrap {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.map-frame {
  width: 100%;
  height: 580px;
  border: 0;
}

.map-overlay-card {
  position: absolute;
  left: 38px;
  bottom: 38px;
}

.map-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
}

.gallery-masonry {
  column-count: 4;
  column-gap: 18px;
}

.gallery-item {
  break-inside: avoid;
  overflow: hidden;
  margin: 0 0 18px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  background: #ffffff;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  transition: transform 0.7s ease, filter 0.45s ease;
  will-change: transform;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
  filter: saturate(1.02) contrast(1.02);
}

.gallery-item-1 .gallery-img { aspect-ratio: 4 / 5.45; object-fit: cover; }
.gallery-item-2 .gallery-img { aspect-ratio: 4 / 5.30; object-fit: cover; }
.gallery-item-3 .gallery-img { aspect-ratio: 4 / 5.30; object-fit: cover; }
.gallery-item-4 .gallery-img { aspect-ratio: 4 / 7.90; object-fit: cover; }
.gallery-item-5 .gallery-img { aspect-ratio: 4 / 5.40; object-fit: cover; }
.gallery-item-6 .gallery-img { aspect-ratio: 4 / 6.95; object-fit: cover; }
.gallery-item-7 .gallery-img { aspect-ratio: 4 / 5.60; object-fit: cover; }
.gallery-item-8 .gallery-img { aspect-ratio: 4 / 6.30; object-fit: cover; }
.gallery-item-9 .gallery-img { aspect-ratio: 4 / 5.10; object-fit: cover; }
.gallery-item-10 .gallery-img { aspect-ratio: 4 / 6.80; object-fit: cover; }
.gallery-item-11 .gallery-img { aspect-ratio: 4 / 5.35; object-fit: cover; }
.gallery-item-12 .gallery-img { aspect-ratio: 4 / 5.85; object-fit: cover; }
.gallery-item-13 .gallery-img { aspect-ratio: 4 / 5.25; object-fit: cover; }
.gallery-item-14 .gallery-img { aspect-ratio: 4 / 6.10; object-fit: cover; }

.pos-01 { object-position: 50% 40%; }
.pos-02 { object-position: 52% 34%; }
.pos-03 { object-position: 50% 42%; }
.pos-04 { object-position: 58% 50%; }
.pos-05 { object-position: 50% 36%; }
.pos-06 { object-position: 50% 48%; }
.pos-07 { object-position: 50% 40%; }
.pos-08 { object-position: 50% 44%; }
.pos-09 { object-position: 50% 42%; }
.pos-10 { object-position: 50% 46%; }
.pos-11 { object-position: 50% 40%; }
.pos-12 { object-position: 50% 45%; }
.pos-13 { object-position: 50% 38%; }
.pos-14 { object-position: 50% 44%; }

.quotes-grid {
  display: grid;
  gap: 24px;
}

.quotes-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.quote-card {
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.quote-text {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 1.55vw, 1.95rem);
  line-height: 1.15;
}

.quote-author {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.60);
}

.imprint-card {
  padding: 34px 34px 10px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.imprint-block {
  margin-bottom: 28px;
}

.imprint-block h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
}

.imprint-block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.imprint-block a {
  color: var(--green);
  font-weight: 600;
}

.site-footer {
  padding: 0 0 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(17, 17, 17, 0.52);
}

@media (max-width: 1240px) {
  .quotes-grid-three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .intro-grid,
  .cards-grid,
  .quotes-grid-three {
    grid-template-columns: 1fr;
  }

  .hero-info-card {
    right: 60px;
    bottom: 60px;
    width: min(460px, calc(100% - 120px));
  }

  .hero-date-badge {
    top: 40px;
    left: 40px;
  }

  .section-spacing {
    padding: 64px 0;
  }

  .cards-section,
  .map-section,
  .gallery-section,
  .quotes-section,
  .imprint-section {
    padding-top: 48px;
  }

  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-meta {
    display: none;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: 100%;
    box-shadow: none;
  }

  .container {
    width: min(92%, var(--container));
  }

  .site-header {
    padding: 16px 0;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 18px;
  }

  .site-logo {
    height: 58px;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
    width: 54px;
    height: 54px;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 24px 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.18),
      0 8px 22px rgba(0, 0, 0, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 6px 0;
    font-size: 30px;
  }

  .site-nav a::after {
    left: 0;
    right: 0;
    bottom: -4px;
  }

  .nav-divider,
  .header-meta {
    display: none;
  }

  .hero-section {
    display: block;
    height: auto;
    overflow: visible;
  }

  .hero-section::after {
    height: clamp(470px, 72vh, 640px);
    inset: 0 0 auto 0;
  }

  .hero-image {
    height: clamp(470px, 72vh, 640px);
    min-height: 470px;
    object-position: center center;
  }

  .hero-date-badge {
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: 190px;
    padding: 18px;
  }

  .hero-date-main {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .hero-date-sub {
    font-size: 18px;
    line-height: 1.12;
  }

  .hero-info-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: -44px 16px 0;
    padding: 26px 22px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
  }

  .hero-info-card h1 {
    font-size: clamp(2.35rem, 9vw, 3.15rem);
    line-height: 0.98;
    max-width: none;
    text-wrap: balance;
  }

  .hero-info-card p {
    max-width: none;
    font-size: 16px;
    line-height: 1.62;
  }

  .section-spacing {
    padding: 48px 0;
  }

  .intro-section {
    padding-top: 36px;
  }

  .video-section {
    padding-top: 8px;
  }

  .cards-section,
  .map-section,
  .gallery-section,
  .quotes-section,
  .imprint-section {
    padding-top: 28px;
  }

  .section-heading,
  .section-heading-compact {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .intro-content h2,
  .section-heading-compact h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .intro-grid {
    gap: 26px;
    align-items: start;
  }

  .intro-content p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.68;
  }

  .intro-visual-desktop {
    display: none;
  }

  .intro-visual-mobile {
    display: block;
    margin: 22px 0 24px;
  }

  .intro-image {
    height: 320px;
    object-position: center center;
  }

  .video-frame {
    border-radius: 28px;
  }

  .festival-video {
    aspect-ratio: 9 / 14;
    min-height: 0;
  }

  .cards-grid {
    gap: 18px;
  }

  .feature-card {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .feature-card h3 {
    font-size: 32px;
  }

  .card-inline-image,
  .card-inline-image-bottom {
    aspect-ratio: 16 / 10;
    margin: 0 0 16px;
  }

  .feature-card-image-bottom p {
    order: 2;
  }

  .feature-card-image-bottom .card-inline-image-bottom {
    order: 1;
    margin: 0 0 16px;
  }

  .feature-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .map-wrap {
    overflow: visible;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .map-frame {
    height: 360px;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
  }

  .map-overlay-card {
    position: static;
    margin-top: 16px;
  }

  .map-link-button {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
  }

  .gallery-masonry {
    column-count: 2;
    column-gap: 14px;
  }

  .gallery-item {
    margin-bottom: 14px;
    border-radius: 18px;
  }

  .quotes-grid-three {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quote-card {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .quote-text {
    font-size: clamp(1.55rem, 6vw, 2rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .quote-author {
    font-size: 14px;
  }

  .imprint-card {
    padding: 28px 24px 6px;
    border-radius: 26px;
  }

  .imprint-block {
    margin-bottom: 24px;
  }

  .imprint-block h3 {
    font-size: 24px;
  }

  .imprint-block p {
    font-size: 15px;
    line-height: 1.7;
  }

  .site-footer {
    padding: 0 0 26px;
  }

  .footer-inner {
    justify-content: flex-start;
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 0;
  }

  .site-logo {
    height: 52px;
  }

  .nav-toggle {
    width: 52px;
    height: 52px;
  }

  .hero-image,
  .hero-section::after {
    height: clamp(440px, 68vh, 560px);
    min-height: 440px;
  }

  .hero-date-badge {
    top: 20px;
    width: 176px;
    height: 176px;
    padding: 16px;
  }

  .hero-date-main {
    font-size: 26px;
  }

  .hero-date-sub {
    font-size: 17px;
  }

  .hero-info-card {
    margin: -36px 14px 0;
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .hero-info-card h1 {
    font-size: clamp(2.05rem, 9vw, 2.7rem);
  }

  .hero-info-card p,
  .intro-content p,
  .feature-card p,
  .imprint-block p {
    font-size: 15px;
  }

  .intro-image {
    height: 260px;
  }

  .festival-video {
    aspect-ratio: 9 / 15;
  }

  .gallery-masonry {
    column-count: 1;
    column-gap: 0;
  }

  .quote-card {
    padding: 22px 18px;
  }

  .quote-text {
    font-size: 1.55rem;
  }

  .imprint-card {
    padding: 24px 20px 4px;
  }
}