:root {
  --color-bg: #fbf8f1;
  --color-surface: rgba(255, 255, 255, 0.82);
  --color-surface-strong: #ffffff;
  --color-surface-muted: #f4ede2;
  --color-border: rgba(125, 90, 40, 0.14);
  --color-text: #ffffff;
  --color-text-soft: rgba(255, 255, 255, 0.8);
  --color-primary: #a80f2d;
  --color-primary-deep: #7f0c23;
  --color-secondary: #d9b778;
  --color-emerald: #0f6d62;
  --shadow-soft: 0 18px 60px rgba(54, 26, 17, 0.08);
  --shadow-card: 0 24px 80px rgba(81, 35, 27, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-display: "Cormorant Garamond", serif;
  --container: min(1180px, calc(100% - 40px));
  --nav-height: 94px;
  --nav-offset: calc(var(--nav-height) + 38px);
  --nav-layer: 2147483000;
  --transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-height) + 40px);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: #a80f2d;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 10%, #90162a 0%, #4a0c16 100%);
}

body.is-loading {
  overflow: hidden;
}

body::before,
body::after {
  content: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

:where(a, button, input, textarea, select, [role="button"]) {
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, input, textarea, select, [role="button"]):focus {
  outline: none;
}

:where(a, button, input, textarea, select, [role="button"]):focus-visible {
  outline: 2px solid rgba(168, 15, 45, 0.55);
  outline-offset: 3px;
}

.loading-screen {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(217, 183, 120, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(12, 12, 12, 0.94), rgba(57, 18, 25, 0.97));
  z-index: 9999;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-shell {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
}

.loading-shell strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.loading-shell p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.loading-emblem {
  width: 84px;
  height: 84px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(217, 183, 120, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.loading-emblem::before,
.loading-emblem::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.loading-emblem::after {
  inset: 28px 24px;
  animation: pulseGlow 1.8s ease-in-out infinite;
}

.loading-line {
  width: 160px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.loading-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, rgba(217, 183, 120, 0), rgba(217, 183, 120, 1), rgba(255, 255, 255, 0));
  animation: loadingMove 1.2s linear infinite;
}

.page-wrap {
  position: relative;
  isolation: isolate;
}

.page-wrap>main {
  position: relative;
  z-index: 0;
  padding-top: var(--nav-offset);
}

.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(168, 15, 45, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 15, 45, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section--compact {
  padding: 88px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(168, 15, 45, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 0 6px rgba(217, 183, 120, 0.18);
}

.section-head {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-head h1,
.section-head h2 {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: #ffffff;
  line-height: 1.8;
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
}

.site-nav {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: var(--nav-layer);
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  isolation: isolate;
}

.nav-shell {
  pointer-events: auto;
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(125, 90, 40, 0.12);
  box-shadow: 0 24px 60px rgba(59, 30, 17, 0.08);
  position: relative;
  z-index: 1;
  --color-text: #111111;
  --color-text-soft: rgba(17, 17, 17, 0.68);
  color: var(--color-text);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.nav-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
  align-items: start;
  white-space: nowrap;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  background: linear-gradient(145deg, #f7efe0, #fff);
  border: 1px solid rgba(168, 15, 45, 0.12);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 14px 28px rgba(83, 41, 23, 0.08);
}

.brand-mark span {
  position: absolute;
  inset: auto 10px 10px;
  height: 22px;
  border: 1.5px solid rgba(168, 15, 45, 0.82);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.brand-mark span:last-child {
  inset: auto 16px 18px;
  height: 14px;
  border-color: rgba(15, 109, 98, 0.75);
}

.brand-copy strong {
  display: block;
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-deep, #7f0c23);
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy span {
  font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
  font-size: 0.85rem;
  color: var(--color-text-soft, rgba(17, 17, 17, 0.68));
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.nav-current {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(127, 12, 35, 0.65);
}

.brand-copy span:not(.nav-current)::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-secondary, #d9b778);
  margin: 0 10px;
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.nav-links>li>a,
.nav-link-group>a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.74);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-links>li>a:hover,
.nav-link-group>a:hover,
.nav-links>li>a.is-active,
.nav-link-group>a.is-active,
.nav-links>li>a[aria-current="page"],
.nav-link-group>a[aria-current="page"] {
  color: var(--color-primary);
  background: rgba(168, 15, 45, 0.06);
}

.nav-item {
  position: relative;
}

.nav-link-group {
  display: flex;
  align-items: center;
  gap: 2px;
}

.dropdown-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
  color: rgba(17, 17, 17, 0.6);
}

.dropdown-toggle::before,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 8px;
  height: 1.8px;
  background: currentColor;
  transition: transform var(--transition);
}

.dropdown-toggle::before {
  left: 10px;
  transform: rotate(45deg);
}

.dropdown-toggle::after {
  right: 10px;
  transform: rotate(-45deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(125, 90, 40, 0.12);
  box-shadow: 0 30px 80px rgba(47, 19, 13, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
}

.dropdown-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(17, 17, 17, 0.74);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.dropdown-panel a:hover {
  background: rgba(168, 15, 45, 0.06);
  color: var(--color-primary);
  transform: translateX(4px);
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.has-dropdown.is-open .dropdown-toggle::before {
  transform: rotate(-45deg);
}

.has-dropdown.is-open .dropdown-toggle::after {
  transform: rotate(45deg);
}

.nav-cta,
.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  min-height: 54px;
  padding: 0 24px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.nav-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), #c21b41);
  box-shadow: 0 14px 30px rgba(168, 15, 45, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-cta:hover,
.button:hover,
.button-outline:hover {
  transform: translateY(-3px);
}

.button[disabled],
button[disabled] {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
  transform: none;
}

.button {
  background: linear-gradient(135deg, var(--color-primary), #c21b41);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(168, 15, 45, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button1 {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #a80f2d;
  box-shadow: 0 14px 30px rgba(168, 15, 45, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: transform 0.2s;
  justify-content: center;
}

.button2 {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #a80f2d;
  box-shadow: 0 14px 30px rgba(168, 15, 45, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: transform 0.2s;
  justify-content: center;
}

.container-center {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.button-outline {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 28px rgba(36, 27, 20, 0.08);
}

.button-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 600;
}

.button-inline::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: width var(--transition);
}

.button-inline:hover::after {
  width: 40px;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.04);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 38px 0 72px;
}

.hero-panel {
  width: var(--container);
  margin: 0 auto;
  min-height: calc(100vh - 160px);
  position: relative;
  overflow: clip;
  border-radius: 44px;
  padding: 56px;
  background: linear-gradient(135deg, rgba(168, 15, 45, 0.45) 0%, rgba(93, 10, 24, 0.6) 100%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-home {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 34px;
  align-content: center;
  min-height: calc(100vh - 320px);
}

.hero-home-top {
  display: flex;
  justify-content: flex-start;
}

.hero-center-logo {
  width: 76px;
  height: 76px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  justify-self: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 0 24px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 30px;
}

.hero-center-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.hero-shape-left {
  position: relative;
  width: min(560px, 100%);
  height: 220px;
  border-radius: 180px 44px 44px 180px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 26% 30%, rgba(217, 183, 120, 0.22), transparent 52%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.hero-shape-left::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 170px 34px 34px 170px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.85;
}

.hero-photo {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 142px;
  height: 142px;
  padding: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217, 183, 120, 0.95), rgba(168, 15, 45, 0.92));
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.22);
}

.hero-photo::before,
.hero-photo::after {
  content: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0b1220;
  border: 6px solid rgba(255, 255, 255, 0.08);
}

.hero-bubble {
  position: absolute;
  left: 190px;
  right: 18px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(248, 250, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 4px;
  color: rgba(11, 18, 32, 0.94);
}

.hero-bubble strong {
  font-size: 0.88rem;
}

.hero-bubble span {
  font-size: 0.82rem;
  color: rgba(11, 18, 32, 0.7);
}

.hero-bubble--left {
  top: 24px;
}

.hero-bubble--right {
  bottom: 24px;
}

.hero-home-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.hero-home-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 36px;
  background: rgba(42, 22, 25, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-home-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.hero-home-card>* {
  position: relative;
  z-index: 1;
}

.hero-home-card--story::after {
  content: none;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.64);
}

.hero-home-card--intro h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.7rem, 4.2vw, 4.1rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  margin: 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.hero-home-card--story h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-home-card--story p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-home-card .button {
  padding: 0 28px;
  min-height: 50px;
  font-size: 0.98rem;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(168, 15, 45, 0.25);
}

.hero-home-card .button-outline {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  padding: 0 28px;
  min-height: 50px;
  font-size: 0.98rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-home-card .button-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.metric-grid,
.program-grid,
.article-grid,
.teacher-grid,
.faq-grid,
.contact-grid,
.gallery-grid,
.story-grid,
.pricing-grid,
.requirements-grid {
  display: grid;
  gap: 24px;
}

.metric-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.teacher-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.metric-card,
.program-card,
.article-card,
.faq-card,
.contact-card,
.pricing-card,
.requirement-card,
.timeline-card,
.value-card,
.testimonial-sheet,
.gallery-item,
.highlight-panel {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(125, 90, 40, 0.12);
  box-shadow: var(--shadow-soft);
  --color-text: #111111;
  --color-text-soft: rgba(17, 17, 17, 0.68);
  color: var(--color-text);
  overflow: hidden;
}

.metric-card::before,
.program-card::before,
.article-card::before,
.faq-card::before,
.contact-card::before,
.pricing-card::before,
.requirement-card::before,
.timeline-card::before,
.value-card::before,
.testimonial-sheet::before,
.gallery-item::before,
.highlight-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 60%);
  pointer-events: none;
}

.metric-card:hover,
.program-card:hover,
.article-card:hover,
.faq-card:hover,
.contact-card:hover,
.pricing-card:hover,
.requirement-card:hover,
.timeline-card:hover,
.value-card:hover,
.gallery-item:hover,
.highlight-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(69, 30, 17, 0.14);
}

.metric-card,
.program-card,
.article-card,
.faq-card,
.contact-card,
.pricing-card,
.requirement-card,
.timeline-card,
.value-card,
.gallery-item,
.highlight-panel {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(168, 15, 45, 0.1), rgba(217, 183, 120, 0.16));
  color: var(--color-primary);
  margin-bottom: 18px;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.metric-card h3,
.program-card h3,
.article-card h3,
.faq-card h3,
.contact-card h3,
.pricing-card h3,
.requirement-card h3,
.timeline-card h3,
.value-card h3,
.testimonial-sheet h3,
.gallery-caption h3,
.highlight-panel h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.metric-card strong,
.pricing-price {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 12px;
}

.card p,
.metric-card p,
.program-card p,
.article-card p,
.faq-card p,
.contact-card p,
.pricing-card p,
.requirement-card p,
.timeline-card p,
.value-card p,
.testimonial-sheet p,
.highlight-panel p,
.gallery-caption p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.program-card .card-index,
.article-card .card-index,
.timeline-card .card-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(168, 15, 45, 0.08);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 18px;
}

.program-card .button-inline,
.article-card .button-inline {
  margin-top: auto;
  padding-top: 22px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  position: relative;
}

.process-track::before {
  content: none;
}

.step-card {
  position: relative;
  padding: 34px 24px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(125, 90, 40, 0.12);
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(168, 15, 45, 0.92), rgba(126, 12, 35, 1));
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(168, 15, 45, 0.2);
}

.step-card h3,
.step-card p {
  color: #000000;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.step-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--color-text-soft);
}

.testimonial-slider {
  position: relative;
}

.testimonial-stage {
  position: relative;
  min-height: 360px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 26px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(180deg, rgba(217, 183, 120, 0.12), transparent);
  border: 1px solid rgba(125, 90, 40, 0.12);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 480ms ease, transform 480ms ease, visibility 480ms ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-photo {
  border-radius: 28px;
  overflow: hidden;
  height: 292px;
}

.testimonial-photo img {
  height: 100%;
  object-fit: cover;
}

.testimonial-body {
  display: grid;
  align-content: center;
  gap: 18px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.7;
  color: rgba(168, 15, 45, 0.22);
}

.testimonial-body p {
  margin: 0;
  font-size: clamp(1.04rem, 1.9vw, 1.28rem);
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.78);
}

.testimonial-person strong {
  color: #000000;
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.testimonial-person span {
  color: rgba(17, 17, 17, 0.58);
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: transform var(--transition), background var(--transition);
}

.slider-dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}

.slider-arrow:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
}

.slider-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.slider-arrow[data-direction="prev"]::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.slider-arrow[data-direction="next"]::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.gallery-grid {
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
}

.gallery-item {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  border-radius: 36px;
  height: 100%;
  align-self: stretch;
  background: linear-gradient(180deg, rgba(255, 250, 247, 0.98), rgba(245, 236, 233, 0.98));
  border: 1px solid rgba(125, 90, 40, 0.14);
  box-shadow: 0 28px 72px rgba(81, 35, 27, 0.14);
}

.gallery-item::before {
  display: none;
}

.gallery-item.large {
  grid-column: span 5;
}

.gallery-item.medium {
  grid-column: span 4;
}

.gallery-item.small {
  grid-column: span 3;
}

.gallery-media {
  overflow: hidden;
  background: rgba(87, 33, 29, 0.08);
}

.gallery-item.large .gallery-media {
  aspect-ratio: 1.68 / 1;
}

.gallery-item.medium .gallery-media {
  aspect-ratio: 1.32 / 1;
}

.gallery-item.small .gallery-media {
  aspect-ratio: 0.98 / 1;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: static;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 12px;
  padding: 28px 30px 32px;
  min-height: 196px;
  background: linear-gradient(180deg, rgba(255, 249, 246, 0.98), rgba(245, 236, 233, 0.98));
  color: #2b201f;
}

.gallery-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(120, 101, 96, 0.82);
}

.gallery-caption h3 {
  margin: 0;
  font-size: clamp(1.72rem, 2vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #2b201f;
}

.gallery-caption p {
  color: rgba(62, 48, 46, 0.74);
  font-size: clamp(0.96rem, 1.15vw, 1.05rem);
  line-height: 1.55;
}

.gallery-item.small .gallery-caption {
  min-height: 196px;
  padding: 24px 24px 28px;
}

.gallery-item.small .gallery-caption h3 {
  font-size: clamp(1.36rem, 1.5vw, 1.74rem);
}

.gallery-item.small .gallery-caption p {
  font-size: 0.92rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(168, 15, 45, 0.96), rgba(114, 11, 32, 0.94)),
    radial-gradient(circle at top right, rgba(217, 183, 120, 0.28), transparent 34%);
  color: #ffffff;
  box-shadow: 0 30px 90px rgba(115, 17, 37, 0.28);
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 183, 120, 0.22), transparent 65%);
}

.cta-panel h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.92;
}

.cta-panel p {
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.cta-actions .button,
.cta-actions .button-outline {
  min-width: 200px;
}

.cta-actions .button-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero {
  padding: 34px 0 48px;
}

.page-hero-panel {
  width: var(--container);
  margin: 0 auto;
  padding: 56px 48px 44px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at top right, rgba(217, 183, 120, 0.18), transparent 28%);
  border: 1px solid rgba(125, 90, 40, 0.12);
  box-shadow: var(--shadow-soft);
}

.page-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(168, 15, 45, 0.02), transparent 40%),
    radial-gradient(circle at 85% 22%, rgba(168, 15, 45, 0.08), transparent 22%);
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.page-hero-copy h1 {
  color: #000000;
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.page-hero-copy p {
  margin: 0;
  max-width: 620px;
  line-height: 1.9;
  color: var(--color-text-soft);
}

.page-hero-visual {
  min-height: 340px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background: var(--page-hero-image, url("https://images.unsplash.com/photo-1545161296-d9c2c241f2ad?auto=format&fit=crop&w=1400&q=80"));
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 80px rgba(91, 25, 29, 0.2);
}

.page-hero-visual::before,
.page-hero-visual::after {
  content: none;
}

.story-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.story-panel {
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(125, 90, 40, 0.12);
  box-shadow: var(--shadow-soft);
}

.story-panel h2 {
  color: #000000;
}

.story-panel h3 {
  color: #000000;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.98;
}

.story-panel p {
  margin: 0 0 16px;
  line-height: 1.9;
  color: var(--color-text-soft);
}

.milestone-list,
.check-list,
.pricing-features,
.faq-list,
.contact-list,
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.milestone-list li,
.check-list li,
.pricing-features li,
.faq-list li,
.contact-list li,
.detail-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.milestone-list li::before,
.check-list li::before,
.pricing-features li::before,
.faq-list li::before,
.contact-list li::before,
.detail-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  flex: 0 0 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 0 0 6px rgba(168, 15, 45, 0.08);
}

.value-grid,
.pricing-grid,
.requirements-grid,
.article-grid,
.faq-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.requirement-card,
.pricing-card,
.article-card,
.faq-card,
.contact-card {
  min-height: 100%;
}

.pricing-card.featured {
  background:
    linear-gradient(135deg, rgba(168, 15, 45, 0.96), rgba(114, 11, 32, 0.94)),
    radial-gradient(circle at top right, rgba(217, 183, 120, 0.24), transparent 30%);
  color: #ffffff;
}

.pricing-card.featured p,
.pricing-card.featured .pricing-features li,
.pricing-card.featured .detail-list li {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured .pricing-features li::before,
.pricing-card.featured .detail-list li::before {
  background: linear-gradient(135deg, #ffffff, rgba(217, 183, 120, 0.86));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.pricing-note {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(168, 15, 45, 0.08);
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 600;
}

.pricing-card.featured .pricing-note {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.timeline-grid {
  display: grid;
  gap: 20px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
}

.timeline-card time {
  display: inline-flex;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(168, 15, 45, 0.08);
  color: var(--color-primary);
  font-weight: 700;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-cover {
  margin: -28px -28px 22px;
  aspect-ratio: 3 / 3;
  max-width: 300;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.article-cover img {
  height: 100%;
  object-fit: cover;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(17, 17, 17, 0.45);
}

.article-meta span:last-child {
  /* Di-override untuk memastikan tidak menimpa gaya baru di header modal */
}

.faq-accordion {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  border: 1px solid rgba(125, 90, 40, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  text-align: left;
  font-weight: 600;
}

.faq-question span:last-child {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(168, 15, 45, 0.08);
  position: relative;
  flex: 0 0 auto;
}

.faq-question span:last-child::before,
.faq-question span:last-child::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  top: 16px;
  left: 10px;
  right: 10px;
  height: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-question span:last-child::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question span:last-child::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease;
}

.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--color-text-soft);
  line-height: 1.9;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-grid--single {
  grid-template-columns: 1fr;
  justify-content: center;
}

.contact-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  color: #000000;
  font-size: 0.88rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(168, 15, 45, 0.32);
  box-shadow: 0 0 0 6px rgba(168, 15, 45, 0.08);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-map {
  min-height: 100%;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.6), rgba(17, 17, 17, 0.22)),
    url("https://images.unsplash.com/photo-1539650116574-75c0c6d2d0e2?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 90px rgba(45, 22, 17, 0.18);
}

.contact-map::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.contact-badge h3,
.contact-badge p {
  margin: 0;
}

.contact-badge h3 {
  margin-bottom: 10px;
}

.contact-badge p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stats-band .highlight-panel {
  text-align: center;
}

.stats-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.quote-panel {
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(57, 18, 25, 0.95)),
    radial-gradient(circle at top right, rgba(217, 183, 120, 0.18), transparent 28%);
  color: #ffffff;
  box-shadow: 0 32px 80px rgba(12, 12, 12, 0.18);
}

.quote-panel p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.quote-panel small {
  display: block;
  margin-top: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.testimonial-sheet small {
  display: block;
  margin-top: 16px;
  color: rgba(17, 17, 17, 0.52);
}

.mini-cta {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(125, 90, 40, 0.12);
  box-shadow: var(--shadow-soft);
}

.mini-cta h3 {
  color: #000000;
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.mini-cta p {
  margin: 0 0 18px;
  line-height: 1.9;
  color: var(--color-text-soft);
}

.footer {
  padding: 24px 0 0;
  margin-bottom: 0;
}

.footer-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 34px;
  border-radius: 34px 34px 0 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(125, 90, 40, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 0;
}

.footer-brand h3 {
  color: #000000;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 2rem;
}

.footer-brand p,
.footer-links a,
.footer-meta span {
  color: var(--color-text-soft);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  margin-top: 20px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #19c37d, #11a165);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(17, 161, 101, 0.36);
  z-index: 990;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 28px 56px rgba(17, 161, 101, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

[data-parallax] {
  will-change: transform;
  --parallax-offset: 0px;
  transform: translate3d(0, var(--parallax-offset), 0);
}

.hero-ornament {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300%;
  background: var(--color-primary);
  border-radius: 0 0 0 160px;
  z-index: -1;
}

@media (max-width: 1180px) {

  .nav-shell,
  .hero-panel,
  .page-hero-panel,
  .footer-shell {
    width: auto;
    margin-inline: 12px;
  }

  .program-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track,
  .stats-band,
  .teacher-grid,
  .article-grid,
  .value-grid,
  .pricing-grid,
  .requirements-grid,
  .contact-grid--three,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --nav-height: 82px;
    --nav-offset: calc(var(--nav-height) + 42px);
  }

  .site-nav {
    padding: 12px 12px 0;
  }

  .nav-shell {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 14px 16px;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: clamp(1rem, 4.8vw, 1.2rem);
  }

  .nav-current {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 420ms ease;
  }

  .nav-menu.is-open {
    max-height: 82vh;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links>li {
    width: 100%;
  }

  .nav-links>li>a,
  .nav-link-group>a {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .nav-item.has-dropdown {
    border-radius: 20px;
    background: rgba(17, 17, 17, 0.03);
  }

  .nav-link-group {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
  }

  .dropdown-toggle {
    width: 46px;
    height: 46px;
    justify-self: end;
  }

  .dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    max-height: 0;
    padding: 0 14px;
    box-shadow: none;
    border: 0;
    background: transparent;
    pointer-events: none;
    overflow: hidden;
    transition: max-height 320ms ease, padding 320ms ease;
  }

  .has-dropdown.is-open .dropdown-panel {
    max-height: 320px;
    padding: 0 14px 14px;
    pointer-events: auto;
  }

  .dropdown-panel a {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.6);
  }

  .nav-cta {
    width: 100%;
  }

  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .story-grid,
  .cta-panel,
  .footer-shell,
  .contact-grid,
  .testimonial-slide {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 36px 24px 32px;
    min-height: auto;
    background: linear-gradient(160deg, rgba(129, 15, 37, 0.96) 0%, rgba(74, 12, 22, 0.98) 100%);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-panel.scroll-reveal,
  .hero-panel.scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-home-cards {
    grid-template-columns: 1fr;
  }

  .hero-home-card {
    padding: 30px 26px;
    background: rgba(42, 22, 25, 0.9);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-center-logo {
    width: 84px;
    height: 84px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16), 0 0 0 10px rgba(255, 255, 255, 0.04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-center-logo img {
    width: 56px;
    height: 56px;
  }

  .hero-home-card .button-outline {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-shape-left {
    height: 240px;
  }

  .hero-photo {
    width: 132px;
    height: 132px;
    left: 20px;
  }

  .hero-bubble {
    left: 170px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-brand {
    margin-bottom: 28px;
  }

  .hero-side {
    min-height: 460px;
  }

  .hero-ornament {
    inset: 8px 10px 0;
  }

  .hero-card-stack {
    right: 12px;
    left: 12px;
    bottom: 14px;
    width: auto;
  }

  .process-track::before {
    display: none;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.medium,
  .gallery-item.small {
    grid-column: span 6;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-links,
  .footer-meta {
    justify-content: flex-start;
  }

  .testimonial-stage {
    min-height: 620px;
  }

  .testimonial-photo {
    min-height: 230px;
  }

  .timeline-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 86px 0;
  }

  .site-nav {
    padding-inline: 9px;
  }

  .hero-panel,
  .page-hero-panel,
  .footer-shell {
    width: auto;
    margin-inline: 9px;
    border-radius: 28px;
  }

  .hero-center-logo {
    width: 78px;
    height: 78px;
    border-radius: 26px;
  }

  .hero-center-logo img {
    width: 50px;
    height: 50px;
  }

  .hero-shape-left {
    height: auto;
    padding: 22px 20px 18px;
    border-radius: 34px;
  }

  .hero-photo {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 6px 0 18px;
  }

  .hero-bubble {
    position: relative;
    left: 0;
    right: 0;
    max-width: none;
    margin: 0 0 12px;
  }

  .hero-bubble--left,
  .hero-bubble--right {
    top: auto;
    bottom: auto;
  }

  .hero-bubble:last-child {
    margin-bottom: 0;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .section-head h1,
  .section-head h2,
  .cta-panel h2 {
    line-height: 0.98;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button,
  .button-outline,
  .hero-actions a,
  .cta-actions a {
    width: 100%;
  }

  .metric-grid,
  .program-grid,
  .value-grid,
  .pricing-grid,
  .requirements-grid,
  .article-grid,
  .faq-grid,
  .contact-grid--three,
  .stats-band {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.large,
  .gallery-item.medium,
  .gallery-item.small {
    grid-column: span 1;
  }

  .gallery-item {
    border-radius: 30px;
  }

  .gallery-media,
  .gallery-item.large .gallery-media,
  .gallery-item.medium .gallery-media,
  .gallery-item.small .gallery-media {
    aspect-ratio: 1.18 / 1;
  }

  .gallery-caption,
  .gallery-item.small .gallery-caption {
    min-height: auto;
    padding: 24px 22px 26px;
  }

  .gallery-caption h3,
  .gallery-item.small .gallery-caption h3 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .gallery-caption p,
  .gallery-item.small .gallery-caption p {
    font-size: 1rem;
  }

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

  .teacher-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
  }

  .teacher-grid .article-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
  }

  .teacher-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
  }

  .teacher-grid .article-cover {
    margin: -18px -18px 16px;
    border-radius: 20px 20px 0 0;
  }

  .teacher-grid .article-meta {
    margin-bottom: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .teacher-grid .article-card h3 {
    font-size: 1.1rem;
    line-height: 1.18;
  }

  .teacher-grid .article-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero-side {
    min-height: 400px;
  }

  .hero-ornament {
    border-radius: 180px 180px 26px 26px;
  }

  .testimonial-stage {
    min-height: 680px;
  }

  .slider-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 20px, 0);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loadingMove {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(260%);
  }
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.footer-teks-navigasi {
  color: #a80f2d;
  text-decoration: none;
}

.hero-subtitle[data-typing]::after {
  content: "|";
  display: inline-block;
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.8);
  animation: blink 1s step-end infinite;
}

@media (max-width: 980px),
(prefers-reduced-motion: reduce) {
  .hero-subtitle[data-typing]::after {
    display: none;
    animation: none;
  }
}

/* =========================================
   MODAL / POPUP STYLES
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  color: #111111;
  width: 100%;
  max-width: 800px;
  /* Atur Lebar PopUp Artikel Disini */
  max-height: 500px;
  border-radius: var(--radius-lg, 24px);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  /* Perubahan: Membuat container flex dan menyembunyikan scroll di luar body */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-overlay.is-open .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  /* Posisi absolute relatif terhadap container, jadinya akan "melayang" terus meskipun isi modal di-scroll */
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(168, 15, 45, 0.08);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  z-index: 20;
  /* Menaruhnya di atas konten */
}

/* Styling ikon SVG X presisi */
.modal-close svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}

.modal-close:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
  /* Sedikit pop-up animasi hover */
}

.modal-body {
  padding: 48px;
  /* Scroll dipindahkan ke modal-body */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Modifikasi pada H2 untuk mencegah overlapping */
.modal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #000000;
  margin: 0 0 24px;
  line-height: 1.2;
}

.modal-body img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.modal-content-text p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.8);
  margin-bottom: 18px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .modal-body {
    padding: 30px 24px;
  }

  .modal-close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }
}