:root{
  --accent:#8a5d5d;
  --bg:#f6f2ec;
  --ink:#1f1f1f;
  --muted: rgba(0,0,0,.68);
  --line: rgba(0,0,0,.10);
  --card:#ffffff;
  --glass: rgba(255,255,255,.78);
  --shadow: 0 14px 38px rgba(0,0,0,.10);
  --shadow2: 0 20px 60px rgba(0,0,0,.12);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a{ color:inherit; }
img{ max-width:100%; display:block; }

.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.muted{
  color: var(--muted);
  line-height: 1.55;
}

.section{
  padding: 56px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-alt{
  background: rgba(255,255,255,.35);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{
  margin-bottom: 18px;
}

h2{
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.btn{
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration:none;
  display:inline-block;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(138,93,93,.24);
}

.btn.ghost{
  background: #fff;
  color: #2a2a2a;
  border-color: rgba(0,0,0,.16);
}

.btn.ghost:hover{ background: rgba(255,255,255,.9); }

/* =========================
   Falling blossoms overlay
   ========================= */
.fall-layer{
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9;
  opacity: .52;                 /* dezent */
  mix-blend-mode: normal;       /* sauber auf hellen Hintergründen */
}

.fall{
  position: absolute;
  top: -14vh;
  left: 0;
  width: var(--s, 26px);
  height: var(--s, 26px);
  opacity: var(--o, .55);
  transform: translate3d(var(--x, 0), -14vh, 0) rotate(var(--r, 0deg));
  animation: fall var(--d, 18s) linear var(--del, 0s) infinite;
  filter: blur(var(--blur, 0px)) drop-shadow(0 10px 18px rgba(0,0,0,.05));
}

.fall::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--img);
  background-size: contain;
  background-repeat: no-repeat;
  animation: spin var(--sd, 8s) ease-in-out var(--del, 0s) infinite alternate;
}

@keyframes fall{
  0%{
    transform: translate3d(var(--x, 0), -14vh, 0) rotate(var(--r, 0deg));
  }
  100%{
    transform: translate3d(calc(var(--x, 0) + var(--dr, 160px)), 112vh, 0) rotate(calc(var(--r, 0deg) + 80deg));
  }
}

@keyframes spin{
  0%{ transform: rotate(0deg) scale(1); }
  100%{ transform: rotate(160deg) scale(1.05); }
}

/* =========================
   Header
   ========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.brand{
  text-decoration:none;
  display:block;
  min-width: 220px;
}

.brand-title{
  font-size: 18px;
  font-weight: 800;
  line-height: 1.08;
}

.brand-w{
  font-family: Allura;
  font-size: 40px;
  color: var(--accent);
  position: relative;
  top: 6px;
}

.brand-sub{
  font-size: 12px;
  color: rgba(0,0,0,.62);
  margin-top: 2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a{
  text-decoration:none;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(0,0,0,.78);
}

.nav a:hover{ background: rgba(0,0,0,.05); }

.nav .nav-cta{
  border: 1px solid rgba(138,93,93,.25);
  background: rgba(138,93,93,.10);
}

/* =========================
   Hero (mobile-first)
   ========================= */
.hero{
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  z-index: 2;
}

.hero-back{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(246,242,236,.96),
    rgba(246,242,236,.72) 58%,
    rgba(246,242,236,.96)
  );
  z-index: 1;
}

.hero-logo{
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: min(520px, 84vw);
  opacity: 0.14;   /* wie Logo-Wasserzeichen */
  pointer-events: none;
  z-index: 2;
}

.hero-content{
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 40px));
  padding: 34px 0;
}

.hero h1{
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-w{
  font-family: Allura;
  font-size: 110px;
  color: var(--accent);
  position: relative;
  top: 18px;
  margin-left: 6px;
  margin-right: -10px;
}

.hero p{
  margin: 12px 0 0;
  color: rgba(0,0,0,.62);
  font-size: 16px;
}

.hero-buttons{
  margin-top: 20px;
}

/* =========================
   Wesen des Monats
   ========================= */
.wesen-monat{
  padding: 56px 0;
  background: rgba(255,255,255,.50);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
  text-align: center;
}

.wesen-card{
  margin-top: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.wesen-media img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.wesen-body{
  padding: 18px 16px 20px;
}

.wesen-badges{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag{
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(138,93,93,.10);
  border: 1px solid rgba(138,93,93,.18);
  color: var(--accent);
}

.wesen-title{
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.wesen-text{
  margin: 0 0 16px;
  color: rgba(0,0,0,.72);
  line-height: 1.55;
}

.wesen-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   Geschichte des Monats
   ========================= */
.story-monat{
  padding: 56px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.story-card{
  margin-top: 16px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 16px 20px;
  text-align: left;
}

.story-kicker{
  font-weight: 800;
  color: rgba(0,0,0,.55);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.story-title{
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.story-text{
  margin: 0 0 12px;
  color: rgba(0,0,0,.72);
  line-height: 1.62;
}

.story-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* =========================
   Kollektionen
   ========================= */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px;
}

.card{
  background: var(--card);
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.card:focus-visible{
  outline: 3px solid rgba(138,93,93,.35);
  outline-offset: 3px;
}

.card-top{
  display:flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.season-icon{
  font-size: 20px;
  line-height: 1;
}

.card h3{
  margin: 0;
  font-size: 20px;
}

.card p{
  margin: 0;
  color: rgba(0,0,0,.72);
  line-height: 1.35;
}

.pill{
  display:inline-block;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: var(--accent);
  background: rgba(138,93,93,.10);
  border: 1px solid rgba(138,93,93,.18);
}

/* =========================
   Galerie
   ========================= */
.gal-head{
  display:flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  text-align: center;
}

.gal-filter{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip{
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.75);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.chip.is-active{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.gallery{
  margin-top: 10px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.shot{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.shot img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .25s ease;
}

.shot:hover img{ transform: scale(1.03); }

/* =========================
   Kontakt
   ========================= */
.contact-card{
  margin-top: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 16px 20px;
}

.contact-name{ margin: 0 0 6px; }
.contact-line{ margin: 0 0 14px; color: rgba(0,0,0,.70); }

.footer{
  margin-top: 26px;
  opacity: .62;
  font-size: 13px;
}

/* =========================
   Desktop enhancements
   ========================= */
@media (min-width: 760px){
  h2{ font-size: 32px; }

  .hero h1{ font-size: 52px; }
  .hero-w{ font-size: 140px; top: 22px; }
  .hero-logo{ top: 52%; width: min(640px, 70vw); opacity: .16; }

  .grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .shot img{ height: 260px; }

  .gal-head{
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-end;
  }

  .gal-filter{ justify-content: flex-end; }

  .wesen-card{ flex-direction: row; }
  .wesen-media{ width: 420px; }
  .wesen-media img{ height: 100%; min-height: 320px; }
  .wesen-body{ padding: 22px 22px 24px; }

  .story-card{ padding: 22px 22px 24px; }
}

@media (min-width: 1060px){
  .grid{ grid-template-columns: repeat(3, 1fr); }
  .gallery{ grid-template-columns: repeat(3, 1fr); }
}