/*
Theme Name: Cradle to Crea-Yon
Theme URI: https://cradletocreayon.com
Author: Cradle to Crea-Yon
Author URI: https://cradletocreayon.com
Description: A warm, modern, fully-configurable WordPress theme for Cradle to Crea-Yon — a play-based early childhood education and daycare centre. Every homepage section is configurable through the WordPress Customizer.
Version: 1.2.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cradle-to-creayon
Tags: education, children, daycare, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

/* ============================================================
   DESIGN TOKENS  (overridable via Customizer -> inline vars)
   ============================================================ */
:root {
  --c2c-primary: #6204a5;
  --c2c-primary-container: #7b2fbe;
  --c2c-secondary: #00668a;
  --c2c-secondary-container: #54c7ff;
  --c2c-tertiary: #840540;
  --c2c-crayon-red: #E8431A;
  --c2c-crayon-yellow: #F7C31A;
  --c2c-crayon-green: #8BC34A;

  --c2c-surface: #f8f9fa;
  --c2c-surface-container-lowest: #ffffff;
  --c2c-surface-container-low: #f3f4f5;
  --c2c-surface-border: #E9ECEF;

  --c2c-on-surface: #191c1d;
  --c2c-on-surface-variant: #4c4353;
  --c2c-text-main: #2D3436;
  --c2c-white: #ffffff;

  --c2c-radius-sm: 0.5rem;
  --c2c-radius-md: 0.75rem;
  --c2c-radius-lg: 1rem;
  --c2c-radius-xl: 1.5rem;
  --c2c-radius-full: 9999px;

  --c2c-shadow-card: 0 10px 40px rgba(98, 4, 165, 0.08);
  --c2c-shadow-card-hover: 0 18px 50px rgba(98, 4, 165, 0.14);
  --c2c-shadow-nav: 0 2px 20px rgba(98, 4, 165, 0.06);

  --c2c-container-max: 1200px;
  --c2c-section-gap: 80px;

  --c2c-font-head: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --c2c-font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--c2c-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c2c-text-main);
  background: var(--c2c-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--c2c-font-head);
  color: var(--c2c-on-surface);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

a { color: var(--c2c-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c2c-primary-container); }

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

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

.c2c-section { padding: var(--c2c-section-gap) 0; }

.c2c-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--c2c-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c2c-primary);
  margin-bottom: 14px;
}

.c2c-section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.c2c-section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
  color: var(--c2c-on-surface-variant);
  font-size: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.c2c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--c2c-radius-full);
  font-family: var(--c2c-font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
  line-height: 1;
}
.c2c-btn-primary {
  background: var(--c2c-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(98, 4, 165, 0.25);
}
.c2c-btn-primary:hover {
  background: var(--c2c-primary-container);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(98, 4, 165, 0.35);
}
.c2c-btn-ghost {
  background: rgba(0, 102, 138, 0.08);
  color: var(--c2c-secondary);
  border-color: rgba(0, 102, 138, 0.18);
}
.c2c-btn-ghost:hover {
  background: rgba(0, 102, 138, 0.15);
  color: var(--c2c-secondary);
  transform: translateY(-2px);
}
.c2c-btn-white {
  background: #fff;
  color: var(--c2c-primary);
}
.c2c-btn-white:hover { transform: translateY(-2px); color: var(--c2c-primary); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.c2c-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--c2c-shadow-nav);
}
.c2c-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.c2c-logo img { max-height: 46px; width: auto; }
.c2c-logo .c2c-site-title {
  font-family: var(--c2c-font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--c2c-primary);
}
.c2c-nav { display: flex; align-items: center; gap: 28px; }
.c2c-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.c2c-nav a {
  font-family: var(--c2c-font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--c2c-on-surface);
  position: relative;
  padding: 6px 0;
}
.c2c-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--c2c-primary);
  transition: width .25s ease;
  border-radius: 2px;
}
.c2c-nav li:nth-child(2n) a::after { background: var(--c2c-secondary); }
.c2c-nav li:nth-child(3n) a::after { background: var(--c2c-crayon-red); }
.c2c-nav a:hover::after { width: 100%; }

.c2c-header-actions { display: flex; align-items: center; gap: 18px; }
.c2c-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--c2c-secondary);
}

.c2c-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.c2c-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c2c-on-surface);
  border-radius: 2px;
  transition: .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.c2c-hero {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(123, 47, 190, 0.18), transparent 38%),
    radial-gradient(circle at 92% 80%, rgba(84, 199, 255, 0.18), transparent 42%),
    var(--c2c-surface);
}
.c2c-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.c2c-hero-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--c2c-surface-border);
  color: var(--c2c-primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: var(--c2c-radius-full);
  margin-bottom: 22px;
  box-shadow: var(--c2c-shadow-nav);
}
.c2c-hero-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.c2c-hero-title em {
  font-style: italic;
  color: var(--c2c-primary);
}
.c2c-hero-text {
  font-size: 17px;
  color: var(--c2c-on-surface-variant);
  max-width: 460px;
  margin-bottom: 28px;
}
.c2c-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.c2c-hero-media { position: relative; }
.c2c-hero-media img {
  border-radius: var(--c2c-radius-xl);
  box-shadow: var(--c2c-shadow-card);
  width: 100%;
  object-fit: cover;
}
.c2c-hero-float {
  position: absolute;
  left: -18px;
  bottom: -22px;
  background: #fff;
  border-radius: var(--c2c-radius-lg);
  box-shadow: var(--c2c-shadow-card);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.c2c-hero-float-icon {
  width: 38px; height: 38px;
  border-radius: var(--c2c-radius-full);
  background: var(--c2c-crayon-green);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.c2c-hero-float strong { font-family: var(--c2c-font-head); font-size: 17px; display: block; }
.c2c-hero-float span { font-size: 12px; color: var(--c2c-on-surface-variant); }

/* ============================================================
   STATS BAR
   ============================================================ */
.c2c-stats {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}
.c2c-stats-inner {
  background: #fff;
  border-radius: var(--c2c-radius-lg);
  box-shadow: var(--c2c-shadow-card);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 28px 20px;
}
.c2c-stat { padding: 6px 12px; }
.c2c-stat + .c2c-stat { border-left: 1px solid var(--c2c-surface-border); }
.c2c-stat-number {
  font-family: var(--c2c-font-head);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}
.c2c-stat:nth-child(1) .c2c-stat-number { color: var(--c2c-primary); }
.c2c-stat:nth-child(2) .c2c-stat-number { color: var(--c2c-secondary); }
.c2c-stat:nth-child(3) .c2c-stat-number { color: var(--c2c-crayon-red); }
.c2c-stat-label { font-size: 13px; color: var(--c2c-on-surface-variant); }

/* ============================================================
   FEATURES (Why Parents Trust)
   ============================================================ */
.c2c-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.c2c-feature {
  background: #fff;
  border-radius: var(--c2c-radius-lg);
  box-shadow: var(--c2c-shadow-card);
  padding: 24px 14px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.c2c-feature:hover { transform: translateY(-4px); box-shadow: var(--c2c-shadow-card-hover); }
.c2c-feature-icon {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  border-radius: var(--c2c-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.c2c-feature:nth-child(6n+1) .c2c-feature-icon { background: rgba(98,4,165,.1); color: var(--c2c-primary); }
.c2c-feature:nth-child(6n+2) .c2c-feature-icon { background: rgba(0,102,138,.1); color: var(--c2c-secondary); }
.c2c-feature:nth-child(6n+3) .c2c-feature-icon { background: rgba(232,67,26,.1); color: var(--c2c-crayon-red); }
.c2c-feature:nth-child(6n+4) .c2c-feature-icon { background: rgba(139,195,74,.15); color: var(--c2c-crayon-green); }
.c2c-feature:nth-child(6n+5) .c2c-feature-icon { background: rgba(247,195,26,.18); color: #c69500; }
.c2c-feature:nth-child(6n+6) .c2c-feature-icon { background: rgba(132,5,64,.1); color: var(--c2c-tertiary); }
.c2c-feature-title { font-size: 13px; font-weight: 700; color: var(--c2c-on-surface); }

/* ============================================================
   PROGRAMS
   ============================================================ */
.c2c-programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.c2c-program-card {
  background: #fff;
  border-radius: var(--c2c-radius-lg);
  box-shadow: var(--c2c-shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.c2c-program-card:hover { transform: translateY(-4px); box-shadow: var(--c2c-shadow-card-hover); }
.c2c-program-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.c2c-program-media img { width: 100%; height: 100%; object-fit: cover; }
.c2c-program-age {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--c2c-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--c2c-radius-full);
}
.c2c-program-card:nth-child(2) .c2c-program-age { background: var(--c2c-secondary); }
.c2c-program-card:nth-child(3) .c2c-program-age { background: var(--c2c-crayon-red); }
.c2c-program-card:nth-child(4) .c2c-program-age { background: var(--c2c-crayon-green); }
.c2c-program-body { padding: 22px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.c2c-program-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.c2c-program-desc { font-size: 14px; color: var(--c2c-on-surface-variant); margin-bottom: 16px; flex: 1; }
.c2c-program-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--c2c-on-surface-variant);
  margin-bottom: 8px;
}
.c2c-program-meta svg { color: var(--c2c-secondary); flex-shrink: 0; }
.c2c-program-card .c2c-btn { margin-top: 16px; width: 100%; }

/* ============================================================
   SCHEDULE (A Day Full of Wonder)
   ============================================================ */
.c2c-schedule { background: var(--c2c-surface-container-low); }

/* Daily schedule — responsive wrapping grid (fits on one screen, no scroll) */
.c2c-timeline-scroll {
  padding: 16px 0 4px;
  overflow: visible !important;
  width: 100%;
}
.c2c-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 16px;
  justify-content: center;
  min-width: 0 !important;
  width: 100%;
}
/* Cap very wide layouts so cards don't stretch oddly with few items */
@media (min-width: 1100px) {
  .c2c-timeline { grid-template-columns: repeat(6, 1fr); }
}
.c2c-timeline-item {
  position: relative;
  text-align: center;
  padding-top: 30px;
  min-width: 0 !important;
  flex: none !important;
}
/* Card holds an icon disc that overlaps the top edge */
.c2c-timeline-marker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.c2c-timeline-node {
  width: 56px; height: 56px;
  border-radius: var(--c2c-radius-full);
  display: flex; align-items: center; justify-content: center;
  background: var(--c2c-primary);
  color: #fff;
  box-shadow: var(--c2c-shadow-card);
  border: 4px solid var(--c2c-surface, #f8f9fa);
}
.c2c-timeline-card {
  background: #fff;
  border-radius: var(--c2c-radius-lg, 16px);
  box-shadow: var(--c2c-shadow-card);
  padding: 36px 14px 18px;
  height: 100%;
  border-top: 3px solid var(--c2c-primary);
  transition: transform .2s ease, box-shadow .2s ease;
}
.c2c-timeline-item:hover .c2c-timeline-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.c2c-timeline-time { font-family: var(--c2c-font-head); font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--c2c-primary); }
.c2c-timeline-label { font-size: 13px; color: var(--c2c-on-surface-variant); line-height: 1.4; }

/* Brand color cycle across timeline stops */
.c2c-timeline-item:nth-child(7n+1) .c2c-timeline-node { background: var(--c2c-primary); }
.c2c-timeline-item:nth-child(7n+1) .c2c-timeline-card { border-top-color: var(--c2c-primary); }
.c2c-timeline-item:nth-child(7n+1) .c2c-timeline-time { color: var(--c2c-primary); }

.c2c-timeline-item:nth-child(7n+2) .c2c-timeline-node { background: var(--c2c-secondary); }
.c2c-timeline-item:nth-child(7n+2) .c2c-timeline-card { border-top-color: var(--c2c-secondary); }
.c2c-timeline-item:nth-child(7n+2) .c2c-timeline-time { color: var(--c2c-secondary); }

.c2c-timeline-item:nth-child(7n+3) .c2c-timeline-node { background: var(--c2c-crayon-yellow); }
.c2c-timeline-item:nth-child(7n+3) .c2c-timeline-card { border-top-color: var(--c2c-crayon-yellow); }
.c2c-timeline-item:nth-child(7n+3) .c2c-timeline-time { color: #b8890a; }

.c2c-timeline-item:nth-child(7n+4) .c2c-timeline-node { background: var(--c2c-crayon-red); }
.c2c-timeline-item:nth-child(7n+4) .c2c-timeline-card { border-top-color: var(--c2c-crayon-red); }
.c2c-timeline-item:nth-child(7n+4) .c2c-timeline-time { color: var(--c2c-crayon-red); }

.c2c-timeline-item:nth-child(7n+5) .c2c-timeline-node { background: var(--c2c-crayon-green); }
.c2c-timeline-item:nth-child(7n+5) .c2c-timeline-card { border-top-color: var(--c2c-crayon-green); }
.c2c-timeline-item:nth-child(7n+5) .c2c-timeline-time { color: #5a8a26; }

.c2c-timeline-item:nth-child(7n+6) .c2c-timeline-node { background: var(--c2c-tertiary, var(--c2c-primary)); }
.c2c-timeline-item:nth-child(7n+6) .c2c-timeline-card { border-top-color: var(--c2c-tertiary, var(--c2c-primary)); }
.c2c-timeline-item:nth-child(7n+6) .c2c-timeline-time { color: var(--c2c-tertiary, var(--c2c-primary)); }

.c2c-timeline-item:nth-child(7n+7) .c2c-timeline-node { background: var(--c2c-secondary); }
.c2c-timeline-item:nth-child(7n+7) .c2c-timeline-card { border-top-color: var(--c2c-secondary); }
.c2c-timeline-item:nth-child(7n+7) .c2c-timeline-time { color: var(--c2c-secondary); }


/* ============================================================
   CTA
   ============================================================ */
.c2c-cta-inner {
  background: linear-gradient(135deg, var(--c2c-primary), var(--c2c-primary-container));
  border-radius: var(--c2c-radius-xl);
  text-align: center;
  padding: 60px 30px;
  color: #fff;
  box-shadow: var(--c2c-shadow-card);
}
.c2c-cta-inner h2 { color: #fff; font-size: 36px; font-weight: 800; margin-bottom: 14px; }
.c2c-cta-inner p { color: rgba(255,255,255,0.88); max-width: 520px; margin: 0 auto 28px; }
.c2c-cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.c2c-cta-wa { color: #fff; font-weight: 700; }
.c2c-cta-wa a { color: #fff; text-decoration: underline; }

/* ============================================================
   CONTACT / VISIT
   ============================================================ */
.c2c-contact-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.c2c-contact-lead { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.c2c-contact-text { color: var(--c2c-on-surface-variant); margin: 0 auto; }

.c2c-branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}
.c2c-branch-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c2c-surface-border);
  border-top: 4px solid var(--c2c-primary);
  border-radius: var(--c2c-radius-xl, 20px);
  padding: 30px 26px 26px;
  box-shadow: var(--c2c-shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.c2c-branch-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.12); }
.c2c-branch-card:nth-child(2n) { border-top-color: var(--c2c-secondary); }
.c2c-branch-card:nth-child(3n) { border-top-color: var(--c2c-crayon-red); }
.c2c-branch-badge {
  width: 44px; height: 44px;
  border-radius: var(--c2c-radius-full);
  background: color-mix(in srgb, var(--c2c-primary) 14%, #fff);
  color: var(--c2c-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.c2c-branch-card:nth-child(2n) .c2c-branch-badge { background: color-mix(in srgb, var(--c2c-secondary) 14%, #fff); color: var(--c2c-secondary); }
.c2c-branch-card:nth-child(3n) .c2c-branch-badge { background: color-mix(in srgb, var(--c2c-crayon-red) 14%, #fff); color: var(--c2c-crayon-red); }
.c2c-branch-name { font-size: 20px; font-weight: 700; margin: 0 0 16px; }
.c2c-branch-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; line-height: 1.5; color: var(--c2c-text-main); }
.c2c-branch-row-icon { color: var(--c2c-primary); flex-shrink: 0; margin-top: 2px; }
.c2c-branch-row-text a { color: var(--c2c-secondary); font-weight: 600; text-decoration: none; }
.c2c-branch-row-text a:hover { text-decoration: underline; }
.c2c-branch-wa { margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; }

.c2c-contact-extra {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 48px;
  padding-top: 24px; border-top: 1px solid var(--c2c-surface-border);
}
.c2c-contact-block-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--c2c-on-surface-variant);
  margin-bottom: 6px;
}
.c2c-contact-block-label svg { color: var(--c2c-primary); }
.c2c-contact-block-value { font-size: 14px; color: var(--c2c-text-main); }

/* ============================================================
   FOOTER
   ============================================================ */
.c2c-footer { background: #fff; border-top: 1px solid var(--c2c-surface-border); padding-top: 56px; }
.c2c-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}
.c2c-footer-contact ul { list-style: none; margin: 0; padding: 0; }
.c2c-footer-branch { margin-bottom: 16px; }
.c2c-footer-branch:last-of-type { margin-bottom: 10px; }
.c2c-footer-branch-name {
  font-family: var(--c2c-font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--c2c-on-surface);
  margin-bottom: 6px;
}
.c2c-footer-contact-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--c2c-on-surface-variant);
  margin-bottom: 12px;
  line-height: 1.5;
}
.c2c-footer-contact-item svg { color: var(--c2c-primary); flex-shrink: 0; margin-top: 3px; }
.c2c-footer-contact-item a { color: var(--c2c-on-surface-variant); }
.c2c-footer-contact-item a:hover { color: var(--c2c-primary); }
.c2c-footer-about { max-width: 340px; }
.c2c-footer-about img { max-height: 42px; width: auto; margin-bottom: 16px; }
.c2c-footer-about p { font-size: 14px; color: var(--c2c-on-surface-variant); }
.c2c-footer-social { display: flex; gap: 12px; margin-top: 16px; }
.c2c-footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--c2c-radius-full);
  background: var(--c2c-surface-container-low);
  display: flex; align-items: center; justify-content: center;
  color: var(--c2c-primary);
  transition: background .2s ease, transform .2s ease;
}
.c2c-footer-social a:hover { background: rgba(98,4,165,.1); transform: translateY(-2px); }
.c2c-footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c2c-primary);
  margin-bottom: 18px;
}
.c2c-footer-col ul { list-style: none; margin: 0; padding: 0; }
.c2c-footer-col li { margin-bottom: 10px; }
.c2c-footer-col a { font-size: 14px; color: var(--c2c-on-surface-variant); }
.c2c-footer-col a:hover { color: var(--c2c-primary); }
.c2c-footer-bottom {
  border-top: 1px solid var(--c2c-surface-border);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: var(--c2c-on-surface-variant);
}

/* ============================================================
   GENERIC PAGE / POST
   ============================================================ */
.c2c-page { padding: 60px 0; }
.c2c-page-title { font-size: 38px; font-weight: 800; margin-bottom: 24px; }
.c2c-entry { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.7; }
.c2c-entry img { border-radius: var(--c2c-radius-lg); margin: 24px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .c2c-features-grid { grid-template-columns: repeat(3, 1fr); }
  .c2c-programs-grid { grid-template-columns: repeat(2, 1fr); }
  .c2c-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .c2c-nav, .c2c-header-phone { display: none; }
  .c2c-menu-toggle { display: flex; }
  .c2c-nav.is-open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: var(--c2c-shadow-card);
  }
  .c2c-nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; }
  .c2c-hero-grid { grid-template-columns: 1fr; }
  .c2c-hero-title { font-size: 36px; }
  .c2c-hero-media { order: -1; }
  .c2c-contact-extra { gap: 28px; }
  .c2c-footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --c2c-section-gap: 56px; }
  .c2c-container { padding: 0 20px; }
  .c2c-hero-title { font-size: 30px; }
  .c2c-section-title, .c2c-contact-lead { font-size: 26px; }
  .c2c-stats-inner { grid-template-columns: 1fr; gap: 18px; }
  .c2c-stat + .c2c-stat { border-left: none; border-top: 1px solid var(--c2c-surface-border); padding-top: 18px; }
  .c2c-features-grid { grid-template-columns: repeat(2, 1fr); }
  .c2c-programs-grid { grid-template-columns: 1fr; }
  .c2c-cta-inner h2 { font-size: 28px; }
  .c2c-branches-grid { grid-template-columns: 1fr; gap: 20px; }
  .c2c-contact-extra { flex-direction: column; gap: 20px; text-align: left; }
  .c2c-hero-actions { flex-direction: column; align-items: stretch; }
  .c2c-hero-actions .c2c-btn { justify-content: center; width: 100%; }
  .c2c-timeline { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 12px; }
}

/* Extra-small phones */
@media (max-width: 420px) {
  .c2c-container { padding: 0 16px; }
  .c2c-hero-title { font-size: 26px; }
  .c2c-features-grid { grid-template-columns: 1fr; }
  .c2c-header-actions .c2c-btn { font-size: 13px; padding: 9px 14px; }
  .c2c-branch-card { padding: 24px 20px 22px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.c2c-about-intro {
  background: #fff;
  border-radius: var(--c2c-radius-xl);
  box-shadow: var(--c2c-shadow-card);
  padding: 40px 44px;
  margin-bottom: 56px;
}
.c2c-about-intro-title { font-size: 26px; font-weight: 700; margin-bottom: 14px; }
.c2c-about-intro-body { font-size: 16px; color: var(--c2c-text-main); }
.c2c-about-intro-body p { margin-bottom: 12px; }
.c2c-about-intro-body p:last-child { margin-bottom: 0; }
.c2c-about-intro-body strong { color: var(--c2c-primary); }

.c2c-about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}
.c2c-about-mv-card {
  background: #f3ecfa; /* fallback soft purple */
  background: color-mix(in srgb, var(--c2c-primary) 9%, #fff);
  border: 1px solid #e0cdf2;
  border: 1px solid color-mix(in srgb, var(--c2c-primary) 22%, #fff);
  border-radius: var(--c2c-radius-xl, 20px);
  box-shadow: var(--c2c-shadow-card);
  padding: 32px 30px;
  border-top: 4px solid var(--c2c-primary);
  transition: transform .2s ease, box-shadow .2s ease;
}
.c2c-about-mv-card:hover { transform: translateY(-4px); box-shadow: var(--c2c-shadow-card-hover); }
.c2c-about-mv-card:nth-child(2) {
  background: #e8f1f6; /* fallback soft blue */
  background: color-mix(in srgb, var(--c2c-secondary) 9%, #fff);
  border-color: #c7dde8;
  border-color: color-mix(in srgb, var(--c2c-secondary) 22%, #fff);
  border-top-color: var(--c2c-secondary);
}
.c2c-about-mv-icon {
  width: 56px; height: 56px;
  border-radius: var(--c2c-radius-full, 999px);
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--c2c-primary);
  box-shadow: var(--c2c-shadow-card);
  margin-bottom: 16px;
}
.c2c-about-mv-card:nth-child(2) .c2c-about-mv-icon {
  background: #fff;
  color: var(--c2c-secondary);
}
.c2c-about-mv-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.c2c-about-mv-card:nth-child(1) .c2c-about-mv-title { color: var(--c2c-primary); }
.c2c-about-mv-card:nth-child(2) .c2c-about-mv-title { color: var(--c2c-secondary); }
.c2c-about-mv-card p { color: var(--c2c-text-main); font-size: 16px; margin: 0; line-height: 1.6; }

.c2c-about-block-title { font-size: 26px; font-weight: 700; margin-bottom: 24px; }

.c2c-about-values { margin-bottom: 56px; }
.c2c-about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.c2c-about-value-card {
  background: #fff;
  border-radius: var(--c2c-radius-lg);
  box-shadow: var(--c2c-shadow-card);
  padding: 24px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.c2c-about-value-card:hover { transform: translateY(-4px); box-shadow: var(--c2c-shadow-card-hover); }
.c2c-about-value-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.c2c-about-value-icon { display: inline-flex; }
.c2c-about-value-card:nth-child(4n+1) .c2c-about-value-icon { color: var(--c2c-crayon-red); }
.c2c-about-value-card:nth-child(4n+2) .c2c-about-value-icon { color: var(--c2c-primary); }
.c2c-about-value-card:nth-child(4n+3) .c2c-about-value-icon { color: var(--c2c-crayon-yellow); }
.c2c-about-value-card:nth-child(4n+4) .c2c-about-value-icon { color: var(--c2c-crayon-green); }
.c2c-about-value-title { font-size: 16px; font-weight: 700; margin: 0; line-height: 1.3; }
.c2c-about-value-desc { font-size: 14px; color: var(--c2c-on-surface-variant); margin: 0; }

.c2c-about-why {
  background: #fff;
  border-radius: var(--c2c-radius-xl);
  box-shadow: var(--c2c-shadow-card);
  padding: 40px 44px;
}
.c2c-about-why-list { list-style: none; margin: 0; padding: 0; }
.c2c-about-why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  padding: 9px 0;
  color: var(--c2c-text-main);
}
.c2c-about-why-list li svg { color: var(--c2c-crayon-green); flex-shrink: 0; }

@media (max-width: 1024px) {
  .c2c-about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .c2c-about-mv { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .c2c-about-intro, .c2c-about-why { padding: 28px 24px; }
  .c2c-about-values-grid { grid-template-columns: 1fr; }
  .c2c-about-intro-title, .c2c-about-block-title { font-size: 22px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.c2c-faq { background: var(--c2c-surface-container-low, #f8f9fa); }
.c2c-faq-inner { max-width: 800px; }
.c2c-faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.c2c-faq-item {
  background: #fff;
  border: 1px solid var(--c2c-surface-border, #e6e6ea);
  border-radius: var(--c2c-radius-lg, 16px);
  padding: 4px 22px;
  box-shadow: var(--c2c-shadow-card);
  transition: border-color .2s ease;
}
.c2c-faq-item[open] { border-color: color-mix(in srgb, var(--c2c-primary) 40%, #fff); }
.c2c-faq-q {
  font-family: var(--c2c-font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--c2c-on-surface);
  padding: 16px 30px 16px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.c2c-faq-q::-webkit-details-marker { display: none; }
.c2c-faq-q::after {
  content: '+';
  position: absolute;
  right: 2px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--c2c-primary);
  transition: transform .2s ease;
}
.c2c-faq-item[open] .c2c-faq-q::after { content: '−'; }
.c2c-faq-a {
  font-size: 15px;
  color: var(--c2c-on-surface-variant);
  line-height: 1.6;
  padding: 0 0 18px;
}
.c2c-faq-a p { margin: 0 0 10px; }
.c2c-faq-a p:last-child { margin: 0; }
