:root{
  --bg:#fbfbfb;
  --surface:#ffffff;
  --text:#1f1f1f;
  --muted:#6a6a6a;

  --accent:#6B21A8;

  --line:rgba(0,0,0,.10);
  --shadow:0 18px 40px rgba(0,0,0,.08);

  --radius:14px;
  --container:980px;

  --hero-overlay: rgba(0,0,0,.48);
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(var(--container),calc(100% - 32px));margin:0 auto}
main{padding:0 0 44px}

/* Accessibility */
.skip-link{
  position:absolute;left:-999px;top:10px;
  background:var(--surface);
  border:1px solid var(--line);
  padding:10px 12px;border-radius:10px
}
.skip-link:focus{left:16px;z-index:999}

/* Header */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(251,251,251,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:14px 0;
}
.left-wrap{display:flex;align-items:center;gap:10px;min-width:0}
.menu-btn{
  width:42px;height:42px;
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:12px;
  display:inline-grid;place-items:center;
  cursor:pointer;
  flex:0 0 auto;
}
.burger{width:18px;height:12px;display:grid;gap:3px}
.burger span{display:block;height:2px;background:var(--text);border-radius:2px;opacity:.85}

.brand{display:flex;flex-direction:column;gap:2px;min-width:0}
.brand-name{
  font-weight:800;
  font-size:18px;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-name .accent{color:var(--accent)}
.brand-sub{
  margin:0;color:var(--muted);font-size:13px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}

.header-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.pill{
  border:1px solid var(--line);
  background:var(--surface);
  padding:9px 12px;border-radius:999px;
  font-size:14px;color:var(--muted);
  white-space:nowrap;
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:12px;
  border:1px solid var(--accent);
  background:var(--accent);color:#fff;
  font-weight:700;
  cursor:pointer;
}
.btn:hover{opacity:.92;text-decoration:none}
.btn-small{padding:9px 12px;font-size:14px}
.btn-ghost{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.60);
}
.btn-ghost.dark{
  color:var(--text);
  border-color:var(--line);
}
.btn-ghost:hover{background:rgba(0,0,0,.06)}

/* Drawer */
.drawer-backdrop{
  position:fixed;inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;pointer-events:none;
  transition:opacity .2s ease;
  z-index:200;
}
.drawer{
  position:fixed;top:0;left:0;height:100%;
  width:min(340px,90vw);
  background:var(--surface);
  border-right:1px solid var(--line);
  transform:translateX(-100%);
  transition:transform .25s ease;
  z-index:210;
  padding:16px;
}
.drawer.open{transform:translateX(0)}
.drawer-backdrop.open{opacity:1;pointer-events:auto}
.drawer-head{
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;margin-bottom:10px;
}
.drawer-title{font-weight:800}
.close-btn{
  width:40px;height:40px;border-radius:12px;
  border:1px solid var(--line);
  background:var(--surface);
  cursor:pointer;
}
.nav-links{display:grid;gap:6px;margin-top:10px}
.nav-links a{
  padding:12px 12px;border-radius:12px;
  border:1px solid transparent;
  font-weight:650;
}
.nav-links a:hover{
  background:rgba(107,33,168,.06);
  text-decoration:none;
}
.drawer-cta{display:grid;gap:10px;margin-top:14px}
.drawer-note{color:var(--muted);font-size:13px;margin-top:12px}

/* HERO (für jede Seite identisch) */
.hero{
  position:relative;
  min-height:68vh;
  display:flex;
  align-items:center;
  border-bottom:1px solid var(--line);
  background: var(--hero-img, url("images/hero-naehmaschine.jpg")) center/cover no-repeat;
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:var(--hero-overlay);
}
.hero .container{position:relative;padding:44px 0}
.hero h1{
  margin:0 0 12px;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-.4px;
  color:#fff;
}
.hero .lead{
  margin:0 0 18px;
  color:rgba(255,255,255,.90);
  font-size:17px;
  max-width:680px;
}
.hero-cta{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 12px}
.badge{
  display:inline-flex;align-items:center;
  padding:7px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:13px;font-weight:700;
}
.info-line{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.28);
  display:flex;gap:14px;flex-wrap:wrap;
  color:rgba(255,255,255,.88);
  font-size:14px;
}
.info-line a{color:#fff;text-decoration:underline}

/* Content sections */
.section{padding:34px 0}
.section h2{margin:0 0 12px;font-size:26px;letter-spacing:-.2px}
.section p{margin:0 0 18px;color:var(--muted);max-width:820px}
.hr{height:1px;background:var(--line);margin:22px 0}

.list-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:10px;
}
.block h3{margin:0 0 8px;font-size:16px}
.block ul{margin:0;padding-left:18px;color:var(--muted)}
.block li{margin:6px 0}

/* Cards */
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}
.card.flat{box-shadow:none}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:18px}

/* Times */
.times{border-top:1px solid var(--line);margin-top:10px}
.times-row{
  display:flex;justify-content:space-between;gap:10px;
  padding:10px 0;border-bottom:1px solid rgba(0,0,0,.06);
}
.times-row span:first-child{color:var(--muted)}

/* Map */
.map{
  width:100%;
  height:360px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--surface);
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  color:var(--muted);
  font-size:14px;
}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.dot{margin:0 8px;color:var(--muted)}

/* Mobile */
@media (max-width: 900px){
  .container{width:calc(100% - 26px)}
  .header-actions .pill{display:none} /* auf Handy weniger clutter */
  .brand-sub{display:none}

  .hero{min-height:62vh}
  .hero h1{font-size:34px}
  .hero .container{padding:34px 0}

  .two-col{grid-template-columns:1fr}
  .list-grid{grid-template-columns:1fr}

  .hero-cta{flex-direction:column;align-items:flex-start}
  .hero-cta .btn{width:100%}
  .hero-cta .btn-ghost{width:100%}

  .map{height:320px}
}
.rating-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin:10px 0 0;
  flex-wrap:wrap;
}
.stars{
  font-size:18px;
  letter-spacing:2px;
  color:#FFD166;
  line-height:1;
}
.rating-text{
  color:rgba(255,255,255,.88);
  font-size:14px;
}
/* ===== Afghanische Kleider: Galerie ===== */
/* ===== Afghanische Kleider: Bilder einheitlich ===== */
.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:12px;
}

.gallery-item{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

/* Wichtig: Einheitliche Größe */
.gallery-item img{
  width:100%;
  height:340px;          /* gleiche Höhe für alle */
  object-fit:cover;      /* schneidet sauber zu */
  object-position:center;/* immer zentriert */
  display:block;
}

.gallery-meta{
  padding:12px 14px;
}

.gallery-title{
  margin:0;
  font-weight:800;
  font-size:15px;
}

.gallery-sub{
  margin:4px 0 0;
  color:var(--muted);
  font-size:13px;
}

@media (max-width: 900px){
  .gallery{grid-template-columns:repeat(2, 1fr)}
  .gallery-item img{height:280px}
}

@media (max-width: 520px){
  .gallery{grid-template-columns:1fr}
  .gallery-item img{height:320px}
}
