/* ReverieVentures LLC — soft academic campus template (plain compound naming) */

:root {
  --paper: #f7f9f8;
  --teal: #0d9488;
  --teal-soft: #cdeee9;
  --ink: #223344;
  --ink-soft: #55697a;
  --card: #ffffff;
  --serif: "Literata", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}

h1, h2, h3 { font-family: var(--serif); color: var(--ink); margin: 0; }

a { color: var(--teal); text-decoration: none; }

address { font-style: normal; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: #fff;
  padding: 0.75em 1.25em;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; top: 0; }

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
}
.brand span { color: var(--teal); }
.pill-nav {
  display: flex;
  gap: 0.5rem;
  background: var(--card);
  border-radius: 999px;
  padding: 0.4rem;
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.08);
}
.pill-nav a {
  color: var(--ink-soft);
  padding: 0.55em 1.2em;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
}
.pill-nav a:hover { background: var(--teal-soft); color: var(--teal); }

/* Hero with blobs */
.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 3rem 5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
  z-index: 0;
  filter: blur(2px);
}
.blob-one {
  width: 420px;
  height: 420px;
  background: var(--teal-soft);
  top: -120px;
  right: -80px;
  opacity: 0.9;
}
.blob-two {
  width: 260px;
  height: 260px;
  background: #ffe3c2;
  bottom: -60px;
  right: 220px;
  opacity: 0.6;
  border-radius: 40% 60% 65% 35% / 55% 45% 55% 45%;
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-text {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 46ch;
  margin: 0 0 2rem;
}
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 0.9em 2.1em;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--sans);
  box-shadow: 0 10px 25px -8px rgba(13, 148, 136, 0.5);
}
.btn-primary:hover { background: #0b7d73; }

.badge-cluster {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  justify-content: center;
}
.program-badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: var(--teal);
  box-shadow: 0 12px 30px -10px rgba(13, 148, 136, 0.35);
  margin: 0 auto;
}
.program-badge-alt {
  background: var(--teal);
  color: #fff;
}

/* About */
.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}
.about-section h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.about-section p { color: var(--ink-soft); font-size: 1.05rem; }

/* Programs / syllabus accordion */
.programs-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.programs-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.syllabus {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.syllabus-item {
  background: var(--card);
  border-radius: 16px;
  padding: 1.1rem 1.5rem;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.06);
}
.syllabus-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.syllabus-item summary::-webkit-details-marker { display: none; }
.syllabus-item summary span {
  color: var(--teal);
  font-family: var(--serif);
  font-weight: 500;
}
.syllabus-item p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
}

/* Why us */
.why-section {
  background: var(--teal-soft);
  padding: 4.5rem 2rem;
}
.why-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.why-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--card);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.why-icon {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.why-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* Address */
.address-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
  text-align: center;
}
.address-section h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.address-section address { color: var(--ink-soft); line-height: 1.9; }

/* FAQ */
.faq-section {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.faq-item {
  background: var(--card);
  border-radius: 16px;
  padding: 1.1rem 1.5rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.06);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--ink-soft); margin: 0.9rem 0 0; }

/* Contact */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.contact-form {
  background: var(--card);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.08);
}
.field {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field label { font-weight: 600; font-size: 0.9rem; }
.field input,
.field textarea {
  border: 1px solid #d8e2df;
  border-radius: 12px;
  padding: 0.8em 1em;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--paper);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.consent-field {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.consent-field input { margin-top: 0.3rem; }

/* Privacy */
.privacy-section {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  color: var(--ink-soft);
}
.privacy-section h2 { text-align: center; font-size: 2rem; margin-bottom: 1.5rem; color: var(--ink); }

/* Footer */
.site-footer {
  background: #eaf3f1;
  padding: 3rem 2rem 2rem;
  text-align: center;
}
.footer-brand { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.4rem; }
.footer-top p { color: var(--ink-soft); margin: 0.2rem 0; }
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.footer-legal a { color: var(--ink-soft); font-size: 0.9rem; }
.footer-legal a:hover { color: var(--teal); }
.footer-copy { color: #8ba0ab; font-size: 0.78rem; }

@media (max-width: 900px) {
  .pill-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}
