:root {
  --bg: #0c1411;
  --bg-2: #131d18;
  --surface: #1a2621;
  --brand: #4cae69;
  --brand-dark: #8ac99d;
  --accent: #284236;
  --ink: #e8f3ed;
  --muted: #b2c7bd;
  --line: #2a3a32;
  --shadow: 0 22px 60px rgba(5, 10, 8, 0.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 16px;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #1d2b25 0%, var(--bg) 55%, #0a100e 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-dark);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(12, 20, 17, 0.92);
  backdrop-filter: blur(10px);
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: transparent;
  padding: 0;
}

.nav {
  display: flex;
  gap: 1.4rem;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #0c1411;
  box-shadow: 0 12px 25px rgba(76, 174, 105, 0.35);
}

.btn.ghost {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: transparent;
}

.btn.soft {
  background: var(--accent);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  color: var(--muted);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(76, 174, 105, 0.2), transparent 70%);
  top: -40px;
  right: -40px;
}

.hero-card-inner {
  padding: 2.5rem;
  display: grid;
  gap: 1.4rem;
}

.hero-card h2 {
  font-family: "Fraunces", serif;
  margin-bottom: 1rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 600;
}

section {
  padding: 4rem 0;
  scroll-margin-top: 16px;
}

.intro {
  background: var(--bg-2);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.intro-highlight {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(5, 10, 8, 0.35);
}

.specialties {
  background: linear-gradient(160deg, #0b1310 0%, #121c17 65%, #0d1612 100%);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.pill-grid span {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #15231d;
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.split ul {
  margin-top: 1rem;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.about {
  background: var(--bg-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.about-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.about-card .btn {
  margin-top: 1rem;
}

.about-photo img {
  width: 140px;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(5, 10, 8, 0.35);
}

.about-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.about-credentials {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  margin: 0.25rem 0 0.75rem;
}

.about-credentials li {
  padding-left: 1rem;
  position: relative;
}

.about-credentials li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 0.6rem;
}

.subtitle {
  color: var(--brand-dark);
  font-weight: 600;
  margin: 0.3rem 0 1rem;
}

.how-it-works {
  background: linear-gradient(160deg, #101915 0%, #15221c 65%, #0f1713 100%);
}

.mentorship .callout {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px dashed var(--brand);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.workshops {
  background: var(--bg-2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  padding: 2rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--brand-dark);
}

.podcast {
  background: linear-gradient(130deg, rgba(76, 174, 105, 0.2), rgba(20, 34, 27, 0.9));
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.podcast-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
}

.podcast-card .btn {
  margin-top: 0.75rem;
}

.testimonials {
  background: var(--bg-2);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.testimonial-grid figure {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--line);
}

blockquote {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact {
  padding-bottom: 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--line);
}

.intake {
  background: var(--bg-2);
}

.intake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.intake-form {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.intake-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.intake-form input,
.intake-form textarea {
  background: #111b17;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}

.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: #7f968c;
}

.intake-form button {
  justify-self: start;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.95rem;
  color: var(--brand-dark);
}

.contact-actions {
  margin: 1.6rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.socials {
  display: flex;
  gap: 1rem;
  margin: 1rem 0 1.6rem;
  flex-wrap: wrap;
}

.footer-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  background: #0b1310;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.footer-left {
  max-width: 420px;
  display: grid;
  gap: 0.6rem;
}

.footer-right {
  display: grid;
  gap: 0.8rem;
  justify-items: end;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.hero-logo {
  width: min(240px, 100%);
  margin: 0 auto;
}

.hero-logo img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: transparent;
  padding: 0;
  box-shadow: 0 16px 40px rgba(5, 10, 8, 0.4);
}

@media (max-width: 840px) {
  .nav {
    display: none;
  }
  .header-inner {
    justify-content: space-between;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo img {
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
