/* ============================================================
   GA Central Ladprao — Bilingual Site
   Mobile-first, vanilla CSS
   ============================================================ */

:root {
  /* Brand palette */
  --ga-yellow: #FFD23F;
  --ga-yellow-soft: #FFF3B0;
  --ga-yellow-deep: #F4B400;
  --ga-blue: #1E4FD8;
  --ga-blue-dark: #0F2D7A;
  --ga-blue-soft: #E5ECFF;

  --cream: #FFF9EC;
  --ink: #14213D;
  --ink-soft: #4A5578;
  --muted: #8892B0;
  --white: #FFFFFF;

  /* Accents (sticker palette) */
  --pink: #FF6B9D;
  --mint: #5DD2C5;
  --orange: #FF8A3D;
  --line-green: #06C755;

  /* Artime brand identity — minimal, warm, grown-up (matches artime-th.com) */
  --artime-ink: #1F1A14;       /* near-black warm */
  --artime-ink-soft: #4B4239;
  --artime-warm: #B5957A;      /* warm tan accent */
  --artime-cream: #F4EFE8;     /* paper cream */
  --artime-line: #C9B49C;

  /* Shape */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;

  --shadow-card: 0 6px 0 rgba(15,45,122,.10), 0 12px 28px rgba(15,45,122,.10);
  --shadow-sticker: 0 4px 0 rgba(15,45,122,.18);
  --shadow-soft: 0 4px 18px rgba(15,45,122,.08);

  /* Type */
  --font-base: "Noto Sans Thai", "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Baloo 2", "Noto Sans Thai", "Noto Sans", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 88px; /* room for mobile sticky CTA */
}
img { max-width: 100%; display: block; }
a { color: var(--ga-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(1.8rem, 6vw, 3rem); }
h2 { font-size: clamp(1.4rem, 4.6vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 3.6vw, 1.5rem); }
p  { margin: 0 0 1em; }

/* ---------- Language toggle ----------
   Thai is visible by default — no body class required.
   The BODY uses class `mode-en` to switch to English.
   IMPORTANT: do not put .lang-th / .lang-en on the body or
   on any layout container — they are content-span classes
   and will be hidden by display:none. */
.lang-th { display: inline; }
.lang-en { display: none; }
.lang-th-block { display: block; }
.lang-en-block { display: none; }

body.mode-en .lang-th,
body.mode-en .lang-th-block { display: none; }
body.mode-en .lang-en { display: inline; }
body.mode-en .lang-en-block { display: block; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 820px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 2px solid var(--ga-yellow);
  box-shadow: 0 2px 14px rgba(15,45,122,.06);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1100px; margin: 0 auto;
}
.brand-link {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800; color: var(--ink);
  text-decoration: none;
}
.brand-link img { height: 38px; width: auto; }
.brand-link .brand-text { font-size: .95rem; line-height: 1.1; }
.brand-link .brand-text small { display: block; font-weight: 600; color: var(--ink-soft); font-size: .75rem; }

.header-actions { display: flex; align-items: center; gap: 8px; }

.lang-toggle {
  display: inline-flex; background: var(--ga-blue-soft); border-radius: 999px;
  padding: 3px; border: 0;
}
.lang-toggle button {
  border: 0; background: transparent; padding: 6px 12px;
  font-weight: 700; color: var(--ga-blue-dark);
  border-radius: 999px; font-size: .85rem;
}
/* Default highlight = TH active. EN active when body has .mode-en */
.lang-toggle [data-lang="th"] {
  background: var(--ga-blue); color: var(--white);
  box-shadow: 0 2px 0 var(--ga-blue-dark);
}
body.mode-en .lang-toggle [data-lang="th"] {
  background: transparent; color: var(--ga-blue-dark); box-shadow: none;
}
body.mode-en .lang-toggle [data-lang="en"] {
  background: var(--ga-blue); color: var(--white);
  box-shadow: 0 2px 0 var(--ga-blue-dark);
}

.btn-line-header {
  display: none; /* hidden on mobile, sticky bottom shows instead */
  align-items: center; gap: 6px;
  background: var(--line-green); color: var(--white) !important;
  padding: 9px 16px; border-radius: 999px;
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 3px 0 #04923f;
  text-decoration: none;
}
.btn-line-header:hover { background: #05b04b; text-decoration: none; }

/* Nav row (under brand) */
.site-nav {
  background: var(--ga-yellow-soft);
  border-bottom: 2px solid var(--ga-yellow-deep);
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.site-nav ul::-webkit-scrollbar { display: none; }
.site-nav a {
  display: block;
  padding: 12px 16px;
  color: var(--ga-blue-dark);
  font-weight: 700; font-size: .92rem;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover, .site-nav a.active {
  border-bottom-color: var(--ga-blue);
  color: var(--ga-blue);
}

/* ---------- Sticky LINE CTA ---------- */
.line-sticky {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  background: var(--line-green); color: var(--white) !important;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 18px;
  border-radius: 999px;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 6px 0 #04923f, 0 12px 24px rgba(6,199,85,.25);
  text-decoration: none;
}
.line-sticky:hover { background: #05b04b; text-decoration: none; }
.line-sticky .line-icon {
  width: 24px; height: 24px;
  background: var(--white); color: var(--line-green);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .8rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 36px 0 28px;
  background:
    radial-gradient(circle at 90% 0%, var(--ga-yellow-soft) 0, transparent 45%),
    radial-gradient(circle at 0% 100%, var(--ga-blue-soft) 0, transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 { margin-bottom: .35em; }
.hero .eyebrow {
  display: inline-block;
  background: var(--ga-yellow);
  color: var(--ga-blue-dark);
  font-weight: 800; font-size: .8rem;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sticker);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero p { font-size: 1.05rem; color: var(--ink-soft); max-width: 60ch; }
.hero .globby-float {
  position: absolute;
  right: -20px; bottom: -10px;
  width: 130px; opacity: .9;
  transform: rotate(-6deg);
  z-index: 1;
  pointer-events: none;
}

/* ---------- Section ---------- */
.section { padding: 36px 0; }
.section-tight { padding: 24px 0; }
.section h2 { margin-bottom: 6px; }
.section .section-lead { color: var(--ink-soft); margin-bottom: 22px; }

.eyebrow-tag {
  display: inline-block;
  background: var(--ga-blue);
  color: var(--white);
  font-weight: 800; font-size: .72rem;
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sticker);
}

/* ---------- Brand selector cards (Home) ---------- */
.brand-cards {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin-top: 12px;
}
.brand-card {
  display: block;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px 22px 22px;
  text-decoration: none;
  color: var(--ink);
  border: 3px solid var(--ga-blue-soft);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.brand-card:hover {
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 10px 0 rgba(15,45,122,.10), 0 18px 32px rgba(15,45,122,.14);
}
.brand-card.ga { border-color: var(--ga-yellow-deep); }
.brand-card.artime {
  border-color: var(--artime-ink);
  background: linear-gradient(180deg, var(--artime-cream) 0%, var(--white) 60%);
}
.brand-card .brand-logo {
  height: 70px; width: auto; margin-bottom: 14px;
}
.brand-card h3 {
  margin: 0 0 .25em;
  font-size: 1.4rem;
}
.brand-card p { color: var(--ink-soft); margin: 0 0 16px; }
.brand-card .brand-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ga-blue); color: var(--white);
  font-weight: 700; padding: 10px 18px; border-radius: 999px;
  font-size: .92rem;
  box-shadow: 0 3px 0 var(--ga-blue-dark);
}
.brand-card.artime .brand-cta {
  background: var(--artime-ink);
  box-shadow: 0 3px 0 #000;
  color: var(--artime-cream);
}
.brand-card .sticker {
  position: absolute; top: 14px; right: 16px;
  font-size: .7rem; font-weight: 800;
  background: var(--ga-yellow); color: var(--ga-blue-dark);
  padding: 5px 11px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .04em;
  box-shadow: var(--shadow-sticker);
}
.brand-card.artime .sticker {
  background: var(--artime-ink);
  color: var(--artime-cream);
  letter-spacing: .08em;
}

/* ---------- Generic cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
}

/* ---------- Pricing tables (Core Program) ---------- */
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.price-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px;
  border: 2px solid var(--ga-blue-soft);
  box-shadow: var(--shadow-card);
  position: relative;
}
.price-card.featured {
  border-color: var(--ga-yellow-deep);
  background: linear-gradient(180deg, #FFFBE3 0%, var(--white) 60%);
}
.price-card .tag {
  position: absolute; top: -10px; left: 16px;
  background: var(--ga-yellow); color: var(--ga-blue-dark);
  font-size: .72rem; font-weight: 800;
  padding: 5px 12px; border-radius: 999px;
  box-shadow: var(--shadow-sticker);
  text-transform: uppercase; letter-spacing: .04em;
}
.price-card.featured .tag { background: var(--pink); color: var(--white); }
.price-card h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}
.price-card .lessons { color: var(--ink-soft); font-size: .9rem; margin-bottom: 12px; }
.price-row { display: flex; justify-content: space-between; gap: 8px; font-size: .92rem; padding: 4px 0; }
.price-row.muted { color: var(--ink-soft); }
.price-row .strike { text-decoration: line-through; color: var(--muted); }
.price-net {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed var(--ga-yellow-deep);
  display: flex; justify-content: space-between; align-items: baseline;
}
.price-net .label { font-weight: 700; color: var(--ink); }
.price-net .amount { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--ga-blue-dark); }
.price-net .currency { font-size: .9rem; font-weight: 700; color: var(--ink-soft); margin-right: 4px; }
.price-per { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Enhancement table (responsive stacked) ---------- */
.enh-list {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
.enh-item {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 18px;
  border: 2px solid var(--ga-blue-soft);
  box-shadow: var(--shadow-soft);
}
.enh-item h4 {
  margin: 0 0 8px; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.enh-item .age-pill {
  background: var(--ga-yellow); color: var(--ga-blue-dark);
  font-size: .7rem; font-weight: 800; padding: 3px 10px; border-radius: 999px;
  white-space: nowrap;
}
.enh-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px;
  font-size: .9rem; color: var(--ink-soft);
}
.enh-meta .v { color: var(--ink); font-weight: 600; }
.enh-meta .total { color: var(--ga-blue-dark); font-weight: 800; font-size: 1.05rem; }

.note {
  background: var(--ga-yellow-soft);
  border-left: 4px solid var(--ga-yellow-deep);
  padding: 12px 14px; border-radius: 8px;
  font-size: .9rem; color: var(--ink-soft);
  margin-top: 14px;
}

/* ---------- Pricing poster (official price sheet image) ---------- */
.pricing-poster {
  margin: 22px 0 0;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--ga-yellow);
}
.pricing-poster figcaption {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px;
  font-size: .82rem; color: var(--ink-soft);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.pricing-poster figcaption .tag-label {
  display: inline-block;
  background: var(--ga-yellow); color: var(--ga-blue-dark);
  font-weight: 800; font-size: .72rem;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .04em;
}
.pricing-poster figcaption a {
  font-weight: 700;
  color: var(--ga-blue);
}
.pricing-poster .poster-img-wrap {
  /* `display` is controlled by .lang-th-block / .lang-en-block — do not set it here. */
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--ga-blue-soft);
}
.pricing-poster img {
  width: 100%; height: auto; display: block;
}

/* ---------- Promo cards ---------- */
.promo-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.promo-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 3px solid var(--ga-yellow);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.promo-card .promo-poster {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--ga-yellow-soft);
  border-bottom: 3px solid var(--ga-yellow);
}
.promo-card .promo-body {
  padding: 18px 20px 20px;
  position: relative;
  flex: 1;
  display: flex; flex-direction: column;
}
.promo-card .promo-body::before {
  content: ""; position: absolute; inset: -40px -40px auto auto;
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--ga-yellow-soft), transparent 70%);
  border-radius: 50%; z-index: 0;
  pointer-events: none;
}
.promo-card .promo-body > * { position: relative; z-index: 1; }
.promo-card .promo-eyebrow {
  display: inline-block;
  background: var(--pink); color: var(--white);
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 8px; text-transform: uppercase;
}
.promo-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.promo-card p { font-size: .93rem; color: var(--ink-soft); }
.promo-period {
  display: inline-block;
  background: var(--ga-blue-soft); color: var(--ga-blue-dark);
  font-weight: 700; font-size: .82rem;
  padding: 5px 10px; border-radius: 8px;
  margin: 6px 0 14px;
}
.btn-promo {
  display: inline-block; background: var(--line-green); color: var(--white) !important;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 800; font-size: .92rem;
  box-shadow: 0 3px 0 #04923f;
}
.btn-promo:hover { background: #05b04b; text-decoration: none; }

/* Homepage compact promo card — smaller, scrollable, links to GA details */
.promo-card.compact { border-width: 2px; }
.promo-card.compact .promo-body { padding: 14px 16px 16px; }
.promo-card.compact .promo-eyebrow { font-size: .68rem; }
.promo-card.compact h3 { font-size: 1.02rem; margin-bottom: 6px; line-height: 1.25; }
.promo-card.compact p { font-size: .85rem; margin-bottom: 8px; }
.promo-card.compact .promo-period {
  font-size: .76rem; padding: 4px 8px;
  margin: 4px 0 10px;
}
.promo-card.compact .promo-detail-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--ga-blue);
  font-weight: 700; font-size: .88rem;
  text-decoration: none;
}
.promo-card.compact .promo-detail-link:hover { text-decoration: underline; }

/* ---------- Teachers ---------- */
.teacher-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.teacher-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px;
  border: 2px solid var(--ga-blue-soft);
  box-shadow: var(--shadow-card);
}
.teacher-photo {
  width: 100%; aspect-ratio: 1/1;
  border-radius: var(--r-md);
  background: var(--ga-yellow-soft);
  overflow: hidden;
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
}
.teacher-photo img { width: 100%; height: 100%; object-fit: cover; }
.teacher-card h3 { margin: 0 0 2px; font-size: 1.15rem; }
.teacher-card .role {
  color: var(--ga-blue); font-weight: 700; font-size: .85rem;
  margin-bottom: 10px;
}
.teacher-bio { font-size: .92rem; color: var(--ink-soft); }
.teacher-quote {
  margin-top: 12px; padding: 12px 14px;
  background: var(--ga-yellow-soft); border-radius: var(--r-sm);
  font-style: italic; font-size: .9rem; color: var(--ink);
  border-left: 4px solid var(--ga-yellow-deep);
}

/* ---------- Why GA ---------- */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px;
  border: 2px solid var(--ga-blue-soft);
  box-shadow: var(--shadow-card);
  position: relative;
  padding-left: 80px;
}
.why-card .why-icon {
  position: absolute; top: 18px; left: 18px;
  width: 50px; height: 50px;
  background: var(--ga-yellow);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sticker);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.why-card p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* ---------- Workshop pricing (Artime) ---------- */
.workshop-table {
  display: grid; gap: 12px;
}
.workshop-row {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 16px;
  border: 2px solid var(--ga-blue-soft);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.workshop-row .label-row {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--ga-blue-dark);
}
.workshop-row .sizes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.workshop-row .size-cell {
  background: var(--ga-yellow-soft);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font-size: .9rem;
}
.workshop-row .size-cell .px { display: block; color: var(--ink-soft); font-size: .8rem; }
.workshop-row .size-cell .baht { font-weight: 800; color: var(--ga-blue-dark); font-size: 1.05rem; }

/* ---------- Contact ---------- */
.contact-block { display: grid; gap: 16px; }
.info-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.info-row { display: flex; gap: 10px; padding: 6px 0; align-items: flex-start; font-size: .95rem; }
.info-row .ico { font-size: 1.1rem; min-width: 24px; }
.map-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.map-wrap iframe {
  width: 100%; height: 380px; border: 0; display: block;
}
@media (min-width: 700px) {
  .map-wrap iframe { height: 460px; }
}

.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.socials a {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ga-blue-soft); color: var(--ga-blue-dark) !important;
  padding: 8px 14px; border-radius: 999px;
  font-weight: 700; font-size: .88rem;
}

/* ---------- Big CTA ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--ga-yellow) 0%, var(--ga-yellow-deep) 100%);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  margin: 22px 0;
}
.cta-block h2 { color: var(--ga-blue-dark); margin-bottom: 6px; }
.cta-block p { color: var(--ga-blue-dark); opacity: .85; margin-bottom: 18px; }
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--line-green); color: var(--white) !important;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 5px 0 #04923f;
  text-decoration: none;
}
.btn-line:hover { background: #05b04b; text-decoration: none; transform: translateY(-1px); }
.btn-line .line-badge {
  background: var(--white); color: var(--line-green);
  padding: 3px 8px; border-radius: 6px;
  font-size: .8rem; font-weight: 900;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ga-blue-dark);
  color: var(--ga-blue-soft);
  padding: 32px 0 24px;
  margin-top: 40px;
}
.site-footer .container { display: grid; gap: 16px; }
.site-footer h4 { color: var(--white); margin-bottom: 6px; font-size: 1rem; }
.site-footer a { color: var(--ga-yellow); }
.site-footer .copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px; font-size: .82rem; opacity: .7;
}

/* ---------- Curriculum: 3 objectives strip ---------- */
.curriculum-objectives {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  margin-bottom: 24px;
}
.obj-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 16px 14px 64px;
  position: relative;
  border: 2px solid var(--ga-yellow);
  box-shadow: var(--shadow-soft);
}
.obj-card .obj-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--ga-yellow);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sticker);
}
.obj-card h4 { font-size: .98rem; margin: 0 0 2px; color: var(--ga-blue-dark); }
.obj-card p  { margin: 0; font-size: .82rem; color: var(--ink-soft); line-height: 1.45; }

/* ---------- Curriculum: Core program age ladder ---------- */
.level-list {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  margin-bottom: 22px;
}
.level-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 2px solid var(--ga-blue-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.level-card summary {
  list-style: none;
  cursor: pointer;
  padding: 0;
  display: block;
}
/* Full-width banner at top of level card — inside summary so always visible */
.level-card .lvl-banner {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ga-yellow-soft);
  border-bottom: 2px solid var(--ga-blue-soft);
}
.level-card .lvl-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px; align-items: center;
  padding: 14px 16px;
}
.level-card summary::-webkit-details-marker { display: none; }
.level-card .lvl-row::after {
  content: "+";
  font-size: 1.4rem; font-weight: 800; color: var(--ga-blue);
  width: 28px; text-align: center;
}
.level-card[open] .lvl-row::after { content: "−"; }
.level-card summary:hover .lvl-row { background: var(--ga-yellow-soft); }
.level-card .age-badge {
  background: var(--ga-yellow);
  color: var(--ga-blue-dark);
  border-radius: 12px;
  text-align: center;
  padding: 6px 4px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: var(--shadow-sticker);
}
.level-card .age-badge .num {
  display: block; font-size: 1.05rem; font-family: var(--font-display);
}
.level-card .age-badge .unit { font-size: .65rem; opacity: .8; }
.level-card .lvl-title { font-weight: 800; font-size: 1rem; color: var(--ink); }
.level-card .lvl-sub {
  font-size: .8rem; color: var(--ink-soft); margin-top: 2px;
  display: flex; flex-wrap: wrap; gap: 4px;
}
.level-card .lvl-sub .chip {
  background: var(--ga-blue-soft); color: var(--ga-blue-dark);
  padding: 2px 8px; border-radius: 999px;
  font-weight: 700; font-size: .72rem;
}
.level-detail {
  padding: 0 16px 16px;
  font-size: .9rem; color: var(--ink-soft);
  line-height: 1.55;
}
.level-detail ul {
  margin: 0; padding-left: 1.2em;
}
.level-detail li { margin-bottom: 3px; }

/* ---------- Curriculum: Enhancement grid ---------- */
.enh-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.enh-tile {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 0;
  border: 2px solid var(--ga-yellow);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.enh-tile .enh-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--ga-yellow-soft);
}
.enh-tile .enh-body { padding: 12px 14px 14px; }
.enh-tile h4 {
  font-size: .95rem; margin: 0 0 4px;
  color: var(--ga-blue-dark);
  line-height: 1.2;
}
.enh-tile .min-age {
  display: inline-block;
  background: var(--ga-blue-soft); color: var(--ga-blue-dark);
  font-size: .7rem; font-weight: 800;
  padding: 2px 8px; border-radius: 999px;
  margin-bottom: 6px;
}
.enh-tile p { margin: 0; font-size: .8rem; color: var(--ink-soft); line-height: 1.45; }

/* ---------- Curriculum: Brand stats strip ---------- */
.brand-stats {
  margin-top: 24px;
  background: var(--ga-blue-dark);
  border-radius: var(--r-lg);
  padding: 20px 18px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.stat .n {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--ga-yellow);
  line-height: 1;
}
.stat .l { font-size: .78rem; color: var(--ga-blue-soft); margin-top: 4px; }

/* ---------- "How a Free Trial Works" steps ---------- */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  counter-reset: step;
}
.step-card {
  display: grid; grid-template-columns: 60px 1fr; gap: 14px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--ga-blue-soft);
  align-items: center;
  position: relative;
}
.step-card .step-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--ga-yellow) 0%, var(--ga-yellow-deep) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 900;
  color: var(--ga-blue-dark);
  box-shadow: var(--shadow-sticker);
  flex-shrink: 0;
}
.step-card h4 {
  font-size: .98rem; margin: 0 0 3px;
  color: var(--ga-blue-dark);
  line-height: 1.25;
}
.step-card p {
  margin: 0; font-size: .9rem; color: var(--ink-soft);
  line-height: 1.55;
}
/* Tablet+: vertical layout so text gets full card width — better readability */
@media (min-width: 700px) {
  .step-card {
    grid-template-columns: 1fr;
    padding: 24px 22px 22px;
    gap: 14px;
    text-align: center;
    justify-items: center;
  }
  .step-card .step-number {
    width: 64px; height: 64px;
    font-size: 1.7rem;
  }
  .step-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
  .step-card p  { font-size: .93rem; line-height: 1.6; }
}
/* Desktop: more breathing room */
@media (min-width: 980px) {
  .step-card { padding: 28px 24px 26px; }
  .step-card .step-number { width: 72px; height: 72px; font-size: 1.9rem; }
  .step-card h4 { font-size: 1.1rem; }
  .step-card p { font-size: .95rem; }
}

/* ---------- Class schedule (GA) ---------- */
.schedule-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--ga-yellow);
}
.schedule-card + .schedule-card { margin-top: 14px; }
.schedule-head {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.schedule-head h3 { margin: 0; font-size: 1.15rem; }
.schedule-head .duration-badge {
  background: var(--ga-blue);
  color: var(--white);
  padding: 5px 11px; border-radius: 999px;
  font-size: .76rem; font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 2px 0 var(--ga-blue-dark);
}
.schedule-card .age-line {
  color: var(--ink-soft); font-size: .85rem; margin-bottom: 14px;
}
.schedule-day { margin-top: 14px; }
.schedule-day .day-label {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-weight: 800; color: var(--ga-blue-dark);
  margin-bottom: 10px; font-size: .92rem;
}
.schedule-day .day-label .day-pill {
  background: var(--ga-yellow-soft);
  color: var(--ga-blue-dark);
  padding: 3px 9px; border-radius: 999px;
  font-size: .78rem;
}
.schedule-day .break-note {
  font-size: .78rem; color: var(--ink-soft);
  font-weight: 500;
}
.time-slots {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.time-slot {
  background: var(--ga-blue-soft);
  color: var(--ga-blue-dark);
  padding: 7px 12px; border-radius: 999px;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Artime: group / birthday party booking ---------- */
.party-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 22px 18px;
  border: 2px solid var(--artime-warm);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.party-card::before {
  content: "🎂";
  position: absolute; top: -10px; right: 14px;
  font-size: 4rem; opacity: .08;
  transform: rotate(15deg);
}
.party-card > * { position: relative; z-index: 1; }
.party-card h3 { font-size: 1.15rem; margin: 0 0 8px; color: var(--artime-ink); }
.party-card .party-intro { font-size: .94rem; color: var(--artime-ink-soft); margin-bottom: 18px; }
.party-features {
  display: grid; grid-template-columns: 1fr; gap: 8px;
}
.party-feature {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 11px 13px;
  background: var(--artime-cream);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--artime-ink);
}
.party-feature .ico {
  font-size: 1.15rem; flex-shrink: 0; line-height: 1.2;
}
.party-cta {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--artime-ink); color: var(--artime-cream) !important;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 800; font-size: .92rem;
  text-decoration: none;
  letter-spacing: .04em;
}
.party-cta:hover { text-decoration: none; }

/* ---------- Parent reviews (Google reviews showcase) ---------- */
.reviews-summary {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  border: 2px solid var(--ga-yellow);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.reviews-summary .rating-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--ga-blue-dark);
  line-height: 1;
}
.reviews-summary .stars-row {
  display: flex; flex-direction: column; gap: 4px;
  flex: 1; min-width: 0;
}
.reviews-summary .stars {
  color: #F4B400;
  font-size: 1.15rem; letter-spacing: .04em;
}
.reviews-summary .count {
  font-size: .85rem; color: var(--ink-soft); font-weight: 600;
}
.reviews-summary .google-badge {
  background: var(--ga-blue-soft);
  color: var(--ga-blue-dark);
  font-weight: 800; font-size: .78rem;
  padding: 6px 11px; border-radius: 999px;
  letter-spacing: .02em;
}

.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 18px 16px;
  border: 2px solid var(--ga-blue-soft);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.review-card .stars {
  color: #F4B400;
  font-size: 1rem;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.review-card .quote {
  font-size: .94rem;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 12px;
  font-style: italic;
}
.review-card .author-row {
  display: flex; align-items: center; gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--ga-blue-soft);
}
.review-card .author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ga-yellow);
  color: var(--ga-blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
  flex-shrink: 0;
}
.review-card .author-name {
  font-weight: 700; font-size: .88rem; color: var(--ink);
}
.review-card .review-meta {
  font-size: .76rem; color: var(--ink-soft);
}

.reviews-cta-wrap {
  margin-top: 20px;
  text-align: center;
}
.btn-google-reviews {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--ga-blue-dark) !important;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  border: 2px solid var(--ga-blue);
  box-shadow: 0 3px 0 var(--ga-blue);
  text-decoration: none;
}
.btn-google-reviews:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-google-reviews .g-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 50%, #34A853 100%);
  color: #fff; border-radius: 50%; font-weight: 900; font-size: .8rem;
}

/* ---------- Facebook follow cards (custom, no iframe) ---------- */
.fb-follow-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.fb-follow-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--ga-blue-soft);
  display: flex; flex-direction: column;
}
.fb-follow-card.artime { border-color: var(--artime-warm); }
.fb-follow-card .fb-banner {
  height: 8px;
  background: linear-gradient(90deg, var(--ga-yellow) 0%, var(--ga-blue) 100%);
}
.fb-follow-card.artime .fb-banner {
  background: linear-gradient(90deg, var(--artime-warm) 0%, var(--artime-ink) 100%);
}
.fb-follow-card .fb-body {
  padding: 22px 22px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.fb-follow-card .fb-icon {
  width: 56px; height: 56px;
  background: #1877F2;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 0 #0d5fc5;
}
.fb-follow-card .fb-icon svg { width: 30px; height: 30px; }
.fb-follow-card h3 {
  font-size: 1.1rem; margin: 0 0 4px;
  color: var(--ga-blue-dark);
}
.fb-follow-card.artime h3 { color: var(--artime-ink); }
.fb-follow-card .fb-handle {
  color: var(--ink-soft); font-size: .82rem;
  margin: 0 0 12px; font-family: var(--font-base);
}
.fb-follow-card .fb-tagline {
  font-size: .92rem; color: var(--ink-soft);
  margin: 0 0 20px; line-height: 1.5;
}
.fb-follow-card.artime .fb-tagline { color: var(--artime-ink-soft); }
.fb-follow-card .fb-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1877F2; color: var(--white) !important;
  padding: 12px 24px; border-radius: 999px;
  font-weight: 800; font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 3px 0 #0d5fc5;
  transition: transform .15s ease;
}
.fb-follow-card .fb-cta:hover { background: #166ee0; text-decoration: none; transform: translateY(-1px); }
.fb-follow-card .fb-cta svg { width: 16px; height: 16px; }

/* ---------- FAQ (visible content for SEO/AEO) ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 2px solid var(--ga-blue-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--ga-blue-dark);
  font-size: .98rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem; font-weight: 800; color: var(--ga-blue);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: var(--ga-yellow-soft); }
.faq-answer {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: .93rem;
  line-height: 1.6;
}

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: flex; gap: 10px; overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.gallery-strip img {
  height: 180px; width: auto; border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

/* ---------- Mascot decoration ---------- */
.mascot-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--ga-yellow-soft);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  border: 2px dashed var(--ga-yellow-deep);
}
.mascot-row img { width: 80px; flex-shrink: 0; }
.mascot-row p { margin: 0; font-weight: 600; color: var(--ga-blue-dark); }

/* ---------- Tablet+ ---------- */
@media (min-width: 700px) {
  .brand-cards { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .enh-list { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .teacher-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .workshop-row { grid-template-columns: 1fr 2fr; }
  .workshop-row .label-row { display: block; }
  .curriculum-objectives { grid-template-columns: repeat(3, 1fr); }
  .level-list { grid-template-columns: 1fr 1fr; }
  .enh-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-stats { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .party-features { grid-template-columns: 1fr 1fr; }
  .fb-follow-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .container { grid-template-columns: 1.5fr 1fr 1fr; }

  body { padding-bottom: 0; } /* no sticky CTA needed */
  .line-sticky { display: none; }
  .btn-line-header { display: inline-flex; }

  .hero { padding: 56px 0 44px; }
  .hero .globby-float { width: 180px; right: 20px; }
}

@media (min-width: 980px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .enh-list { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
  .teacher-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-block { grid-template-columns: 1fr 1fr; }
  .brand-card { padding: 30px; }
  .brand-card .brand-logo { height: 90px; }
  .level-list { grid-template-columns: repeat(3, 1fr); }
  .enh-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .party-features { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Page-specific accents ---------- */
.artime-theme {
  background: var(--artime-cream);
}
.artime-theme .hero {
  background:
    radial-gradient(ellipse at 90% 0%, rgba(181,149,122,.18) 0, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(31,26,20,.05) 0, transparent 50%),
    var(--artime-cream);
}
.artime-theme .eyebrow {
  background: var(--artime-ink);
  color: var(--artime-cream);
  letter-spacing: .12em;
  box-shadow: none;
}
.artime-theme .eyebrow-tag {
  background: var(--artime-ink);
  color: var(--artime-cream);
  letter-spacing: .08em;
  box-shadow: none;
}
.artime-theme h1, .artime-theme h2 { color: var(--artime-ink); }
.artime-theme .section-lead { color: var(--artime-ink-soft); }

/* Artime hero — warmer, more inviting (framed photo + paint accents) */
.artime-theme .hero { padding-bottom: 36px; }
.artime-theme .hero h1 {
  position: relative;
  display: inline-block;
}
.artime-theme .hero h1::after {
  content: "";
  display: block;
  width: 88px; height: 6px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--artime-warm) 0%, #E5B583 50%, #FFD23F 100%);
  border-radius: 999px;
}
.artime-theme .palette-dots {
  display: inline-flex; gap: 6px; margin-left: 10px; vertical-align: middle;
}
.artime-theme .palette-dots span {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.artime-theme .hero-art {
  position: relative;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.artime-theme .hero-art .photo-frame {
  background: var(--white);
  padding: 8px 8px 22px;
  box-shadow: 0 6px 0 rgba(31,26,20,.08), 0 14px 28px rgba(31,26,20,.12);
  border-radius: 4px;
  transform: rotate(-2deg);
  overflow: hidden;
}
.artime-theme .hero-art .photo-frame:nth-child(2) {
  transform: rotate(2deg);
  margin-top: 24px;
}
.artime-theme .hero-art .photo-frame img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1;
  display: block; border-radius: 2px;
}
/* Decorative paint brush stroke behind hero text on tablet+ */
.artime-theme .hero-brush {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}

/* Anchor offset for sticky header */
section[id] { scroll-margin-top: 120px; }
