:root {
  --void: #090912;
  --void-soft: #14141f;
  --plasma: #cf2e2e;
  --plasma-dark: #aa2428;
  --plasma-soft: #f7dddd;
  --ghost: #f3f1f6;
  --paper: #ffffff;
  --paper-soft: #fbfafc;
  --graphite: #17171d;
  --muted-dark: rgba(23, 23, 29, 0.68);
  --muted-light: rgba(255, 255, 255, 0.74);
  --line-dark: rgba(23, 23, 29, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 24px 70px rgba(9, 9, 18, 0.12);
  --shadow-card: 0 18px 50px rgba(9, 9, 18, 0.1);
  --shadow-red: 0 20px 50px rgba(207, 46, 46, 0.22);
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-xxl: 2.35rem;
  --content: 1180px;
  --content-wide: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--void);
}

body {
  margin: 0;
  color: var(--ghost);
  background: var(--void);
  font-family: Sora, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #ffffff;
  background: var(--plasma);
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--plasma);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -5rem;
  left: 1rem;
  z-index: 10000;
  padding: 0.8rem 1rem;
  color: #ffffff;
  background: var(--plasma);
  border-radius: 999px;
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

/* Navigation */

.nav-shell {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 1000;
  width: min(94vw, var(--content));
  transform: translateX(-50%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.68rem 0.72rem 0.68rem 1.25rem;
  color: #ffffff;
  background: rgba(9, 9, 18, 0.34);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(24px);
  transition:
    color 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.nav-shell.scrolled .nav,
.nav-shell.menu-open .nav {
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(23, 23, 29, 0.1);
  box-shadow: 0 18px 60px rgba(9, 9, 18, 0.14);
}

.brand {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.78;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-toggle span:not(.sr-only) {
  position: relative;
  width: 1.05rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle span:not(.sr-only)::before,
.menu-toggle span:not(.sr-only)::after {
  position: absolute;
  left: 0;
  width: 1.05rem;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transition:
    top 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.menu-toggle span:not(.sr-only)::before {
  top: -0.38rem;
}

.menu-toggle span:not(.sr-only)::after {
  top: 0.38rem;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only) {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only)::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only)::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  left: 0;
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 23, 29, 0.1);
  border-radius: 1.4rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px);
}

.mobile-menu a {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-weight: 800;
}

.mobile-menu a:hover {
  background: rgba(23, 23, 29, 0.06);
}

/* Buttons */

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

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

.btn span {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(105%);
  transition: transform 0.35s var(--ease);
}

.btn:hover span {
  transform: translateY(0);
}

.btn strong {
  position: relative;
  font: inherit;
}

.btn-red {
  color: #ffffff;
  background: var(--plasma);
  border-color: rgba(207, 46, 46, 0.45);
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  background: var(--plasma-dark);
}

.btn-glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  color: var(--graphite);
  background: #ffffff;
  border-color: rgba(207, 46, 46, 0.26);
}

.btn-outline:hover {
  color: #ffffff;
  background: var(--plasma);
  border-color: var(--plasma);
  box-shadow: var(--shadow-red);
}

.btn-small {
  min-height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.82rem;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("images/trauung.jpg");
  background-image: image-set(
    url("images/trauung-1280.webp") type("image/webp") 1x,
    url("images/trauung-1920.webp") type("image/webp") 2x,
    url("images/trauung.jpg") type("image/jpeg")
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(0.86) contrast(1.06) brightness(0.68);
  transform: scale(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 9, 18, 0.88) 0%, rgba(9, 9, 18, 0.66) 48%, rgba(9, 9, 18, 0.2) 100%),
    linear-gradient(to top, rgba(9, 9, 18, 0.98) 0%, rgba(9, 9, 18, 0.48) 46%, rgba(9, 9, 18, 0.06) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 9rem clamp(1.25rem, 5vw, 4rem) clamp(3.2rem, 8vw, 5.5rem);
}

.hero-copy-block {
  max-width: 940px;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--plasma);
  font-family: "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-title {
  margin: 1rem 0 0;
}

.hero-title span {
  display: block;
  max-width: 980px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-title em {
  display: block;
  margin-top: 0.1rem;
  color: var(--ghost);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(4.2rem, 11vw, 9.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 680px;
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Allgemeine Sektionen */

.light-section,
.gallery-section {
  color: var(--graphite);
  background:
    radial-gradient(circle at 8% 8%, rgba(207, 46, 46, 0.06), transparent 30rem),
    radial-gradient(circle at 92% 0%, rgba(9, 9, 18, 0.05), transparent 28rem),
    var(--ghost);
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.25rem, 5vw, 4rem);
}

.section-head {
  max-width: var(--content);
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
}

.section-head h2 {
  max-width: 880px;
  margin: 0.8rem 0 0;
  color: inherit;
  font-size: clamp(1.95rem, 4vw, 4.25rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-head p:not(.section-label) {
  max-width: 680px;
  margin: 1.1rem 0 0;
  color: var(--muted-dark);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.8;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.split-head > p:not(.section-label) {
  margin-bottom: 0.45rem;
}

.centered {
  text-align: center;
}

.centered h2,
.centered p {
  margin-right: auto;
  margin-left: auto;
}

/* Service Karten */

.service-stage {
  display: grid;
  gap: 1.6rem;
  max-width: 1080px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: clamp(1.35rem, 4vw, 2.8rem);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(207, 46, 46, 0.12);
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

.service-copy h3 {
  max-width: 760px;
  margin: 0.8rem 0 0;
  color: var(--graphite);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.service-copy p:not(.section-label) {
  max-width: 720px;
  margin: 1.1rem 0 0;
  color: var(--muted-dark);
  line-height: 1.8;
}

.service-media {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.service-media picture {
  display: block;
}

.service-media img {
  height: clamp(230px, 34vw, 360px);
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

/* Pakete */

.packages {
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
}

.packages .section-head {
  margin-bottom: clamp(1.7rem, 4vw, 2.8rem);
}

.packages .section-head h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.7vw, 3.85rem);
}

.packages .section-head p:not(.section-label) {
  max-width: 520px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: var(--content-wide);
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  overflow: hidden;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 23, 29, 0.1);
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    border-color 0.32s var(--ease);
}

.pricing-card::before {
  position: absolute;
  top: 0;
  right: 1.6rem;
  left: 1.6rem;
  height: 4px;
  content: "";
  background: var(--plasma);
  border-radius: 0 0 999px 999px;
  opacity: 0.9;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(207, 46, 46, 0.22);
  box-shadow: 0 28px 80px rgba(9, 9, 18, 0.16);
}

.pricing-card .section-label {
  color: var(--plasma);
  font-size: 0.68rem;
}

.pricing-card h3 {
  margin: 1rem 0 0;
  color: var(--graphite);
  font-size: clamp(1.9rem, 2.55vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.pricing-card p:not(.section-label):not(.price) {
  margin: 1rem 0 0;
  color: var(--muted-dark);
  font-size: 0.98rem;
  line-height: 1.75;
}

.price {
  margin: 1rem 0 0;
  color: var(--graphite);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.muted-price {
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
}

.pricing-card ul {
  display: grid;
  gap: 0.72rem;
  margin: 1.5rem 0 1.8rem;
  padding: 0;
  color: rgba(23, 23, 29, 0.76);
  font-size: 0.94rem;
  line-height: 1.45;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 1.45rem;
}

.pricing-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--plasma);
  border-radius: 999px;
}

.pricing-card .btn {
  width: 100%;
  min-height: 3.15rem;
  margin-top: auto;
  font-size: 0.92rem;
}

.featured-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(207, 46, 46, 0.12), transparent 8rem),
    rgba(255, 255, 255, 0.96);
  border-color: rgba(207, 46, 46, 0.28);
  box-shadow: 0 24px 70px rgba(207, 46, 46, 0.13);
}

/* Ablauf */

.dark-band {
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.25rem, 5vw, 4rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(207, 46, 46, 0.14), transparent 28rem),
    var(--void);
}

.dark-band .section-head p:not(.section-label) {
  color: var(--muted-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--content);
  margin: 0 auto;
}

.process-card {
  min-height: 320px;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
}

.process-card span {
  color: var(--plasma);
  font-family: "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
}

.process-card h3 {
  margin: 1.35rem 0 0.9rem;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.process-card p {
  color: var(--muted-light);
  line-height: 1.75;
}

/* Über mich / Regionen */

.about-region .section-head h2 {
  max-width: 850px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--content);
  margin: 0 auto;
}

.region-card,
details {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 34px rgba(9, 9, 18, 0.06);
}

.region-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.region-card p,
details p {
  color: var(--muted-dark);
  line-height: 1.75;
}

/* Galerie */

.gallery-section {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem);
  color: var(--graphite);
  background:
    radial-gradient(circle at 50% 0%, rgba(207, 46, 46, 0.05), transparent 28rem),
    var(--ghost);
}

.gallery-section .section-head {
  max-width: 980px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
}

.gallery-section .section-label {
  margin-bottom: 0.9rem;
}

.gallery-section h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(2.05rem, 4.2vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.gallery-section .section-head p:not(.section-label) {
  max-width: 720px;
  margin: 1.3rem auto 0;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: var(--content);
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: clamp(250px, 27vw, 370px);
  object-fit: cover;
  border-radius: 1.65rem;
  box-shadow: 0 18px 45px rgba(9, 9, 18, 0.12);
}

/* Kontakt */

.contact-section {
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: start;
  max-width: var(--content);
  margin: 0 auto;
}

.contact-form,
.contact-aside {
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 23, 29, 0.1);
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field span,
.privacy-check {
  color: rgba(23, 23, 29, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.95rem 1rem;
  color: var(--graphite);
  background: #ffffff;
  border: 1px solid rgba(23, 23, 29, 0.14);
  border-radius: 1rem;
  box-shadow: 0 10px 28px rgba(9, 9, 18, 0.04);
  font: inherit;
  line-height: 1.45;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--plasma) 50%),
    linear-gradient(135deg, var(--plasma) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-position:
    calc(100% - 1.25rem) 50%,
    calc(100% - 0.9rem) 50%;
  background-size: 0.36rem 0.36rem, 0.36rem 0.36rem;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(207, 46, 46, 0.58);
  outline: none;
  box-shadow: 0 0 0 4px rgba(207, 46, 46, 0.12);
}

.privacy-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  line-height: 1.55;
}

.privacy-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  accent-color: var(--plasma);
}

.privacy-check a {
  color: var(--plasma);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form .btn {
  justify-self: start;
}

.contact-aside {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.contact-aside h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-aside p:not(.section-label) {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.75;
}

.contact-links {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.contact-links a {
  padding: 0.95rem 1rem;
  color: var(--graphite);
  background: rgba(207, 46, 46, 0.07);
  border: 1px solid rgba(207, 46, 46, 0.12);
  border-radius: 1rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.contact-links a:hover {
  color: #ffffff;
  background: var(--plasma);
  border-color: var(--plasma);
}

/* FAQ */

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 920px;
  margin: 0 auto;
}

summary {
  color: var(--graphite);
  font-weight: 800;
  cursor: pointer;
}

/* Footer */

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.55fr) minmax(220px, 0.7fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(207, 46, 46, 0.15), transparent 24rem),
    var(--void);
  border-radius: 3.2rem 3.2rem 0 0;
}

.footer-brand {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.footer p:not(.footer-brand):not(.footer-label) {
  max-width: 520px;
  color: var(--muted-light);
  line-height: 1.8;
}

.footer-label {
  margin: 0 0 1rem;
  color: var(--plasma);
  font-family: "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.72rem;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a {
  transition:
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* Rechtliches */

.legal-page {
  color: var(--graphite);
  background: var(--ghost);
}

.legal-header {
  padding: 1.25rem clamp(1rem, 5vw, 5rem);
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(23, 23, 29, 0.08);
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.legal-main {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.legal-hero,
.legal-content {
  max-width: 960px;
  margin: 0 auto;
}

.legal-hero .hero-title span {
  color: var(--graphite);
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-hero p {
  max-width: 720px;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.legal-content {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.legal-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
}

.legal-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.legal-card h3 {
  margin: 1.6rem 0 0.4rem;
  font-size: 1.05rem;
}

.legal-card p,
.legal-card li,
.legal-card dd {
  color: var(--muted-dark);
  line-height: 1.75;
}

.legal-card dl {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: 0.7rem 1rem;
}

.legal-card dt {
  font-weight: 800;
}

.legal-card dd {
  margin: 0;
}

.legal-note {
  border-left: 4px solid var(--plasma);
}

/* Animation */

.js .reveal-card {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.js .reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-card .btn {
    width: auto;
  }
}

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

  .menu-toggle {
    display: grid;
  }

  .process-grid,
  .region-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .split-head > p:not(.section-label) {
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .nav {
    padding-left: 1rem;
  }

  .brand {
    max-width: 13rem;
    overflow: hidden;
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    padding-top: 7.5rem;
  }

  .hero-title span {
    font-size: clamp(2.7rem, 13vw, 4.35rem);
  }

  .hero-title em {
    font-size: clamp(4rem, 18vw, 6.4rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .light-section,
  .gallery-section,
  .dark-band {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section-head h2,
  .packages .section-head h2 {
    font-size: clamp(1.75rem, 9vw, 2.75rem);
  }

  .section-head p:not(.section-label) {
    font-size: 0.98rem;
  }

  .service-card,
  .pricing-card,
  .process-card,
  .region-card,
  .contact-form,
  .contact-aside,
  details {
    border-radius: 1.35rem;
  }

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

  .contact-form .btn {
    justify-self: stretch;
  }

  .service-copy h3 {
    font-size: clamp(1.85rem, 9.5vw, 2.65rem);
    line-height: 1.05;
  }

  .service-media img {
    height: 260px;
  }

  .pricing-card {
    padding: 1.35rem;
  }

  .pricing-card h3 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }

  .pricing-card .btn {
    width: 100%;
  }

  .gallery-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .gallery-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

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

  .gallery-grid img {
    height: 270px;
    border-radius: 1.25rem;
  }

  .footer {
    grid-template-columns: 1fr;
    border-radius: 2.4rem 2.4rem 0 0;
  }

  .legal-card dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .pricing-card ul {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    padding: 0 1.1rem;
  }

  .title span {
    font-size: clamp(2.45rem, 14vw, 3.7rem);
  }

  .hero-title em {
    font-size: clamp(3.7rem, 20vw, 5.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
