/* =========================
   Design Tokens (Original-Look)
========================= */
:root{
  --sand: #E6DED3;          /* Beige/Sand */
  --ink:  #161616;          /* Fast-Schwarz */
  --muted:#6B6B6B;          /* Dezentes Grau */
  --line: rgba(0,0,0,.10);  /* Soft border */
  --shadow-soft: 0 10px 30px rgba(0,0,0,.08);
  --radius-2xl: 2rem;       /* 32px */

  /* Fonts: erst lokale Assets, dann Fallback */
  --font-serif: "BlumeSerif", "Georgia";
  --font-sans: "BlumeSans", system-ui;
}

/* Optional: lokale Fonts (du legst Dateien in ./assets/fonts/ ab) */
@font-face{
  font-family: "BlumeSerif";
  src: url("../assets/fonts/BlumeSerif-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "BlumeSans";
  src: url("../assets/fonts/BlumeSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  color: var(--ink);
  background:#fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }

/* Container helper */
.container{
  max-width: 80rem; /* ~1280px */
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px){
  .container{ padding: 0 1.5rem; }
}
@media (min-width: 1024px){
  .container{ padding: 0 2rem; }
}

/* =========================
   Header / Nav
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(230, 222, 211, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.logo-text{
  text-transform: uppercase;
  font-weight: 650;
  letter-spacing: .06em;
  font-size: .95rem;
}
.logo-image{
  height: 2.2rem;
  width: auto;
  display: block;
  margin-left: .75rem;
}

.nav-link{ transition: opacity .15s ease; }
.nav-link:hover{ opacity: .72; }

.mobile-menu{
  border-top: 1px solid var(--line);
  background: var(--sand);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}
.mobile-link{
  padding: .6rem .8rem;
  border-radius: 1rem;
  transition: background .15s ease;
}
.mobile-link:hover{ background: rgba(255,255,255,.45); }

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: .95rem;
  transition: transform .12s ease, opacity .12s ease, background .12s ease;
  will-change: transform;
}
.btn:active{ transform: translateY(1px); }

.btn-dark{
  background: var(--ink);
  color:#fff;
}
.btn-dark:hover{ opacity:.9; }

.btn-light{
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-light:hover{ background: rgba(255,255,255,.92); }

.btn-ghost{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); }

/* Galerie Popup */
.galerie-popup{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.galerie-popup.is-open{
  display: flex;
}
.galerie-popup__content{
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.galerie-popup__title{
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.galerie-popup__grid{
  display: grid;
  gap: .75rem;
}
.galerie-popup__link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--sand);
  border-radius: 1rem;
  font-weight: 500;
  transition: transform .15s ease, box-shadow .15s ease;
}
.galerie-popup__link:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.galerie-popup__link span{
  opacity: .5;
}
.galerie-popup__close{
  margin-top: 1.5rem;
  width: 100%;
  padding: .85rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease;
}
.galerie-popup__close:hover{
  background: rgba(0,0,0,.05);
}

/* =========================
   Sections / Typography
========================= */
.section{ padding: 3.25rem 0; }
@media (min-width: 640px){
  .section{ padding: 5rem 0; }
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.eyebrow{
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.h2{
  margin-top: .5rem;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.15;
  font-weight: 600;
}
.lead{
  margin-top: .85rem;
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.7;
}

/* =========================
   Contact Hero
========================= */
.contact-hero{
  position: relative;
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(120deg, #EFE8DD 0%, #E6DED3 35%, #F6F1EA 100%);
  overflow: hidden;
}
.contact-hero::before{
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle at 20% 30%, rgba(22,22,22,.08), transparent 60%);
  pointer-events: none;
}
.contact-hero__grid{
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px){
  .contact-hero__grid{
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
  }
}
.contact-hero__copy{ max-width: 34rem; }
.contact-hero__title{
  margin-top: .65rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}
.contact-hero__lead{
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.contact-hero__actions{
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.contact-hero__meta{
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .85rem;
  font-size: .85rem;
  color: var(--muted);
}
.contact-hero__meta span{
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  padding: .35rem .7rem;
  border-radius: 999px;
}
.contact-hero__card{
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.contact-hero__img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.contact-hero__card-body{
  padding: 1.25rem 1.5rem 1.5rem;
}
.contact-hero__card-title{
  margin-top: .35rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.contact-hero__card-links{
  margin-top: .85rem;
  display: grid;
  gap: .35rem;
  font-size: .95rem;
}
.contact-hero__card-links a{ color: var(--ink); }

/* =========================
   About Hero
========================= */
.about-hero{
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, #F1E9DF 0%, #E6DED3 40%, #F7F2EC 100%);
}
.about-hero__grid{
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px){
  .about-hero__grid{
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
  }
}
.about-hero__copy{ max-width: 36rem; }
.about-hero__title{
  margin-top: .6rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}
.about-hero__lead{
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.about-hero__actions{
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.about-hero__stats{
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  color: var(--muted);
  font-size: .85rem;
}
.about-hero__stat{
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .25rem;
}
.about-hero__media{
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.about-hero__img{
  width: 100%;
  height: clamp(320px, 46vh, 520px);
  object-fit: cover;
  display: block;
}
.about-hero__badge{
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: .85rem 1rem;
}
.about-hero__badge-title{
  margin-top: .2rem;
  font-weight: 600;
}

/* =========================
   Hero / Swiper
========================= */
.hero{ position: relative; }
.hero-swiper{
  height: clamp(440px, 70vh, 780px);
}
.hero-slide{
  position: relative;
  height: 100%;
  width: 100%;
  background: transparent;
}
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: .92;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.18), rgba(0,0,0,.10));
}
.hero-content{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding-bottom: 3rem;
}
@media (min-width: 640px){
  .hero-content{ padding-bottom: 3.5rem; }
}
.kicker{
  color: rgba(255,255,255,.82);
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-title{
  margin-top: .85rem;
  color:#fff;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 600;
  line-height: 1.06;
}
.hero-sub{
  margin-top: 1rem;
  color: rgba(255,255,255,.85);
  max-width: 40rem;
  line-height: 1.7;
}
.hero-controls{
  position:absolute;
  left:0; right:0; bottom: 1rem;
  z-index: 10;
}

.hero-nav-btn{
  height: 2.75rem !important;
  width: 2.75rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  color: #fff !important;
  background: rgba(255,255,255,.06) !important;
  transition: background .12s ease !important;
}
.hero-nav-btn:hover{ background: rgba(255,255,255,.12) !important; }
.swiper-button-prev::after,
.swiper-button-next::after{
  font-size: 14px !important;
  font-weight: 800 !important;
}
.swiper-pagination-bullet{
  width: 7px !important;
  height: 7px !important;
  opacity: .35 !important;
}
.swiper-pagination-bullet-active{ opacity: .9 !important; }

/* =========================
   Cards
========================= */
.card{
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  background:#fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(0,0,0,.10);
}
.card-sand{ background: var(--sand); }

.card-top{ display:flex; align-items:flex-start; justify-content: space-between; gap: .75rem; }
.card-title{ font-size: 1.1rem; font-weight: 600; }
.card-arrow{ opacity: .6; transition: opacity .15s ease; }
.card:hover .card-arrow{ opacity: 1; }
.card-text{ margin-top: .6rem; color: var(--muted); line-height: 1.65; font-size: .95rem; }

/* =========================
   Portfolio Grid (CSS Grid)
========================= */
.portfolio-grid{
  display:grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){
  .portfolio-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px){
  .portfolio-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}
.pf-item{
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pf-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,.18);
}
.pf-item img{
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: transform .35s ease;
}
.pf-item:hover img{
  transform: scale(1.03);
}
.pf-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.10) 40%, rgba(0,0,0,0) 100%);
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 1;
  transition: background .25s ease;
}
.pf-item:hover .pf-overlay{
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,0) 100%);
}
.pf-kicker{
  color: rgba(255,255,255,.85);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity .25s ease;
}
.pf-item:hover .pf-kicker{
  opacity: 1;
}
.pf-title{
  margin-top: .35rem;
  color:#fff;
  font-size: 1.2rem;
  font-weight: 600;
  transition: opacity .25s ease;
}
.pf-item:hover .pf-title{
  opacity: 1;
}
@media (min-width: 1024px){
  .pf-tall{ grid-row: span 2; }
  .pf-wide{ grid-column: span 2; }
}

/* =========================
   Testimonials
========================= */
.quote-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  background:#fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.quote-text{
  color: var(--ink);
  line-height: 1.75;
  font-size: .98rem;
}
.quote-meta{
  margin-top: 1rem;
  color: var(--muted);
  font-size: .9rem;
}

/* =========================
   Contact Card
========================= */
.contact-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* =========================
   Forms
========================= */
.form-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.form-label{
  display:block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.form-input{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: .85rem 1rem;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
}
.form-input::placeholder{ color: rgba(0,0,0,.45); }
.form-input:focus{
  outline: none;
  border-color: rgba(0,0,0,.25);
  box-shadow: 0 0 0 3px rgba(22,22,22,.10);
}
.form-textarea{
  min-height: 170px;
  resize: vertical;
}
.form-help{
  margin-top: .35rem;
  font-size: .82rem;
  color: var(--muted);
}
.honeypot{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================
   Team
========================= */
.team-photo{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1.2rem;
  margin-bottom: .9rem;
}

/* =========================
   Footer
========================= */
.site-footer{
  border-top: 1px solid var(--line);
}
.footer-link{
  color: var(--muted);
  transition: color .15s ease, opacity .15s ease;
}
.footer-link:hover{
  color: var(--ink);
  opacity: .9;
}

/* =========================
   Shop Dropdown
========================= */
.shop-dropdown{
  position: relative;
  display: inline-flex;
}
.shop-dropdown__toggle{
  cursor: pointer;
  user-select: none;
}
.shop-dropdown__toggle svg{
  transition: transform .2s ease;
}
.shop-dropdown.is-open .shop-dropdown__toggle svg{
  transform: rotate(180deg);
}
.shop-dropdown__menu{
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: .5rem;
  z-index: 60;
}
.shop-dropdown.is-open .shop-dropdown__menu{
  display: block;
}
.shop-dropdown__item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem .9rem;
  border-radius: .7rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  transition: background .12s ease;
}
.shop-dropdown__item:hover{
  background: var(--sand);
}
.shop-dropdown__item span{
  opacity: .4;
  font-size: .8rem;
}

/* Mobile shop dropdown */
.shop-dropdown--mobile{
  display: grid;
  gap: .35rem;
}
.shop-dropdown--mobile .shop-dropdown__item{
  padding: .6rem .8rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.35);
}
.shop-dropdown--mobile .shop-dropdown__item:hover{
  background: rgba(255,255,255,.55);
}

/* =========================
   External Link Indicator (↗)
   Nutzung: class="is-external"
========================= */
a.is-external::after{
  content: "↗";
  display: inline-block;
  margin-left: .35rem;
  font-size: .9em;
  opacity: .65;
  transform: translateY(-0.02em);
}

a.is-external:hover::after{
  opacity: .9;
}


