/* ===========================
   ELEVARE INNER STUDIES
   Stylesheet
   =========================== */

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

:root {
  --cream:     #F7F3EE;
  --warm-white:#FDFAF6;
  --sand:      #E8DDD0;
  --terracotta:#C4845A;
  --clay:      #A0603A;
  --deep:      #2C1F14;
  --muted:     #7A6A5A;
  --gold:      #C9A96E;
  --light-gold:#E8D5B0;

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

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

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--deep);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--terracotta); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-white) !important;
  background: var(--terracotta);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--clay) !important; color: var(--warm-white) !important; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid var(--light-gold);
  opacity: 0.4;
  animation: breathe 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 5%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.25;
  animation: breathe 8s ease-in-out infinite reverse;
}

@keyframes breathe {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%       { transform: translateX(-50%) scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--deep);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--terracotta);
  padding: 1rem 2.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover { background: var(--clay); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 1rem 2.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s;
  margin-left: 1rem;
}

.btn-outline:hover { background: var(--terracotta); color: var(--warm-white); }

/* ---- SECTIONS ---- */
section { padding: 6rem 4rem; }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--deep);
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--terracotta); }

.section-body {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 620px;
}

/* ---- WHAT IS ELEVARE ---- */
.what-is {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.what-is-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ---- PILLARS ---- */
.pillars {
  background: var(--cream);
  text-align: center;
  padding: 6rem 4rem;
}

.pillars-header { margin-bottom: 4rem; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--warm-white);
  padding: 3rem 2rem;
  border-radius: 4px;
  border-top: 2px solid var(--gold);
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,31,20,0.08);
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ---- COURSES ---- */
.courses {
  background: var(--warm-white);
  padding: 6rem 4rem;
}

.courses-header {
  text-align: center;
  margin-bottom: 4rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.course-card {
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,31,20,0.08);
}

.course-badge {
  background: var(--terracotta);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  display: block;
}

.course-body { padding: 1.8rem; }

.course-level {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.course-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.course-desc {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.course-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid var(--light-gold);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.course-link:hover { border-color: var(--terracotta); }

.courses-coming {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* ---- LIVE SESSIONS ---- */
.sessions {
  background: var(--deep);
  padding: 6rem 4rem;
  text-align: center;
}

.sessions .section-title { color: var(--warm-white); }
.sessions .section-eyebrow { color: var(--gold); }
.sessions .section-body { color: rgba(253,250,246,0.65); margin: 0 auto 3.5rem; }

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.session-card {
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}

.session-card:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
}

.session-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }

.session-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}

.session-desc {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(253,250,246,0.5);
  line-height: 1.7;
}

/* ---- FOUNDER ---- */
.founder {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.founder-img-wrap {
  position: relative;
}

.founder-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: 0;
}

.founder-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 4px;
  display: block;
  background: var(--sand);
  min-height: 420px;
  object-fit: cover;
}

.founder-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--light-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}

.founder-quote {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1.5;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

/* ---- PRACTITIONERS CTA ---- */
.practitioners {
  background: var(--warm-white);
  padding: 6rem 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.practitioners .section-body { margin: 0 auto 2.5rem; }

/* ---- CONTACT ---- */
.contact-section {
  background: var(--cream);
  padding: 6rem 4rem;
  text-align: center;
}

.contact-section .section-body { margin: 0 auto 3rem; }

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  background: var(--warm-white);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--deep);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--terracotta);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s;
}

.form-submit:hover { background: var(--clay); }

/* ---- FOOTER ---- */
footer {
  background: var(--deep);
  color: rgba(253,250,246,0.55);
  padding: 3rem 4rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(253,250,246,0.3);
}

.footer-copy a {
  color: var(--gold);
  text-decoration: none;
}

/* ---- DIVIDER ---- */
.gold-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  section { padding: 4rem 1.5rem; }

  .what-is,
  .founder { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }

  .pillars,
  .courses,
  .sessions,
  .contact-section,
  .practitioners { padding: 4rem 1.5rem; }

  .pillars-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .sessions-grid { grid-template-columns: 1fr 1fr; }

  footer { padding: 2rem 1.5rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }

  .btn-outline { margin-left: 0; margin-top: 1rem; }
}
