/* ============================================
   SAMASATI BODY MOVE — Light Elegant Theme
   Colors extracted from logo trans.jpg
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Jost:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  /* Greens from logo bg.jpg */
  --green: #1B6E3A;
  --green-dark: #145530;
  --green-light: #4DA870;
  --green-pale: #A8D9B4;
  --green-mist: #DFF0E6;
  --green-whisper: #F0F7F2;

  /* Warm accent — from logo bg tone */
  --olive-gold: #8A7E50;
  --olive-gold-light: #ADA47A;

  /* Backgrounds — matched to logo bg.jpg cream (sampled from image corners) */
  --bg: #EAE6DF;
  --white: #F3F1EC;
  --surface: #E3DFD8;

  /* Text */
  --text: #2A3228;
  --text-mid: #4E5C4B;
  --text-light: #7A887A;
  --text-dim: #AAB4A8;

  /* Borders */
  --border: rgba(27,110,58,0.08);
  --border-strong: rgba(27,110,58,0.16);
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { transition: color 0.3s; }
img { display: block; max-width: 100%; }

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 4rem;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(234,230,223,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-main {
  font-family: 'Tenor Sans', serif;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.58rem;
  font-style: italic;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive-gold);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}
.nav-divider {
  width: 1px;
  height: 16px;
  background: var(--text-dim);
}

/* ============================================
   PAGE CONTENT WRAPPER
   ============================================ */
.page-content {
  flex: 1;
  padding-top: 72px;
}

/* ============================================
   HERO — Landing page (full viewport, no scroll)
   ============================================ */
.hero {
  height: calc(100vh - 72px - 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow behind logo */
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,138,64,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-logo {
  margin-bottom: 1.4rem;
  position: relative;
}
.hero-logo img {
  height: 180px;
  width: auto;
}

.hero h1 {
  font-family: 'Tenor Sans', serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
  position: relative;
}
.hero .hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--olive-gold);
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.hero-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--olive-gold), transparent);
  margin-bottom: 1.2rem;
}
.hero .quote {
  max-width: 440px;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
}
.hero .quote-author {
  margin-top: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Author block on landing */
.hero-author {
  margin-top: 2.2rem;
  text-align: center;
  position: relative;
}
.hero-author::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--olive-gold);
  opacity: 0.4;
  margin: 0 auto 1.4rem;
}
.hero-name {
  font-family: 'Tenor Sans', serif;
  font-size: 0.95rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.hero-title {
  margin-top: 0.35rem;
  font-size: 0.66rem;
  font-style: italic;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-gold);
}

.hero-themes {
  margin-top: 1.5rem;
  display: flex;
  gap: 2.6rem;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-themes a {
  font-family: 'Tenor Sans', serif;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}
.hero-themes a:hover {
  color: var(--green);
}
.hero-themes a:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -1.55rem;
  top: 50%;
  transform: translateY(-55%);
  color: var(--olive-gold);
  font-size: 1rem;
}

/* ============================================
   PAGE HEADER — inner pages
   ============================================ */
.page-header {
  padding: 5rem 4rem 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.page-header::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--olive-gold), transparent);
  margin: 1.4rem auto 0;
}
.page-header + .section { padding-top: 1rem; }
.page-header h1 {
  font-family: 'Tenor Sans', serif;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.page-header .page-subtitle {
  font-size: 0.92rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}
.page-header .page-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive-gold);
  margin-bottom: 0.8rem;
  display: block;
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section {
  padding: 3.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.2rem;
}
.section-top h2 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.section-top .label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-gold);
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(27,138,64,0.06);
  transform: translateY(-4px);
}
.svc-num {
  font-family: 'Tenor Sans', serif;
  font-size: 2.5rem;
  color: var(--green-mist);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.svc-card h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  color: var(--green-dark);
}
.svc-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.3s;
}
.svc-link:hover { gap: 0.8rem; }
.svc-link svg {
  width: 12px; height: 12px;
  stroke: var(--green);
  fill: none; stroke-width: 2;
}

/* ============================================
   TEXT CONTENT — inner pages
   ============================================ */
.text-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.text-sidebar h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 1.3rem;
  color: var(--green-dark);
}
.text-sidebar .nav-list a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.text-sidebar .nav-list a:hover {
  color: var(--green);
  padding-left: 0.5rem;
}
.text-sidebar .nav-list a.active {
  color: var(--green);
  border-bottom-color: var(--border-strong);
}

.text-main h2 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  color: var(--green-dark);
}
.text-main .lead {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.8;
}
.text-main p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.text-main ul {
  list-style: none;
  margin-bottom: 2rem;
}
.text-main ul li {
  padding: 0.7rem 0 0.7rem 1.8rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mid);
  position: relative;
}
.text-main ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--green-light);
  transform: translateY(-50%);
}
.text-main h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
}
.text-main .section-break {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

/* Pricing box — for "Wir behandeln gemeinsam" */
.pricing-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  padding: 1.8rem 2rem;
  margin: 2rem 0 2.5rem;
}
.pricing-box .price-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive-gold);
  margin-bottom: 0.9rem;
}
.pricing-box .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.pricing-box .price-row:last-child { border-bottom: none; }
.pricing-box .price-row .amt {
  font-family: 'Tenor Sans', serif;
  color: var(--green-dark);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* Pulled quote / blockquote */
.text-main blockquote {
  margin: 2.2rem 0;
  padding: 1.4rem 0 1.4rem 1.8rem;
  border-left: 2px solid var(--green-light);
  font-family: 'Tenor Sans', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.text-main blockquote cite {
  display: block;
  margin-top: 0.8rem;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-gold);
}

/* Subtitle quote — page header */
.page-header .page-subtitle.quote-subtitle {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.7;
}
.page-header .page-subtitle.quote-subtitle cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-gold);
  font-style: normal;
}

/* ============================================
   ANGEBOTE — fixed viewport, sticky sidebar,
   only right panel scrolls, topics switch
   ============================================ */
body.angebote-body {
  height: 100vh;
  overflow: hidden;
}
body.angebote-body .page-content {
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  flex: 1;
  min-height: 0;
}
.angebote-header {
  flex: none;
  padding: 3rem 4rem 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.angebote-header::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--olive-gold), transparent);
  margin: 1.4rem auto 0;
}
.angebote-header h1 {
  font-family: 'Tenor Sans', serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.angebote-header .page-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 640px;
  line-height: 1.7;
  margin: 0 auto;
}
.angebote-header .page-subtitle cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-gold);
  font-style: normal;
}

.angebote-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem 2rem;
  min-height: 0;
  overflow: hidden;
}

.angebote-sidebar {
  overflow-y: auto;
  padding-top: 0.4rem;
}
.angebote-sidebar h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 1.3rem;
  color: var(--green-dark);
}
.angebote-sidebar .nav-list a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}
.angebote-sidebar .nav-list a:hover {
  color: var(--green);
  padding-left: 0.5rem;
}
.angebote-sidebar .nav-list a.active {
  color: var(--green);
  border-bottom-color: var(--border-strong);
  padding-left: 0.5rem;
}

.angebote-main {
  overflow-y: auto;
  padding-right: 2rem;
  padding-bottom: 3rem;
  /* subtle custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--green-pale) transparent;
}
.angebote-main::-webkit-scrollbar { width: 6px; }
.angebote-main::-webkit-scrollbar-track { background: transparent; }
.angebote-main::-webkit-scrollbar-thumb {
  background: var(--green-pale);
  border-radius: 3px;
}

/* Topic panels — only .active shown */
.topic { display: none; animation: topicFade 0.35s ease; }
.topic.active { display: block; }
@keyframes topicFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.topic h2 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  color: var(--green-dark);
}
.topic .lead {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.8;
}
.topic p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.4rem;
  line-height: 1.8;
}
.topic h3.sub {
  font-family: 'Tenor Sans', serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin: 2.2rem 0 0.9rem;
}
.topic .hl {
  color: var(--olive-gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topic .om {
  text-align: center;
  margin: 2.5rem 0 1rem;
  line-height: 1;
}
.topic .om img {
  display: inline-block;
  width: 64px;
  height: auto;
  opacity: 0.85;
}
.topic ul {
  list-style: none;
  margin-bottom: 2rem;
}
.topic ul li {
  padding: 0.65rem 0 0.65rem 1.8rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mid);
  position: relative;
}
.topic ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--green-light);
  transform: translateY(-50%);
}
.topic blockquote {
  margin: 2rem 0;
  padding: 1.3rem 0 1.3rem 1.8rem;
  border-left: 2px solid var(--green-light);
  font-family: 'Tenor Sans', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ============================================
   GALLERY GRID — real photos
   ============================================ */
.section-studio {
  padding-top: 0.5rem;
}
.studio-intro {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--green-whisper);
  cursor: pointer;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,85,48,0.22) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }

/* Featured span tiles — give the grid rhythm */
.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7),
.gallery-item:nth-child(12) {
  grid-column: span 2;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 50, 35, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  transition: opacity 0.2s ease;
}
.lightbox img.loading { opacity: 0; }

.lb-btn {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tenor Sans', serif;
  font-weight: 300;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.lb-btn:hover { color: #fff; }
.lb-close {
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  font-size: 2rem;
}
.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 2.6rem;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ============================================
   CONTACT LAYOUT — redesigned
   ============================================ */
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.4rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 2.4rem;
  margin-bottom: 3rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}

.contact-photo-lg {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-whisper);
  border: 2px solid var(--border-strong);
  margin-bottom: 0.8rem;
}
.contact-photo-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-card-portrait h2 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.contact-card-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.contact-role {
  font-size: 0.66rem;
  font-style: italic;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-gold);
}

.c-detail { }
.c-detail .c-lab {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-gold);
  margin-bottom: 0.25rem;
}
.c-detail .c-val {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.c-detail .c-val a {
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.c-detail .c-val a:hover {
  color: var(--green);
  border-bottom-color: var(--green-light);
}

/* Bottom: bio + credentials */
.contact-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-bio h3,
.contact-credentials h3 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.contact-bio p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.contact-credentials ul {
  list-style: none;
}
.contact-credentials ul li {
  padding: 0.55rem 0 0.55rem 1.4rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.contact-credentials ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 1px;
  background: var(--green-light);
}

/* ============================================
   FOOTER — slim, only copyright on the right
   ============================================ */
footer {
  flex: none;
  height: 40px;
  padding: 0 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  background: transparent;
}
footer .f-left {
  display: flex;
  gap: 1.5rem;
}
footer .f-left a {
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color 0.2s;
}
footer .f-left a:hover {
  color: var(--green);
}
footer .f-right {
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
}

/* ============================================
   LEGAL TEXT PAGES (Datenschutz, Impressum)
   ============================================ */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 4rem 4rem;
}
.legal .legal-meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-gold);
  margin-bottom: 2rem;
}
.legal h2 {
  font-family: 'Tenor Sans', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin: 2.2rem 0 0.8rem;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.legal ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0 0 1rem;
}
.legal ul li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 0.35rem;
}
.legal a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.legal a:hover { border-bottom-color: var(--green-light); }

/* ============================================
   HAMBURGER MENU (mobile nav toggle)
   ============================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--green-dark);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   MOBILE — 768px and below
   ============================================ */
@media (max-width: 768px) {

  /* Nav */
  nav {
    padding: 0 1.5rem;
    height: 62px;
  }
  .nav-logo-main { font-size: 0.95rem; letter-spacing: 0.18em; }
  .nav-logo-sub  { font-size: 0.52rem; }
  .nav-logo img  { height: 34px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 62px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(237,234,227,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-divider { display: none; }

  /* Page content */
  .page-content { padding-top: 62px; }

  /* Hero */
  .hero { padding: 2rem 1.5rem; }
  .hero-logo img { height: 160px; }
  .hero h1 { font-size: 2.6rem; letter-spacing: 0.18em; }
  .hero .hero-sub { font-size: 0.8rem; letter-spacing: 0.22em; }
  .hero .quote { font-size: 0.88rem; max-width: 320px; }

  /* Page header */
  .page-header { padding: 3rem 1.5rem 1rem; }
  .page-header h1 { font-size: 1.8rem; letter-spacing: 0.08em; }

  /* Sections */
  .section { padding: 2.5rem 1.5rem; }
  .section-top h2 { font-size: 1.3rem; }

  /* Services grid → single column */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Text layout → stacked */
  .text-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .text-sidebar {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
  }

  /* Gallery → 2 columns, all equal */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(12) { grid-column: auto; }

  /* Contact → stacked */
  .contact-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.8rem 1.5rem;
  }
  .contact-card-portrait {
    padding-right: 0;
    padding-bottom: 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .contact-card-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Angebote → allow the page to scroll, stack sidebar above content */
  body.angebote-body { height: auto; overflow: visible; }
  body.angebote-body .page-content {
    display: block;
    padding-top: 62px;
  }
  .angebote-header { padding: 2.5rem 1.5rem 1.4rem; }
  .angebote-header h1 { font-size: 1.8rem; letter-spacing: 0.08em; }
  .angebote-header .page-subtitle { font-size: 0.88rem; }
  .angebote-layout {
    display: block;
    padding: 0 1.5rem 2rem;
    gap: 0;
    overflow: visible;
  }
  .angebote-sidebar {
    overflow: visible;
    padding: 0 0 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .angebote-main {
    overflow: visible;
    padding: 0 0 1rem;
  }

  /* Footer — keep slim on mobile too */
  footer { padding: 0 1.2rem; }
  footer .f-left { gap: 1rem; }
  footer .f-left a,
  footer .f-right { font-size: 0.56rem; letter-spacing: 0.1em; }

  /* Legal pages */
  .legal { padding: 1rem 1.5rem 2.5rem; }
}

/* ============================================
   SMALL MOBILE — 380px and below
   ============================================ */
@media (max-width: 380px) {
  .hero h1 { font-size: 2rem; }
  .hero-logo img { height: 130px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 160px;
  }
}
