/* ================================================
   CHECKLIST — SCREEN + PRINT STYLES
   ================================================ */

:root {
  --gold:       #C9A84C;
  --gold-light: #E0BC68;
  --gold-pale:  #F5EDD3;
  --black:      #0C0C0C;
  --dark:       #1A1505;
  --white:      #FFFFFF;
  --cream:      #FAFAF7;
  --text:       #1A1A1A;
  --text-mid:   #555;
  --text-muted: #999;
  --border:     #E8E4DC;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img.emoji { height: 1em; width: 1em; margin: 0 .05em 0 .1em; vertical-align: -0.1em; display: inline-block; }

body {
  font-family: var(--sans);
  background: #EBEBEB;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ---- Print bar ---- */
.print-bar {
  background: var(--black);
  padding: 14px 28px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.print-bar-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.print-bar-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.print-bar-hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex: 1;
  text-align: center;
}
.print-bar-hint strong { color: rgba(255,255,255,0.8); }
.print-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.22s;
  white-space: nowrap;
}
.print-btn:hover { background: var(--gold-light); }

/* ---- Document wrapper ---- */
.doc {
  max-width: 860px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px 60px;
}

/* ---- Each "page" ---- */
.doc > div {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  padding: 52px 56px;
}

/* ---- COVER ---- */
.cover {
  background: linear-gradient(145deg, #0C0C0C 0%, #1A1508 60%, #241E08 100%) !important;
  text-align: center;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cover::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 65%);
  pointer-events: none;
}
.cover-header {
  position: absolute;
  top: 32px;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}
.cover-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.cover-tag {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.cover-flag { font-size: 3.5rem; margin-bottom: 24px; }
.cover-title {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
}
.cover-title em { font-style: italic; color: var(--gold); }
.cover-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 32px;
}
.cover-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.cover-footer {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  padding: 0 48px;
  text-align: center;
}
.cover-footer-line {
  width: 60px;
  height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 0 auto 12px;
}
.cover-footer p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ---- INTRO ---- */
.section-header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gold-pale);
}
.section-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.intro-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 22px 18px;
  border: 1px solid var(--border);
}
.intro-icon { font-size: 1.8rem; margin-bottom: 10px; }
.intro-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.intro-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* ---- PHASE PAGES ---- */
.phase-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--gold-pale);
}
.phase-num-badge {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.phase-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 4px;
}
.phase-opt {
  font-size: 0.8em;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--sans);
}
.phase-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.checklist-group { margin-bottom: 26px; }
.group-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark, #A8882E);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.55;
  padding: 8px 0;
  border-bottom: 1px solid #F0EDE6;
}
.checklist li:last-child { border-bottom: none; }
.cb {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid #CCC8BE;
  border-radius: 4px;
  margin-top: 1px;
  background: var(--white);
}

.tip-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFFBEF;
  border: 1px solid #E8D888;
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 8px;
}
.tip-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.tip-box p {
  font-size: 0.82rem;
  color: #6B5A10;
  line-height: 1.6;
}

/* ---- BONUS ---- */
.bonus-page {
  background: linear-gradient(145deg, #0C0C0C, #1A1508) !important;
  color: var(--white);
}
.bonus-header {
  text-align: center;
  margin-bottom: 44px;
}
.bonus-star { font-size: 2.8rem; margin-bottom: 16px; }
.bonus-title {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}
.bonus-title em { font-style: italic; color: var(--gold); }
.bonus-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.tip-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 22px 20px;
}
.tip-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  margin-bottom: 8px;
}
.tip-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.tip-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.checklist-footer {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.checklist-footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.footer-disclaimer { margin-top: 8px; font-size: 0.7rem !important; }

/* ---- ABOUT / EXPERTISE BLOCK (guide pages) ---- */
.about-hero {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--gold-pale);
}
.about-photo {
  width: 132px;
  height: 176px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A8882E;
  margin-bottom: 8px;
}
.about-intro h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.15;
}
.about-intro p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.about-creds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.cred {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFBEF;
  border: 1px solid #E8D888;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.about-structures {
  text-align: center;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.struct-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.structs {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
}
.about-note {
  margin-top: 18px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {
  @page {
    size: A4;
    margin: 12mm 14mm;
  }

  .no-print { display: none !important; }

  body { background: white; }

  .doc {
    margin: 0;
    padding: 0;
    max-width: 100%;
    gap: 0;
    display: block;
  }

  .doc > div {
    border-radius: 0;
    box-shadow: none;
    padding: 20mm 18mm;
    margin: 0;
  }

  .page-break-after { page-break-after: always; }

  .cover {
    min-height: 250mm;
  }

  .bonus-page {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .tip-box, .intro-card, .tip-card,
  .cred, .about-structures, .about-photo {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  a { text-decoration: none; color: inherit; }
}

/* ---- Responsive ---- */
@media (max-width: 700px) {
  .doc > div { padding: 32px 24px; }
  .print-bar-inner { flex-direction: column; gap: 10px; }
  .intro-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .cover-title { font-size: 2.8rem; }
  .phase-title { font-size: 1.6rem; }
  .about-hero { flex-direction: column; text-align: center; }
  .about-creds { grid-template-columns: 1fr; }
}
