/* ═══════════════════════════════════════════════════
   MOVINGEDGE ACADEMY — Premium White & Ash Theme
   Zero gold. Pure editorial minimalism.
═══════════════════════════════════════════════════ */

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

/* ── TOKENS ── */
:root {
  --white: #ffffff;
  --ash: #e8e6e1;
  --ash-mid: #d4d1cb;
  --ash-light: #f5f4f1;
  --ash-warm: #f0ece3;
  --black: #0a0a0a;
  --near-black: #111111;
  --charcoal: #2a2a2a;
  --mid-grey: #888888;
  --light-text: #666666;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--near-black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  cursor: none;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: none;
}

/* ── CUSTOM SCISSOR CURSOR ── */
.cursor-scissors {
  position: fixed;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-30%, -40%);
  /* Anchor closer to pivot */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  mix-blend-mode: difference; /* Invert cursor color dynamically based on background contrast */
}

.blade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* Base color set to white for difference-blend mode (makes it black on light backgrounds, white on dark backgrounds) */
  transition: transform 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transform-origin: 25px 30px;
  /* Precise pivot point */
}

.blade-left {
  transform: rotate(-25deg);
}

.blade-right {
  transform: rotate(25deg);
}

.scissor-pivot {
  position: absolute;
  top: 30px;
  left: 25px;
  width: 4px;
  height: 4px;
  background: #ffffff; /* Pivot matches base white color */
  border-radius: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

/* Snip effect on click */
.cursor-scissors.snipping .blade-left {
  transform: rotate(0deg);
}

.cursor-scissors.snipping .blade-right {
  transform: rotate(0deg);
}


/* Hover state on interactives */
.cursor-scissors.hover .blade {
  color: #dddddd; /* Slightly dimmed white to create active/hover blend effect */
}

.cursor-scissors.hover {
  transform: translate(-50%, -50%) scale(1.2);
}


/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--near-black);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── FIXED HEADER WRAPPER ── */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
  transition: transform 0.3s var(--ease);
}

.team-card {
  position: relative;
  transition: transform 0.4s var(--ease);
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--near-black);
  color: var(--ash);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 3rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.topbar a {
  color: var(--white);
  font-weight: 500;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--ash);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  transition: all 0.3s var(--ease);
}

.navbar.scrolled {
  padding: 0.8rem 3rem;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}



.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  user-select: none;
}

.logo-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--near-black);
}

.logo-sub {
  font-size: 0.52rem;
  letter-spacing: 0.35em;
  color: var(--mid-grey);
  text-align: center;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--near-black);
  transition: width 0.3s var(--ease);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}

/* ── BUTTONS ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--near-black);
  color: var(--near-black);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn-outline:hover {
  background: var(--near-black);
  color: var(--white);
}

.btn-outline .arrow {
  transition: transform 0.3s var(--ease);
}

.btn-outline:hover .arrow {
  transform: translateX(4px);
}

/* ── REVEAL ANIMATIONS ── */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-card,
.reveal-item {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-card {
  transform: translateY(30px);
}

.reveal-item {
  transform: translateX(-20px);
}

.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.reveal-card:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-card:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal-card:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal-card:nth-child(5) {
  transition-delay: 0.4s;
}

.reveal-item:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-item:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal-item:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal-item:nth-child(5) {
  transition-delay: 0.32s;
}

/* ── SECTION TYPOGRAPHY ── */
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--near-black);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--charcoal);
}

.section-desc {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.8;
  max-width: 480px;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  background: var(--ash);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 8rem;
  /* Space for dual-row fixed header */
  overflow: hidden;
}


.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--near-black);
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: block;
}

.hero-title .italic {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 0.88rem;
  color: var(--light-text);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ash-mid);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.meta-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--near-black);
}

.meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 4px;
}

.hero-meta-divider {
  width: 1px;
  height: 40px;
  background: var(--ash-mid);
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-wrap {
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.hero-tag {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.hero-tag span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--near-black);
  padding: 1rem 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.marquee-track span:not(:nth-child(odd)) {
  color: rgba(255, 255, 255, 0.15);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════
   COURSES OFFERED — Horizontal Scroll
═══════════════════════════════════════ */
.offered-section {
  background: var(--white);
  padding: 7rem 0 0;
}

.offered-header {
  padding: 0 5rem 4rem;
}

.offered-scroll-wrap {
  position: relative;
}

.offered-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.offered-track:active {
  cursor: grabbing;
}

.offered-track::-webkit-scrollbar {
  display: none;
}

.offered-card {
  flex: 0 0 33.333%;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--ash);
}

.card-num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--serif);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  z-index: 2;
}

.team-card-info {
  text-align: center;
  padding: 1rem 0;
}

.team-card-info h3,
.team-card-info p,
.team-card-info .team-exp-tag {
  margin-left: auto;
  margin-right: auto;
}

.card-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: grayscale(20%);
}

.offered-card:hover .card-img-wrap img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.card-overlay {
  position: absolute;
  inset: 0;
}

.card-info {
  padding: 1.5rem 1.5rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--ash);
}

.card-info h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.card-info p {
  font-size: 0.8rem;
  color: var(--light-text);
  line-height: 1.6;
}

.scroll-hint {
  text-align: right;
  padding: 1rem 5rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ═══════════════════════════════════════
   OUR PROGRAMS — Numbered Accordion
═══════════════════════════════════════ */
.programs-section {
  background: var(--ash-warm);
  padding: 7rem 0;
  border-top: 1px solid var(--ash);
}

.programs-header {
  padding: 0 5rem 5rem;
  max-width: 700px;
}

.programs-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  gap: 4rem;
}

/* Sticky model */
.programs-model {
  position: sticky;
  top: 100px;
  display: flex;
  align-items: flex-end;
  height: 70vh;
  overflow: hidden;
}

.model-img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  transform: translateY(20px);
  animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {

  0%,
  100% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(0px);
  }
}

/* Accordion */
.programs-list {
  display: flex;
  flex-direction: column;
}

.program-item {
  border-top: 1px solid var(--ash-mid);
}

.program-item:last-child {
  border-bottom: 1px solid var(--ash-mid);
}

.program-trigger {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
  cursor: none;
  transition: background 0.2s;
  user-select: none;
}

.program-trigger:hover {
  background: rgba(255, 255, 255, 0.5);
}

.program-trigger[aria-expanded="true"] {
  background: var(--white);
}

.prog-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--mid-grey);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 28px;
}

.prog-title-wrap {
  flex: 1;
}

.prog-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}

.prog-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 0.3rem;
}

.prog-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--charcoal);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ash-mid);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.program-trigger[aria-expanded="true"] .prog-toggle {
  background: var(--near-black);
  color: var(--white);
  border-color: var(--near-black);
  transform: rotate(45deg);
}

.program-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.45s ease,
              padding-bottom 0.4s ease;
  padding: 0 1rem 0 4.5rem;
}

.program-body.open {
  /* max-height set by JS via scrollHeight — no arbitrary cap */
  opacity: 1;
  padding-bottom: 2.5rem;
}

.program-body>p {
  font-size: 0.88rem;
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.prog-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--ash-mid);
}

.prog-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--ash-mid);
  border-bottom: 1px solid var(--ash-mid);
}

.prog-meta-item:nth-child(even) {
  border-right: none;
}

.prog-meta-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.meta-k {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

.meta-v {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--near-black);
}

.prog-enroll {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--near-black);
  padding-bottom: 2px;
  color: var(--near-black);
  transition: gap 0.3s var(--ease);
}

.prog-enroll:hover {
  gap: 1rem;
}

/* ═══════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════ */
.why-section {
  background: var(--white);
  padding: 8rem 5rem;
  border-top: 1px solid var(--ash);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.why-list {
  margin: 2.5rem 0 3rem;
  display: flex;
  flex-direction: column;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ash);
  font-size: 0.88rem;
  color: var(--charcoal);
}

.why-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--ash-mid);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ash-mid);
  border: 1px solid var(--ash-mid);
}

.stat-card {
  background: var(--white);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  transition: background 0.3s;
}

.stat-card:hover {
  background: var(--ash-light);
}

.stat-n {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--near-black);
  display: inline;
}

.stat-plus {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--mid-grey);
}

.stat-l {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 3rem 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-name {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, 0.3);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-line {
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.5rem;
}

.newsletter-form input {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.82rem;
  width: 100%;
  padding: 0.5rem 0;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--ash);
  font-size: 1.1rem;
  padding: 0 0.5rem;
  transition: transform 0.2s, color 0.2s;
}

.newsletter-form button:hover {
  transform: translateX(4px);
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.8rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-socials {
  display: flex;
  gap: 2rem;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--ash);
}

/* ── ENQUIRY FORM ── */
.enquiry-section {
  background: var(--ash-warm);
  padding: 8rem 5rem;
  border-top: 1px solid var(--ash);
}

.enquiry-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.enquiry-form-wrap {
  background: var(--white);
  padding: 3.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.enquiry-form .form-group input,
.enquiry-form .form-group select {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid var(--ash-mid);
  background: transparent;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--near-black);
  outline: none;
  transition: border-color 0.3s;
}

.enquiry-form .form-group input::placeholder,
.enquiry-form .form-group select:invalid {
  color: var(--mid-grey);
}

.enquiry-form .form-group input:focus,
.enquiry-form .form-group select:focus {
  border-color: var(--near-black);
}

.enquiry-form button {
  margin-top: 1rem;
  align-self: flex-start;
  cursor: none;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .programs-layout {
    grid-template-columns: 1fr;
  }

  .programs-model {
    display: none;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .enquiry-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 0.6rem 1.5rem;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    height: 60vw;
  }

  .hero-left {
    padding: 3rem 2rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-meta {
    gap: 1.2rem;
  }

  .offered-card {
    flex: 0 0 80%;
  }

  .offered-header,
  .programs-header,
  .why-section,
  .enquiry-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .scroll-hint {
    padding: 1rem 1.5rem;
  }

  .programs-layout {
    padding: 0 1.5rem;
  }

  .program-body.open {
    padding-left: 1rem;
  }

  .prog-meta-grid {
    grid-template-columns: 1fr;
  }

  .prog-meta-item {
    border-right: none !important;
  }

  .prog-meta-item:last-child {
    border-bottom: none !important;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-top {
    padding: 4rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body,
  button {
    cursor: auto;
  }
}

/* ── SIGNATURE TECHNIQUES ── */
.techniques-section {
  padding: 8rem 5rem;
  background: var(--white);
}

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

.tech-card {
  border: 1px solid var(--ash);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.tech-card:hover {
  background: var(--ash-warm);
  transform: translateY(-10px);
}

.tech-card svg {
  color: var(--near-black);
  margin-bottom: 1.5rem;
}

.tech-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.tech-card p {
  font-size: 0.8rem;
  color: var(--light-text);
  line-height: 1.6;
}

/* ── STUDENT GALLERY ── */
.gallery-section {
  background: var(--ash-warm);
  padding: 8rem 0;
}

.team-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 5rem;
  margin-top: 4rem;
}

.team-card-img {
  position: relative;
  margin: 0 auto 1rem;
  width: 200px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ash);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--ash-mid);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  display: none;
}

@media (max-width: 1024px) {
  .techniques-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {

  .techniques-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }

  .techniques-section,
  .gallery-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ═══════════════════════════════════════
   PREMIUM ENHANCEMENTS
═══════════════════════════════════════ */

/* \u2500\u2500 Bigger mobile touch targets for accordion \u2500\u2500 */
@media (max-width: 768px) {
  .program-trigger {
    padding: 1.4rem 0;
    min-height: 64px; /* ensures fat-finger tappability */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .prog-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .program-body {
    padding-left: 1rem;
  }

  .program-body.open {
    padding-left: 1rem;
  }

  /* Fix offered cards being unclickable on mobile */
  .offered-card {
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    flex: 0 0 88%;
  }

  /* Nav links in mobile menu \u2014 larger tap zones */
  .nav-links.open .nav-link {
    padding: 0.8rem 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

/* \u2500\u2500 Premium link hover underline animation \u2500\u2500 */
.footer-col ul a,
.footer-col a {
  position: relative;
  display: inline-block;
}
.footer-col ul a::after,
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}
.footer-col ul a:hover::after,
.footer-col a:hover::after {
  width: 100%;
}

/* \u2500\u2500 Program trigger line \u2500\u2500 */
.program-trigger {
  position: relative;
}
.program-trigger::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--near-black);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.program-trigger:hover::after,
.program-trigger[aria-expanded="true"]::after {
  width: 100%;
}

/* \u2500\u2500 Subtle image shimmer on gallery hover \u2500\u2500 */


/* \u2500\u2500 Premium card number typography \u2500\u2500 */
.prog-num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

/* \u2500\u2500 Scroll progress bar refinement \u2500\u2500 */
.scroll-progress {
  background: linear-gradient(90deg, var(--near-black) 0%, #555 100%);
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

/* \u2500\u2500 Section eyebrow refinement \u2500\u2500 */
.section-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}

/* \u2500\u2500 Program item border hover \u2500\u2500 */
.program-item {
  position: relative;
  transition: background 0.3s ease;
}
.program-item:hover {
  background: rgba(0,0,0,0.015);
}

/* ── Mobile/Touch Optimizations ── */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  body, button, a, .program-trigger, .offered-card {
    cursor: auto !important;
  }
  .cursor-scissors {
    display: none !important;
  }
}

/* ── Footer WhatsApp Button ── */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.75rem 1.4rem;
  background: #25D366;
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-wa-btn:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}