:root {
  --forest: #1a2e1a;
  --forest-deep: #0f1d0f;
  --forest-mid: #24422a;
  --cream: #f8f5ef;
  --cream-warm: #efeadf;
  --gold: #c9a84c;
  --gold-soft: #b89a42;
  --stone: #6b6b63;
  --stone-light: #a8a8a0;
  --line: rgba(26, 46, 26, 0.12);
  --line-gold: rgba(201, 168, 76, 0.35);

  --f-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-sans: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--cream);
  color: var(--forest);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body { overflow-x: hidden; }

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

a.contact-link-plain,
.footer-col a.contact-link-plain:hover {
  color: inherit;
  text-decoration: none;
}

.serif { font-family: var(--f-serif); font-weight: 400; }
.sans { font-family: var(--f-sans); }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 56px;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
  color: var(--cream);
}
.nav.scrolled {
  background: rgba(15, 29, 15, 0.92);
  backdrop-filter: blur(12px);
  padding: 18px 56px;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.18);
}
.nav-logo {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-logo em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.nav-toggle {
  display: none;
}
.nav-links {
  display: flex;
  gap: 44px;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  align-items: center;
}
.nav-links a,
.nav-trigger {
  position: relative;
  padding: 4px 0;
  opacity: 0.88;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a::after,
.nav-trigger::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger,
.nav-trigger.is-active { opacity: 1; color: var(--gold); }
.nav-links a:hover::after,
.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after,
.nav-trigger.is-active::after { transform: scaleX(1); }
.nav-item {
  position: relative;
}
.nav-item::after {
  content: '';
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 24px;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-trigger::before {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}
.nav-dropdown {
  position: absolute;
  z-index: 5;
  top: calc(100% + 18px);
  left: 50%;
  width: 270px;
  padding: 14px;
  background: rgba(15, 29, 15, 0.96);
  border: 1px solid rgba(201, 168, 76, 0.24);
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
  backdrop-filter: blur(14px);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown a {
  display: block;
  padding: 11px 12px;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 14px;
  color: rgba(248,245,239,0.82);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.nav-dropdown a:last-child {
  border-bottom: 0;
}
.nav-dropdown a::after {
  display: none;
}
.nav-dropdown a:hover,
.nav-dropdown a.is-active,
.nav-dropdown a[aria-current="page"] {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.nav-phone {
  font-family: var(--f-serif);
  font-size: 17px;
  letter-spacing: 0.02em;
}
.nav-phone span { color: var(--gold); margin-right: 8px; }
.nav-cta {
  border: 1px solid rgba(201, 168, 76, 0.72);
  color: var(--gold);
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}
.nav-cta:hover,
.nav-cta.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}

/* === PREMIUM HEADER V07 === */
.ph-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0;
  pointer-events: none;
}
.ph-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 18px 56px;
  pointer-events: auto;
  background: #EAE8E2;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(15, 29, 15, 0.10);
  backdrop-filter: blur(18px) saturate(0.94);
  -webkit-backdrop-filter: blur(18px) saturate(0.94);
  gap: 34px;
  transition: background 0.4s ease, padding 0.32s ease, box-shadow 0.4s ease;
}
.ph-header.ph-scrolled {
  padding: 11px 56px;
  background: #EAE8E2;
  box-shadow: 0 10px 32px rgba(15, 29, 15, 0.14);
}
.ph-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}
.ph-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: padding 0.36s ease, background 0.36s ease, border-color 0.36s ease;
}
.ph-header.ph-scrolled .ph-logo-badge {
  padding: 0;
  background: transparent;
  border-color: transparent;
}
.ph-logo img {
  display: block;
  width: 172px;
  height: auto;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.04);
  transition: width 0.36s ease;
}
.ph-header.ph-scrolled .ph-logo img {
  width: 140px;
}
.ph-logo-sub {
  display: block;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-deep);
  border-left: 1px solid rgba(26, 46, 26, 0.22);
  padding: 3px 0 3px 14px;
  line-height: 1.55;
  max-height: 40px;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.36s ease, max-width 0.36s ease, padding 0.36s ease;
}
.ph-header.ph-scrolled .ph-logo-sub {
  opacity: 0;
  max-width: 0;
  padding-left: 0;
  border-left-color: transparent;
  pointer-events: none;
}
.ph-header.ph-scrolled .ph-logo {
  gap: 12px;
}
.ph-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.ph-nav-link {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.22s ease;
}
.ph-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}
.ph-nav-link:hover,
.ph-nav-link.is-active {
  color: var(--forest-deep);
}
.ph-nav-link:hover::after,
.ph-nav-link.is-active::after {
  transform: scaleX(1);
}
.ph-nav-arrow {
  display: inline-block;
  margin-left: 7px;
  font-size: 18px;
  color: var(--gold-soft);
  opacity: 0.9;
  transition: transform 0.24s ease, opacity 0.24s ease;
  line-height: 1;
}
.ph-nav-item {
  position: relative;
}
.ph-nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}
.ph-nav-item:hover .ph-nav-arrow,
.ph-nav-item:focus-within .ph-nav-arrow {
  transform: rotate(90deg);
  opacity: 1;
}
.ph-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 210px;
  background: rgba(12, 24, 12, 0.96);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 4px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  z-index: 100;
}
.ph-nav-item:hover .ph-dropdown,
.ph-nav-item:focus-within .ph-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.ph-dropdown a {
  display: block;
  padding: 15px 20px;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.82);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: color 0.18s ease, background 0.18s ease;
}
.ph-dropdown a:last-child {
  border-bottom: 0;
}
.ph-dropdown a:hover,
.ph-dropdown a.is-active,
.ph-dropdown a[aria-current="page"] {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.ph-service-note {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 18px;
  border-left: 1px solid rgba(26, 46, 26, 0.22);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(26, 46, 26, 0.6);
  text-decoration: none;
  white-space: nowrap;
}
.ph-service-note strong {
  color: var(--forest-deep);
  font-size: 15px;
  letter-spacing: 0.12em;
}
.ph-service-note:hover strong {
  color: var(--gold-soft);
}
.ph-btn {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--forest-deep);
  border: 1px solid var(--forest-deep);
  padding: 10px 16px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}
.ph-btn:hover,
.ph-btn.is-active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--gold-soft);
}
@media (max-width: 1680px) {
  .ph-service-note {
    display: none;
  }
}
@media (max-width: 1220px) {
  .ph-logo-sub {
    display: none;
  }
}

.ph-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.38);
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ph-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest-deep);
  border-radius: 1px;
  transition: transform 0.24s ease, opacity 0.2s ease;
}
.ph-hamburger[aria-expanded="true"] {
  border-color: rgba(201, 168, 76, 0.70);
  background: rgba(201, 168, 76, 0.10);
}
.ph-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ph-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.ph-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: var(--cream);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,29,15,0.55) 0%, rgba(15,29,15,0.25) 35%, rgba(15,29,15,0.75) 100%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 160px 56px 56px;
  max-width: 1600px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 20px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 500;
  line-height: 1.4;
}
.hero-eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--gold);
}
.hero-headline {
  font-family: var(--f-serif);
  font-size: clamp(56px, 9vw, 148px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero-subline {
  display: inline-block;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  color: var(--cream-warm);
  max-width: 48ch;
  margin-top: 36px;
  margin-left: -16px;
  letter-spacing: 0.01em;
  line-height: 1.35;
  background: rgba(15, 29, 15, 0.55);
  padding: 12px 16px;
  border-radius: 4px;
}
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
  padding-top: 48px;
}
.hero-meta {
  font-size: 16px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(248, 245, 239, 0.7);
  line-height: 2;
}
.hero-meta strong { color: var(--gold); font-weight: 500; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 22px 38px;
  background: var(--forest-deep);
  color: var(--cream);
  border: 1px solid var(--gold);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: all 0.35s cubic-bezier(.22,.8,.36,1);
  cursor: pointer;
}
.btn-gold::after {
  content: ''; width: 22px; height: 1px; background: var(--gold);
  transition: width 0.3s ease, background 0.3s ease;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}
.btn-gold:hover::after { background: var(--forest-deep); width: 32px; }

.hero-scroll {
  position: absolute;
  right: 56px; bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(248, 245, 239, 0.7);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2.2s ease-in-out infinite;
  writing-mode: horizontal-tb;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* === STATEMENT === */
.statement {
  padding: 180px 56px 200px;
  background: var(--cream);
  position: relative;
}
.statement-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}
.statement-label {
  font-size: 16px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 56px;
  display: flex; align-items: center; gap: 14px;
}
.statement-label::before {
  content: '01';
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--forest);
  opacity: 0.7;
}
.statement-quote {
  font-family: var(--f-serif);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--forest);
  position: relative;
}
.statement-quote::before {
  content: '“';
  position: absolute;
  left: -0.4em; top: -0.4em;
  font-size: 1.6em;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.statement-quote em { font-style: italic; color: var(--forest-mid); }

.statement-body {
  padding-top: 120px;
}
.statement-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 20px;
  font-weight: 300;
  max-width: 44ch;
}
.statement-body p:first-of-type::first-line {
  color: var(--forest);
  font-weight: 400;
}
.statement-owner {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  max-width: 520px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.22);
}
.statement-owner-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.32);
  background: var(--cream-warm);
  box-shadow: 0 18px 42px rgba(15, 29, 15, 0.10);
}
.statement-owner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(0.98);
}
.statement-owner-copy {
  padding-bottom: 6px;
}
.statement-sig {
  display: flex; align-items: center; gap: 20px;
}
.statement-sig-name {
  font-family: var(--f-serif);
  font-size: 26px;
  font-style: italic;
  color: var(--forest);
}
.statement-sig-title {
  font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stone-light);
  border-left: 1px solid var(--line-gold);
  padding-left: 20px;
}
.statement-owner-copy p {
  max-width: 32ch;
  margin: 18px 0 0;
  font-family: var(--f-serif);
  font-size: 22px;
  line-height: 1.32;
  color: var(--forest);
  font-style: italic;
}

/* === LEISTUNGEN === */
.services {
  background: #000;
  color: var(--cream);
  padding: 160px 0 0;
  position: relative;
  overflow: hidden;
}
.services-header {
  max-width: 1280px;
  margin: 0 auto 112px;
  padding: 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.68fr);
  gap: 150px;
  align-items: center;
}
.services-eyebrow {
  font-size: 16px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 34px;
  display: flex; align-items: center; gap: 14px;
}
.services-eyebrow::before {
  content: '02';
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(248,245,239,0.66);
  opacity: 1;
}
.services-title {
  font-family: var(--f-serif);
  font-size: clamp(58px, 6.2vw, 96px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 11ch;
}
.services-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.services-intro {
  font-size: 17px;
  color: rgba(248, 245, 239, 0.68);
  line-height: 1.75;
  max-width: 42ch;
  font-weight: 300;
  padding-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 420px;
  gap: 1px;
  background: rgba(201, 168, 76, 0.18);
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--forest-deep);
  display: block;
  color: inherit;
}
.service-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(.22,.8,.36,1), filter 0.6s ease;
  filter: brightness(0.42) saturate(0.72) contrast(0.92);
}
.service-card:hover .service-img {
  transform: scale(1.06);
  filter: brightness(0.34) saturate(0.86) contrast(0.96);
}
.service-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,29,15,0.42) 0%, rgba(15,29,15,0.72) 55%, rgba(15,29,15,0.94) 100%),
    linear-gradient(90deg, rgba(15,29,15,0.42) 0%, rgba(15,29,15,0.08) 58%, rgba(15,29,15,0.32) 100%);
}
.service-content {
  position: absolute; inset: 0;
  padding: 44px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--cream);
  z-index: 2;
}
.service-num {
  position: absolute; top: 32px; right: 40px;
  font-family: var(--f-sans);
  font-size: clamp(26px, 2vw, 36px); color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.9;
}
.service-title {
  font-family: var(--f-serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1;
}
.service-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 0;
  transform: translateY(0);
  transition: transform 0.45s ease, margin-bottom 0.45s ease;
}
.service-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248, 245, 239, 0.85);
  max-width: 38ch;
  margin-top: 18px;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, max-height 0.45s ease, transform 0.45s ease;
  font-weight: 300;
}
.service-more {
  margin-top: 20px;
  font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease 0.05s, transform 0.45s ease 0.05s;
  display: flex; align-items: center; gap: 10px;
}
.service-more::after {
  content: ''; width: 20px; height: 1px; background: var(--gold);
}
.service-card:hover .service-desc,
.service-card:hover .service-more {
  opacity: 1;
  max-height: 200px;
  transform: translateY(0);
}
.service-card:hover .service-tagline {
  margin-bottom: 0;
}

.services-foot {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 56px 160px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 0;
}
.services-foot-text {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(248, 245, 239, 0.75);
  font-weight: 300;
}

/* === TRUST === */
.trust {
  background: var(--cream);
  padding: 140px 56px;
}
.trust-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.trust-label {
  font-size: 16px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 40px;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.trust-label::before, .trust-label::after {
  content: ''; width: 40px; height: 1px; background: var(--line-gold);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  background: var(--cream);
  padding: 72px 44px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.trust-num {
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.trust-title {
  font-family: var(--f-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest);
  max-width: 16ch;
}
.trust-desc {
  font-size: 14.5px;
  color: var(--stone);
  line-height: 1.7;
  max-width: 32ch;
  font-weight: 300;
  margin-top: 8px;
}

/* === FINAL CTA === */
.final {
  position: relative;
  min-height: 720px;
  color: var(--cream);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 56px;
  background-image: url('https://images.unsplash.com/photo-1601985705806-5b9a71f6004f?w=2400&q=85');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.final-bg {
  position: absolute; inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45) saturate(0.85);
}
.final-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,29,15,0.7) 0%, rgba(15,29,15,0.85) 100%);
}
.final-content {
  position: relative;
  max-width: 1320px;
  width: 100%;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 520px);
  gap: 64px;
  align-items: center;
}
.final-copy {
  text-align: center;
}
.final-form-slot {
  min-height: 420px;
  width: 100%;
  border: 1px solid rgba(201,168,76,0.45);
  background: rgba(15,29,15,0.36);
  backdrop-filter: blur(4px);
  overflow: hidden;
  padding: 28px;
  text-align: left;
}
.contact-form-intro {
  margin-bottom: 28px;
}
.contact-form-intro-title {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.3;
}
.contact-form-intro-text {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(248, 245, 239, 0.62);
  line-height: 1.72;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form-row {
  display: grid;
  gap: 8px;
}
.contact-form label,
.contact-form-check {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-form input,
.contact-form textarea,
.contact-form select,
.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  border: 1px solid rgba(248,245,239,0.22);
  background: rgba(15,29,15,0.52);
  color: var(--cream);
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 12px 14px;
  outline: none;
}
.contact-form select,
.request-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.contact-form select option,
.request-form select option {
  background: var(--forest-deep);
  color: var(--cream);
}
.contact-form textarea,
.request-form textarea {
  resize: vertical;
  min-height: 112px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  border-color: rgba(201,168,76,0.72);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.08);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(248,245,239,0.28);
  font-style: italic;
  font-weight: 300;
}
.contact-form-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(248,245,239,0.78);
  letter-spacing: 0.04em;
  text-transform: none;
}
.contact-form-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--gold);
}
.contact-form-submit {
  justify-content: center;
  width: 100%;
  margin-top: 4px;
}
.contact-form-fallback {
  display: grid;
  min-height: 360px;
  align-content: center;
  gap: 14px;
  text-align: center;
  color: rgba(248,245,239,0.82);
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}
.contact-form-fallback-title {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-form-fallback a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.7);
}
.final-label {
  font-size: 16px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.final-label::before, .final-label::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.final-title {
  font-family: var(--f-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.final-title em { font-style: italic; color: var(--gold); }
.final-phone {
  font-family: var(--f-serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
  color: var(--cream);
  display: inline-block;
  position: relative;
  padding: 0 20px;
  text-decoration: none;
}
.final-phone-label {
  display: block;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.final-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(248,245,239,0.6);
}
.final-divider::before, .final-divider::after {
  content: ''; width: 80px; height: 1px; background: rgba(201,168,76,0.5);
}

/* === FOOTER === */
.footer {
  background: #000;
  color: var(--cream);
  padding: 100px 56px 40px;
  border-top: 1px solid rgba(201,168,76,0.18);
}
.footer-top {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-brand-name {
  font-family: var(--f-serif);
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.footer-brand-name em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.footer-brand-tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(248,245,239,0.65);
  max-width: 28ch;
  line-height: 1.5;
  font-weight: 300;
}
.footer-col h4 {
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 14.5px;
  line-height: 2.1;
  color: rgba(248,245,239,0.78);
  font-weight: 300;
}
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(248,245,239,0.78);
  font-weight: 300;
}
.footer-col .highlight {
  color: var(--cream);
  font-family: var(--f-serif);
  font-size: 19px;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 36px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(248,245,239,0.5);
  letter-spacing: 0.05em;
}
.footer-bottom-links { display: flex; gap: 32px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* === IMAGE BACKGROUNDS === */
.img-hero {
  background-image:
    linear-gradient(135deg, rgba(15,29,15,0.4) 0%, transparent 50%, rgba(15,29,15,0.6) 100%),
    url('https://images.unsplash.com/photo-1598902108854-10e335adac99?w=2400&q=85');
}
.img-bewaesserung {
  background-image: url('uploads/2024/06/jan-garden-hannover-bewaesserung_11.jpg');
  background-position: center;
}
.img-maehroboter {
  background-image: url('uploads/2024/06/jan-garden-garten-maehroboter_02.jpg');
}
.service-card--maehroboter .service-img {
  background-position: center;
}
.img-planung {
  background-image: url('uploads/2024/06/jan-garden-hannover-gartenplanung_01.jpg');
  background-position: center;
}
.img-gestaltung {
  background-image: url('uploads/2023/03/gartengestaltung-hannover_04.jpg');
  background-position: center 55%;
}
.img-pflege {
  background-image: url('uploads/2023/03/gartenpflege-hannover_04.jpg');
  background-position: center;
}
.img-baum {
  background-image: url('uploads/baumfaellarbeiten-arborist-henk-schuurmans-pexels.jpg');
  background-position: center;
}
.img-final {
  background-image: url('img/galerie/gartenprojekt-12.jpg');
  background-position: center 48%;
}
.img-subpage-gestaltung {
  background-image: url('img/galerie/gartenprojekt-11.jpg');
  background-position: center 52%;
}
.img-subpage-leistungen {
  background-image: url('img/galerie/gartenprojekt-12.jpg');
  background-position: center 48%;
}
.img-subpage-planung {
  background-image: url('uploads/2024/06/jan-garden-hannover-gartenplanung_04.jpg');
  background-position: center 50%;
}
.img-subpage-pflege {
  background-image: url('img/galerie/rasen-pflege-02.jpg');
  background-position: center 48%;
}
.img-subpage-bewaesserung {
  background-image: url('uploads/2024/06/jan-garden-hannover-bewaesserung_11.jpg');
  background-position: center 50%;
}
.img-subpage-maehroboter {
  background-image: url('img/galerie/maehroboter-02.jpg');
  background-position: center 52%;
}
.img-subpage-baum {
  background-image: url('uploads/2024/06/jan-garden-baumpflege_08.jpg');
  background-position: center 48%;
}
.img-subpage-about {
  background-image: url('uploads/2023/03/jan-garden_ueber-uns.png');
}
.img-subpage-gallery {
  background-image: url('uploads/2024/06/jan-garden_hannover_garten-04.jpg');
}
.img-subpage-contact {
  background-image: url('uploads/2024/06/jan-garden_hannover_garten-10.jpg');
}

/* === SUBPAGES === */
.subpage-hero {
  min-height: 680px;
}
.subpage-hero .hero-bg {
  filter: brightness(0.58) saturate(0.82) contrast(0.96);
}
.subpage-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(15,29,15,0.88) 0%, rgba(15,29,15,0.64) 42%, rgba(15,29,15,0.34) 100%),
    linear-gradient(180deg, rgba(15,29,15,0.74) 0%, rgba(15,29,15,0.28) 44%, rgba(15,29,15,0.88) 100%);
}
.subpage-hero .hero-vignette {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.02) 34%, rgba(0,0,0,0.62) 100%);
}
.subpage-hero .hero-content {
  padding-top: 250px;
}
.subpage-main {
  background: var(--cream);
}
.content-band {
  padding: 140px 56px;
}
.content-band.alt {
  background: var(--forest-deep);
  color: var(--cream);
}
.content-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}
.content-kicker {
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
}
.content-band.alt .content-kicker {
  color: var(--gold);
}
.content-title {
  font-family: var(--f-serif);
  font-size: clamp(40px, 5vw, 78px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.content-title em {
  color: var(--gold);
  font-style: italic;
}
.content-copy {
  font-size: 17px;
  line-height: 1.8;
  color: var(--stone);
  font-weight: 300;
}
.content-band.alt .content-copy {
  color: rgba(248,245,239,0.72);
}
.content-copy p + p {
  margin-top: 20px;
}
.feature-list {
  list-style: none;
  display: grid;
  gap: 24px;
}
.feature-list li {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.content-band.alt .feature-list li {
  border-top-color: rgba(201,168,76,0.22);
}
.feature-list strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 8px;
}
.content-band.alt .feature-list strong {
  color: var(--cream);
}
.feature-list span {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}
.content-band.alt .feature-list span {
  color: rgba(248,245,239,0.72);
}
.breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  max-width: 1600px;
  margin: 0 auto;
  padding: 160px 56px 0;
  color: rgba(248,245,239,0.74);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: var(--gold);
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.link-card {
  background: var(--cream);
  padding: 42px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.25s ease, color 0.25s ease;
}
.link-card:hover {
  background: var(--forest-deep);
  color: var(--cream);
}
.link-card small {
  color: var(--gold-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 15px;
}
.link-card strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  margin: 26px 0 18px;
}
.link-card span {
  color: var(--stone);
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 300;
}
.link-card:hover span {
  color: rgba(248,245,239,0.72);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.18);
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.18);
  align-items: stretch;
}
.image-grid.compact {
  max-width: 1400px;
  margin: 0 auto;
}
.image-grid.compact .image-card.wide,
.image-grid.compact .image-card.tall {
  grid-column: auto;
  aspect-ratio: 4 / 3;
}
.image-slider {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 64px;
}
.content-band:has(.image-slider) {
  padding-top: 22px;
}
.contact-overview-band {
  padding-bottom: 34px;
}
.content-band.contact-slider-band {
  padding-top: 0;
}
.image-slider-viewport {
  overflow: hidden;
}
.image-slider-track {
  display: flex;
  gap: 1px;
  background: rgba(201,168,76,0.18);
}
.image-slider-slide {
  flex: 0 0 calc((100% - 2px) / 3);
  text-decoration: none;
  cursor: zoom-in;
}
.image-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,168,76,0.72);
  background: rgba(15,29,15,0.78);
  color: var(--cream);
  font-size: 34px;
  line-height: 1;
  transition: background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}
.image-slider-btn:hover {
  background: var(--gold);
  color: var(--forest-deep);
}
.image-slider-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}
.image-slider-btn--prev {
  left: 0;
}
.image-slider-btn--next {
  right: 0;
}
.image-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.image-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15,29,15,0.24);
  border: 1px solid rgba(201,168,76,0.42);
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.image-slider-dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: rgba(7, 16, 8, 0.92);
}
.image-lightbox.is-open {
  display: flex;
}
.image-lightbox img {
  max-width: min(1500px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0,0,0,0.42);
}
.image-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,168,76,0.72);
  background: rgba(15,29,15,0.88);
  color: var(--cream);
  font-size: 38px;
  line-height: 1;
}
.image-lightbox-nav:hover {
  background: var(--gold);
  color: var(--forest-deep);
}
.image-lightbox-prev {
  left: 30px;
}
.image-lightbox-next {
  right: 30px;
}
.image-lightbox-close {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,168,76,0.72);
  background: rgba(15,29,15,0.88);
  color: var(--cream);
  font-size: 32px;
  line-height: 1;
}
.image-lightbox-close:hover {
  background: var(--gold);
  color: var(--forest-deep);
}
body.lightbox-open {
  overflow: hidden;
}
.image-card {
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: var(--forest-deep);
  overflow: hidden;
  position: relative;
}
.image-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.image-card.wide {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}
.image-card.tall {
  aspect-ratio: 3 / 4;
  min-height: 0;
}
.image-card.tall img {
  min-height: 0;
}
.image-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: var(--cream);
  font-family: var(--f-serif);
  font-size: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
  z-index: 2;
}
.image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15,29,15,0.72) 100%);
  pointer-events: none;
}
.punch-band {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 90px 56px;
}
.content-band:has(.image-grid) {
  padding-top: 80px;
  padding-bottom: 80px;
}
.punch-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.18);
}
.punch-card {
  background: var(--forest-deep);
  padding: 44px;
  min-height: 220px;
}
.punch-card small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 24px;
}
.punch-card strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 18px;
}
.punch-card span {
  color: rgba(248,245,239,0.7);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}
.gallery-tile {
  min-height: 320px;
  padding: 34px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #172819, #4c6147);
  color: var(--cream);
}
.gallery-tile:nth-child(2n) { background: linear-gradient(135deg, #102014, #6a6a54); }
.gallery-tile:nth-child(3n) { background: linear-gradient(135deg, #1a2e1a, #35544c); }
.gallery-tile strong {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 400;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.contact-card {
  background: var(--cream);
  padding: 46px;
}
.contact-card h2 {
  font-family: var(--f-serif);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 18px;
}
.contact-card p {
  color: var(--stone);
  font-weight: 300;
  line-height: 1.8;
}
.request-hero .hero-bg {
  background-position: center 42%;
}
.request-band {
  padding-top: 96px;
}
.request-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: 72px;
  align-items: start;
}
.request-intro {
  position: sticky;
  top: 130px;
}
.request-intro p {
  max-width: 560px;
  color: rgba(15,29,15,0.72);
  font-size: 18px;
  line-height: 1.85;
}
.request-contact-box {
  margin-top: 36px;
  padding: 28px;
  border-left: 1px solid var(--gold);
  background: rgba(15,29,15,0.045);
}
.request-contact-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--stone);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.request-contact-box a {
  font-family: var(--f-serif);
  font-size: 34px;
  color: var(--forest-deep);
}
.request-form {
  display: grid;
  gap: 18px;
  padding: 42px;
  background:
    linear-gradient(145deg, rgba(15,29,15,0.94), rgba(26,46,26,0.88)),
    var(--forest-deep);
  border: 1px solid rgba(201,168,76,0.36);
  box-shadow: 0 30px 80px rgba(15,29,15,0.18);
  color: var(--cream);
}
.request-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.request-form label,
.request-form .contact-form-check {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.request-form .contact-form-check {
  color: rgba(248,245,239,0.78);
  letter-spacing: 0.04em;
  text-transform: none;
}
.request-form-note {
  margin-top: -4px;
  color: rgba(248,245,239,0.52);
  font-size: 13px;
  line-height: 1.6;
}
.request-steps {
  padding-top: 90px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.22,.8,.36,1), transform 1s cubic-bezier(.22,.8,.36,1);
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}

/* === Tweaks panel === */
.tweaks-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 300px;
  background: var(--forest-deep);
  color: var(--cream);
  border: 1px solid var(--gold);
  padding: 22px 22px 18px;
  z-index: 200;
  font-family: var(--f-sans);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  font-size: 13px;
}
.tweaks-panel h5 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.tweaks-panel .tw-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.tw-row { margin-bottom: 14px; }
.tw-row label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.65);
  margin-bottom: 8px;
}
.tw-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.tw-swatch {
  width: 28px; height: 28px;
  border: 1px solid rgba(248,245,239,0.2);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.tw-swatch.active { border-color: var(--gold); transform: scale(1.1); }
.tw-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tw-opt {
  padding: 6px 12px;
  border: 1px solid rgba(248,245,239,0.2);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.8);
  cursor: pointer;
  transition: all 0.2s;
}
.tw-opt.active { border-color: var(--gold); color: var(--gold); }
.tw-opt:hover { color: var(--cream); }

/* Responsive */
/* === LEGAL PAGES === */
.hero-compact { min-height: 400px; }
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-block { margin-bottom: 44px; }
.legal-block h2 {
  font-family: var(--f-serif);
  font-size: clamp(20px, 1.8vw, 28px);
  color: var(--forest-deep);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.legal-block h3 {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 30px 0 10px;
  font-weight: 500;
}
.legal-block p {
  line-height: 1.85;
  color: rgba(15,29,15,0.74);
  margin-bottom: 14px;
  font-size: 15px;
}
.legal-block a { color: var(--gold); }
.legal-block a:hover { text-decoration: underline; }
.legal-block ul { margin: 14px 0 14px 22px; }
.legal-block li { line-height: 1.85; color: rgba(15,29,15,0.74); margin-bottom: 10px; font-size: 15px; }
.legal-toc { list-style: none; margin-left: 0 !important; }
.legal-attribution { font-size: 13px; color: var(--stone-light); font-style: italic; }

@media (max-width: 1040px) {
  .image-slider-slide {
    flex-basis: calc((100% - 1px) / 2);
  }
}

@media (max-width: 960px) {
  .nav {
    padding: 18px 24px;
    gap: 18px;
    justify-content: flex-start;
  }
  .nav.scrolled { padding: 14px 24px; }
  .nav-logo {
    margin-right: auto;
    flex-shrink: 0;
  }
  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(201, 168, 76, 0.48);
    background: rgba(15, 29, 15, 0.48);
    color: var(--cream);
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.24s ease, opacity 0.2s ease, background 0.2s ease;
  }
  .nav.is-open .nav-toggle {
    border-color: rgba(201, 168, 76, 0.78);
    background: rgba(201, 168, 76, 0.12);
  }
  .nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(15, 29, 15, 0.97);
    border: 1px solid rgba(201, 168, 76, 0.32);
    box-shadow: 0 28px 70px rgba(0,0,0,0.36);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }
  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a,
  .nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  }
  .nav-links a::after,
  .nav-trigger::after {
    display: none;
  }
  .nav-item::after {
    display: none;
  }
  .nav-item {
    display: block;
  }
  .nav-dropdown {
    position: static;
    width: auto;
    padding: 4px 0 8px 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    transform: none;
  }
  .nav-dropdown a {
    padding: 9px 0;
    font-size: 13px;
    color: rgba(248,245,239,0.7);
    border-bottom-color: rgba(201, 168, 76, 0.10);
  }
  .nav-phone { font-size: 14px; }
  .nav-cta {
    display: none;
  }
  .ph-header,
  .ph-header.ph-scrolled {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ph-nav {
    gap: 16px;
  }
  .ph-nav-link {
    font-size: 13px;
    letter-spacing: 0.10em;
  }
  .ph-btn {
    font-size: 14px;
    padding: 9px 12px;
    letter-spacing: 0.10em;
  }
  .ph-logo img {
    width: 150px;
  }
  .ph-header.ph-scrolled .ph-logo img {
    width: 110px;
  }
  .hero-content { padding: 140px 24px 40px; }
  .statement { padding: 100px 24px 120px; }
  .statement-inner { grid-template-columns: 1fr; gap: 60px; }
  .statement-body { padding-top: 0; }
  .statement-owner {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 20px;
    max-width: 100%;
  }
  .statement-sig {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .statement-sig-title {
    border-left: 0;
    padding-left: 0;
  }
  .services-header { grid-template-columns: 1fr; padding: 0 24px; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .services-foot { padding: 60px 24px 100px; flex-direction: column; gap: 30px; }
  .trust { padding: 80px 24px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer { padding: 60px 24px 30px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .final { padding: 100px 24px; min-height: 600px; }
  .final-content { grid-template-columns: 1fr; gap: 42px; }
  .final-form-slot { min-height: 320px; padding: 24px; }
  .hero-scroll { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .breadcrumb { padding: 96px 24px 0; }
  .subpage-hero { min-height: 620px; }
  .hero-compact { min-height: 340px; }
  .content-band { padding: 90px 24px; }
  .content-inner { grid-template-columns: 1fr; gap: 44px; }
  .request-band { padding-top: 70px; }
  .request-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .request-intro {
    position: static;
  }
  .request-form {
    padding: 28px;
  }
  .request-form-grid {
    grid-template-columns: 1fr;
  }
  .request-contact-box a {
    font-size: 28px;
  }
  .link-grid, .gallery-grid, .contact-grid, .image-grid, .punch-inner { grid-template-columns: 1fr; }
  .link-card, .contact-card { padding: 34px 28px; }
  .gallery-tile { min-height: 240px; }
  .image-card, .image-card img { min-height: 0; }
  .image-card.wide { grid-column: span 1; }
  .image-card.wide, .image-card.tall { aspect-ratio: 4 / 3; }
  .image-card.tall, .image-card.tall img { min-height: 0; }
  .image-slider-slide { flex-basis: 100%; }
  .image-slider { padding: 0 48px; }
  .image-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  .image-slider-btn--prev { left: 10px; }
  .image-slider-btn--next { right: 10px; }
  .image-lightbox {
    padding: 20px;
  }
  .image-lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 32px;
  }
  .image-lightbox-prev { left: 14px; }
  .image-lightbox-next { right: 14px; }
  .image-lightbox-close {
    top: 14px;
    right: 14px;
  }
  .punch-band { padding: 70px 24px; }
  .punch-card { padding: 34px 28px; min-height: auto; }
}

@media (max-width: 380px) {
  .nav {
    padding: 14px 16px;
    gap: 10px;
  }
  .nav.scrolled {
    padding: 12px 16px;
  }
  .nav-logo {
    font-size: 24px;
  }
  .nav-phone {
    font-size: 14px;
  }
  .nav-phone span {
    margin-right: 5px;
  }
  .nav-links {
    left: 16px;
    right: 16px;
  }
}

@media (max-width: 768px) {
  .ph-hamburger {
    display: flex;
  }
  .ph-wrap {
    top: 0;
    padding: 0;
  }
  .ph-header,
  .ph-header.ph-scrolled {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
  }
  .ph-logo {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .ph-logo-sub {
    display: none;
  }
  .ph-header.ph-scrolled .ph-logo-sub {
    display: none;
  }
  .ph-logo img {
    width: 130px;
  }
  .ph-header.ph-scrolled .ph-logo img {
    width: 110px;
  }
  /* Mobile nav – Overlay-Drawer, standardmäßig geschlossen */
  .ph-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    background: rgba(9, 20, 10, 0.99);
    border-top: 1px solid rgba(201, 168, 76, 0.18);
  }
  .ph-nav.is-open {
    display: flex;
  }
  .ph-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: rgba(248, 245, 239, 0.88);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    box-sizing: border-box;
  }
  .ph-nav-link:hover,
  .ph-nav-link.is-active {
    color: var(--gold);
  }
  .ph-nav-link::after {
    display: none;
  }
  .ph-nav-item {
    display: block;
  }
  .ph-nav-item::after {
    display: none;
  }
  /* Leistungen: auf Mobile als Label, nicht klickbar */
  .ph-nav-item > .ph-nav-link {
    pointer-events: none;
    cursor: default;
    color: rgba(201, 168, 76, 0.65);
    font-size: 11px;
    letter-spacing: 0.20em;
    padding-top: 22px;
    padding-bottom: 8px;
    border-bottom: 0;
  }
  .ph-nav-item .ph-nav-arrow {
    display: none;
  }
  /* Dropdown immer sichtbar auf Mobile */
  .ph-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    max-height: none;
    overflow: visible;
  }
  .ph-nav-item:hover .ph-dropdown,
  .ph-nav-item:focus-within .ph-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .ph-dropdown a {
    padding: 12px 24px 12px 32px;
    font-size: 13px;
    letter-spacing: 0.09em;
    color: rgba(248, 245, 239, 0.72);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  }
  .ph-service-note {
    padding: 18px 24px;
    border-left: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    white-space: normal;
    color: rgba(248, 245, 239, 0.54);
  }
  .ph-service-note strong {
    color: rgba(248, 245, 239, 0.82);
  }
  .ph-service-note:hover strong {
    color: var(--gold);
  }
  .ph-btn {
    margin: 20px 24px;
    text-align: center;
    background: transparent;
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.7);
  }
  .ph-btn:hover,
  .ph-btn.is-active {
    background: var(--gold);
    color: var(--forest-deep);
    border-color: var(--gold);
  }
}

/* === GOOGLE BEWERTUNGEN === */
.reviews-section {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 120px 56px;
  text-align: center;
}
.reviews-inner {
  max-width: 680px;
  margin: 0 auto 56px;
}
.reviews-summary {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.reviews-rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.reviews-rating-num {
  font-family: var(--f-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.reviews-rating-max {
  font-family: var(--f-sans);
  font-size: 20px;
  font-weight: 300;
  color: rgba(248, 245, 239, 0.45);
}
.reviews-count {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.38);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1520px;
  margin: 0 auto 48px;
  padding: 0 56px;
}
.review-card {
  background: rgba(248, 245, 239, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: 4px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.review-stars {
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 3px;
  opacity: 0.88;
}
.review-text {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(248, 245, 239, 0.72);
  line-height: 1.72;
  flex: 1;
}
.review-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 168, 76, 0.10);
}
.review-author {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(248, 245, 239, 0.78);
}
.review-date {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(248, 245, 239, 0.30);
  flex-shrink: 0;
}
.review-link {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.72;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}
.review-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.reviews-footer {
  text-align: center;
  padding-top: 8px;
}
.review-source {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.30);
  margin-bottom: 22px;
}
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; gap: 14px; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.reviews-eyebrow {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.reviews-stars {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 28px;
  opacity: 0.88;
}
.reviews-title {
  font-family: var(--f-serif);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}
.reviews-title em {
  font-style: italic;
  color: var(--gold-soft);
}
.reviews-text {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 300;
  color: rgba(248, 245, 239, 0.68);
  line-height: 1.75;
  margin-bottom: 42px;
}
.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.55);
  padding: 14px 34px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}
.reviews-link:hover {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}
@media (max-width: 960px) {
  .reviews-section { padding: 90px 24px; }
  .reviews-text { font-size: 16px; }
}

/* === FAQ === */
.faq-section {
  background: var(--cream-warm);
  padding: 140px 56px;
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-eyebrow {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.faq-title {
  font-family: var(--f-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.faq-title em {
  font-style: italic;
  color: var(--gold-soft);
}
.faq-sub {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}
.faq-list {
  display: grid;
  gap: 0;
}
.faq-item {
  border-top: 1px solid rgba(26, 46, 26, 0.08);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(26, 46, 26, 0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  user-select: none;
  outline: none;
}
.faq-question:focus-visible {
  box-shadow: 0 2px 0 rgba(201, 168, 76, 0.45);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: var(--f-sans);
  font-size: 26px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.32s ease;
}
.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.78;
  padding-bottom: 28px;
  max-width: 720px;
}
@media (max-width: 960px) {
  .faq-section { padding: 90px 24px; }
  .faq-header { margin-bottom: 44px; }
  .faq-question { font-size: clamp(20px, 5vw, 24px); padding: 22px 0; }
  .faq-answer { font-size: 15px; }
}

/* === GALERIE CLEAN GRID === */
.gallery-clean-section {
  padding: 0 56px 80px;
  max-width: 1600px;
  margin: 0 auto;
}
.gallery-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-clean-card {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--forest-deep);
}
.gallery-clean-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-clean-card:hover .gallery-clean-image {
  transform: scale(1.04);
}
.gallery-section-heading {
  padding: 60px 56px 28px;
  max-width: 1600px;
  margin: 0 auto;
}
.gallery-section-heading .content-kicker {
  margin-bottom: 10px;
}
.gallery-section-heading h2 {
  font-family: var(--f-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1.2;
}
.gallery-section-heading h2 em {
  font-style: italic;
  color: var(--gold-soft);
}
@media (max-width: 960px) {
  .gallery-clean-section { padding: 0 16px 56px; }
  .gallery-clean-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery-section-heading { padding: 44px 16px 20px; }
}
@media (max-width: 480px) {
  .gallery-clean-grid { grid-template-columns: 1fr; gap: 6px; }
}
