@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap");

:root {
  --primary: #1b4332;
  --primary-mid: #2d6a4f;
  --accent: #52b788;
  --accent-lt: #95d5b2;
  --highlight: #f77f00;
  --highlight-lt: #ffb347;
  --bg: #f5f9f6;
  --bg-dark: #0f2219;
  --text: #1a2e20;
  --text-sec: #3d5a46;
  --text-muted: #6b8b75;
  --border: #c8ddd0;
  --white: #ffffff;
  --shadow: 0 2px 20px rgba(27, 67, 50, 0.1);
  --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.18);
  --radius: 10px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --header-h: 68px;
  --footer-h: 60px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --t: 0.3s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  min-width: 320px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Syne", sans-serif;
  line-height: 1.2;
  color: var(--primary);
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--t);
}
a:hover {
  color: var(--highlight);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: "Syne", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--t);
  text-decoration: none;
}
.btn-primary {
  background: var(--highlight);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--highlight-lt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 127, 0, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

#site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, calc(100% - 28px));
  z-index: 9999;
  background: rgba(27, 67, 50, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  transition:
    top 0.4s var(--ease),
    width 0.4s var(--ease),
    border-radius 0.4s var(--ease),
    background 0.4s var(--ease);
}
#site-header.scrolled {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  border-radius: 0;
  background: rgba(15, 34, 25, 0.97);
}
#site-header.hidden {
  top: -90px;
}
#site-header.scrolled.hidden {
  top: -90px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--highlight);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--white);
  white-space: nowrap;
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-list a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  transition: all var(--t);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.nav-cta {
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--t);
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
.nav-overlay.visible {
  display: block;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }
  #main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1rem;
    z-index: 9999;
    transition: right 0.4s var(--ease);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
  }
  #main-nav.open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.25rem;
  }
  .nav-list a {
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    width: 100%;
    display: block;
  }
  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 0.5rem;
  }
  .header-inner {
    padding: 0.75rem 1.25rem;
  }
}

.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 1rem 0;
  min-height: var(--footer-h);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t);
}
.footer-links a:hover {
  color: var(--accent-lt);
}
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-top: 2px solid var(--accent);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  padding: 1rem 0;
}
.cookie-popup.visible {
  transform: translateY(0);
}
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
  min-width: 220px;
}
.cookie-text a {
  color: var(--accent-lt);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-accept {
  padding: 0.45rem 1.1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--t);
}
.cookie-accept:hover {
  background: var(--accent-lt);
  color: var(--primary);
}
.cookie-decline {
  padding: 0.45rem 0.9rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all var(--t);
}
.cookie-decline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-sec);
  max-width: 540px;
  line-height: 1.7;
}

.page-hero {
  padding-top: calc(var(--header-h) + 14px + 2rem);
  padding-bottom: 3rem;
  background: var(--bg-dark);
}
.page-hero .section-title {
  color: var(--white);
}
.page-hero .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: calc(var(--header-h) + 28px);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.hero-title span {
  color: var(--highlight);
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
}
.hero-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--highlight);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(247, 127, 0, 0.4);
}
.hero-badge strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-section {
    min-height: 80vh;
  }
}

.stats-strip {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
}
.stat-number {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-number span {
  color: var(--highlight);
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.programs-preview {
  padding: 5rem 0;
  background: var(--bg);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--t),
    box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-card-icon {
  padding: 1.75rem 1.75rem 0.75rem;
  font-size: 1.75rem;
}
.program-card-body {
  padding: 0.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.program-card-text {
  font-size: 0.82rem;
  color: var(--text-sec);
  flex: 1;
  line-height: 1.65;
}
.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--highlight);
  margin-top: 1rem;
  transition: gap var(--t);
}
.program-card-link:hover {
  gap: 0.6rem;
  color: var(--highlight);
}
@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 960px) and (min-width: 769px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.features-section {
  background: var(--bg-dark);
  padding: 5rem 0;
}
.features-section .section-title {
  color: var(--white);
}
.features-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.features-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.feature-box {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background var(--t);
}
.feature-box:hover {
  background: rgba(82, 183, 136, 0.1);
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(247, 127, 0, 0.15);
  color: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-title {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.feature-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.testimonials-section {
  padding: 5rem 0;
  background: var(--white);
}
.testi-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testi-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border-left: 4px solid var(--accent);
  position: relative;
}
.testi-quote {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
}
.testi-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}
.testi-role {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.testi-stars {
  color: var(--highlight);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .testi-scroll {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 960px) and (min-width: 769px) {
  .testi-scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta-banner {
  background: linear-gradient(135deg, var(--highlight) 0%, #e05c00 100%);
  padding: 4rem 0;
}
.cta-inner {
  text-align: center;
}
.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.programs-intro {
  padding: 4rem 0 2rem;
  background: var(--bg);
}
.programs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.programs-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .programs-content {
    grid-template-columns: 1fr;
  }
}

.products-section {
  padding: 4rem 0;
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  transition:
    border-color var(--t),
    box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.product-card.featured {
  border-color: var(--highlight);
}
.product-head {
  padding: 1.5rem 1.75rem 1rem;
  background: var(--bg);
}
.product-card.featured .product-head {
  background: var(--primary);
}
.product-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--highlight);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.product-card.featured .product-name {
  color: var(--white);
}
.product-price {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--highlight);
  line-height: 1;
}
.product-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}
.product-card.featured .product-price span {
  color: rgba(255, 255, 255, 0.6);
}
.product-body {
  padding: 1.25rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-sec);
}
.product-features li i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 960px) and (min-width: 769px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.booking-section {
  padding: 4rem 0;
  background: var(--bg);
}
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.step-item {
  text-align: center;
  padding: 1.5rem;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.step-text {
  font-size: 0.8rem;
  color: var(--text-sec);
  line-height: 1.65;
}
@media (max-width: 600px) {
  .booking-steps {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  padding: 4rem 0;
  background: var(--white);
}
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.faq-question {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--t);
  gap: 0.75rem;
}
.faq-question:hover {
  background: var(--bg);
}
.faq-question i {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform var(--t);
  flex-shrink: 0;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0.25rem 1.25rem 1rem;
  font-size: 0.82rem;
  color: var(--text-sec);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  display: block;
}

.schedule-intro {
  padding: 4rem 0 2rem;
  background: var(--bg);
}
.schedule-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.schedule-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .schedule-split {
    grid-template-columns: 1fr;
  }
}

.timetable-section {
  padding: 4rem 0;
  background: var(--white);
  overflow-x: auto;
}
.timetable-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.timetable {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.78rem;
}
.timetable th {
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem 0.75rem;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.timetable th:first-child {
  text-align: left;
}
.timetable td {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
  font-size: 0.75rem;
}
.timetable tr:nth-child(even) td {
  background: var(--bg);
}
.timetable td:first-child {
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  white-space: nowrap;
  background: var(--bg);
}
.class-flow {
  background: rgba(82, 183, 136, 0.15) !important;
  color: #1b4332;
  font-weight: 600;
  border-radius: 6px;
}
.class-strength {
  background: rgba(247, 127, 0, 0.12) !important;
  color: #7a3d00;
  font-weight: 600;
  border-radius: 6px;
}
.class-recovery {
  background: rgba(27, 67, 50, 0.08) !important;
  color: #2d6a4f;
  font-weight: 600;
  border-radius: 6px;
}
.class-label {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
}

.schedule-info {
  padding: 3rem 0;
  background: var(--bg);
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.info-card {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.info-card i {
  font-size: 1.25rem;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.info-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.info-card-text {
  font-size: 0.78rem;
  color: var(--text-sec);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

.about-story {
  padding: 5rem 0;
  background: var(--white);
}
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story-text .section-title {
  margin-bottom: 1rem;
}
.story-text p {
  font-size: 0.88rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .story-split {
    grid-template-columns: 1fr;
  }
}

.values-section {
  padding: 5rem 0;
  background: var(--bg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--t);
}
.value-card:hover {
  transform: translateY(-4px);
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.value-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.value-text {
  font-size: 0.8rem;
  color: var(--text-sec);
  line-height: 1.65;
}
@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 960px) and (min-width: 601px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-section {
  padding: 5rem 0;
  background: var(--bg-dark);
}
.team-section .section-title {
  color: var(--white);
}
.team-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.team-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
}
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 auto 1rem;
}
.team-name {
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.75rem;
  color: var(--accent-lt);
}
@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  padding: 4rem 0;
  background: var(--white);
}
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: flex-start;
}
@media (max-width: 860px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
}
.contact-left-head {
  margin-bottom: 2rem;
}
.contact-left-head .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.contact-left-head p {
  font-size: 0.88rem;
  color: var(--text-sec);
  margin-top: 0.75rem;
  line-height: 1.75;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border-left: 3px solid var(--accent);
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.contact-form-shell {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.form-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--white);
  transition:
    border-color var(--t),
    box-shadow var(--t);
  outline: none;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}
textarea.form-input {
  resize: vertical;
  min-height: 110px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.78rem;
  color: var(--text-sec);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a {
  color: var(--highlight);
  text-decoration: underline;
}
.form-submit {
  width: 100%;
}

.map-section {
  padding: 0;
}
.map-frame {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(15%);
}

.contact-themed-intro {
  padding: 4rem 0 2rem;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-mid) 100%
  );
  position: relative;
  overflow: hidden;
}
.contact-themed-intro::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(82, 183, 136, 0.1);
  pointer-events: none;
}
.contact-themed-intro::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(247, 127, 0, 0.08);
  pointer-events: none;
}
.themed-intro-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 0;
}
.themed-intro-content .section-title {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}
.themed-intro-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.75;
}
.themed-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.themed-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}
.themed-badge i {
  color: var(--highlight-lt);
}

.policy-page {
  padding: 5rem 0;
  min-height: calc(100vh - var(--header-h) - var(--footer-h));
}
.policy-page .container {
  max-width: 860px;
}
.policy-header {
  margin-bottom: 2.5rem;
}
.policy-header h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}
.policy-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.policy-body h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.75rem 0 0.5rem;
}
.policy-body p {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.policy-body ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.policy-body ul li {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.7;
  list-style: disc;
}

.fullheight-main {
  min-height: calc(100vh - var(--header-h) - 14px - var(--footer-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}
body.page-error,
body.page-thankyou {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.page-error main,
body.page-thankyou main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-content {
  text-align: center;
  padding: 2rem 1rem;
}
.error-code {
  font-family: "Syne", sans-serif;
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 800;
  color: var(--border);
  line-height: 1;
}
.error-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.error-text {
  font-size: 0.88rem;
  color: var(--text-sec);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.thankyou-content {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 520px;
  margin: auto;
}
.thankyou-icon {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.thankyou-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.thankyou-text {
  font-size: 0.9rem;
  color: var(--text-sec);
  margin-bottom: 2rem;
  line-height: 1.75;
}

@media (max-width: 480px) {
  .btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.8rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-badge {
    bottom: -10px;
    left: -6px;
  }
}
