/* =========================================================
   EUPHORIALINES — style.css
   ========================================================= */

/* --- Google Fonts ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400&family=Cormorant+Garalde:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@300;400&display=swap');

/* --- Reset & Base --------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #000000;
  --text-primary: #f0ece4;
  --text-secondary: #888888;
  --accent: #ffffff;
  --divider: rgba(255, 255, 255, 0.15);
  --nav-height: 88px;
  --transition-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* --- Noise texture overlay ----------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* --- Utility ------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--divider);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.2s ease-out;
}

.divider.visible {
  transform: scaleX(1);
}

/* --- Scroll Animations --------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--transition-ease), transform 0.9s var(--transition-ease);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--transition-ease), transform 0.9s var(--transition-ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--transition-ease), transform 0.9s var(--transition-ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Link hover underline ------------------------------ */
.hover-link {
  position: relative;
  display: inline-block;
}

.hover-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.hover-link:hover::after {
  transform: scaleX(1);
}

/* --- CTA Button ---------------------------------------- */
.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__wordmark {
  font-family: 'Cormorant Garalde', serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: #f0ece4;
  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
}

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

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

.nav__links .nav-cta a {
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav__links .nav-cta a::after {
  display: none;
}

.nav__links .nav-cta a:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.nav-overlay__links a {
  font-family: 'Cormorant Garalde', serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  position: relative;
}

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

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

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #000000;
  padding: 0 0 2rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.footer__top-rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0;
}

.footer__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 40px 1rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col--center {
  align-items: center;
}

.footer__col--right {
  align-items: flex-end;
}

.footer__wordmark {
  font-family: 'Cormorant Garalde', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.footer__address {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer__logo {
  height: 120px;
  width: auto;
  mix-blend-mode: lighten;
  display: block;
  margin-top: 0.5rem;
}

.footer__label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.footer__link {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #f0ece4;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.footer__credit {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__credit:hover {
  opacity: 0.8;
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  z-index: 1;
}

.page-hero--compact {
  padding: calc(var(--nav-height) + 40px) 0 30px;
}

.page-hero__title {
  font-family: 'Cormorant Garalde', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.1;
  margin-bottom: 32px;
}

.page-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 32px;
  line-height: 1.7;
}

/* =========================================================
   INDEX — HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1605647533135-51b5906087d0?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__logo {
  width: 400px;
  max-width: 80vw;
  height: auto;
  mix-blend-mode: lighten;
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.hero__logo.visible {
  opacity: 1;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0s;
}

.hero__tagline {
  font-family: 'Cormorant Garalde', serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  max-width: 500px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.2s;
}

.hero__cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

.hero__content.animated .hero__subtitle {
  opacity: 0.5;
  transform: translateY(0);
}

.hero__content.animated .hero__tagline,
.hero__content.animated .hero__cta {
  opacity: 1;
  transform: translateY(0);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.7s ease;
  transition-delay: 2s;
}

.hero__content.animated ~ .hero__scroll {
  opacity: 0.4;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* =========================================================
   INDEX — GALERIE SECTION
   ========================================================= */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.section__header {
  margin-bottom: 64px;
}

.section__title {
  font-family: 'Cormorant Garalde', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.section__subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* 3D Carousel */
.carousel-outer {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  overflow: hidden;
}

.carousel-stage {
  position: relative;
  flex: 1;
  height: calc(min(340px, 70vw) * 4 / 3);
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(340px, 70vw);
  aspect-ratio: 3 / 4;
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
  cursor: default;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide.is-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

.carousel-slide.is-center::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 1;
}

.carousel-slide.is-prev {
  transform: translate(calc(-50% - min(310px, 64vw)), -50%) scale(0.75);
  opacity: 0.4;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.carousel-slide.is-next {
  transform: translate(calc(-50% + min(310px, 64vw)), -50%) scale(0.75);
  opacity: 0.4;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.carousel-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-family: 'Cormorant Garalde', serif;
  font-size: 4rem;
  line-height: 1;
  opacity: 0.5;
  cursor: pointer;
  padding: 0 20px;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
  user-select: none;
}

.carousel-btn:hover {
  opacity: 1;
}

/* =========================================================
   INDEX — ÜBER MICH TEASER
   ========================================================= */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.teaser-portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.teaser-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.teaser-label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.5;
  margin-bottom: 16px;
}

.teaser-text__name {
  font-family: 'Cormorant Garalde', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.teaser-text__body {
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 420px;
  line-height: 1.9;
}

.arrow-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.arrow-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.arrow-link:hover::after {
  transform: scaleX(1);
}

/* =========================================================
   ÜBER MICH PAGE
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-portrait {
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  padding-bottom: 20vh;
}

.about-content__name {
  font-family: 'Cormorant Garalde', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.about-content__divider {
  width: 60px;
  height: 1px;
  background: var(--divider);
  margin-bottom: 40px;
}

.about-content__text {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
}

.about-content__text:last-of-type {
  margin-bottom: 0;
}

/* Stile section */
.stile-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stile-section .divider {
  width: 80px;
  margin: 0 auto 60px;
}

.pull-quote-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.pull-quote-line {
  height: 1px;
  background: var(--divider);
}

.pull-quote {
  font-family: 'Cormorant Garalde', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  max-width: 640px;
  line-height: 1.5;
  text-align: center;
}

.stile-list {
  display: flex;
  justify-content: center;
  gap: 80px;
  list-style: none;
  margin-bottom: 60px;
}

.stile-list li {
  font-family: 'Cormorant Garalde', serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
}

.stile-list li::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--divider);
  margin: 0 auto 20px;
}

/* =========================================================
   DANKE PAGE
   ========================================================= */
.danke-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.danke-container {
  text-align: center;
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.danke-heading {
  font-family: 'Cormorant Garalde', serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.danke-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.8;
}

/* =========================================================
   KONTAKT PAGE
   ========================================================= */
.form-card {
  background: #0d0d0d;
  border: 1px solid var(--divider);
  padding: 48px;
}

.card-label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.5;
  margin-bottom: 40px;
}

.label-optional {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0;
}

/* Form fields */
.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-group input[type="checkbox"] {
  width: auto;
  min-width: auto;
  padding: 0;
}

.form-group input.field-error,
.form-group textarea.field-error {
  border: 2px solid #e05252;
}

.field-error-group {
  outline: 2px solid #e05252;
  border-radius: 2px;
  padding: 4px;
}

.agb-label.field-error {
  outline: 2px solid #e05252;
  border-radius: 2px;
  padding: 4px;
}

.form-group input[type="file"] {
  width: 100%;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  padding: 10px 14px;
  cursor: pointer;
}

.form-group input[type="file"]::-webkit-file-upload-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  cursor: pointer;
  margin-right: 12px;
  transition: background 0.3s ease;
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.form-note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 4px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* AGB scroll box */
.agb-scroll-box {
  max-height: 220px;
  overflow-y: scroll;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 2px;
  margin-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.agb-scroll-box::-webkit-scrollbar {
  width: 4px;
}

.agb-scroll-box::-webkit-scrollbar-track {
  background: transparent;
}

.agb-scroll-box::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

.agb-content {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #888888;
}

.agb-content h3 {
  font-family: 'Cormorant Garalde', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #f0ece4;
  margin-bottom: 0.5rem;
}

.agb-content p {
  margin-bottom: 0.9rem;
}

.agb-content strong {
  color: #f0ece4;
  font-weight: 500;
}

.agb-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  cursor: pointer;
}

.form-group .agb-label {
  display: flex;
  align-items: center;
  text-transform: none;
  letter-spacing: normal;
  font-size: inherit;
  margin-bottom: 0;
}

.agb-label input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.agb-label input[type="checkbox"]:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

.agb-label input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13 4L6 11 3 8' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}

.agb-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.agb-label span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.2;
}

.agb-label a {
  color: var(--accent);
  text-decoration: none;
}

.agb-label a:hover {
  text-decoration: underline;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.kontakt-intro-note {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  opacity: 0.6;
}

/* Centered single form */
.form-centered {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 80px;
}

/* JotForm wrapper */
.jotform-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

@keyframes loadingBar {
  from { width: 0%; }
  to   { width: 100%; }
}

.iframe-loading-bar {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  width: 0%;
  animation: loadingBar 2s ease forwards;
  margin-bottom: 0;
}

.iframe-loader {
  text-align: center;
  padding: 3rem 0;
  color: #888888;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
}

.jotform-note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 16px;
}


.kontakt-info {
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}

.kontakt-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 48px;
}

.kontakt-info__item-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.kontakt-info__item-value {
  font-family: 'Cormorant Garalde', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.kontakt-info__item-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .teaser-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-portrait {
    position: static;
    max-width: 400px;
  }

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

  .footer__col--center {
    display: none;
  }

  .footer__col--right {
    align-items: flex-start;
  }

  .kontakt-info__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 24px;
  }

  .nav__inner {
    padding: 0 24px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .carousel-btn {
    font-size: 2.5rem;
    padding: 0 10px;
  }

  .section {
    padding: 80px 0;
  }

  .pull-quote-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pull-quote-line {
    display: none;
  }

  .stile-list {
    flex-direction: column;
    gap: 40px;
  }

  .footer {
    padding-top: 0;
  }

  .footer__main {
    padding: 2.5rem 24px 1.5rem;
  }

  .footer__wordmark {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .footer__col--center {
    display: flex;
    order: -1;
    margin-bottom: 1rem;
  }

  .footer__col--center img {
    height: 140px;
    margin: 0 auto;
  }

  .footer__col--left {
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
  }

  .footer__col--right {
    align-items: center;
  }

  .footer__label {
    margin-top: 1rem;
  }

  .footer__bottom {
    margin-top: 1.5rem;
  }

  .footer__bottom-inner {
    padding: 1.5rem 24px 0;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  #ueber-mich-teaser {
    padding-bottom: 4rem !important;
  }

  .form-card {
    padding: 32px 24px;
  }

  .kontakt-info__grid {
    grid-template-columns: 1fr;
  }

  .teaser-portrait {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* --- Scroll margin for anchor sections ------------------- */
#galerie,
#ueber-mich-teaser {
  scroll-margin-top: 80px;
}

/* --- Stile showcase -------------------------------------- */
.stile-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 0 80px;
  text-align: center;
}

.stile-item h3 {
  font-family: 'Cormorant Garalde', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f0ece4;
  margin-bottom: 8px;
}

.stile-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #888888;
}

.galerie-stile {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #888888;
  margin-top: 8px;
}

.stile-ornament {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5em;
  text-align: center;
}

