:root {
  --bg: #f8f3ec;
  --surface: #fffdfa;
  --surface-soft: #f2e8dc;
  --text: #27221e;
  --muted: #71685f;
  --line: rgba(66, 51, 41, .14);
  --accent: #b97946;
  --accent-dark: #8f5730;
  --shadow: 0 24px 70px rgba(68, 48, 33, .11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 4%, rgba(217,190,165,.26), transparent 28rem),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 100%);
  font-family: var(--sans);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
}

a { color: inherit; }

.wrapper {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 18px 0;
  background: rgba(251,247,242,.83);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(66,51,41,.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.brand-text {
  display: grid;
  line-height: 1.02;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: .82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #4f4943;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(185,121,70,.09);
  color: var(--accent-dark);
}

.nav-links .nav-cta {
  margin-left: 6px;
  padding-inline: 20px;
  color: #fff;
  background: var(--accent);
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: var(--accent-dark);
}

.hero {
  padding: 58px 0 54px;
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: .95fr 1.2fr;
  gap: 34px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 4vw, 46px) 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(4.2rem, 8vw, 7.6rem);
  line-height: .9;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero h1 span { display: block; }

.hero-intro {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #fff;
  background: var(--accent);
}

.button-primary:hover { background: var(--accent-dark); }

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
  font-weight: 800;
}

.social-row a:hover {
  color: var(--accent-dark);
  border-color: rgba(185,121,70,.45);
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  border-radius: 160px 24px 24px 24px;
  box-shadow: var(--shadow);
  background: #e8d5c3;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(47,32,23,.12));
  pointer-events: none;
}

.section {
  padding: 92px 0;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.about-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 58px;
  align-items: center;
}

.about-photo {
  overflow: hidden;
  min-height: 640px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.value {
  padding: 22px 18px;
  border-top: 1px solid var(--line);
}

.value strong {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-dark);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .8rem;
}

.value span {
  color: var(--muted);
  font-size: .92rem;
}

.gallery-section {
  padding-top: 28px;
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}

.gallery-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr 1.15fr;
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(4) {
  grid-row: span 2;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery figure:hover img { transform: scale(1.035); }

.gallery figure:nth-child(1) img { object-position: center 45%; }
.gallery figure:nth-child(2) img { object-position: center 30%; }
.gallery figure:nth-child(3) img { object-position: center 35%; }
.gallery figure:nth-child(4) img { object-position: center 35%; }
.gallery figure:nth-child(5) img { object-position: center 20%; }
.gallery figure:nth-child(6) img { object-position: center 25%; }

.quote-band {
  margin-top: 90px;
  padding: 64px 24px;
  text-align: center;
  background: #efe3d7;
  border-block: 1px solid rgba(66,51,41,.08);
}

.quote-band blockquote {
  width: min(850px, 100%);
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.28;
  font-style: italic;
  color: #4f4035;
}

.quote-band span {
  display: block;
  margin-top: 18px;
  color: var(--accent-dark);
  font-family: var(--sans);
  font-size: .75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer {
  padding: 58px 0 30px;
  background: #fffaf5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr .8fr 1.15fr;
  gap: 38px;
}

.footer-title {
  margin: 0 0 14px;
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: .92rem;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
  text-decoration: none;
}

.footer-grid a:hover { color: var(--accent-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}

.legal-main {
  padding: 70px 0 100px;
}

.legal-card {
  width: min(920px, 100%);
  margin-inline: auto;
  padding: clamp(28px, 6vw, 72px);
  background: rgba(255,253,250,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 38px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.legal-card h2 {
  margin: 42px 0 10px;
  font-size: 1.45rem;
}

.legal-card p,
.legal-card li {
  color: #5f5750;
}

.legal-card a {
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

.contact-block {
  padding: 22px;
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.15rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 620px;
    border-radius: 90px 24px 24px;
  }

  .about-photo {
    min-height: 720px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery figure {
    grid-row: auto !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .wrapper {
    width: min(100% - 22px, 1180px);
  }

  .site-header { padding: 10px 0; }

  .mobile-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 11px;
    right: 11px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fffaf5;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }

  .nav-links a { text-align: center; }

  .hero { padding-top: 34px; }

  .hero-grid { min-height: auto; }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
  }

  .hero-image {
    min-height: 500px;
    border-radius: 52px 18px 18px;
  }

  .section { padding: 72px 0; }

  .about-photo { min-height: 520px; }

  .values {
    grid-template-columns: 1fr;
  }

  .gallery-head {
    display: block;
  }

  .gallery-head p {
    margin-top: 16px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 390px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

/* VERSION 4 – Bildanordnung nach Designvorlage */
.hero {
  padding-top: 28px;
}

.hero-grid {
  min-height: 680px;
  grid-template-columns: .82fr 1.38fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 72px 42px 58px 4px;
  background:
    linear-gradient(90deg, #fbf7f2 0%, #fbf7f2 72%, rgba(251,247,242,.94) 88%, rgba(251,247,242,0) 100%);
}

.hero-image {
  min-height: 680px;
  margin-left: -72px;
  border-radius: 0;
  box-shadow: none;
}

.hero-image img {
  object-position: center 42%;
}

.hero h1 {
  font-size: clamp(4rem, 7vw, 6.7rem);
}

.about-grid {
  grid-template-columns: .84fr 1.16fr;
}

.about-photo {
  min-height: 610px;
  border-radius: 26px;
}

.about-photo img {
  object-position: center 28%;
}

.gallery-section {
  padding-bottom: 0;
}

.gallery-head {
  margin-bottom: 28px;
}

.gallery {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 10px;
}

.gallery figure,
.gallery figure:nth-child(1),
.gallery figure:nth-child(4) {
  grid-row: auto;
  border-radius: 16px;
}

.gallery figure:nth-child(1) img { object-position: center 30%; }
.gallery figure:nth-child(2) img { object-position: center 40%; }
.gallery figure:nth-child(3) img { object-position: center 28%; }
.gallery figure:nth-child(4) img { object-position: center 42%; }
.gallery figure:nth-child(5) img { object-position: center 44%; }
.gallery figure:nth-child(6) img { object-position: center 45%; }
.gallery figure:nth-child(7) img { object-position: center 25%; }

.quote-band {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .hero-copy {
    padding: 42px 0;
    background: transparent;
  }

  .hero-image {
    margin-left: 0;
    min-height: 620px;
    border-radius: 70px 20px 20px;
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
  }
}

@media (max-width: 720px) {
  .hero-image {
    min-height: 480px;
  }

  .gallery {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .gallery figure {
    flex: 0 0 72%;
    height: 360px;
    scroll-snap-align: start;
  }
}
