


:root {
  --ink: #0f1117;
  --ink-soft: #1c2030;
  --paper: #f5f4f0;
  --paper-warm: #eeecea;
  --accent: #c8a96e;
  --accent-deep: color-mix(in oklch, #c8a96e, #0f1117 35%);
  --accent-light: color-mix(in oklch, #c8a96e, white 45%);
  --accent-faint: color-mix(in oklch, #c8a96e, white 75%);
  --text-on-dark: #e8e5de;
  --text-muted-dark: color-mix(in oklch, #e8e5de, #0f1117 40%);
  --text-muted-light: color-mix(in oklch, #0f1117, white 45%);
  --border-dark: color-mix(in oklch, #e8e5de, transparent 80%);
  --border-light: color-mix(in oklch, #0f1117, transparent 88%);
  --shadow-sm: 0 1px 3px color-mix(in oklch, #0f1117, transparent 88%), 0 1px 2px color-mix(in oklch, #0f1117, transparent 92%);
  --shadow-md: 0 4px 6px color-mix(in oklch, #0f1117, transparent 85%), 0 2px 4px color-mix(in oklch, #0f1117, transparent 90%);
  --shadow-lg: 0 10px 25px color-mix(in oklch, #0f1117, transparent 82%), 0 4px 10px color-mix(in oklch, #0f1117, transparent 88%);
  --shadow-xl: 0 20px 40px color-mix(in oklch, #0f1117, transparent 78%), 0 8px 16px color-mix(in oklch, #0f1117, transparent 85%);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 50px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Red Hat Text', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}


.content-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}


.dark-section {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: var(--section-pad) 0;
}

.light-section {
  background: var(--paper);
  color: var(--ink);
  padding: var(--section-pad) 0;
}

.visual-break {
  background: var(--paper-warm);
  padding: var(--section-pad) 0;
}


.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.3s ease;
}

.site-nav.nav-scrolled {
  background: var(--paper);
}

.site-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--accent);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav.nav-scrolled::after {
  left: 0;
  right: 0;
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-tabs a {
  display: block;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-tabs a:hover {
  background: color-mix(in oklch, var(--accent), transparent 80%);
  color: var(--ink);
}

.nav-tabs a.active-tab {
  background: var(--ink);
  color: var(--paper);
}

.nav-cta {
  background: var(--accent);
  color: var(--ink);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent-deep);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}


.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.menu-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  width: 55%;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2.5rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.menu-open .mobile-menu-links {
  transform: translateX(0);
}

.mobile-menu-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.mobile-menu-links nav a {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text-on-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
  line-height: 1.2;
}

.mobile-menu-links nav a:hover {
  color: var(--accent);
}

.mobile-menu-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.mobile-menu-cta:hover {
  background: var(--accent-deep);
  color: var(--paper);
}

.mobile-menu-visual {
  width: 45%;
  position: relative;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.menu-open .mobile-menu-visual {
  transform: translateX(0);
}

.mobile-menu-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.mobile-menu-brand {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.mobile-menu-brand span {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

.mobile-menu-brand p {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  margin-top: 0.25rem;
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: color-mix(in oklch, var(--paper), transparent 80%);
  border: none;
  color: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s ease;
  z-index: 10;
}

.mobile-menu-close:hover {
  background: color-mix(in oklch, var(--paper), transparent 70%);
}


.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-label.light {
  color: var(--accent);
}

.section-heading {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.section-heading.light {
  color: var(--text-on-dark);
}

.section-intro {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-muted-light);
  max-width: 600px;
}

.section-intro.light {
  color: var(--text-muted-dark);
}

.section-header-centered {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-centered .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  transition: gap 0.2s ease;
}

.text-link:hover {
  gap: 0.8rem;
}

.light-text {
  color: var(--text-muted-dark);
  line-height: 1.7;
}


.primary-action {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px color-mix(in oklch, var(--accent), transparent 55%);
}

.primary-action:hover {
  background: var(--accent-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px color-mix(in oklch, var(--accent), transparent 45%);
}

.secondary-action {
  display: inline-block;
  border: 1.5px solid color-mix(in oklch, var(--text-on-dark), transparent 50%);
  color: var(--text-on-dark);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.secondary-action:hover {
  border-color: var(--accent);
  background: color-mix(in oklch, var(--accent), transparent 85%);
  color: var(--accent);
}


.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.scroll-reveal-delay {
  transition-delay: 0.15s;
}




.intro-section {
  padding: var(--section-pad) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text {
  display: flex;
  flex-direction: column;
}

.intro-text .section-heading {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-muted-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.intro-image-wrap {
  position: relative;
}

.intro-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.intro-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 2rem;
  background: var(--accent);
  color: var(--ink);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.info-block {
  background: color-mix(in oklch, var(--ink-soft), transparent 40%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.info-block:hover {
  background: color-mix(in oklch, var(--ink-soft), transparent 10%);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px color-mix(in oklch, #0f1117, transparent 60%);
}

.info-block-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in oklch, var(--accent), transparent 80%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: background 0.25s ease;
}

.info-block:hover .info-block-icon {
  background: color-mix(in oklch, var(--accent), transparent 65%);
}

.info-block h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.info-block p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.info-block-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s ease;
}

.info-block-link:hover {
  gap: 0.7rem;
}


.courses-preview-section {
  padding: var(--section-pad) 0;
}

.courses-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.courses-horizontal-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
  cursor: grab;
  user-select: none;
}

.courses-horizontal-wrapper:active {
  cursor: grabbing;
}

.courses-horizontal-wrapper::-webkit-scrollbar {
  display: none;
}

.courses-horizontal-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 0;
  width: max-content;
}

.course-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--border-light);
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.course-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.course-card:hover .course-card-img img {
  transform: scale(1.04);
}

.course-level {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.course-card-body {
  padding: 1.5rem;
}

.course-card-body h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.course-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.course-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.course-meta i {
  color: var(--accent);
  font-size: 0.75rem;
}

.course-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.2s ease;
}

.course-card-link:hover {
  gap: 0.7rem;
}

.horizontal-scroll-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.scroll-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.scroll-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.scroll-progress-track {
  flex: 1;
  height: 3px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}

.scroll-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 20%;
  transition: width 0.15s ease;
}


.calculator-section {
  padding: var(--section-pad) 0;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.calculator-text .section-heading {
  margin-bottom: 1.25rem;
}

.calculator-notes {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calculator-notes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted-dark);
}

.calculator-notes i {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.calc-card {
  background: color-mix(in oklch, var(--ink-soft), transparent 30%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.calc-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.calc-field-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  letter-spacing: 0.02em;
}

.calc-field-group input {
  background: color-mix(in oklch, var(--ink), transparent 20%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  color: var(--text-on-dark);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}

.calc-field-group input:focus {
  border-color: var(--accent);
  background: color-mix(in oklch, var(--ink), transparent 10%);
}

.calc-field-group input::placeholder {
  color: color-mix(in oklch, var(--text-muted-dark), transparent 40%);
}

.calc-btn {
  background: var(--accent);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

.calc-btn:hover {
  background: var(--accent-deep);
  color: var(--paper);
  transform: translateY(-1px);
}

.calc-result {
  margin-top: 1.5rem;
  display: none;
}

.calc-result.has-result {
  display: block;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.calc-result-item {
  background: color-mix(in oklch, var(--ink), transparent 20%);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent);
}

.calc-result-item .result-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  margin-bottom: 0.25rem;
}

.calc-result-item .result-value {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-dark);
}

.calc-result-item .result-value.positive {
  color: #7ec8a0;
}

.calc-result-item .result-value.negative {
  color: #e07070;
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  font-style: italic;
  margin-top: 0.75rem;
}


.approach-section {
  padding: var(--section-pad) 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.approach-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.approach-text .section-heading {
  margin-bottom: 1.5rem;
}

.approach-text p {
  color: var(--text-muted-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.approach-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in oklch, var(--accent), transparent 85%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.approach-feature strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.approach-feature p {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  margin: 0;
}


.events-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.event-preview-card {
  background: color-mix(in oklch, var(--ink-soft), transparent 40%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.event-preview-card:hover {
  background: color-mix(in oklch, var(--ink-soft), transparent 15%);
  transform: translateY(-4px);
}

.event-preview-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in oklch, var(--accent), transparent 80%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.event-preview-card h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.event-preview-card p {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.event-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s ease;
}

.event-preview-link:hover {
  gap: 0.7rem;
}

.events-preview-cta {
  text-align: center;
}


.disclaimer-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: color-mix(in oklch, var(--paper-warm), transparent 20%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--accent);
}

.disclaimer-icon {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.disclaimer-text h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.disclaimer-text p {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.7;
}

.dark-section .disclaimer-inner {
  background: color-mix(in oklch, var(--ink-soft), transparent 30%);
  border-color: var(--border-dark);
  border-left-color: var(--accent);
}

.dark-section .disclaimer-text h3 {
  color: var(--text-on-dark);
}

.dark-section .disclaimer-text p {
  color: var(--text-muted-dark);
}


.contact-cta-section {
  padding: var(--section-pad) 0;
}

.contact-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta-inner .section-heading {
  margin-bottom: 1rem;
}

.contact-cta-inner .light-text {
  margin-bottom: 2rem;
}



.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-content .section-heading {
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--text-muted-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.story-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: color-mix(in oklch, var(--ink-soft), transparent 40%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
  background: color-mix(in oklch, var(--ink-soft), transparent 15%);
  transform: translateY(-4px);
}

.value-number {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.value-card h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
}

.mission-inner {
  margin-bottom: 4rem;
}

.mission-quote {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  position: relative;
  text-align: center;
}

.mission-quote i {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.mission-quote blockquote {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-on-dark);
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 700px;
  margin: 0 auto;
}

.mission-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mission-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.mission-text-grid h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.mission-text-grid p {
  color: var(--text-muted-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}



.courses-filter-section {
  padding: var(--section-pad) 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted-light);
  white-space: nowrap;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-light);
  background: transparent;
  color: var(--text-muted-light);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-tab:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.filter-tab.active-filter {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.full-courses-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.full-course-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: var(--paper-warm);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.full-course-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.full-course-card.hidden {
  display: none;
}

.full-course-img {
  position: relative;
  overflow: hidden;
}

.full-course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.4s ease;
}

.full-course-card:hover .full-course-img img {
  transform: scale(1.04);
}

.course-level-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.course-level-badge.beginner {
  background: color-mix(in oklch, #7ec8a0, white 20%);
  color: #1a4a2e;
}

.course-level-badge.intermediate {
  background: var(--accent);
  color: var(--ink);
}

.course-level-badge.advanced {
  background: var(--ink);
  color: var(--paper);
}

.full-course-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.course-topic-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.full-course-body h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.course-description {
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.course-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.course-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--text-muted-light);
}

.course-detail-item i {
  color: var(--accent);
  font-size: 0.8rem;
  width: 14px;
  flex-shrink: 0;
}

.course-modules {
  margin-bottom: 2rem;
  flex: 1;
}

.course-modules h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.course-modules ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.course-modules li {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.course-modules li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}


.courses-notice-section {
  padding: var(--section-pad) 0;
}



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

.events-about-grid .section-heading {
  margin-bottom: 1.5rem;
}

.events-about-grid p {
  color: var(--text-muted-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.events-format-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.format-card {
  background: var(--paper-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.format-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.format-card-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in oklch, var(--accent), transparent 85%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.format-card h4 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.format-card p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  margin: 0;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-list-item {
  display: flex;
  gap: 1.5rem;
  background: color-mix(in oklch, var(--ink-soft), transparent 40%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.25s ease, transform 0.25s ease;
  align-items: flex-start;
}

.event-list-item:hover {
  background: color-mix(in oklch, var(--ink-soft), transparent 15%);
  transform: translateX(4px);
}

.event-list-icon {
  width: 52px;
  height: 52px;
  background: color-mix(in oklch, var(--accent), transparent 80%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.event-list-content {
  flex: 1;
}

.event-list-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.event-list-header h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.event-type-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-type-badge.workshop {
  background: color-mix(in oklch, var(--accent), transparent 75%);
  color: var(--accent);
}

.event-type-badge.qa {
  background: color-mix(in oklch, #7ec8a0, transparent 75%);
  color: #7ec8a0;
}

.event-type-badge.group {
  background: color-mix(in oklch, #8ab4e8, transparent 75%);
  color: #8ab4e8;
}

.event-list-content p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.event-list-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.event-list-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

.event-list-meta i {
  color: var(--accent);
  font-size: 0.75rem;
}

.event-enquire-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s ease;
}

.event-enquire-link:hover {
  gap: 0.7rem;
}



.contact-facts-strip {
  padding: 3rem 0;
}

.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--paper-warm);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
}

.fact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.fact-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in oklch, var(--accent), transparent 85%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.fact-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.fact-item span {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}

.fact-item a {
  color: var(--accent);
  transition: color 0.2s;
}

.fact-item a:hover {
  color: var(--accent-deep);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-col .section-heading {
  margin-bottom: 1.25rem;
}

.contact-info-col .light-text {
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-row i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.1rem;
  width: 20px;
  flex-shrink: 0;
}

.contact-detail-row strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.contact-detail-row span,
.contact-detail-row a {
  font-size: 0.95rem;
  color: var(--text-on-dark);
  transition: color 0.2s;
}

.contact-detail-row a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: var(--paper-warm);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.compact-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field-message {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted-light);
  letter-spacing: 0.03em;
}

.form-field input,
.form-field textarea {
  background: var(--paper);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent), transparent 80%);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: color-mix(in oklch, var(--text-muted-light), transparent 40%);
}

.form-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.privacy-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.825rem;
  color: var(--text-muted-light);
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

.privacy-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
  cursor: pointer;
}

.privacy-checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.form-submit-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.map-wrapper {
  background: var(--paper-warm);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.map-heading {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
}

.map-embed {
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
}



.thanks-section {
  padding: 10rem 2rem 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-inner {
  max-width: 680px;
  text-align: center;
}

.thanks-icon {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.thanks-inner h1 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.thanks-lead {
  font-size: 1.1rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.thanks-next {
  background: var(--paper-warm);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: left;
  margin-bottom: 3rem;
  border: 1px solid var(--border-light);
}

.thanks-next h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.thanks-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.thanks-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.thanks-step-num {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.thanks-step strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.thanks-step p {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.65;
  margin: 0;
}



.legal-page-wrapper {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.legal-page-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.legal-page-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-light);
}

.legal-page-header h1 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  margin-top: 0.5rem;
}

.legal-updated-notice {
  background: color-mix(in oklch, var(--accent), transparent 88%);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted-light);
  margin-bottom: 2rem;
}

.legal-intro-block {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-light);
}

.legal-intro-block p {
  color: var(--text-muted-light);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-intro-block p:last-child {
  margin-bottom: 0;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.legal-section h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.5rem 0 0.75rem;
}

.legal-section p {
  color: var(--text-muted-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s;
}

.legal-section a:hover {
  color: var(--accent-deep);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--paper-warm);
}

.legal-table th {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted-light);
  vertical-align: top;
  line-height: 1.6;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table tr:nth-child(even) td {
  background: color-mix(in oklch, var(--paper-warm), var(--paper) 50%);
}

.terms-definitions {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding:2rem 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-light);
}

.terms-definitions dt {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  margin-top: 1.25rem;
}

.terms-definitions dt:first-child {
  margin-top: 0;
}

.terms-definitions dd {
  color: var(--text-muted-light);
  line-height: 1.7;
  font-size: 0.9rem;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
  margin-left: 0;
  margin-top: 0.3rem;
}

.legal-footer-nav {
  display: flex;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.legal-footer-nav a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-footer-nav a:hover {
  color: var(--accent-deep);
}



.page-hero {
  padding: 9rem var(--container-pad) 5rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, color-mix(in oklch, var(--accent), transparent 80%), transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-hero-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.page-hero-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text-on-dark);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 700px;
}

.page-hero-sub {
  margin-top: 1.5rem;
  color: var(--text-muted-dark);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  max-width: 560px;
}



.site-footer {
  background: var(--ink-soft);
  color: var(--text-on-dark);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo span {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-brand address {
  font-size: 0.825rem;
  color: var(--text-muted-dark);
  line-height: 2;
}

.footer-brand address i {
  color: var(--accent);
  width: 16px;
  margin-right: 0.4rem;
}

.footer-brand address a {
  color: var(--text-muted-dark);
  transition: color 0.2s ease;
}

.footer-brand address a:hover {
  color: var(--accent);
}

.footer-nav-group h4 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-group ul a {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  transition: color 0.2s ease;
}

.footer-nav-group ul a:hover {
  color: var(--accent);
}

.footer-notice {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
  background: color-mix(in oklch, var(--ink), transparent 30%);
  border-radius: var(--radius-md);
  padding: 1rem;
  border-left: 3px solid var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}



.cookie-consent-modal {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  width: 100%;
  max-width: 360px;
  background: var(--paper);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px color-mix(in oklch, #0f1117, transparent 70%), 0 2px 8px color-mix(in oklch, #0f1117, transparent 82%);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  pointer-events: none;
}

.cookie-consent-modal.cookie-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-body {
  padding: 1.5rem 1.5rem 1rem;
}

.cookie-modal-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.cookie-modal-title i {
  color: var(--accent);
  font-size: 1rem;
}

.cookie-modal-text {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}

.cookie-modal-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-modal-actions {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.25rem;
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.cookie-btn-accept:hover {
  background: var(--accent-deep);
  color: var(--paper);
  transform: translateY(-1px);
}

.cookie-btn-necessary {
  background: transparent;
  color: var(--text-muted-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  width: 100%;
}

.cookie-btn-necessary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.cookie-btn-customize {
  background: none;
  border: none;
  color: var(--accent);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.775rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  padding: 0.25rem;
  transition: color 0.2s ease;
  text-decoration: underline;
}

.cookie-btn-customize:hover {
  color: var(--accent-deep);
}

.cookie-customize-panel {
  display: none;
  padding: 0 1.5rem 1rem;
  border-top: 1px solid var(--border-light);
  margin-top: 0.5rem;
}

.cookie-customize-panel.panel-open {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-info strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.cookie-category-info span {
  font-size: 0.75rem;
  color: var(--text-muted-light);
  line-height: 1.4;
}

.cookie-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-light);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px color-mix(in oklch, #0f1117, transparent 80%);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(16px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-btn-save {
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
  margin-top: 0.75rem;
}

.cookie-btn-save:hover {
  background: var(--ink-soft);
}



@media (max-width: 1100px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .facts-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-course-card {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 900px) {
  .nav-tabs {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .intro-grid,
  .approach-grid,
  .story-grid,
  .calculator-grid,
  .contact-main-grid,
  .events-about-grid,
  .mission-text-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-img,
  .approach-image-wrap img,
  .story-image img {
    height: 340px;
  }

  .intro-image-badge {
    bottom: 1rem;
  }

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

  .events-preview-grid {
    grid-template-columns: 1fr;
  }

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

  .full-course-img img {
    min-height: 240px;
    height: 240px;
  }

  .course-details-grid {
    grid-template-columns: 1fr;
  }

  .facts-strip {
    grid-template-columns: 1fr 1fr;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: clamp(3rem, 6vw, 5rem);
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .courses-preview-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .facts-strip {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

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

  .form-row-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-submit-btn {
    width: 100%;
    text-align: center;
  }

  .calc-result-grid {
    grid-template-columns: 1fr;
  }

  .mission-quote {
    padding: 2rem 1.5rem;
  }

  .cookie-consent-modal {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: calc(100% - 2rem);
  }

  .mobile-menu-links {
    width: 65%;
    padding: 3rem 1.5rem;
  }

  .mobile-menu-visual {
    width: 35%;
  }

  .mobile-menu-links nav a {
    font-size: 1.4rem;
  }

  .event-list-item {
    flex-direction: column;
    gap: 1rem;
  }

  .disclaimer-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .thanks-section {
    padding: 8rem 1.5rem 4rem;
  }

  .legal-page-wrapper {
    padding-top: 5rem;
  }
}

@media (max-width: 400px) {
  .mobile-menu-visual {
    display: none;
  }

  .mobile-menu-links {
    width: 100%;
  }
}