/* ============================================================
   CONSCIOUS CREATION
   Design System · Shared Stylesheet
   Generated from the Conscious Creation Brand Book
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --indigo: #1f1647;
  --violet: #4a2d6e;
  --gold: #b8924a;
  --gold-light: #d4b876;
  --cream: #faf6ec;
  --paper: #f5f0e3;
  --ink: #1a1729;
  --ink-soft: #3d3756;
  --rule: #c9b78a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
header.site-header {
  background: rgba(250, 246, 236, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  text-decoration: none;
  text-align: center;
  display: block;
}

.brand-mark .ornament {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 4px;
  line-height: 1;
}

.brand-mark .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--indigo);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.brand-mark .author {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 4px;
}

nav.main-nav {
  display: flex;
  gap: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}

nav.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
  padding: 4px 0;
}

nav.main-nav a:hover, nav.main-nav a.current {
  color: var(--indigo);
}

nav.main-nav a.current::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

/* ===== HERO (HOMEPAGE) ===== */
.hero {
  text-align: center;
  padding: 96px 32px 80px;
  max-width: 880px;
  margin: 0 auto;
}

.hero .ornament-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 32px;
  line-height: 1;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 500;
  color: var(--indigo);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--violet);
  font-size: 32px;
  margin-top: 16px;
  font-weight: 400;
}

.hero p.lead {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero p.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.hero p.tagline span { display: inline-block; margin: 0 12px; }

/* ===== PAGE HEADER (NON-HOME PAGES) ===== */
.page-header {
  text-align: center;
  padding: 88px 32px 56px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.page-header .ornament {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.page-header .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--indigo);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-header h1 em {
  display: block;
  font-style: italic;
  color: var(--violet);
  font-size: 28px;
  margin-top: 10px;
  font-weight: 400;
}

.page-header p.subtitle {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ===== MAIN CONTENT ===== */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px;
}

main.wide { max-width: 1200px; }

main h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--indigo);
  letter-spacing: 0.02em;
  margin: 80px 0 28px;
  text-align: center;
}

main h2:first-child { margin-top: 0; }

main h2 .label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 400;
}

main h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--violet);
  margin: 48px 0 16px;
  letter-spacing: 0.01em;
}

main p {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.75;
}

main p.lead {
  font-size: 22px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

main p.lead-strong {
  font-size: 22px;
  color: var(--indigo);
  font-weight: 500;
  line-height: 1.55;
  margin: 32px 0;
  text-align: center;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.card-grid.two-up {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 36px 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: block;
  text-decoration: none;
  color: var(--ink);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 22, 71, 0.1);
  border-color: var(--gold);
}

.card .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--indigo);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.card p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}

.card .arrow {
  color: var(--gold);
  font-size: 14px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s;
  border-radius: 2px;
}

.btn-primary {
  background: var(--indigo);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--violet);
}

.btn-secondary {
  background: transparent;
  color: var(--indigo);
  border: 1px solid var(--indigo);
}

.btn-secondary:hover {
  background: var(--indigo);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: white;
}

.btn-gold:hover {
  background: var(--violet);
}

/* ===== DECREE ===== */
.decree {
  margin: 56px auto;
  max-width: 600px;
  padding: 36px 44px;
  background: rgba(74, 45, 110, 0.05);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.6;
  color: var(--violet);
}

.decree::before {
  content: "I AM";
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin-bottom: 18px;
  font-weight: 600;
}

/* ===== PRINCIPLE / RECOGNITION BLOCK ===== */
.principle-block {
  margin: 32px 0;
  padding: 32px 36px;
  background: rgba(184, 146, 74, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}

.principle-block .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.principle-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--indigo);
  margin-bottom: 14px;
  line-height: 1.25;
}

.principle-block p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.principle-block p:last-child { margin-bottom: 0; }

/* ===== CALLOUT ===== */
.callout {
  margin: 56px auto;
  max-width: 720px;
  padding: 36px 48px;
  background: linear-gradient(135deg, rgba(74, 45, 110, 0.05), rgba(184, 146, 74, 0.05));
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  text-align: center;
}

.callout .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.callout p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--violet);
  margin: 0;
  line-height: 1.5;
}

/* ===== SECTION BREAK ===== */
.section-break {
  text-align: center;
  margin: 72px 0;
  color: var(--gold);
  letter-spacing: 1em;
  font-size: 14px;
}

.section-break::after {
  content: "❖   ❖   ❖";
}

/* ===== OFFERING SECTIONS (COACHING PAGE) ===== */
.offering-section {
  scroll-margin-top: 200px;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}

.offering-section:last-child { border-bottom: none; }

.offering-section .offering-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

.offering-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--indigo);
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.offering-section .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--violet);
  text-align: center;
  margin-bottom: 32px;
}

.offering-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}

.offering-meta-item .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.offering-meta-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--indigo);
  font-weight: 500;
}

/* ===== ANCHOR NAV ===== */
.anchor-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: var(--paper);
  border-radius: 6px;
  margin: 0 auto 48px;
  max-width: 800px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.anchor-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.anchor-nav a:hover {
  color: var(--indigo);
}

/* ===== APP / BOOK FEATURE BLOCKS ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 64px 0;
}

.feature-block.reverse .feature-visual { order: 2; }

.feature-visual {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 56px 40px;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-visual .visual-mark {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1;
}

.feature-visual h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--indigo);
  margin-bottom: 8px;
  line-height: 1.2;
}

.feature-visual p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}

.feature-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--indigo);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  margin-top: 0;
}

.feature-content .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-content p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.7;
}

/* ===== APP SCREEN MOCKUPS ===== */
.app-screens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.app-screen {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.app-screen::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
}

.app-screen .time-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 24px 0 16px;
  font-weight: 600;
}

.app-screen .ornament {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
}

.app-screen h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--indigo);
  margin-bottom: 16px;
  line-height: 1.25;
}

.app-screen .prompt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--violet);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.app-screen .action {
  margin-top: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  display: inline-block;
  font-weight: 600;
}

/* ===== WRITINGS ===== */
.writing-list { margin: 32px 0; }

.writing-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}

.writing-item:last-child { border-bottom: none; }

.writing-item .meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.writing-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--indigo);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.writing-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.writing-item h3 a:hover {
  color: var(--violet);
}

.writing-item .excerpt {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.65;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 0;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* ===== SOVEREIGN YEAR (SPECIAL TREATMENT) ===== */
.sovereign-page {
  background: var(--cream);
}

.sovereign-hero {
  background: var(--indigo);
  color: var(--cream);
  padding: 120px 32px;
  text-align: center;
}

.sovereign-hero .ornament {
  color: var(--gold-light);
  font-size: 40px;
  margin-bottom: 32px;
  font-family: 'Cormorant Garamond', serif;
}

.sovereign-hero .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sovereign-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 32px;
}

.sovereign-hero h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  font-size: 40px;
  margin-top: 16px;
  font-weight: 400;
}

.sovereign-hero .invocation {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(250, 246, 236, 0.92);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer.site-footer {
  background: var(--indigo);
  color: rgba(250, 246, 236, 0.85);
  padding: 72px 32px 40px;
  margin-top: 96px;
  text-align: center;
}

footer .footer-mark {
  color: var(--gold-light);
  font-size: 28px;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

footer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

footer .footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

footer .footer-contact {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  margin-bottom: 24px;
  font-size: 17px;
}

footer .footer-contact a {
  color: var(--gold-light);
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.2s;
}

footer .footer-contact a:hover {
  color: var(--cream);
}

footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 36px 0 24px;
}

footer .footer-nav a {
  color: rgba(250, 246, 236, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

footer .footer-nav a:hover {
  color: var(--gold-light);
}

footer .copyright {
  font-size: 12px;
  color: rgba(250, 246, 236, 0.4);
  font-style: italic;
  letter-spacing: 0.1em;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 184, 118, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-block.reverse .feature-visual { order: 0; }
}

@media (max-width: 768px) {
  body { font-size: 17px; }

  .hero { padding: 64px 24px 48px; }
  .hero h1 { font-size: 44px; }
  .hero h1 em { font-size: 24px; }
  .hero p.lead { font-size: 19px; }

  main { padding: 48px 24px; }
  main h2 { font-size: 32px; margin: 56px 0 20px; }
  main h3 { font-size: 24px; }
  main p { font-size: 17px; }

  nav.main-nav {
    gap: 16px;
    font-size: 10.5px;
    letter-spacing: 0.18em;
  }

  .page-header { padding: 56px 24px 40px; }
  .page-header h1 { font-size: 36px; }
  .page-header h1 em { font-size: 22px; }

  .sovereign-hero { padding: 80px 24px; }
  .sovereign-hero h1 { font-size: 48px; }
  .sovereign-hero h1 em { font-size: 28px; }

  .offering-section h3 { font-size: 30px; }

  footer .footer-nav { gap: 18px; font-size: 10px; }
}

/* ===== UTILITIES ===== */
em { color: var(--violet); font-style: italic; }
strong { color: var(--indigo); font-weight: 600; }

.text-center { text-align: center; }
.text-italic { font-style: italic; }
.text-gold { color: var(--gold); }
.mt-large { margin-top: 64px; }
.mb-large { margin-bottom: 64px; }
.maxw-narrow { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ===== VIDEO PLACEHOLDER ===== */
.video-placeholder {
  margin: 32px auto 48px;
  max-width: 720px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 80px 32px;
  text-align: center;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-placeholder-mark {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1;
}

.video-placeholder-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.video-placeholder-note {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 480px;
  line-height: 1.5;
}
