/* ============================================================
   Wohlfellfaktor – Stylesheet
   Palette "Honig & Rost"
   ============================================================ */

:root {
  --vanille:   #FDF4E3;
  --honig:     #FBE2A8;
  --bernstein: #E89B3C;
  --rost:      #CF5C2E;
  --rost-dark: #B14A22;
  --kakao:     #3A2417;
  --braun:     #946B4A;
  --card:      #FFF8E8;
  --white:     #FFFBF2;

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --font-hand:    'Caveat', cursive;

  --radius:    18px;
  --radius-sm: 12px;
  --pill:      50px;
  --maxw:      1100px;
  --shadow:    0 12px 32px -16px rgba(58, 36, 23, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--kakao);
  background: var(--vanille);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Dezente Körnung gegen flache Sterilität */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--kakao); letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { text-wrap: pretty; }

a { color: var(--rost); text-decoration: none; }
a:hover { color: var(--rost-dark); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 760px; }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section + .section { border-top: 2px dashed rgba(207,92,46,0.18); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rost);
  margin-bottom: 0.6rem;
}

.section-head { text-align: left; max-width: 680px; margin: 0 0 2.6rem; }
.section-head .eyebrow { margin-bottom: 0.4rem; }
.section-sub { color: var(--braun); margin-top: 0.8rem; }

/* Handgezeichnete Unterstreichung unter Sektions-Überschriften (Logbuch) */
.section h2 { position: relative; display: inline-block; padding-bottom: 0.5rem; }
.section h2::after {
  content: "";
  position: absolute; left: 0; bottom: 0; width: 100%; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='12' viewBox='0 0 220 12' preserveAspectRatio='none'%3E%3Cpath d='M3 7 Q 55 1 110 6 T 217 5' fill='none' stroke='%23CF5C2E' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.6s ease 0.15s;
}
.section h2.drawn::after { transform: scaleX(1); }

.signature { font-family: var(--font-hand); font-size: 1.6rem; color: var(--rost); font-weight: 600; margin-top: 0.4rem; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 0; top: -100px;
  background: var(--rost); color: #fff; padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0; z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--rost); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.85rem 1.6rem; border-radius: var(--pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--rost); color: #fff; }
.btn-primary:hover { background: var(--rost-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--rost); border-color: var(--rost); }
.btn-ghost:hover { background: var(--rost); color: #fff; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn-block { display: flex; width: 100%; margin-top: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 244, 227, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58, 36, 23, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.brand { display: flex; align-items: center; color: var(--kakao); }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.site-logo { height: 84px; width: auto; display: block; }
.primary-nav { display: flex; align-items: center; gap: 1.6rem; }
.primary-nav a { color: var(--kakao); font-weight: 600; }
.primary-nav a:hover { color: var(--rost); }
.primary-nav a.btn { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle-bar { width: 26px; height: 3px; background: var(--kakao); border-radius: 3px; transition: transform 0.2s, opacity 0.2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(251, 226, 168, 0.7) 0%, rgba(251, 226, 168, 0) 55%),
    radial-gradient(90% 70% at 10% 0%, rgba(232, 155, 60, 0.18) 0%, rgba(232, 155, 60, 0) 50%),
    var(--vanille);
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; padding-bottom: 4rem; }
.lede { font-size: 1.15rem; color: #5C4636; margin-top: 1.1rem; max-width: 34rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; font-size: 0.92rem; font-weight: 600; color: var(--braun); }
.hero-trust li { display: flex; align-items: center; gap: 0.5rem; }
.paw-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--bernstein); display: inline-block; }

.hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-polaroid {
  position: relative; background: var(--white); padding: 18px 18px 10px;
  border-radius: 4px; box-shadow: 0 22px 48px -22px rgba(58,36,23,0.5);
  transform: rotate(2.4deg); margin-left: -1.5rem;
}
.hero-polaroid .hero-blob { position: absolute; inset: 18px; width: auto; height: auto; }
.hero-blob { position: absolute; width: 320px; height: 320px; background: var(--honig); border-radius: 42% 58% 60% 40% / 50% 45% 55% 50%; }
.hero-cat { position: relative; z-index: 1; }
.hero-polaroid-cap { position: relative; z-index: 1; text-align: center; font-family: var(--font-hand); font-size: 1.5rem; font-weight: 700; color: var(--kakao); margin-top: 2px; }
.tape--tl { top: -11px; left: 26px; transform: rotate(-7deg); }
.tape--br { bottom: 24px; right: -16px; transform: rotate(58deg); }

/* ---------- Two column ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* ---------- Über mich: Vollbild-Buchseite ---------- */
.section--about { padding: 0; border-top: 2px dashed rgba(207,92,46,0.18); }
.about-spread {
  display: grid;
  grid-template-columns: 45vw 1fr;
  align-items: stretch;
  min-height: 520px;
}
.about-spread.reveal { transform: translateY(20px); } /* kein Drehen für volle Breite */
.about-photo-bleed {
  position: relative;
  overflow: hidden;
  background: var(--card);
}
.about-photo-bleed .photo-frame {
  height: 100%;
  min-height: 520px;
  aspect-ratio: unset;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: var(--card);
}
.photo-placeholder { color: var(--braun); font-weight: 600; }
.photo-stamp { position: absolute; bottom: 1.8rem; right: -8px; transform: rotate(12deg); background: var(--vanille); border-radius: 50%; padding: 6px; }
.about-text-col {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid rgba(207,92,46,0.25);
}
.about-text-col p { margin-top: 0.9rem; color: #5C4636; max-width: 52ch; }
.badge-row { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.badge { background: var(--honig); color: var(--kakao); font-size: 0.85rem; font-weight: 700; padding: 0.4rem 0.9rem; border-radius: var(--pill); }

/* ---------- Update / Tagesnachricht ---------- */
.section--update { text-align: center; }
.update-intro { max-width: 580px; margin: 0 auto 2.5rem; text-align: left; }
.update-solo { display: flex; flex-direction: column; align-items: center; }
.update-label {
  font-family: var(--font-hand); font-size: 1.5rem; font-weight: 700;
  color: var(--braun); display: inline-block; transform: rotate(-1deg);
  margin-bottom: 1.6rem;
}
.note-card {
  position: relative; background: var(--white); border-radius: 8px;
  padding: 1.6rem 1.6rem 1.3rem; border: 1px solid rgba(58, 36, 23, 0.1);
  box-shadow: 0 16px 40px -16px rgba(58, 36, 23, 0.4);
  transform: rotate(-1.6deg); max-width: 360px;
}
.note-stamp { position: absolute; top: 12px; right: 14px; transform: rotate(11deg); opacity: 0.78; }
.note-date { font-family: var(--font-hand); font-size: 1.25rem; font-weight: 700; color: var(--rost); }
.note-body { font-family: var(--font-hand); font-size: 1.5rem; font-weight: 600; line-height: 1.35; color: var(--kakao); margin-top: 0.5rem; max-width: 16rem; }
.note-sign { font-family: var(--font-hand); font-size: 1.4rem; font-weight: 700; color: var(--kakao); margin-top: 0.8rem; display: flex; align-items: center; gap: 0.4rem; }
.paw-mini { width: 16px; height: 16px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; background: var(--bernstein); display: inline-block; }

/* ---------- Preise ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
/* Kurzbesuch oben rechts */
.price-card:nth-child(1) { grid-column: 2; grid-row: 1; }
/* Urlaubs-Betreuung: linke große Karte, spannt beide Zeilen */
.price-card--featured { grid-column: 1; grid-row: 1 / 3; }
/* Verhaltenstherapie unten rechts */
.price-card:nth-child(3) { grid-column: 2; grid-row: 2; }
.price-card {
  position: relative; background: var(--card); border-radius: var(--radius);
  border: 1px solid rgba(58, 36, 23, 0.1); padding: 1.8rem; display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card--featured { border: 2px solid var(--rost); background: var(--white); box-shadow: var(--shadow); }
.price-card--featured:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -16px rgba(207, 92, 46, 0.4); }
/* Eselsohr (Karteikarte) */
.price-card--featured::after {
  content: ""; position: absolute; top: 0; right: 0; width: 0; height: 0;
  border-style: solid; border-width: 0 26px 26px 0;
  border-color: transparent var(--honig) transparent transparent;
  border-top-right-radius: var(--radius);
}
.ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--rost); color: #fff; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em; padding: 0.3rem 1rem; border-radius: var(--pill); }
.price { margin: 0.6rem 0; display: flex; align-items: baseline; gap: 0.3rem; }
.amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--rost); }
.amount.soon { font-size: 1.6rem; }
.per { color: var(--braun); font-size: 0.95rem; }
.price-desc { color: var(--braun); font-style: italic; }
.feature-list { list-style: none; margin: 1.1rem 0 1.6rem; }
.feature-list li { position: relative; padding-left: 1.6rem; margin-bottom: 0.6rem; color: #5C4636; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 9px; height: 9px; border-radius: 50%; background: var(--bernstein); }

/* ---------- Galerie: Scrapbook-Raster ---------- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 180px;
  gap: 0.8rem;
}
.gallery-item {
  aspect-ratio: unset; height: 100%;
  background: var(--honig); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--braun); font-weight: 600;
  overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }

/* ---------- FAQ: Notizbuch-Linien ---------- */
.faq-list { counter-reset: faq-counter; }
.faq-item {
  counter-increment: faq-counter;
  background: transparent; border-radius: 0;
  border: none; border-bottom: 1px solid rgba(207,92,46,0.22);
  margin-bottom: 0; overflow: visible;
  transition: border-color 0.2s ease;
}
.faq-item:first-child { border-top: 1px solid rgba(207,92,46,0.22); }
.faq-item:hover { border-bottom-color: rgba(207,92,46,0.5); }
.faq-item summary {
  cursor: pointer; display: flex; align-items: baseline; gap: 0.8rem;
  padding: 1.1rem 3rem 1.1rem 0;
  font-weight: 700; font-size: 1.05rem; list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-family: var(--font-hand); font-size: 1.6rem; font-weight: 700;
  color: var(--bernstein); line-height: 1; flex-shrink: 0;
}
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--rost); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 0 1.2rem 2.8rem; color: #5C4636; }

/* ---------- Einzugsgebiet ---------- */
.gebiet-inner { display: flex; align-items: center; gap: 4rem; }
.gebiet-text { flex: 1; }
.gebiet-stamp { flex-shrink: 0; opacity: 0.28; transform: rotate(-10deg); }
.area-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; margin-top: 1.2rem; }
.area-list li { position: relative; padding-left: 1.6rem; font-weight: 600; }
.area-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 9px; height: 9px; border-radius: 50%; background: var(--rost); }

/* ---------- Kontaktformular: Briefbogen ---------- */
.letterhead-intro {
  font-family: var(--font-hand); font-size: 2.4rem; font-weight: 700;
  color: var(--rost); display: inline-block; transform: rotate(-1.2deg);
  margin-bottom: 0.6rem;
}
.contact-form {
  background: #fffef9; border-radius: 4px;
  border: none; border-top: 4px solid var(--rost);
  padding: 2.4rem 2.8rem;
  box-shadow: 0 4px 32px -8px rgba(58,36,23,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.4rem; display: flex; flex-direction: column; }
.field label { font-weight: 700; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--braun); letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 0.5rem 0.2rem;
  border: none; border-bottom: 1.5px solid rgba(58,36,23,0.3);
  border-radius: 0; background: transparent; color: var(--kakao);
}
.field select { cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--rost); box-shadow: none;
}
.field textarea { resize: vertical; }
.form-note { margin-top: 1rem; text-align: center; font-weight: 700; color: var(--rost); min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--kakao); color: #F3E6D8; padding: 2.5rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: flex-start; }
.footer-brand .brand-text { color: #fff; }
.footer-brand p { color: #C9AF98; font-size: 0.9rem; margin-top: 0.3rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a { color: #F3E6D8; font-weight: 600; }
.footer-nav a:hover { color: var(--bernstein); }
.footer-legal { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.85rem; }
.footer-legal a { color: #C9AF98; }
.footer-legal p { color: #8C7156; }

/* ---------- Conversion: persistente CTAs ---------- */
.header-cta-mobile { display: none; }
.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  text-align: center; padding: 0.95rem 1rem;
  background: var(--rost); color: #fff; font-weight: 800; font-size: 1.02rem;
  box-shadow: 0 -6px 20px -8px rgba(58,36,23,0.45);
}
.mobile-cta-bar:hover { color: #fff; }
.mobile-cta-bar.is-hidden { transform: translateY(110%); transition: transform 0.25s ease; }

/* ============================================================
   Logbuch-Bausteine (Leitmotiv "Karinas Logbuch")
   ============================================================ */

/* Klebeband */
.tape {
  position: absolute; width: 88px; height: 26px;
  background: rgba(232, 155, 60, 0.38);
  border-left: 1px dashed rgba(255,255,255,0.4); border-right: 1px dashed rgba(255,255,255,0.4);
  box-shadow: 0 1px 2px rgba(58,36,23,0.12);
}

/* Notizpapier / eingeklebte Seite */
.note-paper {
  position: relative; background: var(--white);
  border: 1px solid rgba(58,36,23,0.08);
  box-shadow: 0 14px 30px -18px rgba(58,36,23,0.4);
}

/* ---------- Ablauf: Tagebuch-Timeline ---------- */
.logbook-timeline { list-style: none; position: relative; max-width: 780px; margin: 0 auto; }
.logbook-timeline::before {
  content: ""; position: absolute; left: 50%; top: 6px; bottom: 6px; width: 0;
  border-left: 3px dashed rgba(207, 92, 46, 0.4); transform: translateX(-50%);
}
.tl-entry { position: relative; width: 50%; padding: 0 2.6rem 2.4rem; }
.tl-entry:nth-child(odd) { left: 0; text-align: right; }
.tl-entry:nth-child(even) { left: 50%; }
.tl-entry::after { /* Knoten auf der Linie */
  content: ""; position: absolute; top: 4px; width: 18px; height: 18px;
  background: var(--rost); border: 3px solid var(--vanille); border-radius: 50%;
}
.tl-entry:nth-child(odd)::after { right: -9px; }
.tl-entry:nth-child(even)::after { left: -9px; }
.tl-card { background: var(--white); border: 1px solid rgba(58,36,23,0.08); border-radius: var(--radius-sm); padding: 1.3rem 1.5rem; box-shadow: 0 10px 24px -18px rgba(58,36,23,0.45); }
.tl-day { font-family: var(--font-hand); font-size: 1.4rem; font-weight: 700; color: var(--rost); line-height: 1; margin-bottom: 0.3rem; }
.tl-card h3 { margin-bottom: 0.3rem; }
.tl-card p { color: #5C4636; font-size: 0.95rem; }

/* ---------- Kundenstimmen: Pinnwand-Collage ---------- */
.pinboard { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 1.4rem; align-items: start; }
.pin-note {
  position: relative; padding: 1.6rem 1.4rem 1.3rem; border-radius: 3px;
  box-shadow: 0 12px 26px -16px rgba(58,36,23,0.45);
}
.pin-note::before { /* Klebeband oben */
  content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 70px; height: 22px; background: rgba(232,155,60,0.4);
  box-shadow: 0 1px 2px rgba(58,36,23,0.12);
}
.pin-note blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--kakao); }
.pin-note figcaption { margin-top: 0.9rem; font-weight: 700; color: var(--rost); font-size: 0.95rem; }
.pin-note:nth-child(1) { background: #FFFBF2; transform: rotate(-2.2deg); }
.pin-note:nth-child(2) { background: var(--honig); transform: rotate(1.6deg); margin-top: 1.8rem; }
.pin-note:nth-child(3) { background: #FFF8E8; transform: rotate(-1deg); }
.pin-note:hover { transform: rotate(0deg) translateY(-3px); transition: transform 0.2s ease; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px) rotate(-1deg); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 880px) {
  /* Preis: 2-col auf mittleren Viewports */
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-card:nth-child(1) { grid-column: auto; grid-row: auto; }
  .price-card--featured { grid-column: auto; grid-row: auto; }
  .price-card:nth-child(3) { grid-column: auto; grid-row: auto; }

  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: auto; aspect-ratio: 1; }

  .pinboard { grid-template-columns: 1fr 1fr; }
  .pin-note:nth-child(2) { margin-top: 0; }

  .gebiet-inner { gap: 2rem; }
  .gebiet-stamp svg { width: 140px; height: 140px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .header-cta-mobile { display: inline-flex; }
  .site-logo { height: 60px; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 4.5rem; }

  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--vanille); border-bottom: 1px solid rgba(58, 36, 23, 0.1);
    padding: 0.5rem 1.5rem 1rem; box-shadow: var(--shadow);
    transform: translateY(-150%); transition: transform 0.25s ease; visibility: hidden;
  }
  .primary-nav.is-open { transform: translateY(0); visibility: visible; }
  .primary-nav a { padding: 0.8rem 0; }
  .primary-nav a.btn { display: none; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-blob { width: 240px; height: 240px; }
  .hero-polaroid { margin-left: 0; transform: rotate(1.6deg); }

  /* About-Spread: einspaltig, Foto oben */
  .section--about { padding: 0; }
  .about-spread { grid-template-columns: 1fr; }
  .about-spread.reveal { transform: translateY(16px); }
  .about-photo-bleed .photo-frame { min-height: 280px; }
  .about-text-col { padding: 2rem 1.5rem; border-left: none; border-top: 3px solid rgba(207,92,46,0.25); }

  /* Preise: gestapelt, featured oben */
  .price-grid { grid-template-columns: 1fr; }
  .price-card:nth-child(1) { grid-column: 1; grid-row: auto; order: 2; }
  .price-card--featured { grid-column: 1; grid-row: auto; order: 1; }
  .price-card:nth-child(3) { grid-column: 1; grid-row: auto; order: 3; }

  /* Galerie: 2-Spalten */
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: auto; aspect-ratio: 1; }

  /* Pinnwand: gestapelt */
  .pinboard { grid-template-columns: 1fr; }
  .pin-note, .pin-note:nth-child(1), .pin-note:nth-child(2), .pin-note:nth-child(3) { transform: none; margin-top: 0; }

  /* Timeline: einspaltig */
  .logbook-timeline::before { left: 9px; }
  .tl-entry, .tl-entry:nth-child(odd), .tl-entry:nth-child(even) {
    width: 100%; left: 0; text-align: left; padding: 0 0 2rem 2.4rem;
  }
  .tl-entry:nth-child(odd)::after, .tl-entry:nth-child(even)::after { left: 1px; right: auto; }

  /* Gebiet: Stamp verstecken auf sehr kleinen Viewports */
  .gebiet-inner { flex-direction: column; gap: 1.5rem; }
  .gebiet-stamp { display: none; }

  /* Kontakt: Briefbogen-Padding reduzieren */
  .contact-form { padding: 1.8rem 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:active { transform: none; }
  .price-card:hover, .price-card--featured:hover, .gallery-item:hover, .pin-note:hover { transform: none; }
  .section h2::after { transform: scaleX(1); transition: none; }
  * { animation: none !important; }
}
