/* ===========================
   DESIGN TOKENS
=========================== */
:root{
  --bg-main:#fbf7f3;
  --bg-card:rgba(255,255,255,0.75);
  --bg-soft:rgba(255,255,255,0.45);

  --ink:#3a2f2a;
  --muted:#6f5f57;

  --brand:#7a7f55;        /* Salbeigrün */
  --brand-dark:#61663f;
  --accent:#bfa58a;       /* warmes Beige */

  --border:rgba(80,60,50,.12);

  --shadow-soft:0 16px 36px rgba(32,20,16,.10);
  --shadow-strong:0 22px 48px rgba(32,20,16,.14);

  --radius-lg:28px;
  --radius-md:18px;

  --max-width:1100px;
}

/* ===========================
   RESET & BASE
=========================== */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg-main);
  color:var(--ink);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont;
  line-height:1.6;
}

img{max-width:100%;display:block}

/* ===========================
   LAYOUT CONTAINER
=========================== */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 22px;
}

/* =========================
   NAVIGATION (Entwurf-Stil)
========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;

  background-color: rgba(251, 247, 243, 0.92);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(80, 60, 50, 0.10);
}

.nav-bar{
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Logo links */
.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-badge{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  /* Look wie im Entwurf: dünner Ring, ruhige Farbe */
  border: 1.5px solid rgba(97,102,63,.45);
  background: rgba(255,255,255,.60);
  color: rgba(97,102,63,.95);

  font-family: "Reenie Beanie", cursive;
  font-size: 28px;
  line-height: 1;
}

/* Links mittig */
.main-nav{
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  flex: 1;               /* zwingt zentrierte Nav */
}

.nav-item{
  text-decoration: none;
  color: rgba(58,47,42,.88);
  font-size: 14px;
  letter-spacing: .01em;
  padding: 8px 8px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}

.nav-item:hover{
  background: rgba(255,255,255,.55);
  color: rgba(58,47,42,1);
}

.nav-item.is-active{
  background: rgba(191,165,138,.25);
  color: rgba(58,47,42,1);
}

/* CTA rechts */
.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;

  background: #6b7440;              /* Salbeigrün wie Entwurf */
  color: #fff;
  font-size: 14px;
  letter-spacing: .01em;

  box-shadow: 0 8px 18px rgba(32,20,16,.12);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .15s ease, filter .15s ease;
}

.nav-cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.nav-cta-icon{
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 980px){
  .nav-bar{
    height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .main-nav{
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .nav-cta{
    order: 2;
    margin-left: auto;
  }
}

/* ===========================
   HERO
=========================== */
.hero{
  margin-top:24px;
}

.hero .container{
  padding:0 22px;
}

.hero-image{
  position:relative;
  height:480px;
  border-radius:var(--radius-lg);
  background:
    linear-gradient(to right,
      rgba(251,247,243,.85) 0%,
      rgba(251,247,243,.65) 40%,
      rgba(251,247,243,.15) 65%,
      rgba(251,247,243,0) 100%
    ),
    url("/assets/img/hero.png") center/cover no-repeat;
  box-shadow:var(--shadow-strong);
}

.hero-card{
  position:absolute;
  top:90px;
  left:70px;
  max-width:420px;
}

.hero-title{
  font-family:"Reenie Beanie", cursive;
  font-size:48px;
  color:var(--brand-dark);
  margin:0;
}

.hero-sub{
  font-family:"Playfair Display", serif;
  font-size:26px;
  margin:6px 0;
}

.hero-name{
  font-size:13px;
  letter-spacing:.12em;
  text-transform:lowercase;
  color:var(--muted);
}

.hero-description{
  margin:16px 0;
  font-size:14px;
  color:var(--muted);
}

.btn{
  display:inline-block;
  padding:12px 22px;
  background:var(--brand);
  color:white;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
}

/* ===========================
   SECTION WRAPPER (ALLE SEITEN)
=========================== */
.section{
  padding:48px 0;
}

.section-wrap{
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  padding:32px;
}

/* ===========================
   SECTION HEADER
=========================== */
.section-header{
  text-align:center;
  margin-bottom:28px;
}

.section-header h2{
  font-family:"Reenie Beanie", cursive;
  font-size:44px;
  color:var(--brand-dark);
  margin:0;
}

.section-header p{
  font-size:14px;
  color:var(--muted);
}

/* ===========================
   ANGEBOT / TILES
=========================== */
.tiles-wrap{
  background:var(--bg-soft);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow-soft);
}

.tiles{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.tile{
  background:var(--bg-card);
  border-radius:var(--radius-md);
  overflow:hidden;
  border:1px solid var(--border);
}

.tile img{
  border-bottom:1px solid var(--border);
}

.tile-content{
  padding:18px;
}

.tile-content h3{
  font-family:"Playfair Display", serif;
  margin:0 0 8px;
}

.tile-content p{
  font-size:13px;
  color:var(--muted);
}

/* ===========================
   ABLAUF + KOSTEN
=========================== */
.process-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:24px;
}

.process-step{
  display:flex;
  gap:14px;
}

.step-number{
  width:32px;
  height:32px;
  border-radius:999px;
  background:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}

/* ===========================
   ABOUT
=========================== */
.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}

.about-photo{
  border-radius:999px;
  aspect-ratio:4/3;
  background:center/cover no-repeat;
  box-shadow:var(--shadow-soft);
}

/* ===========================
   TESTIMONIAL
=========================== */
.testimonial{
  background:var(--brand);
  color:white;
  border-radius:var(--radius-lg);
  padding:40px;
}

/* ===========================
   CTA
=========================== */
.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* ===========================
   BOOKING & CONTACT
=========================== */
.booking-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
}

.form input,
.form textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  margin-bottom:12px;
}

/* ===========================
   FOOTER – exakt wie Entwurf
=========================== */

.site-footer{
  margin-top: 80px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

/* Hintergrund */
.footer-bg{
  background:
    linear-gradient(
      rgba(110,118,80,.92),
      rgba(110,118,80,.92)
    ),
    url("assets/img/footer-bg.jpg") center/cover no-repeat;
  padding: 48px 0;
}

/* Layout */
.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* Linke Seite */
.footer-brand{
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.6);
  display: grid;
  place-items: center;

  font-family: "Reenie Beanie", cursive;
  font-size: 26px;
  color: white;
}

.footer-claim{
  margin: 0;
  line-height: 1.4;
  color: rgba(255,255,255,.85);
}

/* Mitte */
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a{
  color: rgba(255,255,255,.9);
  text-decoration: none;
}

.footer-contact span{
  color: rgba(255,255,255,.7);
}

/* Rechte Seite */
.footer-meta{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links,
.footer-social{
  display: flex;
  gap: 14px;
}

.footer-links a,
.footer-social a{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover,
.footer-social a:hover{
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer-brand{
    justify-content: center;
  }

  .footer-meta{
    align-items: center;
  }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 980px){
  .tiles{grid-template-columns:1fr}
  .process-grid,
  .about-grid,
  .booking-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }
  .hero-card{
    position:static;
    margin:40px;
  }
}