/* ═══════════════════════════════════════════════════════════
   ESTATE VISUALS — City Landing Pages
   city.css  |  loaded alongside style.css on all /immobilienfotograf-*/
   ═══════════════════════════════════════════════════════════ */

/* ─── SHARED NAV ────────────────────────────────────────── */
.city-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.city-nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex; align-items: center; gap: 32px;
}
.city-nav-logo img { height: 30px; display: block; }
.city-nav-links {
  display: flex; gap: 28px; margin-left: auto;
}
.city-nav-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.22s;
}
.city-nav-links a:hover { color: #fff; }
.city-nav-cta {
  background: var(--gold); color: #000;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  padding: 9px 20px; border-radius: 6px;
  transition: background 0.22s, transform 0.22s;
  white-space: nowrap;
}
.city-nav-cta:hover { background: var(--gold-l); transform: scale(1.03); }
.city-breadcrumb {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 6px;
}
.city-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.city-breadcrumb a:hover { color: var(--gold); }
.city-breadcrumb span { color: rgba(255,255,255,0.25); }

/* ─── SHARED COMPONENTS ─────────────────────────────────── */
.city-section-label {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 600;
}
.city-section-label--dark { color: var(--gold-d); }

.city-checks {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.city-checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.93rem; color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.city-checks li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.city-checks--dark li { color: #3a3a3c; }
.city-checks--dark li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Shared CTA button (gold, used in light sections) */
.city-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none;
  padding: 14px 28px; border-radius: 8px;
  transition: background 0.22s, transform 0.22s;
}
.city-btn:hover { background: var(--gold-l); transform: translateY(-2px); }
.city-btn--outline {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.city-btn--outline:hover { background: var(--gold); color: #000; }

/* Shared pricing strip (used across templates) */
.city-pricing {
  background: var(--gray1); padding: 80px 0;
}
.city-pricing .wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.city-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 40px;
}
.city-price-card {
  background: #fff; border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.22s, box-shadow 0.22s;
}
.city-price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.city-price-card--featured {
  background: #0d0d0d; color: #fff;
  border-color: var(--gold);
  transform: translateY(-6px);
}
.city-price-card--featured:hover { transform: translateY(-10px); }
.city-price-tier { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.city-price-rooms { font-size: 0.9rem; color: #86868b; margin-bottom: 12px; }
.city-price-card--featured .city-price-rooms { color: rgba(255,255,255,0.5); }
.city-price-amount { font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: #0d0d0d; }
.city-price-card--featured .city-price-amount { color: #fff; }
.city-price-amount sup { font-size: 1rem; font-family: var(--font); vertical-align: super; }
.city-price-vat { font-size: 0.72rem; color: #86868b; margin: 4px 0 16px; }
.city-price-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 7px; }
.city-price-list li { font-size: 0.83rem; color: #4a4a4a; padding-left: 16px; position: relative; }
.city-price-card--featured .city-price-list li { color: rgba(255,255,255,0.7); }
.city-price-list li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }
.city-price-cta {
  display: block; text-align: center;
  background: var(--gold); color: #000;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; padding: 10px; border-radius: 7px;
  transition: background 0.22s;
}
.city-price-cta:hover { background: var(--gold-l); }

/* Shared final CTA section */
.city-final-cta {
  background: var(--near); padding: 100px 0; text-align: center;
}
.city-final-cta .wrap { max-width: 700px; margin: 0 auto; padding: 0 32px; }
.city-final-cta h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2; margin-bottom: 20px;
}
.city-final-cta h2 em { font-style: italic; color: var(--gold); }
.city-final-cta p { color: rgba(255,255,255,0.6); margin-bottom: 36px; line-height: 1.7; }
.city-final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Shared footer */
.city-footer {
  background: #000; border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 32px;
}
.city-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.city-footer-logo img { height: 26px; opacity: 0.5; }
.city-footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.city-footer-links { display: flex; gap: 20px; }
.city-footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.22s; }
.city-footer-links a:hover { color: var(--gold); }


/* ═══════════════════════════════════════════════════════════
   TEMPLATE A — Immersive Dark
   Used by: München, Regensburg, Starnberg, Miesbach
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.ta-hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  padding-top: 68px; overflow: hidden;
}
.ta-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.ta-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.2) 100%);
}
.ta-hero:hover .ta-hero-bg { transform: scale(1); }
.ta-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  width: 100%;
}
.ta-hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.ta-hero h1 {
  font-family: var(--serif); font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95; font-weight: 700; margin-bottom: 24px; max-width: 700px;
}
.ta-hero h1 em { font-style: italic; color: var(--gold); }
.ta-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.72);
  max-width: 520px; line-height: 1.65; margin-bottom: 40px;
}
.ta-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.ta-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35);
  animation: ta-bounce 2.2s ease-in-out infinite;
}
@keyframes ta-bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
.ta-scroll-hint svg { width: 20px; height: 20px; }

/* Split section */
.ta-split {
  background: #fff; padding: 100px 0;
}
.ta-split-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.ta-split-text h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2; color: #0d0d0d; margin-bottom: 20px;
}
.ta-split-text h2 em { font-style: italic; color: var(--gold); }
.ta-split-text p { font-size: 0.97rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 16px; }
.ta-split-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.ta-split-imgs img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px;
  transition: transform 0.45s;
}
.ta-split-imgs img:first-child { aspect-ratio: 4/5; grid-row: 1/3; }
.ta-split-imgs img:hover { transform: scale(1.02); }

/* Services strip */
.ta-services {
  background: var(--surface); padding: 80px 0;
}
.ta-services .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.ta-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.ta-service-card {
  background: var(--surf2); border-radius: 14px; padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.22s, transform 0.22s;
}
.ta-service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.ta-service-icon { width: 40px; height: 40px; margin-bottom: 16px; color: var(--gold); }
.ta-service-icon svg { width: 40px; height: 40px; }
.ta-service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.ta-service-card p { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* Local SEO content blocks */
.city-content {
  background: #fff;
  padding: 88px 0;
}
.city-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 54px;
  align-items: start;
}
.city-content-main h2,
.city-process h2,
.city-faq h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.22;
  color: #0d0d0d;
  margin-bottom: 22px;
}
.city-content-main h2 em,
.city-process h2 em,
.city-faq h2 em { color: var(--gold-d); font-style: italic; }
.city-content-main p {
  color: #4a4a4a;
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.city-content-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.city-mini-card {
  background: var(--gray1);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 24px;
}
.city-mini-card h3 {
  color: #0d0d0d;
  font-size: 1rem;
  margin-bottom: 12px;
}
.city-mini-card p,
.city-mini-card li {
  color: #4a4a4a;
  font-size: 0.9rem;
  line-height: 1.7;
}
.city-mini-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.city-mini-card li {
  padding-left: 16px;
  position: relative;
}
.city-mini-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold-d);
  position: absolute;
  left: 0;
  top: 0.72em;
}

.city-process {
  background: #fff;
  padding: 88px 0;
}
.city-process .wrap,
.city-faq .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.city-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.city-process-step {
  border-top: 2px solid var(--gold-d);
  padding-top: 18px;
}
.city-process-step span {
  color: var(--gold-d);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
}
.city-process-step h3 {
  color: #0d0d0d;
  font-size: 1rem;
  margin: 10px 0 8px;
}
.city-process-step p {
  color: #4a4a4a;
  font-size: 0.9rem;
  line-height: 1.7;
}

.city-faq {
  background: var(--gray1);
  padding: 88px 0;
}
.city-faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}
.city-faq-list details {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 0 22px;
}
.city-faq-list summary {
  color: #0d0d0d;
  cursor: pointer;
  font-weight: 700;
  padding: 20px 0;
}
.city-faq-list p {
  color: #4a4a4a;
  font-size: 0.92rem;
  line-height: 1.75;
  padding-bottom: 20px;
}
.city-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.city-related-links a {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  color: #0d0d0d;
  font-size: 0.84rem;
  font-weight: 650;
  padding: 10px 14px;
  transition: color 0.22s, border-color 0.22s, transform 0.22s;
}
.city-related-links a:hover {
  color: var(--gold-d);
  border-color: var(--gold-d);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════
   TEMPLATE B — Editorial Light
   Used by: Nürnberg, Ingolstadt, Grünwald, Erding
   ═══════════════════════════════════════════════════════════ */

.tb-hero {
  background: var(--gray1); padding: 140px 32px 80px;
  text-align: center;
}
.tb-hero-wrap { max-width: 900px; margin: 0 auto; }
.tb-hero-crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: #86868b; margin-bottom: 28px;
}
.tb-hero-crumb a { color: #86868b; text-decoration: none; }
.tb-hero-crumb a:hover { color: var(--gold-d); }
.tb-hero-crumb::before {
  content: ''; display: inline-block; width: 28px; height: 1px; background: #c0c0c0;
}
.tb-hero h1 {
  font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1; color: #0d0d0d; margin-bottom: 20px;
}
.tb-hero h1 em { font-style: italic; color: var(--gold-d); }
.tb-hero-sub {
  font-size: 1.1rem; color: #4a4a4a; max-width: 580px; margin: 0 auto 36px;
  line-height: 1.7;
}
.tb-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.tb-hero .city-btn { background: #0d0d0d; color: #fff; }
.tb-hero .city-btn:hover { background: #333; }
.tb-hero .city-btn--gold { background: var(--gold); color: #000; }
.tb-hero .city-btn--gold:hover { background: var(--gold-l); }

/* Wide image */
.tb-image {
  width: 100%; height: 60vh; min-height: 360px; overflow: hidden; position: relative;
}
.tb-image img { width: 100%; height: 100%; object-fit: cover; }
.tb-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, #fff);
}

/* Two-column editorial */
.tb-editorial { background: #fff; padding: 80px 0; }
.tb-editorial-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start;
}
.tb-editorial-text h2 {
  font-family: var(--serif); font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  line-height: 1.25; color: #0d0d0d; margin-bottom: 20px;
}
.tb-editorial-text h2 em { font-style: italic; color: var(--gold-d); }
.tb-editorial-text p { font-size: 0.96rem; color: #4a4a4a; line-height: 1.85; margin-bottom: 16px; }
.tb-stats-box {
  background: #0d0d0d; border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 24px; position: sticky; top: 90px;
}
.tb-stat-row { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
.tb-stat-row:last-child { border: none; padding-bottom: 0; }
.tb-stat-num {
  font-family: var(--serif); font-size: 2.2rem; color: var(--gold); line-height: 1;
}
.tb-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Service list */
.tb-services { background: var(--gray1); padding: 80px 0; }
.tb-services-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.tb-service-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.tb-service-row {
  display: flex; align-items: center; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: padding-left 0.22s;
}
.tb-service-row:hover { padding-left: 8px; }
.tb-service-row:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.tb-service-row-icon {
  width: 44px; height: 44px; background: #0d0d0d; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold);
}
.tb-service-row-icon svg { width: 22px; height: 22px; }
.tb-service-row-title { font-size: 1rem; font-weight: 700; color: #0d0d0d; }
.tb-service-row-desc { font-size: 0.87rem; color: #86868b; margin-top: 2px; }
.tb-service-row-price { margin-left: auto; font-size: 0.9rem; font-weight: 700; color: var(--gold-d); white-space: nowrap; }

/* CTA strip */
.tb-cta-strip {
  background: var(--gold); padding: 60px 32px; text-align: center;
}
.tb-cta-strip h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: #0d0d0d; margin-bottom: 12px; }
.tb-cta-strip p { color: rgba(0,0,0,0.65); font-size: 0.95rem; margin-bottom: 28px; }
.tb-cta-strip .city-btn { background: #0d0d0d; color: #fff; }
.tb-cta-strip .city-btn:hover { background: #333; transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════════════
   TEMPLATE C — Agency Stack
   Used by: Augsburg, Freising, Wolfratshausen, Fürstenfeldbruck
   ═══════════════════════════════════════════════════════════ */

.tc-hero {
  min-height: 88vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--black); padding: 110px 32px 80px;
  position: relative; overflow: hidden;
}
.tc-hero::before {
  content: attr(data-city);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-size: clamp(10rem, 22vw, 20rem);
  font-weight: 700; color: rgba(255,255,255,0.03); white-space: nowrap;
  pointer-events: none; user-select: none; letter-spacing: -0.02em;
}
.tc-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.tc-hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 600;
  border: 1px solid rgba(201,162,39,0.3); border-radius: 20px; padding: 5px 14px;
}
.tc-hero h1 {
  font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05; margin-bottom: 24px;
}
.tc-hero h1 em { font-style: italic; color: var(--gold); }
.tc-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 540px;
  margin: 0 auto 40px; line-height: 1.7;
}
.tc-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Stats bar */
.tc-stats {
  background: #fff; padding: 48px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tc-stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.tc-stat {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.tc-stat:last-child { border: none; }
.tc-stat-num {
  font-family: var(--serif); font-size: 2.6rem; color: #0d0d0d; line-height: 1;
}
.tc-stat-num span { color: var(--gold-d); }
.tc-stat-label { font-size: 0.8rem; color: #86868b; margin-top: 6px; }

/* Alternating blocks */
.tc-block { background: var(--surface); padding: 80px 0; }
.tc-block:nth-child(odd) { background: var(--surf2); }
.tc-block-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.tc-block:nth-child(even) .tc-block-inner { direction: rtl; }
.tc-block:nth-child(even) .tc-block-img,
.tc-block:nth-child(even) .tc-block-text { direction: ltr; }
.tc-block-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; }
.tc-block-text h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.25; margin-bottom: 18px;
}
.tc-block-text h2 em { font-style: italic; color: var(--gold); }
.tc-block-text p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 14px; }

/* Pricing strip */
.tc-pricing { background: var(--near); padding: 80px 0; }
.tc-pricing .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.tc-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
}
.tc-price-card {
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 24px 20px;
  transition: border-color 0.22s;
}
.tc-price-card:hover { border-color: rgba(201,162,39,0.5); }
.tc-price-card--mid { border-color: var(--gold); }
.tc-price-tier { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-weight: 700; }
.tc-price-rooms { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.tc-price-amount { font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.tc-price-amount sup { font-size: 0.9rem; font-family: var(--font); vertical-align: super; }
.tc-price-vat { font-size: 0.7rem; color: rgba(255,255,255,0.3); margin: 4px 0 14px; }
.tc-price-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; margin: 0 0 18px; }
.tc-price-list li { font-size: 0.82rem; color: rgba(255,255,255,0.55); padding-left: 14px; position: relative; }
.tc-price-list li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }
.tc-price-cta {
  display: block; text-align: center; background: transparent;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 6px;
  color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 600;
  text-decoration: none; padding: 9px; transition: all 0.22s;
}
.tc-price-cta:hover, .tc-price-card--mid .tc-price-cta {
  background: var(--gold); border-color: var(--gold); color: #000;
}


/* ═══════════════════════════════════════════════════════════
   TEMPLATE D — Modern Split
   Used by: Gauting, Dachau, Rosenheim
   ═══════════════════════════════════════════════════════════ */

.td-hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 68px; overflow: hidden;
}
.td-hero-left {
  background: #fff; display: flex; align-items: center;
  padding: 60px 64px 60px 32px;
}
.td-hero-left-inner { max-width: 500px; margin: 0 auto; }
.td-hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-d); margin-bottom: 20px; font-weight: 700;
}
.td-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--gold); }
.td-hero-left h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1; color: #0d0d0d; margin-bottom: 20px;
}
.td-hero-left h1 em { font-style: italic; color: var(--gold-d); }
.td-hero-left p { font-size: 0.97rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 32px; }
.td-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.td-hero-right { position: relative; overflow: hidden; min-height: 500px; }
.td-hero-right img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.td-hero:hover .td-hero-right img { transform: scale(1.04); }
.td-hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.05));
}

/* Feature cards */
.td-features { background: var(--near); padding: 80px 0; }
.td-features-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.td-features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px;
}
.td-feature-card {
  background: var(--surface); border-radius: 14px; padding: 28px 22px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.22s, transform 0.22s;
}
.td-feature-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.td-feature-icon { width: 44px; height: 44px; margin-bottom: 16px; color: var(--gold); }
.td-feature-icon svg { width: 44px; height: 44px; }
.td-feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.td-feature-card p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* Content + pricing two column */
.td-content { background: var(--gray1); padding: 80px 0; }
.td-content-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: start;
}
.td-content-text h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  line-height: 1.25; color: #0d0d0d; margin-bottom: 18px;
}
.td-content-text h2 em { font-style: italic; color: var(--gold-d); }
.td-content-text p { font-size: 0.95rem; color: #4a4a4a; line-height: 1.85; margin-bottom: 14px; }
.td-sidebar { position: sticky; top: 90px; }
.td-sidebar-card {
  background: #0d0d0d; border-radius: 14px; padding: 28px 24px; color: #fff;
  border: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px;
}
.td-sidebar-card h3 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.td-sidebar-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.td-sidebar-row:last-child { border: none; }
.td-sidebar-label { font-size: 0.83rem; color: rgba(255,255,255,0.55); }
.td-sidebar-val { font-size: 0.9rem; font-weight: 700; color: #fff; }
.td-sidebar-val span { color: var(--gold); font-size: 0.78rem; font-weight: 400; }


/* ═══════════════════════════════════════════════════════════
   STANDORTE OVERVIEW
   ═══════════════════════════════════════════════════════════ */

.so-hero { background: var(--near); padding: 160px 32px 80px; text-align: center; }
.so-hero h1 {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1; margin-bottom: 20px;
}
.so-hero h1 em { font-style: italic; color: var(--gold); }
.so-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }

.so-grid-section { background: #fff; padding: 80px 0; }
.so-grid-section .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.so-section-heading {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-d); font-weight: 700; margin-bottom: 24px;
}
.so-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
  margin-bottom: 60px;
}
.so-card {
  background: var(--gray1); border-radius: 12px; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
  border: 1px solid rgba(0,0,0,0.06); transition: transform 0.22s, box-shadow 0.22s;
}
.so-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.so-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.so-card-body { padding: 16px 18px; }
.so-card-city { font-size: 1rem; font-weight: 700; color: #0d0d0d; margin-bottom: 4px; }
.so-card-desc { font-size: 0.82rem; color: #86868b; line-height: 1.5; }
.so-card-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.78rem; color: var(--gold-d); font-weight: 600; margin-top: 10px;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .city-nav-links { display: none; }
  .ta-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .ta-split-imgs { grid-template-columns: 1fr 1fr; }
  .ta-split-imgs img:first-child { aspect-ratio: 4/3; grid-row: auto; }
  .ta-services-grid { grid-template-columns: 1fr; }
  .city-content-inner { grid-template-columns: 1fr; gap: 32px; }
  .city-process-grid { grid-template-columns: repeat(2, 1fr); }
  .city-pricing-grid { grid-template-columns: 1fr; }
  .city-price-card--featured { transform: none; }
  .tb-editorial-inner { grid-template-columns: 1fr; }
  .tb-stats-box { position: static; flex-direction: row; flex-wrap: wrap; }
  .tb-stat-row { flex: 1 1 40%; border: none; padding-bottom: 0; }
  .tb-service-row-price { display: none; }
  .tc-stats-grid { grid-template-columns: repeat(2,1fr); }
  .tc-stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); padding: 16px 0; }
  .tc-stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.08); }
  .tc-block-inner { grid-template-columns: 1fr; }
  .tc-block:nth-child(even) .tc-block-inner { direction: ltr; }
  .tc-pricing-grid { grid-template-columns: 1fr; }
  .td-hero { grid-template-columns: 1fr; }
  .td-hero-right { min-height: 300px; }
  .td-hero-left { padding: 48px 32px; }
  .td-features-grid { grid-template-columns: repeat(2,1fr); }
  .td-content-inner { grid-template-columns: 1fr; }
  .td-sidebar { position: static; }
  .so-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

@media (max-width: 600px) {
  .city-nav-inner { padding: 0 20px; gap: 16px; }
  .ta-hero-content { padding: 0 20px; }
  .ta-hero h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.35rem);
    line-height: 1.05;
  }
  .ta-hero-sub {
    font-size: 0.94rem;
    line-height: 1.65;
    max-width: 330px;
  }
  .ta-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 330px);
  }
  .ta-hero-actions .city-btn { justify-content: center; }
  .tb-hero { padding: 120px 20px 60px; }
  .tc-hero { padding: 110px 20px 60px; }
  .td-hero-left { padding: 48px 20px; }
  .td-features-grid { grid-template-columns: 1fr; }
  .city-process-grid { grid-template-columns: 1fr; }
  .city-content, .city-process, .city-faq { padding: 64px 0; }
  .city-final-cta-btns { flex-direction: column; align-items: center; }
  .city-footer-inner { flex-direction: column; text-align: center; }
}
