@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/cormorant-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/cormorant-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --c-orange: #fd7117;
  --c-pink-soft: #ffbec2;
  --c-pink: #ff878c;
  --c-wine: #c4515a;

  /* Farb-Tokens uebernommen von jessicafraas.com */
  --bg: #f3ede1;
  --bg-soft: #ebe4d6;
  --ink: #1a1814;
  --ink-2: #4a443b;
  --ink-soft: #6c645a;
  --line: rgba(26, 24, 20, 0.14);
  --line-strong: rgba(26, 24, 20, 0.28);
  --paper: #ffffff;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "cv11", "ss01";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--c-orange);
}

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

/* Skip-Link (nur sichtbar bei Tastatur-Fokus) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
  color: #fff;
}

/* Klares Focus-Outline fuer Tastatur-Navigation */
:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
  border-radius: 2px;
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
}

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

.container--narrow {
  max-width: 580px;
}

.container--wide {
  max-width: 1200px;
}

/* ============================================== ACRYL-BG + CARDS */

body {
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/ww-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
body > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  body::before {
    background-size: 100% auto;
  }
}

.services__tile h3 {
  transition: color 0.3s ease;
}
.services__tile:hover h3 {
  color: var(--c-orange);
}

@media (prefers-reduced-motion: reduce) {
  .services__tile,
  .services__tile:hover {
    transform: none;
    transition: none;
  }
}

/* Featured-Tile: Veranstaltungsformate -- spannt volle Breite, kein Hover-Lift,
   Inhalt sind Format-Chips statt eines klassischen Body-Texts. */
.services__tile--featured {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.62);
  border-style: dashed;
  border-color: rgba(26, 24, 20, 0.2);
}
.services__tile--featured:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.78);
}
.services__tile--featured:hover h3 {
  color: var(--ink);
}

.services__featured-lede {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.format-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.format-tags li {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  line-height: 1.2;
}
.format-tags li:last-child {
  font-style: italic;
  color: var(--ink-soft);
  background: transparent;
  border-style: dashed;
}

/* ---------------------------------------------------------- TOP NAV */

nav.top {
  position: relative;
  z-index: 10;
  padding: 36px 0 8px;
}

nav.top .container {
  display: flex;
  justify-content: center;
}

nav.top .brand {
  display: inline-flex;
}

nav.top .brand img {
  width: 240px;
  max-width: 80vw;
  height: auto;
}

/* ---------------------------------------------------------- ONEPAGE */

.page {
  position: relative;
  padding: 48px 0 72px;
}

.blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.page-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 36px;
}

.blob {
  position: absolute;
}
.blob--1 {
  top: 40px;
  left: -140px;
  width: 320px;
  opacity: 0.85;
}
.blob--3 {
  top: 140px;
  right: -160px;
  width: 360px;
  opacity: 0.85;
}
.blob--4 {
  bottom: 18%;
  left: -130px;
  width: 280px;
  opacity: 0.7;
}
.blob--6 {
  bottom: 32px;
  right: -120px;
  width: 320px;
  opacity: 0.8;
}

@media (max-width: 720px) {
  .blob--1 {
    width: 200px;
    top: 24px;
    left: -100px;
  }
  .blob--3 {
    width: 220px;
    top: 90px;
    right: -100px;
  }
  .blob--4 {
    width: 180px;
    bottom: 22%;
    left: -80px;
  }
  .blob--6 {
    width: 200px;
    bottom: 20px;
    right: -80px;
  }
}

.intro {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0 4px;
}

/* ============================================== CONTACT */

.contact {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.contact__intro {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  max-width: 14ch;
}

@media (max-width: 880px) {
  .contact {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .contact {
    margin-top: 32px;
  }
  .contact__title {
    max-width: none;
  }
}

/* ============================================== ABOUT (WortWechsel-Sektion) */

.about {
  position: relative;
  z-index: 2;
  margin: 48px 0 56px;
}

.about__block {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  box-shadow:
    0 1px 0 rgba(26, 24, 20, 0.05),
    0 30px 60px -30px rgba(26, 24, 20, 0.18);
}
.about__media picture,
.about__media img {
  width: 100%;
  height: 100%;
  display: block;
}
.about__media img {
  object-fit: cover;
}

.about__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.about__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about__rule {
  flex: 0 1 56px;
  height: 1px;
  background: var(--line);
}

.about__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--ink);
}

.about__lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.35;
  margin: 0 0 16px;
  max-width: 540px;
  color: var(--ink);
}

.about__body {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 540px;
  color: var(--ink-2);
}

.services {
  margin-top: 56px;
}
.services__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services__tile {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px clamp(20px, 2vw, 32px);
  box-shadow:
    0 1px 0 rgba(26, 24, 20, 0.04),
    0 14px 32px -22px rgba(26, 24, 20, 0.18);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
.services__tile:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(26, 24, 20, 0.22);
  box-shadow:
    0 1px 0 rgba(26, 24, 20, 0.04),
    0 24px 48px -22px rgba(26, 24, 20, 0.28);
}
.services__tile h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  color: var(--ink);
}
.services__tile p {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  color: var(--ink-2);
}

@media (max-width: 880px) {
  .about__block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .services__tile {
    padding: 24px 22px;
  }
}

.direct-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.direct-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
}

.direct-list .ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
}
.direct-list .ico img {
  width: 22px;
  height: 22px;
  display: block;
}

.direct-list .k {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 2px;
}

.direct-list .v {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
}
.direct-list .v + .v {
  margin-top: 4px;
}
.direct-list .v:hover {
  color: var(--c-orange);
}

/* ---------------------------------------------------------- BUTTONS */

.btn {
  appearance: none;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 4px;
  border: 0;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition:
    background 0.15s ease,
    transform 0.08s ease;
  letter-spacing: 0.02em;
}
.btn:hover {
  background: var(--c-orange);
  color: #fff;
}
.btn:active {
  transform: translateY(1px);
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 15px;
}

/* ---------------------------------------------------------- FORM */

form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 6px;
}

label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

label .opt {
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--line-strong);
  border-radius: 0;
  padding: 8px 0 10px;
  width: 100%;
  transition: border-color 0.15s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--c-orange);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--ink);
  width: 18px;
  height: 18px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.form-status {
  font-size: 14px;
  min-height: 1.2em;
  color: var(--c-wine);
  font-weight: 500;
  margin: 0;
}
.form-status.ok {
  color: #1f6f44;
}
.form-status.err {
  color: var(--c-wine);
}

/* ---------------------------------------------------------- LEGAL HEADER + PAGES */

.wordmark {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wordmark .dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-orange);
  display: inline-block;
}

.wordmark .accent {
  color: var(--c-orange);
}

main {
  padding-top: 56px;
}
main.page {
  padding-top: 48px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.back-link:hover {
  color: var(--c-orange);
}

.legal-doc {
  padding-bottom: 80px;
}

.legal-doc h1.page-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: -0.015em;
  line-height: 0.95;
  margin: 0 0 36px;
  color: var(--ink);
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 44px 0 12px;
  color: var(--ink);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-doc h2:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 24px;
}

.legal-doc h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  margin: 24px 0 8px;
  color: var(--ink);
}

.legal-doc p,
.legal-doc li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}

.legal-doc p + p {
  margin-top: 12px;
}

.legal-doc ul {
  padding-left: 22px;
}

.legal-doc .emphasis {
  background: rgba(253, 113, 23, 0.1);
  padding: 14px 16px;
  border-left: 3px solid var(--c-orange);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* ---------------------------------------------------------- FOOTER (slim) */

footer.site {
  background: var(--ink);
  color: #f0e5ce;
  padding: 28px 0;
}

footer.site .bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(240, 229, 206, 0.7);
}

footer.site .bottom a {
  color: rgba(240, 229, 206, 0.85);
  text-decoration: none;
  margin-right: 18px;
}
footer.site .bottom a:last-child {
  margin-right: 0;
}
footer.site .bottom a:hover {
  color: var(--c-orange);
}
