/* =========================================================
   Weinerlebnis Sulzfeld — Redesign
   Elegant / edel: dunkler Grund, Gold-Akzente, Serifen
   ========================================================= */

:root{
  --bg:            #17100e;
  --bg-alt:        #1f1512;
  --surface:       #251a16;
  --surface-2:     #2c1f1a;
  --line:          #3c2d24;
  --gold:          #c9a15a;
  --gold-light:    #e6cd93;
  --gold-dim:      #8a713f;
  --wine:          #6f1f2b;
  --wine-light:    #8f2c3a;
  --text:          #f4ece1;
  --text-muted:    #cabdae;
  --text-dim:      #9c8f81;
  --max:           1180px;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --script: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: var(--gold-light); text-decoration: none; transition: color .2s ease; }
a:hover{ color: var(--gold); }
h1, h2, h3, h4{
  font-family: var(--serif);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 .6em;
  line-height: 1.25;
}
p{ margin: 0 0 1.2em; }
.container{ max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.eyebrow{
  display:inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9em;
}
.eyebrow::before{ content:"— "; color: var(--gold-dim); }
.lead{
  font-family: var(--script);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  font-weight: 500;
}
.divider{
  width: 64px; height: 2px; background: var(--gold); border: 0;
  margin: 1.6em 0;
}
.divider.center{ margin: 1.6em auto; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .95em 2.1em;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s ease;
}
.btn:hover{ background: var(--gold); color: var(--bg); }
.btn.solid{ background: var(--gold); color: var(--bg); }
.btn.solid:hover{ background: var(--gold-light); border-color: var(--gold-light); color: var(--bg); }

/* ---------- Header / Nav ---------- */
header.site{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(15,10,8,.85), rgba(15,10,8,0));
  padding: 22px 0;
  transition: background .3s ease, padding .3s ease;
}
header.site.solid{
  background: rgba(17,11,9,.96);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand{ display: flex; align-items: center; gap: 14px; }
.brand img{ height: 40px; width: auto; filter: brightness(0) saturate(100%) invert(78%) sepia(28%) saturate(500%) hue-rotate(1deg) brightness(95%); opacity: .95; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text .name{ font-family: var(--serif); font-size: 1.25rem; letter-spacing:.03em; color: var(--text); }
.brand-text .place{ font-family: var(--script); font-style: italic; font-size: .95rem; color: var(--gold-light); }

nav.main-nav ul{
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 34px;
}
nav.main-nav a{
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a.active{ color: var(--gold-light); border-color: var(--gold); }

#navToggle{
  display: none;
  background: none; border: 1px solid var(--gold-dim); color: var(--gold-light);
  font-family: var(--sans); font-size: .8rem; letter-spacing: .1em;
  padding: 10px 14px; cursor: pointer; text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::after{
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,9,7,.55) 0%, rgba(15,9,7,.35) 40%, rgba(15,9,7,.9) 100%);
  z-index: -1;
}
.hero-inner{ padding-top: 90px; max-width: 760px; }
.hero h1{
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero .lead{ color: var(--text); font-size: clamp(1.2rem, 2vw, 1.6rem); }
.hero-cta{ margin-top: 1.6em; display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero{
  min-height: 46vh;
  display:flex; align-items:flex-end;
  background-size: cover; background-position:center;
  position: relative; isolation: isolate;
}
.page-hero::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,9,7,.35) 0%, rgba(15,9,7,.92) 100%);
  z-index:-1;
}
.page-hero .container{ padding-bottom: 3.2em; padding-top: 6em; }
.page-hero h1{ font-size: clamp(2rem, 4vw, 3rem); color:#fff; }

/* ---------- Sections ---------- */
section{ padding: 92px 0; }
section.alt{ background: var(--bg-alt); }
.section-head{ max-width: 640px; margin-bottom: 2.6em; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .divider{ margin-left:auto; margin-right:auto; }

.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col img{ border-radius: 2px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.two-col.reverse{ direction: rtl; }
.two-col.reverse > *{ direction: ltr; }

/* ---------- Cards / Angebote ---------- */
.cards{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card{
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: 2px;
  transition: transform .25s ease, border-color .25s ease;
}
.card:hover{ transform: translateY(-4px); border-color: var(--gold-dim); }
.card .num{ font-family: var(--serif); font-size: 2.2rem; color: var(--gold-dim); margin-bottom: .3em; }
.card h3{ font-size: 1.25rem; }
.card p{ color: var(--text-muted); font-size: .96rem; margin-bottom: 0; }

/* ---------- Quote / feature ---------- */
.feature-strip{
  background: var(--wine);
  background-image: linear-gradient(135deg, var(--wine) 0%, #4a1420 100%);
  padding: 70px 0;
  text-align: center;
}
.feature-strip p.lead{ color: #f5e4c9; max-width: 780px; margin: 0 auto; }
.feature-strip .eyebrow{ color: var(--gold-light); }

/* ---------- Gallery ---------- */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid a{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
}
.gallery-grid img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: saturate(.92) brightness(.94);
}
.gallery-grid a:hover img{ transform: scale(1.06); filter: saturate(1.05) brightness(1); }
.gallery-grid a::after{
  content: "\2295";
  position: absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color: var(--gold-light); font-size: 1.6rem;
  background: rgba(20,13,10,0);
  opacity: 0; transition: all .3s ease;
}
.gallery-grid a:hover::after{ opacity: 1; background: rgba(20,13,10,.28); }

.lightbox{
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,7,6,.94);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open{ display: flex; }
.lightbox img{ max-width: 100%; max-height: 85vh; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox .close{
  position: absolute; top: 26px; right: 34px;
  color: var(--gold-light); font-size: 2rem; cursor: pointer;
  font-family: var(--serif);
}
.lightbox .cap{ position:absolute; bottom: 30px; color: var(--text-muted); font-family: var(--script); font-style: italic; font-size: 1.1rem; }

/* ---------- Contact ---------- */
.contact-grid{ display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; }
.contact-card{
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 44px;
}
.contact-item{ display:flex; gap: 16px; margin-bottom: 1.6em; }
.contact-item .ico{ color: var(--gold); font-family: var(--serif); font-size: 1.1rem; width: 22px; }
.contact-item h4{ margin: 0 0 .2em; font-size: 1rem; }
.contact-item p, .contact-item a{ margin: 0; color: var(--text-muted); }
.contact-item a:hover{ color: var(--gold-light); }

/* ---------- Footer ---------- */
footer.site{
  background: #100b09;
  border-top: 1px solid var(--line);
  padding: 56px 0 30px;
}
.footer-grid{ display:flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 34px; }
.footer-brand .name{ font-family: var(--serif); font-size: 1.3rem; color: var(--text); }
.footer-brand .place{ font-family: var(--script); font-style: italic; color: var(--gold-light); }
.footer-nav ul{ list-style:none; margin:0; padding:0; display:flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a{ font-size: .82rem; letter-spacing:.08em; text-transform: uppercase; color: var(--text-muted); }
.footer-bottom{
  border-top: 1px solid var(--line); padding-top: 22px;
  display:flex; justify-content: space-between; flex-wrap:wrap; gap: 10px;
  font-size: .78rem; color: var(--text-dim);
}
.footer-bottom a{ color: var(--text-dim); }
.footer-bottom a:hover{ color: var(--gold-light); }

/* ---------- Impressum text page ---------- */
.text-page h3{ font-size: 1.3rem; color: var(--gold-light); margin-top: 1.6em; }
.text-page h4{ font-size: 1.05rem; color: var(--text); margin-top: 1.3em; }
.text-page p, .text-page li{ color: var(--text-muted); }
.text-page{ max-width: 820px; }

/* ---------- Responsive ---------- */
@media (max-width: 920px){
  nav.main-nav{
    position: fixed; top: 0; right: -320px; bottom:0;
    width: 300px; background: var(--surface);
    padding: 100px 34px; transition: right .3s ease;
    border-left: 1px solid var(--line);
  }
  nav.main-nav.open{ right: 0; }
  nav.main-nav ul{ flex-direction: column; gap: 22px; }
  #navToggle{ display: inline-block; }
  .two-col, .two-col.reverse{ grid-template-columns: 1fr; direction: ltr; }
  .cards{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  section{ padding: 64px 0; }
  .footer-grid{ flex-direction: column; }
}
                                                                                                                                                                               