html, body { margin: 0; padding: 0; }

.ps-site {
  --ink:        #10151c;
  --dusk:       #161c26;
  --dusk-mid:   #1c2430;
  --olive:      #4a5238;
  --olive-dim:  #343a27;
  --marine:     #1f3a4d;
  --rust:       #8a4a2b;
  --rust-dim:   #5f3320;
  --gold:       #c9a24a;
  --gold-dim:   #8a7238;
  --sand:       #d9c9a8;
  --sand-pale:  #ebdfc4;
  --stone:      #e0d5bc;
  --mist:       #9aa3ac;
  --fog:        #5b6570;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --serif-sc:   'Cormorant SC', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;

  background: var(--ink);
  color: var(--stone);
  font-family: var(--serif);
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.ps-site * { box-sizing: border-box; }
.ps-site a { color: inherit; }
.ps-site img { max-width: 100%; display: block; }

/* NAV */
.ps-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 2.6rem;
}
.ps-nav::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(16,21,28,0.85) 0%, transparent 100%);
  pointer-events: none;
}
.ps-nav .nav-brand {
  font-family: var(--serif-sc); font-size: 13px; font-weight: 300;
  letter-spacing: 5px; color: var(--gold);
  text-decoration: none; position: relative; z-index: 1;
}
.ps-nav ul {
  list-style: none; display: flex; gap: 2rem;
  position: relative; z-index: 1; margin: 0; padding: 0;
}
.ps-nav ul a {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(224,213,188,0.7); text-decoration: none;
  transition: color 0.3s;
}
.ps-nav ul a:hover { color: var(--gold); }

/* HERO */
.ps-site .hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.hero-image-fallback {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(31,58,77,0.55) 0%, transparent 70%),
    var(--ink);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(138,74,43,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 100% 55% at 50% 0%, rgba(16,21,28,0.9) 0%, transparent 60%),
    linear-gradient(to bottom,
      rgba(16,21,28,0.6) 0%,
      rgba(16,21,28,0.35) 40%,
      rgba(16,21,28,0.6) 70%,
      rgba(16,21,28,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 7rem 2rem 5rem;
}
.hero-eyebrow {
  font-family: var(--sans); font-size: 10px; font-weight: 200;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 2.4rem;
}
.hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(48px, 8.5vw, 96px);
  line-height: 1.05; letter-spacing: 1.5px; color: var(--stone);
  margin: 0;
}
.hero-title-sub {
  display: block;
  font-family: var(--serif-sc); font-weight: 300;
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: 6px; color: var(--gold); margin-top: 1.1rem;
}
.hero-rule {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, rgba(201,162,74,0.55), transparent);
  margin: 2.4rem auto;
}
.hero-slogan {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(17px, 2.4vw, 24px);
  line-height: 1.7; letter-spacing: 0.3px;
  color: rgba(224,213,188,0.88); max-width: 560px; margin: 0;
}
.hero-cta { margin-top: 3rem; }

.btn {
  display: inline-block;
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(201,162,74,0.45);
  padding: 1rem 2.8rem;
  position: relative; overflow: hidden;
  transition: color 0.4s, border-color 0.4s;
  cursor: pointer; background: transparent;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(201,162,74,0.09);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.btn:hover { color: var(--sand-pale); border-color: rgba(201,162,74,0.8); }
.btn:hover::before { transform: scaleX(1); }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint span {
  font-family: var(--sans); font-size: 8px;
  letter-spacing: 4px; color: var(--fog); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--fog), transparent);
}

/* SECTIONS - shared */
.section-marker {
  font-family: var(--sans); font-size: 9px; font-weight: 200;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold-dim); opacity: 0.7; margin-bottom: 1.4rem;
  text-align: center;
}
.section-heading {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(30px, 4.5vw, 46px);
  color: var(--stone); text-align: center;
  margin: 0 0 3rem; letter-spacing: 0.5px;
}
.section-intro {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.8; color: var(--mist);
  max-width: 620px; margin: 0 auto 3.5rem;
  text-align: center;
}

/* ABOUT */
.section-about {
  padding: 9rem 2rem; text-align: center; position: relative;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(31,58,77,0.55) 0%, var(--ink) 80%);
}
.section-about::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 240px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,74,0.35), transparent);
}
.about-text {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.85; letter-spacing: 0.3px;
  color: var(--stone); max-width: 640px; margin: 0 auto;
}
.about-text .accent { color: var(--gold); font-style: normal; }
.about-text p { margin: 0 0 1.4rem; }
.about-text p:last-child { margin-bottom: 0; }

/* GALLERY */
.section-gallery {
  padding: 8rem 2rem; background: var(--dusk);
}
.gallery-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  margin: 0;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.gallery-placeholder {
  aspect-ratio: 1 / 1; width: 100%;
  background:
    linear-gradient(135deg, rgba(74,82,56,0.35) 0%, rgba(31,58,77,0.45) 100%),
    var(--dusk-mid);
  border: 1px solid rgba(201,162,74,0.14);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.4s, transform 0.4s;
  overflow: hidden;
}
.gallery-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-placeholder span {
  font-family: var(--sans); font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--fog);
}
.gallery-item:hover .gallery-placeholder {
  border-color: rgba(201,162,74,0.45);
  transform: translateY(-3px);
}
.gallery-item figcaption {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 14px; color: var(--mist); text-align: center;
}

/* WORKSHOPS */
.section-workshops {
  padding: 9rem 2rem; position: relative;
  background:
    radial-gradient(ellipse 55% 60% at 50% 40%, rgba(138,74,43,0.08) 0%, transparent 70%),
    var(--dusk-mid);
}
.section-workshops::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,74,0.3), transparent);
}
.workshops-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 1px;
  background: rgba(85,96,112,0.14);
  border: 1px solid rgba(85,96,112,0.14);
}
.workshop {
  background: var(--dusk-mid);
  transition: background 0.5s;
}
.workshop:hover { background: rgba(201,162,74,0.04); }
.workshop-content {
  padding: 2.8rem 2.2rem;
}
.workshop.has-image .workshop-content {
  padding-top: 2.2rem;
}
.workshop-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: var(--dusk);
}
.workshop-image {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(45%) sepia(12%) saturate(85%) brightness(0.85) contrast(1.02);
  transition: filter 0.5s, transform 0.6s;
}
.workshop:hover .workshop-image {
  filter: grayscale(20%) sepia(16%) saturate(95%) brightness(0.9) contrast(1.02);
  transform: scale(1.03);
}
.workshop-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(16,21,28,0.05) 0%, rgba(16,21,28,0.55) 100%);
  pointer-events: none;
}
.workshop-num-overlay {
  position: absolute; bottom: 0.9rem; left: 1.1rem; z-index: 1;
  margin: 0; opacity: 0.9;
  text-shadow: 0 2px 10px rgba(16,21,28,0.8);
}
.ai-label {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 1;
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--sand-pale);
  background: rgba(16,21,28,0.55);
  border: 1px solid rgba(201,162,74,0.5);
  padding: 0.35rem 0.6rem;
  backdrop-filter: blur(2px);
}
.workshop-num {
  font-family: var(--serif); font-size: 26px; font-style: italic;
  color: var(--gold-dim); opacity: 0.55;
  display: block; margin-bottom: 1rem;
}
.workshop h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; color: var(--stone);
  margin: 0 0 0.4rem; letter-spacing: 0.5px;
}
.workshop-sub {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.4rem;
}
.workshop-body {
  font-family: var(--serif); font-weight: 300;
  font-size: 16px; line-height: 1.75; color: var(--mist);
  margin: 0 0 1.6rem;
}
.workshop-meta {
  font-family: var(--sans); font-size: 9px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--fog); margin: 0;
}
.workshop-tools {
  margin: 3.5rem auto 0; max-width: 720px; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--mist);
}
.workshop-tools .accent { color: var(--gold); font-style: normal; }

/* BLOG TEASER */
.section-blog {
  padding: 9rem 2rem; position: relative;
  background: var(--ink);
}
.section-blog::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,74,0.3), transparent);
}
.blog-teaser-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 2.4rem;
}
.blog-teaser-image-wrap {
  display: block; aspect-ratio: 16 / 10; overflow: hidden;
  margin-bottom: 1.2rem; background: var(--dusk);
}
.blog-teaser-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%) sepia(8%) saturate(90%) brightness(0.9);
  transition: filter 0.5s, transform 0.6s;
}
.blog-teaser:hover .blog-teaser-image-wrap img {
  filter: grayscale(15%) sepia(12%) saturate(100%) brightness(0.95);
  transform: scale(1.03);
}
.blog-teaser-date {
  font-family: var(--sans); font-size: 9px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin: 0 0 0.6rem;
}
.blog-teaser h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 21px; line-height: 1.3; color: var(--stone);
  margin: 0 0 0.7rem;
}
.blog-teaser h3 a { text-decoration: none; }
.blog-teaser h3 a:hover { color: var(--gold); }
.blog-teaser-excerpt {
  font-family: var(--serif); font-weight: 300;
  font-size: 15px; line-height: 1.7; color: var(--mist);
  margin: 0;
}

/* KONTAKT */
.section-kontakt {
  padding: 9rem 2rem; text-align: center; background: var(--ink);
  position: relative;
}
.section-kontakt::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,74,0.3), transparent);
}
.kontakt-list {
  max-width: 640px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem; text-align: left;
}
.kontakt-list > div {
  border-top: 1px solid rgba(85,96,112,0.2);
  padding-top: 1.2rem;
}
.kontakt-list dt {
  font-family: var(--sans); font-size: 9px; font-weight: 300;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.kontakt-list dd {
  font-family: var(--serif); font-size: 17px; color: var(--stone);
  margin: 0;
}
.kontakt-list dd a { text-decoration: none; }
.kontakt-list dd a:hover { color: var(--gold); }

/* KONTAKTFORMULAR */
.ps-contact-form-wrap {
  max-width: 560px; margin: 3.5rem auto 0; text-align: left;
}
.ps-form-notice {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.5px;
  padding: 0.9rem 1.2rem; margin: 0 0 2rem;
  border: 1px solid rgba(201,162,74,0.3);
  text-align: center;
}
.ps-form-success { color: var(--gold); border-color: rgba(201,162,74,0.5); }
.ps-form-error { color: #c98a6a; border-color: rgba(201,138,106,0.4); }
.ps-form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}
.ps-form-row { margin-bottom: 1.8rem; }
.ps-form-row label {
  display: block;
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
}
.ps-form-row input[type="email"],
.ps-form-row input[type="text"],
.ps-form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(85,96,112,0.35);
  color: var(--stone);
  font-family: var(--serif); font-size: 17px; font-weight: 300;
  padding: 0.6rem 0.1rem;
  transition: border-color 0.3s;
  resize: vertical;
}
.ps-form-row textarea { line-height: 1.7; }
.ps-form-row input::placeholder,
.ps-form-row textarea::placeholder {
  color: var(--fog); opacity: 0.7; font-style: italic;
}
.ps-form-row input:focus,
.ps-form-row textarea:focus {
  outline: none; border-color: rgba(201,162,74,0.75);
}
.ps-contact-form .btn { margin-top: 0.4rem; }

/* BLOG-ARCHIV */
.section-blog-archive {
  max-width: 760px; margin: 0 auto;
  padding: 11rem 2rem 7rem;
}
.section-blog-archive .section-heading { text-align: left; margin-bottom: 3.5rem; }
.blog-archive-list {
  display: flex; flex-direction: column; gap: 3rem;
}
.blog-archive-item {
  display: grid; grid-template-columns: 200px 1fr; gap: 1.8rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(85,96,112,0.16);
}
.blog-archive-item:last-child { border-bottom: none; padding-bottom: 0; }
.blog-archive-image-wrap {
  display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--dusk);
}
.blog-archive-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%) sepia(8%) saturate(90%) brightness(0.9);
}
.blog-archive-content h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; line-height: 1.3; color: var(--stone);
  margin: 0 0 0.8rem;
}
.blog-archive-content h2 a { text-decoration: none; }
.blog-archive-content h2 a:hover { color: var(--gold); }
.blog-read-more {
  display: inline-block; margin-top: 0.9rem;
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.blog-read-more:hover { color: var(--sand-pale); }
.blog-pagination {
  display: flex; justify-content: center; gap: 1.4rem;
  margin-top: 4rem; flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  font-family: var(--sans); font-size: 12px; letter-spacing: 1px;
  color: var(--mist); text-decoration: none;
  padding: 0.4rem 0.8rem; border: 1px solid rgba(85,96,112,0.25);
}
.blog-pagination .page-numbers.current {
  color: var(--gold); border-color: rgba(201,162,74,0.5);
}
.blog-pagination .page-numbers:hover { color: var(--gold); }

/* EINZELNER BLOG-ARTIKEL */
.section-single-post .section-heading { text-align: left; }
.single-post-image-wrap {
  aspect-ratio: 16 / 9; overflow: hidden; margin: 1.6rem 0 2.4rem;
  background: var(--dusk);
}
.single-post-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%) sepia(8%) saturate(95%) brightness(0.92);
}
.single-post-categories {
  margin-top: 2.4rem;
  font-family: var(--sans); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-dim);
}

@media (max-width: 640px) {
  .blog-archive-item { grid-template-columns: 1fr; }
}

/* UNTERSEITEN (Impressum, Datenschutz) */
.section-legal-page {
  max-width: 720px; margin: 0 auto;
  padding: 11rem 2rem 7rem;
}
.legal-page-body {
  font-family: var(--serif); font-weight: 300;
  font-size: 16px; line-height: 1.85; color: var(--mist);
}
.legal-page-body p,
.legal-page-body ul,
.legal-page-body ol {
  margin: 0 0 1.5rem;
}
.legal-page-body ul,
.legal-page-body ol {
  padding-left: 1.4rem;
}
.legal-page-body li { margin-bottom: 0.5rem; }
.legal-page-body h2 {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin: 2.6rem 0 1rem;
}
.legal-page-body h2:first-child { margin-top: 0; }
.legal-page-body h3 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 19px; color: var(--stone);
  margin: 1.8rem 0 0.8rem;
}
.legal-page-body strong {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  display: inline-block; margin-bottom: 0.3rem;
}
.legal-page-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-page-body a:hover { color: var(--sand-pale); }
.legal-page-body table {
  width: 100%; border-collapse: collapse; margin: 0 0 1.5rem;
  font-size: 15px;
}
.legal-page-body table th,
.legal-page-body table td {
  text-align: left; padding: 0.6rem 0.8rem;
  border-bottom: 1px solid rgba(85,96,112,0.2);
}
.legal-page-body table th {
  font-family: var(--sans); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.legal-page-back {
  margin-top: 3rem;
}
.legal-page-back a {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--mist); text-decoration: none;
}
.legal-page-back a:hover { color: var(--gold); }

/* FOOTER */
.ps-footer {
  padding: 3rem 3rem; background: var(--ink);
  border-top: 1px solid rgba(85,96,112,0.14);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand {
  font-family: var(--serif-sc); font-size: 13px; font-weight: 300;
  letter-spacing: 4px; color: var(--gold-dim);
}
.footer-legal-nav {
  display: flex; gap: 1.6rem;
}
.footer-legal-nav a {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--mist); text-decoration: none;
  transition: color 0.3s;
}
.footer-legal-nav a:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--sans); font-size: 9px; letter-spacing: 2px;
  color: var(--fog); opacity: 0.6;
}

/* REVEAL */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* WP admin bar fix */
.admin-bar .ps-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .ps-nav { top: 46px; }
}

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ps-nav { padding: 1rem 1.2rem; flex-wrap: wrap; gap: 0.6rem; }
  .ps-nav ul { gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
  .hero-title { font-size: 44px; }
  .section-about, .section-workshops, .section-kontakt, .section-gallery, .section-blog {
    padding: 5rem 1.4rem;
  }
  .section-legal-page, .section-blog-archive { padding: 8rem 1.4rem 4rem; }
  .kontakt-list { grid-template-columns: 1fr; gap: 1.5rem; }
  .ps-footer { flex-direction: column; text-align: center; padding: 2rem 1.4rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
