/* ===== The Architect Method - The Niche & Offer Call =====
   Sales page + Stripe-gated delivery page.
   Brand tokens and layout lifted from craig-workshop/styles.css so this
   sits inside Craig's existing visual system.
*/
:root {
  --black: #0A0A0A;
  --charcoal: #2A2A2A;
  --off-white: #F5F2EC;
  --white: #FFFFFF;
  --gold: #C9A961;
  --gold-soft: rgba(201, 169, 97, 0.12);
  --gold-mid: rgba(201, 169, 97, 0.30);
  --gold-glow: 0 8px 24px rgba(201, 169, 97, 0.28);

  --ink: #1a1a1a;
  --muted: #6b6660;
  --muted-2: #96908a;
  --line: rgba(10, 10, 10, 0.10);

  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 900px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.7; color: var(--ink); background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.01em; font-weight: 700; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.hide { display: none !important; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(245, 242, 236, 0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header .inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.brand-mark { font-family: var(--font-body); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--charcoal); }
.brand-mark span { color: var(--gold); }

/* Hero - black block, like the workbook cover */
.hero {
  background: var(--black); color: var(--off-white);
  border-radius: var(--radius); padding: 54px 44px 44px;
  margin: 34px 0 26px;
  background-image: radial-gradient(700px 380px at 88% -60px, rgba(201, 169, 97, 0.16), transparent 70%);
}
.kicker { color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; font-weight: 600; }
.hero h1 { font-size: clamp(32px, 5.2vw, 54px); line-height: 1.06; margin: 20px 0 18px; color: var(--white); }
.hero h1 .accent { color: var(--gold); }
.hero .lead { color: rgba(245, 242, 236, 0.76); font-size: 17px; max-width: 640px; }
.hero .lead strong { color: var(--white); font-weight: 500; }

/* Event meta strip */
.event-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; }
.meta-pill { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,97,0.28); border-radius: 999px; padding: 9px 16px; font-size: 13.5px; color: var(--off-white); }
.meta-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }
.meta-pill strong { font-weight: 600; }

/* Book / CTA panel */
.reg-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; margin: -14px 0 30px; box-shadow: 0 12px 40px rgba(10,10,10,0.06); text-align: center; }
.reg-panel .form-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.reg-panel .form-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; max-width: 520px; margin-left: auto; margin-right: auto; }
.price-inline { color: var(--gold); font-weight: 600; }
.form-fine { color: var(--muted-2); font-size: 12px; margin-top: 14px; line-height: 1.5; }

/* Buttons */
.btn-gold {
  display: inline-block; text-align: center; background: var(--gold); color: var(--black); border: none;
  padding: 16px 30px; border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 600;
  font-size: 15px; cursor: pointer; text-decoration: none; transition: 0.2s var(--ease); box-shadow: var(--gold-glow);
}
.btn-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-block { display: block; width: 100%; }
.btn-ghost { display: inline-block; text-align: center; background: transparent; color: var(--ink); border: 1px solid var(--line); padding: 13px 22px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; text-decoration: none; transition: 0.2s var(--ease); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Sections */
.section { padding: 26px 0; }
.section-label { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; margin-bottom: 8px; }
.section h2 { font-size: clamp(24px, 3.4vw, 34px); line-height: 1.18; margin-bottom: 10px; }
.section .sub { color: var(--muted); max-width: 660px; margin-bottom: 14px; }

/* Steps */
.steps { list-style: none; }
.step { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 9px; }
.step .num { flex: none; width: 28px; height: 28px; border-radius: 8px; background: var(--gold-soft); border: 1px solid var(--gold-mid); color: var(--gold); font-weight: 600; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.step h4 { font-family: var(--font-body); font-size: 15.5px; font-weight: 600; margin-bottom: 2px; }
.step p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

.note { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 18px 20px; margin: 16px 0; line-height: 1.6; }
.note strong { color: var(--gold); }

/* Two-column keep / tools */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.col-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 22px 18px; }
.col-card.dark { background: var(--black); color: var(--off-white); border-color: transparent; }
.col-card h3 { font-family: var(--font-body); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; color: var(--gold); }
.col-card ul { list-style: none; }
.col-card li { padding-left: 20px; position: relative; margin-bottom: 9px; font-size: 15px; line-height: 1.5; }
.col-card li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.col-card.dark li { color: rgba(245,242,236,0.8); }
.col-card.dark li::before { background: var(--muted-2); }

/* Bio */
.bio { display: flex; gap: 20px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.bio .avatar { flex: none; width: 72px; height: 72px; border-radius: 50%; background: var(--black); border: 1px solid var(--gold-mid); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--gold); }
.bio h3 { font-size: 19px; margin-bottom: 3px; }
.bio .role { color: var(--gold); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.bio p { color: var(--muted); font-size: 15px; }

/* Offer card */
.offer-card { background: var(--white); border: 1px solid var(--gold-mid); border-radius: var(--radius); padding: 30px 28px; margin: 20px 0; }
.offer-card .get-list { list-style: none; margin: 6px 0 18px; }
.offer-card .get-list li { padding-left: 22px; position: relative; margin-bottom: 10px; font-size: 15.5px; line-height: 1.5; }
.offer-card .get-list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }
.offer-card .price { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.offer-card .bonus { background: var(--gold-soft); border-radius: var(--radius-sm); padding: 16px 18px; margin: 16px 0 20px; font-size: 14.5px; line-height: 1.6; }
.offer-card .bonus strong { color: var(--gold); }

/* CTA block */
.cta-block { background: var(--black); color: var(--off-white); border-radius: var(--radius); padding: 44px 32px; text-align: center; margin: 34px 0; background-image: radial-gradient(600px 320px at 50% -40px, rgba(201,169,97,0.14), transparent 70%); }
.cta-block h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 12px; color: var(--white); }
.cta-block p { color: rgba(245,242,236,0.72); max-width: 520px; margin: 0 auto 24px; }
.cta-sub { color: var(--muted-2); font-size: 13px; margin-top: 16px; }

/* Confirmation (thank-you page) */
.confirm-hero { text-align: center; padding: 60px 0 10px; }
.tick { width: 74px; height: 74px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--gold-mid); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 34px; margin-bottom: 20px; }
.confirm-hero h1 { font-size: clamp(30px, 4.6vw, 46px); margin-bottom: 14px; }
.confirm-hero .lead { color: var(--muted); font-size: 18px; max-width: 560px; margin: 0 auto; }

/* Tool cards (thank-you page) */
.tool-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px; margin-bottom: 12px; }
.tool-num { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--gold-soft); border: 1px solid var(--gold-mid); color: var(--gold); font-family: var(--font-display); font-weight: 700; font-size: 17px; display: flex; align-items: center; justify-content: center; }
.tool-body h4 { font-family: var(--font-body); font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.tool-body p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin-bottom: 14px; }

/* Booking embed (thank-you page) */
.booking-embed { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 6px 0; min-height: 620px; }
.booking-embed iframe { width: 100%; min-height: 620px; border: none; display: block; }
.cal-note { color: var(--muted-2); font-size: 12.5px; text-align: center; margin-top: 10px; }
.cal-note a { color: var(--gold); text-decoration: underline; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 30px 0; color: var(--muted-2); font-size: 13px; margin-top: 40px; text-align: center; }

@media (max-width: 720px) {
  .hero { padding: 38px 24px 32px; margin-top: 22px; }
  .two-col { grid-template-columns: 1fr; }
  .bio { flex-direction: column; }
  .reg-panel { padding: 24px 20px; }
  .cta-block { padding: 34px 22px; }
  .tool-card { flex-direction: column; gap: 10px; }
}
