/* ════════════════════════════════════════════════════════════
   Shared styles for info pages (About, Contact, FAQ, Book, etc.)
   Pairs with chelsea.css
   ════════════════════════════════════════════════════════════ */

/* Page hero — light cream */
.page-hero {
  padding: 150px 2rem 4.5rem;
  background:
    radial-gradient(ellipse at 80% 30%, var(--blush-soft) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, var(--cream) 0%, transparent 55%),
    var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px dashed var(--rose-gold-lt);
  opacity: 0.3;
  pointer-events: none;
}
.page-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.page-hero .eyebrow::before, .page-hero .eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--rose-gold); opacity: 0.7;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--rose-gold);
  font-weight: 400;
}
.page-hero p {
  color: var(--cocoa);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* Page content */
.page-content {
  padding: 5rem 2rem 5rem;
  background: var(--ivory);
}
.page-content-inner {
  max-width: 860px;
  margin: 0 auto;
}
.page-content h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.page-content h2 em { font-style: italic; color: var(--rose-gold); font-weight: 400; }
.page-content h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}
.page-content p {
  color: var(--cocoa);
  font-size: 1.04rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.page-content p strong { color: var(--ink); font-weight: 600; }
.page-content p a {
  color: var(--rose-gold);
  font-weight: 600;
  border-bottom: 1px dotted var(--rose-gold-lt);
  transition: color 0.2s;
}
.page-content p a:hover { color: var(--plum); }

/* Values / feature grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.value-card {
  background: var(--pearl);
  border: 1px solid var(--hairline-lt);
  border-radius: 22px;
  padding: 2.25rem 1.85rem;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  box-shadow: var(--shadow-soft);
}
.value-card:hover { transform: translateY(-5px); border-color: var(--rose-gold-lt); box-shadow: var(--shadow-card); }
.value-icon-wrap {
  width: 56px; height: 56px;
  margin: 0 auto 1.2rem;
  border-radius: 14px;
  background: var(--grd-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
}
.value-card h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.value-card p {
  color: var(--cocoa);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.contact-card {
  background: var(--pearl);
  border: 1px solid var(--hairline-lt);
  border-radius: 22px;
  padding: 2.25rem 1.85rem;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  box-shadow: var(--shadow-soft);
}
.contact-card:hover { transform: translateY(-5px); border-color: var(--rose-gold-lt); box-shadow: var(--shadow-card); }
.contact-card-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  background: var(--grd-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
}
.contact-card h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.contact-card p {
  color: var(--cocoa);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rose-gold);
  font-weight: 600;
  font-size: 0.92rem;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--rose-gold);
  transition: color 0.2s, gap 0.3s var(--ease);
}
.contact-card-link:hover { color: var(--plum); gap: 0.6rem; }

/* FAQ */
.faq-section { margin-bottom: 3rem; }
.faq-section h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hairline-lt);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: -0.005em;
}
.faq-section h2 em { font-style: italic; color: var(--rose-gold); font-weight: 400; }
.faq-section h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--grd-rose);
  border-radius: 999px;
}
.faq-item {
  background: var(--pearl);
  border: 1px solid var(--hairline-lt);
  border-radius: 16px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: var(--hairline); box-shadow: var(--shadow-soft); }
.faq-item.open { border-color: var(--rose-gold-lt); box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--rose-gold); }
.faq-q .chevron {
  color: var(--rose-gold);
  font-size: 0.85rem;
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a > div {
  padding: 0 1.5rem 1.4rem;
}
.faq-a p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--cocoa);
  margin: 0;
}

/* CTA band */
.cta-band {
  background: var(--grd-blush);
  padding: 4.5rem 2rem;
  text-align: center;
  border-radius: 28px;
  margin: 3rem 0 0;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.cta-band h2 em { font-style: italic; color: var(--rose-gold); font-weight: 400; }
.cta-band p {
  color: var(--cocoa);
  font-size: 1.04rem;
  margin-bottom: 1.85rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Book page specifics */
.book-frame {
  background: var(--pearl);
  border: 1px solid var(--hairline-lt);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: 2.5rem;
}
.book-frame iframe {
  width: 100%;
  min-height: 720px;
  border: none;
  display: block;
}
.book-fallback {
  text-align: center;
  padding: 3rem 2rem;
}
.book-fallback p {
  margin-bottom: 1.75rem;
  font-size: 1.04rem;
  color: var(--cocoa);
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero { padding: 130px 1.25rem 3rem; }
  .page-content { padding: 3rem 1.25rem 3.5rem; }
  .values-grid, .contact-cards { grid-template-columns: 1fr; }
  .cta-band { padding: 3.5rem 1.5rem; border-radius: 22px; }
}
