:root {
  --green: #073b2d;
  --green2: #0e6b45;
  --red: #c94f4f;
  --cream: #f6f1e8;
  --ink: #1e2522;
  --muted: #69736f;
  --line: #e6e9e6;
  --surface: #fbfcfb;
  --section-space: 58px;
  --section-space-mobile: 40px;
  --card-radius: 28px;
  --shadow-soft: 0 10px 35px rgba(0, 0, 0, 0.04);
  --shadow-lift: 0 18px 45px rgba(7, 59, 45, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
p {
  color: #111;
  margin: 0 0 1rem;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  color: #0f1714;
  line-height: 1.08;
  margin: 0 0 0.8rem;
}
strong {
  color: #0f1714;
}
.container {
  width: min(1120px, 92%);
  margin: auto;
}
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--green);
  font-size: 1.2rem;
}
.brand-logo {
  display: block;
  width: auto;
  height: 89px;
  max-width: 200px;
}
.brand-admin {
  color: #fff;
}
.brand-admin .brand-logo {
  height: 46px;
}
.menu {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.95rem;
}
.menu a:not(.btn) {
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}
.menu a:not(.btn):hover {
  color: var(--green2);
}
.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--green);
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(7, 59, 45, 0.08);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 59, 45, 0.16);
}
.btn-primary:hover {
  background: var(--green2);
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}
.btn:focus-visible,
.floating-whatsapp-button:focus-visible,
.mobile-whatsapp-cta:focus-visible,
.nav-toggle:focus-visible,
.faq-item summary:focus-visible {
  outline: 3px solid rgba(14, 107, 69, 0.2);
  outline-offset: 3px;
}
.btn-light {
  background: #fff;
  color: var(--green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.btn-outline {
  border: 1px solid var(--line);
  color: var(--green);
  background: white;
}
.mobile-whatsapp-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: #1f9d58;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}
.floating-whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 39;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 999px;
  background: #1f9d58;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}
.floating-whatsapp-button svg {
  width: 30px;
  height: 30px;
  display: block;
}
.floating-whatsapp-button:hover {
  background: #188a4c;
}
.floating-whatsapp-button:hover,
.mobile-whatsapp-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}
.hero {
  padding: 56px 0 34px;
  background:
    radial-gradient(circle at 15% 0, #e8f5ee, transparent 25%),
    linear-gradient(180deg, #fff, #fafafa);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  line-height: 0.96;
  margin: 12px 0 18px;
  letter-spacing: -0.06em;
}
.lead {
  font-size: 1.06rem;
  color: #202724;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.photo-stack {
  position: relative;
  min-height: 480px;
}
.photo {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.13);
  background: #ddd;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo.one {
  inset: 0 80px 120px 0;
}
.photo.two {
  right: 0;
  bottom: 60px;
  width: 52%;
  height: 250px;
}
.photo.hero-single {
  inset: 20px 10px 110px 40px;
}
.card-float {
  position: absolute;
  left: 8%;
  bottom: 0;
  background: white;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  max-width: 330px;
}
.section {
  padding: var(--section-space) 0;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}
.section-title .accent {
  color: var(--red);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.feature-card,
.course-card,
.event-card,
.team-card,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}
.feature-card {
  padding: 24px;
}
.feature-card h3,
.course-card h3,
.event-card h3,
.team-card h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
}
.feature-card:hover,
.course-card:hover,
.event-card:hover,
.team-card:hover,
.admin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(7, 59, 45, 0.14);
}
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-item {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f7faf8);
  box-shadow: 0 12px 30px rgba(7, 59, 45, 0.05);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.stat-item strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span {
  color: var(--muted);
  font-weight: 600;
}
.muted {
  color: #111;
}
.image-top {
  height: 220px;
  aspect-ratio: 4 / 3;
  background: #eee;
  overflow: hidden;
}
.image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-image {
  width: 124px;
  height: 124px;
  margin: 24px auto 0;
  border-radius: 50%;
  background: #eee;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 26px rgba(7, 59, 45, 0.12);
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card-body {
  padding: 22px;
}
.team-card .card-body {
  text-align: center;
  padding-top: 18px;
}
.team-card .tag-row {
  justify-content: center;
}
.pill {
  display: inline-flex;
  border-radius: 999px;
  background: #eef7f2;
  color: var(--green);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--green);
  font-weight: 700;
}
.detail-hero,
.blog-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}
.detail-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  overflow: hidden;
  min-height: 320px;
  max-height: 480px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
  background: #eee;
}
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.rich-copy {
  color: var(--ink);
}
.rich-copy p:first-child {
  margin-top: 0;
}
.detail-list {
  margin: 0;
  padding-left: 20px;
}
.detail-list li + li {
  margin-top: 10px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  background: var(--surface);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item[open] {
  border-color: rgba(7, 59, 45, 0.14);
  box-shadow: 0 10px 24px rgba(7, 59, 45, 0.06);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  margin: 12px 0 0;
}
.testimonial-avatar {
  width: 72px;
  height: 72px;
  min-width: 72px;
  max-width: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 16px;
}
.proof-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, #f6f1e8, #edf7f2);
}
.proof-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.proof-list span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(7, 59, 45, 0.08);
  color: var(--green);
  font-weight: 700;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.tag-row span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4f7f5;
  border: 1px solid rgba(7, 59, 45, 0.08);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
}
.dark-band {
  background: var(--green);
  color: white;
  border-radius: 36px;
  padding: 34px;
}
.dark-band .muted {
  color: #d4e5dd;
}
.form {
  display: grid;
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
}
.field-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}
.field-help {
  font-size: 0.82rem;
  color: var(--muted);
}
.field-error {
  font-size: 0.82rem;
  color: #9f1d1d;
}
.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.admin-image-preview {
  width: min(100%, 320px);
  border-radius: 22px;
  border: 1px solid var(--line);
  display: block;
}
.about-photo-layout {
  position: relative;
  min-height: 520px;
}
.about-photo-main {
  position: absolute;
  inset: 0 80px 90px 0;
}
.about-photo-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 230px;
  border: 10px solid rgba(255, 255, 255, 0.94);
}
.input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 15px;
  font: inherit;
  background: #fff;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.footer {
  background: #edf1eb;
  padding: 38px 0;
  margin-top: 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 30px;
}
.small {
  font-size: 0.86rem;
}
.admin-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}
.sidebar {
  background: var(--green);
  color: #fff;
  padding: 24px;
}
.sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  margin: 3px 0;
  color: #eaf4ef;
}
.sidebar .brand {
  display: flex;
}
.sidebar .brand:hover {
  background: none;
}
.sidebar a:hover {
  background: rgba(255, 255, 255, 0.12);
}
.admin-main {
  padding: 28px;
  background: #f8faf9;
}
.table-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: auto;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.alert {
  padding: 12px 16px;
  border-radius: 14px;
  margin-bottom: 15px;
}
.alert-success {
  background: #e8f8ef;
  color: #075d35;
}
.alert-error {
  background: #fdeeee;
  color: #9f1d1d;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 850px) {
  .mobile-whatsapp-cta {
    display: inline-flex;
  }
  .floating-whatsapp-button {
    right: 16px;
    bottom: 84px;
    width: 56px;
    height: 56px;
    padding: 0;
  }
  .floating-whatsapp-button svg {
    width: 26px;
    height: 26px;
  }
  .nav-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    position: relative;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    margin-left: auto;
  }
  .menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(7, 59, 45, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(7, 59, 45, 0.14);
    transform-origin: top center;
  }
  .menu.menu-open {
    display: flex;
  }
  .menu a {
    width: 100%;
  }
  .menu a:not(.btn) {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(7, 59, 45, 0.06);
    box-shadow: 0 8px 20px rgba(7, 59, 45, 0.04);
    font-weight: 700;
  }
  .menu a:not(.btn):hover,
  .menu a:not(.btn):focus-visible {
    transform: translateX(2px);
    color: var(--green);
    background: #f6fbf8;
  }
  .menu .btn {
    width: 100%;
    min-height: 54px;
  }
  .hero-grid,
  .detail-hero,
  .blog-detail,
  .stats-band,
  .grid-2,
  .grid-3,
  .footer-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .section {
    padding: var(--section-space-mobile) 0;
  }
  .photo-stack {
    min-height: 400px;
  }
  .photo.one {
    right: 0;
  }
  .photo.two {
    display: none;
  }
  .photo.hero-single {
    inset: 0 0 110px 0;
  }
  .detail-image {
    min-height: 240px;
    max-height: none;
  }
  .card-float {
    left: 0;
    right: 0;
    max-width: none;
  }
  .about-photo-layout {
    min-height: auto;
    display: grid;
    gap: 18px;
  }
  .about-photo-main,
  .about-photo-accent {
    position: relative;
    inset: auto;
    width: 100%;
    height: 260px;
  }
  .section-head {
    display: block;
  }
  .section-title {
    margin-bottom: 8px;
  }
  .proof-strip {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .proof-list {
    justify-content: flex-start;
  }
  .sidebar {
    position: relative;
  }
  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3rem);
    margin-bottom: 14px;
  }
  .brand-logo {
    height: 110px;
  }
  .brand-admin .brand-logo {
    height: 40px;
  }
  .feature-card,
  .course-card,
  .event-card {
    border-radius: 24px;
  }
}
