.contact-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-header {
  padding: 72px 0 0px;
  animation: fadeUp .45s ease both;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: var(--type-h1);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 12px;
}

.page-header p:not(.block-label) {
  font-size: var(--type-body);
  color: var(--text-body);
  line-height: var(--line-body);
  margin-top: 18px;
}

.contact-block {
  padding: 52px 0 56px;
  border-bottom: 1px solid var(--border);
  animation: fadeUp .45s .08s ease both;
}

.booking-block {
  padding: 52px 0 80px;
  animation: fadeUp .45s .16s ease both;
}

.block-label {
  font-size: var(--type-label);
  line-height: var(--line-body);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.channel-list {
  margin-top: 24px;
}

.channel {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.channel:last-child {
  border-bottom: 1px solid var(--border);
}

.channel-key {
  font-size: var(--type-label);
  line-height: var(--line-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.channel-val {
  font-size: var(--type-body-sm);
  line-height: var(--line-body);
  color: var(--ink);
}

.channel-val a {
  color: var(--ink);
  border-bottom: 1px solid var(--border-mid);
  transition: color 0.2s, border-color 0.2s;
}

.channel-val a:hover {
  color: var(--green);
  border-color: var(--green);
}

.channel-sub {
  font-size: var(--type-caption);
  line-height: var(--line-body);
  color: var(--text-muted);
  margin-top: 4px;
}

/* Foto + Kontaktdaten nebeneinander */
.contact-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
}

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

.photo-circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-mid);
  background: var(--cream-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Platzhalter-Icon */
.photo-circle--placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--ink-muted);
  opacity: .5;
}

.photo-name {
  font-size: var(--type-caption);
  font-weight: 500;
  color: var(--ink-mid);
  text-align: center;
  line-height: var(--line-body);
}

.photo-role {
  font-weight: 400;
  color: var(--ink-muted);
}

/* Kontaktzeilen – etwas kompakter als bisher, passt zur schmaleren Spalte */
.contact-channels .channel {
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
}

.quote-block {
  border-left: 2px solid var(--green);
  padding-left: 20px;
  margin-top: 32px;
}

.quote-block blockquote {
  font-family: var(--serif);
  font-size: var(--type-h3);
  line-height: var(--line-body);
  font-style: italic;
  color: var(--ink);
}

.quote-block figcaption {
  font-size: var(--type-caption);
  line-height: var(--line-body);
  color: var(--text-muted);
  margin-top: 12px;
}

.booking-intro {
  margin-top: 24px;
}

.booking-intro h2 {
  font-family: var(--serif);
  font-size: var(--type-h2);
  line-height: 1.15;
  color: var(--ink);
}

.booking-intro p {
  font-size: var(--type-body);
  line-height: var(--line-body);
  color: var(--text-body);
  margin-top: 12px;
}

.no-pressure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--type-caption);
  line-height: var(--line-body);
  color: var(--green);
  background: var(--green-pale);
  border-radius: 2px;
  padding: 8px 10px;
  margin-top: 18px;
}

.no-pressure span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 32px;
}

.step-cell {
  min-height: 180px;
  padding: 22px;
}

.step-cell:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.step-cell:nth-child(-n + 2) {
  border-bottom: 1px solid var(--border);
}

.step-num {
  font-family: var(--serif);
  font-size: var(--type-label);
  line-height: 1;
  font-style: italic;
  color: var(--green);
  margin-bottom: 18px;
}

.step-cell h3 {
  font-size: var(--type-body-sm);
  line-height: var(--line-body);
  font-weight: 500;
  color: var(--ink);
}

.step-cell p {
  font-size: var(--type-body-sm);
  line-height: var(--line-body);
  color: var(--text-body);
  margin-top: 10px;
}

.cal-card {
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 3px;
  margin-top: 36px;
  overflow: hidden;
}

.cal-inner {
  min-height: 240px;
}

.cal-inner iframe {
  background: var(--white);
}

.booking-widget {
  background: transparent;
  border: 0;
  overflow: visible;
}

.booking-widget .cal-inner {
  min-height: 0;
}

.booking-widget-frame:not(:empty) {
  min-height: 240px;
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 3px;
  overflow: hidden;
}

.booking-widget .booking-widget-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.booking-widget .booking-widget-fallback[hidden],
.booking-widget.has-calendar-consent .booking-widget-fallback {
  display: none;
}

.booking-widget .booking-widget-fallback p {
  max-width: 38ch;
  font-size: var(--type-body-sm);
  line-height: var(--line-body);
  color: var(--text-body);
}

.booking-widget .booking-fallback-success {
  color: var(--green);
  font-weight: 500;
}

.booking-widget .booking-fallback-error {
  color: var(--accent);
  font-weight: 500;
}

.booking-widget .booking-fallback-form {
  width: 100%;
  max-width: 460px;
  display: grid;
  gap: 10px;
}

.booking-widget .booking-fallback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.booking-widget .booking-fallback-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: var(--type-caption);
  line-height: var(--line-body);
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-widget .booking-fallback-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.08);
}

.booking-widget .booking-fallback-input::placeholder {
  color: var(--ink-faint);
}

.booking-widget .booking-fallback-privacy {
  max-width: none;
  font-size: var(--type-caption);
  color: var(--text-muted);
  text-align: left;
}

.booking-widget .booking-fallback-form .btn-primary {
  justify-self: center;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--type-button);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--green);
  padding: 12px 18px;
  border-radius: 3px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--green-light);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .contact-page {
    padding: 0 20px;
  }

  .page-header {
    padding: 48px 0 40px;
  }

  .page-header h1 {
    font-size: var(--type-h1);
  }

  .channel {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-photo {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .photo-circle {
    width: 72px;
    height: 72px;
  }

  .photo-name {
    text-align: left;
  }

  .contact-channels .channel {
    grid-template-columns: 72px 1fr;
    gap: 8px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-cell {
    min-height: 0;
  }

  .step-cell:nth-child(odd) {
    border-right: none;
  }

  .step-cell:nth-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .booking-widget .booking-fallback-grid {
    grid-template-columns: 1fr;
  }
}
