:root {
  --gold: #b8912d;
  --black: #111111;
  --white: #f8f6f0;
  --muted: #6f6a5f;
}

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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, var(--white) 55%, #eee7d8 100%);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page {
  width: 100%;
  max-width: 1100px;
  min-height: 680px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 145, 45, 0.22);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(17, 17, 17, 0.08);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 18px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

nav a {
  color: inherit;
  text-decoration: none;
}

nav a.active {
  color: var(--black);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: var(--black);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(17, 17, 17, 0.16);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 22px;
}

.page-home main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
  padding: 80px 16px;
}

.page-home .eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.page-home h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
}

.page-home .subline {
  max-width: 560px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 36px;
}

.page-home .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.page-home .logo-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(184, 145, 45, 0.13), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(184, 145, 45, 0.2);
}

.page-home .logo-stage img {
  width: min(260px, 70%);
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(184, 145, 45, 0.16));
}

.page-home .modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 20;
}

.page-home .modal-backdrop.active {
  display: flex;
}

.page-home .modal {
  width: min(540px, 100%);
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(184, 145, 45, 0.22);
  box-shadow: 0 30px 60px rgba(17, 17, 17, 0.2);
  padding: 26px;
}

.page-home .modal h2 {
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.page-home .modal p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.45;
}

.page-home .booking-form {
  display: grid;
  gap: 12px;
}

.page-home .booking-form label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}

.page-home .booking-form input {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 12px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  color: var(--black);
}

.page-home .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.page-home .status {
  display: none;
  margin-top: 8px;
  color: #1d5f37;
  font-size: 14px;
}

.page-home .status.visible {
  display: block;
}

.page-about main {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 64px 16px;
}

.page-about .eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-about h1 {
  font-size: clamp(38px, 6.2vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.page-about .intro,
.page-about .body-text {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  font-size: 18px;
  max-width: 600px;
}

.page-about .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.page-about .profile-stage {
  border-radius: 34px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(184, 145, 45, 0.13), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(184, 145, 45, 0.2);
}

.page-about .profile-stage img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 36px rgba(17, 17, 17, 0.16);
}

.page-about .profile-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.page-kunden main {
  padding: 64px 8px;
}

.page-kunden .eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-kunden h1 {
  font-size: clamp(38px, 6.2vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  max-width: 760px;
}

.page-kunden .intro {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 30px;
  font-size: 18px;
  max-width: 760px;
}

.page-kunden .client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-kunden .client-card {
  border-radius: 20px;
  border: 1px solid rgba(184, 145, 45, 0.2);
  background: linear-gradient(145deg, rgba(184, 145, 45, 0.09), rgba(255, 255, 255, 0.95));
  padding: 22px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-kunden .client-name {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-kunden .client-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.page-kunden .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.page-hedgefund main {
  padding: 72px 8px;
}

body.page-hedgefund {
  background: #020202;
  color: #f7f7f2;
}

.page-hedgefund .page {
  max-width: 1180px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.52);
}

.page-hedgefund .brand {
  width: 210px;
  gap: 0;
}

.page-hedgefund .hedgefund-wordmark {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.page-hedgefund .eyebrow {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-hedgefund h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
}

.page-hedgefund .intro {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 38px;
  font-size: 19px;
  max-width: 680px;
}

.page-hedgefund nav {
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hedgefund nav a:hover {
  color: #ffffff;
}

.page-hedgefund footer {
  color: rgba(255, 255, 255, 0.46);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.page-hedgefund .hedgefund-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hedgefund .hedgefund-card {
  border-radius: 0;
  border: 0;
  background: #050505;
  padding: 28px;
  min-height: 210px;
}

.page-hedgefund .hedgefund-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.page-hedgefund .hedgefund-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.page-login .page {
  max-width: 560px;
  min-height: 0;
  text-align: center;
}

.page-login .logo {
  width: min(180px, 42vw);
  height: auto;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 24px 30px rgba(184, 145, 45, 0.16));
}

.page-login .brand-name {
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}

.page-login h1 {
  font-size: clamp(34px, 7vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.page-login p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.page-login label {
  display: block;
  text-align: left;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.page-login input {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  padding: 10px 12px;
  font: inherit;
  margin-bottom: 10px;
}

.page-login button {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 0;
  background: var(--black);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.page-login .error {
  min-height: 22px;
  margin-top: 10px;
  color: #a01f1f;
  font-size: 14px;
}

body.page-hedgefund-login {
  background: #020202;
  color: #f7f7f2;
}

.page-hedgefund-login .page {
  max-width: 560px;
  min-height: 0;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.52);
  text-align: center;
}

.page-hedgefund-login .hedgefund-login-logo {
  width: min(260px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 34px;
}

.page-hedgefund-login h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 7vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.page-hedgefund-login p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  margin-bottom: 22px;
}

.page-hedgefund-login label {
  display: block;
  text-align: left;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.54);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-hedgefund-login input {
  width: 100%;
  min-height: 48px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #020202;
  color: #ffffff;
  padding: 10px 12px;
  font: inherit;
  margin-bottom: 12px;
}

.page-hedgefund-login button {
  width: 100%;
  min-height: 48px;
  border-radius: 0;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #050505;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.page-hedgefund-login .error {
  min-height: 22px;
  margin-top: 12px;
  color: #ff7878;
  font-size: 14px;
}

@media (max-width: 920px) {
  .page-kunden .client-grid,
  .page-hedgefund .hedgefund-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .page {
    padding: 24px;
    min-height: auto;
  }

  nav {
    display: none;
  }

  footer {
    flex-direction: column;
  }

  .page-home main {
    grid-template-columns: 1fr;
    padding: 56px 0;
  }

  .page-home .logo-stage {
    min-height: 260px;
    order: -1;
  }

  .page-about main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0;
  }

  .page-about .intro,
  .page-about .body-text,
  .page-kunden .intro,
  .page-hedgefund .intro {
    font-size: 17px;
  }

  .page-kunden main,
  .page-hedgefund main {
    padding: 42px 0;
  }

  .page-hedgefund .brand {
    width: 176px;
  }
}
