/* =============================================
   RAISING GREAT SAINTS — Global Styles
   ============================================= */

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

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #F9F5EE;
  --cream-dk: #EDE7D9;
  --navy:     #1C2B4A;
  --navy-lt:  #2A3F6A;
  --gold:     #C9A84C;
  --gold-lt:  #E2C97A;
  --text:     #2D2D2D;
  --text-lt:  #5A5A5A;
  --white:    #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --max-w: 1100px;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-lt); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-lt); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dk);
  padding: 0 24px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-lt) !important; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.2s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--cream-dk);
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 24px;
  }
  .nav-cta { margin: 8px 24px; display: inline-block; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero with photo */
.hero.has-photo {
  background-size: cover;
  background-position: center;
}
.hero.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,43,74,0.72);
  pointer-events: none;
}
.hero.has-photo .hero-content { position: relative; z-index: 1; }

.hero-content { max-width: 760px; margin: 0 auto; }
.hero-content h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 80px 24px; }
.section-sm { padding: 56px 24px; }
.section-lg { padding: 100px 24px; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-lt); font-size: 1.05rem; }

/* Alternating backgrounds */
.bg-cream   { background: var(--cream); }
.bg-cream-dk { background: var(--cream-dk); }
.bg-navy    { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p  { color: rgba(255,255,255,0.8); }
.bg-gold    { background: var(--gold); }
.bg-gold h2, .bg-gold p { color: var(--navy); }

/* =============================================
   3-COLUMN PILLARS
   ============================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.pillar {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 6px;
  border-top: 3px solid var(--gold);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pillar h3 { font-size: 1.25rem; margin-bottom: 0.8rem; }
.pillar p { color: var(--text-lt); font-size: 0.95rem; }

@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; gap: 20px; }
}

/* =============================================
   FEATURED VIDEO
   ============================================= */
.featured-video-wrap {
  max-width: 800px;
  margin: 0 auto 32px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(28,43,74,0.15);
}

.featured-video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.featured-video-caption {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--text-lt);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

/* =============================================
   SERIES GRID
   ============================================= */
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.series-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(28,43,74,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.series-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(28,43,74,0.14);
}

.series-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.series-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.series-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.series-card-body p {
  color: var(--text-lt);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 16px;
}

.series-card-body .btn {
  align-self: flex-start;
  padding: 9px 20px;
  font-size: 0.83rem;
}

@media (max-width: 900px) {
  .series-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .series-grid { grid-template-columns: 1fr; }
}

/* =============================================
   EMAIL CAPTURE
   ============================================= */
.email-capture {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.email-capture h2 { color: var(--white); margin-bottom: 0.8rem; }
.email-capture p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

.email-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-form input[type="email"],
.email-form input[type="text"] {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
}
.email-form input:focus { box-shadow: 0 0 0 2px var(--gold); }

.email-form button { white-space: nowrap; }

.email-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   QUOTE PULL
   ============================================= */
.quote-section {
  text-align: center;
  padding: 72px 24px;
}

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto 1.2rem;
  line-height: 1.5;
}

blockquote::before { content: '\201C'; }
blockquote::after  { content: '\201D'; }

cite {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   2-COLUMN LAYOUT
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
}

/* =============================================
   ABOUT / STORY PAGE
   ============================================= */
.story-text h2 { margin-bottom: 1.2rem; }
.story-text p { color: var(--text-lt); }

.photo-placeholder {
  background: var(--cream-dk);
  border-radius: 6px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-lt);
  font-size: 1rem;
}

.host-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.host-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 32px;
  border-left: 4px solid var(--gold);
}

.host-card h3 { margin-bottom: 0.4rem; }
.host-card .host-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.host-card p { color: var(--text-lt); font-size: 0.95rem; }

@media (max-width: 640px) {
  .host-cards { grid-template-columns: 1fr; }
}

/* =============================================
   WATCH PAGE
   ============================================= */
.watch-series-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.watch-series-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(28,43,74,0.07);
  transition: box-shadow 0.2s;
}
.watch-series-item:hover { box-shadow: 0 6px 24px rgba(28,43,74,0.12); }

.watch-series-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.watch-series-body { padding: 28px 32px 28px 0; }
.watch-series-body h3 { margin-bottom: 0.6rem; }
.watch-series-body p { color: var(--text-lt); font-size: 0.95rem; margin-bottom: 20px; }

@media (max-width: 700px) {
  .watch-series-item { grid-template-columns: 1fr; }
  .watch-series-body { padding: 20px 20px 24px; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 48px 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-location {
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--gold); }

.footer-yt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: var(--radius);
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  transition: background 0.2s;
}
.footer-yt:hover { background: rgba(255,255,255,0.14); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   DIVIDER
   ============================================= */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 32px;
}

/* =============================================
   UTILITY
   ============================================= */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
