@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400;1,400&display=swap');

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

:root {
  --dark:    #111111;
  --dark-2:  #0d0d0d;
  --dark-3:  #1e1e1e;
  --border:  #2a2a2a;
  --light:   #f2f0ec;
  --light-2: #d8d4cc;
  --text-light: #e8e4dc;
  --text-mid:   #888888;
  --text-dark:  #1a1a1a;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--text-light); }

img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }

/* --- NAV --- */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 3rem;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.logo {
  font-family: var(--font-heading);
  font-size: 18px; color: var(--text-light);
  letter-spacing: 2px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 11px; color: var(--text-mid); text-decoration: none;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-light); }

/* --- HERO --- */
.hero {
  background: var(--dark);
  padding: 7rem 2rem 6rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  font-size: 11px; letter-spacing: 4px; color: var(--text-mid);
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 58px);
  color: var(--text-light); font-weight: 400;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.hero p {
  font-size: 15px; color: var(--text-mid); font-style: italic;
  max-width: 420px; margin: 0 auto 2.5rem; line-height: 1.9;
}
.btn {
  display: inline-block; padding: 13px 36px;
  border: 1px solid #555; color: #bbb;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-family: var(--font-body); cursor: pointer; background: transparent;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.btn:hover { border-color: var(--text-light); color: var(--text-light); }

/* --- DIVIDER --- */
.divider {
  display: flex; align-items: center; gap: 1rem;
  padding: 2rem 3rem; background: var(--dark-2);
}
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-icon { color: #444; font-size: 14px; }

/* --- OM --- */
.om {
  background: var(--light);
  padding: 5rem 3rem;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center;
}
.om-img { aspect-ratio: 3/4; overflow: hidden; }
.om-text .eyebrow { color: #999; }
.om-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text-dark); font-weight: 400;
  margin: 0.75rem 0 1.5rem; line-height: 1.3;
}
.om-text p {
  font-size: 15px; color: #555; line-height: 1.9;
  font-style: italic; margin-bottom: 1.2rem;
}
.signatur {
  font-family: var(--font-heading); font-size: 24px;
  color: #999; margin-top: 1.5rem; font-style: italic;
}

/* --- GALLERI --- */
.galleri {
  background: var(--dark-2); padding: 4rem 3rem;
}
.galleri-header { text-align: center; margin-bottom: 2.5rem; }
.galleri-header h2 {
  font-family: var(--font-heading);
  font-size: 30px; color: var(--text-light); font-weight: 400; margin-top: 0.75rem;
}
.galleri-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.galleri-item { position: relative; aspect-ratio: 2/3; overflow: hidden; }
.galleri-item img { transition: transform 0.4s ease; }
.galleri-item:hover img { transform: scale(1.04); }
.galleri-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 11px; color: #aaa;
  letter-spacing: 2px; text-transform: uppercase;
}

/* --- KONTAKT --- */
.kontakt {
  background: var(--light); padding: 5rem 2rem;
  text-align: center; border-top: 1px solid var(--light-2);
}
.kontakt h2 {
  font-family: var(--font-heading);
  font-size: 30px; font-weight: 400; color: var(--text-dark);
  margin: 0.75rem 0 1rem;
}
.kontakt p {
  font-size: 14px; color: #888; font-style: italic; margin-bottom: 2rem; line-height: 1.8;
}
.btn-dark {
  border-color: #aaa; color: #555;
}
.btn-dark:hover { border-color: var(--text-dark); color: var(--text-dark); }

/* --- FOOTER --- */
footer {
  background: var(--dark); padding: 2rem;
  text-align: center; border-top: 1px solid var(--border);
  font-size: 11px; color: #444;
  letter-spacing: 2px; text-transform: uppercase;
}

/* --- RESPONSIV --- */
@media (max-width: 700px) {
  nav { padding: 1rem 1.5rem; }
  .om { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .galleri-grid { grid-template-columns: 1fr 1fr; }
  .galleri { padding: 3rem 1.5rem; }
  .hero { padding: 4rem 1.5rem; }
}

/* --- PLACEHOLDERS --- */
.placeholder {
    width: 100%; height: 100%;
    background: #1e1e1e;
    border: 1px dashed #3a3a3a;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.75rem; color: #444;
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; font-family: var(--font-body);
}
.placeholder-icon { font-size: 22px; opacity: 0.4; }
.om-img .placeholder { aspect-ratio: 3/4; }
