/* =========================================================================
   NORTH EAST LIFE ART PROJECT — style.css
   A calm, artistic, "canvas & charcoal" theme built around the brand teal.
   Layout: CSS custom properties + Flexbox + Grid. Fully responsive.
   ========================================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette (drawn from the teal easel logo) */
  --ink:        #17191f;   /* near-black charcoal — primary text */
  --charcoal:   #23262e;   /* dark surfaces */
  --teal:       #1f8f9d;   /* brand primary */
  --teal-600:   #17727e;   /* darker teal for hovers */
  --teal-700:   #0f5a64;
  --teal-050:   #e7f3f4;   /* pale teal wash */
  --paper:      #1f8f9d;   /* brand teal — now the site background */
  --paper-2:    #17727e;   /* darker teal for alternating sections */
  --surface:    #0f5a64;   /* deep teal card surface */
  --surface-2:  #0b4a52;   /* deeper teal */
  --terracotta: #e08a6c;   /* warm accent (lifted for teal bg) */
  --gold:       #f0c674;   /* highlight / stars (lifted for teal bg) */
  --white:      #ffffff;
  --muted:      rgba(255,255,255,.82);   /* secondary text on teal */
  --line:       rgba(255,255,255,.18);   /* hairline borders on teal */

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Effects */
  --radius:      18px;
  --radius-sm:   12px;
  --shadow-sm:   0 2px 10px rgba(23, 25, 31, .06);
  --shadow-md:   0 14px 40px rgba(23, 25, 31, .10);
  --shadow-lg:   0 28px 70px rgba(23, 25, 31, .16);
  --transition:  .35s cubic-bezier(.4, 0, .2, 1);
  --container:   1180px;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }

p { color: var(--muted); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- 3. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.6rem; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 10px 24px rgba(31,143,157,.32); }
.btn-primary:hover { background: var(--teal-600); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(31,143,157,.4); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(23,25,31,.18); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-600); transform: translateY(-3px); }
.btn-warm { background: var(--terracotta); color: var(--white); }
.btn-warm:hover { background: #b25538; transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ---------- 4. HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(246,241,233,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(246,241,233,.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 104px; }

/* Header shows the badge on its own, larger — the wordmark is dropped here */
.site-header .logo-mark { width: 88px; height: 88px; }
.site-header .logo-text { display: none; }

.logo { display: flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 600; }
.logo-mark { width: 52px; height: 52px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-size: 1.02rem; letter-spacing: .01em; }
.logo-text span { font-family: var(--font-body); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-600); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav ul { display: flex; gap: 1.9rem; }
.main-nav a { font-weight: 500; font-size: .97rem; position: relative; padding: .3rem 0; color: var(--ink); }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--teal); transition: var(--transition); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--teal-600); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- 5. HERO ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 6.5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 85% 15%, rgba(31,143,157,.14), transparent 60%),
    radial-gradient(50% 50% at 8% 90%, rgba(201,106,74,.12), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.hero-badge { display: inline-flex; align-items: center; gap: .6rem; background: var(--white); border: 1px solid var(--line); padding: .45rem .9rem; border-radius: 100px; font-size: .82rem; font-weight: 500; box-shadow: var(--shadow-sm); margin-bottom: 1.4rem; }
.hero-badge .pill { background: var(--teal-050); color: var(--teal-700); font-weight: 700; padding: .1rem .55rem; border-radius: 100px; font-size: .76rem; }

.hero-text h1 { margin-bottom: 1.1rem; }
.hero-text .highlight { color: var(--teal); position: relative; font-style: italic; }
.hero-slogan { font-size: 1.16rem; max-width: 34ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.4rem; }

.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--teal-700); }
.hero-stats span { font-size: .82rem; color: var(--muted); }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; background: var(--charcoal);
  border: 10px solid var(--white); outline: 1px solid var(--line);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; left: -22px; bottom: 34px; background: var(--white);
  border-radius: var(--radius-sm); padding: .9rem 1.15rem; display: flex; align-items: center; gap: .8rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  animation: floaty 4.5s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-card .fc-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-050); color: var(--teal); display: grid; place-items: center; flex-shrink: 0; }
.float-card strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.float-card span { font-size: .78rem; color: var(--muted); }

/* ---------- 6. SECTIONS ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--charcoal); color: #e9e6df; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #b6b8bf; }

.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow { display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: .8rem; }
.section-head h2 { margin-bottom: .9rem; }
.section-head > p { font-size: 1.06rem; }

.center-btn { text-align: center; margin-top: 2.6rem; }

/* ---------- 7. GRID HELPERS ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 8. CARDS ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.benefit-card { padding: 2rem 1.6rem; text-align: left; }
.icon-circle { width: 58px; height: 58px; border-radius: 16px; background: var(--teal-050); color: var(--teal); display: grid; place-items: center; margin-bottom: 1.2rem; }
.benefit-card h3 { margin-bottom: .55rem; }
.benefit-card p { font-size: .95rem; }

/* Session / course cards */
.course-card { overflow: hidden; display: flex; flex-direction: column; }
.course-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.course-tag { position: absolute; top: 14px; left: 14px; background: var(--white); color: var(--teal-700); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 100px; box-shadow: var(--shadow-sm); }
.course-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.rating { color: var(--gold); font-size: .95rem; margin-bottom: .5rem; letter-spacing: .06em; }
.rating span { color: var(--muted); font-size: .82rem; margin-left: .3rem; }
.course-body h3 { margin-bottom: .5rem; }
.course-body p { font-size: .94rem; margin-bottom: 1.1rem; flex: 1; }
.course-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 1rem; }
.course-meta .price { font-family: var(--font-display); font-size: 1.4rem; color: var(--teal-700); font-weight: 600; }
.course-meta .price small { font-size: .8rem; color: var(--muted); font-family: var(--font-body); }
.link-arrow { font-weight: 600; font-size: .9rem; color: var(--teal-600); }
.link-arrow:hover { color: var(--terracotta); }

/* Detailed course list (classes page) */
.course-detail { display: grid; grid-template-columns: 260px 1fr auto; gap: 1.8rem; align-items: center; padding: 1.8rem; }
.course-detail .cd-media { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.course-detail .cd-media img { width: 100%; height: 100%; object-fit: cover; }
.course-detail h3 { margin-bottom: .4rem; }
.course-detail .cd-facts { display: flex; flex-wrap: wrap; gap: .6rem; margin: .9rem 0; }
.chip { display: inline-flex; align-items: center; gap: .4rem; background: var(--teal-050); color: var(--teal-700); font-size: .8rem; font-weight: 600; padding: .35rem .8rem; border-radius: 100px; }
.chip.warm { background: #f8e9e2; color: var(--terracotta); }
.cd-cta { display: flex; flex-direction: column; align-items: flex-end; gap: .7rem; text-align: right; }
.cd-cta .price { font-family: var(--font-display); font-size: 1.9rem; color: var(--teal-700); }
.cd-cta .price small { font-size: .8rem; font-family: var(--font-body); color: var(--muted); display: block; }

/* ---------- 9. STEPS ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.step-card { position: relative; padding: 2rem 1.4rem 1.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-display); font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 1.1rem; }
.step-card h3 { margin-bottom: .5rem; }
.step-card p { font-size: .92rem; }

/* ---------- 10. STATS BAND ---------- */
.stats-band { background: linear-gradient(135deg, var(--teal-700), var(--teal)); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-item .num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 600; line-height: 1; }
.stat-item .label { font-size: .9rem; opacity: .85; margin-top: .4rem; letter-spacing: .03em; }

/* ---------- 11. TESTIMONIALS SLIDER ---------- */
.slider { position: relative; max-width: 780px; margin: 0 auto; overflow: hidden; }
.slides { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.slide { min-width: 100%; padding: 2.6rem 3rem; text-align: center; }
.slide .stars { color: var(--gold); font-size: 1.15rem; letter-spacing: .12em; margin-bottom: 1.1rem; }
.slide blockquote { font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.45rem); line-height: 1.5; color: var(--ink); font-style: italic; margin-bottom: 1.6rem; }
.slide-author { display: inline-flex; align-items: center; gap: .8rem; }
.slide-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.slide-author strong { display: block; font-family: var(--font-display); }
.slide-author span { font-size: .82rem; color: var(--muted); }

.slider-btn { position: absolute; top: 42%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); transition: var(--transition); z-index: 2; }
.slider-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.slider-btn.prev { left: 4px; }
.slider-btn.next { right: 4px; }
.slider-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; transition: var(--transition); }
.slider-dots button.active { background: var(--teal); width: 28px; border-radius: 100px; }

/* ---------- 12. FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .9rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--ink); padding: 1.15rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q .plus { color: var(--teal); font-size: 1.5rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 1.4rem 1.2rem; font-size: .95rem; }
.faq-a a { color: var(--teal-600); font-weight: 600; text-decoration: underline; }

/* ---------- 13. CTA BAND ---------- */
.cta-band { background: var(--ink); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: #b8bac0; max-width: 46ch; }
.cta-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.cta-band .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* ---------- 14. PAGE HEADER (inner pages) ---------- */
.page-hero { background: linear-gradient(135deg, var(--charcoal), var(--ink)); color: #fff; padding: clamp(3rem, 7vw, 5rem) 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 80% 0%, rgba(31,143,157,.35), transparent 60%); }
.page-hero .inner { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: .8rem; }
.page-hero p { color: #c7c9cf; max-width: 60ch; margin: 0 auto; }
.breadcrumb { font-size: .85rem; color: #9aa0a8; margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--teal); }

/* ---------- 15. ABOUT ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.about-split > div:has(img) { display: flex; min-height: 340px; }
.about-split img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-split .lead { font-size: 1.12rem; color: var(--ink); margin-bottom: 1.1rem; }
.stack > * + * { margin-top: 1rem; }

.value-card { padding: 1.8rem 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.value-card .icon-circle { margin-bottom: 1rem; }

.team-card { text-align: center; overflow: hidden; }
.team-card .photo { aspect-ratio: 1; overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .photo img { transform: scale(1.05); }
.team-card .team-body { padding: 1.3rem; }
.team-card h3 { margin-bottom: .2rem; }
.team-card .role { color: var(--teal-600); font-weight: 600; font-size: .88rem; margin-bottom: .6rem; }
.team-card p { font-size: .9rem; }

/* ---------- 16. VENUES ---------- */
.venue-card { padding: 1.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); border-left: 4px solid var(--teal); }
.venue-card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.venue-card .addr { font-size: .92rem; }
.venue-card .postcode { display: inline-block; margin-top: .6rem; font-weight: 700; color: var(--teal-700); font-size: .85rem; letter-spacing: .05em; }

/* ---------- 17. FORMS ---------- */
.form-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: clamp(1.6rem, 3vw, 2.4rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; }
.field label .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(31,143,157,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--terracotta); background: #fdf3f0; }
.field .error-msg { display: none; color: var(--terracotta); font-size: .82rem; margin-top: .4rem; font-weight: 500; }
.field.invalid .error-msg { display: block; }

.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; animation: pop .4s ease; }
@keyframes pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success .tick { width: 74px; height: 74px; border-radius: 50%; background: var(--teal-050); color: var(--teal); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.form-success h3 { font-size: 1.6rem; margin-bottom: .6rem; }

.info-panel { background: var(--charcoal); color: #e9e6df; border-radius: var(--radius); padding: 2rem 1.8rem; }
.info-panel h3 { color: #fff; margin-bottom: 1.2rem; }
.info-list { display: flex; flex-direction: column; gap: 1.1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .ic { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.info-list strong { display: block; color: #fff; font-family: var(--font-body); font-size: .95rem; }
.info-list span { color: #aeb1b8; font-size: .9rem; }

/* ---------- 18. CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.contact-tile { text-align: center; padding: 2rem 1.4rem; }
.contact-tile .icon-circle { margin: 0 auto 1rem; }
.contact-tile h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.contact-tile a { color: var(--teal-600); font-weight: 600; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid #fff; outline: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- 19. FOOTER ---------- */
.site-footer { background: var(--ink); color: #b8bac0; padding: 3.6rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 2rem; padding-bottom: 2.6rem; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col p { font-size: .92rem; margin-top: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .92rem; transition: var(--transition); }
.footer-col a:hover { color: var(--teal); }
.footer-logo .logo-text strong { color: #fff; }
.socials { display: flex; flex-direction: column; gap: .6rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .6rem; }
.footer-bottom p { font-size: .84rem; color: #8a8d95; }
.footer-credit { line-height: 1; }
.jarvis-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .85rem .4rem .45rem;
  border: 1px solid rgba(255,255,255,.12); border-radius: 100px;
  background: rgba(255,255,255,.035); color: #cfd2d8; font-size: .82rem; line-height: 1;
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.jarvis-badge b { color: var(--gold); font-weight: 700; }
.jarvis-badge:hover {
  border-color: var(--gold); background: rgba(255,255,255,.07);
  transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.4);
}
.jarvis-mark {
  width: 22px; height: 22px; border-radius: 6px; flex: none;
  filter: drop-shadow(0 0 8px rgba(198,242,78,.45)); transition: transform .3s ease;
}
.jarvis-badge:hover .jarvis-mark { transform: rotate(-6deg) scale(1.1); }

/* ---------- 20. SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- 21. RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .about-split, .form-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .course-detail { grid-template-columns: 1fr; text-align: left; }
  .cd-cta { align-items: flex-start; text-align: left; }
}

@media (max-width: 760px) {
  /* Mobile nav */
  .main-nav {
    position: fixed; inset: 104px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); padding: 1rem 1.5rem 2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-120%); transition: transform .4s cubic-bezier(.4,0,.2,1);
    max-height: calc(100vh - 104px); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li { border-bottom: 1px solid var(--line); }
  .main-nav ul a { display: block; padding: 1rem 0; font-size: 1.05rem; }
  .main-nav a::after { display: none; }
  .nav-cta { margin-top: 1.2rem; width: 100%; }
  .hamburger { display: flex; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .slide { padding: 2rem 1.2rem; }
  .slider-btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

/* =========================================================================
   22. FULL TEAL THEME  — teal background, white text, deep-teal cards.
   Kept as a single override layer so the base structure above stays intact.
   ========================================================================= */

/* Logo now the cleaned transparent white line-art — floats on any background */
img.logo-mark { object-fit: contain; }

/* Text colours on teal */
body { color: #fff; }
h1, h2, h3, h4 { color: #fff; }
.hero-slogan, .about-split .lead { color: #fff; }

/* Header / nav on teal */
.site-header { background: rgba(31,143,157,.82); }
.site-header.scrolled { background: rgba(23,114,126,.96); border-bottom-color: var(--line); }
.main-nav a { color: #fff; }
.main-nav a.active { color: var(--gold); }
.main-nav a.nav-cta { color: var(--teal-700); }
.main-nav a.nav-cta:hover { color: var(--teal-700); }
.main-nav a::after { background: var(--gold); }
.logo-text strong { color: #fff; }
.logo-text span { color: rgba(255,255,255,.82); }
.hamburger span { background: #fff; }

/* Cards & surfaces → deep teal */
.card { background: var(--surface); border-color: var(--line); color: #fff; box-shadow: var(--shadow-md); }
.step-card, .value-card, .venue-card, .faq-item, .form-card, .team-card { background: var(--surface); border-color: var(--line); }
.section-alt { background: var(--paper-2); }
.hero-badge, .float-card { background: var(--surface); border-color: var(--line); }
.float-card strong { color: #fff; }

/* Buttons — white primary pops on teal */
.btn-primary { background: #fff; color: var(--teal-700); box-shadow: 0 10px 24px rgba(0,0,0,.20); }
.btn-primary:hover { background: #f1ece3; color: var(--teal-700); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.28); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.10); }

/* Accents that used dark teal now use gold / light so they read on teal */
.hero-text .highlight { color: var(--gold); }
.hero-stats strong { color: var(--gold); }
.price, .course-meta .price, .cd-cta .price { color: var(--gold); }
.course-meta .price small, .cd-cta .price small { color: var(--muted); }
.link-arrow { color: #cdeef1; }
.link-arrow:hover { color: var(--gold); }
.step-num { background: var(--gold); color: var(--ink); }
.slide blockquote { color: #fff; }
.slide-author strong { color: #fff; }
.faq-q { color: #fff; }
.faq-q .plus { color: var(--gold); }
.faq-a a { color: var(--gold); }
.venue-card { border-left-color: var(--gold); }
.venue-card .postcode { color: var(--gold); }
.contact-tile a { color: var(--gold); }
.team-card .role { color: var(--gold); }

/* Stats band — darker so it stands off the teal body */
.stats-band { background: linear-gradient(135deg, var(--surface-2), var(--surface)); }

/* Page banners stay in the teal family */
.page-hero { background: linear-gradient(135deg, var(--teal-700), var(--teal-600)); }

/* Form fields keep white inputs with dark text for readability */
.field label, .form-card h2 { color: #fff; }
.field input, .field select, .field textarea { background: #fff; color: var(--ink); border-color: rgba(0,0,0,.12); }
.field input::placeholder, .field textarea::placeholder { color: #98a0a8; }

/* ---------- 17. GALLERY SLIDESHOW ---------- */
.gallery-slider { position: relative; max-width: 960px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: #000; }
.gallery-slider .gs-viewport { overflow: hidden; }
.gallery-slider .gs-track { display: flex; transition: transform .55s cubic-bezier(.4,.0,.2,1); }
.gallery-slider .gs-slide { position: relative; min-width: 100%; aspect-ratio: 3/2; background: #0b0b0b; }
.gallery-slider .gs-slide img,
.gallery-slider .gs-slide video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.gs-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; color: var(--teal-700); font-size: 1.7rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); transition: var(--transition); z-index: 3; }
.gs-btn:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.gs-btn.gs-prev { left: 12px; }
.gs-btn.gs-next { right: 12px; }
.gs-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: .5rem; z-index: 3; }
.gs-dots button { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none; background: rgba(255,255,255,.5); cursor: pointer; transition: var(--transition); }
.gs-dots button.active { background: #fff; transform: scale(1.3); }
.gs-counter { position: absolute; top: 12px; right: 14px; z-index: 3; background: rgba(0,0,0,.5); color: #fff; font-size: .78rem; font-weight: 600; padding: .25rem .6rem; border-radius: 100px; letter-spacing: .03em; }
.gs-slide.gs-video::after { content: ""; }
@media (max-width: 600px) { .gs-btn { width: 40px; height: 40px; font-size: 1.4rem; } }

/* ---------- 18. FIXED BRAND BACKGROUND (non-scrolling watermark) ---------- */
/* A softened, centred logo that stays put while the page scrolls. The logo's
   field is recoloured to the site teal (--paper) so it blends seamlessly. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--paper) url("../images/logo-bg.png") center center / min(64vmin, 520px) no-repeat;
  opacity: .5;
  pointer-events: none;
}
