@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --bg: #f4f1eb;
  --surface: #fffaf2;
  --text: #142126;
  --muted: #5f6b73;
  --accent: #0e6a70;
  --accent-2: #b9572c;
  --line: rgba(20, 33, 38, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.18);
  --panorama-1: url('https://nx50077.your-storageshare.de/s/9PLTisN2pBAxsPD/preview');
  --panorama-2: url('https://nx50077.your-storageshare.de/s/9PLTisN2pBAxsPD/preview');
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: radial-gradient(circle at 12% 20%, rgba(14, 106, 112, 0.18), transparent 38%),
    radial-gradient(circle at 82% 0%, rgba(185, 87, 44, 0.17), transparent 32%),
    var(--bg);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(255, 250, 242, 0.86), rgba(255, 250, 242, 0.42));
  border-bottom: 1px solid var(--line);
  --header-height: 72px;
  transition: transform 0.24s ease, background 0.24s ease;
}

.site-header.hidden {
  transform: translateY(calc(-100% - 8px));
}

.site-header.compressed {
  --header-height: 56px;
  background: linear-gradient(to bottom, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0.95));
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: var(--header-height);
  transition: padding 0.24s ease, min-height 0.24s ease;
}

.site-header.compressed .header-inner {
  padding: 6px 22px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 36px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
  margin: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.nav-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(260px, 90vw);
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 250, 242, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  z-index: 40;
}

.nav-menu.open {
  display: flex;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-menu a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-menu a:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 33, 38, 0.4);
  background: rgba(255, 255, 255, 0.98);
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: font-size 0.24s ease, transform 0.24s ease;
  white-space: nowrap;
}

.site-header.compressed .brand {
  font-size: 1.2rem;
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 33, 38, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 11px;
  cursor: pointer;
  letter-spacing: 0.06em;
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

.snap-shell {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.slide {
  position: relative;
  width: 100%;
  min-height: 100vh;
  scroll-snap-align: start;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 120px 20px 40px;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--cover-url);
  background-size: cover;
  background-position: center;
  transform: scale(1.07);
  transition: transform 0.8s ease;
  z-index: -2;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(7, 12, 16, 0.2) 0%, rgba(7, 12, 16, 0.7) 78%);
  z-index: -1;
}

.slide:hover::before {
  transform: scale(1.12);
}

.slide-card {
  width: min(900px, 100%);
  color: #fff;
  padding: clamp(24px, 6vw, 52px);
  border-radius: var(--radius-lg);
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-soft);
}

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 9vw, 6rem);
  line-height: 0.92;
  margin: 12px 0;
}

.slide-copy {
  max-width: 50ch;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.slide-copy-subtle {
  text-transform: lowercase;
  letter-spacing: 0.02em;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.attractor-slide .slide-card {
  max-width: 1000px;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: #ffffff;
  color: #172027;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn:hover {
  transform: translateY(-2px);
}

.dot-nav {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 28;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

.panorama-strip {
  min-height: 38vh;
  background-image: linear-gradient(rgba(12, 17, 20, 0.42), rgba(12, 17, 20, 0.42)), var(--panorama-1);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  padding: 32px 22px;
}

.panorama-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin: 0;
}

.panorama-strip p {
  max-width: 60ch;
  opacity: 0.92;
}

.gallery-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 54px;
}

.video-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 54px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

.video-frame-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.video-copy {
  padding: 22px;
}

.contact-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 20px 54px;
}

.contact-panel {
  display: grid;
  gap: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.contact-panel h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 70ch;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
}

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

.contact-form button {
  width: fit-content;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:hover {
  transform: translateY(-1px);
}

.instagram-mock {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.instagram-mock-label {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.instagram-mock-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.instagram-mock-link:hover .instagram-mock,
.instagram-mock-link:focus-visible .instagram-mock {
  transform: translateY(-1px);
  border-color: rgba(20, 33, 38, 0.35);
  box-shadow: 0 10px 24px rgba(20, 33, 38, 0.1);
}

.instagram-mock-avatar {
  width: 64px;
  height: 64px;
  aspect-ratio: 1 / 1;
  flex: 0 0 64px;
  min-width: 64px;
  min-height: 64px;
  border-radius: 999px;
  overflow: hidden;
  object-fit: cover;
  border: 1px solid var(--line);
}

.instagram-mock-copy {
  display: grid;
  gap: 2px;
}

.instagram-mock-handle {
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.instagram-mock-name {
  font-size: 0.9rem;
  color: var(--muted);
}

.instagram-mock-bio {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.video-copy h3 {
  margin: 0 0 12px 0;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.video-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.gallery-hero {
  background-image: linear-gradient(125deg, rgba(22, 34, 38, 0.7), rgba(22, 34, 38, 0.4)), var(--panorama-2);
  color: #fff;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  padding: clamp(26px, 6vw, 48px);
  margin-bottom: 26px;
  box-shadow: var(--shadow-soft);
}

.gallery-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  margin: 0;
}

.gallery-hero p {
  margin: 12px 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 500;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  background: #ddd;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.06);
}

.archives {
  margin-top: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.archive-list {
  display: grid;
  gap: 12px;
}

.archive-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.archive-item small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.link-btn {
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 14px;
  background: var(--accent-2);
  color: #fff;
  white-space: nowrap;
}

.footer {
  margin-top: 30px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(rgba(8, 14, 18, 0.72), rgba(8, 14, 18, 0.72)), var(--panorama-1);
  background-size: cover;
  background-position: center;
}

#contact {
  scroll-margin-top: 96px;
}

.footer a {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #fff;
  color: #172027;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 99;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1300px, 100%);
  max-height: 100%;
  border-radius: 12px;
}

.lightbox button {
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

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

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.about-profile {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-pic {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--line);
  object-fit: cover;
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0 0 20px 0;
  color: var(--text);
}

.about-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
  margin: 0 0 16px 0;
  color: var(--text);
}

.about-content p:first-of-type {
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .profile-pic {
    max-width: 250px;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 1.6rem;
  }

  .nav-links a {
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  .archive-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-section {
    padding: 40px 20px;
  }

  .about-container {
    gap: 20px;
    padding: 20px;
  }

  .profile-pic {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    padding: 10px 14px;
  }

  .brand {
    position: static;
    left: auto;
    transform: none;
    font-size: 1.3rem;
    text-align: left;
    pointer-events: auto;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header.compressed .brand {
    font-size: 1.18rem;
  }

  .header-actions {
    margin-left: auto;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    z-index: 2;
    flex-shrink: 0;
  }

  .nav-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    width: 100%;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    border-radius: 0 0 18px 18px;
    border-left: 0;
    border-right: 0;
    padding: 14px;
  }
}
