/* ============================================
   Brain Bloom Education — Site Stylesheet
   ============================================ */

:root {
  --navy: #1E3A5F;
  --navy-deep: #14283F;
  --coral: #FF8B8B;
  --coral-soft: #FFB3B3;
  --light-blue: #C3D7EF;
  --light-blue-soft: #E4EDF8;
  --gold: #F4C542;
  --white: #FFFFFF;
  --cream: #FBF8F3;
  --ink: #0F1F33;
  --muted: #5A6B80;
  --border: #E5E0D5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-soft: 0 8px 32px rgba(30, 58, 95, 0.08);
  --shadow-lift: 0 16px 48px rgba(30, 58, 95, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; }

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.125rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
  display: inline-block;
}

.eyebrow.gold { color: var(--gold); }
.eyebrow.navy { color: var(--navy); }

p { font-size: 1.0625rem; line-height: 1.7; color: var(--ink); }
p.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; }
section.tight { padding: 4rem 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 4rem 0; }
}

/* ============================================
   Header / Nav
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

/* Announcement bar above header — scrolls away naturally */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-brand span { color: var(--coral); }

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--coral); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 139, 139, 0.35);
}
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.25);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--navy);
  color: var(--gold);
}

.btn-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle at center, var(--light-blue-soft) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--coral-soft);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.card-icon.coral { background: rgba(255, 139, 139, 0.18); }
.card-icon.gold { background: rgba(244, 197, 66, 0.22); }

.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--muted); }

/* Service cards (richer variant) */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.service-card-header {
  padding: 2rem 2rem 1rem;
  background: linear-gradient(135deg, var(--light-blue-soft), var(--cream));
  border-bottom: 1px solid var(--border);
}

.service-card-header .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.service-card-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.service-card-body li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--muted);
}

.service-card-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

.service-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================
   Sections — variants
   ============================================ */

.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255, 255, 255, 0.85); }
.section-navy .eyebrow { color: var(--gold); }

.section-light-blue {
  background: var(--light-blue-soft);
}

.section-cream {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

/* ============================================
   3 C's feature row
   ============================================ */

.three-cs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.c-block {
  text-align: center;
  padding: 2rem 1.5rem;
}

.c-letter {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
  margin-bottom: 1rem;
  font-style: italic;
}

.c-block:nth-child(2) .c-letter { color: var(--gold); }
.c-block:nth-child(3) .c-letter { color: var(--navy); }

.c-block h3 { margin-bottom: 0.5rem; }
.c-block p { color: var(--muted); font-size: 0.9375rem; }

@media (max-width: 860px) {
  .three-cs { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   Testimonial / quote block
   ============================================ */

.quote-block {
  background: var(--white);
  border-left: 4px solid var(--coral);
  padding: 2.5rem 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-soft);
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--coral-soft);
  line-height: 1;
  font-weight: 700;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quote-attribution {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================
   CTA banner
   ============================================ */

.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 1rem auto 2rem; position: relative; }
.cta-banner .btn { position: relative; }

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.75rem; }
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--coral); }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--coral); }

.footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   Page hero (interior pages)
   ============================================ */

.page-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--light-blue-soft) 0%, var(--cream) 100%);
  text-align: center;
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p.lead { max-width: 640px; margin: 0 auto; }

/* ============================================
   Camp page specifics
   ============================================ */

.camp-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.camp-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.12) 0%, transparent 60%);
}

.camp-hero h1 { color: var(--white); }
.camp-hero .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.camp-hero p { color: rgba(255, 255, 255, 0.85); }
.camp-hero .container { position: relative; z-index: 1; }

.camp-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.meta-item .meta-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.meta-item .meta-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

@media (max-width: 860px) {
  .camp-meta { grid-template-columns: 1fr 1fr; }
}

.timetable {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.timetable-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.timetable-row:last-child { border-bottom: none; }

.timetable-time {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral);
  font-size: 1rem;
}

.timetable-activity h4 { margin-bottom: 0.25rem; font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
.timetable-activity p { font-size: 0.9375rem; color: var(--muted); margin: 0; }

/* ============================================
   Contact form
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-block {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.contact-info-block h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-info-block p { font-size: 1.125rem; color: var(--navy); font-weight: 500; }
.contact-info-block a { color: var(--navy); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--coral);
}

.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   About page
   ============================================ */

.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
  height: 100%;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-soft), var(--light-blue));
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
}

.founder-card h3 { margin-bottom: 0.25rem; }
.founder-role {
  font-size: 0.875rem;
  color: var(--coral);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* ============================================
   FAQ accordion
   ============================================ */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-weight: 700;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.75rem;
  color: var(--coral);
  font-weight: 300;
  transition: transform 0.3s;
}

details[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in.delay-1 { animation-delay: 0.15s; opacity: 0; }
.fade-in.delay-2 { animation-delay: 0.3s; opacity: 0; }
.fade-in.delay-3 { animation-delay: 0.45s; opacity: 0; }

/* ============================================
   Utilities
   ============================================ */

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================
   Announcement bar (top of page)
   ============================================ */

.announcement-bar {
  background: linear-gradient(135deg, var(--coral) 0%, #FF7373 100%);
  color: var(--white);
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  z-index: 101;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
  margin-left: 0.5rem;
}

.announcement-bar .code-pill {
  background: var(--gold);
  color: var(--navy);
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0.4rem;
  font-size: 0.875rem;
  display: inline-block;
}

@media (max-width: 720px) {
  .announcement-bar { font-size: 0.8125rem; padding: 0.6rem 0.75rem; }
}

/* ============================================
   Camp marketing block (homepage)
   ============================================ */

.camp-feature {
  background: linear-gradient(135deg, var(--navy) 0%, #25467A 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.camp-feature::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 160%;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.camp-feature::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 139, 139, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.camp-feature-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.camp-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 139, 139, 0.18);
  border: 1px solid var(--coral);
  color: var(--coral-soft);
  padding: 0.5rem 1rem;
  border-radius: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.camp-feature-tag .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.camp-feature h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.camp-feature h2 .highlight {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.camp-feature .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
}

.discount-card {
  background: linear-gradient(135deg, var(--gold) 0%, #FFD466 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: var(--navy);
  text-align: center;
  position: relative;
  box-shadow: 0 12px 32px rgba(244, 197, 66, 0.35);
  transform: rotate(-1.5deg);
}

.discount-card .discount-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}

.discount-card .discount-amount .pct { font-size: 2.5rem; vertical-align: 0.5rem; }

.discount-card .discount-label {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-top: 0.25rem;
}

.discount-card .code-pill {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin: 1.25rem 0 0.75rem;
  font-family: var(--font-body);
}

.discount-card .deadline {
  font-size: 0.9375rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: 0.25rem;
}

.camp-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}

.camp-meta-pills .pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.camp-meta-pills .pill strong { color: var(--gold); margin-right: 0.4rem; }

.camp-feature-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}

.btn-camp {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 1.05rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(244, 197, 66, 0.4);
}

.btn-camp:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 197, 66, 0.5);
}

.urgency-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 860px) {
  .camp-feature { padding: 3rem 2rem; }
  .camp-feature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .discount-card { transform: none; max-width: 320px; margin: 0 auto; }
}

/* ============================================
   Countdown timer
   ============================================ */

.countdown {
  display: flex;
  gap: 0.75rem;
  margin: 1.75rem 0 1.5rem;
  flex-wrap: wrap;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  text-align: center;
  min-width: 72px;
  backdrop-filter: blur(4px);
}

.countdown-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
  display: block;
}

.countdown-prefix {
  display: block;
  font-size: 0.8125rem;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.countdown-expired {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--coral);
  font-style: italic;
  padding: 1rem 0;
}

/* Light background variant (for camp page hero) */
.countdown-light .countdown-unit {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
  .countdown-unit { padding: 0.7rem 0.75rem; min-width: 62px; }
  .countdown-number { font-size: 1.625rem; }
  .countdown-label { font-size: 0.625rem; }
}

/* ============================================
   Founder portrait section (About page)
   ============================================ */

.founder-section {
  padding: 6rem 0;
  background: var(--cream);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.founder-portrait {
  position: relative;
}

.founder-portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--light-blue-soft);
  aspect-ratio: 4/5;
}

.founder-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-portrait::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--coral);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.founder-portrait-frame {
  position: relative;
  z-index: 1;
}

.founder-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(244, 197, 66, 0.4);
  z-index: 2;
  text-align: center;
  max-width: 200px;
}

.founder-badge .badge-line-1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.founder-badge .badge-line-2 {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.25rem;
  display: block;
}

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.founder-title {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 0;
}

.credential-pill {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 24px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.credential-pill .pill-icon {
  color: var(--coral);
  margin-right: 0.4rem;
}

.founder-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy);
  font-size: 1.125rem;
}

.founder-signature::before {
  content: '— ';
  color: var(--coral);
}

@media (max-width: 860px) {
  .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-portrait::before { display: none; }
  .founder-badge { right: 1rem; bottom: -1rem; }
}

/* ============================================
   Image utilities
   ============================================ */

.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--light-blue-soft);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-frame.aspect-square { aspect-ratio: 1/1; }
.img-frame.aspect-portrait { aspect-ratio: 4/5; }
.img-frame.aspect-landscape { aspect-ratio: 4/3; }
.img-frame.aspect-wide { aspect-ratio: 16/9; }

.img-frame.with-accent::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--coral);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}

/* Card image header (replaces .card-icon emoji blocks) */
.card-image {
  margin: -2.5rem -2.5rem 1.5rem;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero with background image overlay */
.hero-with-bg {
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.hero-bg-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20,40,63,0.88) 0%, rgba(30,58,95,0.78) 100%);
  z-index: 1;
}

.camp-hero.hero-with-bg .container { position: relative; z-index: 2; }

/* Banner strip image (about-method style) */
.banner-strip {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
}

.banner-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .img-frame.with-accent::before { display: none; }
  .banner-strip { height: 220px; }
}

/* ============================================
   Mobile polish — phones 480px and below
   ============================================ */

@media (max-width: 600px) {
  /* Tighter container padding on small phones */
  .container { padding: 0 1.25rem; }

  /* Section padding tightened */
  section { padding: 3.5rem 0; }
  section.tight { padding: 2.5rem 0; }

  /* CTA banners — were 4rem 3rem, way too much on phone */
  .cta-banner { padding: 2.5rem 1.5rem; }
  .cta-banner h2 { font-size: 1.625rem; }
  .cta-banner .btn { width: 100%; }

  /* Hero stats — already stacked but tighten gap */
  .hero { padding: 3rem 0 4rem; }
  .hero-stats { margin-top: 2.5rem; padding-top: 2rem; }
  .stat-num { font-size: 2rem; }

  /* Page hero */
  .page-hero { padding: 3rem 0 2.5rem; }

  /* Quote block — reduce padding so it doesn't dominate */
  .quote-block { padding: 1.75rem 1.5rem 1.75rem 2rem; }
  .quote-block::before { font-size: 4.5rem; top: -0.5rem; left: 0.75rem; }
  .quote-block p { font-size: 1.125rem; }

  /* Buttons full-width on mobile for tap targets */
  .btn-cta-row { flex-direction: column; align-items: stretch; }
  .btn-cta-row .btn { width: 100%; }

  /* Cards tightened */
  .card { padding: 1.75rem 1.5rem; }
  .service-card-header { padding: 1.5rem 1.5rem 0.75rem; }
  .service-card-body { padding: 1.25rem 1.5rem 1.5rem; }

  /* Camp meta pills — go to single column on tightest screens */
  .camp-meta { grid-template-columns: 1fr; gap: 1rem; }
  .meta-item { padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .meta-item:last-child { border-bottom: none; }

  /* Camp hero */
  .camp-hero { padding: 4rem 0 3.5rem; }

  /* Countdown — keep all 4 units in a row, smaller */
  .countdown { gap: 0.5rem; justify-content: flex-start; }
  .countdown-unit { padding: 0.6rem 0.5rem; min-width: 0; flex: 1; }
  .countdown-number { font-size: 1.5rem; }
  .countdown-label { font-size: 0.625rem; letter-spacing: 0.08em; }

  /* Camp marketing block on homepage */
  .camp-feature { padding: 2.5rem 1.5rem; }
  .camp-feature h2 { font-size: 1.875rem; }
  .camp-feature .lead { font-size: 1rem; }
  .discount-card { transform: none; padding: 2rem 1.5rem; }
  .discount-card .discount-amount { font-size: 3.25rem; }
  .camp-meta-pills { gap: 0.5rem; margin: 1.25rem 0 1.5rem; }
  .camp-meta-pills .pill { font-size: 0.8125rem; padding: 0.4rem 0.75rem; }
  .btn-camp { width: 100%; padding: 1rem 1.5rem; }

  /* Pricing grid */
  .pricing-grid { gap: 1rem; margin-top: 2rem; }
  .price-card { padding: 1.5rem 1.25rem; }
  .price-card.featured { transform: none; }
  .price-amount { font-size: 2.5rem; }
  .price-extras { padding: 1.5rem; gap: 1.5rem; }

  /* FAQ */
  .faq-question { font-size: 1.0625rem; padding-right: 1.75rem; line-height: 1.35; }
  .faq-answer { font-size: 0.9375rem; }

  /* Announcement bar — keep readable */
  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.4;
  }
  .announcement-bar a { display: inline-block; margin-top: 0.2rem; }
  .announcement-bar .code-pill {
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    margin: 0 0.25rem;
  }

  /* Footer tighter */
  .site-footer { padding: 3rem 0 1.5rem; }
  .footer-grid { gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Founder portrait */
  .founder-section { padding: 4rem 0; }
  .founder-grid { gap: 2rem; }
  .founder-name { font-size: 2rem; }
  .founder-portrait::before { display: none; }
  .founder-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: -1rem auto 0;
    display: inline-block;
  }
  .founder-credentials { gap: 0.4rem; }
  .credential-pill { font-size: 0.75rem; padding: 0.4rem 0.8rem; }

  /* 3 C's */
  .c-letter { font-size: 4rem; }
  .c-block { padding: 1.5rem 0.5rem; }

  /* Banner strip — shorter on phone */
  .banner-strip { height: 180px; margin: 1.5rem 0; }

  /* Image frames spacing */
  .img-frame { border-radius: 8px; }

  /* Card image headers (camp included cards) */
  .card div[style*="height: 220px"] { height: 180px !important; }

  /* Service card list items */
  .service-card-body li { font-size: 0.875rem; padding: 0.4rem 0 0.4rem 1.25rem; }

  /* Timetable */
  .timetable { padding: 1.5rem; }
  .timetable-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 0.85rem 0; }
  .timetable-time { font-size: 0.875rem; color: var(--coral); font-weight: 700; }

  /* Contact form */
  .contact-info-block { padding: 1.5rem; }
  .form-group input, .form-group textarea, .form-group select {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
}

/* ============================================
   Extra small phones — 380px and below (iPhone SE etc)
   ============================================ */
@media (max-width: 380px) {
  .nav-brand { font-size: 1.25rem; }
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  .countdown-number { font-size: 1.25rem; }
  .discount-card .discount-amount { font-size: 2.75rem; }
  .price-amount { font-size: 2rem; }
  .camp-feature h2 { font-size: 1.625rem; }
  .announcement-bar { font-size: 0.6875rem; }
}
