/* About page — matches contact & landing chrome */

body.page-about .about-page {
  padding: calc(var(--site-header-height, 96px) + 40px) 0 72px;
  background: linear-gradient(165deg, #f4f7f8 0%, #e8eef0 45%, #dfe8ea 100%);
  min-height: calc(100svh - var(--site-header-height, 96px));
  box-sizing: border-box;
}

@media (max-width: 575px) {
  body.page-about .about-page {
    padding-top: calc(var(--site-header-height, 72px) + 24px);
  }
}

body.page-about .about-page .container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  box-sizing: border-box;
}

.about-page__eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3d5a62;
  margin: 0 0 12px;
}

.about-page__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: #1a2e32;
  margin: 0 0 16px;
}

.about-page__lead {
  font-family: "Jost", sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #4a5f66;
  margin: 0 0 32px;
}

.about-page__intro {
  text-align: center;
  margin-bottom: 40px;
}

.about-page__body {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #2d3f45;
}

.about-page__body p {
  margin: 0 0 1rem;
}

.about-page__body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a2e32;
  margin: 2rem 0 0.75rem;
}

.about-page__body h2:first-of-type {
  margin-top: 0;
}

.about-page__registration {
  margin-top: 32px;
  padding: 24px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 34, 35, 0.08);
  box-shadow: 0 4px 16px rgba(18, 34, 35, 0.06);
}

.about-page__registration h2 {
  margin-top: 0;
}

.about-page__registration-intro {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #5a7078;
}

.about-page__registration dl {
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.about-page__registration dt {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a7078;
}

.about-page__registration dd {
  margin: 4px 0 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a2e32;
}

.about-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.about-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.about-page__btn--primary {
  background: #122223;
  color: #fff;
}

.about-page__btn--primary:hover {
  background: #1a3335;
  color: #fff;
}

.about-page__btn--outline {
  background: transparent;
  color: #122223;
  border: 1px solid rgba(18, 34, 35, 0.2);
}

.about-page__btn--outline:hover {
  border-color: #122223;
}
