/* ===========================================================
   HAWAZUZIE – Landingpage
   Farbwelt: warmes Braun (Holz) + kräftiges Grün (Logo-Slogan)
   =========================================================== */

:root {
  --braun:        #6e4a26;
  --braun-dunkel: #513418;
  --gruen:        #7cb518;
  --gruen-dunkel: #6aa011;
  --creme:        #faf6ef;
  --creme-2:      #f2ebdf;
  --text:         #3d3126;
  --text-hell:    #6b5d4d;
  --weiss:        #ffffff;
  --schatten:     0 8px 30px rgba(60, 40, 20, 0.10);
  --radius:       14px;
  --wrap:         1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--creme);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--weiss);
  border-bottom: 3px solid var(--gruen);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(60, 40, 20, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  flex-wrap: wrap;
}

.logo img { width: 240px; max-width: 60vw; height: auto; }

.header-info {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.info-block {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.info-block .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gruen-dunkel);
  font-weight: 700;
}

.info-block .value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--braun);
}

.info-block .value a {
  color: inherit;
  text-decoration: none;
}

.info-block .sub { font-size: 0.9rem; color: var(--text-hell); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background: url("images/werkstatt-1.jpg") center 40% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(40, 26, 12, 0.78) 0%,
    rgba(40, 26, 12, 0.30) 55%,
    rgba(40, 26, 12, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--weiss);
  padding: 48px 0 56px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--gruen);
  color: var(--weiss);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  max-width: 16ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

/* ---------- Sektionen ---------- */
.section { padding: 76px 0; }
.section--tint { background: var(--creme-2); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: var(--braun-dunkel);
  margin: 0 0 8px;
}

.section-head .kicker {
  color: var(--gruen-dunkel);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.section-head .divider {
  width: 64px;
  height: 4px;
  background: var(--gruen);
  border-radius: 4px;
  margin: 18px auto 0;
}

/* ---------- Intro / Werkstatt ---------- */
.intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--braun-dunkel);
  margin: 0 0 10px;
  line-height: 1.15;
}

.intro-text .kicker {
  color: var(--gruen-dunkel);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.intro-text p { color: var(--text-hell); font-size: 1.06rem; margin: 0 0 18px; }

.intro-figure img {
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 420px;
}

/* ---------- Merkmale ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--schatten);
  border-top: 4px solid var(--gruen);
}

.feature .icon { font-size: 1.9rem; margin-bottom: 10px; }
.feature h3 { margin: 0 0 8px; color: var(--braun); font-size: 1.15rem; }
.feature p { margin: 0; color: var(--text-hell); font-size: 0.98rem; }

/* ---------- Produkte-Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.product {
  background: var(--weiss);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(60, 40, 20, 0.16);
}

.product-img {
  aspect-ratio: 1 / 1;
  background: var(--creme-2);
  overflow: hidden;
}

.product-img img { width: 100%; height: 100%; object-fit: cover; }

.product-body { padding: 18px 20px 22px; }
.product-body h3 { margin: 0 0 4px; font-size: 1.08rem; color: var(--braun); }
.product-body p { margin: 0; color: var(--text-hell); font-size: 0.92rem; }

/* ---------- Banner ---------- */
.banner {
  background: linear-gradient(120deg, var(--braun) 0%, var(--braun-dunkel) 100%);
  color: var(--weiss);
  text-align: center;
  padding: 64px 24px;
}

.banner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 12px; }
.banner p { margin: 0 auto 26px; max-width: 620px; color: rgba(255,255,255,0.85); font-size: 1.08rem; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gruen);
  color: var(--weiss);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 30px;
  border-radius: 46px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-phone:hover { background: var(--gruen-dunkel); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--braun-dunkel);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 28px;
}

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

.footer-grid h4 {
  color: var(--weiss);
  font-size: 1.05rem;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.footer-grid p { margin: 0 0 6px; font-size: 0.96rem; }
.footer-grid a { color: var(--gruen); text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }

.footer-logo img {
  width: 210px;
  background: var(--weiss);
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.footer-nav {
  margin-bottom: 10px;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover { color: var(--gruen); text-decoration: underline; }

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 76px;
}

.legal .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gruen-dunkel);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.legal .back-link:hover { text-decoration: underline; }

.legal h1 {
  color: var(--braun-dunkel);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 6px;
}

.legal h1 + .lead {
  color: var(--text-hell);
  margin: 0 0 34px;
}

.legal h2 {
  color: var(--braun);
  font-size: 1.35rem;
  margin: 40px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--creme-2);
}

.legal h3 {
  color: var(--braun-dunkel);
  font-size: 1.08rem;
  margin: 24px 0 8px;
}

.legal p { color: var(--text); margin: 0 0 14px; }
.legal ul { color: var(--text); margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--gruen-dunkel); }

.legal .adress-box {
  background: var(--weiss);
  border-left: 4px solid var(--gruen);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  box-shadow: var(--schatten);
  margin: 0 0 20px;
}

.legal .adress-box p { margin: 0 0 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; gap: 34px; }
  .features { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  .header-inner { justify-content: center; text-align: center; }
  .header-info { justify-content: center; gap: 26px; }
  .section { padding: 56px 0; }
}

@media (max-width: 460px) {
  .product-grid { grid-template-columns: 1fr; }
}
