:root {
  /* Main Colors */
  --ink: #1c1b2e;
  --ink-2: #28273f;
  --paper: #fdf6ec;
  --cream: #fffbf3;

  /* Primary Colors */
  --red: #c81e3a;
  --red-dark: #93132a;
  --crimson: #e8432f;
  --crimson-dark: #b22f1f;

  /* Accent Colors */
  --gold: #c99a2e;
  --amber: #f4a93d;
  --jade: #1f8a70;

  /* Text & Border */
  --text-soft: #5c5a72;
  --line: rgba(28, 27, 46, 0.12);
  --shadow: 0 14px 34px rgba(28, 27, 46, 0.14);

  /* Board Colors */
  --b-white: #fbf8f1;
  --b-yellow: #f4c23d;
  --b-orange: #ef8a2e;
  --b-green: #1f8a70;
  --b-blue: #2c6fb0;
  --b-purple: #7c4fa0;
  --b-brown: #7a4a28;
  --b-black: #1c1b2e;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.mono {
  font-family: "Roboto Mono", monospace;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--red);
}
.eyebrow::before {
  content: "—";
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Solitreo", cursive;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 0 var(--red-dark);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--red-dark);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2.5px solid #fff;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

/* ---------- HEADER ---------- */

/* ---------- HERO ---------- */
.menu-area {
  background-color: #fff;
}
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, #2a1f35 55%, var(--crimson-dark) 130%);
  color: #fff;
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4rem);
  margin: 16px 0 20px;
  color: #fff;
}
.hero h1 .hl {
  color: var(--amber);
}
.hero p.lead {
  font-size: 1.14rem;
  color: #e4dcec;
  max-width: 480px;
  margin-bottom: 28px;
  font-weight: 500;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 12px 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 3px 3px 0 var(--ink);
  animation: none;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-note {
  font-size: 0.82rem;
  color: #c6bcd1;
  margin-top: 16px;
  font-family: "Poppins", sans-serif;
}

.emblem {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}
.emblem svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}
.emblem-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px dashed rgba(244, 169, 61, 0.4);
  animation: spin 40s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- SECTION HEADERS ---------- */
.section {
  padding: 96px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3rem);
  margin: 14px 0 16px;
}
.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* ---------- ABOUT / FACTS ---------- */
.about-text {
  max-width: 700px;
  margin: 0 auto 54px;
  text-align: center;
  color: var(--text-soft);
  font-size: 1.08rem;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .facts {
    grid-template-columns: 1fr;
  }
}
.fact-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow);
}
.fact-card .num {
  font-family: "Solitreo", cursive;
  font-size: 2.1rem;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.fact-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.fact-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* ---------- BELT PATH (signature) ---------- */
.belt-section {
  background: var(--ink);
  color: #fff;
}
.belt-section .eyebrow {
  color: var(--gold);
}
.belt-section h2 {
  color: #fff;
}
.belt-section .section-head p {
  color: #b3aa98;
}
.belt-path {
  display: flex;
  gap: 2px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}
.belt-chip {
  flex: 1;
  height: 14px;
  border: 1px solid #fff;
  overflow: hidden;
  border-radius: 15px;
}
.belt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .belt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .belt-grid {
    grid-template-columns: 1fr;
  }
}
.belt-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px 18px 18px 20px;
  position: relative;
  border-left: 6px solid var(--c);
}
.belt-card .rank {
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.belt-card h4 {
  font-family: "Solitreo", cursive;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 600;
}
.belt-card p {
  font-family: "Poppins", sans-serif;
  color: #fffbf1;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- CURRICULUM ---------- */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
}
.curr-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}
.curr-card .ic {
  width: 38px;
  height: 38px;
  color: var(--ink);
  margin-bottom: 16px;
}
.curr-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.curr-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* ---------- SCHEDULE ---------- */
.schedule {
  background: var(--cream);
}
.sched-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .sched-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sched-card {
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
}
.sched-card .day {
  font-family: "Solitreo", cursive;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 10px;
}
.sched-card .time {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: #d9d3c4;
  margin-bottom: 4px;
}
.sched-card .grp {
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  color: #8b8377;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- BENEFITS ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.benefit {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 6px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.benefit .ic {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--red);
}
.benefit h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
}
.benefit p {
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--ink);
}
.gallery .eyebrow {
  color: var(--gold);
}
.gallery h2 {
  color: #fff;
}
.gallery .section-head p {
  color: #b3aa98;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.g-tile {
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.g-tile svg {
  width: 100%;
  height: 100%;
}

/* ---------- TESTIMONIALS (rank certificate) ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.certificate {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 30px 26px 26px;
  box-shadow: var(--shadow);
}
.certificate::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--line);
  border-radius: 4px;
  pointer-events: none;
}
.seal {
  position: absolute;
  top: -16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}
.seal svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.certificate p.quote {
  font-weight: 600;
  font-size: 0.96rem;
  margin-bottom: 16px;
  color: var(--ink);
}
.certificate .who {
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  color: var(--text-soft);
}

/* ---------- JOIN / LEAD FORM ---------- */
.join {
  background: linear-gradient(180deg, var(--cream) 0%, #ebe2cb 100%);
}
.join-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) {
  .join-grid {
    grid-template-columns: 1fr;
  }
}
.join-info h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 16px;
}
.join-info p {
  color: var(--text-soft);
  margin-bottom: 24px;
}
.join-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.join-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
  font-size: 0.96rem;
}
.join-list li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 16px 24px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.price-tag .amt {
  font-family: "Solitreo", cursive;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.price-tag .per {
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  color: #d9d3c4;
}

.form-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 38px;
  box-shadow: var(--shadow);
  border: 2px solid var(--ink);
}
.form-card h3 {
  font-family: "Solitreo", cursive;
  font-size: 1.6rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.form-card .sub {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 24px;
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 4px;
  border: 2px solid var(--line);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus {
  border-color: var(--red);
}
.field.invalid input,
.field.invalid select {
  border-color: var(--red);
  background: #fbeaec;
}
.field .err {
  display: none;
  color: var(--red);
  font-size: 0.78rem;
  margin-top: 5px;
  font-weight: 700;
}
.field.invalid .err {
  display: block;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 6px 0 22px;
  font-weight: 600;
}
.consent input {
  margin-top: 3px;
}
.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 17px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px 6px;
}
.form-success.show {
  display: block;
}
.form-success .check {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  color: var(--red);
}
.form-success h3 {
  margin-bottom: 10px;
}
.form-success p {
  color: var(--text-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.ref {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--red);
}
#joinForm.hide {
  display: none;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: #b3aa98;
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-grid h4 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Solitreo", cursive;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer-logo svg {
  width: 34px;
  height: 34px;
}
footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: #fff;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials a:hover {
  background: var(--red);
}
.socials svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #766e60;
  font-family: "Poppins", sans-serif;
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

::selection {
  background: var(--red);
  color: #fff;
}
