/* Shared styles — blog, privacy, and secondary pages */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: #1A1A1A;
  color: #F7F3EE;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; outline: 2px solid #B8956B; outline-offset: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
:focus { outline: none; }
:focus-visible { outline: 2px solid #B8956B; outline-offset: 2px; }

.gold-line::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #B8956B, #D4B896);
  margin-top: 1rem;
}

.prose h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; color: #1A1A1A; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p, .prose li { color: #585149; line-height: 1.75; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin: 1rem 0; }
.prose a { color: #B8956B; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: #1A1A1A; }

.cta-box {
  background: #E8E0D4;
  border: 1px solid #D4C9B8;
  border-radius: 2px;
  padding: 1.5rem;
}

#chat-toggle {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  width: 3.25rem; height: 3.25rem; background: #F7F3EE; color: #1A1A1A;
  border: 1px solid #D4C9B8; border-radius: 2px;
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.08);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
#chat-toggle:hover { background: #E8E0D4; border-color: #B8956B; color: #B8956B; }
#chat-toggle .chat-toggle-accent {
  display: block; width: 1rem; height: 2px; margin-top: 0.125rem;
  background: linear-gradient(90deg, #B8956B, #D4B896); border-radius: 1px;
}
#chat-panel, #chat-backdrop { display: none; }
#chat-panel.is-open, #chat-backdrop.is-open { display: flex; }
#chat-backdrop.is-open { display: block; position: fixed; inset: 0; background: rgba(26,26,26,0.2); z-index: 9998; }
#chat-panel {
  position: fixed; bottom: 6rem; right: 1.5rem; z-index: 10000;
  width: calc(100vw - 3rem); max-width: 24rem; max-height: min(32rem, 70vh);
  background: #F7F3EE; border: 1px solid #E8E0D4; border-radius: 2px;
  flex-direction: column; box-shadow: 0 8px 32px rgba(26, 26, 26, 0.12); overflow: hidden;
}
.chat-bubble { max-width: 88%; padding: 0.75rem 1rem; border-radius: 2px; margin-bottom: 0.75rem; }
#chat-starters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
body.chat-open { overflow: hidden; }