/* Shared styles for Bake With Brie subpages (FAQ, About, Terms, Privacy) */
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #FDF6EF;
  color: #2A3158;
  font-family: 'Instrument Sans', 'Trebuchet MS', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: #D22E7C; text-decoration: none; }
a:hover { color: #B0246A; }
h1, h2, h3 { font-family: 'Young Serif', Georgia, serif; font-weight: 400; margin: 0; text-wrap: balance; }
p { margin: 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.page { max-width: 720px; margin: 0 auto; padding: 24px 24px 80px; }

.nav { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.monogram {
  width: 40px; height: 40px; background: #EC4E97; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(210,46,124,.25);
  font-family: 'Young Serif', Georgia, serif; font-size: 24px; color: #fff; line-height: 1;
}
.wordmark { font-family: 'Young Serif', Georgia, serif; font-size: 22px; color: #2A3158; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: #EC4E97; color: #fff; font-family: inherit; font-size: 15px; font-weight: 700;
  height: 44px; padding: 0 20px; border: 0; border-radius: 13px; cursor: pointer;
  box-shadow: 0 3px 10px rgba(210,46,124,.25); white-space: nowrap;
}
.btn:hover { background: #D22E7C; color: #fff; }
.btn:focus-visible, a:focus-visible { outline: 3px solid #F6C231; outline-offset: 2px; }

.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { font-size: 15px; font-weight: 600; color: #7E88A6; }
.nav-links a:hover { color: #D22E7C; }

.eyebrow {
  display: inline-block; background: #FCDCEB; color: #D22E7C; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 7px 14px; border-radius: 99px;
}
.page h1 { font-size: clamp(30px, 4vw, 42px); line-height: 1.15; margin: 14px 0 10px; }
.lede { font-size: 17px; color: #7E88A6; text-wrap: pretty; }

.card {
  background: #fff; border: 1px solid #F1E6DE; border-radius: 16px;
  padding: 22px 24px; display: flex; flex-direction: column; gap: 8px;
}
.stack { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.card h2 { font-size: 18px; }
.card h3 { font-size: 17px; }
.card p { font-size: 15px; color: #4E5678; }
.card p strong { color: #2A3158; }

.footer {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 28px 24px; flex-wrap: wrap;
}
.footer .wordmark { font-size: 17px; }
.footer .monogram { width: 28px; height: 28px; border-radius: 9px; font-size: 17px; box-shadow: none; }
.footer .fine { font-size: 13px; color: #A6ADC6; }
.footer-links { display: flex; gap: 18px; font-size: 13.5px; font-weight: 600; }
.footer-links a { color: #7E88A6; }
.footer-links a:hover { color: #D22E7C; }

@media (max-width: 720px) {
  .nav { flex-wrap: wrap; }
  .nav .wordmark { font-size: 16px; }
  .nav .monogram { width: 32px; height: 32px; font-size: 19px; border-radius: 10px; }
  .nav .brand { gap: 8px; }
  .nav-right { display: contents; }
  .nav-links { order: 3; width: 100%; justify-content: center; gap: 24px; padding-top: 4px; }
  .nav-links a { font-size: 14px; }
  .nav .btn { height: 40px; padding: 0 12px; font-size: 13px; }
  .footer { flex-direction: column; text-align: center; }
}

/* Full-width band system (matches landing page rhythm) */
.band { padding: 64px 0; }
.band.cream { background: #FDF6EF; padding: 36px 0 64px; }
.band.white { background: #fff; }
.band.pinksoft { background: #FCDCEB; }
.band-head { text-align: center; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.band-head h1 { font-size: clamp(30px, 4vw, 42px); line-height: 1.15; }
.band-head h2 { font-size: clamp(24px, 3vw, 32px); }
.band-head .lede { max-width: 60ch; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
@media (max-width: 820px) {
  .faq-grid { grid-template-columns: 1fr; }
  .band { padding: 44px 0; }
}

/* Policy embed loading state */
.policy-loading { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 44px 20px; text-align: center; color: #7E88A6; font-size: 15px; }
.policy-loading img { width: 76px; height: 76px; animation: loader-pulse 1.6s ease-in-out infinite; }
@keyframes loader-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .policy-loading img { animation: none; } }
.pl-fallback { font-size: 13px; color: #A6ADC6; }
