* {
  box-sizing: border-box;
}

:root {
  --blue: #5e89a3;
  --blue-dark: #456e86;
  --light: #d9d9d9;
  --text-dark: #4a4037;
  --white: #ffffff;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Times New Roman", Times, serif;
  background: #e6e6e6;
  color: var(--text-dark);
}

body {
  min-height: 100vh;
}

/* Desktop: horizontal und vertikal zentriert */
.page-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card-grid {
  width: min(100%, 900px);
  aspect-ratio: 403 / 286;
  display: grid;
  grid-template-columns: 25.3% 74.7%;
  grid-template-rows: 46.2% 53.8%;
}

.panel {
  min-width: 0;
  min-height: 0;
}

.panel-image {
  background: var(--light);
}

.panel-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.panel-header {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 18px 20px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-header h1 {
  margin: 0 0 8px;
  font-size: 2.2rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.panel-header p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.35;
}

.panel-header .email {
  margin-top: 18px;
}

.panel-header a,
.panel-contact a {
  color: inherit;
  text-decoration: none;
}

.panel-contact {
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  text-align: center;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.appointment {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.25;
  font-weight: 500;
}

.phone-icon {
  width: min(40%, 72px);
  height: auto;
  display: block;
}

.phone {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.panel-services {
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  text-align: center;
}

.services-inner {
  width: 100%;
  max-width: 420px;
}

.panel-services ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.panel-services li,
.duration {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.4;
}

.divider {
  width: 76%;
  height: 3px;
  margin: 16px auto 12px;
  background: #6f655d;
}

.card-grid {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

@media (max-width: 700px) {
  .page-wrap {
    min-height: auto;
    padding: 0;
  }

  .card-grid {
    width: 100%;
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .panel-image {
    min-height: 220px;
  }

  .panel-header,
  .panel-contact,
  .panel-services {
    padding: 24px 18px;
  }
}
