/* ============================================
   NICE SPEECH CONCEPT — Professional Stylesheet
   Speak Clearly. Read Confidently. Communicate with Excellence.
   ============================================ */

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

:root {
  --navy: #0a1929;
  --navy-light: #142b44;
  --navy-lighter: #1e3a5c;
  --gold: #c9a44c;
  --gold-light: #e0c060;
  --gold-dark: #a8862e;
  --cream: #faf6ef;
  --cream-dark: #f0e8d8;
  --blue: #4a90d9;
  --blue-light: #7ab5e8;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-light: #6a6a6a;
  --text-on-navy: #e8e4dc;
  --text-on-gold: #1a1a1a;
  --success: #2d8a4e;
  --error: #c4382e;
  --border: #e0d8c8;
  --shadow-sm: 0 1px 3px rgba(10, 25, 41, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 25, 41, 0.10);
  --shadow-lg: 0 12px 40px rgba(10, 25, 41, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Accessibility --- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--navy); color: var(--gold-light);
  padding: 12px 24px; z-index: 2000; border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 0; }

*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--navy); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
p { max-width: 70ch; }
a { color: var(--navy); text-decoration: underline; }
a:hover { color: var(--gold-dark); }

/* --- Layout Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-tight { padding: 48px 0; }
.text-center { text-align: center; }
.bg-navy { background: var(--navy); color: var(--text-on-navy); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--cream); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-cream-dark { background: var(--cream-dark); }
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-light); font-size: 1.1rem; max-width: 60ch; margin: 0 auto 48px; text-align: center; }
.bg-navy .section-subtitle { color: rgba(232, 228, 220, 0.8); }

/* --- Header / Navigation --- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10, 25, 41, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 164, 76, 0.2);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--max-width); margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy);
  font-weight: 700; flex-shrink: 0;
}
.logo-text { font-family: var(--font-heading); font-size: 1.15rem; color: var(--cream); font-weight: 700; letter-spacing: 0.02em; }
.logo-text .sub { display: block; font-size: 0.65rem; color: var(--gold-light); font-family: var(--font-body); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--text-on-navy); text-decoration: none;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); background: rgba(201, 164, 76, 0.1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy) !important; font-weight: 600 !important;
}
.nav-cta:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-light) 40%, var(--navy-lighter) 100%);
  color: var(--text-on-navy);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 164, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { max-width: 640px; position: relative; z-index: 1; }
.hero h1 { color: var(--cream); margin-bottom: 20px; }
.hero h1 .gold { color: var(--gold-light); }
.hero-subtitle { font-size: 1.25rem; color: var(--gold-light); font-family: var(--font-heading); margin-bottom: 20px; }
.hero-text { font-size: 1.1rem; color: rgba(232, 228, 220, 0.85); margin-bottom: 32px; max-width: 560px; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-placeholder {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 360px; height: 400px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.15), rgba(201, 164, 76, 0.05));
  border: 2px dashed rgba(201, 164, 76, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201, 164, 76, 0.5); text-align: center; font-size: 0.9rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent; color: var(--cream);
  border: 2px solid rgba(201, 164, 76, 0.5);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-navy {
  background: var(--navy); color: var(--cream);
}
.btn-navy:hover { background: var(--navy-light); color: var(--gold-light); }
.btn-large { padding: 16px 36px; font-size: 1.05rem; }

/* --- Cards --- */
.card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid var(--border);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem; color: var(--gold-light);
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-light); font-size: 0.95rem; }

/* --- Program Cards Grid --- */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.program-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.program-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 24px; color: var(--text-on-navy);
}
.program-card-header h3 { color: var(--cream); margin: 0; font-size: 1.2rem; }
.program-card-header .icon { font-size: 1.6rem; color: var(--gold-light); margin-bottom: 10px; }
.program-card-body { padding: 24px; flex: 1; }
.program-card-body p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 16px; }
.program-card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; background: var(--cream-dark); color: var(--navy); font-weight: 500; }
.program-card-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.program-card-footer a { font-size: 0.9rem; font-weight: 600; color: var(--gold-dark); text-decoration: none; }
.program-card-footer a:hover { color: var(--gold); }

/* --- Who We Help --- */
.audience-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.audience-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.audience-card:hover { box-shadow: var(--shadow-md); }
.audience-card .icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.audience-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.audience-card p { color: var(--text-light); font-size: 0.92rem; margin: 0; }

/* --- Why Section --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.feature-item .check { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); font-weight: 700; }
.feature-item h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* --- Learning Experience --- */
.learning-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.learning-item { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.05); border: 1px solid rgba(201,164,76,0.15); }
.learning-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.learning-item span { color: var(--text-on-navy); font-size: 0.95rem; }

/* --- About Section --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text p { margin-bottom: 16px; color: var(--text-light); font-size: 1.02rem; }
.about-image-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); text-align: center; font-size: 0.9rem;
}
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { background: var(--white); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold); }
.mv-card .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); font-weight: 600; margin-bottom: 12px; }
.mv-card p { font-size: 1.05rem; color: var(--text); font-style: italic; margin: 0; }

/* --- Delivery Methods --- */
.delivery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.delivery-card { text-align: center; padding: 32px 20px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition); }
.delivery-card:hover { box-shadow: var(--shadow-md); }
.delivery-card .icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.delivery-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.delivery-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* --- Success Stories --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-sm); position: relative; }
.testimonial-card .quote-mark { font-size: 3rem; color: var(--gold); opacity: 0.3; font-family: var(--font-heading); position: absolute; top: 16px; left: 24px; }
.testimonial-card .placeholder-text { color: var(--text-light); font-style: italic; font-size: 0.95rem; text-align: center; padding: 24px 0; }
.testimonial-card .placeholder-badge { display: inline-block; margin-top: 16px; font-size: 0.75rem; padding: 4px 14px; border-radius: 20px; background: var(--cream-dark); color: var(--text-light); }

/* --- Resources --- */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.resource-card { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition); }
.resource-card:hover { box-shadow: var(--shadow-md); }
.resource-card .icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold-dark); }
.resource-card h4 { font-size: 0.98rem; margin-bottom: 4px; }
.resource-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info-card { background: var(--navy); border-radius: var(--radius-md); padding: 36px; color: var(--text-on-navy); }
.contact-info-card h3 { color: var(--cream); margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-item .icon { flex-shrink: 0; color: var(--gold-light); font-size: 1.2rem; margin-top: 2px; }
.contact-info-item .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(232, 228, 220, 0.6); margin-bottom: 2px; }
.contact-info-item .value { font-size: 0.95rem; color: var(--cream); }
.contact-info-item .value .placeholder { color: rgba(232, 228, 220, 0.5); font-style: italic; }

.form-card { background: var(--white); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group .required { color: var(--error); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  background: var(--cream); color: var(--text);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { color: var(--error); font-size: 0.82rem; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.form-success { background: #e8f5ed; border: 1px solid var(--success); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 20px; color: var(--success); display: none; }
.form-success.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Footer --- */
.site-footer { background: var(--navy); color: var(--text-on-navy); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand .logo-text { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(232, 228, 220, 0.7); max-width: 300px; }
.footer-col h4 { color: var(--gold-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; font-family: var(--font-body); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(232, 228, 220, 0.7); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(201, 164, 76, 0.15); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(232, 228, 220, 0.5); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--text-on-navy);
  padding: 80px 0 60px;
}
.page-hero h1 { color: var(--cream); margin-bottom: 12px; }
.page-hero p { color: rgba(232, 228, 220, 0.8); font-size: 1.1rem; max-width: 60ch; }
.breadcrumb { font-size: 0.85rem; color: rgba(232, 228, 220, 0.6); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }

/* --- 404 --- */
.error-page { text-align: center; padding: 120px 0; }
.error-page h1 { font-size: 5rem; color: var(--gold); margin-bottom: 20px; }
.error-page p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 32px; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* --- Placeholder Badge --- */
.placeholder-badge-general {
  display: inline-block; font-size: 0.72rem; padding: 3px 10px;
  border-radius: 4px; background: var(--cream-dark); color: var(--text-light);
  font-weight: 500; letter-spacing: 0.03em;
}

/* --- Founder Section --- */
.founder-card { background: var(--white); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-sm); text-align: center; }
.founder-photo-placeholder { width: 160px; height: 160px; border-radius: 50%; margin: 0 auto 24px; background: linear-gradient(135deg, var(--cream-dark), var(--cream)); border: 2px dashed var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.85rem; text-align: center; }
.founder-card h3 { margin-bottom: 8px; }
.founder-card .role { color: var(--gold-dark); font-weight: 600; font-size: 0.95rem; margin-bottom: 20px; }
.founder-card .awaiting { display: inline-block; font-size: 0.82rem; padding: 6px 16px; border-radius: 20px; background: var(--cream-dark); color: var(--text-light); font-style: italic; }

/* --- Legal Pages --- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin-top: 32px; margin-bottom: 12px; }
.legal-content h3 { margin-top: 24px; margin-bottom: 8px; font-size: 1.15rem; }
.legal-content p { margin-bottom: 16px; color: var(--text-light); }
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content li { margin-bottom: 8px; color: var(--text-light); }
.legal-last-updated { font-size: 0.85rem; color: var(--text-light); margin-bottom: 32px; font-style: italic; }

/* --- Responsive --- */
@media (max-width: 968px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 73px; left: 0; right: 0; bottom: 0;
    flex-direction: column; gap: 0; background: var(--navy);
    padding: 20px; overflow-y: auto; z-index: 999;
    transform: translateX(100%); transition: var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 1rem; border-bottom: 1px solid rgba(201,164,76,0.1); }
  .nav-cta { margin-top: 12px; text-align: center; border-bottom: none !important; }
  .hero { padding: 60px 0; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-image-placeholder { display: none; }
  .hero-cta-group { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .mission-vision { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .learning-list { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .card { padding: 24px; }
  .form-card { padding: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero-cta-group { display: none; }
  body { background: white; color: black; }
}
