:root {
  --brand: #f29b57;
  --brand-deep: #e07c33;
  --brand-soft: #fdf1e6;
  --ink: #111111;
  --ink-soft: #4a4643;
  --bg: #ffffff;
  --card: #ffffff;
  --muted: #f5f5f5;
  --muted-fg: #6f6a66;
  --border: #e9e6e2;
  --radius: 1.25rem;
  --gradient-brand: linear-gradient(135deg, #f6b177 0%, #e07c33 55%, #111111 140%);
  --gradient-night: linear-gradient(140deg, #111111 0%, #22201e 60%, #6b4423 130%);
  --shadow-soft: 0 18px 40px -22px rgba(17, 17, 17, 0.45);
  --shadow-glow: 0 24px 60px -24px rgba(242, 155, 87, 0.75);
  --font-display: "Baloo 2", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-sans: "Nunito", system-ui, -apple-system, Segoe UI, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p { margin: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 4.5rem 0; }
.section--muted { background: rgba(245, 245, 245, 0.7); }
.section--narrow .container { max-width: 48rem; }

.muted { color: var(--muted-fg); }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gradient-brand { background-image: var(--gradient-brand); }
.gradient-night { background-image: var(--gradient-night); }
.text-gradient-brand {
  background-image: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.shadow-soft { box-shadow: var(--shadow-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: scale(1.05); }
.btn--primary { background-image: var(--gradient-brand); color: #111; box-shadow: var(--shadow-glow); }
.btn--outline { background: transparent; border: 2px solid var(--ink); color: var(--ink); }
.btn--dark { background: var(--ink); color: #fff; padding: 0.6rem 1.25rem; font-size: 0.9rem; }
.btn--glass { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: #fff; backdrop-filter: blur(14px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 0.85rem 0;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-logo img { height: 42px; width: auto; }
.site-logo .site-title { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }

.main-nav { display: none; align-items: center; gap: 0.15rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a {
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(17,17,17,0.8);
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover, .main-nav .current-page a { background: var(--brand-soft); color: var(--ink); }

.mega { position: relative; }
.mega__btn {
  display: flex; align-items: center; gap: 0.35rem;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700;
  color: rgba(17,17,17,0.8);
  border-radius: 999px; padding: 0.5rem 0.85rem;
}
.mega__btn:hover { background: var(--brand-soft); color: var(--ink); }
.mega__panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  width: 36rem; padding-top: 0.75rem;
  opacity: 0; visibility: hidden; transition: all 0.22s ease;
}
.mega:hover .mega__panel, .mega.is-open .mega__panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 1.75rem; padding: 0.75rem;
  box-shadow: var(--shadow-soft);
}
.mega__grid a { display: block; border-radius: 1rem; padding: 0.75rem; }
.mega__grid a:hover { background: var(--brand-soft); }
.mega__grid strong { font-family: var(--font-display); font-size: 1rem; display: block; }
.mega__grid span { display: block; font-size: 0.78rem; color: var(--muted-fg); margin-top: 0.25rem; }
.mega__grid em { display: block; font-style: normal; font-size: 0.72rem; font-weight: 800; color: var(--brand-deep); margin-top: 0.4rem; }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--border); background: #fff; cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span { position: relative; width: 18px; height: 2px; background: var(--ink); display: block; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
  transition: transform 0.25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.mobile-nav {
  display: none;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  box-shadow: var(--shadow-soft);
}
.mobile-nav.is-open { display: block; animation: fade-up 0.3s ease both; }
.mobile-nav a { display: block; padding: 0.7rem 0.9rem; border-radius: 1rem; font-weight: 700; }
.mobile-nav a:hover { background: var(--brand-soft); }
.mobile-nav .sub a { font-size: 0.85rem; color: var(--muted-fg); padding-left: 1.6rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 8rem 0 4rem; }
@media (min-width: 640px) { .hero { padding-top: 10rem; } }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__blob {
  position: absolute; border-radius: 999px; filter: blur(60px);
}
.hero__blob--1 { left: -6rem; top: 2.5rem; width: 18rem; height: 18rem; background-image: var(--gradient-brand); opacity: 0.2; }
.hero__blob--2 { right: -5rem; top: 10rem; width: 20rem; height: 20rem; background: rgba(17,17,17,0.08); }
.snippet {
  position: absolute; bottom: -40px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem; font-weight: 700; color: rgba(224, 124, 51, 0.5);
  animation: drift 12s linear infinite;
}
.hero__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1fr 1fr; } }
.hero__lead { margin-top: 1.5rem; max-width: 36rem; font-size: 1.05rem; color: var(--muted-fg); }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__media { position: relative; }
.hero__media img { border-radius: 2rem; box-shadow: var(--shadow-soft); width: 100%; object-fit: cover; }
.hero__glow { position: absolute; inset: -1rem; border-radius: 3rem; background-image: var(--gradient-brand); opacity: 0.3; filter: blur(60px); }
.hero__badge {
  position: absolute; bottom: -1.5rem; left: 1rem;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 1rem;
  padding: 0.75rem 1.25rem; box-shadow: var(--shadow-soft);
  animation: float-slow 5s ease-in-out infinite;
}
.hero__badge strong { font-family: var(--font-display); font-size: 1.5rem; }
.hero__badge span { display: block; font-size: 0.72rem; font-weight: 800; color: var(--muted-fg); }

/* ---------- Page hero ---------- */
.page-hero {
  background-image: var(--gradient-night);
  color: #fff;
  padding: 9rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; margin-top: 1rem; }
.page-hero p { margin: 1.25rem auto 0; max-width: 42rem; color: rgba(255,255,255,0.75); }
.page-hero .eyebrow { background: rgba(255,255,255,0.12); color: #fff; }
.page-hero__meta { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.page-hero__meta span {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 700; color: #fff;
}

/* ---------- Section heading ---------- */
.section-heading { max-width: 44rem; margin: 0 auto; text-align: center; }
.section-heading.left { margin: 0; text-align: left; }
.section-heading h2 { margin-top: 1rem; }
.section-heading p { margin-top: 1rem; color: var(--muted-fg); }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 640px) { .grid--2, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); }
.card h3 { margin-top: 0.5rem; }
.card p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted-fg); }
.card .btn { margin-top: 1.25rem; align-self: flex-start; }
.card__kicker { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-deep); }
.card__grow { flex: 1; }

.icon-badge {
  width: 3rem; height: 3rem; border-radius: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.4rem;
  background-image: var(--gradient-brand); color: #111;
  transition: transform 0.3s ease;
}
.card:hover .icon-badge { transform: rotate(6deg); }
.icon-badge--night { background-image: var(--gradient-night); color: var(--brand); }

.stat-card { text-align: center; }
.stat-card .stat-value { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; }
.stat-card .stat-label { margin-top: 0.4rem; font-size: 0.85rem; font-weight: 800; color: var(--muted-fg); }

.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.split__media { position: relative; }
.split__media img { border-radius: 2rem; box-shadow: var(--shadow-soft); width: 100%; object-fit: cover; }
.split__media::before {
  content: ""; position: absolute; inset: -0.75rem; border-radius: 2.5rem;
  background-image: var(--gradient-brand); opacity: 0.25; filter: blur(40px);
}

.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 800; }
.check-list li::before { content: ""; width: 0.6rem; height: 0.6rem; border-radius: 999px; background-image: var(--gradient-brand); }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border); background: #fff;
  border-radius: 999px; padding: 0.6rem 1.1rem; font-size: 0.9rem; font-weight: 800;
  box-shadow: var(--shadow-soft);
}

/* ---------- Testimonials ---------- */
.testimonial { display: flex; flex-direction: column; }
.testimonial blockquote { margin: 1rem 0 0; flex: 1; font-size: 0.92rem; color: var(--muted-fg); }
.testimonial .stars { color: var(--brand); margin-top: 1rem; letter-spacing: 0.15em; }
.testimonial figcaption { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.testimonial figcaption img { width: 3rem; height: 3rem; border-radius: 999px; object-fit: cover; }
.testimonial figcaption strong { font-family: var(--font-display); display: block; }
.testimonial figcaption span { font-size: 0.75rem; color: var(--muted-fg); }
.quote-mark { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; color: var(--brand); }

/* ---------- Gallery ---------- */
.masonry { columns: 1; column-gap: 1.25rem; }
@media (min-width: 640px) { .masonry { columns: 2; } }
@media (min-width: 1024px) { .masonry { columns: 3; } }
.masonry figure {
  break-inside: avoid; margin: 0 0 1.25rem; position: relative;
  overflow: hidden; border-radius: 1.75rem; box-shadow: var(--shadow-soft);
}
.masonry img { width: 100%; transition: transform 0.5s ease; }
.masonry figure:hover img { transform: scale(1.05); }
.masonry figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background-image: var(--gradient-night); color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 0.75rem 1rem;
  transform: translateY(100%); opacity: 0; transition: all 0.3s ease;
}
.masonry figure:hover figcaption { transform: translateY(0); opacity: 1; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--border); border-radius: 1.75rem; background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; margin-bottom: 1rem; }
.faq-item button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.25rem 1.5rem; font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--ink);
}
.faq-item .chev { transition: transform 0.25s ease; color: var(--brand-deep); font-size: 0.9rem; }
.faq-item.is-open .chev { transform: rotate(180deg); }
.faq-item .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.is-open .faq-answer { max-height: 500px; }
.faq-item .faq-answer p { padding: 0 1.5rem 1.5rem; font-size: 0.92rem; color: var(--muted-fg); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden;
  background-image: var(--gradient-night); color: #fff;
  border-radius: 2.5rem; padding: 4rem 1.5rem; text-align: center;
}
@media (min-width: 640px) { .cta-banner { padding: 4rem 3rem; } }
.cta-banner h2 { color: #fff; max-width: 40rem; margin: 0 auto; }
.cta-banner p { margin: 1rem auto 0; max-width: 34rem; color: rgba(255,255,255,0.75); }
.cta-banner .actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta-banner::after {
  content: ""; position: absolute; right: -1.5rem; top: 1.5rem;
  width: 7rem; height: 7rem; border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.15); animation: float-slow 7s ease-in-out infinite;
}

/* ---------- Course page ---------- */
.course-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .course-grid { grid-template-columns: 1.2fr 1fr; } }
.course-body { font-size: 1.05rem; color: var(--muted-fg); }
.outcome-grid { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
@media (min-width: 640px) { .outcome-grid { grid-template-columns: 1fr 1fr; } }
.outcome {
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--border); border-radius: 1rem; background: #fff;
  padding: 0.75rem 1rem; font-weight: 800; box-shadow: var(--shadow-soft);
}
.outcome::before { content: "\2713"; color: var(--brand-deep); font-weight: 900; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 1.75rem; padding: 1.75rem; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 800; }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 0.95rem;
  border: 1px solid var(--border); border-radius: 1rem; padding: 0.75rem 1rem;
  background: #fff; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.field .error { color: #c0392b; font-size: 0.78rem; font-weight: 700; }
.notice { border-radius: 1rem; padding: 0.9rem 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.notice--ok { background: #e9f7ef; color: #1e7a46; }
.notice--err { background: #fdecea; color: #c0392b; }

.contact-list { display: grid; gap: 1rem; }
.contact-list a, .contact-list div.contact-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
  border: 1px solid var(--border); border-radius: 1.5rem; background: #fff;
  padding: 1.1rem 1.25rem; box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.contact-list a:hover { transform: translateY(-4px); }
.contact-list strong { display: block; font-family: var(--font-display); }
.contact-list span { font-size: 0.88rem; color: var(--muted-fg); }

/* ---------- Footer ---------- */
.site-footer { background-image: var(--gradient-night); color: rgba(255,255,255,0.72); margin-top: 2rem; }
.site-footer .container { padding-top: 4rem; padding-bottom: 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.site-footer a:hover { color: var(--brand); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; font-size: 0.9rem; }
.site-footer img.footer-logo { height: 44px; width: auto; background: #fff; border-radius: 0.75rem; padding: 0.35rem 0.6rem; }
.newsletter { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.newsletter input { flex: 1; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; padding: 0.7rem 1rem; }
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter button { border-radius: 999px; border: 0; cursor: pointer; padding: 0.7rem 1.2rem; font-weight: 800; background-image: var(--gradient-brand); color: #111; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.82rem; display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: space-between; }

/* ---------- Floating actions ---------- */
.floating { position: fixed; right: 1rem; bottom: 1rem; z-index: 50; display: grid; gap: 0.65rem; }
.floating a, .floating button {
  width: 3.25rem; height: 3.25rem; border-radius: 999px; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft); transition: transform 0.25s ease;
  font-size: 1.2rem;
}
.floating a:hover, .floating button:hover { transform: scale(1.1); }
.floating .wa { background: #25d366; color: #fff; }
.floating .top { background: var(--ink); color: #fff; opacity: 0; pointer-events: none; }
.floating .top.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Entry content (blog/pages) ---------- */
.entry { padding: 8rem 0 4rem; }
.entry .container { max-width: 48rem; }
.entry h1 { margin-bottom: 1.5rem; }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1.15rem; }
.entry-content a { color: var(--brand-deep); text-decoration: underline; }
.entry-content img { border-radius: 1.5rem; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes float-slow { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(6deg); } }
@keyframes drift {
  0% { transform: translateY(0); opacity: 0; }
  10%, 90% { opacity: 0.55; }
  100% { transform: translateY(-140px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Contact page layout ---------- */
.contact-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.4fr 1fr; } }
.contact-aside-title { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 1rem; }
.form-card form { display: block; }
.form-card .form-submit { margin-top: 1.5rem; width: 100%; justify-content: center; text-align: center; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin: 0; }
.contact-list a, .contact-list div.contact-item { text-decoration: none; color: inherit; }
.contact-list strong { font-size: 0.95rem; margin-bottom: 0.15rem; }

/* ---------- FAQ ---------- */
.faq { display: block; }
.faq-item .faq-answer { max-height: 0; }
.faq-item.is-open .faq-answer { max-height: 40rem; }
.faq-item button span:first-child { flex: 1; }

/* --- Enroll page hardening (v1.2.0) --- */
.contact-grid > aside ul, .contact-list { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.contact-grid > aside li { list-style: none !important; margin: 0 !important; }
.contact-list a, .contact-list .contact-item {
	display: block; background: #fff; border: 1px solid var(--border); border-radius: 1.25rem;
	padding: 1rem 1.15rem; box-shadow: var(--shadow-soft); text-decoration: none; color: inherit;
	transition: transform .25s ease, box-shadow .25s ease;
}
.contact-list a:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.contact-list strong { display: block; font-family: var(--font-display); font-size: .95rem; margin-bottom: .15rem; }
.contact-list span span, .contact-list .contact-item span span { font-size: .88rem; color: var(--muted-fg); }
.form-card { overflow: hidden; }
.field input, .field select, .field textarea { max-width: 100%; box-sizing: border-box; }
