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

body {
  background: #111;
  font-family: Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  cursor: crosshair;
}

a, button {
  cursor: pointer;
}

main {
  height: 100vh;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* Logo + tagline */
.top-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo {
  display: block;
  width: 129px;
  height: 26px;
}

.tagline {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

/* Portrait images */
.portraits {
  display: flex;
  gap: 2px;
}

.portrait {
  width: 200px;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* CTA */


.CTA {
  display: flex;
  gap: 8px;
}

.book-call {
  color: rgb(255, 229, 0);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
  text-align: center;
  padding: 0 0;
  display: inline-block;
}

.book-call:hover {
  background: rgba(255, 255, 255, 0.15);
}

.instagram {
  color: rgb(255, 229, 0);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
  text-align: center;
  padding: 0 0;
  display: inline-block;
}

.instagram:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Footer */
footer {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
}

footer a {
  color: #424242;
  font-size: 13px;
  font-family: Inter, sans-serif;
  text-decoration: none;
}

footer a:hover {
  color: #666;
}

/* Content pages (imprint, privacy) */
.content-page {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px;
  color: #fff;
}

.content-page a.back {
  display: inline-block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 48px;
}

.content-page a.back:hover {
  color: #fff;
}

.content-page h1 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}

.content-page h2 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-page p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.content-page a {
  color: rgba(255, 255, 255, 0.75);
}

.inline-logo {
  height: 0.9em;
  width: auto;
  vertical-align: middle;
  display: inline;
}
