
:root{
  --bg:#0a0d10;
  --bg-soft:#11161c;
  --panel:#151c23;
  --panel-2:#10161d;
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.16);
  --text:#f2ede3;
  --muted:#b9b0a0;
  --gold:#c8a76a;
  --gold-soft:#8c734b;
  --accent:#8a5e35;
  --danger:#7e3434;
  --success:#3f6b57;
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --radius:22px;
  --max:1280px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(200,167,106,.08), transparent 24%),
    linear-gradient(180deg,#090b0d 0%, #0d1116 100%);
  color:var(--text);
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(calc(100% - 32px), var(--max)); margin-inline:auto}
.topbar{
  background:#0b0f13;
  border-bottom:1px solid var(--line);
  font-size:13px;
  color:var(--muted);
}
.topbar .container{
  display:flex; gap:18px; justify-content:space-between; align-items:center;
  padding:10px 0; flex-wrap:wrap;
}
.topbar-links{display:flex; gap:14px; flex-wrap:wrap}
.site-header{
  position:sticky; top:0; z-index:40;
  background:rgba(10,13,16,.86); backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.site-header .container{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;
  gap:24px;
  padding:16px 0;
}
.brand{display:flex; align-items:center; gap:14px; min-width:0; justify-self:start}
.brand img{width:56px;height:56px;object-fit:contain}
.brand-text strong{
  display:block; font-size:19px; letter-spacing:.04em;
}
.brand-text span{
  display:block; color:var(--muted); font-size:13px;
}
.main-nav{display:flex; gap:22px; align-items:center; justify-self:center}
.main-nav a{color:var(--muted); font-weight:500}
.main-nav a:hover,.main-nav a.active{color:var(--text)}
.header-actions{display:flex; gap:12px; align-items:center; justify-content:flex-end; justify-self:end}
.button, button{
  appearance:none; border:none; cursor:pointer;
  border-radius:999px; padding:13px 18px;
  background:linear-gradient(180deg,#d1b07a,#ab8655);
  color:#17110a; font-weight:700; letter-spacing:.01em;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
}
.button.secondary, button.secondary{
  background:transparent; border:1px solid var(--line-strong); color:var(--text);
  box-shadow:none;
}
.button.ghost, button.ghost{
  background:transparent; color:var(--muted); border:1px solid var(--line);
  box-shadow:none;
}
.mobile-toggle{display:none}
.mobile-drawer{
  display:none; position:fixed; inset:76px 16px auto 16px; z-index:45;
  background:rgba(18,24,31,.98); border:1px solid var(--line-strong);
  border-radius:24px; padding:18px; box-shadow:var(--shadow);
}
.mobile-drawer nav{display:grid; gap:12px}
.mobile-drawer a{padding:12px 10px; border-radius:12px; color:var(--text)}
.mobile-drawer a:hover{background:rgba(255,255,255,.04)}
.hero{
  position:relative; isolation:isolate;
  min-height:70svh;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8,10,12,.84) 0%, rgba(8,10,12,.62) 40%, rgba(8,10,12,.35) 100%),
    url('../images/hero-bg.png') center/cover no-repeat;
}
.hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 0%, rgba(10,13,16,.85) 100%);
  z-index:-1;
}
.hero .container{
  display:grid; grid-template-columns:1.1fr .9fr; gap:28px; align-items:center;
  min-height:70svh; padding:68px 0;
}
.hero-copy h1{
  margin:0 0 18px; font-size:clamp(2.2rem,5vw,4.6rem); line-height:.95;
  font-family: "Cormorant Garamond", Georgia, serif; font-weight:700;
}
.hero-copy p{
  color:var(--muted); font-size:18px; line-height:1.7; max-width:700px; margin:0 0 26px;
}
.hero-badges{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:24px}
.badge{
  padding:9px 13px; border-radius:999px; border:1px solid var(--line-strong);
  background:rgba(15,20,26,.58); color:var(--text); font-size:13px;
}
.hero-card{
  background:rgba(17,22,28,.72); border:1px solid var(--line);
  border-radius:var(--radius); padding:26px; box-shadow:var(--shadow);
}
.hero-card h3{margin:0 0 10px; font-size:24px; font-family: "Cormorant Garamond", Georgia, serif}
.hero-card p{margin:0 0 16px; color:var(--muted); line-height:1.65}
.hero-card ul{margin:0; padding-left:20px; color:var(--muted); line-height:1.8}
.section{padding:72px 0}
.section-head{
  display:flex; align-items:end; justify-content:space-between; gap:18px; margin-bottom:28px; flex-wrap:wrap;
}
.section-head h2{
  margin:0 0 8px; font-size:clamp(1.8rem,3vw,3rem); font-family:"Cormorant Garamond", Georgia, serif;
}
.section-head p{margin:0; color:var(--muted); max-width:760px; line-height:1.7}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:18px}
.feature-card,.product-card,.info-card,.legal-card{
  background:linear-gradient(180deg, rgba(22,28,35,.96), rgba(14,18,23,.96));
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.feature-card{padding:26px}
.feature-card h3,.info-card h3{margin:0 0 10px; font-size:24px; font-family:"Cormorant Garamond", Georgia, serif}
.feature-card p,.info-card p{margin:0; color:var(--muted); line-height:1.7}
.product-card{display:flex; flex-direction:column}
.product-image-wrap{aspect-ratio:4/3; background:#0d1116; overflow:hidden}
.product-image-wrap img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease}
.product-card:hover .product-image-wrap img{transform:scale(1.04)}
.product-content{padding:20px; display:flex; flex-direction:column; gap:12px; height:100%}
.product-content h3{margin:0; font-size:21px; line-height:1.25}
.product-price{color:var(--gold); font-weight:700; font-size:18px}
.product-meta,.tag-list{display:flex; flex-wrap:wrap; gap:8px}
.meta-pill,.tag{
  padding:7px 10px; border-radius:999px; border:1px solid var(--line);
  color:var(--muted); font-size:12px;
}
.product-content p{margin:0; color:var(--muted); line-height:1.65}
.product-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:auto}
.showcase{
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
.showcase-panel{
  background:linear-gradient(180deg, rgba(22,28,35,.96), rgba(14,18,23,.96));
  border:1px solid var(--line); border-radius:var(--radius); padding:28px;
}
.showcase-panel h3{margin:0 0 12px; font-size:28px; font-family:"Cormorant Garamond", Georgia, serif}
.showcase-panel p, .showcase-panel li{color:var(--muted); line-height:1.75}
.showcase-panel ul{margin:12px 0 0; padding-left:20px}
.catalog-toolbar{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:space-between; align-items:center; margin-bottom:18px;
}
.search{
  display:flex; align-items:center; gap:10px; min-width:min(100%, 340px);
  background:rgba(20,25,31,.8); border:1px solid var(--line); border-radius:999px; padding:12px 14px;
}
.search input{
  width:100%; background:transparent; border:none; color:var(--text); font:inherit; outline:none;
}
.filters{display:flex; gap:10px; flex-wrap:wrap}
.filter-btn{
  border-radius:999px; padding:10px 14px; border:1px solid var(--line); background:transparent; color:var(--muted); cursor:pointer;
}
.filter-btn.active,.filter-btn:hover{background:rgba(255,255,255,.04); color:var(--text)}
.about-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:18px;
}
.about-photo{
  min-height:380px; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10,13,16,.08), rgba(10,13,16,.32)),
    url('../images/about-handcarved.jpeg') center/cover no-repeat;
  background-position:center center;
}
.info-card{padding:24px}
.contact-grid{
  display:grid; grid-template-columns:1fr .9fr; gap:18px;
}
.form-card,.footer{
  background:linear-gradient(180deg, rgba(22,28,35,.96), rgba(14,18,23,.96));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.form-card{padding:26px}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.form-field{display:grid; gap:8px}
.form-field label{color:var(--muted); font-size:14px}
.form-field input,.form-field textarea{
  background:rgba(10,13,16,.8); border:1px solid var(--line); color:var(--text); border-radius:16px; padding:14px 16px; font:inherit; outline:none;
}
.form-field textarea{min-height:160px; resize:vertical}

.contact-panel{
  padding:26px;
}
.contact-panel h3{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2rem;
}
.contact-highlight{
  margin-top:20px;
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(200,167,106,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}
.contact-kicker{
  display:inline-flex;
  align-items:center;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(200,167,106,.2);
  color:var(--gold);
  background:rgba(200,167,106,.06);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.contact-highlight h4{
  margin:14px 0 10px;
  font-size:1.8rem;
  font-family:"Cormorant Garamond", Georgia, serif;
}
.contact-highlight p{
  margin:0;
}
.contact-highlight-meta{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.contact-highlight-meta span{
  color:var(--text);
  font-weight:700;
  letter-spacing:.02em;
}
.contact-method-list{
  margin-top:20px;
  display:grid;
  gap:12px;
}
.contact-method-item{
  display:grid;
  gap:6px;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.contact-method-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}
.contact-method-item strong{
  color:var(--text);
  font-size:15px;
}
.contact-method-item span,
.contact-method-item a{
  color:var(--muted);
  text-decoration:none;
}
.contact-method-item a:hover,
.contact-inline-links a:hover{
  color:var(--text);
}
.contact-inline-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.footer{margin:72px auto 24px; padding:28px}
.footer-grid{
  display:grid; grid-template-columns:1.2fr .8fr .8fr .8fr; gap:18px;
}
.footer h4{margin:0 0 10px; font-size:18px}
.footer p,.footer li,.footer a{color:var(--muted); line-height:1.7}
.footer ul{margin:0; padding-left:18px}
.footer-bottom{
  border-top:1px solid var(--line); margin-top:18px; padding-top:18px; color:var(--muted); font-size:13px;
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.page-hero{
  padding:60px 0 28px; border-bottom:1px solid var(--line);
}
.page-hero h1{
  margin:0 0 10px; font-size:clamp(2rem,4vw,3.6rem); font-family:"Cormorant Garamond", Georgia, serif;
}
.page-hero p{margin:0; color:var(--muted); line-height:1.7; max-width:900px}
.legal-layout{
  display:grid; grid-template-columns:.7fr 1.3fr; gap:18px;
}
.legal-card{padding:24px}
.legal-card h2,.legal-card h3{
  margin:0 0 14px; font-family:"Cormorant Garamond", Georgia, serif;
}
.legal-card p,.legal-card li{color:var(--muted); line-height:1.8}
.legal-card ul{padding-left:20px}
.modal{
  position:fixed; inset:0; background:rgba(6,8,10,.72); backdrop-filter:blur(6px);
  display:none; align-items:center; justify-content:center; padding:20px; z-index:80;
}
.modal.visible{display:flex}
.modal-card{
  width:min(1080px,100%); max-height:90vh; overflow:auto;
  background:linear-gradient(180deg, rgba(22,28,35,.98), rgba(14,18,23,.98));
  border:1px solid var(--line-strong); border-radius:28px; box-shadow:var(--shadow); padding:24px;
}
.modal-grid{display:grid; grid-template-columns:1fr .9fr; gap:22px}
.modal-main-image{aspect-ratio:4/3; border-radius:22px; overflow:hidden; border:1px solid var(--line)}
.modal-main-image img{width:100%; height:100%; object-fit:cover}
.gallery-strip{display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:10px}
.gallery-thumb{
  border-radius:14px; overflow:hidden; border:1px solid var(--line); aspect-ratio:1/1; cursor:pointer;
}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}
.modal-copy h2{
  margin:0 0 8px; font-size:clamp(1.6rem,3vw,2.5rem); font-family:"Cormorant Garamond", Georgia, serif;
}
.modal-copy p{color:var(--muted); line-height:1.8}
.modal-close{
  position:sticky; top:0; margin-left:auto; display:block; background:transparent; color:var(--muted); border:1px solid var(--line); padding:10px 14px;
}
.empty-state{
  padding:34px; text-align:center; border:1px dashed var(--line); border-radius:22px; color:var(--muted);
}
@media (max-width: 1080px){
  .hero .container,.showcase,.about-grid,.contact-grid,.legal-layout,.modal-grid,.footer-grid{grid-template-columns:1fr}
  .grid-4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 820px){
  .main-nav,.header-actions .desktop-only{display:none}
  .site-header .container{
    grid-template-columns:minmax(0,1fr) auto;
    gap:14px;
  }
  .mobile-toggle{
    display:inline-flex;
    width:auto;
    min-width:0;
    white-space:nowrap;
    padding:12px 18px;
    justify-content:center;
  }
  .mobile-drawer.open{display:block}
  .hero .container{padding:44px 0; min-height:auto}
  .section{padding:54px 0}
  .grid-3,.grid-4,.form-grid,.gallery-strip{grid-template-columns:1fr}
  .brand{gap:12px}
  .brand img{width:48px;height:48px}
  .brand-text strong{font-size:1.16rem; line-height:.9}
  .brand-text span{font-size:10px; line-height:1.35}
}
@media (max-width: 560px){
  .container{width:min(calc(100% - 24px), var(--max))}
  .site-header .container{padding:12px 0; gap:10px}
  .brand img{width:42px;height:42px}
  .brand-text strong{font-size:1.02rem; letter-spacing:.03em}
  .brand-text span{display:none}
  .mobile-toggle{padding:11px 16px; font-size:15px}
  .hero-copy p{font-size:16px}
  .button,button{width:100%; justify-content:center}
  .mobile-toggle{width:auto}
  .product-actions,.hero-badges,.filters,.catalog-toolbar,.section-head{flex-direction:column; align-items:stretch}
  .search{min-width:100%}
}


.social-links{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:8px;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  text-decoration:none;
  line-height:1.4;
}
.social-link svg{
  width:18px;
  height:18px;
  flex:0 0 18px;
}
.social-link:hover{
  color:var(--text);
}


.reviews-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.review-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:0 16px 42px rgba(0,0,0,.22);
}
.review-stars{
  font-size:18px;
  letter-spacing:.14em;
  margin-bottom:14px;
}
.review-text{
  margin:0 0 16px;
  color:var(--text);
  line-height:1.8;
}
.review-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.review-meta strong{
  font-size:15px;
}
.review-meta span{
  color:var(--muted);
  font-size:13px;
}
@media (max-width: 900px){
  .reviews-grid{
    grid-template-columns:1fr;
  }
}


.form-note{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}



/* Startseite: eigener Hero-Hintergrund */
.home-hero{
  background:
    linear-gradient(90deg, rgba(6,8,10,.92) 0%, rgba(6,8,10,.74) 42%, rgba(6,8,10,.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.42)),
    url('../images/start-hero-yggdrasil-bg.jpeg') center center / cover no-repeat;
}

.home-hero .hero-copy,
.home-hero .hero-card{
  position:relative;
  z-index:1;
}

@media (max-width: 900px){
  .home-hero{
    background:
      linear-gradient(180deg, rgba(6,8,10,.88) 0%, rgba(6,8,10,.72) 40%, rgba(6,8,10,.62) 100%),
      linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.42)),
      url('../images/start-hero-yggdrasil-bg.jpeg') 58% center / cover no-repeat;
  }
}

@media (max-width: 640px){
  .home-hero{
    background:
      linear-gradient(180deg, rgba(6,8,10,.90) 0%, rgba(6,8,10,.76) 44%, rgba(6,8,10,.64) 100%),
      linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.42)),
      url('../images/start-hero-yggdrasil-bg.jpeg') 63% center / cover no-repeat;
  }
}


.section-tight{
  padding-top:0;
}

.section-head h2::after,
.showcase-panel h3::after,
.hero-card h3::after,
.craft-point h3::after,
.process-card h3::after{
  content:"";
  display:block;
  width:72px;
  height:1px;
  margin-top:12px;
  background:linear-gradient(90deg, rgba(200,167,106,.9), rgba(200,167,106,0));
}

 .craft-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:-24px;
}
.craft-point,
.process-card{
  position:relative;
  padding:24px;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(24,31,39,.96), rgba(12,16,21,.98));
  box-shadow:0 18px 42px rgba(0,0,0,.24);
}
.craft-point::before,
.process-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(135deg, rgba(200,167,106,.08), transparent 34%);
  pointer-events:none;
}
.craft-kicker,
.process-number{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(200,167,106,.18);
  background:rgba(200,167,106,.08);
  color:var(--gold);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.craft-point h3,
.process-card h3{
  margin:16px 0 10px;
  font-size:24px;
  font-family:"Cormorant Garamond", Georgia, serif;
}
.craft-point p,
.process-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.craft-point{
  display:block;
  text-decoration:none;
  color:var(--text);
}
.craft-point--image{
  padding:0;
  overflow:hidden;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.craft-point--image::before{
  background:
    linear-gradient(135deg, rgba(200,167,106,.14), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  z-index:0;
}
.craft-image{
  position:relative;
  display:block;
  height:210px;
  z-index:1;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.craft-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.94) brightness(.86);
  transition:transform .35s ease;
}
.craft-body{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:0;
  padding:22px 22px 24px;
  min-height:250px;
  background:linear-gradient(180deg, rgba(21,27,34,.96), rgba(12,16,21,.98));
}
.craft-body p{
  color:var(--muted);
}
.craft-link{
  margin-top:auto;
  padding-top:16px;
  display:inline-flex;
  align-items:center;
  color:var(--gold);
  font-size:13px;
  letter-spacing:.04em;
}
.craft-link::after{
  content:"→";
  margin-left:8px;
  transition:transform .2s ease;
}
.craft-point--image:hover{
  transform:translateY(-3px);
  border-color:var(--line-strong);
  box-shadow:0 22px 52px rgba(0,0,0,.32);
}
.craft-point--image:hover .craft-link::after{
  transform:translateX(4px);
}
.craft-point--image:hover .craft-image img{
  transform:scale(1.04);
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.process-number{
  font-weight:700;
}

.product-card{
  position:relative;
  transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.product-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:var(--radius);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
  pointer-events:none;
}
.product-card:hover{
  transform:translateY(-6px);
  border-color:rgba(200,167,106,.22);
  box-shadow:0 24px 56px rgba(0,0,0,.34);
}
.product-image-wrap{
  position:relative;
}
.product-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 42%, rgba(8,10,12,.16) 100%);
  pointer-events:none;
}
.product-content h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:28px;
  line-height:1.05;
}
.meta-pill{
  color:var(--text);
  background:rgba(255,255,255,.03);
}
.tag{
  background:rgba(255,255,255,.02);
}
.footer h4::after{
  content:"";
  display:block;
  width:54px;
  height:1px;
  margin-top:10px;
  background:linear-gradient(90deg, rgba(200,167,106,.78), rgba(200,167,106,0));
}

@media (max-width: 1080px){
  .craft-strip,
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 820px){
  .craft-strip,
  .process-grid{
    grid-template-columns:1fr;
  }
  .craft-strip{
    margin-top:-8px;
  }
}


/* Letzter Feinschliff: Produktgalerie & Bewertungen */
.product-card{
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,.01)),
    linear-gradient(180deg, rgba(22,28,35,.98), rgba(14,18,23,.98));
}
.product-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:var(--radius);
  background:linear-gradient(135deg, rgba(200,167,106,.07), transparent 34%);
  pointer-events:none;
  opacity:.8;
}
.product-card:hover .product-image-wrap img{
  transform:scale(1.055);
}
.product-image-wrap{
  border-bottom:1px solid rgba(255,255,255,.045);
}
.product-content{
  position:relative;
}
.product-content::before{
  content:"";
  display:block;
  width:58px;
  height:1px;
  margin:0 0 16px;
  background:linear-gradient(90deg, rgba(200,167,106,.82), rgba(200,167,106,0));
}
.product-meta{
  gap:8px;
}
.product-actions .button.ghost{
  border-color:rgba(200,167,106,.16);
}
.product-actions .button.ghost:hover{
  border-color:rgba(200,167,106,.3);
}
.review-card{
  position:relative;
  overflow:hidden;
}
.review-card::before{
  content:"“";
  position:absolute;
  right:18px;
  top:8px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:74px;
  line-height:1;
  color:rgba(200,167,106,.12);
  pointer-events:none;
}
.review-card:hover{
  border-color:rgba(200,167,106,.2);
  box-shadow:0 20px 46px rgba(0,0,0,.26);
}
.review-stars{
  color:var(--gold);
}


/* v15.43 stronger premium mystic polish */
:root{
  --shadow-soft:0 18px 40px rgba(0,0,0,.32);
  --shadow-deep:0 26px 68px rgba(0,0,0,.44);
  --gold-bright:#dfc089;
  --gold-deep:#8f6b3a;
}
body{
  background:
    radial-gradient(circle at 12% 0%, rgba(223,192,137,.12), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(104,76,43,.12), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(223,192,137,.05), transparent 26%),
    linear-gradient(180deg, #080a0d 0%, #0c1117 42%, #090d12 100%);
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.02), transparent 24%),
    linear-gradient(315deg, rgba(223,192,137,.025), transparent 28%);
  opacity:.9;
  z-index:-1;
}
.topbar{
  background:linear-gradient(180deg, rgba(10,13,17,.98), rgba(7,10,13,.94));
  border-bottom:1px solid rgba(223,192,137,.10);
}
.site-header{
  background:linear-gradient(180deg, rgba(9,12,16,.92), rgba(9,12,16,.84));
  border-bottom:1px solid rgba(223,192,137,.12);
  box-shadow:0 12px 34px rgba(0,0,0,.22);
}
.brand img{
  filter:drop-shadow(0 6px 18px rgba(0,0,0,.24));
}
.brand-text strong{
  letter-spacing:.07em;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.5rem;
}
.brand-text span{
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:11px;
}
.main-nav{
  gap:28px;
}
.main-nav a{
  position:relative;
  color:#d2c7b5;
  font-size:15px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-11px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(223,192,137,.95), transparent);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .22s ease;
}
.main-nav a:hover,
.main-nav a.active{
  color:var(--text);
}
.main-nav a:hover::after,
.main-nav a.active::after{
  transform:scaleX(1);
}
.header-actions{
  gap:14px;
}
.button, button{
  position:relative;
  overflow:hidden;
  padding:14px 21px;
  background:linear-gradient(180deg, #e4c995 0%, #be965f 52%, #9c7648 100%);
  color:#120d07;
  box-shadow:0 16px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.45);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button::before, button::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background:linear-gradient(180deg, rgba(255,255,255,.18), transparent 32%);
  pointer-events:none;
}
.button:hover, button:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 42px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.48);
  filter:saturate(1.04);
}
.button.secondary, button.secondary,
.button.ghost, button.ghost{
  color:var(--text);
  background:linear-gradient(180deg, rgba(28,35,43,.96), rgba(13,17,22,.96));
  border:1px solid rgba(223,192,137,.18);
  box-shadow:var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.04);
}
.button.secondary:hover, button.secondary:hover,
.button.ghost:hover, button.ghost:hover{
  border-color:rgba(223,192,137,.34);
}
.hero,
.home-hero{
  box-shadow:inset 0 -80px 120px rgba(0,0,0,.34);
}
.hero-copy h1{
  text-shadow:0 10px 28px rgba(0,0,0,.34);
  letter-spacing:.015em;
}
.hero-copy p,
.section-head p,
.feature-card p,
.info-card p,
.legal-card p,
.legal-card li,
.product-content p,
.showcase-panel p,
.showcase-panel li,
.contact-panel p,
.review-text{
  color:#c5bba9;
}
.badge,
.meta-pill,
.tag,
.filter-btn,
.contact-kicker,
.process-number,
.craft-kicker{
  background:linear-gradient(180deg, rgba(223,192,137,.10), rgba(223,192,137,.04));
  border-color:rgba(223,192,137,.18);
}
.hero-card,
.feature-card,
.product-card,
.info-card,
.legal-card,
.form-card,
.footer,
.showcase-panel,
.review-card,
.contact-highlight,
.process-card,
.craft-point,
.modal-card{
  border-color:rgba(223,192,137,.12);
  box-shadow:var(--shadow-deep);
}
.hero-card,
.showcase-panel,
.form-card,
.footer,
.legal-card,
.info-card,
.feature-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.008)),
    linear-gradient(180deg, rgba(19,24,31,.98), rgba(11,15,20,.98));
}
.hero-card h3,
.section-head h2,
.feature-card h3,
.info-card h3,
.showcase-panel h3,
.modal-copy h2,
.legal-card h2,
.legal-card h3,
.contact-panel h3,
.contact-highlight h4,
.product-content h3,
.footer h4,
.page-hero h1{
  letter-spacing:.02em;
}
.section-head{
  margin-bottom:34px;
}
.section-head h2::after,
.showcase-panel h3::after,
.hero-card h3::after,
.craft-point h3::after,
.process-card h3::after,
.footer h4::after,
.product-content::before{
  height:1px;
  background:linear-gradient(90deg, rgba(223,192,137,.98), rgba(223,192,137,.22), rgba(223,192,137,0));
}
.craft-point--image,
.product-card,
.review-card,
.gallery-thumb,
.modal-main-image,
.about-photo,
.form-card,
.legal-card,
.showcase-panel,
.info-card,
.feature-card{
  backdrop-filter:blur(2px);
}
.craft-point--image{
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.008)),
    linear-gradient(180deg, rgba(20,25,31,.98), rgba(11,15,20,.98));
}
.craft-body{
  background:
    linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.008)),
    linear-gradient(180deg, rgba(18,23,29,.98), rgba(10,13,18,.98));
}
.craft-image img{
  filter:saturate(.98) contrast(1.04) brightness(.84);
}
.product-card:hover,
.review-card:hover,
.craft-point--image:hover,
.info-card:hover,
.feature-card:hover{
  transform:translateY(-7px);
  border-color:rgba(223,192,137,.22);
  box-shadow:0 30px 74px rgba(0,0,0,.42);
}
.feature-card,
.info-card{
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.filter-btn{
  color:#d6c8b4;
}
.filter-btn.active,
.filter-btn:hover{
  border-color:rgba(223,192,137,.26);
  box-shadow:inset 0 0 0 1px rgba(223,192,137,.06);
}
.search,
.form-field input,
.form-field textarea{
  background:linear-gradient(180deg, rgba(9,12,16,.94), rgba(13,17,22,.92));
  border-color:rgba(223,192,137,.12);
}
.form-field input:focus,
.form-field textarea:focus,
.search:focus-within{
  border-color:rgba(223,192,137,.32);
  box-shadow:0 0 0 4px rgba(223,192,137,.06);
}
.modal{
  background:rgba(4,6,8,.78);
}
.modal-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.008)),
    linear-gradient(180deg, rgba(18,23,29,.99), rgba(9,12,17,.99));
}
.footer{
  position:relative;
  overflow:hidden;
}
.footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(223,192,137,.08), transparent 28%);
  pointer-events:none;
}
.footer-bottom{
  border-top-color:rgba(223,192,137,.10);
}
.page-hero{
  background:linear-gradient(180deg, rgba(223,192,137,.035), transparent 68%);
}
@media (max-width: 820px){
  .main-nav a{font-size:14px; letter-spacing:.07em}
  .main-nav a::after{bottom:-8px}
}


/* v15.44 product page refinement */
.product-content h3{
  font-size:clamp(1.65rem, 2vw, 2.15rem);
  line-height:1.02;
  text-wrap:balance;
}
.product-content p{
  margin:10px 0 0;
  color:var(--text);
  opacity:.86;
  line-height:1.65;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.product-meta{display:none;}
.product-actions{
  margin-top:18px;
}
.modal-copy{
  padding-right:4px;
}
.modal-copy h2{
  margin-bottom:12px;
}
#modalShort{
  margin:0 0 18px;
  color:var(--text);
  opacity:.88;
}
#modalDescription{
  display:block;
}
#modalDescription h4{
  margin:20px 0 8px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.32rem;
  color:var(--heading);
}
#modalDescription p{
  margin:0 0 14px;
  color:var(--text);
  opacity:.9;
  line-height:1.78;
}
.modal-list{
  margin:0 0 16px 0;
  padding-left:20px;
  color:var(--text);
  opacity:.9;
}
.modal-list li{
  margin:0 0 8px;
  line-height:1.72;
}
#modalMaterials{display:none;}


/* Etsy-inspired gold title treatment */
.brand-text strong{
  position:relative;
  display:block;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-weight:700;
  letter-spacing:.06em;
  line-height:.92;
  color:transparent;
  background:linear-gradient(180deg,#f1d894 0%, #e3be68 28%, #c89b42 56%, #f4de9e 100%);
  -webkit-background-clip:text;
  background-clip:text;
  text-shadow:
    0 1px 0 rgba(255,240,196,.18),
    0 0 1px rgba(255,223,154,.30),
    0 10px 22px rgba(0,0,0,.26);
}
.brand-text strong::after{display:none;}
.home-hero h1{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-weight:700;
  line-height:.88;
  letter-spacing:-.03em;
  color:transparent;
  background:linear-gradient(180deg,#f7e8be 0%, #f0d697 24%, #ddb86c 46%, #c8963c 70%, #f1d895 100%);
  -webkit-background-clip:text;
  background-clip:text;
  text-shadow:
    0 1px 0 rgba(255,243,210,.28),
    0 0 1px rgba(255,224,150,.30),
    0 18px 34px rgba(0,0,0,.28);
}
@media (max-width: 900px){
  .brand-text strong{
    font-size:1.28rem;
    letter-spacing:.04em;
  }
  .home-hero h1{
    line-height:.92;
  }
}


/* Kontaktformular Live-Versand */
.form-status{display:none; margin:0 0 18px; padding:14px 16px; border-radius:14px; border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.03); line-height:1.5}
.form-status.is-visible{display:block}
.form-status.is-success{border-color:rgba(125,190,120,.35); background:rgba(78,120,74,.18); color:#e8f6e6}
.form-status.is-error{border-color:rgba(200,120,120,.35); background:rgba(120,58,58,.2); color:#fdeeee}
.form-honeypot{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}
button[disabled]{opacity:.72; cursor:wait}



.cookie-consent {
  position: fixed;
  inset: auto 18px 18px 18px;
  z-index: 1200;
  display: none;
}

.cookie-consent.visible {
  display: block;
}

.cookie-consent-backdrop {
  display: none;
}

.cookie-consent-panel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 20px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  background: rgba(13, 16, 20, 0.98);
  box-shadow: 0 20px 56px rgba(0,0,0,0.42);
}

.cookie-consent-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-size: 1.3rem;
  line-height: 1;
}

.cookie-consent-close:hover,
.cookie-consent-close:focus-visible {
  color: var(--text-main);
  border-color: rgba(255,255,255,0.24);
}

.cookie-consent-main h2 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.cookie-consent-eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-consent-text {
  margin: 0;
  max-width: 68ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.cookie-consent-links {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-consent-links a {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent-actions,
.cookie-settings-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent-actions .button,
.cookie-settings-actions .button {
  min-height: 44px;
  padding: 0.78rem 1.15rem;
  font-size: 0.95rem;
}

.cookie-consent-settings {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-consent.show-settings .cookie-consent-settings {
  display: block;
}

.cookie-setting-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cookie-setting-card strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-setting-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.cookie-switch span {
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  position: relative;
  transition: background .2s ease, border-color .2s ease;
}

.cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s ease;
}

.cookie-switch input:checked + span {
  background: rgba(199, 157, 92, 0.22);
  border-color: rgba(199, 157, 92, 0.44);
}

.cookie-switch input:checked + span::after {
  transform: translateX(24px);
}

.cookie-switch input:disabled + span {
  opacity: 0.82;
}

.consent-settings-link {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-settings-link:hover,
.consent-settings-link:focus-visible {
  color: var(--text-main);
}

@media (max-width: 760px) {
  .cookie-consent {
    inset: auto 12px 12px 12px;
  }

  .cookie-consent-panel {
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  .cookie-consent-close {
    top: 10px;
    right: 10px;
  }

  .cookie-consent-actions .button,
  .cookie-settings-actions .button {
    width: 100%;
  }

  .cookie-consent-actions,
  .cookie-settings-actions {
    flex-direction: column;
  }

  .cookie-setting-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
