/* Antonia Blome Website - geprüftes Bildlayout */
:root {
  --bg: #f7f3ee;
  --ink: #121212;
  --muted: #6b625a;
  --line: rgba(18,18,18,.12);
  --gold: #c99a42;
  --gold-dark: #8a6325;
  --night: #10131a;
  --cream: #fffaf1;
  --card: #ffffff;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(16, 19, 26, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(247, 243, 238, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 850; letter-spacing: -.02em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: var(--night); color: var(--gold); font-weight: 900;
}
.nav { display: flex; gap: 24px; align-items: center; font-weight: 700; color: #2a2927; white-space: nowrap; }
.nav a:hover { color: var(--gold-dark); }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 28px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 20%, rgba(201,154,66,.25), transparent 32%),
    linear-gradient(135deg, #fffaf1, #ece5db);
}
.hero h1 {
  font-size: clamp(52px, 9vw, 116px);
  line-height: .9; letter-spacing: -.08em; margin: 0 0 24px;
}
.lead { font-size: clamp(20px, 3vw, 34px); max-width: 760px; color: #312f2b; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; color: var(--gold-dark); font-weight: 850; font-size: 13px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.btn {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 50px; padding: 0 22px; border-radius: 999px;
  font-weight: 800; border: 1px solid rgba(0,0,0,.12);
}
.btn.primary { background: var(--night); color: white; box-shadow: 0 12px 30px rgba(16,19,26,.2); }
.btn.secondary { background: white; color: var(--night); }

.hero-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  min-width: 0;
}
.hero-image-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #eee5d7;
  display: grid;
  place-items: center;
  min-height: 360px;
}
.hero-image-frame img {
  width: 100%;
  height: auto;
  max-height: min(68vh, 660px);
  object-fit: contain;
  object-position: center;
}

.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.stat-grid div { background: white; border-radius: 18px; padding: 16px; text-align: center; }
.stat-grid strong { display: block; font-size: 23px; }
.stat-grid span { color: var(--muted); font-size: 13px; }

.section { padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 64px); }
.intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
h1,h2,h3,p { overflow-wrap: break-word; }
h2 { font-size: clamp(34px, 5vw, 64px); line-height: 1; letter-spacing: -.05em; margin: 0 0 22px; }
h3 { margin-bottom: 8px; font-size: 22px; }

.dark-section { background: var(--night); color: var(--cream); }
.dark-section .eyebrow { color: #e7bd66; }
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 38px; }
.timeline-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 22px; }
.timeline-item span { color: #e7bd66; font-weight: 900; font-size: 18px; }

.section-heading { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 28px; }
.section-note { color: var(--muted); max-width: 420px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.photo-card {
  margin: 0;
  background: #ffffff;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 18px 46px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.photo-card img {
  width: 100%;
  height: clamp(300px, 38vw, 460px);
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #efe8dc, #fbf7ef);
  border-radius: 18px;
}
.photo-card figcaption,
.show-photo figcaption {
  padding: 10px 4px 2px;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.show-section {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 42px;
  align-items: center;
  background: #eee5d7;
}
.check-list { padding-left: 22px; margin-top: 22px; }
.check-list li { margin: 10px 0; }

.show-photo {
  margin: 0;
  background: white;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.show-photo img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  background: #151923;
}

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.mail-link {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--gold-dark);
  word-break: break-word;
}

.footer {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 30px clamp(20px, 5vw, 64px);
  background: #0b0d12; color: rgba(255,255,255,.78);
}
.footer a { color: white; }

/* Legal pages */
.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 20px;
}
.legal-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 54px);
}
.legal-card h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -.05em;
}
.legal-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 34px;
}
.legal-card p { margin-bottom: 16px; }
.legal-card a { color: var(--gold-dark); font-weight: 800; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-frame { min-height: 280px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .intro, .show-section, .contact-section { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading { display: block; }
}

@media (max-width: 720px) {
  .site-header { align-items: center; }
  .brand-text { max-width: 150px; }
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 78px; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch;
    background: white; padding: 18px; border-radius: 20px; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .gallery, .timeline, .stat-grid { grid-template-columns: 1fr; }
  .photo-card img { height: min(78vh, 520px); }
  .hero-image-frame img { max-height: 560px; }
}
