/* ========================================
   LOCAL FONTS
======================================== */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/InstrumentSerif-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}


/* ========================================
   01. DESIGN TOKENS
======================================== */

:root {
  --paper: #f7f6f2;
  --paper-2: #fcfcfa;
  --paper-warm: #e9e6df;

  --ink: #171717;
  --muted: #77736e;
  --line: #e4e1db;
  --accent: #a38e7a;
  --dark: #161513;

  --max: 1380px;
  --pad: clamp(22px, 4vw, 64px);
}


/* ========================================
   02. RESET & BASE
======================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);

  font-family: "Manrope", Arial, sans-serif;

  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--max);

  margin: 0 auto;

  padding-left: var(--pad);
  padding-right: var(--pad);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}


/* ========================================
   03. TYPOGRAPHY & SHARED ELEMENTS
======================================== */

.eyebrow {
  font-size: 11px;
  font-weight: 500;

  letter-spacing: .17em;
  text-transform: uppercase;
}

h1 {
  margin: 0;

  max-width: 920px;

  font-size: clamp(58px, 7.3vw, 112px);
  line-height: .91;

  letter-spacing: -.055em;
  font-weight: 500;
}

h1 em,
.section-title em,
.display em,
.contact-title em,
.wedding-contact-title em,
.business-contact-title em,
.event-contact-title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;

  letter-spacing: -.03em;
}

h1 em {
  font-size: 1.06em;
}

.section-title,
.display {
  margin: 0;

  font-size: clamp(46px, 5.6vw, 80px);
  line-height: .98;

  letter-spacing: -.05em;
  font-weight: 500;
}

.section-copy,
.intro-body p {
  margin: 0;

  color: #3f3d39;

  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.section-line {
  margin-bottom: clamp(42px, 6vw, 80px);

  padding-top: 20px;

  border-top: 1px solid var(--line);

  display: flex;
  justify-content: space-between;

  gap: 30px;

  color: var(--muted);
}

.section-line .eyebrow:last-child {
  text-align: right;
}

.image-note {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  margin-top: 11px;

  color: var(--muted);

  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}


/* ========================================
   04. LINKS & BUTTONS
======================================== */

.text-link,
.nav-links a,
.nav-cta {
  position: relative;
}

.text-link {
  width: max-content;

  padding-bottom: 4px;

  font-size: 13px;
  font-weight: 500;
}

.nav-links a::after,
.nav-cta::after,
.text-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: right;

  transition: transform .35s ease;
}

.nav-links a:hover::after,
.nav-cta:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.arrow {
  display: inline-block;

  transition: transform .3s ease;
}

.scroll-link:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(5px);
}

.cta-button {
  display: inline-flex;
  align-items: center;

  gap: 28px;

  padding: 16px 20px;

  border-radius: 999px;

  background: var(--paper);
  color: var(--ink);

  font-size: 13px;

  transition:
    transform .3s ease,
    background .3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);

  background: #fff;
}


/* ========================================
   05. GLOBAL PRICE TYPOGRAPHY
======================================== */

.price-big {
  margin-top: 8px;

  font-family: "Manrope", Arial, sans-serif;

  font-size: clamp(76px, 10vw, 150px);
  line-height: .86;

  letter-spacing: -.07em;
  font-weight: 500;
}

.price-big span {
  display: block;

  margin-top: 20px;

  font-family: "Manrope", Arial, sans-serif;

  font-size: 13px;
  letter-spacing: .02em;

  font-weight: 500;

  opacity: .64;
}


/* ========================================
   06. HEADER
======================================== */

.nav {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 20;

  color: #fff;

  transition:
    color .35s ease,
    background .35s ease,
    backdrop-filter .35s ease,
    box-shadow .35s ease;
}

.nav.scrolled {
  color: var(--ink);

  background: rgba(247, 246, 242, .88);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 1px 0 rgba(23, 23, 23, .08);
}

.nav-inner {
  max-width: var(--max);

  margin: 0 auto;

  padding: 30px var(--pad);

  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 28px;

  transition: padding .35s ease;
}

.nav.scrolled .nav-inner {
  padding-top: 19px;
  padding-bottom: 19px;
}

.brand {
  white-space: nowrap;

  font-size: 15px;
  font-weight: 600;

  letter-spacing: .045em;
}

.nav-links {
  display: flex;
  align-items: center;

  gap: 30px;

  font-size: 13px;
}

.nav-links a[aria-current="page"],
.mobile-nav-links a[aria-current="page"] {
  opacity: .55;
}

.nav-cta {
  justify-self: end;

  font-size: 13px;
  font-weight: 500;
}

.menu-button {
  display: none;

  cursor: pointer;
}


/* ========================================
   07. MOBILE NAVIGATION
======================================== */

.mobile-nav {
  position: fixed;

  inset: 0;

  z-index: 19;

  display: none;

  padding: 115px var(--pad) 36px;

  background: rgba(247, 246, 242, .98);
  color: var(--ink);
}

.mobile-nav.is-open {
  display: flex;
  flex-direction: column;

  justify-content: space-between;
}

.mobile-nav-links {
  display: grid;

  gap: 10px;
}

.mobile-nav-links a {
  width: max-content;

  font-size: clamp(34px, 10vw, 52px);
  line-height: 1.12;

  letter-spacing: -.045em;
  font-weight: 500;
}

.mobile-nav-meta {
  padding-top: 28px;

  border-top: 1px solid var(--line);

  display: flex;
  justify-content: space-between;

  gap: 20px;

  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;
  letter-spacing: .1em;
}


/* ========================================
   08. HOMEPAGE HERO
======================================== */

.hero {
  min-height: 96svh;

  position: relative;

  overflow: hidden;

  color: #fff;
  background: #171717;
}

.hero-media {
  position: absolute;

  inset: 0;

  z-index: 0;

  overflow: hidden;
}

.hero-slide {
  position: absolute;

  inset: -1%;

  opacity: 0;

  background-position: center;
  background-size: cover;

  will-change: opacity;

  transition: opacity 1.35s cubic-bezier(.25, .7, .25, 1);
}

.hero-slide.is-active {
  z-index: 1;

  opacity: 1;
}

.hero-slide::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .25) 0%,
      rgba(0, 0, 0, .04) 38%,
      rgba(0, 0, 0, .53) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .19),
      transparent 52%
    );
}

.hero-slide[data-slide="0"] {
  background-image: url("../images/hero/hero-hochzeit-01.webp");
  background-position: center 48%;
}

.hero-slide[data-slide="1"] {
  background-image: url("../images/hero/hero-business-01.webp");
  background-position: center 54%;
}

.hero-slide[data-slide="2"] {
  background-image: url("../images/hero/hero-event-01.webp");
  background-position: center 50%;
}

.hero-slide[data-slide="3"] {
  background-image: url("../images/hero/hero-hochzeit-02.webp");
  background-position: center 46%;
}

.hero-inner {
  min-height: 96svh;

  max-width: var(--max);

  margin: 0 auto;

  padding: 150px var(--pad) 54px;

  display: flex;
  flex-direction: column;

  justify-content: flex-end;

  position: relative;

  z-index: 2;
}

.hero .eyebrow {
  margin-bottom: 20px;

  opacity: .92;
}

.hero-bottom {
  margin-top: clamp(34px, 6vh, 70px);

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, .38);

  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 30px;

  font-size: 13px;
}

.hero-disciplines {
  display: flex;

  gap: 9px;

  flex-wrap: wrap;
}

.hero-disciplines span:not(:last-child)::after {
  content: "·";

  margin-left: 9px;

  opacity: .6;
}

.scroll-link {
  white-space: nowrap;
}

.hero-status {
  margin-top: 22px;

  display: grid;

  grid-template-columns: minmax(0, 1fr) auto;

  gap: 22px;

  align-items: center;
}

.hero-progress {
  height: 1px;

  position: relative;

  overflow: hidden;

  background: rgba(255, 255, 255, .30);
}

.hero-progress-bar {
  position: absolute;

  inset: 0 auto 0 0;

  width: 0;

  background: rgba(255, 255, 255, .92);

  transform-origin: left center;
}

.hero-progress-bar.is-running {
  animation: heroProgress 6.5s linear forwards;
}

.hero-controls {
  display: flex;
  align-items: center;

  gap: 9px;
}

.hero-control {
  width: 38px;
  height: 38px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, .08);
  color: #fff;

  cursor: pointer;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, .13);

  border-color: rgba(255, 255, 255, .9);

  transform: translateY(-1px);
}

.hero-control svg {
  width: 14px;
  height: 14px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-control .pause-bars {
  display: flex;

  gap: 3px;
}

.hero-control .pause-bars span {
  width: 1.5px;
  height: 11px;

  border-radius: 2px;

  background: currentColor;
}

.hero-control[data-state="paused"] .pause-bars {
  display: none;
}

.hero-control .play-icon {
  display: none;
}

.hero-control[data-state="paused"] .play-icon {
  display: block;
}

.hero-current {
  transition:
    opacity .3s ease,
    transform .3s ease;
}

.hero-current.is-changing {
  opacity: 0;

  transform: translateY(5px);
}

.hero-explore {
  margin-top: 16px;

  display: flex;
  justify-content: flex-end;
}

@keyframes heroProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


/* ========================================
   09. HOMEPAGE INTRO
======================================== */

.intro {
  padding: clamp(100px, 12vw, 190px) 0;

  background: var(--paper);
}

.intro-grid {
  width: 100%;
  max-width: var(--max);

  margin: 0 auto;

  padding-left: var(--pad);
  padding-right: var(--pad);

  display: grid;

  grid-template-columns:
    minmax(220px, .72fr)
    minmax(440px, 1.45fr);

  gap: clamp(70px, 9vw, 150px);

  align-items: center;
}

.intro-image-wrap {
  align-self: start;
}

.intro-image {
  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center;

  background: #ddd9d1;
}

.intro-copy {
  padding-top: 25px;
  padding-bottom: 15px;
}

.intro-copy .eyebrow {
  margin-bottom: 28px;

  color: var(--muted);
}

.intro-body {
  max-width: 610px;

  margin: 44px 0 0 auto;

  display: grid;

  gap: 26px;
}


/* ========================================
   10. HOMEPAGE CHAPTER SYSTEM
======================================== */

.chapter-section {
  position: relative;

  overflow: hidden;
}

.chapter-content {
  position: relative;

  z-index: 2;
}

.chapter-content > *:not(.chapter-number) {
  position: relative;

  z-index: 2;
}

.chapter-number {
  position: absolute;

  z-index: 0;

  top: clamp(86px, 8vw, 125px);
  left: 0;

  color: rgba(23, 23, 23, .04);

  font-size: clamp(165px, 21vw, 340px);
  line-height: .72;

  letter-spacing: -.09em;
  font-weight: 500;

  pointer-events: none;
  user-select: none;
}

.chapter-section .section-line {
  position: relative;

  z-index: 3;
}

.chapter-section .section-line .eyebrow:first-child {
  color: var(--ink);

  font-weight: 600;
}


/* ========================================
   11. HOMEPAGE HOCHZEITEN
======================================== */

.weddings {
  padding: 0 0 clamp(110px, 13vw, 200px);
}

.wedding-head {
  display: grid;

  grid-template-columns: 1.3fr .75fr;

  gap: clamp(60px, 9vw, 140px);

  align-items: end;

  margin-bottom: clamp(55px, 7vw, 90px);
}

.wedding-head .section-copy {
  max-width: 520px;
}

.wedding-visuals {
  display: grid;

  grid-template-columns: 1.55fr .75fr;

  gap: clamp(18px, 3vw, 42px);

  align-items: end;
}

.wedding-main {
  aspect-ratio: 3 / 2;

  object-fit: cover;
}

.wedding-side {
  width: 100%;
  max-width: 390px;

  margin-left: auto;

  aspect-ratio: 4 / 5;

  object-fit: cover;
}


/* ========================================
   12. HOMEPAGE BUSINESS
======================================== */

.business-section {
  padding: clamp(110px, 13vw, 200px) 0;

  background: var(--paper-warm);
}

.business-section .business-grid {
  display: grid;

  grid-template-columns: .82fr 1.18fr;

  gap: clamp(42px, 7vw, 110px);

  align-items: start;
}

.business-section .business-copy {
  position: sticky;

  top: 115px;

  padding-bottom: 20px;
}

.business-section .business-copy .section-copy {
  max-width: 510px;

  margin-top: 34px;
}

.service-list {
  margin-top: 42px;

  border-top: 1px solid var(--line);
}

.service-item {
  padding: 17px 0;

  border-bottom: 1px solid var(--line);

  display: flex;
  justify-content: space-between;

  gap: 20px;

  font-size: 13px;
}

.service-item span:last-child {
  color: var(--muted);
}

/*
   Wichtig:
   Diese Galerie ist bewusst auf die Business Sektion
   der Startseite begrenzt.
*/

.business-section .business-gallery {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(18px, 2.4vw, 34px);

  align-items: start;
}

.business-section .business-gallery figure {
  margin: 0;
}

.business-section .business-gallery figure:nth-child(2) {
  margin-top: clamp(70px, 8vw, 130px);
}

.business-section .business-gallery figure:nth-child(3) {
  grid-column: 1 / -1;

  width: 77%;

  margin:
    clamp(28px, 5vw, 70px)
    0
    0
    auto;
}

.business-section .business-gallery img {
  object-fit: cover;

  background: #e3dfd7;
}

.business-section .business-gallery .portrait {
  aspect-ratio: 4 / 5;
}

.business-section .business-gallery .landscape {
  aspect-ratio: 3 / 2;
}


/* ========================================
   13. HOMEPAGE EVENTS
======================================== */

.events-section {
  padding: clamp(100px, 12vw, 180px) 0;

  background: var(--paper);
}

.events-head {
  display: grid;

  grid-template-columns: 1.15fr .8fr;

  gap: clamp(50px, 8vw, 120px);

  align-items: end;

  margin-bottom: clamp(60px, 8vw, 105px);
}

.events-visual {
  position: relative;

  min-height: min(72vw, 760px);

  overflow: hidden;

  background: #d6d1c8;
}

.events-visual > .lightbox-trigger {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;
}

.events-visual img,
.events-visual > .lightbox-trigger img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 1s cubic-bezier(.2, .65, .3, 1);
}

.events-visual:hover img {
  transform: scale(1.018);
}

.events-caption {
  margin-top: 16px;

  display: flex;
  justify-content: space-between;

  gap: 25px;

  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;
  letter-spacing: .1em;
}


/* ========================================
   14. HOMEPAGE PRICING
======================================== */

.pricing {
  padding: clamp(90px, 11vw, 160px) 0;

  background: var(--dark);
  color: #f7f5ef;
}

.pricing .section-line,
:is(
  .wedding-price-section,
  .business-price-section,
  .event-price-section
) .section-line {
  border-color: rgba(255, 255, 255, .18);

  color: rgba(255, 255, 255, .56);
}

.pricing-top {
  display: grid;

  grid-template-columns: 1.25fr .85fr;

  gap: clamp(60px, 9vw, 140px);

  align-items: end;
}

.price-copy {
  max-width: 540px;

  color: rgba(255, 255, 255, .73);

  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.tiers {
  margin-top: clamp(70px, 9vw, 120px);

  border-top: 1px solid rgba(255, 255, 255, .22);

  display: grid;

  grid-template-columns: repeat(3, 1fr);
}

.tier {
  min-height: 230px;

  padding: 26px 30px 28px 0;

  border-right: 1px solid rgba(255, 255, 255, .18);

  display: flex;
  flex-direction: column;

  justify-content: space-between;
}

.tier + .tier {
  padding-left: 30px;
}

.tier:last-child {
  border-right: 0;
}

.tier-duration {
  font-size: 12px;

  letter-spacing: .12em;
  text-transform: uppercase;

  opacity: .55;
}

.tier-discount {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;

  font-size: clamp(54px, 6vw, 84px);
  line-height: 1;
}

.tier-total {
  color: rgba(255, 255, 255, .64);

  font-size: 13px;
}

.price-foot {
  margin-top: 32px;

  display: flex;
  justify-content: space-between;

  gap: 30px;

  align-items: center;

  color: rgba(255, 255, 255, .55);

  font-size: 12px;
}

.price-foot .text-link {
  color: #fff;
}


/* ========================================
   15. HOMEPAGE PORTFOLIO
======================================== */

.work {
  padding: clamp(110px, 13vw, 200px) 0;

  background: var(--paper-2);
}

.work-head {
  display: grid;

  grid-template-columns: 1fr .72fr;

  gap: clamp(50px, 8vw, 130px);

  align-items: end;

  margin-bottom: clamp(70px, 9vw, 120px);
}

.work-head .section-copy {
  max-width: 480px;
}

.project {
  margin-bottom: clamp(90px, 12vw, 180px);
}

.project:last-child {
  margin-bottom: 0;
}

.project-media {
  overflow: hidden;

  background: #e7e3dc;
}

.project-media img {
  object-fit: cover;

  transition: transform .8s cubic-bezier(.2, .65, .3, 1);
}

.project:hover .project-media img {
  transform: scale(1.018);
}

.project.wide .project-media img {
  aspect-ratio: 16 / 9;
}

.project.split {
  display: grid;

  grid-template-columns: .8fr 1.2fr;

  gap: clamp(22px, 4vw, 62px);

  align-items: end;
}

.project.split .project-media img {
  aspect-ratio: 4 / 5;
}

.project.split .project-media.large img {
  aspect-ratio: 3 / 2;
}

.project-meta {
  margin-top: 18px;

  padding-top: 16px;

  border-top: 1px solid var(--line);

  display: grid;

  grid-template-columns: 1fr auto;

  gap: 24px;

  align-items: start;
}

.project-title {
  margin: 0;

  font-size: clamp(25px, 2.6vw, 40px);

  letter-spacing: -.035em;
  font-weight: 500;
}

.project-kicker {
  margin-top: 7px;

  color: var(--muted);

  font-size: 11px;

  letter-spacing: .11em;
  text-transform: uppercase;
}

.project-link {
  padding-top: 6px;

  white-space: nowrap;

  font-size: 12px;
}


/* ========================================
   16. HOMEPAGE ABOUT
======================================== */

.about-section {
  padding: clamp(110px, 13vw, 200px) 0;

  background: var(--paper-2);
}

.about-grid {
  display: grid;

  grid-template-columns: .75fr 1.25fr;

  gap: clamp(65px, 10vw, 155px);

  align-items: center;
}

.about-photo {
  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center top;

  background: #dedad2;
}

.about-copy .eyebrow {
  margin-bottom: 30px;

  color: var(--muted);
}

.about-copy .section-copy {
  max-width: 640px;

  margin-top: 40px;
}

.about-stats {
  margin-top: 54px;

  padding-top: 20px;

  border-top: 1px solid var(--line);

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

.stat strong {
  display: block;

  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;

  letter-spacing: -.04em;
  font-weight: 500;
}

.stat span {
  display: block;

  margin-top: 9px;

  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;
  letter-spacing: .1em;
}


/* ========================================
   17. HOMEPAGE TRUST
======================================== */

.trust-section {
  padding: clamp(100px, 12vw, 180px) 0;

  background: var(--paper);
}

.trust-intro {
  display: grid;

  grid-template-columns: .7fr 1.3fr;

  gap: clamp(60px, 9vw, 145px);

  margin-bottom: clamp(65px, 9vw, 120px);
}

.trust-intro .section-copy {
  max-width: 720px;
}

.trust-sectors {
  margin-top: 4px;
}

.trust-mini-label,
.business-sector-label {
  margin-bottom: 14px;

  color: var(--muted);

  font-size: 10px;

  text-transform: uppercase;
  letter-spacing: .13em;
}

.sector-row {
  padding: 24px 0;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  display: flex;
  flex-wrap: wrap;

  gap: 12px 28px;

  color: var(--muted);

  font-size: 12px;

  text-transform: uppercase;
  letter-spacing: .1em;
}

.trust-kpis {
  margin-top: clamp(70px, 8vw, 110px);

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(30px, 6vw, 100px);
}

.trust-kpi {
  padding-top: 24px;

  border-top: 1px solid var(--line);
}

.trust-kpi-value {
  font-size: clamp(56px, 7.4vw, 112px);
  line-height: .9;

  letter-spacing: -.065em;
  font-weight: 500;
}

.trust-kpi-label {
  max-width: 390px;

  margin-top: 22px;

  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}

.trust-kpi-exact {
  margin-top: 9px;

  color: var(--muted);

  font-size: 10px;

  text-transform: uppercase;
  letter-spacing: .11em;
}

.testimonials,
.wedding-testimonial-grid {
  margin-top: clamp(90px, 10vw, 145px);

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(30px, 5vw, 80px);
}

.quote {
  padding-top: 26px;

  border-top: 1px solid var(--line);
}

.quote blockquote {
  margin: 0;

  font-family: "Instrument Serif", Georgia, serif;

  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.12;

  letter-spacing: -.025em;
}

.quote footer {
  margin-top: 30px;

  color: var(--muted);

  font-size: 12px;

  text-transform: uppercase;
  letter-spacing: .1em;
}


/* ========================================
   18. HOMEPAGE CONTACT
======================================== */

.contact-section {
  position: relative;

  min-height: 78svh;

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  color: #fff;

  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, .10),
      rgba(10, 10, 10, .64)
    ),
    url("../images/general/contact-background-01.webp")
    center 52% / cover no-repeat;
}

.contact-inner {
  width: 100%;
  max-width: var(--max);

  margin: 0 auto;

  padding:
    clamp(110px, 13vw, 180px)
    var(--pad)
    55px;

  position: relative;

  z-index: 2;
}

.contact-inner .eyebrow {
  margin-bottom: 28px;

  opacity: .75;
}

.contact-title {
  max-width: 1050px;

  margin: 0;

  font-size: clamp(58px, 8vw, 118px);
  line-height: .9;

  letter-spacing: -.055em;
  font-weight: 500;
}

.contact-bottom {
  margin-top: clamp(50px, 8vw, 100px);

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, .42);

  display: grid;

  grid-template-columns: 1fr auto;

  gap: 35px;

  align-items: end;
}

.contact-copy {
  max-width: 570px;

  color: rgba(255, 255, 255, .82);

  font-size: 16px;
  line-height: 1.65;
}


/* ========================================
   19. SHARED SUBPAGE HERO

   HOCHZEITEN
   BUSINESS
   EVENTS
======================================== */

:is(
  .wedding-hero,
  .business-hero,
  .event-hero
) {
  position: relative;

  min-height: 94svh;

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  background: #171717;
  color: #fff;
}

:is(
  .wedding-hero-image,
  .business-hero-image,
  .event-hero-image
) {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

:is(
  .wedding-hero-overlay,
  .business-hero-overlay,
  .event-hero-overlay
) {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .27) 0%,
      rgba(0, 0, 0, .05) 40%,
      rgba(0, 0, 0, .62) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .16),
      transparent 60%
    );
}

:is(
  .wedding-hero-inner,
  .business-hero-inner,
  .event-hero-inner
) {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: var(--max);

  margin: 0 auto;

  padding:
    160px
    var(--pad)
    48px;
}

:is(
  .wedding-hero,
  .business-hero,
  .event-hero
) .eyebrow {
  margin-bottom: 22px;

  opacity: .82;
}

:is(
  .wedding-hero,
  .business-hero,
  .event-hero
) h1 {
  max-width: 1120px;

  font-size: clamp(58px, 7.7vw, 116px);
}

:is(
  .wedding-hero-bottom,
  .business-hero-bottom,
  .event-hero-bottom
) {
  margin-top: clamp(44px, 7vh, 82px);

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, .38);

  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 40px;
}

:is(
  .wedding-hero-bottom,
  .business-hero-bottom,
  .event-hero-bottom
) p {
  max-width: 620px;

  margin: 0;

  color: rgba(255, 255, 255, .80);

  font-size: 14px;
  line-height: 1.68;
}


/* ========================================
   20. SHARED "AUF DIESER SEITE"
======================================== */

:is(
  .wedding-jump,
  .business-jump,
  .event-jump
) {
  background: var(--paper);

  border-bottom: 1px solid var(--line);
}

:is(
  .wedding-jump-inner,
  .business-jump-inner,
  .event-jump-inner
) {
  display: block;
}

:is(
  .wedding-page-index,
  .business-page-index,
  .event-page-index
) {
  width: 100%;
}

:is(
  .wedding-page-index,
  .business-page-index,
  .event-page-index
) > summary {
  min-height: 72px;

  padding: 0;

  list-style: none;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  color: var(--muted);

  cursor: pointer;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: .14em;
  text-transform: uppercase;

  transition: color .25s ease;
}

:is(
  .wedding-page-index,
  .business-page-index,
  .event-page-index
) > summary::-webkit-details-marker {
  display: none;
}

:is(
  .wedding-page-index,
  .business-page-index,
  .event-page-index
) > summary::after {
  content: "+";

  width: 30px;
  height: 30px;

  border: 1px solid var(--line);
  border-radius: 999px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color: var(--ink);

  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;

  transition:
    transform .3s ease,
    background .3s ease;
}

:is(
  .wedding-page-index,
  .business-page-index,
  .event-page-index
)[open] > summary {
  color: var(--ink);
}

:is(
  .wedding-page-index,
  .business-page-index,
  .event-page-index
)[open] > summary::after {
  transform: rotate(45deg);

  background: var(--paper-2);
}

:is(
  .wedding-jump-links,
  .business-jump-links,
  .event-jump-links
) {
  padding: 2px 0 24px;

  border-top: 1px solid var(--line);

  display: flex;
  flex-wrap: wrap;

  gap: 0 clamp(28px, 4vw, 60px);
}

:is(
  .wedding-jump-links,
  .business-jump-links,
  .event-jump-links
) a {
  position: relative;

  padding: 18px 0 4px;

  color: var(--ink);

  font-size: 13px;
}

:is(
  .wedding-jump-links,
  .business-jump-links,
  .event-jump-links
) a::after {
  content: "↘";

  margin-left: 8px;

  color: var(--muted);

  font-size: 11px;

  transition: transform .25s ease;
}

:is(
  .wedding-jump-links,
  .business-jump-links,
  .event-jump-links
) a:hover::after {
  display: inline-block;

  transform: translate(2px, 2px);
}


/* ========================================
   21. SHARED SUBPAGE INTRO
======================================== */

:is(
  .wedding-intro,
  .business-intro,
  .event-intro
) {
  padding: clamp(110px, 13vw, 195px) 0;

  background: var(--paper);
}

:is(
  .wedding-intro-grid,
  .business-intro-grid,
  .event-intro-grid
) {
  display: grid;

  gap: clamp(60px, 10vw, 155px);

  align-items: center;
}

.wedding-intro-grid {
  grid-template-columns: .78fr 1.22fr;
}

.business-intro-grid {
  grid-template-columns: 1.12fr .78fr;
}

.event-intro-grid {
  grid-template-columns: .82fr 1.18fr;
}

:is(
  .wedding-intro-image,
  .business-intro-image,
  .event-intro-image
) {
  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;
}

:is(
  .wedding-intro-copy,
  .business-intro-copy,
  .event-intro-copy
) .eyebrow {
  margin-bottom: 28px;

  color: var(--muted);
}

:is(
  .wedding-intro-copy,
  .business-intro-copy,
  .event-intro-copy
) .section-copy {
  max-width: 650px;

  margin-top: 38px;
}


/* ========================================
   22. SHARED PROCESS
======================================== */

:is(
  .wedding-process,
  .business-process,
  .event-process
) {
  padding: clamp(110px, 13vw, 190px) 0;
}

.wedding-process,
.event-process {
  background: var(--paper-warm);
}

.business-process {
  background: var(--paper);
}

:is(
  .wedding-process-head,
  .business-process-head,
  .event-process-head
) {
  display: grid;

  grid-template-columns: 1fr .8fr;

  gap: clamp(55px, 8vw, 125px);

  align-items: end;

  margin-bottom: clamp(60px, 8vw, 105px);
}

:is(
  .wedding-process-list,
  .business-process-list,
  .event-process-list
) {
  border-top: 1px solid rgba(23, 23, 23, .18);
}

:is(
  .wedding-process-step,
  .business-process-step,
  .event-process-step
) {
  padding: 30px 0 34px;

  border-bottom: 1px solid rgba(23, 23, 23, .18);

  display: grid;

  grid-template-columns: 90px 1fr .9fr;

  gap: clamp(25px, 4vw, 70px);

  align-items: start;
}

:is(
  .wedding-process-number,
  .business-process-number,
  .event-process-number
) {
  color: var(--muted);

  font-size: 11px;

  letter-spacing: .12em;
}

:is(
  .wedding-process-step,
  .business-process-step,
  .event-process-step
) h3 {
  margin: 0;

  font-size: clamp(24px, 2.4vw, 36px);

  letter-spacing: -.035em;
  font-weight: 500;
}

:is(
  .wedding-process-step,
  .business-process-step,
  .event-process-step
) p {
  margin: 0;

  color: #45423e;

  font-size: 15px;
  line-height: 1.72;
}


/* ========================================
   23. SHARED SUBPAGE PRICING
======================================== */

:is(
  .wedding-price-section,
  .business-price-section,
  .event-price-section
) {
  padding: clamp(105px, 12vw, 180px) 0;

  background: var(--dark);
  color: #f7f5ef;
}

:is(
  .wedding-price-head,
  .business-price-head,
  .event-price-head
) {
  display: grid;

  grid-template-columns: 1.2fr .8fr;

  gap: clamp(60px, 9vw, 140px);

  align-items: end;
}

:is(
  .wedding-price-copy,
  .business-price-copy,
  .event-price-copy
) {
  max-width: 540px;

  margin: 0;

  color: rgba(255, 255, 255, .72);

  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
}

:is(
  .wedding-price-link,
  .business-price-link,
  .event-price-link
) {
  margin-top: 28px;
}

:is(
  .wedding-price-section,
  .business-price-section,
  .event-price-section
) .text-link {
  color: #fff;
}


/*
   Kompatibilität für eine ältere Version
   unserer Hochzeit und Business HTML.

   Falls dort noch wedding-price-main oder
   business-price-main steht sieht es trotzdem
   exakt wie price-big aus.
*/

.wedding-price-main,
.business-price-main,
.event-price-main {
  margin-top: 8px;

  font-family: "Manrope", Arial, sans-serif;

  font-size: clamp(76px, 10vw, 150px);
  line-height: .86;

  letter-spacing: -.07em;
  font-weight: 500;
}

.wedding-price-main span,
.business-price-main span,
.event-price-main span {
  display: block;

  margin-top: 20px;

  font-family: "Manrope", Arial, sans-serif;

  font-size: 13px;

  letter-spacing: .02em;
  font-weight: 500;

  opacity: .64;
}


/* Hochzeit und Events können Preisbeispiele nutzen */

.wedding-price-examples,
.event-price-examples {
  margin-top: clamp(70px, 9vw, 120px);

  border-top: 1px solid rgba(255, 255, 255, .2);

  display: grid;

  grid-template-columns: repeat(3, 1fr);
}

.wedding-price-card,
.event-price-card {
  min-height: 220px;

  padding: 25px 28px 28px 0;

  border-right: 1px solid rgba(255, 255, 255, .16);

  display: flex;
  flex-direction: column;

  justify-content: space-between;
}

.wedding-price-card + .wedding-price-card,
.event-price-card + .event-price-card {
  padding-left: 28px;
}

.wedding-price-card:last-child,
.event-price-card:last-child {
  border-right: 0;
}

.wedding-price-duration,
.event-price-duration {
  color: rgba(255, 255, 255, .5);

  font-size: 10px;

  letter-spacing: .12em;
  text-transform: uppercase;
}

.wedding-price-value,
.event-price-value {
  font-family: "Manrope", Arial, sans-serif;

  font-size: clamp(39px, 4.5vw, 64px);
  line-height: 1;

  letter-spacing: -.05em;
  font-weight: 500;
}

.wedding-price-card p,
.event-price-card p {
  max-width: 320px;

  margin: 0;

  color: rgba(255, 255, 255, .56);

  font-size: 12px;
  line-height: 1.6;
}


/* ========================================
   24. SHARED FAQ
======================================== */

:is(
  .wedding-faq-section,
  .business-faq-section,
  .event-faq-section
) {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper);
}

:is(
  .wedding-faq-grid,
  .business-faq-grid,
  .event-faq-grid
) {
  display: grid;

  grid-template-columns: .72fr 1.28fr;

  gap: clamp(60px, 9vw, 145px);
}

:is(
  .wedding-faq-label,
  .business-faq-label,
  .event-faq-label
) {
  margin-bottom: 28px;

  color: var(--muted);
}

:is(
  .wedding-faq-list,
  .business-faq-list,
  .event-faq-list
) {
  border-top: 1px solid var(--line);
}

:is(
  .wedding-faq-item,
  .business-faq-item,
  .event-faq-item
) {
  border-bottom: 1px solid var(--line);
}

:is(
  .wedding-faq-item,
  .business-faq-item,
  .event-faq-item
) summary {
  position: relative;

  padding: 24px 48px 24px 0;

  list-style: none;

  cursor: pointer;

  font-size: 17px;
  line-height: 1.45;

  font-weight: 500;
}

:is(
  .wedding-faq-item,
  .business-faq-item,
  .event-faq-item
) summary::-webkit-details-marker {
  display: none;
}

:is(
  .wedding-faq-item,
  .business-faq-item,
  .event-faq-item
) summary::after {
  content: "+";

  position: absolute;

  top: 22px;
  right: 0;

  color: var(--muted);

  font-size: 22px;
  font-weight: 400;
}

:is(
  .wedding-faq-item,
  .business-faq-item,
  .event-faq-item
)[open] summary::after {
  content: "×";
}

:is(
  .wedding-faq-answer,
  .business-faq-answer,
  .event-faq-answer
) {
  max-width: 680px;

  padding: 0 48px 26px 0;

  color: #4a4742;

  font-size: 15px;
  line-height: 1.75;
}


/* ========================================
   25. SHARED SUBPAGE CONTACT
======================================== */

:is(
  .wedding-contact-section,
  .business-contact-section,
  .event-contact-section
) {
  position: relative;

  min-height: 78svh;

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  background: #171717;
  color: #fff;
}

:is(
  .wedding-contact-image,
  .business-contact-image,
  .event-contact-image
) {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

:is(
  .wedding-contact-overlay,
  .business-contact-overlay,
  .event-contact-overlay
) {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .14),
      rgba(0, 0, 0, .68)
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .12),
      transparent 62%
    );
}

:is(
  .wedding-contact-inner,
  .business-contact-inner,
  .event-contact-inner
) {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: var(--max);

  margin: 0 auto;

  padding:
    clamp(110px, 13vw, 180px)
    var(--pad)
    54px;
}

:is(
  .wedding-contact-inner,
  .business-contact-inner,
  .event-contact-inner
) > .eyebrow {
  margin-bottom: 28px;

  opacity: .75;
}

:is(
  .wedding-contact-title,
  .business-contact-title,
  .event-contact-title
) {
  max-width: 1080px;

  margin: 0;

  font-size: clamp(58px, 8vw, 116px);
  line-height: .9;

  letter-spacing: -.055em;
  font-weight: 500;
}

:is(
  .wedding-contact-bottom,
  .business-contact-bottom,
  .event-contact-bottom
) {
  margin-top: clamp(48px, 8vw, 95px);

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, .38);

  display: grid;

  grid-template-columns: 1fr auto;

  gap: 35px;

  align-items: end;
}

:is(
  .wedding-contact-bottom,
  .business-contact-bottom,
  .event-contact-bottom
) p {
  max-width: 640px;

  margin: 0;

  color: rgba(255, 255, 255, .8);

  font-size: 14px;
  line-height: 1.68;
}


/* ========================================
   26. WEDDING SPECIFIC
======================================== */

.wedding-reportage {
  padding: clamp(105px, 12vw, 180px) 0;

  background: var(--paper-2);
}

.wedding-reportage-head,
.wedding-gallery-head,
.wedding-trust-head {
  display: grid;

  grid-template-columns: 1.14fr .78fr;

  gap: clamp(55px, 9vw, 140px);

  align-items: end;
}

:is(
  .wedding-reportage-head,
  .event-reportage-head
) {
  margin-bottom: clamp(65px, 8vw, 110px);
}

.wedding-reportage-head .section-copy {
  max-width: 520px;
}

:is(
  .wedding-reportage-feature,
  .event-reportage-feature
) {
  margin: 0;
}

.event-reportage-feature {
  margin-bottom: clamp(55px, 7vw, 90px);
}

:is(
  .wedding-reportage-feature,
  .event-reportage-feature
) img {
  width: 100%;

  aspect-ratio: 3 / 2;

  object-fit: cover;
}

:is(
  .wedding-reportage-feature,
  .event-reportage-feature
) figcaption {
  margin-top: 13px;

  display: flex;
  justify-content: space-between;

  gap: 20px;

  color: var(--muted);

  font-size: 10px;

  letter-spacing: .1em;
  text-transform: uppercase;
}




/* Hochzeit Galerie */

.wedding-gallery-section {
  padding: clamp(110px, 13vw, 195px) 0;

  background: var(--paper);
}

.wedding-gallery-head {
  grid-template-columns: 1fr 1fr;

  margin-bottom: clamp(70px, 9vw, 120px);
}

.wedding-editorial-gallery {
  display: grid;

  grid-template-columns: .72fr 1.28fr;

  gap: clamp(22px, 4vw, 62px);

  align-items: start;
}

.wedding-gallery-column {
  display: grid;

  gap: clamp(22px, 4vw, 62px);
}

.wedding-gallery-column-a {
  padding-top: clamp(60px, 8vw, 125px);
}

.wedding-editorial-gallery img {
  width: 100%;

  object-fit: cover;
}

.wedding-gallery-portrait {
  aspect-ratio: 4 / 5;
}

.wedding-gallery-landscape {
  aspect-ratio: 3 / 2;
}

.wedding-gallery-full {
  grid-column: 1 / -1;

  margin:
  clamp(28px, 4vw, 58px)
  0
  0;
}

.wedding-gallery-full img {
  width: 100%;

  aspect-ratio: 5 / 2;
  object-fit: cover;
}

/* Hochzeit Vertrauen */

.wedding-trust-section {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper-2);
}

.wedding-trust-head {
  grid-template-columns: 1fr .8fr;
}


/* ========================================
   27. BUSINESS SPECIFIC
======================================== */

.business-services {
  padding: clamp(105px, 12vw, 180px) 0;

  background: var(--paper-warm);
}

.business-services-head,
.business-work-head,
.business-sectors-grid,
.business-gallery-head {
  display: grid;

  grid-template-columns: 1.05fr .8fr;

  gap: clamp(55px, 9vw, 140px);

  align-items: end;
}

.business-services-head {
  margin-bottom: clamp(65px, 8vw, 105px);
}


/* Business Leistungen */

.business-services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(23, 23, 23, .18);
  border-left: 1px solid rgba(23, 23, 23, .18);
}

.business-service-card {
  min-height: 315px;

  padding: 28px;

  border-right: 1px solid rgba(23, 23, 23, .18);
  border-bottom: 1px solid rgba(23, 23, 23, .18);

  display: flex;
  flex-direction: column;
}

.business-service-number {
  margin-bottom: auto;

  color: var(--muted);

  font-size: 10px;

  letter-spacing: .12em;
}

.business-service-card h3 {
  margin: 55px 0 15px;

  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;

  letter-spacing: -.035em;
  font-weight: 500;
}

.business-service-card p {
  margin: 0;

  color: #4a4742;

  font-size: 14px;
  line-height: 1.68;
}

/* ========================================
   BUSINESS PAGE ERGÄNZUNGEN
======================================== */


/* Leistungen: Überschriften auf gleicher Höhe */

.business-service-number {
  margin-bottom: 0;
}

.business-service-card h3 {
  margin-top: 92px;
}


/* Zusätzliche Produktbilder unter Leistungen */

.business-services-visuals {
  margin-top: clamp(70px, 9vw, 120px);
}


/* Business Galerie: zwei Bilder pro Spalte */

.business-page .business-gallery-grid > :nth-child(3) {
  grid-column: 1;
}

.business-page .business-gallery-grid > :nth-child(4) {
  grid-column: 2;
}


@media (max-width: 640px) {

  .business-service-card h3 {
    margin-top: 48px;
  }

  .business-page .business-gallery-grid > :nth-child(3),
  .business-page .business-gallery-grid > :nth-child(4) {
    grid-column: auto;
  }

}


/* Business Work */

.business-work {
  padding: clamp(110px, 13vw, 195px) 0;

  background: var(--paper);
}

.business-work-head {
  margin-bottom: clamp(70px, 9vw, 120px);
}

.business-work-head .eyebrow {
  margin-bottom: 25px;

  color: var(--muted);
}

.business-work-grid {
  display: grid;

  grid-template-columns: 1.26fr .74fr;

  gap: clamp(24px, 4vw, 62px);

  align-items: start;
}

.business-work-main img {
  width: 100%;

  aspect-ratio: 2 / 3;

  object-fit: cover;
}

.business-work-side {
  padding-top: clamp(55px, 7vw, 105px);

  display: grid;

  gap: clamp(24px, 4vw, 62px);
}

.business-work-side img {
  width: 100%;

  object-fit: cover;
}

.business-work-side img:first-child {
  aspect-ratio: 4 / 5;
}

.business-work-side img:last-child {
  aspect-ratio: 2 / 2;
}


/* Business Branchen */

.business-sectors {
  padding: clamp(105px, 12vw, 175px) 0;

  background: var(--paper-2);
}

.business-sectors-grid {
  grid-template-columns: 1fr .8fr;
}

.business-sector-label {
  margin-bottom: 18px;
}

.business-sector-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 9px;
}

.business-sector-tags span {
  padding: 9px 13px;

  border: 1px solid var(--line);

  font-size: 12px;
}


/* Business Galerie Unterseite */

.business-page .business-gallery {
  padding: clamp(110px, 13vw, 195px) 0;

  background: var(--paper-warm);
}

.business-page .business-gallery-head {
  grid-template-columns: 1fr 1fr;

  margin-bottom: clamp(70px, 9vw, 120px);
}

.business-gallery-grid {
  display: grid;

  grid-template-columns: .72fr 1.28fr;

  gap: clamp(24px, 4vw, 62px);

  align-items: start;
}

.business-gallery-grid img {
  width: 100%;

  object-fit: cover;
}

.business-gallery-portrait {
  aspect-ratio: 4 / 5;

  margin-top: clamp(55px, 7vw, 105px);
}

.business-gallery-wide {
  aspect-ratio: 3 / 2;
}

.business-gallery-wide + .business-gallery-wide {
  grid-column: 2;
}

/* ========================================
   27.1 LGBTQ+ HOCHZEITEN
======================================== */

.wedding-inclusive-section {
  padding: clamp(105px, 12vw, 180px) 0;

  background: var(--paper-2);
}

.wedding-inclusive-head {
  display: grid;

  grid-template-columns: 1.14fr .78fr;

  gap: clamp(55px, 9vw, 140px);

  align-items: end;
}

.wedding-inclusive-head .section-copy {
  max-width: 560px;
}

@media (max-width: 950px) {

  .wedding-inclusive-head {
    grid-template-columns: 1fr;
  }

  .wedding-inclusive-head .section-copy {
    width: min(74vw, 580px);

    margin-left: auto;
  }

}

@media (max-width: 640px) {

  .wedding-inclusive-head .section-copy {
    width: 100%;

    margin-left: 0;
  }

}





/* ========================================
   28. EVENTS PREPARED COMPONENTS
======================================== */

/*
   Die gemeinsamen Elemente der Eventseite sind
   bereits oben vollständig vorbereitet:

   .event-hero
   .event-jump
   .event-page-index
   .event-intro
   .event-process
   .event-price-section
   .event-faq-section
   .event-contact-section

   Beim Bau der Eventseite ergänzen wir nur noch
   ihre wirklich individuellen Bereiche.
*/

.event-intro {
  background: var(--paper);
}

.event-process {
  background: var(--paper-warm);
}

.event-price-section {
  background: var(--dark);
}

.event-faq-section {
  background: var(--paper);
}


/* ========================================
   29. LIGHTBOX
======================================== */

.lightbox-trigger {
  position: relative;

  width: 100%;

  padding: 0;

  border: 0;

  display: block;

  overflow: hidden;

  background: transparent;

  text-align: inherit;

  cursor: pointer;
}

.lightbox-trigger::after {
  content: "Vergrößern  ↗";

  position: absolute;

  right: 14px;
  bottom: 14px;

  padding: 8px 10px;

  border: 1px solid rgba(255, 255, 255, .22);

  background: rgba(18, 18, 18, .56);

  color: rgba(255, 255, 255, .96);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 10px;
  line-height: 1;

  letter-spacing: .08em;
  text-transform: uppercase;

  opacity: 0;

  transform: translateY(5px);

  pointer-events: none;

  transition:
    opacity .3s ease,
    transform .3s ease;
}

.lightbox-trigger img {
  transition:
    transform .7s cubic-bezier(.2, .65, .3, 1),
    filter .4s ease;
}

.lightbox-trigger:hover img {
  transform: scale(1.018);

  filter: brightness(.96);
}

.lightbox-trigger:hover::after {
  opacity: 1;

  transform: translateY(0);
}

.lightbox {
  position: fixed;

  inset: 0;

  z-index: 1000;

  visibility: hidden;

  pointer-events: none;

  padding: clamp(18px, 4vw, 56px);

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(247, 246, 242, .975);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  opacity: 0;

  transition:
    opacity .38s ease,
    visibility 0s linear .38s;
}

.lightbox.is-open {
  visibility: visible;

  pointer-events: auto;

  opacity: 1;

  transition-delay: 0s;
}

.lightbox-inner {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 92vw;
  max-height: 86vh;

  width: auto;
  height: auto;

  object-fit: contain;

  opacity: 0;

  transform: scale(.975);

  transition:
    opacity .42s ease,
    transform .42s cubic-bezier(.2, .65, .3, 1);
}

.lightbox.is-open img {
  opacity: 1;

  transform: scale(1);
}

.lightbox-close {
  position: absolute;

  top: 0;
  right: 0;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(23, 23, 23, .22);
  border-radius: 999px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  background: rgba(247, 246, 242, .72);

  color: var(--ink);

  cursor: pointer;

  font-size: 20px;
  line-height: 1;

  transition:
    background .25s ease,
    border-color .25s ease;
}

.lightbox-close:hover {
  border-color: rgba(23, 23, 23, .42);

  background: #fff;
}

.lightbox-caption {
  display: none;
}


/* ========================================
   30. FOOTER
======================================== */

.site-footer {
  padding: 70px 0 30px;

  background: var(--dark);
  color: #f4f1ea;
}

.footer-inner {
  width: 100%;
  max-width: var(--max);

  margin: 0 auto;

  padding-left: var(--pad);
  padding-right: var(--pad);
}

.footer-top {
  padding-bottom: 80px;

  display: grid;

  grid-template-columns: 1.3fr .7fr .7fr;

  gap: 60px;
}

.footer-brand {
  font-size: clamp(25px, 3vw, 42px);

  letter-spacing: -.035em;
  font-weight: 500;
}

.footer-brand small {
  display: block;

  max-width: 380px;

  margin-top: 15px;

  color: rgba(255, 255, 255, .52);

  font-size: 12px;
  line-height: 1.6;

  letter-spacing: 0;
  font-weight: 400;
}

.footer-col-title {
  margin-bottom: 18px;

  color: rgba(255, 255, 255, .42);

  font-size: 10px;

  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-links {
  display: grid;

  gap: 11px;

  font-size: 13px;
}

.footer-links a {
  width: max-content;
}

.footer-bottom {
  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, .14);

  display: flex;
  justify-content: space-between;

  gap: 30px;

  color: rgba(255, 255, 255, .42);

  font-size: 10px;

  text-transform: uppercase;
  letter-spacing: .1em;
}


/* ========================================
   31. REVEAL ANIMATION
======================================== */

.reveal {
  opacity: 0;

  transform: translateY(22px);

  transition:
    opacity .75s ease,
    transform .75s ease;
}

.reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}


/* ========================================
   32. TABLET
======================================== */

@media (max-width: 950px) {

  /* Header */

  .nav-inner {
    grid-template-columns: 1fr auto;

    padding-top: 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;

    padding: 6px 0 6px 10px;

    border: 0;

    background: transparent;

    color: inherit;

    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: .1em;
  }


  /* Homepage Hero */

  .hero-slide[data-slide="0"] {
    background-position: 55% center;
  }

  .hero-slide[data-slide="1"] {
    background-position: 52% center;
  }

  .hero-slide[data-slide="2"] {
    background-position: 50% center;
  }

  .hero-slide[data-slide="3"] {
    background-position: 53% center;
  }

  .hero-inner {
    padding-top: 115px;
  }


  /* Homepage Intro */

  .intro-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .intro-image-wrap {
    width: min(68vw, 430px);

    margin-left: auto;
  }

  .intro-copy {
    padding: 0;
  }

  .intro-body {
    margin-left: 0;
  }


  /* Homepage Chapters */

  .chapter-number {
    top: 78px;

    font-size: clamp(130px, 30vw, 230px);
  }

  .wedding-head,
  .pricing-top,
  .work-head,
  .events-head,
  .about-grid,
  .trust-intro {
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .wedding-head .section-copy,
  .pricing-top .price-copy,
  .work-head .section-copy {
    width: min(74vw, 560px);

    margin-left: auto;
  }

  .wedding-visuals {
    grid-template-columns: 1fr .58fr;
  }

  .business-section .business-grid {
    grid-template-columns: 1fr;
  }

  .business-section .business-copy {
    position: static;
  }


  /* Portfolio */

  .project.split {
    grid-template-columns: 1fr;
  }

  .project.split .project-media:first-child {
    width: 58%;
  }


  /* About & Trust */

  .about-photo-wrap {
    width: min(65vw, 450px);
  }

  .about-copy {
    max-width: 760px;

    margin-left: auto;
  }

  .trust-intro .section-copy {
    max-width: 700px;

    margin-left: auto;
  }


  /* Shared Subpages */

  :is(
    .wedding-intro-grid,
    .business-intro-grid,
    .event-intro-grid
  ),

  :is(
    .wedding-process-head,
    .business-process-head,
    .event-process-head
  ),

  :is(
    .wedding-price-head,
    .business-price-head,
    .event-price-head
  ),

  :is(
    .wedding-faq-grid,
    .business-faq-grid,
    .event-faq-grid
  ),

  .wedding-reportage-head,
  .wedding-gallery-head,
  .wedding-trust-head,

  .business-services-head,
  .business-work-head,
  .business-sectors-grid,
  .business-gallery-head {
    grid-template-columns: 1fr;
  }

  :is(
    .wedding-intro-image-wrap,
    .business-intro-image-wrap,
    .event-intro-image-wrap
  ) {
    width: min(66vw, 440px);

    margin-left: auto;
  }

  :is(
    .wedding-process-head,
    .business-process-head,
    .event-process-head
  ) .section-copy,

  :is(
    .wedding-price-copy,
    .business-price-copy,
    .event-price-copy
  ),

  .wedding-reportage-head .section-copy,
  .wedding-gallery-head .section-copy,
  .wedding-trust-head .section-copy,

  .business-services-head .section-copy,
  .business-work-head .section-copy,
  .business-sector-list,
  .business-gallery-head .section-copy {
    width: min(74vw, 580px);

    margin-left: auto;
  }

  :is(
    .wedding-process-step,
    .business-process-step,
    .event-process-step
  ) {
    grid-template-columns: 60px 1fr;
  }

  :is(
    .wedding-process-step,
    .business-process-step,
    .event-process-step
  ) p {
    grid-column: 2;
  }

  .business-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ========================================
   33. MOBILE
======================================== */

@media (max-width: 640px) {

  :root {
    --pad: 22px;
  }


  /* Header */

  .brand {
    font-size: 13px;
  }


  /* Homepage Hero */

  .hero {
    min-height: 92svh;
  }

  .hero-inner {
    min-height: 92svh;

    padding-bottom: 28px;
  }

  h1 {
    max-width: 95%;

    font-size: clamp(50px, 15.5vw, 68px);
  }

  .hero-bottom {
    margin-top: 36px;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
  }

  .hero-disciplines {
    font-size: 12px;
  }

  .hero-status {
    margin-top: 17px;

    gap: 15px;
  }

  .hero-control {
    width: 36px;
    height: 36px;
  }

  .hero-explore {
    margin-top: 12px;

    justify-content: flex-end;
  }


  /* Homepage Intro */

  .intro {
    padding-top: 95px;
    padding-bottom: 105px;
  }

  .intro-grid {
    gap: 52px;
  }

  .intro-image-wrap {
    width: 76vw;
  }

  .section-title,
  .display {
    font-size: clamp(43px, 13vw, 59px);
  }

  .intro-body {
    margin-top: 32px;
  }


  /* Shared section line */

  .section-line {
    margin-bottom: 40px;
  }

  .section-line .eyebrow:last-child {
    display: none;
  }


  /* Homepage chapters */

  .chapter-number {
    top: 72px;
    left: 0;

    font-size: clamp(118px, 36vw, 170px);
  }

  .wedding-head .section-copy,
  .pricing-top .price-copy,
  .work-head .section-copy {
    width: 100%;

    margin-left: 0;
  }

  .wedding-visuals {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .wedding-side {
    width: 70%;

    margin-left: auto;
  }


  /* Homepage Business */

  .business-section .business-gallery {
    grid-template-columns: 1fr;
  }

  .business-section .business-gallery figure:nth-child(2) {
    width: 74%;

    margin-top: 0;
    margin-left: auto;
  }

  .business-section .business-gallery figure:nth-child(3) {
    grid-column: auto;

    width: 100%;

    margin-top: 0;
  }


  /* Homepage Events */

  .events-visual {
    min-height: 72svh;
  }

  .events-caption {
    flex-direction: column;

    gap: 5px;
  }


  /* Homepage Pricing */

  .pricing {
    padding-top: 85px;
    padding-bottom: 90px;
  }

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

  .tier,
  .tier + .tier {
    min-height: 150px;
    padding: 28px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);

    display: grid;
    grid-template-columns: 1fr auto 1.45fr;
    gap: 18px;

    align-items: center;
  }

  .tier-duration {
    line-height: 1.45;
  }

  .tier-discount {
    font-size: clamp(46px, 13vw, 58px);
    line-height: .9;

    white-space: nowrap;
  }

  .tier-total {
    max-width: none;

    text-align: right;
    line-height: 1.5;
  }
  
  .tier:last-child {
    border-bottom: 0;
  }


  .price-foot {
    flex-direction: column;

    align-items: flex-start;
  }


  /* Homepage Portfolio */

  .work {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .work-head {
    margin-bottom: 70px;
  }

  .project.wide .project-media img {
    aspect-ratio: 4 / 5;
  }

  .project.split .project-media:first-child {
    width: 72%;
  }

  .project.split .project-media.large {
    width: 100%;
  }

  .project-meta {
    grid-template-columns: 1fr;

    gap: 4px;
  }

  .project-link {
    margin-top: 8px;
  }


  /* Homepage About */

  .about-photo-wrap {
    width: 78vw;
  }

  .about-copy {
    margin-left: 0;
  }


  /* Trust */

  .trust-kpis,
  .testimonials,
  .wedding-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .trust-kpis {
    gap: 55px;
  }

  .testimonials,
  .wedding-testimonial-grid {
    gap: 65px;
  }


  /* Homepage Contact */

  .contact-section {
    min-height: 82svh;
  }

  .contact-title {
    font-size: clamp(55px, 16vw, 75px);
  }

  .contact-bottom {
    grid-template-columns: 1fr;
  }

  .cta-button {
    width: 100%;

    justify-content: space-between;
  }


  /* =====================================
     SHARED SUBPAGES MOBILE
  ===================================== */

  :is(
    .wedding-hero,
    .business-hero,
    .event-hero
  ) {
    min-height: 89svh;
  }

  :is(
    .wedding-hero-inner,
    .business-hero-inner,
    .event-hero-inner
  ) {
    padding-top: 125px;
    padding-bottom: 30px;
  }

  :is(
    .wedding-hero,
    .business-hero,
    .event-hero
  ) h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  :is(
    .wedding-hero-bottom,
    .business-hero-bottom,
    .event-hero-bottom
  ) {
    flex-direction: column;

    align-items: flex-start;

    gap: 17px;
  }


  /* Auf dieser Seite */

  :is(
    .wedding-page-index,
    .business-page-index,
    .event-page-index
  ) > summary {
    min-height: 58px;
  }

  :is(
    .wedding-page-index,
    .business-page-index,
    .event-page-index
  ) > summary::after {
    width: 28px;
    height: 28px;
  }

  :is(
    .wedding-jump-links,
    .business-jump-links,
    .event-jump-links
  ) {
    padding: 0 0 16px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0 20px;
  }

  :is(
    .wedding-jump-links,
    .business-jump-links,
    .event-jump-links
  ) a {
    padding: 13px 0;

    border-bottom: 1px solid var(--line);

    display: flex;

    justify-content: space-between;

    gap: 12px;
  }


  /* Intro */

  :is(
    .wedding-intro-image-wrap,
    .business-intro-image-wrap,
    .event-intro-image-wrap
  ) {
    width: 76vw;
  }

  .business-intro-grid {
    display: flex;

    flex-direction: column;
  }


  /* Wedding Gallery */

  :is(
    .wedding-reportage-feature,
    .event-reportage-feature
  ) img {
    aspect-ratio: 4 / 5;
  }

  :is(
    .wedding-reportage-feature,
    .event-reportage-feature
  ) figcaption {
    flex-direction: column;
    gap: 4px;
  }

  .wedding-editorial-gallery {
    grid-template-columns: 1fr;
  }

  .wedding-gallery-column-a {
    padding-top: 0;
  }

  .wedding-gallery-column-a .wedding-gallery-portrait {
    width: 76%;

    margin-left: auto;
  }


  /* Process */

  :is(
    .wedding-process-step,
    .business-process-step,
    .event-process-step
  ) {
    grid-template-columns: 42px 1fr;

    gap: 20px;

    padding: 24px 0 27px;
  }


  /* Price cards */

  .wedding-price-examples,
  .event-price-examples {
    grid-template-columns: 1fr;
  }

  .wedding-price-card,
  .wedding-price-card + .wedding-price-card,
  .event-price-card,
  .event-price-card + .event-price-card {
    min-height: 150px;

    padding: 22px 0;

    border-right: 0;

    border-bottom: 1px solid rgba(255, 255, 255, .17);
  }

  .wedding-price-card:last-child,
  .event-price-card:last-child {
    border-bottom: 0;
  }


  /* FAQ */

  :is(
    .wedding-faq-item,
    .business-faq-item,
    .event-faq-item
  ) summary {
    padding-right: 34px;

    font-size: 16px;
  }

  :is(
    .wedding-faq-answer,
    .business-faq-answer,
    .event-faq-answer
  ) {
    padding-right: 20px;
  }


  /* Contact */

  :is(
    .wedding-contact-section,
    .business-contact-section,
    .event-contact-section
  ) {
    min-height: 80svh;
  }

  :is(
    .wedding-contact-title,
    .business-contact-title,
    .event-contact-title
  ) {
    font-size: clamp(54px, 16vw, 74px);
  }

  :is(
    .wedding-contact-bottom,
    .business-contact-bottom,
    .event-contact-bottom
  ) {
    grid-template-columns: 1fr;
  }


  /* Business */

  .business-services-grid {
    grid-template-columns: 1fr;
  }

  .business-service-card {
    min-height: 245px;
  }

  .business-work-grid,
  .business-gallery-grid {
    grid-template-columns: 1fr;
  }

  .business-work-side {
    padding-top: 0;
  }

  .business-work-side img:first-child,
  .business-gallery-portrait {
    width: 76%;

    margin-left: auto;
  }

  .business-gallery-portrait {
    margin-top: 0;
  }

  .business-gallery-wide + .business-gallery-wide {
    grid-column: auto;
  }


  /* Footer */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top > :first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 10px;
  }


  /* Lightbox */

  .lightbox-trigger::after {
    right: 10px;
    bottom: 10px;

    padding: 7px 9px;

    opacity: 1;

    transform: none;
  }

}


/* ========================================
   34. ACCESSIBILITY & REDUCED MOTION
======================================== */

@media (min-width: 951px) {

  .mobile-nav {
    display: none !important;
  }

}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;

    transform: none !important;

    transition: none !important;
  }

  .hero-slide,
  .hero-current,
  .project-media img,
  .lightbox-trigger img,
  .arrow,
  .hero-control,
  .cta-button {
    transition-duration: .01ms !important;
  }

  .hero-progress-bar {
    width: 100%;

    animation: none !important;
  }

}


/* ========================================
   35. TEMPORARY STARTER PAGES
======================================== */

/*
   Diese Regeln brauchen wir nur solange
   Portfolio, Preise, Über mich, Kontakt usw.
   noch nicht fertig aufgebaut sind.

   Danach können wir diesen Block entfernen.
*/

.nav.page-nav {
  position: sticky;

  color: var(--ink);

  background: rgba(247, 246, 242, .94);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 1px 0 rgba(23, 23, 23, .08);
}

.nav.page-nav .nav-inner {
  padding-top: 19px;
  padding-bottom: 19px;
}

.page-starter {
  min-height: 58vh;

  background: var(--paper);
}

/* ========================================
   PORTFOLIO PAGE
======================================== */


/* Hero */

.portfolio-hero {
  position: relative;

  min-height: 92svh;

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  background: var(--dark);
  color: #fff;
}

.portfolio-hero-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.portfolio-hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .22) 0%,
      rgba(0, 0, 0, .03) 38%,
      rgba(0, 0, 0, .66) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .18),
      transparent 60%
    );
}

.portfolio-hero-inner {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: var(--max);

  margin: 0 auto;

  padding:
    160px
    var(--pad)
    48px;
}

.portfolio-hero .eyebrow {
  margin-bottom: 22px;

  opacity: .82;
}

.portfolio-hero h1 {
  max-width: 1050px;

  font-size: clamp(58px, 7.7vw, 116px);
}

.portfolio-hero-bottom {
  margin-top: clamp(44px, 7vh, 82px);

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, .38);

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 35px;

  color: rgba(255, 255, 255, .78);

  font-size: 12px;

  letter-spacing: .08em;
  text-transform: uppercase;
}


/* Intro */

.portfolio-intro {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper);
}

.portfolio-intro-grid {
  display: grid;

  grid-template-columns: .32fr 1.68fr;

  gap: clamp(50px, 8vw, 130px);

  align-items: start;
}

.portfolio-intro-grid > .eyebrow {
  padding-top: 12px;

  color: var(--muted);
}

.portfolio-intro .section-copy {
  max-width: 700px;

  margin-top: 40px;
  margin-left: auto;
}


/* Shared category structure */

.portfolio-category {
  padding: clamp(110px, 13vw, 195px) 0;

  overflow: hidden;
}

.portfolio-category-head {
  display: grid;

  grid-template-columns: 1.12fr .72fr;

  gap: clamp(55px, 9vw, 140px);

  align-items: end;

  margin-bottom: clamp(75px, 10vw, 135px);
}

.portfolio-category-copy {
  max-width: 520px;
}

.portfolio-category-copy .text-link {
  display: block;

  margin-top: 28px;
}

.portfolio-image {
  margin: 0;

  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* Weddings */

.portfolio-category-wedding {
  background: var(--paper-2);
}

.portfolio-wedding-grid {
  display: grid;

  grid-template-columns: .72fr .28fr;

  gap: clamp(22px, 4vw, 62px);

  align-items: start;
}

.portfolio-wedding-main {
  grid-column: 1 / -1;
}

.portfolio-wedding-main img {
  aspect-ratio: 16 / 9;
}

.portfolio-wedding-portrait {
  width: 72%;

  margin-top: clamp(60px, 8vw, 120px);
  margin-left: auto;
}

.portfolio-wedding-portrait img {
  aspect-ratio: 4 / 3;
}

.portfolio-wedding-wide {
  align-self: end;
}

.portfolio-wedding-wide img {
  aspect-ratio: 2 / 3;
}

.portfolio-wedding-small {
  grid-column: 1 / -1;

  width: 34%;

  margin:
    clamp(55px, 8vw, 120px)
    8%
    0
    auto;
}

.portfolio-wedding-small img {
  aspect-ratio: 4 / 5;
}

.portfolio-wedding-full {
grid-column: 1 / -1;

width: 100%;
}

.portfolio-wedding-full img {
width: 100%;

aspect-ratio: 16 / 9;
object-fit: cover;
}

/* Business */

.portfolio-category-business {
  background: var(--paper-warm);
}

.portfolio-business-grid {
  display: grid;

  grid-template-columns: .42fr .58fr;

  gap: clamp(22px, 4vw, 62px);

  align-items: start;
}

.portfolio-business-portrait {
  width: 82%;

  margin-top: clamp(80px, 10vw, 150px);
}

.portfolio-business-portrait img {
  aspect-ratio: 4 / 5;
}

.portfolio-business-main img {
  aspect-ratio: 3 / 2;
}

.portfolio-business-wide {
  grid-column: 1 / -1;

  width: 74%;

  margin:
    clamp(65px, 8vw, 115px)
    0
    0
    auto;
}

.portfolio-business-wide img {
  aspect-ratio: 3 / 2;
}

.portfolio-business-small {
  width: 70%;

  margin-top: clamp(65px, 8vw, 115px);
  margin-left: auto;
}

.portfolio-business-small img {
  aspect-ratio: 4 / 5;
}

.portfolio-business-last {
  align-self: end;
}

.portfolio-business-last img {
  aspect-ratio: 3 / 2;
}


/* Events */

.portfolio-category-events {
  background: var(--paper-2);
}

.portfolio-event-grid {
  display: grid;

  grid-template-columns: 1.25fr .75fr;

  gap: clamp(22px, 4vw, 62px);

  align-items: start;
}

.portfolio-event-main {
  grid-column: 1 / -1;
}

.portfolio-event-main img {
  aspect-ratio: 16 / 9;
}

.portfolio-event-portrait {
  width: 72%;

  margin-top: clamp(65px, 8vw, 120px);
  margin-left: auto;
}

.portfolio-event-portrait img {
  aspect-ratio: 4 / 5;
}

.portfolio-event-wide {
  align-self: end;
}

.portfolio-event-wide img {
  aspect-ratio: 3 / 2;
}

.portfolio-event-last {
  grid-column: 1 / -1;

  width: 68%;

  margin:
    clamp(70px, 9vw, 130px)
    auto
    0
    0;
}

.portfolio-event-last img {
  aspect-ratio: 3 / 2;
}

/* ========================================
   EVENT EDITORIAL GALLERY
======================================== */

.event-editorial-grid {
  display: grid;

  grid-template-columns: .68fr .32fr;

  column-gap: clamp(20px, 3vw, 44px);
  row-gap: clamp(22px, 4vw, 62px);

  align-items: start;
}


/* Großes Bild oben */

.event-editorial-main {
  grid-column: 1 / -1;
}

.event-editorial-main img {
  width: 100%;

  aspect-ratio: 16 / 9;

  object-fit: cover;
}


/* Breites Bild unten links */

.event-editorial-wide {
  align-self: start;
}

.event-editorial-wide img {
  width: 100%;

  aspect-ratio: 3 / 2;

  object-fit: cover;
}


/* Schmales Hochformat unten rechts */

.event-editorial-portrait {
  width: 88%;

  margin-top: clamp(18px, 3vw, 42px);
  margin-left: auto;
}

.event-editorial-portrait img {
  width: 100%;

  aspect-ratio: 1 / 1.6;

  object-fit: cover;
}


/* Mobile */

@media (max-width: 640px) {

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

  .event-editorial-main {
    grid-column: auto;
  }

  .event-editorial-main img {
    aspect-ratio: 3 / 2;
  }

  .event-editorial-wide {
    width: 92%;
  }

  .event-editorial-portrait {
    width: 68%;

    margin-top: 18px;
    margin-left: auto;
  }

}

/* ========================================
   PORTFOLIO TABLET
======================================== */

@media (max-width: 950px) {

  .portfolio-intro-grid {
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .portfolio-intro-grid > .eyebrow {
    padding-top: 0;
  }

  .portfolio-intro .section-copy {
    width: min(74vw, 620px);

    margin-left: auto;
  }

  .portfolio-category-head {
    grid-template-columns: 1fr;
  }

  .portfolio-category-copy {
    width: min(74vw, 560px);

    margin-left: auto;
  }

}


/* ========================================
   PORTFOLIO MOBILE
======================================== */

@media (max-width: 640px) {

  .portfolio-hero {
    min-height: 89svh;
  }

  .portfolio-hero-inner {
    padding-top: 125px;
    padding-bottom: 30px;
  }

  .portfolio-hero h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .portfolio-hero-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 16px;
  }

  .portfolio-intro {
    padding-top: 95px;
    padding-bottom: 110px;
  }

  .portfolio-intro .section-copy,
  .portfolio-category-copy {
    width: 100%;

    margin-left: 0;
  }

  .portfolio-category {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .portfolio-category-head {
    margin-bottom: 65px;
  }


  /* Wedding */

  .portfolio-wedding-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-wedding-main,
  .portfolio-wedding-small {
    grid-column: auto;
  }

  .portfolio-wedding-main img {
    aspect-ratio: 4 / 5;
  }

  .portfolio-wedding-portrait {
    width: 72%;

    margin-top: 18px;
  }

  .portfolio-wedding-wide {
    width: 92%;
  }

  .portfolio-wedding-small {
    width: 64%;

    margin:
      18px
      0
      0
      auto;
  }

  .portfolio-wedding-full {
    grid-column: auto;
  }

  .portfolio-wedding-full img {
    aspect-ratio: 3 / 2;
  }




  /* Business */

  .portfolio-business-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-business-portrait {
    width: 70%;

    margin:
      0
      0
      0
      auto;
  }

  .portfolio-business-wide {
    grid-column: auto;

    width: 100%;

    margin-top: 18px;
  }

  .portfolio-business-small {
    width: 68%;

    margin:
      18px
      auto
      0
      0;
  }


  /* Events */

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

  .portfolio-event-main,
  .portfolio-event-last {
    grid-column: auto;
  }

  .portfolio-event-main img {
    aspect-ratio: 4 / 5;
  }

  .portfolio-event-portrait {
    width: 70%;

    margin-top: 18px;
  }

  .portfolio-event-wide {
    width: 92%;

    margin-left: auto;
  }

  .portfolio-event-last {
    width: 100%;

    margin-top: 18px;
  }

}

/* ========================================
   PRICES PAGE
======================================== */


/* Hero */

.prices-hero {
  min-height: 78svh;

  display: flex;
  align-items: flex-end;

  background: var(--dark);
  color: #f7f5ef;
}

.prices-hero-inner {
  width: 100%;
  max-width: var(--max);

  margin: 0 auto;

  padding:
    165px
    var(--pad)
    52px;
}

.prices-hero .eyebrow {
  margin-bottom: 24px;

  color: rgba(255, 255, 255, .58);
}

.prices-hero h1 {
  max-width: 1080px;

  font-size: clamp(60px, 8vw, 120px);
}

.prices-hero-bottom {
  margin-top: clamp(55px, 8vw, 100px);

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, .22);

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 50px;
}

.prices-hero-bottom p {
  max-width: 620px;

  margin: 0;

  color: rgba(255, 255, 255, .7);

  font-size: 15px;
  line-height: 1.7;
}


/* Pricing model */

.prices-model {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper);
}

.prices-model-grid {
  display: grid;

  grid-template-columns: .9fr 1.1fr;

  gap: clamp(65px, 10vw, 155px);

  align-items: end;
}

.prices-model-label {
  margin-bottom: 25px;

  color: var(--muted);
}

.prices-model-copy {
  max-width: 690px;
}

.prices-model-copy .section-copy {
  margin-top: 34px;
}

.prices-model-copy .section-copy + .section-copy {
  margin-top: 18px;
}


/* Tiers */

.prices-tiers-section {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper-warm);
}

.prices-tiers-head {
  display: grid;

  grid-template-columns: 1fr .75fr;

  gap: clamp(55px, 9vw, 140px);

  align-items: end;

  margin-bottom: clamp(70px, 9vw, 120px);
}

.prices-tier-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(23, 23, 23, .2);
  border-left: 1px solid rgba(23, 23, 23, .2);
}

.prices-tier-card {
  min-height: 390px;

  padding: 28px;

  border-right: 1px solid rgba(23, 23, 23, .2);
  border-bottom: 1px solid rgba(23, 23, 23, .2);

  display: flex;
  flex-direction: column;
}

.prices-tier-top {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  color: var(--muted);

  font-size: 10px;

  letter-spacing: .11em;
  text-transform: uppercase;
}

.prices-tier-main {
  margin: auto 0;

  padding: 55px 0;

  display: grid;

  gap: 12px;
}

.prices-tier-main strong {
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: .95;

  letter-spacing: -.055em;
  font-weight: 500;
}

.prices-tier-main span {
  color: var(--muted);

  font-size: 12px;
}

.prices-tier-bottom {
  padding-top: 18px;

  border-top: 1px solid rgba(23, 23, 23, .15);

  display: flex;
  justify-content: space-between;

  gap: 20px;

  color: var(--muted);

  font-size: 10px;

  text-transform: uppercase;
  letter-spacing: .08em;
}


/* Included */

.prices-included {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper-2);
}

.prices-included-grid {
  display: grid;

  grid-template-columns: .82fr 1.18fr;

  gap: clamp(60px, 9vw, 145px);

  align-items: start;
}

.prices-included-list {
  border-top: 1px solid var(--line);
}

.prices-included-item {
  padding: 28px 0 32px;

  border-bottom: 1px solid var(--line);

  display: grid;

  grid-template-columns: 60px 1fr;

  gap: 28px;
}

.prices-included-number {
  padding-top: 5px;

  color: var(--muted);

  font-size: 10px;

  letter-spacing: .12em;
}

.prices-included-item h3 {
  margin: 0 0 12px;

  font-size: clamp(22px, 2vw, 30px);

  letter-spacing: -.035em;
  font-weight: 500;
}

.prices-included-item p {
  max-width: 620px;

  margin: 0;

  color: #4a4742;

  font-size: 14px;
  line-height: 1.7;
}


/* Services */

.prices-services {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper);
}

.prices-services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);
}

.prices-service {
  min-height: 360px;

  padding: 28px 32px 28px 0;

  border-right: 1px solid var(--line);

  display: flex;
  flex-direction: column;
}

.prices-service + .prices-service {
  padding-left: 32px;
}

.prices-service:last-child {
  border-right: 0;
}

.prices-service-number {
  color: var(--muted);

  font-size: 10px;

  letter-spacing: .12em;
}

.prices-service h3 {
  margin: auto 0 16px;

  font-size: clamp(32px, 3.2vw, 48px);

  letter-spacing: -.045em;
  font-weight: 500;
}

.prices-service p {
  min-height: 75px;

  margin: 0 0 26px;

  color: #4a4742;

  font-size: 14px;
  line-height: 1.65;
}


/* FAQ */

.prices-faq {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper-warm);
}

.prices-faq-grid {
  display: grid;

  grid-template-columns: .72fr 1.28fr;

  gap: clamp(60px, 9vw, 145px);
}

.prices-faq-label {
  margin-bottom: 28px;

  color: var(--muted);
}

.prices-faq-list {
  border-top: 1px solid rgba(23, 23, 23, .18);
}

.prices-faq-item {
  border-bottom: 1px solid rgba(23, 23, 23, .18);
}

.prices-faq-item summary {
  position: relative;

  padding: 24px 48px 24px 0;

  list-style: none;

  cursor: pointer;

  font-size: 17px;
  line-height: 1.45;

  font-weight: 500;
}

.prices-faq-item summary::-webkit-details-marker {
  display: none;
}

.prices-faq-item summary::after {
  content: "+";

  position: absolute;

  top: 22px;
  right: 0;

  color: var(--muted);

  font-size: 22px;
  font-weight: 400;
}

.prices-faq-item[open] summary::after {
  content: "×";
}

.prices-faq-answer {
  max-width: 680px;

  padding: 0 48px 26px 0;

  color: #4a4742;

  font-size: 15px;
  line-height: 1.75;
}


/* ========================================
   PRICES TABLET
======================================== */

@media (max-width: 950px) {

  .prices-model-grid,
  .prices-tiers-head,
  .prices-included-grid,
  .prices-faq-grid {
    grid-template-columns: 1fr;
  }

  .prices-model-copy,
  .prices-tiers-head .section-copy,
  .prices-included-list,
  .prices-faq-list {
    width: min(78vw, 690px);

    margin-left: auto;
  }

  .prices-tier-grid {
    grid-template-columns: 1fr;
  }

  .prices-tier-card {
    min-height: 290px;
  }

}


/* ========================================
   PRICES MOBILE
======================================== */

@media (max-width: 640px) {

  .prices-hero {
    min-height: 78svh;
  }

  .prices-hero-inner {
    padding-top: 125px;
    padding-bottom: 30px;
  }

  .prices-hero h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .prices-hero-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
  }

  .prices-model-copy,
  .prices-tiers-head .section-copy,
  .prices-included-list,
  .prices-faq-list {
    width: 100%;

    margin-left: 0;
  }

  .prices-tier-card {
    min-height: 270px;

    padding: 24px 20px;
  }

  .prices-tier-main {
    padding: 45px 0;
  }

  .prices-tier-bottom {
    flex-direction: column;

    gap: 7px;
  }

  .prices-included-item {
    grid-template-columns: 38px 1fr;

    gap: 18px;
  }

  .prices-services-grid {
    grid-template-columns: 1fr;
  }

  .prices-service,
  .prices-service + .prices-service {
    min-height: 270px;

    padding: 25px 0;

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .prices-service:last-child {
    border-bottom: 0;
  }

  .prices-service p {
    min-height: 0;
  }

  .prices-faq-item summary {
    padding-right: 34px;

    font-size: 16px;
  }

  .prices-faq-answer {
    padding-right: 20px;
  }

}

/* ========================================
   ABOUT PAGE
======================================== */


/* Hero */

.about-page-hero {
  padding:
    clamp(130px, 14vw, 190px)
    0
    clamp(90px, 11vw, 150px);

  background: var(--paper);
}

.about-page-hero-grid {
  display: grid;

  grid-template-columns: 1.08fr .72fr;

  gap: clamp(60px, 10vw, 155px);

  align-items: end;
}

.about-page-hero-copy {
  padding-bottom: clamp(10px, 4vw, 55px);
}

.about-page-hero-copy .eyebrow {
  margin-bottom: 28px;

  color: var(--muted);
}

.about-page-hero h1 {
  max-width: 800px;

  color: var(--ink);

  font-size: clamp(62px, 8.5vw, 126px);
}

.about-page-hero-text {
  max-width: 610px;

  margin: clamp(36px, 5vw, 65px) 0 30px;

  color: #45423e;

  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.about-page-hero .scroll-link {
  display: inline-block;

  font-size: 12px;
}

.about-page-hero-image {
  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center top;
}


/* Philosophy */

.about-philosophy {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper-2);
}

.about-philosophy-grid {
  display: grid;

  grid-template-columns: 1.05fr .8fr;

  gap: clamp(60px, 9vw, 145px);

  align-items: start;
}

.about-philosophy-copy {
  padding-top: 8px;
}

.about-philosophy-copy .section-copy + .section-copy {
  margin-top: 22px;
}


/* Approach */

.about-approach {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper-warm);
}

.about-approach-head {
  display: grid;

  grid-template-columns: 1fr .75fr;

  gap: clamp(55px, 9vw, 140px);

  align-items: end;

  margin-bottom: clamp(70px, 9vw, 120px);
}

.about-approach-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(23, 23, 23, .18);
}

.about-approach-item {
  min-height: 340px;

  padding: 28px 32px 28px 0;

  border-right: 1px solid rgba(23, 23, 23, .18);

  display: flex;
  flex-direction: column;
}

.about-approach-item + .about-approach-item {
  padding-left: 32px;
}

.about-approach-item:last-child {
  border-right: 0;
}

.about-approach-number {
  color: var(--muted);

  font-size: 10px;

  letter-spacing: .12em;
}

.about-approach-item h3 {
  margin: auto 0 16px;

  font-size: clamp(30px, 3vw, 44px);

  letter-spacing: -.045em;
  font-weight: 500;
}

.about-approach-item p {
  margin: 0;

  color: #4a4742;

  font-size: 14px;
  line-height: 1.68;
}


/* Behind the camera */

.about-story {
  padding: clamp(110px, 13vw, 195px) 0;

  background: var(--paper);
}

.about-story-head {
  display: grid;

  grid-template-columns: 1fr .78fr;

  gap: clamp(55px, 9vw, 140px);

  align-items: end;

  margin-bottom: clamp(75px, 10vw, 135px);
}

.about-story-head .eyebrow {
  margin-bottom: 28px;

  color: var(--muted);
}

.about-story-grid {
  display: grid;

  grid-template-columns: 1.28fr .72fr;

  gap: clamp(24px, 4vw, 62px);

  align-items: end;
}

.about-story-grid figure {
  margin: 0;
}

.about-story-main img {
  aspect-ratio: 3 / 2;

  object-fit: cover;
}

.about-story-side {
  margin-bottom: clamp(40px, 7vw, 105px) !important;
}

.about-story-side img {
  aspect-ratio: 4 / 5;

  object-fit: cover;
}


/* Services */

.about-services {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper-2);
}

.about-services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);
}

.about-service {
  min-height: 360px;

  padding: 28px 32px 28px 0;

  border-right: 1px solid var(--line);

  display: flex;
  flex-direction: column;
}

.about-service + .about-service {
  padding-left: 32px;
}

.about-service:last-child {
  border-right: 0;
}

.about-service-number {
  color: var(--muted);

  font-size: 10px;

  letter-spacing: .12em;
}

.about-service h3 {
  margin: 115px 0 16px;

  font-size: clamp(32px, 3.2vw, 48px);

  letter-spacing: -.045em;
  font-weight: 500;
}

.about-service .text-link {
  margin-top: auto;
}

.about-service p {
  margin: 0 0 28px;

  color: #4a4742;

  font-size: 14px;
  line-height: 1.68;
}

.about-page .nav .brand,
.about-page .nav .nav-links a,
.about-page .nav .nav-cta,
.about-page .nav .menu-button {
  color: var(--ink);
}


/* ========================================
   ABOUT TABLET
======================================== */

@media (max-width: 950px) {

  .about-page-hero-grid,
  .about-philosophy-grid,
  .about-approach-head,
  .about-story-head {
    grid-template-columns: 1fr;
  }

  .about-page-hero-image-wrap {
    width: min(67vw, 470px);

    margin-left: auto;
  }

  .about-philosophy-copy,
  .about-approach-head .section-copy,
  .about-story-head .section-copy {
    width: min(76vw, 650px);

    margin-left: auto;
  }

}


/* ========================================
   ABOUT MOBILE
======================================== */

@media (max-width: 640px) {

  .about-page-hero {
    padding-top: 110px;
    padding-bottom: 100px;
  }

  .about-page-hero-grid {
    gap: 55px;
  }

  .about-page-hero-copy {
    padding-bottom: 0;
  }

  .about-page-hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .about-page-hero-image-wrap {
    width: 78vw;
  }

  .about-philosophy-copy,
  .about-approach-head .section-copy,
  .about-story-head .section-copy {
    width: 100%;

    margin-left: 0;
  }

  .about-approach-grid,
  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-approach-item,
  .about-approach-item + .about-approach-item,
  .about-service,
  .about-service + .about-service {
    min-height: 270px;

    padding: 25px 0;

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-approach-item:last-child,
  .about-service:last-child {
    border-bottom: 0;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-side {
    width: 70%;

    margin:
      20px
      0
      0
      auto !important;
  }

}

/* ========================================
   CONTACT PAGE
======================================== */


/* ========================================
   HERO
======================================== */

.contact-page-hero {
  padding:
    clamp(160px, 16vw, 230px)
    0
    clamp(95px, 11vw, 155px);

  background: var(--dark);
  color: #f7f5ef;
}

.contact-page-hero-grid {
  display: grid;

  grid-template-columns: 1.18fr .62fr;

  gap: clamp(60px, 10vw, 155px);

  align-items: end;
}

.contact-page-hero .eyebrow {
  margin-bottom: 28px;

  color: rgba(255, 255, 255, .55);
}

.contact-page-hero h1 {
  max-width: 950px;

  font-size: clamp(62px, 8.5vw, 126px);
}

.contact-page-hero-copy {
  padding-bottom: 8px;
}

.contact-page-hero-copy p {
  max-width: 520px;

  margin: 0 0 30px;

  color: rgba(255, 255, 255, .72);

  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.contact-page-hero .scroll-link {
  font-size: 12px;
}


/* ========================================
   FORM SECTION
======================================== */

.contact-form-section {
  padding: clamp(110px, 13vw, 195px) 0;

  background: var(--paper);
}

.contact-form-layout {
  display: grid;

  grid-template-columns: .72fr 1.28fr;

  gap: clamp(65px, 10vw, 160px);

  align-items: start;
}

.contact-form-intro {
  position: sticky;

  top: 125px;
}

.contact-form-intro > .eyebrow {
  margin-bottom: 28px;

  color: var(--muted);
}

.contact-form-intro .section-copy {
  max-width: 480px;

  margin-top: 35px;
}

.contact-form-note {
  margin-top: 42px;

  padding-top: 18px;

  border-top: 1px solid var(--line);

  display: flex;
  justify-content: space-between;

  color: var(--muted);

  font-size: 10px;

  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-form-note strong {
  color: var(--accent);

  font-size: 13px;
  font-weight: 500;
}


/* ========================================
   FORM
======================================== */

.contact-form {
  position: relative;
}


/* ========================================
   FIELDS
======================================== */

.contact-field {
  position: relative;

  padding: 0 0 24px;
}

.contact-field + .contact-field {
  margin-top: 4px;
}

.contact-field label {
  display: flex;
  align-items: center;

  gap: 5px;

  margin-bottom: 10px;

  color: var(--muted);

  font-size: 10px;
  font-weight: 500;

  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-field label span {
  color: var(--accent);
}


/* ========================================
   INPUTS
======================================== */

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;

  margin: 0;

  border: 1px solid #d8d4cd;
  border-radius: 5px;

  outline: 0;

  background: #fff;
  color: var(--ink);

  font-family: "Manrope", Arial, sans-serif;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;

  letter-spacing: -.01em;

  transition:
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.contact-field input,
.contact-field select {
  min-height: 58px;

  padding: 0 18px;
}

.contact-field textarea {
  min-height: 210px;

  padding: 17px 18px;

  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #aaa69f;

  opacity: 1;
}


/* ========================================
   FOCUS
======================================== */

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: var(--ink);

  background: #fff;

  box-shadow:
    0 0 0 3px rgba(23, 23, 23, .045);
}


/* ========================================
   SELECT
======================================== */

.contact-select {
  position: relative;
}

.contact-select::after {
  content: "⌄";

  position: absolute;

  top: 50%;
  right: 18px;

  transform: translateY(-58%);

  color: var(--muted);

  font-size: 20px;
  line-height: 1;

  pointer-events: none;
}

.contact-field select {
  padding-right: 52px;

  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;
}

.contact-field select:required:invalid {
  color: #99958f;
}

.contact-field select option {
  color: var(--ink);
}


/* ========================================
   HINTS
======================================== */

.contact-field-hint {
  display: block;

  margin-top: 7px;

  color: #918d87;

  font-size: 11px;
  line-height: 1.5;
}


/* ========================================
   DATE + PHONE ROW
======================================== */

.contact-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(18px, 3vw, 32px);
}

.contact-form-row .contact-field {
  margin-top: 0;
}


/* ========================================
   MESSAGE
======================================== */

.contact-field-message {
  margin-top: 4px;
}


/* ========================================
   ERROR STATES
======================================== */

.contact-field-error {
  display: none;

  margin-top: 8px;

  color: #9b3b35;

  font-size: 12px;
  line-height: 1.5;
}

.contact-field.has-error .contact-field-error {
  display: block;
}

.contact-field.has-error input,
.contact-field.has-error textarea,
.contact-field.has-error select {
  border-color: #a74c45;

  background: #fdf8f7;

  color: var(--ink);

  box-shadow:
    0 0 0 3px rgba(167, 76, 69, .055);
}

.contact-field.has-error input:focus,
.contact-field.has-error textarea:focus,
.contact-field.has-error select:focus {
  border-color: #923d37;

  box-shadow:
    0 0 0 3px rgba(167, 76, 69, .08);
}


/* ========================================
   PRIVACY
======================================== */

.contact-privacy {
  max-width: 670px;

  margin: 6px 0 0;

  color: var(--muted);

  font-size: 11px;
  line-height: 1.7;
}

.contact-privacy a {
  color: var(--ink);

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}


/* ========================================
   FORM STATUS
======================================== */

.contact-form-status {
  display: none;

  margin-top: 24px;

  padding: 16px 18px;

  border: 1px solid var(--line);
  border-radius: 4px;

  font-size: 13px;
  line-height: 1.6;
}

.contact-form-status.is-visible {
  display: block;
}

.contact-form-status.is-success {
  border-color: #aeb9a7;

  background: #f0f3ed;
  color: #3e5238;
}

.contact-form-status.is-error {
  border-color: #c99b96;

  background: #f7efee;
  color: #7e302a;
}


/* ========================================
   SUBMIT BUTTON
======================================== */

.contact-submit {
  min-width: 235px;

  margin-top: 30px;

  padding: 17px 22px 17px 24px;

  border: 1px solid var(--ink);
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 42px;

  background: var(--ink);
  color: #fff;

  cursor: pointer;

  font-family: "Manrope", Arial, sans-serif;

  font-size: 14px;
  font-weight: 500;

  letter-spacing: -.01em;

  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    opacity .25s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);

  background: transparent;
  color: var(--ink);
}

.contact-submit:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.contact-submit:disabled {
  opacity: .45;

  transform: none;

  cursor: wait;
}


/* ========================================
   HONEYPOT
======================================== */

.contact-honeypot {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;

  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;

  white-space: nowrap !important;
}


/* ========================================
   NEXT STEPS
======================================== */

.contact-next {
  padding: clamp(110px, 13vw, 190px) 0;

  background: var(--paper-warm);
}

.contact-next-grid {
  display: grid;

  grid-template-columns: .82fr 1.18fr;

  gap: clamp(60px, 9vw, 145px);

  align-items: start;
}

.contact-next-list {
  border-top: 1px solid rgba(23, 23, 23, .18);
}

.contact-next-list article {
  padding: 28px 0 32px;

  border-bottom: 1px solid rgba(23, 23, 23, .18);

  display: grid;

  grid-template-columns: 60px 1fr;

  gap: 25px;
}

.contact-next-list article > span {
  padding-top: 5px;

  color: var(--muted);

  font-size: 10px;

  letter-spacing: .12em;
}

.contact-next-list h3 {
  margin: 0 0 11px;

  font-size: clamp(22px, 2vw, 29px);

  letter-spacing: -.035em;
  font-weight: 500;
}

.contact-next-list p {
  max-width: 610px;

  margin: 0;

  color: #4a4742;

  font-size: 14px;
  line-height: 1.7;
}


/* ========================================
   CONTACT TABLET
======================================== */

@media (max-width: 950px) {

  .contact-page-hero-grid,
  .contact-form-layout,
  .contact-next-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-hero-copy {
    width: min(75vw, 570px);

    margin-left: auto;
  }

  .contact-form-intro {
    position: static;
  }

  .contact-form-intro .section-copy {
    width: min(75vw, 570px);

    margin-left: auto;
  }

  .contact-form-wrap,
  .contact-next-list {
    width: min(82vw, 760px);

    margin-left: auto;
  }

}


/* ========================================
   CONTACT MOBILE
======================================== */

@media (max-width: 640px) {

  .contact-page-hero {
    padding-top: 125px;
    padding-bottom: 85px;
  }

  .contact-page-hero h1 {
    font-size: clamp(53px, 16.5vw, 74px);
  }

  .contact-page-hero-copy,
  .contact-form-intro .section-copy,
  .contact-form-wrap,
  .contact-next-list {
    width: 100%;

    margin-left: 0;
  }

  .contact-form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .contact-field input,
  .contact-field textarea,
  .contact-field select {
    font-size: 16px;
  }

  .contact-field input,
  .contact-field select {
    min-height: 56px;

    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-field select {
    padding-right: 48px;
  }

  .contact-select::after {
    right: 16px;
  }

  .contact-field textarea {
    min-height: 190px;

    padding: 15px;
  }

  .contact-submit {
    width: 100%;

    min-width: 0;

    padding: 17px 21px;
  }

  .contact-next-list article {
    grid-template-columns: 40px 1fr;

    gap: 18px;
  }

}


/* ========================================
   CONTACT REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {

  .contact-field input,
  .contact-field textarea,
  .contact-field select,
  .contact-submit {
    transition: none;
  }

  .contact-submit:hover {
    transform: none;
  }

}

/* ========================================
   LEGAL PAGES
   Impressum + Datenschutz
======================================== */


/* ========================================
   HERO
======================================== */

.legal-hero {
  padding:
    clamp(155px, 15vw, 220px)
    0
    clamp(80px, 9vw, 125px);

  background: var(--dark);
  color: #f7f5ef;
}

.legal-hero-inner {
  display: grid;

  grid-template-columns: 1fr;
}

.legal-hero .eyebrow {
  margin-bottom: 27px;

  color: rgba(255, 255, 255, .55);
}

.legal-hero h1 {
  max-width: 1050px;

  margin: 0;

  font-size: clamp(68px, 9vw, 132px);
  line-height: .9;

  letter-spacing: -.06em;
  font-weight: 500;
}

.legal-hero-copy {
  max-width: 610px;

  margin:
    clamp(45px, 6vw, 75px)
    0
    0
    auto;

  color: rgba(255, 255, 255, .67);

  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
}


/* ========================================
   CONTENT
======================================== */

.legal-content-section {
  padding: clamp(100px, 12vw, 175px) 0;

  background: var(--paper);
}

.legal-layout {
  display: grid;

  grid-template-columns: .42fr 1.18fr;

  gap: clamp(65px, 10vw, 165px);

  align-items: start;
}


/* ========================================
   SIDEBAR
======================================== */

.legal-sidebar {
  position: relative;
}

.legal-sidebar-inner {
  position: sticky;

  top: 120px;
}

.legal-sidebar .eyebrow {
  margin-bottom: 25px;

  color: var(--muted);
}

.legal-toc {
  border-top: 1px solid var(--line);

  display: grid;
}

.legal-toc a {
  padding: 14px 0;

  border-bottom: 1px solid var(--line);

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.4;

  transition:
    color .2s ease,
    padding-left .2s ease;
}

.legal-toc a::after {
  content: "↘";

  color: #aaa69f;

  font-size: 11px;
}

.legal-toc a:hover {
  padding-left: 5px;

  color: var(--ink);
}


/* ========================================
   MAIN COPY
======================================== */

.legal-copy {
  min-width: 0;

  border-top: 1px solid var(--line);
}


/* ========================================
   SECTIONS
======================================== */

.legal-section {
  scroll-margin-top: 125px;

  padding:
    clamp(48px, 6vw, 80px)
    0
    clamp(58px, 7vw, 95px);

  border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 32px;
}

.legal-section-number {
  margin-bottom: 18px;

  color: var(--muted);

  font-size: 10px;
  font-weight: 500;

  letter-spacing: .13em;
}

.legal-section h2 {
  margin: 0 0 clamp(35px, 5vw, 55px);

  font-family: "Manrope", Arial, sans-serif;

  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;

  letter-spacing: -.045em;
  font-weight: 500;
}


/* ========================================
   BASIC TEXT
======================================== */

.legal-data,
.legal-text {
  max-width: 720px;
}

.legal-data p,
.legal-text p {
  margin: 0;

  color: #46433f;

  font-size: 15px;
  line-height: 1.8;
}

.legal-data p + p,
.legal-text p + p {
  margin-top: 22px;
}

.legal-data strong {
  color: var(--ink);

  font-weight: 500;
}


/* ========================================
   CONTACT LINKS
======================================== */

.legal-contact-links {
  max-width: 720px;

  margin-top: 38px;

  border-top: 1px solid var(--line);
}

.legal-link {
  padding: 16px 0;

  border-bottom: 1px solid var(--line);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  color: var(--ink);

  font-size: 14px;

  transition:
    padding-left .2s ease,
    padding-right .2s ease;
}

.legal-link span {
  color: var(--muted);
}

.legal-link:hover {
  padding-left: 5px;
  padding-right: 5px;
}


/* ========================================
   DEFINITION LIST
======================================== */

.legal-definition-list {
  max-width: 760px;

  margin: 0;

  border-top: 1px solid var(--line);
}

.legal-definition-list > div {
  padding: 18px 0;

  border-bottom: 1px solid var(--line);

  display: grid;

  grid-template-columns: .72fr 1.28fr;

  gap: 35px;
}

.legal-definition-list dt {
  color: var(--muted);

  font-size: 11px;
  line-height: 1.6;

  letter-spacing: .04em;
}

.legal-definition-list dd {
  margin: 0;

  color: var(--ink);

  font-size: 14px;
  line-height: 1.7;
}


/* ========================================
   EXTERNAL LINKS
======================================== */

.legal-external-link {
  max-width: 760px;

  margin-top: 28px;

  padding: 16px 0;

  border-bottom: 1px solid var(--ink);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  color: var(--ink);

  font-size: 13px;

  transition:
    padding-left .2s ease,
    padding-right .2s ease;
}

.legal-external-link span {
  color: var(--muted);
}

.legal-external-link:hover {
  padding-left: 5px;
  padding-right: 5px;
}


/* ========================================
   DATENSCHUTZ READY
======================================== */

/*
 * Diese Klassen benötigen wir vor allem
 * auf der Datenschutzseite.
 */

.legal-text h3 {
  margin:
    clamp(35px, 5vw, 55px)
    0
    14px;

  color: var(--ink);

  font-family: "Manrope", Arial, sans-serif;

  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.25;

  letter-spacing: -.03em;
  font-weight: 500;
}

.legal-text ul {
  margin: 20px 0 0;

  padding-left: 20px;

  color: #46433f;

  font-size: 15px;
  line-height: 1.8;
}

.legal-text li + li {
  margin-top: 6px;
}

.legal-text a {
  color: var(--ink);

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-note {
  max-width: 720px;

  margin-top: 28px;

  padding: 20px 22px;

  border: 1px solid var(--line);
  border-radius: 4px;

  background: var(--paper-2);

  color: #46433f;

  font-size: 13px;
  line-height: 1.7;
}


/* ========================================
   LEGAL CONTACT
======================================== */

.legal-contact {
  padding: clamp(100px, 12vw, 170px) 0;

  background: var(--paper-warm);
}

.legal-contact-inner {
  display: grid;

  grid-template-columns: .3fr 1fr auto;

  gap: clamp(35px, 6vw, 90px);

  align-items: end;
}

.legal-contact .eyebrow {
  padding-bottom: 9px;

  color: var(--muted);
}

.legal-contact .display {
  margin: 0;
}

.legal-contact .cta-button {
  margin-bottom: 5px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 950px) {

  .legal-layout {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .legal-sidebar-inner {
    position: static;
  }

  .legal-toc {
    grid-template-columns: repeat(2, 1fr);

    border-left: 1px solid var(--line);
  }

  .legal-toc a {
    padding: 14px;

    border-right: 1px solid var(--line);
  }

  .legal-toc a:hover {
    padding-left: 14px;
  }

  .legal-copy {
    width: min(82vw, 780px);

    margin-left: auto;
  }

  .legal-contact-inner {
    grid-template-columns: 1fr 1fr;

    align-items: end;
  }

  .legal-contact .eyebrow {
    grid-column: 1 / -1;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 640px) {

  .legal-hero {
    padding-top: 125px;
    padding-bottom: 80px;
  }

  .legal-hero h1 {
    font-size: clamp(58px, 18vw, 80px);
  }

  .legal-hero-copy {
    width: 86%;

    margin-top: 42px;
  }

  .legal-content-section {
    padding-top: 75px;
    padding-bottom: 100px;
  }

  .legal-layout {
    gap: 45px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-copy {
    width: 100%;

    margin-left: 0;
  }

  .legal-section {
    scroll-margin-top: 90px;

    padding-top: 48px;
    padding-bottom: 60px;
  }

  .legal-section:first-child {
    padding-top: 28px;
  }

  .legal-section h2 {
    margin-bottom: 34px;
  }

  .legal-definition-list > div {
    grid-template-columns: 1fr;

    gap: 5px;
  }

  .legal-definition-list dt {
    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: .09em;
  }

  .legal-data p,
  .legal-text p,
  .legal-text ul {
    font-size: 14px;
  }

  .legal-contact-inner {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .legal-contact .eyebrow {
    grid-column: auto;
  }

  .legal-contact .cta-button {
    width: fit-content;
  }

}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {

  .legal-toc a,
  .legal-link,
  .legal-external-link {
    transition: none;
  }

}

/* ========================================
   CLIENT AREA
======================================== */

.client-page {
  min-height: 100vh;
  background: var(--paper);
}


/* ========================================
   LOGIN LAYOUT
======================================== */

.client-login {
  min-height: 100svh;

  display: grid;
  grid-template-columns: 1.02fr .98fr;
}


/* ========================================
   BRAND SIDE
======================================== */

.client-login-brand {
  min-height: 100svh;

  padding:
    clamp(32px, 3.5vw, 58px)
    clamp(32px, 5vw, 82px);

  display: flex;
  flex-direction: column;

  background: var(--dark);
  color: #f7f5ef;
}

.client-brand {
  width: fit-content;

  color: #f7f5ef;

  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.035em;
}

.client-login-intro {
  max-width: 660px;

  margin: auto 0;
  padding: 80px 0;
}

.client-login-intro .eyebrow {
  margin-bottom: 27px;

  color: rgba(255, 255, 255, .5);
}

.client-login-intro h1 {
  margin: 0;

  font-family: "Manrope", Arial, sans-serif;

  font-size: clamp(60px, 6.7vw, 112px);
  line-height: .89;

  letter-spacing: -.065em;
  font-weight: 500;
}

.client-login-intro h1 em {
  font-family: "Instrument Serif", Georgia, serif;

  font-weight: 400;
}

.client-login-intro p {
  max-width: 470px;

  margin: clamp(38px, 5vw, 65px) 0 0;

  color: rgba(255, 255, 255, .62);

  font-size: 15px;
  line-height: 1.75;
}

.client-login-meta {
  color: rgba(255, 255, 255, .38);

  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}


/* ========================================
   LOGIN PANEL
======================================== */

.client-login-panel {
  min-height: 100svh;

  padding:
    clamp(32px, 3.5vw, 58px)
    clamp(38px, 6vw, 100px);

  display: flex;
  flex-direction: column;

  background: var(--paper);
}

.client-login-top {
  display: flex;
  justify-content: flex-end;
}

.client-back-link {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  color: var(--muted);

  font-size: 12px;

  transition: color .2s ease;
}

.client-back-link:hover {
  color: var(--ink);
}


/* ========================================
   FORM WRAP
======================================== */

.client-form-wrap {
  width: min(100%, 520px);

  margin: auto;
  padding: 80px 0;
}

.client-form-heading {
  margin-bottom: clamp(40px, 5vw, 58px);
}

.client-form-heading .eyebrow {
  margin-bottom: 18px;

  color: var(--muted);
}

.client-form-heading h2 {
  margin: 0;

  color: var(--ink);

  font-family: "Manrope", Arial, sans-serif;

  font-size: clamp(42px, 4.5vw, 64px);
  line-height: .98;

  letter-spacing: -.055em;
  font-weight: 500;
}

.client-form-heading p {
  max-width: 420px;

  margin: 23px 0 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}


/* ========================================
   FORM
======================================== */

.client-form {
  width: 100%;
}

.client-field + .client-field {
  margin-top: 22px;
}

.client-field label {
  display: block;

  margin-bottom: 10px;

  color: var(--muted);

  font-size: 10px;
  font-weight: 500;

  letter-spacing: .12em;
  text-transform: uppercase;
}

.client-field input {
  width: 100%;
  height: 60px;

  padding: 0 18px;

  border: 1px solid #d8d4cd;
  border-radius: 5px;

  outline: 0;

  background: #fff;
  color: var(--ink);

  font-family: "Manrope", Arial, sans-serif;

  font-size: 16px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.client-field input:focus {
  border-color: var(--ink);

  box-shadow:
    0 0 0 3px rgba(23, 23, 23, .045);
}


/* ========================================
   SUBMIT
======================================== */

.client-submit {
  width: 100%;

  margin-top: 32px;
  padding: 17px 20px 17px 23px;

  border: 1px solid var(--ink);
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--ink);
  color: #fff;

  cursor: pointer;

  font-family: "Manrope", Arial, sans-serif;

  font-size: 14px;
  font-weight: 500;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.client-submit:hover {
  transform: translateY(-2px);

  background: transparent;
  color: var(--ink);
}

.client-submit:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}


/* ========================================
   HELP
======================================== */

.client-help {
  margin-top: 36px;
  padding-top: 24px;

  border-top: 1px solid var(--line);
}

.client-help p {
  margin: 0 0 7px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.6;
}

.client-help a {
  color: var(--ink);

  font-size: 12px;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}


/* ========================================
   LEGAL
======================================== */

.client-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  color: var(--muted);

  font-size: 10px;
  line-height: 1.5;
}

.client-legal a {
  color: inherit;

  transition: color .2s ease;
}

.client-legal a:hover {
  color: var(--ink);
}

.client-form-error,
.client-form-success {
  margin-bottom: 26px;
  padding: 14px 16px;

  border: 1px solid var(--line);
  border-radius: 4px;

  font-size: 12px;
  line-height: 1.6;
}

.client-form-error {
  background: #f3ece9;
}

.client-form-success {
  background: #edf0e9;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

  .client-login {
    grid-template-columns: 1fr;
  }

  .client-login-brand {
    min-height: auto;

    padding-bottom: 70px;
  }

  .client-login-intro {
    margin: 100px 0 60px;
    padding: 0;
  }

  .client-login-intro h1 {
    max-width: 720px;

    font-size: clamp(64px, 11vw, 100px);
  }

  .client-login-panel {
    min-height: auto;

    padding-top: 35px;
    padding-bottom: 35px;
  }

  .client-form-wrap {
    width: min(82vw, 560px);

    padding: 90px 0;
  }

}



/* ========================================
   MOBILE
======================================== */

@media (max-width: 640px) {

  .client-login-brand {
    min-height: 56svh;

    padding: 26px 22px 42px;
  }

  .client-brand {
    font-size: 15px;
  }

  .client-login-intro {
    margin: auto 0;

    padding: 65px 0 55px;
  }

  .client-login-intro h1 {
    font-size: clamp(55px, 17vw, 76px);
  }

  .client-login-intro p {
    width: 88%;

    margin-top: 32px;

    font-size: 14px;
  }

  .client-login-panel {
    padding: 25px 22px 28px;
  }

  .client-form-wrap {
    width: 100%;

    padding: 75px 0 85px;
  }

  .client-form-heading h2 {
    font-size: 44px;
  }

  .client-field input {
    height: 58px;
  }

  .client-legal {
    align-items: flex-start;
    flex-direction: column;

    gap: 10px;
  }

}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {

  .client-back-link,
  .client-field input,
  .client-submit,
  .client-legal a {
    transition: none;
  }

}

/* ========================================
   404 PAGE
======================================== */

.error-hero {
  min-height: 78svh;

  padding:
    clamp(175px, 17vw, 245px)
    0
    clamp(105px, 11vw, 160px);

  display: flex;
  align-items: center;

  background: var(--dark);
  color: #f7f5ef;
}


.error-hero-grid {
  display: grid;

  grid-template-columns: .72fr 1fr;

  gap: clamp(60px, 10vw, 160px);

  align-items: center;
}


.error-code {
  font-family: "Instrument Serif", Georgia, serif;

  font-size: clamp(150px, 20vw, 300px);
  line-height: .7;
  letter-spacing: -.07em;

  opacity: .14;
}


.error-content {
  max-width: 720px;
}


.error-content .eyebrow {
  margin-bottom: 26px;

  opacity: .65;
}


.error-content h1 {
  margin: 0;
}


.error-content > p {
  max-width: 540px;

  margin: 38px 0 0;

  color: rgba(247, 245, 239, .68);

  font-size: 14px;
  line-height: 1.75;
}


.error-actions {
  margin-top: 42px;

  display: flex;
  align-items: center;

  gap: 30px;
}


.error-text-link {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  color: rgba(247, 245, 239, .82);

  font-size: 12px;

  transition:
    color .25s ease,
    gap .25s ease;
}


.error-text-link:hover {
  gap: 17px;

  color: #fff;
}


@media (max-width: 640px) {

  .error-hero {
    min-height: 82svh;

    padding-top: 140px;
    padding-bottom: 90px;
  }


  .error-hero-grid {
    grid-template-columns: 1fr;

    gap: 54px;
  }


  .error-code {
    font-size: clamp(125px, 42vw, 175px);
  }


  .error-content h1 {
    font-size: clamp(47px, 14vw, 64px);
  }


  .error-content > p {
    margin-top: 30px;
  }


  .error-actions {
    margin-top: 36px;

    flex-direction: column;
    align-items: stretch;

    gap: 24px;
  }


  .error-text-link {
    justify-content: space-between;
  }

}

/* ========================================
   CLIENT AREA ADMIN
======================================== */

.client-admin {
  min-height: 100svh;

  padding:
    clamp(28px, 4vw, 58px)
    var(--pad)
    clamp(80px, 10vw, 150px);

  background: var(--paper);
}

.client-admin-shell {
  width: 100%;
  max-width: var(--max);

  margin: 0 auto;
}

.client-admin-top {
  padding-bottom: 28px;

  border-bottom: 1px solid var(--line);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.client-admin-brand {
  color: var(--ink);

  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.035em;
}

.client-admin-user {
  display: flex;
  align-items: center;

  gap: 22px;

  color: var(--muted);

  font-size: 11px;
}

.client-admin-user a {
  color: var(--ink);

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}


/* Head */

.client-admin-head {
  padding:
    clamp(75px, 10vw, 145px)
    0
    clamp(65px, 8vw, 110px);

  display: grid;
  grid-template-columns: 1.35fr .65fr;

  gap: clamp(50px, 8vw, 130px);

  align-items: end;
}

.client-admin-head .eyebrow {
  margin-bottom: 24px;

  color: var(--muted);
}

.client-admin-head h1 {
  max-width: 760px;

  margin: 0;

  color: var(--ink);

  font-family: "Manrope", Arial, sans-serif;

  font-size: clamp(72px, 9vw, 140px);
  line-height: .83;

  letter-spacing: -.07em;
  font-weight: 500;
}

.client-admin-head h1 em {
  font-family: "Instrument Serif", Georgia, serif;

  font-weight: 400;
}

.client-admin-head p {
  max-width: 430px;

  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.75;
}


/* Messages */

.client-form-error,
.client-form-success {
  margin-bottom: 26px;
  padding: 14px 16px;

  border: 1px solid var(--line);
  border-radius: 4px;

  font-size: 12px;
  line-height: 1.6;
}

.client-form-error {
  background: #f3ece9;
}

.client-form-success {
  background: #edf0e9;
}


/* Create gallery */

.client-admin-create {
  margin-bottom: clamp(80px, 10vw, 140px);

  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.client-admin-create summary {
  padding: 25px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  cursor: pointer;

  list-style: none;

  color: var(--ink);

  font-size: 16px;
  font-weight: 500;
}

.client-admin-create summary::-webkit-details-marker {
  display: none;
}

.client-admin-create summary span:last-child {
  font-size: 25px;
  font-weight: 300;

  transition: transform .25s ease;
}

.client-admin-create[open]
summary span:last-child {
  transform: rotate(45deg);
}

.client-admin-form {
  padding:
    20px
    0
    42px;
}

.client-admin-form-grid {
  display: grid;
  grid-template-columns:
    1.2fr
    1fr
    1fr;

  gap: 22px;
}

.client-admin-form-grid
.client-field + .client-field {
  margin-top: 0;
}

.client-admin-submit {
  width: min(100%, 320px);

  margin-top: 30px;
}


/* List */

.client-admin-list-head {
  padding-bottom: 18px;

  border-bottom: 1px solid var(--line);

  display: flex;
  justify-content: space-between;

  gap: 30px;

  color: var(--muted);

  font-size: 11px;
}

.client-admin-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;

  margin-top: 28px;
}

.client-admin-card {
  min-width: 0;

  padding:
    clamp(25px, 3vw, 38px);

  border: 1px solid var(--line);

  background: var(--paper-2);
}

.client-admin-card-top {
  display: flex;
  justify-content: space-between;

  gap: 20px;
}

.client-admin-card-top .eyebrow {
  color: var(--muted);
}

.client-admin-count {
  color: var(--muted);

  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.client-admin-card h2 {
  margin:
    clamp(45px, 5vw, 75px)
    0
    35px;

  color: var(--ink);

  font-family: "Manrope", Arial, sans-serif;

  font-size: clamp(31px, 3vw, 48px);
  line-height: 1;

  letter-spacing: -.055em;
  font-weight: 500;

  overflow-wrap: anywhere;
}

.client-admin-card-meta {
  padding-top: 20px;

  border-top: 1px solid var(--line);

  display: grid;

  gap: 16px;
}

.client-admin-card-meta > div {
  display: flex;
  justify-content: space-between;

  gap: 25px;
}

.client-admin-card-meta span {
  color: var(--muted);

  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.client-admin-card-meta strong {
  min-width: 0;

  color: var(--ink);

  font-size: 11px;
  font-weight: 500;

  text-align: right;

  overflow-wrap: anywhere;
}

.client-admin-empty {
  padding: clamp(70px, 10vw, 130px) 0;

  border-bottom: 1px solid var(--line);
}

.client-admin-empty h2 {
  margin: 0 0 12px;

  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.05em;

  font-weight: 500;
}

.client-admin-empty p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
}


/* Tablet */

@media (max-width: 900px) {

  .client-admin-head {
    grid-template-columns: 1fr;
  }

  .client-admin-head p {
    max-width: 560px;
  }

  .client-admin-form-grid {
    grid-template-columns: 1fr;
  }

  .client-admin-form-grid
  .client-field + .client-field {
    margin-top: 0;
  }

}


/* Mobile */

@media (max-width: 640px) {

  .client-admin {
    padding-top: 25px;
  }

  .client-admin-user > span {
    display: none;
  }

  .client-admin-head {
    padding-top: 80px;
    padding-bottom: 65px;
  }

  .client-admin-head h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .client-admin-grid {
    grid-template-columns: 1fr;
  }

  .client-admin-card-meta > div {
    align-items: flex-start;
  }

  .client-admin-submit {
    width: 100%;
  }

}



/* ========================================
   GLOBAL MOBILE IMAGE LAYOUT
   Contentbilder auf Smartphones
======================================== */

@media (max-width: 640px) {

  /* ----------------------------------------
     Alle bewusst verkleinerten Bildbereiche
     auf volle Containerbreite setzen
  ----------------------------------------- */

  .intro-image-wrap,

  .wedding-intro-image-wrap,
  .business-intro-image-wrap,
  .event-intro-image-wrap,

  .wedding-side,

  .wedding-gallery-column-a .wedding-gallery-portrait,
  .wedding-gallery-column-b .wedding-gallery-portrait,

  .business-section .business-gallery figure:nth-child(2),
  .business-work-side img:first-child,
  .business-gallery-portrait,

  .about-photo-wrap,

  .portfolio-wedding-portrait,
  .portfolio-wedding-wide,
  .portfolio-wedding-full,

  .event-editorial-main,
  .event-editorial-wide,
  .event-editorial-portrait {
    width: 100%;
    max-width: none;

    margin-left: 0;
    margin-right: 0;
  }


  /* ----------------------------------------
     Editorial Versatz auf Mobile entfernen
  ----------------------------------------- */

  .wedding-gallery-column-a .wedding-gallery-portrait,
  .wedding-gallery-column-b .wedding-gallery-portrait,

  .business-gallery-portrait,

  .portfolio-wedding-portrait,

  .event-editorial-portrait {
    margin-top: 0;
  }


  /* ----------------------------------------
     Lightbox Wrapper immer volle Breite
  ----------------------------------------- */

  .lightbox-trigger {
    width: 100%;
    max-width: none;
  }


  .lightbox-trigger img {
    width: 100%;
    max-width: none;
  }


  /* ----------------------------------------
     Event Galerie
  ----------------------------------------- */

  .event-editorial-grid {
    grid-template-columns: 1fr;

    gap: 24px;
  }


  .event-editorial-main,
  .event-editorial-wide,
  .event-editorial-portrait {
    grid-column: auto;

    width: 100%;

    margin: 0;
  }


  .event-editorial-main img,
  .event-editorial-wide img {
    aspect-ratio: 3 / 2;
  }


  .event-editorial-portrait img {
    aspect-ratio: 4 / 5;
  }


  /* ----------------------------------------
     Business Galerien
  ----------------------------------------- */

  .business-work-grid,
  .business-gallery-grid {
    grid-template-columns: 1fr;
  }


  .business-work-side {
    padding-top: 0;
  }


  .business-work-side img,
  .business-gallery-grid img {
    width: 100%;
    max-width: none;
  }


  /* ----------------------------------------
     Portfolio Hochzeit
  ----------------------------------------- */

  .portfolio-wedding-grid {
    grid-template-columns: 1fr;
  }


  .portfolio-wedding-main,
  .portfolio-wedding-wide,
  .portfolio-wedding-portrait,
  .portfolio-wedding-full {
    grid-column: auto;

    width: 100%;

    margin-left: 0;
    margin-right: 0;
  }


  /* ----------------------------------------
     Wedding Editorial Gallery
  ----------------------------------------- */

  .wedding-editorial-gallery {
    grid-template-columns: 1fr;
  }


  .wedding-gallery-column-a,
  .wedding-gallery-column-b {
    width: 100%;
  }


  .wedding-gallery-column-a img,
  .wedding-gallery-column-b img {
    width: 100%;
    max-width: none;
  }

  .event-reportage-head {
  margin-bottom: 42px;
}

.wedding-hero h1 {
  max-width: 100%;

  font-size: clamp(38px, 10.3vw, 49px);
  letter-spacing: -.055em;
}

.event-reportage-feature {
  margin-bottom: 48px;
}

.project.split .project-media:first-child {
  width: 100%;
}

.about-section .about-copy .display {
  max-width: 100%;
  font-size: clamp(38px, 10vw, 48px);
  letter-spacing: -.055em;
}

}
