/* ============================================================
   TELLMANN – style.css
   FTP-ready, no framework, pure CSS
   ============================================================ */

/* RESET & ROOT */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --braun: #3d1f00;
  --braun-mid: #5a2e00;
  --braun-hell: #7a4010;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E6B0;
  --creme: #FDF6E3;
  --text: #2a1500;
  --text-mid: #5c3a10;
  --text-muted: #8a6030;
  --bg-dark: #1a0d00;
  --bg-mid: #2e1800;
  --border-gold: rgba(201,168,76,.4);
  --border-soft: rgba(201,168,76,.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--creme);
  color: var(--text);
  line-height: 1.7;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .4s;
  background: rgba(26,13,0,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: height .4s;
}

nav.scrolled .nav-inner { height: 70px; }

.nav-logo-img {
  height: 180px;
  width: auto;
  cursor: pointer;
  transition: height .4s, transform .25s, opacity .25s;
  object-fit: contain;
}

nav.scrolled .nav-logo-img { height: 55px; }
.nav-logo-img:hover { transform: scale(1.04); opacity: .9; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-menu a {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,230,176,.7);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color .3s;
  padding: .25rem 0;
  cursor: pointer;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--gold-light); }

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-tel {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .04em;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
  line-height: 1.4;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
  transition: all .3s;
}

.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  background: rgba(26,13,0,.99);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mob-menu.open { display: flex; }

.mob-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: rgba(245,230,176,.85);
  text-decoration: none;
  font-style: italic;
  transition: color .2s;
  cursor: pointer;
}

.mob-menu a:hover { color: var(--gold-light); }

/* ============================================================
   PAGE SYSTEM
   ============================================================ */
.page { display: none; }
.page.active { display: block; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid), var(--bg-dark));
  padding: 12rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
}

.ph-inner { max-width: 700px; margin: 0 auto; }

.ph-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--gold-pale);
  line-height: 1.1;
  margin-bottom: .6rem;
}

.ph-inner h1 em { font-style: italic; color: var(--gold-light); }

.ph-inner p {
  color: rgba(245,230,176,.6);
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.section { padding: 3.5rem 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.s-label {
  font-size: .57rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .45rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.s-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: .6rem;
}

.s-title em { font-style: italic; color: var(--braun-hell); }

/* BUTTONS */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  padding: .75rem 1.7rem;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Jost', sans-serif;
  border: none;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 3px 14px rgba(201,168,76,.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(201,168,76,.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: .75rem 1.7rem;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  transition: all .3s;
}

.btn-outline:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(90,46,0,.28) 0%, transparent 65%),
              linear-gradient(135deg, #1a0d00 0%, #2e1800 50%, #1a0d00 100%);
}

.hero-ornament {
  position: absolute;
  inset: 0;
  opacity: .028;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,168,76,1) 0, rgba(201,168,76,1) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,1) 0, rgba(201,168,76,1) 1px, transparent 1px, transparent 40px);
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-img-wrap {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow {
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: .6rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.hero-h1-kunst {
  font-size: .7em;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.hero-h1-kunst::before,
.hero-h1-kunst::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: .5;
  max-width: 30px;
}

.hero-h1-kunst::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-h1-tellmann {
  font-family: 'Playfair Display', serif;
  font-size: 1em;
  font-style: italic;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .04em;
  text-shadow: 0 2px 20px rgba(201,168,76,.3);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 1rem 0;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-gold), transparent);
}

.hero-divider span {
  color: var(--gold);
  font-size: .63rem;
  letter-spacing: .22em;
  white-space: nowrap;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(245,230,176,.68);
  font-weight: 300;
  line-height: 1.82;
  margin-bottom: 1.6rem;
  font-style: italic;
  max-width: 440px;
}

.hero-gold-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #7a4800, #c9a84c, #7a4800);
  border-radius: 50%;
  width: 105px;
  height: 105px;
  justify-content: center;
  text-align: center;
  padding: .5rem;
  margin-bottom: 1.6rem;
  box-shadow: 0 0 22px rgba(201,168,76,.2);
}

.hero-gold-badge .big {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-gold-badge .sup,
.hero-gold-badge .sub2 {
  font-size: .56rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .07em;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: sp 2s ease infinite;
}

@keyframes sp {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.scroll-lbl {
  font-size: .52rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   AKTION BANNER
   ============================================================ */
.aktion-banner {
  background: linear-gradient(135deg, #7a0000, #bb0000, #7a0000);
  padding: .9rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.aktion-banner .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.aktion-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(.9rem, 1.8vw, 1.35rem);
  color: #fff;
  font-weight: 700;
}

.aktion-dates { display: flex; gap: .35rem; }

.date-box {
  background: #fff;
  color: #7a0000;
  padding: .22rem .55rem;
  text-align: center;
  min-width: 48px;
}

.date-box .day {
  font-size: 1.4rem;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.date-box .wd {
  font-size: .52rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #555;
}

.date-box .mo {
  font-size: .55rem;
  color: #7a0000;
  font-weight: 600;
}

.aktion-tel {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--braun);
  border-bottom: 1px solid var(--border-gold);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feat {
  padding: 1.3rem 1.6rem;
  border-right: 1px solid var(--border-soft);
  text-align: center;
}

.feat:last-child { border: none; }

.feat-icon {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: .45rem;
  display: block;
}

.feat h4 {
  font-size: .73rem;
  letter-spacing: .06em;
  color: var(--gold-light);
  margin-bottom: .18rem;
  font-weight: 500;
}

.feat p {
  font-size: .68rem;
  color: rgba(245,230,176,.5);
  line-height: 1.35;
}

/* ============================================================
   ANKAUF SECTION
   ============================================================ */
.ankauf-section { background: var(--creme); }

.ankauf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.ankauf-liste {
  background: #fff;
  border: 1px solid rgba(201,168,76,.18);
  padding: 1.6rem;
}

.ankauf-liste h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: .8rem;
  color: var(--braun);
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--border-soft);
}

.ankauf-liste h3 em { font-style: italic; color: var(--braun-hell); }

.buy-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem;
}

.buy-list li {
  font-size: .8rem;
  color: var(--text-mid);
  padding: .25rem .3rem .25rem .95rem;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,.06);
}

.buy-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .34rem;
  top: .44rem;
}

.gold-badge-wrap { text-align: center; margin-top: 1rem; }

.gold-badge-inline {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #7a4800, #c9a84c, #6a3a00);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  justify-content: center;
  text-align: center;
  padding: .65rem;
  box-shadow: 0 0 22px rgba(201,168,76,.16);
}

.gold-badge-inline .big {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.gold-badge-inline .sup {
  font-size: .56rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .06em;
}

.gold-badge-inline .sub2 {
  font-size: .53rem;
  color: rgba(255,255,255,.62);
}

.ankauf-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.ankauf-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* ============================================================
   HAUSHALT SECTION
   ============================================================ */
.haushalt-section {
  background: var(--braun);
  color: var(--gold-pale);
}

.haushalt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem;
  align-items: center;
  margin-top: 2rem;
}

.haushalt-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.haushalt-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.haushalt-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 400;
  margin-bottom: .65rem;
  line-height: 1.2;
}

.haushalt-text h2 em { font-style: italic; }
.haushalt-text p { font-size: .88rem; color: rgba(245,230,176,.7); margin-bottom: 1rem; }

.haushalt-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.haushalt-list li {
  font-size: .82rem;
  color: rgba(245,230,176,.75);
  padding: .35rem 0 .35rem 1.1rem;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,.1);
}

.haushalt-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .4rem;
  top: .55rem;
}

/* ============================================================
   BROSCHÜRE SECTION
   ============================================================ */
.broschuere-section {
  background: linear-gradient(135deg, #200e00, #341600, #200e00);
  padding: 3.5rem 0;
}

.broschuere-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.broschuere-img {
  border: 1px solid rgba(201,168,76,.4);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  cursor: zoom-in;
  transition: box-shadow .3s ease;
}

.broschuere-img:hover {
  box-shadow: 0 8px 40px rgba(201,168,76,.35);
}

.broschuere-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  transition: transform .4s ease;
}

.broschuere-img:hover img {
  transform: scale(1.04);
}

/* ── LIGHTBOX ── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: lbFadeIn .25s ease;
}

.lb-overlay.open {
  display: flex;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-img-wrap {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,.4);
  box-shadow: 0 0 60px rgba(0,0,0,.8);
  border-radius: 2px;
  animation: lbZoomIn .3s ease;
}

@keyframes lbZoomIn {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.lb-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s;
}

.lb-close:hover {
  background: var(--gold-light);
}

.lb-hint {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,230,176,.4);
  white-space: nowrap;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #1a0d00, #341600);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--gold-pale);
  margin-bottom: .5rem;
}

.cta-band h2 em { font-style: italic; color: var(--gold-light); }

.cta-band p {
  color: rgba(245,230,176,.6);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: .75rem;
}

.cta-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}

.cta-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-block { max-width: 800px; }

.about-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--braun);
}

.about-block h2 em { font-style: italic; color: var(--braun-hell); }

.about-block > p {
  font-size: .92rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.quote-block {
  background: linear-gradient(135deg, var(--braun), var(--braun-mid));
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 2px 2px 0;
}

.quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.7;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border-gold);
  background: rgba(201,168,76,.04);
}

.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-l {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .35rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.exp-card {
  padding: 1.5rem 1rem;
  border: 1px solid var(--border-soft);
  background: #fff;
  text-align: center;
}

.exp-icon {
  font-size: 1.3rem;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}

.exp-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  font-weight: 400;
  color: var(--braun);
  margin-bottom: .45rem;
}

.exp-card p {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-section { background: var(--creme); }

.svc-row {
  display: grid;
  border-bottom: 1px solid rgba(201,168,76,.1);
  overflow: hidden;
}

.svc-row--even { grid-template-columns: 5fr 4fr; }
.svc-row--odd  { grid-template-columns: 4fr 5fr; }

.svc-content {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,.12);
  line-height: 1;
  margin-bottom: -.5rem;
}

.svc-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 400;
  color: var(--braun);
  margin-bottom: .75rem;
  line-height: 1.2;
}

.svc-content h2 em { font-style: italic; color: var(--braun-hell); }

.svc-content > p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.svc-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .2rem;
}

.svc-list li {
  font-size: .78rem;
  color: var(--text-muted);
  padding: .2rem 0 .2rem .8rem;
  position: relative;
}

.svc-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .3rem;
  top: .42rem;
}

.svc-img {
  overflow: hidden;
  max-height: 300px;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--creme); padding: 3.5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--braun);
  margin-bottom: .35rem;
}

.contact-h2 em { font-style: italic; color: var(--braun-hell); }

.contact-intro {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}

.fg label {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.fg input,
.fg select,
.fg textarea {
  border: 1px solid rgba(201,168,76,.25);
  background: #fff;
  padding: .7rem .85rem;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--gold); }

.fg textarea { resize: vertical; min-height: 110px; }

.form-msg {
  margin-top: .75rem;
  padding: .75rem 1rem;
  font-size: .82rem;
  border-radius: 2px;
}

.form-msg.success { background: #e6f4ea; color: #1e6630; border: 1px solid #a8d5b5; }
.form-msg.error   { background: #fdecea; color: #8b0000; border: 1px solid #f5b5b5; }

.info-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--braun);
  margin-bottom: 1.2rem;
}

.info-h3 em { font-style: italic; color: var(--braun-hell); }

.info-block { margin-bottom: 1.2rem; }

.info-lbl {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
  font-weight: 600;
}

.info-txt {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.info-txt a {
  color: var(--braun-hell);
  text-decoration: none;
}

.info-txt a:hover { color: var(--gold); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .65rem;
  background: #25D366;
  color: #fff;
  padding: .5rem 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(37,211,102,.3);
  transition: opacity .2s;
}

.whatsapp-btn:hover { opacity: .88; }

.maps-link {
  display: block;
  margin-top: .8rem;
  text-decoration: none;
}

.maps-label {
  display: block;
  text-align: center;
  font-size: .68rem;
  color: var(--gold);
  margin-top: .35rem;
  letter-spacing: .06em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-gold);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: .8rem;
  color: rgba(245,230,176,.45);
  line-height: 1.6;
  max-width: 220px;
}

.footer-col h4 {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: .5rem;
}

.footer-col ul li a {
  font-size: .8rem;
  color: rgba(245,230,176,.5);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.tel-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: .35rem;
}

.footer-col p {
  font-size: .78rem;
  color: rgba(245,230,176,.4);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom p {
  font-size: .72rem;
  color: rgba(245,230,176,.35);
}

.footer-bottom a {
  color: rgba(245,230,176,.35);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-row--even,
  .svc-row--odd { grid-template-columns: 1fr; }
  .svc-row--odd .svc-content { order: 0; }
  .svc-row--odd .svc-img { order: 1; }
  .svc-content { padding: 2rem; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-tel  { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 80px; }
  .nav-logo-img { height: 65px; }
  nav.scrolled .nav-inner { height: 70px; }
  nav.scrolled .nav-logo-img { height: 55px; }

  .hero-inner { grid-template-columns: 1fr; padding: 10rem 1.5rem 3rem; }

  .features .container { grid-template-columns: 1fr 1fr; }
  .feat { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .feat:nth-child(odd) { border-right: 1px solid var(--border-soft); }
  .feat:nth-child(3),
  .feat:nth-child(4) { border-bottom: none; }

  .ankauf-grid   { grid-template-columns: 1fr; }
  .haushalt-grid { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }

  .broschuere-grid { grid-template-columns: 1fr; }
  .broschuere-grid .broschuere-img:nth-child(2) { order: -1; }

  .aktion-banner .inner { flex-direction: column; text-align: center; gap: 1rem; }

  .page-hero { padding: 8rem 1.5rem 3rem; }

  .section { padding: 2.5rem 0; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }
  .buy-list { grid-template-columns: 1fr; }
  .svc-list  { grid-template-columns: 1fr; }
  .features .container { grid-template-columns: 1fr; }
  .feat { border-right: none !important; }
}

/* ============================================================
   TEL LINKS
   ============================================================ */
.tel-plain {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.tel-plain:hover { color: var(--gold-light); }

.tel-plain-dark {
  color: var(--text-mid);
  text-decoration: none;
}
.tel-plain-dark:hover { color: var(--gold); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2000;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.1rem .7rem .85rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: waEntrance .6s ease .5s both;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
}

.wa-label {
  font-size: .78rem;
}

@keyframes waEntrance {
  from { opacity: 0; transform: translateY(20px) scale(.9); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 1rem;
    right: 1rem;
    padding: .7rem;
    border-radius: 50%;
  }
  .wa-label { display: none; }
}

/* ============================================================
   MOBILE HERO IMAGE
   ============================================================ */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 9rem 1.5rem 3rem;
    gap: 2rem;
  }
  .hero-img-wrap {
    display: block;
    aspect-ratio: 16/9;
    border-radius: 2px;
    overflow: hidden;
  }
  .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
