/* ═══════════════════════════════════════════════
   POSSIBILITY JUNCTION — GLOBAL STYLESHEET
   Primary: Red #c8281e | Blue #1e4fa0 | Yellow #d4a017
   ═══════════════════════════════════════════════ */

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

:root {
  --red:        #c8281e;
  --red-dark:   #9e1a12;
  --red-light:  #fde8e6;
  --blue:       #1e4fa0;
  --blue-dark:  #163d80;
  --blue-light: #dce8f8;
  --yellow:     #d4a017;
  --yellow-light:#fdf3d8;
  --charcoal:   #1a0a08;
  --ink:        #2a1a18;
  --muted:      #7a6060;
  --cream:      #fff8f6;
  --offwhite:   #f8f4f0;
  --divider:    #e8d8d4;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
em { font-family: 'Playfair Display', serif; font-style: italic; }
p { margin-bottom: 0.9em; }
p:last-child { margin-bottom: 0; }
a { text-decoration: none; color: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 48px; }
.page-section { padding: 110px 0; }
.bg-light { background: var(--offwhite); }
.text-center { text-align: center; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
}

/* ── SECTION LABELS ── */
.section-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px; display: block;
}
.section-eyebrow.light { color: rgba(255,255,255,0.7); }
.section-headline { margin-bottom: 24px; }
.section-headline.white { color: #fff; }
.section-intro { font-size: 16px; color: var(--muted); max-width: 640px; margin: 0 auto 56px; line-height: 1.8; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 4px;
  font-family: 'Montserrat', sans-serif; font-size: 12px;
  font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.2s; cursor: pointer; border: 2px solid transparent;
}
.btn-primary, .btn-red {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 18px rgba(200,40,30,0.30);
}
.btn-primary:hover, .btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 18px rgba(30,79,160,0.25);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-white {
  background: #fff; color: var(--red);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ═══ NAVIGATION ═══ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--divider);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  list-style: none; display: flex; align-items: center; gap: 6px;
}
.nav-links li a {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink); padding: 8px 12px;
  border-radius: 3px; transition: color 0.2s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--red); }
.nav-cta {
  background: var(--red) !important; color: #fff !important;
  padding: 9px 18px !important; border-radius: 4px !important;
  box-shadow: 0 3px 12px rgba(200,40,30,0.28);
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--ink);
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--divider); padding: 16px 0;
    gap: 0; box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 12px 28px; }
}

/* ═══ HERO ═══ */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a0e0a 55%, #1a0a08 100%);
  min-height: 88vh; display: flex; align-items: center;
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px
  );
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; padding-top: 120px; padding-bottom: 120px; }
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
}
.hero-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red); margin-bottom: 24px;
}
.hero-headline { color: #fff; margin-bottom: 28px; }
.hero-headline em { color: #f4c0bc; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 40px; max-width: 480px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
@media (max-width: 768px) { .hero-btns { justify-content: center; } }
.hero-image { display: flex; justify-content: center; }
.hero-image img {
  width: 100%; max-width: 440px; height: 520px; object-fit: cover;
  object-position: top; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
@media (max-width: 768px) { .hero-image img { height: 340px; } }

/* ═══ TAGLINE BAND ═══ */
.tagline-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, var(--blue) 100%);
  padding: 36px 48px; text-align: center;
}
.tagline-band p {
  font-family: 'Playfair Display', serif; font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic; color: #fff;
}
.tagline-band strong { font-style: normal; }

/* ═══ ABOUT STRIP ═══ */
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; max-width: 440px; height: 520px;
  object-fit: cover; object-position: top; border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.about-text .section-headline { margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 20px; font-size: 15px; line-height: 1.85; }

/* ═══ PILLARS ═══ */
.pillars-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px; margin-top: 56px;
}
.pillar-card {
  background: #fff; border: 1px solid var(--divider); border-radius: 4px;
  padding: 36px 28px; text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.10); }
.pillar-num {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  margin-bottom: 16px; display: block;
}
.pillar-num.red { color: var(--red); }
.pillar-num.blue { color: var(--blue); }
.pillar-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.pillar-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.75; }

/* ═══ RESET STRIP ═══ */
.reset-strip {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a0e0a 100%);
  padding: 110px 0;
}
.reset-text .section-headline { margin-bottom: 18px; }
.white-text { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.reset-img-wrap { display: flex; justify-content: center; }
.reset-img {
  width: 100%; max-width: 400px; height: 480px;
  object-fit: cover; object-position: top; border-radius: 4px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}

/* ═══ PROGRAMS GRID ═══ */
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; margin-top: 56px;
}
.prog-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--divider); border-radius: 4px;
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.prog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }
.prog-card.featured { border-color: var(--red); border-width: 2px; }
.prog-card.gold { border-color: var(--yellow); border-width: 2px; }
.prog-badge {
  display: inline-block; font-size: 9px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
  background: var(--red); color: #fff; margin-bottom: 12px; width: fit-content;
}
.prog-badge.free { background: #2a8a4a; }
.prog-badge.popular { background: var(--red); }
.prog-badge.blue { background: var(--blue); }
.prog-badge.gold-badge { background: var(--yellow); color: var(--ink); }
.prog-level { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.prog-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.prog-price { font-size: 1.5rem; font-weight: 800; color: var(--red); margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
.prog-price span { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.prog-desc { font-size: 13px; color: var(--muted); flex: 1; margin-bottom: 24px; line-height: 1.75; }
.prog-cta {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); margin-top: auto;
}
.prog-card.featured .prog-cta { color: var(--red); }
.prog-card.gold .prog-cta { color: var(--yellow); }

/* ═══ DAILY POSSIBILITIES ═══ */
.daily-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 56px;
}
.daily-card {
  background: #fff; border: 1px solid var(--divider); border-radius: 4px;
  padding: 36px 30px; border-left: 4px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.daily-card:nth-child(even) { border-left-color: var(--blue); }
.daily-card:hover { transform: translateY(-2px); }
.daily-category {
  font-size: 9px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
}
.daily-card:nth-child(even) .daily-category { color: var(--blue); }
.daily-quote {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  font-style: italic; color: var(--ink); line-height: 1.6; margin-bottom: 14px;
}
.daily-author { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--muted); }

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 56px;
}
.testimonial-card {
  background: var(--offwhite); border-radius: 4px; padding: 44px 36px;
  border-top: 3px solid var(--red);
}
.t-quote {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic;
  color: var(--ink); line-height: 1.6; margin-bottom: 16px;
}
.t-name { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.testimonial-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 24px; font-style: italic; }

/* ═══ FINAL CTA ═══ */
.final-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, #1a0a08 100%);
  padding: 120px 48px; text-align: center;
}
.final-cta .section-eyebrow { color: rgba(255,255,255,0.65); }
.final-cta .section-headline { color: #fff; margin-bottom: 44px; }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 80px 0 48px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-logo { height: 60px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.6; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 12px; }
.footer-links h4, .footer-social h4 {
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links ul li a:hover { color: #fff; }
.social-icons { display: flex; gap: 12px; margin-bottom: 14px; }
.social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff; font-size: 16px;
  font-family: sans-serif; transition: background 0.2s;
}
.social-icons a:hover { background: var(--red); }
.footer-email { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ═══ PAGE HERO (inner pages) ═══ */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a0e0a 100%);
  padding: 110px 48px 90px; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ═══ DAILY PAGE ═══ */
.daily-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.daily-full-card {
  background: #fff; border: 1px solid var(--divider); border-radius: 4px;
  padding: 32px 26px; border-left: 4px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.daily-full-card:nth-child(3n+2) { border-left-color: var(--blue); }
.daily-full-card:nth-child(3n+3) { border-left-color: var(--yellow); }
.daily-full-card .daily-category { font-size: 9px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.daily-full-card:nth-child(3n+2) .daily-category { color: var(--blue); }
.daily-full-card:nth-child(3n+3) .daily-category { color: var(--yellow); }
.daily-full-card .daily-quote { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--ink); line-height: 1.65; margin-bottom: 14px; }
.daily-full-card .daily-author { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--muted); }

/* ═══ ABOUT PAGE ═══ */
.about-full { padding: 80px 0; }
.about-full .two-col { gap: 72px; }
.about-full-img {
  width: 100%; max-width: 460px; height: 560px;
  object-fit: cover; object-position: top; border-radius: 4px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.15);
}
.about-full-text h2 { margin-bottom: 24px; }
.about-full-text p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }
.about-full-text blockquote {
  border-left: 4px solid var(--red); padding: 16px 20px;
  background: var(--red-light); margin: 28px 0; border-radius: 0 4px 4px 0;
}
.about-full-text blockquote p { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--ink); margin: 0; }

/* ═══ PROGRAMS PAGE ═══ */
.programs-full { padding: 80px 0; }
.programs-full-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 48px;
}
.prog-full-card {
  background: #fff; border: 1px solid var(--divider); border-radius: 4px;
  padding: 36px 30px; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.prog-full-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.10); }
.prog-full-card.featured { border: 2px solid var(--red); }
.prog-full-card .prog-badge { margin-bottom: 16px; }
.prog-full-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.prog-full-card .prog-price { font-size: 1.8rem; font-weight: 800; color: var(--red); margin-bottom: 14px; font-family: 'Montserrat', sans-serif; }
.prog-full-card .prog-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.prog-full-card .prog-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--ink); margin-bottom: 16px; }
.prog-full-card ul { list-style: none; padding: 0; margin-bottom: 24px; }
.prog-full-card ul li { font-size: 13px; padding: 5px 0 5px 20px; position: relative; color: var(--muted); }
.prog-full-card ul li::before { content: '✔'; position: absolute; left: 0; color: var(--red); font-size: 11px; }
.prog-full-card .btn { width: 100%; text-align: center; }

/* ═══ CONTACT PAGE ═══ */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--divider);
  border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 14px;
  color: var(--ink); background: #fff; margin-bottom: 16px;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--red);
}
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { color: var(--muted); margin-bottom: 14px; }
.contact-social { display: flex; gap: 12px; margin-top: 24px; }
.contact-social a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--offwhite); border: 1px solid var(--divider);
  color: var(--ink); font-size: 18px; transition: all 0.2s;
}
.contact-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .page-section { padding: 72px 0; }
  .programs-grid { grid-template-columns: 1fr; }
  .daily-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media print {
  .nav, .final-cta, .footer { display: none; }
}
