/* ==========================================================================
   CSS Variables & Tokens - ELEGANT & INNOVATIVE
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
  /* Elegant Light Palette */
  --color-bg: #F9F9F7;        /* Very soft alabaster/bone */
  --color-surface: #FFFFFF;
  --color-primary: #BCA38F;   /* Soft dusty nude/gold */
  --color-text-main: #2A2A28; /* Charcoal almost black */
  --color-text-muted: #888883;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-logo: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Fluid Spacing */
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(2rem, 4vw, 3rem);
  --space-lg: clamp(4rem, 8vw, 6rem);
  --space-xl: clamp(6rem, 12vw, 10rem);
  
  /* Radii for "not blocky" but elegant */
  --radius-soft: 24px;
  --radius-pill: 100px;
}

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

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.7;
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-main);
}

h1 { font-size: clamp(3rem, 8vw, 7rem); letter-spacing: -1px; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p { margin-bottom: 1.5rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover { opacity: 0.7; }

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ==========================================================================
   Buttons & Links (Elegant style)
   ========================================================================== */
.btn-elegant {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  padding-bottom: 0.5rem;
}

.btn-elegant::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text-main);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-elegant:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: background 0.4s, padding 0.4s;
}

.site-header.scrolled {
  background: rgba(249, 249, 247, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-logo);
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--color-text-main);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-main);
}

/* ==========================================================================
   Cinematic Hero
   ========================================================================== */
.hero-cinematic {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 80vh;
  border-radius: var(--radius-soft);
  overflow: hidden;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-text {
  text-align: center;
  color: var(--color-surface); /* White overlay text */
  margin-top: 10vh;
  position: relative;
  z-index: 10;
}

/* The SEO H1 - Designed as an elegant kicker above the logo */
.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  color: var(--color-surface);
  font-weight: 500;
  opacity: 0.9;
}

/* Give the main title (formerly H1) an elegant, floating feel */
.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #FFFFFF, var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.hero-text p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 2vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--color-surface);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ==========================================================================
   Editorial Editorial (No standard cards)
   ========================================================================== */
.editorial-section {
  padding: var(--space-xl) 0 var(--space-lg) 0;
  max-width: 1100px; /* Constrains the whole section so it isn't 1600px wide */
  margin: 0 auto;
}

.editorial-block {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xl);
  gap: var(--space-lg);
}

.editorial-block:last-child {
  margin-bottom: 0; /* Remove double margin at the end */
}

.editorial-block:nth-child(even) {
  flex-direction: row-reverse;
}

.ed-image-wrap {
  flex: 0 0 42%;
  max-width: 42%;
  position: relative;
}

/* The fluid, non-blocky shape */
.ed-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-soft);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* A soft, secondary decorative element behind the image */
.ed-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.1;
  border-radius: var(--radius-soft);
  z-index: -1;
  transition: transform 0.6s ease;
}

.editorial-block:nth-child(even) .ed-image-wrap::before {
  right: auto;
  left: -20px;
}

.editorial-block:hover .ed-image-wrap::before {
  transform: translate(10px, 10px);
}

.ed-content {
  flex: 0 0 58%;
  max-width: 58%;
  padding: 0 3rem;
}

.ed-meta {
  font-size: 0.70rem; /* Slightly smaller */
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: block;
}

.ed-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Slightly smaller than global h2 */
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.ed-content p {
  color: var(--color-text-muted);
  font-size: 1rem; /* Reduced from 1.1rem */
  margin-bottom: 2.5rem;
  max-width: 90%;
}

/* ==========================================================================
   About / Philosophy (Minimalist)
   ========================================================================== */
.philosophy {
  text-align: center;
  padding: var(--space-xl) 0;
  background-color: var(--color-surface);
  border-radius: var(--radius-soft);
  margin: 0 2vw;
}

.philo-content {
  max-width: 800px;
  margin: 0 auto;
}

.philo-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  margin-bottom: 2rem;
}

.philo-content p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Elegant Footer
   ========================================================================== */
.site-footer {
  padding: var(--space-xl) 0 var(--space-md);
  text-align: center;
}

.footer-logo {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  display: inline-block;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Dropdown Navigation
   ========================================================================== */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(249, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  list-style: none;
  padding: 1rem 0;
  border-radius: var(--radius-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--color-text-main);
}

.dropdown-menu a:hover {
  background: #FFF;
  color: var(--color-primary);
  opacity: 1;
}

/* ==========================================================================
   Artist Profile (kuenstler.php)
   ========================================================================== */
.artist-hero {
  padding: 12rem 0 var(--space-xl);
  text-align: center;
}

.artist-hero .hero-kicker {
  color: var(--color-primary);
}

.artist-hero .hero-main-title {
  background: none;
  -webkit-text-fill-color: var(--color-text-main);
  color: var(--color-text-main);
  filter: none;
}

.artist-info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  align-items: start;
}

.artist-profile-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-soft);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.artist-skills h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-family: var(--font-body);
}

.artist-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Team Grid (team.php)
   ========================================================================== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.team-card {
  flex: 0 1 calc(20% - 2rem);
  min-width: 220px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #FFF;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  opacity: 1; /* Reset global link hover override */
}

.team-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

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

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-placeholder {
  width: 100%;
  height: 100%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.team-card-content {
  padding: 1.5rem;
  text-align: center;
}

.team-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.team-skills-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
}

.team-skills-mini span {
  font-size: 0.7rem;
  background: var(--color-bg);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

/* ==========================================================================
   Masonry Gallery
   ========================================================================== */
.masonry-gallery {
  column-count: 3;
  column-gap: 1.5rem;
  padding-bottom: var(--space-xl);
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.masonry-item img {
  width: 100%;
  border-radius: var(--radius-soft);
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  transition: transform 0.4s ease;
}

.masonry-item img:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   Multi-Step Contact Form (kontakt.php)
   ========================================================================== */
.contact-hero {
  padding: 12rem 0 4rem;
  text-align: center;
}

.contact-hero .hero-kicker {
  color: var(--color-primary);
}

.contact-hero .hero-main-title {
  background: none;
  -webkit-text-fill-color: var(--color-text-main);
  color: var(--color-text-main);
  filter: none;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #FFF;
  border-radius: var(--radius-soft);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  padding: 3rem;
  overflow: hidden; /* Essential for sliding */
  position: relative;
  min-height: 400px;
}

.form-slider-window {
  position: relative;
  width: 100%;
  /* We will set height dynamically via JS, or let it resize */
  display: flex;
  transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

.form-step {
  min-width: 100%;
  flex: 0 0 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  padding-right: 1rem;
}

.form-step.active-step {
  opacity: 1;
  visibility: visible;
}

.form-step-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-text-main);
}

/* Form Elements */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.form-control {
  width: 100%;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  color: var(--color-text-main);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

/* Choice Buttons */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.choice-btn {
  background: #f9f9f7;
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-size: 1rem;
}

.choice-btn:hover {
  border-color: var(--color-primary);
}

.choice-btn.selected {
  background: var(--color-primary);
  color: #FFF;
  border-color: var(--color-primary);
}

/* Artist Selection Grid */
.artist-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.artist-select-card {
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  padding-bottom: 1rem;
  background: #f9f9f7;
}

.artist-select-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.artist-select-card.selected {
  border-color: var(--color-primary);
  box-shadow: 0 10px 20px rgba(188, 163, 143, 0.2);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.btn-secondary {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}

.btn-secondary:hover {
  color: var(--color-text-main);
}

.btn-primary {
  background: var(--color-primary);
  color: #FFF;
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #a98d78;
}

/* ==========================================================================
   Animations / Reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .editorial-block, .editorial-block:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem; /* Drastically reduce vertical gap between image and text */
  }
  
  .ed-image-wrap {
    flex: auto;
    max-width: 85%;
    margin: 0 auto;
  }
  
  .ed-image {
    aspect-ratio: 4/3; /* Much smaller height than 4/5 */
  }
  
  .ed-content {
    flex: auto;
    max-width: 100%;
    padding: 0; /* Remove top padding since we have gap */
  }
  
  .ed-content p {
    max-width: 100%;
    margin: 0 auto 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  /* Mobile menu active state - Full Screen */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: var(--color-surface);
    padding: 120px 2rem 2rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    gap: 1.5rem;
    z-index: -1;
    overflow-y: auto;
  }
  
  .nav-dropdown .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    min-width: 100%;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin-top: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .nav-dropdown.active-dropdown .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .nav-dropdown.active-dropdown > a i {
    transform: rotate(180deg);
  }
  
  .nav-cta .btn-elegant {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-media {
    width: 95vw;
    height: 80vh;
    top: calc(50% + 30px);
  }

  .hero-cinematic {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .hero-text {
    margin-top: 0;
    text-align: center;
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-text p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-main-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    text-align: center;
    width: 100%;
  }

  .hero-kicker {
    text-align: center;
    width: 100%;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .artist-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .masonry-gallery {
    column-count: 1;
  }
}

/* ==========================================================================
   SHARED SECTION UTILITIES
   ========================================================================== */
.section-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.section-kicker.light {
  color: var(--color-primary);
  opacity: 0.9;
}

/* ==========================================================================
   SECTION 1 – Services Editorial List (Luxury row layout)
   ========================================================================== */

.svc-list-section {
  background: var(--color-bg);
  padding: 0;
}

.svc-list-header {
  padding: 3.5rem 8vw 2rem;
  border-bottom: 1px solid rgba(42, 42, 40, 0.12);
}

.svc-list-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ---- The list container ---- */
.svc-list {
  display: flex;
  flex-direction: column;
}

/* ---- Each service row ---- */
.svc-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 8vw;
  border-bottom: 1px solid rgba(42, 42, 40, 0.1);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: pointer;
  min-height: 5rem;
}

.svc-row:hover {
  z-index: 10;
  background: rgba(188, 163, 143, 0.03);
}

/* Massive Typographic Marquee on Hover (Modern & Creative) */
.svc-row::before {
  content: attr(data-marquee);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(188, 163, 143, 0.2); /* Subtile goldene Outline */
  white-space: nowrap;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.svc-row:hover::before {
  opacity: 1;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% { transform: translate(0%, -50%); }
  100% { transform: translate(-30%, -50%); }
}

/* Animated underline on hover */
.svc-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.svc-row:hover::after {
  width: 100%;
}

/* ---- Left: number + title ---- */
.svc-row-left {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.svc-row-num {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: var(--color-primary);
  min-width: 2rem;
}

.svc-row-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.5px;
  margin: 0;
  transition: color 0.3s ease, letter-spacing 0.4s ease;
}

.svc-row:hover .svc-row-title {
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

/* ---- Right: description + arrow ---- */
.svc-row-right {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.svc-row-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.svc-row:hover .svc-row-desc {
  color: var(--color-text);
}

.svc-row-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(42, 42, 40, 0.2);
  border-radius: 50%;
  color: var(--color-text);
  transition: background 0.3s ease, border-color 0.3s ease,
              color 0.3s ease, transform 0.4s ease;
  flex-shrink: 0;
}

.svc-row:hover .svc-row-arrow {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: rotate(-45deg);
}



/* Mobile: hide preview, stack layout */
@media (max-width: 768px) {
  .svc-list-header {
    padding: 3rem 1.5rem 1.5rem;
  }

  .svc-row {
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 1.5rem 1.2rem;
  }

  .svc-row-left {
    gap: 1rem;
  }

  .svc-row-num {
    min-width: 1.5rem;
  }

  .svc-row-right {
    gap: 0.5rem;
  }

  .svc-row-desc {
    display: none;
  }

  .svc-row-title {
    font-size: clamp(1.3rem, 6vw, 2.2rem);
    white-space: nowrap;
  }

  .svc-row-arrow {
    width: 36px;
    height: 36px;
  }
}


.service-tile {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(0.65);
  display: block;
}

.service-tile:hover img {
  transform: scale(1.06);
  filter: brightness(0.45);
}

.tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2.5rem;
  color: #fff;
}

.tile-cat {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.5rem;
  transition: opacity 0.3s ease;
}

.tile-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  transition: transform 0.4s ease;
}

.tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 0.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.service-tile:hover .tile-cta {
  opacity: 1;
  transform: translateY(0);
}

.service-tile:hover .tile-title {
  transform: translateY(-4px);
}

/* ==========================================================================
   SECTION 2 – Hochzeiten Story Split
   ========================================================================== */
.hochzeit-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg);
  overflow: hidden;
}

.hochzeit-inner {
  max-width: 1200px;
}

.hochzeit-split {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.hochzeit-img-wrap {
  flex: 0 0 44%;
  position: relative;
}

.hochzeit-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-soft);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.hochzeit-img-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--color-surface);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: var(--radius-soft);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  color: var(--color-primary);
  font-weight: 500;
}

.hochzeit-content {
  flex: 1;
  padding-left: var(--space-md);
}

.hochzeit-headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
}

.hochzeit-lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.service-tags li {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-body);
  font-weight: 500;
}

.btn-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--color-text-main);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease, opacity 1s;
  text-decoration: none;
}

.btn-service-cta:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  opacity: 1;
}

.pull-quote {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  position: relative;
  border-top: 1px solid rgba(188,163,143,0.3);
  border-bottom: 1px solid rgba(188,163,143,0.3);
  margin: var(--space-md) 0 0;
}

.pull-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--color-text-main);
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION 3 – Events (Dark)
   ========================================================================== */
.events-section {
  background: #141412;
  color: #F9F9F7;
  padding: var(--space-xl) 0;
}

.events-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto var(--space-lg);
}

.events-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #F9F9F7;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.events-lead {
  color: rgba(249,249,247,0.6);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.event-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: var(--space-md);
}

.event-cat-item {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 1rem 1rem 0;
  background: transparent;
  transition: background 0.4s ease;
}

.event-cat-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.event-cat-item:hover::before {
  width: 100%;
}

.event-cat-item:hover {
  background: linear-gradient(to bottom, rgba(188,163,143,0.03) 0%, transparent 100%);
}

.event-cat-icon {
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  transition: color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: left center;
}

.event-cat-item:hover .event-cat-icon {
  color: var(--color-primary);
  transform: scale(1.15);
}

.event-cat-item h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #F9F9F7;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.event-cat-item p {
  color: rgba(249,249,247,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mobile Adjustments for the new cards */
@media (max-width: 992px) {
  .event-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .event-categories {
    grid-template-columns: 1fr;
  }
  .event-cat-item {
    padding: 2rem 0;
  }
}

.events-cta-wrap {
  text-align: center;
}

.btn-events-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 1s;
  text-decoration: none;
}

.btn-events-cta:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  transform: translateY(-3px);
  opacity: 1;
}

/* ==========================================================================
   SECTION 4 – Corporate Film
   ========================================================================== */
.corporate-section {
  background-color: #F0EDE8;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.corporate-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  max-width: 1200px;
}

.corporate-content {
  flex: 1;
}

.corporate-headline {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.corporate-lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.corporate-benefits {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.corporate-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}

.corporate-benefits li > div > strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 0.15rem;
}

.corporate-benefits li > div > p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.video-mockup-wrap {
  flex: 0 0 45%;
}

.video-mockup {
  position: relative;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.video-mockup img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.play-btn-overlay::before {
  content: '';
  position: absolute;
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-mockup:hover .play-btn-overlay::before {
  transform: scale(1.1);
  background: rgba(188,163,143,0.4);
}

.play-btn-overlay svg {
  position: relative;
  z-index: 1;
  margin-left: 4px;
}

.corporate-stat-badges {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42, 42, 40, 0.1);
}

.stat-badge {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.stat-badge strong {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--color-text-main);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-badge span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ==========================================================================
   SECTION 5 – Fotografie Grid
   ========================================================================== */
.foto-section {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
}

.foto-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-md);
}

.foto-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.foto-lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.foto-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.foto-item--tall {
  grid-row: span 2;
}

.foto-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.foto-item:hover img {
  transform: scale(1.05);
}

.foto-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(249,249,247,0.9);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-main);
  font-weight: 500;
}

.foto-footer {
  text-align: center;
}

/* ==========================================================================
   SECTION 6 – Testimonials
   ========================================================================== */
.testimonials-section {
  background: var(--color-surface);
  padding: var(--space-xl) 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.testimonials-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-soft);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
}

.stars {
  color: var(--color-primary);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-main);
  flex: 1;
  border: none;
  margin: 0;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #D4B896);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 0.15rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   SECTION 7 – Philosophy Dark
   ========================================================================== */
.philosophy-dark {
  background: #141412;
  padding: var(--space-xl) 0;
}

.philosophy-dark-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.philosophy-deco-line {
  width: 60px;
  height: 1px;
  background: rgba(188,163,143,0.6);
}

.philosophy-dark-text {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: #F9F9F7;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.philosophy-dark-text em {
  color: var(--color-primary);
  font-style: italic;
}

.philosophy-dark-sub {
  color: rgba(249,249,247,0.5);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION 8 – CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #BCA38F 0%, #D4B896 50%, #C8A87A 100%);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 5%;
}

.cta-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.cta-headline {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.cta-subtext {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  color: var(--color-text-main);
  padding: 1.1rem 2.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 1s;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  opacity: 1;
}

/* ==========================================================================
   NEW SECTIONS – Responsive (Mobile)
   ========================================================================== */
@media (max-width: 900px) {

  /* Services Panels – Mobile: stack vertically */
  .services-panels {
    flex-direction: column;
    height: auto;
    max-height: none;
  }

  .svc-panel,
  .services-panels:has(.svc-panel:hover) .svc-panel,
  .services-panels .svc-panel:hover {
    flex: 0 0 auto;
    height: 65vw;
    min-height: 260px;
    max-height: 340px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .svc-collapsed-label {
    opacity: 0;
  }

  .svc-expanded-content {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    padding: 1.8rem 2rem;
    white-space: normal;
  }

  .svc-text {
    display: none;      /* hide long copy on mobile for cleanliness */
  }

  .svc-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    margin-bottom: 0.6rem;
  }

  .svc-tagline {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .svc-num-large {
    font-size: clamp(4rem, 15vw, 7rem);
    top: 1.2rem;
    left: 1.8rem;
  }

  .services-magazine {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .mag-stack {
    flex-direction: column;
  }

  .mag-tile--primary {
    height: 65vw;
    min-height: 280px;
  }

  .mag-tile--secondary {
    height: 45vw;
    min-height: 200px;
  }

  .mag-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .mag-overlay {
    padding: 1.5rem 1.8rem;
  }

  .mag-meta {
    top: 1.2rem;
    left: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 55vw);
    height: auto;
    max-height: none;
  }

  .tile-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .hochzeit-split {
    flex-direction: column;
    gap: 2rem;
  }

  .hochzeit-img-wrap {
    flex: auto;
    width: 100%;
  }

  .hochzeit-img-badge {
    right: 1rem;
  }

  .hochzeit-content {
    padding-left: 0;
    text-align: center;
  }

  .service-tags {
    justify-content: center;
  }

  .pull-quote {
    padding: var(--space-sm);
  }

  .event-categories {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .corporate-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .video-mockup-wrap {
    flex: auto;
    width: 100%;
  }

  .foto-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foto-item--tall {
    grid-row: span 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

}

@media (max-width: 600px) {

  .event-categories {
    grid-template-columns: 1fr;
  }

  .foto-preview-grid {
    grid-template-columns: 1fr;
  }

  .corporate-stat-badges {
    flex-direction: column;
  }

}
