/* ═══════════════════════════════════════════════════════
   AWARENESS SELF DEFENCE FITNESS — Site Stylesheet
   Mobile-first, no !important hacks, full media queries
═══════════════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--asdf-font-body, 'Inter', sans-serif);
  font-size: var(--asdf-font-size-base, 16px);
  color: var(--asdf-color-text, #181818);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
p   { margin: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--asdf-font-heading, 'Inter', sans-serif);
  line-height: 1.2;
  margin: 0;
}
button { cursor: pointer; }
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}
textarea { resize: vertical; }

/* ─── Layout ────────────────────────────────────────────── */
.asdf-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.asdf-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Two-column split */
.asdf-split {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.asdf-split__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Three-column card grid */
.asdf-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Two-column gain grid */
.asdf-gain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ─── Colours ───────────────────────────────────────────── */
.asdf-bg-white   { background-color: #fff; }
.asdf-bg-dark    { background-color: var(--asdf-color-dark-bg, #1c1c1c); }
.asdf-bg-light   { background-color: #f9fafb; }

/* ─── Typography ────────────────────────────────────────── */
.asdf-h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--asdf-color-text, #181818);
}

.asdf-h2 {
  font-size: clamp(1.875rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.asdf-h2--yellow { color: var(--asdf-color-primary, #fdca00); }
.asdf-h2--dark   { color: var(--asdf-color-text, #181818); }
.asdf-h2--light  { color: var(--asdf-color-light-text, #fafafa); }

.asdf-h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--asdf-color-primary, #fdca00);
}

.asdf-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--asdf-color-text, #181818);
  opacity: 0.85;
}

.asdf-body--light {
  color: var(--asdf-color-light-text, #fafafa);
  opacity: 0.9;
}

.asdf-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--asdf-color-text, #181818);
  opacity: 0.6;
}

/* ─── Buttons ───────────────────────────────────────────── */
.asdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
  border: 1px solid transparent;
  min-height: 48px; /* accessible touch target */
}
.asdf-btn:active { transform: scale(0.98); }

.asdf-btn--primary {
  background: var(--asdf-color-primary, #fdca00);
  color: var(--asdf-color-text, #181818);
  border-color: var(--asdf-color-text, #181818);
}
.asdf-btn--primary:hover { opacity: 0.88; }

.asdf-btn--outline-dark {
  background: #fff;
  color: var(--asdf-color-text, #181818);
  border-color: var(--asdf-color-text, #181818);
}
.asdf-btn--outline-dark:hover { background: #f9fafb; }

.asdf-btn--outline-light {
  background: transparent;
  color: var(--asdf-color-light-text, #fafafa);
  border-color: transparent;
}
.asdf-btn--outline-light:hover { background: rgba(255,255,255,0.1); }

.asdf-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* ─── Badge / pill ──────────────────────────────────────── */
.asdf-badge {
  display: inline-block;
  background: var(--asdf-color-primary, #fdca00);
  color: var(--asdf-color-text, #181818);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

/* ─── Images ────────────────────────────────────────────── */
.asdf-img-rounded {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.asdf-img-rounded--lg {
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.asdf-img-card {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* ─── NAVBAR ────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.asdf-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 2rem;
  width: 100%;
}

.asdf-nav-logo img,
.asdf-nav-logo .custom-logo,
.asdf-nav-logo .custom-logo-link img,
.custom-logo-link img,
img.custom-logo {
  height: 132px !important;
  max-height: 132px !important;
  width: auto !important;
  max-width: 260px;
  object-fit: contain;
  display: block;
}
.asdf-nav-logo .custom-logo-link,
.custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

.asdf-nav-links {
  display: none; /* hidden on mobile */
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}
.asdf-nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--asdf-color-text, #181818);
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.asdf-nav-links a:hover,
.asdf-nav-links .current-menu-item > a { color: var(--asdf-color-primary, #fdca00); }

.asdf-nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.asdf-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  min-height: 44px;
  min-width: 44px;
}
.asdf-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--asdf-color-text, #181818);
  border-radius: 2px;
  transition: all 0.25s;
}
.asdf-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.asdf-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.asdf-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.asdf-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  padding: 1.25rem;
}
.asdf-mobile-menu.is-open { display: block; }
.asdf-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.asdf-mobile-menu a {
  display: block;
  padding: 0.875rem 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--asdf-color-text, #181818);
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.2s;
}
.asdf-mobile-menu a:hover { color: var(--asdf-color-primary, #fdca00); }

/* ─── HERO ──────────────────────────────────────────────── */
.asdf-hero {
  padding: 3.5rem 1.25rem;
  background: #fff;
}
.asdf-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.asdf-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.asdf-hero__image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  max-height: 340px;
}

/* ─── FEATURE TEXT (dark) ───────────────────────────────── */
.asdf-features-text {
  background: var(--asdf-color-dark-bg, #1c1c1c);
  padding: 3.5rem 1.25rem;
}
.asdf-features-text__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.asdf-mini-cols {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.asdf-mini-col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* ─── FEATURE CARDS ─────────────────────────────────────── */
.asdf-feature-cards {
  background: #fff;
  padding: 3.5rem 1.25rem;
}
.asdf-feature-cards__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.asdf-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
.asdf-feature-card__img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.asdf-feature-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--asdf-color-text, #181818);
}
.asdf-feature-card__desc {
  color: var(--asdf-color-text, #181818);
  opacity: 0.8;
  line-height: 1.65;
}
.asdf-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: var(--asdf-color-text, #181818);
  transition: color 0.2s;
}
.asdf-learn-more:hover { color: var(--asdf-color-primary, #fdca00); }
.asdf-learn-more img { width: 18px; height: 18px; }

/* ─── FEATURE LIST (dark) ───────────────────────────────── */
.asdf-feature-list {
  background: var(--asdf-color-dark-bg, #1c1c1c);
  padding: 3.5rem 1.25rem;
}
.asdf-feature-list__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.asdf-feature-list__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.asdf-feature-list__header .asdf-h2 { max-width: 44rem; }
.asdf-feature-list__header .asdf-body--light { max-width: 38rem; }
.asdf-feature-list__cols {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.asdf-feature-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.asdf-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 14px;
  transition: background 0.2s;
}
.asdf-feature-row--active {
  border: 1px solid var(--asdf-color-light-text, #fafafa);
  background: rgba(255,255,255,0.06);
}
.asdf-feature-row:not(.asdf-feature-row--active):hover { background: rgba(255,255,255,0.05); }
.asdf-feature-row__icon { width: 2rem; height: 2rem; flex-shrink: 0; margin-top: 2px; }
.asdf-feature-row__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--asdf-color-primary, #fdca00);
  margin-bottom: 0.5rem;
}
.asdf-feature-list__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ─── FAQ SECTION ───────────────────────────────────────── */
.asdf-faq-section {
  background: #fff;
  padding: 3.5rem 1.25rem;
}
.asdf-faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.asdf-faq-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.asdf-faq-left .asdf-h2 { color: var(--asdf-color-primary, #fdca00); }
.asdf-faq-right {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

/* ─── Accordion ─────────────────────────────────────────── */
.asdf-acc-item {
  border: 1px solid #d1d5db;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.asdf-acc-item.is-open {
  border-color: var(--asdf-color-text, #181818);
}
.asdf-acc-item.is-open .asdf-acc-btn {
  background: var(--asdf-color-primary, #fdca00);
}
.asdf-acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
}
.asdf-acc-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--asdf-color-text, #181818);
  line-height: 1.4;
}
.asdf-acc-icon {
  font-size: 1.125rem;
  color: var(--asdf-color-text, #181818);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.asdf-acc-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
}
.asdf-acc-body p {
  color: var(--asdf-color-text, #181818);
  opacity: 0.9;
  line-height: 1.7;
}
.asdf-acc-item.is-open .asdf-acc-body { display: block; }

/* ─── CTA ───────────────────────────────────────────────── */
.asdf-cta {
  background: var(--asdf-color-dark-bg, #1c1c1c);
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.asdf-cta__inner {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.asdf-cta__form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
  max-width: 32rem;
  padding-top: 0.5rem;
}
.asdf-cta__email {
  width: 100%;
  background: transparent;
  border: 1px solid var(--asdf-color-light-text, #fafafa);
  color: var(--asdf-color-light-text, #fafafa);
  padding: 0.875rem 1.25rem;
  border-radius: 14px;
  font-size: 1rem;
  min-height: 48px;
}
.asdf-cta__email::placeholder { color: #6b7280; }
.asdf-cta__email:focus { outline: none; border-color: var(--asdf-color-primary, #fdca00); }
.asdf-cta__disclaimer {
  font-size: 0.8125rem;
  color: var(--asdf-color-light-text, #fafafa);
  opacity: 0.55;
  line-height: 1.5;
}

/* ─── FOOTER ────────────────────────────────────────────── */
#site-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 3.5rem 1.25rem 2rem;
}
.asdf-footer-inner { max-width: 1280px; margin: 0 auto; }
.asdf-footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.asdf-footer-logo img {
  height: 36px;
  width: auto;
}
.asdf-footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.asdf-footer-nav a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--asdf-color-text, #181818);
  transition: color 0.2s;
}
.asdf-footer-nav a:hover { color: var(--asdf-color-primary, #fdca00); }
.asdf-footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.asdf-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.2s;
}
.asdf-footer-social a:hover { background: #f3f4f6; }
.asdf-footer-social img { width: 20px; height: 20px; }
.asdf-footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--asdf-color-text, #181818);
  opacity: 0.7;
}
.asdf-footer-bottom a { color: inherit; transition: color 0.2s; }
.asdf-footer-bottom a:hover { color: var(--asdf-color-primary, #fdca00); opacity: 1; }
.asdf-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

/* ─── PAGE HEADER (inner pages) ─────────────────────────── */
.asdf-page-header {
  background: #fff;
  padding: 3rem 1.25rem 2rem;
  border-bottom: 1px solid #f3f4f6;
}
.asdf-page-header__inner { max-width: 1280px; margin: 0 auto; }

/* ─── CONTACT PAGE ──────────────────────────────────────── */
.asdf-contact-wrap {
  padding: 3.5rem 1.25rem 4rem;
  background: #fff;
}
.asdf-contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.asdf-contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.asdf-contact-img-col img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  max-height: 400px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* ─── FORMS ─────────────────────────────────────────────── */
.asdf-form { display: flex; flex-direction: column; gap: 1.25rem; }
.asdf-form-row { display: flex; flex-direction: column; gap: 1.25rem; }
.asdf-form-field { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; }
.asdf-form-label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--asdf-color-text, #181818);
}
.asdf-form-control {
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  padding: 0.8125rem 1rem;
  font-size: 1rem;
  color: var(--asdf-color-text, #181818);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
  outline: none;
  appearance: none;
}
.asdf-form-control:focus {
  border-color: var(--asdf-color-text, #181818);
  box-shadow: 0 0 0 3px rgba(253,202,0,0.2);
}
.asdf-form-control::placeholder { color: #9ca3af; }
textarea.asdf-form-control { min-height: 130px; }
.asdf-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--asdf-color-text, #181818);
  cursor: pointer;
  line-height: 1.5;
}
.asdf-form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--asdf-color-primary, #fdca00);
  cursor: pointer;
}

/* Form card wrapper (booking) */
.asdf-form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* Alert messages */
.asdf-alert { border-radius: 12px; padding: 1rem 1.25rem; font-size: 0.9375rem; line-height: 1.5; }
.asdf-alert--success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.asdf-alert--error   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.asdf-alert--warning { background: #fff9df; border: 1px solid #fdca00; color: #5c4b00; }

.asdf-book-confirm { margin-top: 0.75rem; }
.asdf-book-confirm__title {
  margin: 0 0 1rem;
  font-family: var(--t-font-h, 'Barlow Condensed', sans-serif);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.asdf-book-confirm__list {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.asdf-book-confirm__list > div {
  display: grid;
  grid-template-columns: 9.5rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #ece8df;
}
.asdf-book-confirm__list > div:last-child { border-bottom: none; }
.asdf-book-confirm__list dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666;
}
.asdf-book-confirm__list dd { margin: 0; font-weight: 600; color: #181818; }
.asdf-book-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.asdf-book-confirm__note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #666;
}

@media (max-width: 640px) {
  .asdf-book-confirm__list > div { grid-template-columns: minmax(0, 1fr); gap: 0.2rem; }
}

/* ─── BOOK PAGE ─────────────────────────────────────────── */
.asdf-book-hero {
  background: #fff;
  padding: 3.5rem 1.25rem;
}
.asdf-book-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.asdf-book-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.75rem;
}
.asdf-book-feature { display: flex; flex-direction: column; gap: 0.5rem; }
.asdf-book-feature img { width: 28px; height: 28px; }
.asdf-book-feature h3 { font-size: 0.9375rem; font-weight: 700; color: var(--asdf-color-text, #181818); }
.asdf-book-feature p  { font-size: 0.875rem; color: var(--asdf-color-text, #181818); opacity: 0.75; line-height: 1.55; }

/* Book page — session catalogue + native booking form */
.asdf-book-catalog {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.asdf-book-catalog__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.asdf-book-catalog__title {
  margin: 0;
  font-family: var(--t-font-h, 'Barlow Condensed', sans-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--t-text, #181818);
}
.asdf-book-catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .asdf-book-catalog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .asdf-book-catalog__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.asdf-book-class-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.asdf-book-class-card__media {
  aspect-ratio: 16 / 10;
  background: #f3f4f6;
  overflow: hidden;
}
.asdf-book-class-card__media img,
.asdf-book-class-card__media .asdf-book-class-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.asdf-book-class-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, #ececec 0%, #f6f7f7 45%, #e5e7eb 100%);
}
.asdf-book-class-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.asdf-book-class-card__title {
  font-family: var(--t-font-h, 'Barlow Condensed', sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--t-text, #181818);
  margin: 0;
  line-height: 1.15;
}
.asdf-book-chip-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.asdf-book-chip-group__title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}
.asdf-book-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.asdf-book-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  border: 1px solid transparent;
}
.asdf-book-chip--age {
  background: #fef3c7;
  color: #92400e;
  border-color: #fcd34d;
}
.asdf-book-chip--session {
  background: #e0f2fe;
  color: #075985;
  border-color: #7dd3fc;
}
.asdf-book-chip--participant {
  background: #ede9fe;
  color: #5b21b6;
  border-color: #c4b5fd;
}
.asdf-book-class-card__excerpt {
  font-size: 0.875rem;
  color: var(--asdf-color-text, #181818);
  opacity: 0.78;
  line-height: 1.55;
  margin: 0;
}
.asdf-book-class-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.asdf-book-class-card__details p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #374151;
}
.asdf-book-class-card__price {
  font-family: var(--t-font-h, 'Barlow Condensed', sans-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--t-text, #181818);
  margin: 0;
  margin-top: auto;
  padding-top: 0.25rem;
}
.asdf-book-class-card__cta { margin-top: 1rem; }
.asdf-book-class-card__btn-disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
.asdf-book-form-shell {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.asdf-book-form-shell__head {
  text-align: center;
}

.asdf-cf7-wrap form.asdf-book-native-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.asdf-book-hp-wrap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ─── ABOUT PAGE ────────────────────────────────────────── */
.asdf-instructor {
  background: #fff;
  padding: 3.5rem 1.25rem;
}
.asdf-instructor__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.asdf-how-steps {
  background: #fff;
  padding: 0 1.25rem 3.5rem;
}
.asdf-step {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.asdf-step h3 { font-size: 1.0625rem; font-weight: 700; color: var(--asdf-color-text, #181818); margin-bottom: 0.375rem; }
.asdf-step p  { color: var(--asdf-color-text, #181818); opacity: 0.75; font-size: 0.9375rem; }

.asdf-testimonial {
  background: var(--asdf-color-dark-bg, #1c1c1c);
  padding: 4rem 1.25rem;
  text-align: center;
}
.asdf-testimonial__inner {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.asdf-testimonial blockquote {
  font-size: clamp(1.0625rem, 3vw, 1.25rem);
  color: var(--asdf-color-light-text, #fafafa);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}
.asdf-testimonial__author { text-align: center; }
.asdf-testimonial__name  { font-weight: 700; color: var(--asdf-color-primary, #fdca00); }
.asdf-testimonial__role  { font-size: 0.875rem; color: var(--asdf-color-light-text, #fafafa); opacity: 0.65; }
.asdf-testimonial__dots  { display: flex; gap: 0.5rem; }
.asdf-dot { width: 10px; height: 10px; border-radius: 50%; }
.asdf-dot--active  { background: var(--asdf-color-primary, #fdca00); }
.asdf-dot--inactive{ background: rgba(255,255,255,0.3); }

.asdf-gain-section { background: #fff; padding: 3.5rem 1.25rem; }
.asdf-gain-section__inner { max-width: 1280px; margin: 0 auto; }
.asdf-gain-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.asdf-gain-card {
  padding: 1.5rem 0.25rem;
  border-top: 3px solid var(--asdf-color-primary, #fdca00);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.asdf-gain-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--asdf-color-text, #181818); }
.asdf-gain-card p  { font-size: 0.9375rem; color: var(--asdf-color-text, #181818); opacity: 0.75; line-height: 1.6; }
.asdf-gain-card a  { font-weight: 600; font-size: 0.875rem; color: var(--asdf-color-text, #181818); }
.asdf-gain-card a:hover { color: var(--asdf-color-primary, #fdca00); }

/* Dark CTA banner */
.asdf-cta-banner {
  background: var(--asdf-color-dark-bg, #1c1c1c);
  padding: 4rem 1.25rem;
  text-align: center;
}
.asdf-cta-banner__inner {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

/* ─── FAQ PAGE ──────────────────────────────────────────── */
.asdf-faq-page-header { padding: 3.5rem 1.25rem 1.5rem; background: #fff; }
.asdf-faq-page-header__inner { max-width: 1280px; margin: 0 auto; }
.asdf-faq-page-list { padding: 1.5rem 1.25rem 4rem; background: #fff; }
.asdf-faq-page-list__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.asdf-faq-contact { padding: 0 1.25rem 4rem; background: #fff; }
.asdf-faq-contact__inner { max-width: 1280px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════
   TABLET — ≥ 640px
══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .asdf-section { padding-top: 4.5rem; padding-bottom: 4.5rem; padding-left: 2rem; padding-right: 2rem; }
  .asdf-container { padding-left: 2rem; padding-right: 2rem; }

  /* Nav */
  .asdf-nav-wrap { padding-left: 2rem; padding-right: 2rem; }
  .asdf-nav-logo img { height: 132px !important; }

  /* Hero */
  .asdf-hero { padding: 4.5rem 2rem; }
  .asdf-hero__image { max-height: 460px; border-radius: 32px; }
  .asdf-feature-cards { padding: 4.5rem 2rem; }
  .asdf-feature-cards__grid { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }

  /* Card grid */
  .asdf-gain-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA form row */
  .asdf-cta__form { flex-direction: row; align-items: center; }

  /* Footer */
  #site-footer { padding: 4rem 2rem 2.5rem; }
  .asdf-footer-top { flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
  .asdf-footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  /* Forms */
  .asdf-form-row { flex-direction: row; }

  /* Contact */
  .asdf-contact-wrap { padding: 4.5rem 2rem 5rem; }
  .asdf-contact-img-col img { max-height: 520px; }

  /* Book */
  .asdf-book-hero { padding: 4.5rem 2rem; }
  .asdf-form-card { padding: 2.5rem; }

  /* FAQ page */
  .asdf-faq-page-header { padding: 4rem 2rem 1.5rem; }
  .asdf-faq-page-list { padding: 2rem 2rem 5rem; }
  .asdf-faq-contact { padding: 0 2rem 5rem; }

  /* Instructor/About */
  .asdf-instructor { padding: 4.5rem 2rem; }
  .asdf-how-steps { padding: 0 2rem 4.5rem; }
  .asdf-testimonial { padding: 5rem 2rem; }
  .asdf-gain-section { padding: 4.5rem 2rem; }
  .asdf-cta-banner { padding: 5rem 2rem; }

  /* Feature list */
  .asdf-feature-list { padding: 4.5rem 2rem; }
  .asdf-faq-section { padding: 4.5rem 2rem; }
  .asdf-features-text { padding: 4.5rem 2rem; }

  .asdf-features-text__inner { flex-direction: row; gap: 3rem; }
  .asdf-mini-cols { flex-direction: row; gap: 2rem; }
}

/* ══════════════════════════════════════════════════════════
   DESKTOP — ≥ 768px
══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  /* Show desktop nav, hide hamburger */
  .asdf-nav-links       { display: flex; }
  .asdf-hamburger       { display: none; }
  .asdf-mobile-menu     { display: none !important; }

  /* Hero two-column */
  .asdf-hero { padding: 5rem 2rem; }
  .asdf-hero__inner     { flex-direction: row; align-items: center; gap: 3.5rem; }
  .asdf-hero__text      { flex: 1; }
  .asdf-hero__image     { flex: 1; max-height: none; height: auto; }

  /* Feature list two-column */
  .asdf-feature-list__cols { flex-direction: row; align-items: flex-start; gap: 3rem; }
  .asdf-feature-rows { flex: 1; min-width: 0; }
  .asdf-feature-list__image { flex: 1; min-width: 0; aspect-ratio: 5 / 4; }

  /* FAQ two-column */
  .asdf-faq-inner { flex-direction: row; gap: 4rem; }
  .asdf-faq-left  { flex: 1; }
  .asdf-faq-right { flex: 1.5; }

  /* Contact two-column */
  .asdf-contact-inner { flex-direction: row; align-items: flex-start; }
  .asdf-contact-form-col { flex: 1.1; }
  .asdf-contact-img-col  { flex: 0.9; }
  .asdf-contact-img-col img { max-height: 640px; }

  /* Book hero two-column */
  .asdf-book-hero__inner { flex-direction: row; align-items: center; gap: 3.5rem; }

  /* Instructor two-column */
  .asdf-instructor__inner { flex-direction: row; align-items: center; gap: 3.5rem; }

  /* Gain grid */
  .asdf-gain-grid { grid-template-columns: repeat(4, 1fr); }
  .asdf-gain-header { flex-direction: row; align-items: flex-end; gap: 3rem; }
  .asdf-gain-header > * { flex: 1; }
}

/* ══════════════════════════════════════════════════════════
   LARGE DESKTOP — ≥ 1024px
══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .asdf-section { padding-top: 6rem; padding-bottom: 6rem; }
  .asdf-hero { padding: 5.5rem 2rem; }
  .asdf-hero__inner { gap: 4.5rem; }
  .asdf-feature-list { padding: 6rem 2rem; }
  .asdf-faq-section { padding: 6rem 2rem; }
  .asdf-features-text { padding: 6rem 2rem; }
  .asdf-feature-cards { padding: 6rem 2rem; }
  .asdf-cta { padding: 6rem 2rem; }
  .asdf-feature-cards__grid { grid-template-columns: repeat(3, 1fr); }

  .asdf-instructor { padding: 5.5rem 2rem; }
  .asdf-testimonial { padding: 6rem 2rem; }
  .asdf-gain-section { padding: 6rem 2rem; }
  .asdf-cta-banner  { padding: 6rem 2rem; }
  .asdf-contact-wrap { padding: 6rem 2rem; }
  .asdf-book-hero { padding: 5.5rem 2rem; }
}

/* ─── Skip link (accessibility) ─────────────────────────── */
.asdf-skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--asdf-color-primary, #fdca00);
  color: var(--asdf-color-text, #181818);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 999;
  transition: top 0.2s;
}
.asdf-skip-link:focus { top: 0; }

/* ─── Scroll-reveal utility ─────────────────────────────── */
.asdf-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.asdf-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ─── Hover transitions on all internal links ──────────────  */
#site-header a,
#site-footer a { transition: color 0.2s, opacity 0.2s; }

/* ─── Contact Form 7 ────────────────────────────────────── */

/* Form layout */
.asdf-cf7-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Two-column row */
.asdf-cf7-wrap .cf7-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .asdf-cf7-wrap .cf7-row { grid-template-columns: 1fr 1fr; }
}

/* Individual field block — label stacked above input */
.asdf-cf7-wrap .cf7-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Label text */
.asdf-cf7-wrap .cf7-field > label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--asdf-color-text, #181818);
  line-height: 1.4;
}
.asdf-cf7-wrap .cf7-field > label abbr {
  color: #ef4444;
  text-decoration: none;
  margin-left: 2px;
}

/* CF7 wraps each field in a span — make it block */
.asdf-cf7-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* All inputs, textareas, selects */
.asdf-cf7-wrap input[type="text"],
.asdf-cf7-wrap input[type="email"],
.asdf-cf7-wrap input[type="tel"],
.asdf-cf7-wrap input[type="number"],
.asdf-cf7-wrap textarea,
.asdf-cf7-wrap select {
  display: block;
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--asdf-color-text, #181818);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.asdf-cf7-wrap input[type="text"]:focus,
.asdf-cf7-wrap input[type="email"]:focus,
.asdf-cf7-wrap input[type="tel"]:focus,
.asdf-cf7-wrap textarea:focus,
.asdf-cf7-wrap select:focus {
  border-color: var(--t-yellow, #fdca00);
  box-shadow: 0 0 0 3px rgba(253,202,0,0.2);
}
.asdf-cf7-wrap input::placeholder,
.asdf-cf7-wrap textarea::placeholder { color: #9ca3af; font-size: 0.9375rem; }
.asdf-cf7-wrap textarea { min-height: 140px; resize: vertical; }

/* Select custom arrow */
.asdf-cf7-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23181818' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

/* Submit button — matches site .t-btn--primary */
.asdf-cf7-wrap input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  background: var(--t-yellow, #fdca00);
  color: var(--t-text, #181818);
  font-family: var(--t-font-h, 'Barlow Condensed', sans-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  min-height: 48px;
  align-self: flex-start;
  margin-top: 0.25rem;
}
.asdf-cf7-wrap input[type="submit"]:hover { background: #e6b800; transform: translateY(-1px); }
.asdf-cf7-wrap input[type="submit"]:active { transform: translateY(0); }

/* Validation */
.asdf-cf7-wrap .wpcf7-not-valid { border-color: #ef4444 !important; }
.asdf-cf7-wrap .wpcf7-not-valid-tip {
  display: block;
  color: #ef4444;
  font-size: 0.8125rem;
  margin-top: 0.375rem;
}

/* Response output */
.asdf-cf7-wrap .wpcf7-response-output {
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
}
.asdf-cf7-wrap .wpcf7-mail-sent-ok {
  background: #d1fae5;
  border: 1px solid #6ee7b7 !important;
  color: #065f46;
}
.asdf-cf7-wrap .wpcf7-mail-sent-ng,
.asdf-cf7-wrap .wpcf7-spam-blocked,
.asdf-cf7-wrap .wpcf7-validation-errors {
  background: #fee2e2;
  border: 1px solid #fca5a5 !important;
  color: #991b1b;
}
