/* ===========================
   ANGELS BEAUTY TRAINING CENTRE
   Brand: Tangerine #FF6A2C | Mango #FFA13D | Coral Rose #F2849E
   Plum Ink #2E0F2B | Blush #FFE6DE | Cloud Ivory #FAF3E8
=========================== */

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

:root {
  --tangerine: #FF6A2C;
  --mango: #FFA13D;
  --coral: #F2849E;
  --plum: #2E0F2B;
  --blush: #FFE6DE;
  --ivory: #FAF3E8;
  --white: #FFFFFF;
  --text-body: #3a1a36;
  --text-muted: #8a6a84;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Gill Sans MT', sans-serif;
  background: var(--ivory);
  color: var(--plum);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ===========================
   LOGO IMAGE REPLACEMENTS
=========================== */
.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.hero-people {
  width: calc(100% + 2rem);
  padding-top: 2.5rem;
  margin-right: -5rem;
  padding-left: 1rem;
}
.hero-people-img {
  width: 90%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  object-fit: contain;
  filter: drop-shadow(-10px 20px 40px rgba(255,106,44,0.25));
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  /* logo is dark on transparent — invert on dark bg */
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(340deg);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--tangerine);
  color: white;
}
.btn-primary:hover { background: #e85a1e; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn-ghost:hover { background: var(--plum); color: white; }

.btn-nav {
  background: var(--tangerine);
  color: white;
  padding: 10px 22px;
  font-size: 13px;
}
.btn-nav:hover { background: #e85a1e; }

.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--tangerine);
  color: white;
  padding: 15px;
  font-size: 15px;
}
.btn-submit:hover { background: #e85a1e; transform: translateY(-1px); }

/* ===========================
   TYPOGRAPHY HELPERS
=========================== */
.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tangerine);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: rgba(255,255,255,0.7); }

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--plum);
  margin-bottom: 1.2rem;
}
.section-heading.white { color: white; }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.section-header.centered { text-align: center; margin-bottom: 3rem; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ===========================
   PILLS
=========================== */
.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pill-dark { background: var(--plum); color: white; }
.pill-orange { background: var(--tangerine); color: white; }

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 243, 232, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 15, 43, 0.08);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 243, 232, 0.98);
  box-shadow: 0 4px 24px rgba(46,15,43,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {  width: 44px; height: 44px; }
.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-angels {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--plum);
}
.nav-sub {
  font-family: 'Lato', sans-serif;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--tangerine);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--plum); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  padding-top: 70px; /* matches nav height */
  background: var(--ivory);
  position: relative;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--mango);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--coral);
  bottom: -80px; right: 200px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  background: var(--tangerine);
  top: 200px; left: -80px;
  animation: blobFloat 12s ease-in-out infinite 2s;
  opacity: 0.2;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-20px) scale(1.05); }
  66% { transform: translate(-15px,15px) scale(0.97); }
}

.sparkle {
  position: absolute;
  color: var(--tangerine);
  font-size: 20px;
  opacity: 0.4;
  animation: sparklePulse 3s ease-in-out infinite;
}
.s1 { top: 20%; left: 8%; animation-delay: 0s; }
.s2 { top: 60%; left: 12%; animation-delay: 1s; }
.s3 { top: 15%; right: 35%; animation-delay: 2s; }
.s4 { top: 70%; right: 10%; animation-delay: 0.5s; }
@keyframes sparklePulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem clamp(1rem, 4vw, 2rem) 4rem;
  display: grid;
  grid-template-columns: 1fr 55%;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tangerine);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--plum);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--tangerine);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: linear-gradient(135deg, var(--tangerine) 0%, var(--mango) 100%);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  text-align: center;
  width: 300px;
  position: relative;
  box-shadow: 0 30px 80px rgba(255, 106, 44, 0.35);
  animation: heroCardFloat 5s ease-in-out infinite;
}
@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  background: rgba(255,255,255,0.25);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-card { display: none; }

.hero-card-tag {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  /* padding-top: -10rem; */
  padding-bottom:2.5rem;
  position: relative;
  z-index: 1;
}
.hero-scroll-hint span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-arrow {
  font-size: 18px;
  color: var(--tangerine);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===========================
   STATS STRIP
=========================== */
.stats-strip {
  background: var(--plum);
  padding: 2rem 0;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--tangerine);
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 6rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-values {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-icon {
  color: var(--tangerine);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 2px;
}
.value-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-card-stack {
  position: relative;
  height: 420px;
}
.about-card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.about-card-1 {
  background: linear-gradient(135deg, var(--tangerine), var(--coral));
  top: 0; left: 0; right: 30px;
  padding: 2.5rem;
}
.about-card-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: white;
  line-height: 1.4;
}
.about-card-2 {
  background: var(--plum);
  bottom: 80px; right: 0; left: 40px;
}
.big-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--tangerine);
  display: block;
}
.big-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.about-card-3 {
  background: var(--blush);
  bottom: 0; left: 20px; right: 60px;
}
.about-card-mini {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.about-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--plum);
}

/* ===========================
   COURSES
=========================== */
.courses {
  padding: 6rem 0;
  background: var(--ivory);
}
.courses-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.course-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1.5px solid rgba(46,15,43,0.15);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s;
}
.course-tab:hover { border-color: var(--tangerine); color: var(--tangerine); }
.course-tab.active {
  background: var(--tangerine);
  border-color: var(--tangerine);
  color: white;
}

.course-panel { display: none; }
.course-panel.active { display: block; }

.course-panel-inner {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  box-shadow: 0 8px 40px rgba(46,15,43,0.07);
}

.course-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hair-icon { background: linear-gradient(135deg, var(--tangerine), var(--mango)); }
.nails-icon { background: linear-gradient(135deg, var(--coral), #e870a0); }
.makeup-icon { background: linear-gradient(135deg, var(--mango), var(--tangerine)); }
.spa-icon { background: linear-gradient(135deg, #c471ba, var(--coral)); }

.course-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 1rem;
}
.course-info > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 580px;
}
.course-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.course-modules li {
  font-size: 14px;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
}
.course-modules li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--tangerine);
  font-size: 10px;
  top: 3px;
}
.course-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.course-pill {
  background: var(--blush);
  color: var(--tangerine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

/* ===========================
   WHY ANGELS
=========================== */
.why {
  padding: 6rem 0;
  background: var(--plum);
}
.why .section-eyebrow { color: rgba(255,255,255,0.6); }
.why .section-heading { color: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.7rem;
}
.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===========================
   GALLERY
=========================== */
.gallery { padding: 6rem 0; background: var(--white); }

.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1.5px solid rgba(46,15,43,0.15);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--tangerine);
  border-color: var(--tangerine);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.hidden { display: none; }

/* Fallback gradient — behind image, shows if image fails */
.gallery-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Photo — sits above the gradient fallback */
.gallery-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover overlay — above the photo, fades in on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
  gap: 8px;
  background: linear-gradient(to top, rgba(46,15,43,0.88) 0%, rgba(46,15,43,0.2) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }

.gallery-overlay .gp-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.gallery-overlay .gp-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Gradient fallback colours */
.gp-1 { background: linear-gradient(135deg, var(--tangerine), var(--mango)); }
.gp-2 { background: linear-gradient(160deg, var(--plum), #5a1e55); }
.gp-3 { background: linear-gradient(135deg, var(--coral), #f26fab); }
.gp-4 { background: linear-gradient(135deg, var(--blush), var(--mango)); }
.gp-5 { background: linear-gradient(135deg, #c471ba, var(--plum)); }
.gp-6 { background: linear-gradient(135deg, var(--mango), var(--coral)); }
.gp-7 { background: linear-gradient(135deg, #f26fab, var(--tangerine)); }
.gp-8 { background: linear-gradient(135deg, var(--plum), #8b3a85); }
.gp-9 { background: linear-gradient(135deg, #a05ca0, var(--coral)); }
.gp-10 { background: linear-gradient(135deg, var(--tangerine), #c44a10); }
.gp-11 { background: linear-gradient(135deg, var(--coral), #c471ba); }
.gp-12 { background: linear-gradient(160deg, var(--mango), var(--plum)); }

.gallery-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ===========================
   ENROLL
=========================== */
.enroll {
  padding: 7rem 0;
  background: var(--plum);
  position: relative;
  overflow: hidden;
}
.enroll-bg { position: absolute; inset: 0; pointer-events: none; }
.blob-e1 {
  position: absolute;
  width: 500px; height: 500px;
  background: var(--tangerine);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  top: -100px; right: -100px;
}
.blob-e2 {
  position: absolute;
  width: 400px; height: 400px;
  background: var(--coral);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  bottom: -80px; left: -60px;
}
.enroll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.enroll-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.enroll-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.enroll-step {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tangerine);
  min-width: 36px;
}

.enroll-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.enroll-form h3 {
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 1.8rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(46,15,43,0.15);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--plum);
  background: var(--ivory);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--tangerine);
  background: white;
}

.form-consent {
  margin-bottom: 1.5rem;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--tangerine);
  cursor: pointer;
  flex-shrink: 0;
}
.consent-label span {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-group textarea { resize: vertical; }
.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  font-size: 3rem;
  color: var(--tangerine);
  margin-bottom: 1rem;
  animation: successPop 0.5s ease;
}
@keyframes successPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.form-success h3 {
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 0.8rem;
}
.form-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 6rem 0;
  background: var(--ivory);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(46,15,43,0.07);
  transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(46,15,43,0.08); }
.contact-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tangerine);
  margin-bottom: 0.6rem;
}
.contact-card p {
  font-size: 15px;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-card p a { color: var(--tangerine); }
.contact-card p a:hover { text-decoration: underline; }
.contact-sub {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  font-weight: 400 !important;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--plum);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2.5rem;
}
.footer-logo-mark { width: 52px; height: 56px; }
.footer-name {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  color: white;
}
.footer-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.footer-sub-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--tangerine); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-credit {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255, 106, 44, 0.5) !important;
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */

/* ── Tablet (≤960px) ── */
@media (max-width: 960px) {
  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 2rem;
  }
  .hero-text { order: 1; }
  .hero-people { order: 0; width: 100%; margin-right: 0; padding-top: 1rem; }
  .hero-people-img { width: 80%; margin: 0 auto; border-radius: var(--radius-lg); }
  .hero-sub { margin: 0 auto 1.8rem; }
  .hero-pills, .hero-ctas { justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-card-stack { height: 280px; }

  /* Courses */
  .course-panel-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Enroll */
  .enroll-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Contact */
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (≤700px) ── */
@media (max-width: 700px) {
  /* Nav */
  .nav-logo-img { height: 48px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--ivory);
    padding: 1.5rem clamp(1rem, 4vw, 2rem);
    gap: 1.2rem;
    border-bottom: 1px solid rgba(46,15,43,0.1);
    box-shadow: 0 8px 24px rgba(46,15,43,0.08);
    z-index: 99;
  }

  /* Hero */
  .hero { min-height: auto; padding-top: 70px; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-sub { font-size: 16px; }
  .hero-people-img { width: 100%; border-radius: var(--radius-md); }
  .hero-scroll-hint { display: none; }

  /* Stats */
  .stats-strip { padding: 1.5rem 0; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 10px; }

  /* About */
  .about { padding: 4rem 0; }
  .about-grid { gap: 2rem; }
  .about-card-stack { height: 240px; }
  .about-card-quote { font-size: 1.2rem; }
  .big-num { font-size: 2.8rem; }
  .section-heading { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  /* Courses */
  .courses { padding: 4rem 0; }
  .courses-tabs { gap: 6px; }
  .course-tab { padding: 8px 14px; font-size: 12px; }
  .course-panel-inner { padding: 1.5rem; gap: 1.2rem; }
  .course-modules { grid-template-columns: 1fr; }
  .course-info h3 { font-size: 1.4rem; }

  /* Why */
  .why { padding: 4rem 0; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.5rem; }

  /* Gallery */
  .gallery { padding: 4rem 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 10px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  /* Enroll */
  .enroll { padding: 4rem 0; }
  .enroll-grid { gap: 2rem; }
  .enroll-form-wrap { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact */
  .contact { padding: 4rem 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-card { padding: 1.5rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-links { gap: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Small mobile (≤400px) ── */
@media (max-width: 400px) {
  .hero-headline { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .btn { padding: 12px 20px; font-size: 13px; }
  .course-tab { padding: 7px 10px; font-size: 11px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
}