/* Standalone Phorest booking page — SMS / WhatsApp share link */

.ob-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--linen, #F4EEE0);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text, #3D3530);
}

.ob-page__header {
  flex-shrink: 0;
  background: #edeadb;
  border-bottom: 1px solid rgba(46, 74, 58, 0.12);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ob-page__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.ob-page__brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.ob-page__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.ob-page__wordmark-pre {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5C524A;
}

.ob-page__wordmark-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2E4A3A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-page__title-block {
  text-align: right;
  flex-shrink: 0;
}

.ob-page__eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B87D5B;
  margin: 0 0 2px;
}

.ob-page__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: #2E4A3A;
  margin: 0;
  line-height: 1.15;
}

.ob-page__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}

.ob-page__intro {
  max-width: 360px;
}

.ob-page__intro h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 7vw, 36px);
  font-weight: 400;
  color: #2E4A3A;
  margin: 0 0 12px;
  line-height: 1.15;
}

.ob-page__intro p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: #5C524A;
}

.ob-page__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2E4A3A;
  color: #F4EEE0;
  padding: 18px 36px;
  border: 0;
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  min-width: 220px;
}

.ob-page__cta:hover {
  background: #3D6150;
  transform: translateY(-1px);
}

.ob-page__footer {
  flex-shrink: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: #1A2E22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
}

.ob-page__footer a {
  color: rgba(244, 238, 224, 0.75);
  text-decoration: none;
}

.ob-page__footer a:hover {
  color: #7B9C7E;
}

.ob-page__footer-phone {
  font-weight: 600;
  white-space: nowrap;
}

/* Booking modal — taller frame on this dedicated page */
#cyw-booking-modal .cyw-embed-modal__frame {
  height: min(720px, calc(100dvh - 140px));
}

@media (max-width: 700px) {
  #cyw-booking-modal .cyw-embed-modal__frame {
    height: calc(100dvh - 110px);
  }
}

@media (min-width: 768px) {
  .ob-page__header {
    padding: 16px 28px;
  }

  .ob-page__brand img {
    width: 44px;
    height: 44px;
  }

  .ob-page__wordmark-name {
    font-size: 20px;
  }

  .ob-page__title {
    font-size: 22px;
  }
}
