:root{
  --bg:#f6f1ea;
  --paper:#ffffff;
  --ink:#121212;
  --muted:#6b6b6b;
  --line:rgba(18,18,18,.12);
  --accent:#c8a67a;
  --accent-2:#1f1f1f;
  --radius:18px;
  --shadow:0 12px 30px rgba(0,0,0,.08);
  --max:1120px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.h1, h1{font-family:"Cormorant Garamond", Georgia, serif; letter-spacing:.02em; font-weight:600}
.h2, h2{font-family:"Cormorant Garamond", Georgia, serif; letter-spacing:.02em; font-weight:600}
.kicker{letter-spacing:.22em; text-transform:uppercase; font-size:.78rem; color:var(--muted)}
.lead{font-size:1.08rem;color:rgba(18,18,18,.86)}
.small{font-size:.92rem;color:var(--muted)}
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(246,241,234,.86);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0; position:relative}
.brand{display:flex; align-items:baseline; gap:10px; text-decoration:none}
.brand .mark{font-family:"Cormorant Garamond", Georgia, serif; font-size:1.35rem; letter-spacing:.08em}
.brand .tag{font-size:.75rem; letter-spacing:.22em; text-transform:uppercase; color:var(--muted)}
.menu{display:flex; gap:18px; align-items:center}
.menu a{text-decoration:none; font-size:.92rem; color:rgba(18,18,18,.82); padding:8px 10px; border-radius:999px}
.menu a:hover{background:rgba(200,166,122,.14)}
.menu a[aria-current="page"]{background:rgba(200,166,122,.22)}
.burger{display:none; border:1px solid var(--line); background:var(--paper); border-radius:999px; padding:10px 12px; cursor:pointer}
.burger span{display:block; width:18px; height:2px; background:var(--ink); margin:4px 0; opacity:.8}
.hero{padding:56px 0 34px}
.hero-grid{display:grid; gap:22px; align-items:center; grid-template-columns: 1.1fr .9fr}
.hero-media{border-radius:var(--radius); overflow:hidden; border:1px solid var(--line)}
.hero h1{font-size:3.2rem; margin:10px 0 10px; line-height:1.05}
.hero .cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:999px; border:1px solid var(--line);
  text-decoration:none; font-weight:600; font-size:.95rem;
}
.btn-primary{background:var(--accent-2); color:var(--paper); border-color:transparent}
.btn-primary:hover{filter:brightness(1.05)}
.btn-ghost{background:transparent}
.btn-ghost:hover{background:rgba(200,166,122,.14)}
.hero .meta{
  display:flex; gap:14px; flex-wrap:wrap; margin-top:18px;
  padding-top:14px; border-top:1px solid var(--line); color:var(--muted); font-size:.92rem;
}
.pills{display:flex; gap:8px; flex-wrap:wrap}
.pill{border:1px solid var(--line); background:rgba(255,255,255,.6); padding:7px 10px; border-radius:999px; font-size:.85rem; color:rgba(18,18,18,.78)}
.section{padding:54px 0}
.section.alt{background:rgba(255,255,255,.35); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.grid{display:grid; gap:18px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.card{background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow)}
.card .pad{padding:18px}
.card h3{margin:8px 0 8px; font-size:1.25rem}
.card p{margin:0;color:rgba(18,18,18,.78)}
.card .media{aspect-ratio:16/10; overflow:hidden; border-bottom:1px solid var(--line)}
.card .media img{width:100%; height:100%; object-fit:cover}
.list{display:grid; gap:10px; padding:0; margin:18px 0 0; list-style:none}
.list li{display:flex; gap:10px; align-items:flex-start; color:rgba(18,18,18,.78)}
.dot{width:9px; height:9px; border-radius:99px; background:var(--accent); margin-top:8px}
.footer{padding:34px 0; border-top:1px solid var(--line); background:rgba(255,255,255,.25)}
.footer-grid{display:grid; gap:16px; grid-template-columns:1.3fr .7fr}
.footer a{color:rgba(18,18,18,.78); text-decoration:none}
.footer a:hover{text-decoration:underline}
.subfooter{margin-top:16px; padding-top:16px; border-top:1px solid var(--line); color:var(--muted); font-size:.9rem}
@media (max-width:920px){
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:2.6rem}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .menu{display:none}
  .burger{display:inline-block}
  .menu.open{
    display:flex; flex-direction:column; align-items:flex-start;
    position:absolute; left:0; right:0; top:56px;
    background:var(--paper); border:1px solid var(--line);
    border-radius:18px; padding:10px; box-shadow:var(--shadow);
    z-index:80;
  }
}
.mobilebar{
  position:fixed; left:0; right:0; bottom:0;
  background:rgba(255,255,255,.9);
  border-top:1px solid var(--line);
  backdrop-filter:saturate(180%) blur(10px);
  padding:10px 12px; z-index:60;
  display:none;
}
.mobilebar .row{display:flex; gap:10px}
.mobilebar a{flex:1}
@media (max-width:920px){
  .mobilebar{display:block}
  body{padding-bottom:78px}
}

/* Full width hero banner */
.hero-banner{
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-banner__media{
  width: 100%;
  height: clamp(240px, 42vw, 520px);

  position: relative;
}
.hero-banner__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;

  will-change: transform;
}
.hero-banner__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  pointer-events:none;
  z-index:2;
}
.hero-banner__content{
  padding: 22px 0 22px;
  color: var(--ink);
  text-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.hero-banner__title{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  letter-spacing:.02em;
  font-weight: 600;
  margin-top: 6px;
}

/* Claim styling (Heißfolienprägung in Gold – mit leichtem Schimmer) */
.hero-banner__title .claim-line{display:block; line-height:1.02}
.hero-banner__title .claim-emph{letter-spacing:.06em}

.foil-gold{
  /* Fallback (wenn background-clip:text nicht unterstützt wird) */
  color: #b08d57;
}

@supports (-webkit-background-clip: text) or (background-clip: text){
  .foil-gold{
    /* Gold-Foil Look */
    background: linear-gradient(
      90deg,
      #6f4f1d 0%,
      #d1a54a 18%,
      #fff1b3 34%,
      #c9922b 50%,
      #fff1b3 66%,
      #d1a54a 82%,
      #6f4f1d 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 100%;
    animation: goldShimmer 5.2s ease-in-out infinite;
    text-shadow: 0 1px 0 rgba(255,255,255,.30), 0 12px 28px rgba(0,0,0,.12);
  }
}

@keyframes goldShimmer{
  0%{background-position: 0% 50%}
  50%{background-position: 100% 50%}
  100%{background-position: 0% 50%}
}

@media (prefers-reduced-motion: reduce){
  .foil-gold{animation:none; background-size: 100% 100%}
}
.hero-banner__sub{
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: rgba(18,18,18,.78);
  margin-top: 6px;
}
/* Subtle overlay for legibility */
.hero-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(246,241,234,.0) 0%, rgba(246,241,234,.22) 55%, rgba(246,241,234,.37) 100%);
  pointer-events:none;
  z-index:1;
}


/* Instagram sets fixed widths; override for responsive */
.insta-grid .instagram-media{
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow) !important;
}
@media (max-width: 920px){
  .insta-grid{grid-template-columns:1fr}
}


/* Instagram embeds layout (big cards) */
.insta-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
/* Instagram sets fixed widths; override for responsive */
.insta-grid .instagram-media{
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow) !important;
}
/* Optional: 2 columns on very wide screens */
@media (min-width: 1100px){
  .insta-grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}





/* Make the toggle feel like it's "at the end" */
.team-toggle{
  margin-top: 12px;
}





/* Team layout (2 columns on desktop) */
.team-grid{
  grid-template-columns: 1fr;
}
@media (min-width: 920px){
  .team-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Team text clamp (preview) */
.team-text{
  margin-top: 10px;
  color: rgba(18,18,18,.78);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
.team-text::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:1.4em;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events:none;
}
.team-text p{margin:0 0 10px}
.team-text p:last-child{margin-bottom:0}

/* Expanded state: show full text, no fade/opacity tricks, no divider */
.team-card.is-open .team-text{
  display:block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.team-card.is-open .team-text::after{display:none}
.team-toggle{margin-top: 12px}


.map-embed{
  margin-top: 12px;
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);

  min-height: 320px;}
@media (min-width: 920px){
  .map-embed{height: 380px;}
}

.map-embed iframe{width:100%;height:100%;border:0;display:block}


/* WhatsApp Icon */
.wa-icon{
  width:16px;
  height:16px;
  margin-right:6px;
  vertical-align:-2px;
  fill: var(--accent);
  opacity:.88;
}
.btn .wa-icon{
  width:14px;
  height:14px;
}


/* WhatsApp Hover Micro-Animation */
a:hover .wa-icon,
.btn:hover .wa-icon{
  transform: scale(1.15);
  opacity: 1;
}

.wa-icon{
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

a:hover .wa-icon{
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
}

/* Subtle button lift */
.btn:hover{
  transform: translateY(-1px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}


/* Soft Scroll Reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
/* Slightly stronger for large hero blocks */
.reveal.reveal-lg{
  transform: translateY(18px);
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{transition:none; transform:none; opacity:1;}
}


/* Hero Parallax */
.parallax-img{
  transform: translate3d(0,0,0);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce){
  .parallax-img{transform:none !important;}
}


/* Luxurious Hover on Cards */
.card{
  position: relative;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}
.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events:none;
  opacity:0;
  transition: opacity 220ms ease;
  /* Soft light edge */
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.55),
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0) 65%);
  mix-blend-mode: overlay;
}
.card.is-hovering{
  transform: translateY(-2px);
}
.card.is-hovering::before{
  opacity:1;
}

/* Only on fine pointer devices (desktop) */
@media (hover:hover) and (pointer:fine){
  .card.is-tilting{
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-2px);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .card, .card::before{transition:none !important;}
  .card.is-tilting, .card.is-hovering{transform:none !important;}
}


/* Soft Light Glow on Buttons */
.btn{
  position: relative;
  overflow: hidden;
}

.btn::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity 220ms ease;
  background: radial-gradient(circle at 50% 50%,
    rgba(255,255,255,0.45),
    rgba(255,255,255,0.12) 35%,
    rgba(255,255,255,0) 65%);
  mix-blend-mode: overlay;
  pointer-events:none;
}

.btn:hover::after{
  opacity:.55;
}

/* Premium micro lift refinement */
.btn:hover{
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn::after{display:none;}
}


/* Gallery Lightbox */
.glb{position:fixed; inset:0; z-index:9999; display:none;}
.glb[aria-hidden="false"]{display:block;}
.glb__backdrop{position:absolute; inset:0; background: rgba(0,0,0,.55); backdrop-filter: blur(6px);}
.glb__dialog{
  position:relative;
  width:min(980px, calc(100% - 32px));
  margin: 6vh auto;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  overflow:hidden;
}
.glb__header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.glb__title{font-weight:700;}
.glb__count{opacity:.7; font-size:.92rem;}
.glb__close{
  position:absolute; top:10px; right:12px;
  width:40px; height:40px; border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  cursor:pointer;
}
.glb__stage{
  position:relative;
  padding: 14px 18px 10px;
  display:flex; align-items:center; justify-content:center;
}
.glb__img{
  width:100%;
  max-height: 62vh;
  object-fit: contain;
  border-radius: 18px;
  background: #f7f3ee;
}
.glb__nav{
  position:absolute; top:50%; transform: translateY(-50%);
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.9);
  cursor:pointer;
  font-size: 26px;
  display:flex; align-items:center; justify-content:center;
}
.glb__nav--prev{left: 22px;}
.glb__nav--next{right: 22px;}

.glb__thumbs{
  display:flex; gap:10px;
  padding: 10px 18px 18px;
  overflow:auto;
  border-top: 1px solid var(--line);
}
.glb__thumb{
  border:1px solid var(--line);
  background:#fff;
  border-radius: 14px;
  padding:0;
  overflow:hidden;
  width:84px;
  height:64px;
  flex: 0 0 auto;
  cursor:pointer;
  opacity:.9;
}
.glb__thumb img{width:100%; height:100%; object-fit:cover; display:block;}
.glb__thumb.is-active{opacity:1; outline:2px solid rgba(0,0,0,.12);}

body.glb-open{overflow:hidden;}
@media (max-width: 640px){
  .glb__dialog{margin: 3.5vh auto; border-radius: 18px;}
  .glb__nav--prev{left: 10px;}
  .glb__nav--next{right: 10px;}
  .glb__thumb{width:72px; height:56px;}
}


/* Clickable gallery cards */
.card[data-gallery-open]{cursor:pointer;}
.card[data-gallery-open]:focus{outline: 2px solid rgba(0,0,0,.14); outline-offset: 2px;}


/* Service image frame */
.img-frame{
  width:100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:#f7f3ee;
}
.img-frame img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}


/* Price table */
.card-full{margin-top:18px;}
.price-wrap{margin-top:10px;}
.price-main{margin:18px 0 8px; font-size:1.2rem;}
.price-group{margin:14px 0 6px; font-size:1.05rem; opacity:.9;}
.price-note{margin:0 0 10px; opacity:.8; font-style: italic;}
.price-list{display:flex; flex-direction:column; gap:10px; margin-bottom:10px;}
.price-row{
  display:flex; gap:14px; align-items:flex-start; justify-content:space-between;
  padding: 10px 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
}
.price-left{min-width: 0; flex: 1;}
.price-name{font-weight:700; line-height:1.25;}
.price-desc{opacity:.82; margin-top:4px; font-size:.95rem; line-height:1.35;}
.price-val{white-space:nowrap; font-weight:700; opacity:.92;}
.price-actions{margin-top:14px;}
@media (max-width: 520px){
  .price-row{flex-direction:column; align-items:flex-start;}
  .price-val{margin-top:6px;}
}


/* Price accordion */
.price-acc{margin-top:10px;}
.price-acc__summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 9px 12px;
  cursor:pointer;
  user-select:none;
}
.price-acc__summary::-webkit-details-marker{display:none;}
.price-acc__left{min-width:0;}
.price-acc__title{font-weight:800; font-size:1.15rem; line-height:1.2; margin-top:3px;}
.price-acc__hint{opacity:.7; font-size:.92rem; margin-top:2px;}
.price-acc__right{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.price-acc__chev{
  width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  transition: transform 220ms ease;
}
.price-acc[open] .price-acc__chev{transform: rotate(180deg);}
.price-acc__content{padding-top: 0;}

/* Price table tighter */
.price-wrap{margin-top:0;}
.price-main{margin:16px 0 6px; font-size:1.15rem;}
.price-group{margin:12px 0 6px; font-size:1.02rem;}
.price-note{margin:0 0 8px; opacity:.8; font-style: italic; line-height:1.35;}
.price-list{gap:8px; margin-bottom:8px;}
.price-row{padding: 9px 11px; gap:12px;}
.price-desc{margin-top:3px; font-size:.93rem; line-height:1.32;}
.price-actions{margin-top:12px;}

/* Keep header summary layout tidy on small screens */
@media (max-width: 720px){
  .price-acc__summary{flex-direction:column; align-items:flex-start;}
  .price-acc__right{width:100%; justify-content:space-between;}
}


/* WhatsApp button (styled like other WA CTAs) */
.btn-wa{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn-wa .wa-icon{
  width:18px;
  height:18px;
  opacity:.9;
}


/* Prices page: visually center content inside the two top cards */
.preise-page .grid.grid-2 .card .pad{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height: 190px;
}
@media (max-width: 900px){
  .preise-page .grid.grid-2 .card .pad{min-height: unset;}
}


/* Nudge Beratung anfragen down a touch for better balance */
.preise-page .grid.grid-2 .card:nth-child(2) .pad{
  padding-top: 20px;
  padding-bottom: 20px;
}
.preise-page .grid.grid-2 .card:nth-child(1) .pad{
  padding-top: 20px;
  padding-bottom: 20px;
}


/* Prices page: place accordion directly under the two cards with matching rhythm */
.preise-page .price-acc-wrap{margin-top:18px;}
.preise-page .price-acc{margin-top:0 !important;}


/* Header scissor scroll gimmick (subtle, premium) */
.header-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.header-scissor{
  width: 34px;
  height: 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--ink);
  opacity: .92;
  transition: opacity 220ms ease, transform 220ms ease;
          margin-left: 2px;
}


.header-scissor:hover{opacity:.8; transform: translateY(-1px);}
.scissor-svg{width:100%; height:100%;}
.scissor-part{transition: transform 140ms ease;}
@media (max-width: 520px){
  .header-scissor{width:36px; height:36px; opacity:.5;}
}


/* Scissor parts pivot at hinge */
.scissor-top, .scissor-bottom{
  transform-origin: 30px 36px;
}
.header-scissor.is-snipping{opacity: .95;}
