/* =============================================
   DEIN FOTO · DEIN MOMENT — Design System
   ============================================= */

@import url('./fonts/fonts.css');

:root {
  --gruen:       #1a5c48;
  --gruen-dark:  #0f3a2d;
  --gruen-light: #2a7a60;
  --slate:       #3a4a5c;
  --creme:       #f8f6f2;
  --creme-dark:  #ede9e1;
  --weiss:       #ffffff;
  --text:        #1e2a35;
  --text-muted:  #6b7c8a;
  --gold:        #c8a96e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(26,92,72,0.08);
  --shadow-md:  0 8px 32px rgba(26,92,72,0.12);
  --shadow-lg:  0 20px 60px rgba(26,92,72,0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--creme);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gruen);
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section--dark {
  background: var(--gruen-dark);
  color: var(--weiss);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--weiss); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .lead { color: rgba(255,255,255,0.7); }

.section--slate {
  background: var(--slate);
  color: var(--weiss);
}

.section--creme { background: var(--creme-dark); }

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(248, 246, 242, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo img {
  height: 64px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gruen);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--gruen); }
.nav__links a:hover::after { width: 100%; }

.nav--light .nav__links a { color: var(--weiss); }
.nav--light .nav__links a:hover { color: var(--gold); }
.nav--light .nav__links a::after { background: var(--gold); }

.nav--light.scrolled .nav__links a { color: var(--text); }
.nav--light.scrolled .nav__links a:hover { color: var(--gruen); }
.nav--light.scrolled .nav__links a::after { background: var(--gruen); }

.nav__cta {
  background: var(--gruen);
  color: var(--weiss) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--gruen-dark) !important;
  transform: translateY(-1px);
}

.nav__cta::after { display: none !important; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--creme);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
  }
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--gruen);
  color: var(--weiss);
}

.btn--primary:hover {
  background: var(--gruen-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--gruen);
  border: 1.5px solid var(--gruen);
}

.btn--outline:hover {
  background: var(--gruen);
  color: var(--weiss);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--weiss);
  color: var(--gruen);
}

.btn--white:hover {
  background: var(--creme);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold);
  color: var(--weiss);
}

.btn--gold:hover {
  background: #b8996a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gruen-dark);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, var(--weiss) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--weiss) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
}

.hero__lens {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__lens::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.hero__lens::after {
  content: '';
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
}

.hero__image-circle {
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 80px rgba(0,0,0,0.4);
}

.hero__image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: var(--weiss);
  padding-top: 80px;
}

.hero__content .eyebrow {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__content h1 {
  color: var(--weiss);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

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

.hero__content .lead {
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 900px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__lens { display: none; }
  .hero__content { max-width: 100%; text-align: center; }
  .hero__actions { justify-content: center; }
}

/* =============================================
   CARDS
   ============================================= */

.card {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--creme-dark);
  position: relative;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card__image img { transform: scale(1.05); }

.card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--creme-dark);
  color: var(--text-muted);
  font-size: 3rem;
}

.card__body { padding: 1.5rem; }
.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gruen);
  background: rgba(26,92,72,0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* =============================================
   GRID LAYOUTS
   ============================================= */

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

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =============================================
   SECTION HEADER
   ============================================= */

.section-header {
  margin-bottom: 4rem;
}

.section-header--center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.section-header .eyebrow { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header .lead { margin-bottom: 0; }

/* =============================================
   PORTFOLIO PREVIEW (Startseite)
   ============================================= */

.portfolio-preview .card__image {
  aspect-ratio: 4 / 5;
}

/* =============================================
   PORTFOLIO GRID (Masonry-like)
   ============================================= */

.portfolio-grid {
  columns: 3;
  column-gap: 1.5rem;
}

.portfolio-grid__item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-grid__item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.portfolio-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,58,45,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.portfolio-grid__item:hover .portfolio-grid__overlay { opacity: 1; }

.portfolio-grid__meta {
  color: var(--weiss);
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 900px) { .portfolio-grid { columns: 2; } }
@media (max-width: 600px) { .portfolio-grid { columns: 1; } }

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonial {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gruen);
  opacity: 0.15;
  line-height: 1;
}

.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--creme-dark);
  overflow: hidden;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial__dog {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   PROCESS / STEPS
   ============================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: steps;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background: rgba(26,92,72,0.2);
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gruen);
  color: var(--weiss);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step h4 { margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
}

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

/* =============================================
   FORM
   ============================================= */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--creme-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--weiss);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gruen);
  box-shadow: 0 0 0 3px rgba(26,92,72,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

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

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--gruen-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__brand img { height: 50px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--weiss);
  margin-bottom: 1.25rem;
}

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--weiss); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--gruen);
  border-color: var(--gruen);
  color: var(--weiss);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* =============================================
   ANIMATIONS
   ============================================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   UTILITY
   ============================================= */

.text-center { text-align: center; }
.text-green { color: var(--gruen); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: rgba(26,92,72,0.1);
  color: var(--gruen);
}

/* =============================================
   PAGE-SPECIFIC: Über mich
   ============================================= */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-split__image {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

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

.about-split__image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  z-index: -1;
}

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

.about-stat {
  background: var(--creme-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.about-stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gruen);
}

.about-stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-split__image { aspect-ratio: 4/3; }
}

/* =============================================
   PAGE-SPECIFIC: Blog
   ============================================= */

.blog-hero {
  background: var(--gruen-dark);
  padding: 160px 0 80px;
  text-align: center;
  color: var(--weiss);
}

.blog-hero h1 { color: var(--weiss); }

.blog-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--creme-dark);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gruen);
  border-color: var(--gruen);
  color: var(--weiss);
}

/* =============================================
   CTA BAND
   ============================================= */

.cta-band {
  background: var(--gruen);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.cta-band h2, .cta-band p { color: var(--weiss); }
.cta-band p { opacity: 0.8; margin: 1rem 0 2.5rem; font-size: 1.1rem; }

/* =============================================
   INTRO SECTION (index.html)
   ============================================= */

.intro {
  padding: 4rem 0;
  background: var(--creme);
}

.intro h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin-bottom: 1rem;
  color: var(--gruen-dark);
}

.intro p {
  max-width: 640px;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1rem;
}

/* =============================================
   REGIONEN SECTION (index.html)
   ============================================= */

.regionen {
  padding: 4rem 0;
  background: var(--weiss);
}

.regionen h2 {
  margin-bottom: 0.5rem;
}

.region-tiles {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.region-tiles li a {
  display: block;
  padding: 1.25rem 1rem;
  background: var(--creme);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gruen-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.region-tiles li a:hover {
  background: var(--gruen);
  color: var(--weiss);
}

@media (max-width: 768px) {
  .region-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .region-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   SERVICE TILES (preise.html, subpages)
   ============================================= */

.service-tiles {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
}

.service-tiles li {
  display: flex;
}

.service-tile {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  padding: 1.75rem 1.25rem;
  background: var(--creme-dark);
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid rgba(26, 92, 72, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-tile:hover {
  border-color: var(--gruen);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-tile__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gruen-dark);
}

.service-tile__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .service-tiles {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   CITY GALLERY (Stadtseiten)
   ============================================= */

.city-gallery {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.city-gallery__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.city-gallery__item picture,
.city-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

@media (max-width: 600px) {
  .city-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

