/* Shared styles for top-level pages (about, contact, privacy, terms) — layered on styles.css */

/* ===== Page hero ===== */
.page-hero {
  padding: clamp(80px, 11vw, 130px) 0 clamp(40px, 5vw, 56px);
  background:
    radial-gradient(circle at 18% 22%, rgba(252, 208, 216, 0.55), transparent 50%),
    radial-gradient(circle at 82% 78%, rgba(251, 227, 163, 0.4), transparent 50%),
    var(--ivory);
  text-align: center;
  border-bottom: 1px solid rgba(61, 31, 45, 0.06);
}
.page-hero-inner { max-width: 820px; margin: 0 auto; }
.page-breadcrumbs {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.page-breadcrumbs a { color: var(--coral); }
.page-breadcrumbs a:hover { color: var(--coral-deep); }
.page-breadcrumbs .crumb-sep { color: var(--coral-soft); }

.page-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.page-title em { font-style: italic; color: var(--coral); }

.page-deck {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 22px);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}
.page-deck em { color: var(--coral); font-style: italic; }

/* ===== About: story (single-column, letter is the centerpiece) ===== */
.about-story { padding: var(--space-3xl) 0; background: var(--ivory); }
.about-story-grid {
  display: flex;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.about-letter-col {
  display: flex;
  justify-content: center;
  width: 100%;
}
.about-letter-col .founder-letter { max-width: 720px; width: 100%; }
.about-letter-col .letter-frame { padding: clamp(40px, 5vw, 64px) clamp(36px, 5vw, 56px); }

.brand-phrase-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding-top: var(--space-xl);
}

.brand-phrase-block {
  padding: 32px 36px;
  background: var(--ivory-soft);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
}
.brand-phrase-label {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral) !important;
  margin-bottom: 12px !important;
}
.brand-phrase-text {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-style: italic;
  line-height: 1.55 !important;
  color: var(--ink) !important;
  margin-bottom: 14px !important;
}
.brand-phrase-text strong { color: var(--coral); font-weight: 500; font-style: normal; }
.brand-phrase-tagline {
  font-family: var(--font-script) !important;
  font-size: 26px !important;
  color: var(--coral) !important;
  margin: 0 !important;
}
.brand-phrase-tagline em { color: var(--coral-deep); font-style: italic; }

/* ===== Credentials grid ===== */
.about-credentials-section { padding: var(--space-3xl) 0; background: var(--ivory-soft); border-top: 1px solid rgba(61, 31, 45, 0.06); border-bottom: 1px solid rgba(61, 31, 45, 0.06); }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.credential-fact {
  background: var(--ivory);
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 31, 45, 0.05);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.credential-fact:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.fact-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  background: var(--blush-soft);
  color: var(--coral);
  border-radius: 12px;
  align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.credential-fact h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.credential-fact p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.credential-fact em { color: var(--coral); font-style: italic; }

/* ===== Beliefs ===== */
.about-beliefs { padding: var(--space-3xl) 0; background: var(--ivory); }
.beliefs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.belief-card {
  background: var(--ivory-soft);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 31, 45, 0.05);
  position: relative;
  overflow: hidden;
}
.belief-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-style: italic;
  color: var(--coral);
  opacity: 0.18;
  position: absolute;
  top: 8px; right: 18px;
  line-height: 1;
  font-weight: 500;
}
.belief-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  position: relative;
}
.belief-card h3 em { font-style: italic; color: var(--coral); }
.belief-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ===== Anchor verse ===== */
.about-anchor-verse { padding: var(--space-2xl) 0; background: var(--ivory-soft); }
.anchor-verse-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}
.anchor-verse-ornament {
  display: block;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 18px;
}
.anchor-verse-block p {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.25;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 18px;
}
.anchor-verse-block p em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 65%, var(--gold-soft) 65%);
  padding: 0 4px;
}
.anchor-verse-block cite {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  font-style: normal;
}

/* ===== Final CTA ===== */
.about-cta { padding: var(--space-2xl) 0 var(--space-3xl); background: var(--ivory); }
.about-cta-inner {
  background:
    radial-gradient(circle at 18% 25%, rgba(252, 208, 216, 0.85), transparent 55%),
    radial-gradient(circle at 82% 78%, rgba(251, 227, 163, 0.6), transparent 55%),
    var(--ivory-soft);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 56px);
  text-align: center;
  border: 1px solid rgba(209, 77, 119, 0.18);
  box-shadow: 0 24px 56px -16px rgba(61, 31, 45, 0.12);
}
.about-cta-sub {
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===== Contact page ===== */
.contact-section { padding: var(--space-3xl) 0; background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form-card {
  background: var(--ivory-soft);
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 31, 45, 0.06);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2 {
  font-size: clamp(28px, 3.4vw, 36px);
  margin-bottom: 8px;
}
.contact-form-card .form-intro {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-row input,
.form-row select,
.form-row textarea {
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--ivory);
  border: 1.5px solid rgba(61, 31, 45, 0.12);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(209, 77, 119, 0.12);
}
.form-row textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}
.contact-form .btn { align-self: flex-start; margin-top: 4px; }
.form-fine {
  margin-top: 4px;
  font-size: 13px;
  color: var(--taupe);
  font-style: italic;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card {
  background: var(--ivory-soft);
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 31, 45, 0.06);
}
.contact-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.contact-card p, .contact-card ul {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.contact-card ul { padding-left: 0; list-style: none; }
.contact-card li { padding: 6px 0; }
.contact-card a { color: var(--coral); font-weight: 500; border-bottom: 1px solid var(--coral-soft); }
.contact-card a:hover { color: var(--coral-deep); border-bottom-color: var(--coral); }

/* ===== Legal pages (privacy, terms) ===== */
.legal-content { padding: var(--space-2xl) 0 var(--space-3xl); background: var(--ivory); }
.legal-content-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.legal-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--taupe);
  margin-bottom: var(--space-lg);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(61, 31, 45, 0.08);
}
.legal-content h2 {
  font-size: 28px;
  margin: var(--space-lg) 0 14px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 20px;
  margin: 28px 0 10px;
}
.legal-content p, .legal-content li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 14px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 18px; }
.legal-content a { color: var(--coral); font-weight: 500; border-bottom: 1px solid var(--coral-soft); }
.legal-content a:hover { color: var(--coral-deep); }
.legal-content strong { color: var(--ink); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-letter-col { position: static; }
  .credentials-grid { grid-template-columns: 1fr; }
  .beliefs-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .final-ctas { flex-direction: column; }
  .final-ctas .btn { width: 100%; }
}
